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
| page{
| background-color: #f8f8f8;
| font-size: 28upx;
| }
| input{
| width: 50%;
| font-size: 28upx;
| }
| picker{
| width: 50%;
| font-size: 28upx;
| }
| .addr{
| background-color: #ffffff;
| padding: 10upx 0 0 0;
| }
| .addrItem{
| padding: 30upx;
| display: flex;
| align-items: center;
| border-bottom: 1px solid #eeeeee;
| position: relative;
| }
| .addrItem:last-child{
| border-bottom: none;
| }
| .addrItem .label{
| display: block;
| width: 200upx;
| }
| .addrItem image{
| position: absolute;
| width: 40upx;
| height: 40upx;
| right: 30upx;
| top: 27%;
| }
| .addrItem textarea{
| width: 70%;
| font-size: 28upx;
| height: 100upx;
| }
| .addrBtn{
| width: 90%;
| margin: 50upx auto 30upx;
| height: 90upx;
| background-color: #37AA25;
| color: #ffffff;
| letter-spacing: 10upx;
| display: flex;
| justify-content: center;
| align-items: center;
| font-weight: 700;
| font-size: 28upx;
| border-radius: 50upx;
| }
| .tips{
| padding: 0 30upx;
| font-size: 24upx;
| }
| .tipsTitle{
| display: flex;
| align-items: center;
| margin-bottom: 20upx;
| font-size: 30upx;
| font-weight: 700;
| color: #333333;
| }
| .tips image{
| width: 38upx;
| height: 38upx;
| margin-right: 10upx;
| }
| .tipsDesc{
| font-size: 24upx;
| color: #666666;
| line-height: 40upx;
| }
| .tipsDesc text{
| color: #d34a06;
| font-weight: 700;
| }
| .area{
| color: #808080;
| }
| .code{
| width: 140upx;
| position: absolute;
| right: 30upx;
| text-align: center;
| }
| .code2{
| width: 140upx;
| text-align: center;
| position: absolute;
| right: 30upx;
| color: #808080;
| }
|
| .uni-list {
| background-color: #fff;
| position: relative;
| width: 70%;
| display: flex;
| flex-direction: column;
| }
| .uni-list-cell {
| position: relative;
| display: flex;
| float: left;
| margin-right: 40upx;
| flex-direction: row;
| justify-content: space-between;
| align-items: center;
| }
| .uni-list-cell{
| justify-content: flex-start;
| }
|
|