additional.css
2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#overlay {
background: rgba(0, 0, 0, .5);
position: fixed;
z-index: 4999;
width: 100%;
height: 100%;
}
.modal {
z-index: 5000;
width: 416px;
margin: 0 auto;
background: #fff;
position: fixed;
top:10%;
left: 40%;
padding: 0px 0 48px 0;
}
.hidden {
display: none;
}
.button {
display: block;
width: 336px;
height: 48px;
line-height: 48px;
-webkit-border-radius: 7px;
border-radius: 7px;
background-color: #ed1c24;
text-align: center;
color: #ffffff;
font-family: PFAgoraSansPro;
font-size: 15px;
font-weight: 500;
margin: 0 auto;
}
.modal-head {
text-align: right;
height: 28px;
}
.modal-close {
text-align: right;
}
.modal-close-xray {
padding: 18px;
position: relative;
background: url("/img/modal/close.svg") no-repeat 96% 15px;
}
.modal-body-header {
font-size: 36px;
text-align: center;
}
.modal-body-header small {
font-size: 14px;
display: block;
padding: 0 0 37px;
}
.modal-label {
display: block;
font-size:14px;
font-weight: bold;
margin:auto;
padding:0 40px;
}
.time {
width:152px;
display: inline-block;
float:left;
}
.time .input {width:100%; display: inline-block}
.tm {margin-left:40px;}
.arrow-up{
content: "";
display: block;
position: relative;
background: url('/img/modal/butt_up.svg');
height: 30px;
width: 30px;
top: 30px;
right: -110px;
background-size: cover;
margin-top: -32px;
}
.arrow-down {
content: "";
display: block;
position: relative;
background: url('/img/modal/butt_down.svg');
height: 30px;
width: 30px;
top: 50px;
right: -110px;
background-size: cover;
margin-top: -32px;
}
.tm2 {margin-left:32px;}
.input {
width: 336px;
height: 46px;
-webkit-border-radius: 7px;
border-radius: 7px;
border: 1px solid #d0d0d0;
background-color: #ffffff;
display: block;
margin: auto;
margin-bottom: 20px;
font-size: 15px;
color: #333;
box-sizing: border-box;
padding: 16px;
}
.input input[type="text"] {
font-size: 15px;
color: #333;
display: block;
background: none;
border: none;
width: 100%;
height: 46px;
}