appointment.css
2.9 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
127
128
129
130
body, html{
margin: 0;
padding: 0;
background-color: #f5f6fa;
}
.content {
}
.head {
width: 100%;
background-color: #fff;
padding: 0.38rem 0 0.58rem 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 0.24rem;
}
.center {
display: flex;
flex-direction: column;
justify-content: space-between;
text-align: center;
}
.area {
color: #000000;
font-size: 0.36rem;
font-weight: bold;
margin-bottom: 0.31rem;
}
.btn {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
margin-bottom: 0.36rem;
}
.reset {
width: 1.8rem;
height: 0.72rem;
line-height: 0.72rem;
background-color: #DD3E34;
color: #ffffff;
border-radius: 0.36rem;
font-size: 0.3rem;
box-shadow: 0 0.15rem 0.25rem 0 #F8CDCA;
background: -webkit-linear-gradient(left, RGBA(233, 91, 81, 1), RGBA(221, 60, 49, 1)); /* Safari 5.1 - 6.0 */
background: -o-linear-gradient(right, RGBA(233, 91, 81, 1), RGBA(221, 60, 49, 1)); /* Opera 11.1 - 12.0 */
background: -moz-linear-gradient(right,RGBA(233, 91, 81, 1), RGBA(221, 60, 49, 1)); /* Firefox 3.6 - 15 */
background: linear-gradient(to right, RGBA(233, 91, 81, 1), RGBA(221, 60, 49, 1) ); /* 标准的语法 */
}
.seat-num {
/*width: 1.8rem;*/
height: 0.72rem;
line-height: 0.72rem;
border: 1px solid #DD3E34;
border-radius: 0.36rem;
color: #DD3E34;
background: none;
background-color: #fff;
font-size: 0.24rem;
margin-right: 0.36rem;
}
.tips {
color: #979DA8;
font-size: 0.24rem;
}
.seat-list {
}
.list-item {
/*padding: 0 0.32rem;*/
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: #fff;
margin-bottom: 0.16rem;
}
.line-num {
font-weight: bold;
font-size: 0.26rem;
color: #292525;
height: 0.6rem;
line-height: 0.6rem;
padding: 0 0.32rem;
border-bottom: 1px solid #EBEBEB;
}
.column-list {
display: flex;
justify-content: space-between;
display: -webkit-box;
overflow-x: scroll;
-webkit-overflow-scrolling:touch;
padding: 0.16rem 0.32rem 0.21rem 0.32rem;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.item {
display: flex;
flex-direction: column;
align-items:center;
justify-content: center;
margin-right: 0.08rem;
position: relative;
}
.column-list .item:last-child {
padding-right: 0.32rem;
}
.img {
width: 1.16rem;
height: 1.7rem;
margin-bottom: 0.1rem;
}
.column-num {
font-size: 0.24rem;
color: #000000;
}
.modal {
width: 1.16rem;
height: 1.7rem;
background-color: #000000;
opacity: 0.5;
/*display: none;*/
position: absolute;
top: 0;
left: 0;
}