base.css
922 字节
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
*{
margin:0 ;
padding:0;
box-sizing:border-box;
outline:none;
-webkit-tap-highlight-color:rgba(255,0,0,0);
}
/*输入密码*/
.enterword{
position:relative;
}
.code_active{
width:4.8rem;
position:absolute;
left:0;
right:0;
top:0;
bottom:0;
font-size: 0;
margin: 0 auto;
}
.code_active input{
width:4.5rem;
height:0.8rem;
background: transparent;
letter-spacing: 0.63rem;
margin: 0 auto;
margin-left: 0.3rem;
/*text-align: right;*/
}
.password_box li{
float: left;
width: 16.66%;
height: 45px;
text-align: center;
line-height: 45px;
border-right:1px solid #C8C7CC;
}
#pwd {
position: absolute;
left: 0;
top: 100%;
bottom:0;
opacity: 0;
width: 80%;
}
.password_box li.active i {
width: 10px;
height: 10px;
border-radius: 50%;
background: #000;
display: inline-block;
}