select_place.css
1011 字节
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
*{
padding: 0;
margin: 0;
}
body,html{
width: 100%;
height: 100%;
}
.container{
margin-left: 0.5rem;
}
.date{
display:flex;
}
.form-control{
width:2rem;
height:0.6rem;
font-size: 0.28rem;
border: 0.01rem solid #ccc;
outline: none;
border-radius: 5px;
}
.form-control option{
font-size: 0.12rem;
}
.form-group{
margin-left: 0.2rem;
}
select option{
font-size: 0.15rem;
}
.foot{
display:flex;
justify-content: space-between;
align-items: center;
margin-right: 0.3rem;
margin-left: 0.3rem;
position: fixed;
bottom: 0.5rem;
left:0;
right:0
}
.sure{
width:3rem;
height:0.88rem;
background:#3990F5;
color:#fff;
font-size:0.34rem ;
text-align: center;
line-height:0.88rem ;
border-radius: 10px;
}
.cancel{
width:3rem;
height:0.88rem;
color:#ccc;
border:0.02rem solid #ccc;
font-size:0.34rem ;
text-align: center;
line-height:0.88rem ;
border-radius: 10px;
}