oeeKeyBoard.css
1.67 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
*{
margin:0;
padding:0;
font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
box-sizing: border-box;
}
html,body{
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body{
background: #fff;
font-size:14px;
white-space:normal;
word-break:break-all;
}
a{
background-color: transparent;
text-decoration: none;
color: #666;
}
a:active,a:hover{
outline: 0;
}
input,button{
outline:none;
border:none;
background:none;
}
li{
list-style: none;
}
img{
border: 0;
outline: none;
vertical-align: middle;
}
input{
outline: none;
}
/* input框 */
.keyboards{
margin:30px;
}
.keyboards input{
height:35px;
border:solid 1px #ccc;
padding:0 5px;
width:calc(100% - 2px - 10px);
margin-bottom:15px;
border-radius: 20px;
}
/* 数字键盘 */
.keyboard{
padding:0;
}
.keyboard ul{
display: flex;
flex-wrap: wrap;
justify-content: center;
padding-bottom:0.06rem;
}
.keyboard ul li{
width:10%;
text-align: center;
margin-top:0.09rem;
font-size:14px;
color:#000;
}
.keyboard ul li span{
background: #fff;
width:0.3rem;
height:0.35rem;
line-height:0.35rem;
border-radius: 4px;
display: inline-block;
}
/* 省份简称 */
.province{
width: 100%;
padding:0 0.15rem 0.2rem 0.15rem;
position:fixed;
left:0;
right:0;
bottom:0;
background: #f2f2f2;
}
.keyboard{
width: 100%;
padding:0.1rem 0;
position:fixed;
left:0;
right:0;
bottom:0;
background: #f2f2f2;
}
.p-box{
display: flex;
flex-wrap:wrap;
}
.province p{
width: calc(100% / 8);
text-align: center;
margin-top:0.2rem;
font-size:15px;
color:#333;
}
.province p span{
background: #fff;
padding: 5px 8px;
border-radius: 4px;
}