personal-info.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
body, html{
margin: 0;
padding: 0;
background: #fff;
overflow: hidden;
}
.content {
width: 100%;
height: 100%;
}
.name-box, .age-box, .sex-box, .family-box{
width: 100%;
height: 1rem;
display: flex;
align-items: center;
font-size: 0.3rem;
color: #000000;
margin-bottom: 0.3rem;
padding: 0 0.33rem;
}
.family-box{
margin-bottom: 3.5rem;
}
.name-box input, .age-box input, .sex-box input, .family-box input {
border: none;
font-size: 0.28rem;
color: #1A1A1A;
line-height: 1rem;
outline: none;
background: none;
}
.input-box {
width: 100%;
display: flex;
align-items: center;
border-bottom: 1px solid #ebebeb;
}
.input-box text {
margin-right: 0.36rem;
}
.man, .women {
/*padding: 0.17rem 0.46rem;*/
width: 1.18rem;
height: 0.6rem;
background-color: #fff;
border: 1px solid #DD3D32;
border-radius: 0.3rem;
color: #DD3D32;
margin-right: 0.24rem;
text-align: center;
font-size: 0.28rem;
display: flex;
align-items: center;
justify-content: center;
}
.sex-box {
border-bottom: 0.16rem solid #fcfbfa;
}
.sex-box .input-box {
border-bottom: 0;
}
.family-box {
height: 2rem;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.family-box .input-box {
height: 1rem;
}
.family-box .input-box text {
line-height: 1rem;
}
.family-box input {
height: 1rem;
}
.address-input .input{
width: 7rem;
}
.footer {
width: 100%;
height: 0.88rem;
padding: 0 0.32rem;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
/*position: fixed;*/
/*bottom: 0.32rem;*/
/*left: 0;*/
}
.confirm-btn {
width: 100%;
line-height: 0.88rem;
text-align: center;
color: #ffffff;
font-size: 0.32rem;
border-radius: 0.44rem;
box-shadow: 0 0.15rem 0.3rem 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) ); /* 标准的语法 */
}
.active{
background: #DD3D32;
color: #fff;
}