-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.wxss
146 lines (137 loc) · 2.56 KB
/
app.wxss
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/**app.wxss**/
@import 'weui.wxss';
.page{
width:100%;
height: 100%;
display: flex;
flex-direction: column;
}
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
font-family: '微软雅黑';
}
.page-body{
width:100%;
height: 100%;
display: flex;
}
.tabbar {
display: flex;
flex-direction: row;
position: fixed;
width: 100%;
}
.tabbar-item {
flex-grow: 1;
padding: 6rpx 0;
text-align: center;
}
.tabbar-icon {
width: 46rpx;
height: 46rpx;
display: block;
margin: 0 auto;
}
.tabbar-text {
font-size: 24rpx;
}
/*输入框有关样式*/
.form_input{
background-color: white;
border: 1px solid #aaa;
border-radius: 25px;
margin: 10rpx 40rpx 10rpx 40rpx;
padding: 30rpx 10rpx 50rpx 10rpx;
}
.one_input{
display: flex;
flex-direction: column;
justify-content: center;
margin: 20rpx 0rpx 20rpx 0;
}
.information_input{
margin: 30rpx 0 5rpx 0;
display: flex;
flex-direction: row;
}
.line{
width:85%;
height:3rpx;
background:#aaa;
margin: 0rpx 10rpx 0rpx 50rpx;
}
.segmentline{
margin: 50rpx 5rpx 2rpx 20rpx;
width: 95%;
height: 10rpx;
border-top: 3rpx dashed #a7a8a8;
}
.text_explain{
white-space:nowrap;
margin: 0 0 0 70rpx;
font-size: 15px;
}
.text_choice{
white-space:nowrap;
margin: 0 20rpx 0 10rpx;
font-size: 15px;
}
.input_box{
border: 0px ;
margin: 0rpx 85rpx 10rpx 0;
font-size: 15px;
color: grey;
}
.view_twobutton{
margin: 100rpx 0 0 200rpx;
display: flex;
flex-direction: row;
}
.button_one{
font-size: 15px;
width: 200rpx;
color: #3CB371;
background-color: white;
border-bottom: 10rpx solid rgb(220, 224, 221);
border-right: 10rpx solid rgb(220, 224, 221);
border-radius:20rpx;
margin: 0 5rpx 0 5rpx;
}
.button_two{
width: 200rpx;
color: white;
background-color: #3CB371;
border-bottom: 10rpx solid rgb(12, 133, 52);
border-right: 10rpx solid rgb(12, 133, 52);
border-radius:20rpx;
margin: 0 5rpx 0 5rpx;
font-size: 15px;
}
.view_sureorcancel{
margin: 100rpx 0 0 200rpx;
display: flex;
flex-direction: row;
}
.button_sure{
width: 200rpx;
color: white;
background-color: #3CB371;
border-bottom: 10rpx solid rgb(12, 133, 52);
border-right: 10rpx solid rgb(12, 133, 52);
border-radius:20rpx;
margin: 0 0rpx 0 10rpx;
}
.button_cancel{
width: 200rpx;
color: #3CB371;
background-color: white;
border-bottom: 10rpx solid rgb(220, 224, 221);
border-right: 10rpx solid rgb(220, 224, 221);
border-radius:20rpx;
margin: 0 10rpx 0 0;
}