index.css
2.4 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
body, html {
margin: 0;
padding: 0;
}
.content {
/*width: 7.5rem;*/
/*height: 12.06rem;*/
width: 100%;
height: 100%;
background-image: url('../images/abg01@2x.png');
background-repeat: no-repeat;
background-position: center;
-webkit-background-size: 100% 100%;
background-size: 100% 100%;
position: fixed;
}
.input-box {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 3.6rem;
}
.top-input, .bottom-input {
width: 100%;
/*height: 4rem;*/
padding: 0 1.15rem;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin-bottom: 0.8rem;
}
.phone-icon {
width: 0.24rem;
height: 0.35rem;
margin-right: 0.26rem;
}
.code-icon {
width: 0.32rem;
height: 0.34rem;
margin-right: 0.26rem;
}
.phone-input, .code-input {
border: none;
width: 5.2rem;
height: 1rem;
font-size: 0.28rem;
background-color: transparent;
outline: none;
}
.input-code-box {
display: flex;
align-items: center;
}
.code-input {
/*width: 20%;*/
width: 2rem;
}
.border-line-box, .border-line-box2 {
border-bottom: 1px solid #DEDEDE;
display: flex;
align-items: center;
justify-content: space-between;
}
.getCode {
border: none;
background: none;
font-size: 0.24rem;
color: #FE0A01;
outline: none;
}
.next-btn {
width: 100%;
height: 0.88rem;
padding: 2.08rem 1.95rem;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.next {
width: 3.6rem;
line-height: 0.88rem;
font-size: 0.32rem;
color: #ffffff;
border-radius: 0.44rem;
border: none;
/*box-shadow: 0.15rem 0.15rem 5 #FE0A01;*/
/*box-shadow: 2px 26px 40px #F8CDCA;*/
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)); /* 标准的语法 */
}