address-management.scss
2.22 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
110
111
112
113
114
115
116
117
118
119
120
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';
$contentWidth:690px;
.page {
.bgc {
background: #F8F8F8;
}
.bg {}
.main {
.top-space {
height: 20px;
}
// 内容容器通用样式
.cont-wrap {
margin: 20px auto 0;
width: $contentWidth;
background: #fff;
padding: 30px 28px;
@extend .bb;
@extend .shadow;
}
.content {
position: relative;
.manage-wrap {}
// 表单
.form {
position: relative;
padding: 30px 30px;
@extend .bb;
.ebg {
position: absolute;
top: 0;
left: 0;
z-index: 1;
width: 100%;
height: 100%;
}
&-tit {
position: relative;
margin-bottom: 28px;
display: flex;
justify-content: space-between;
font-size: 24px;
.address-message {
color: #333333;
display: flex;
align-content: center;
align-items: center;
height: 36px;
.address {
position: relative;
font-size: 32px;
margin-right: 20px;
vertical-align: middle;
}
.used {
color: #fff;
background: #FF7B21;
border-radius: 8px;
display: inline-block;
padding: 2px 12px;
text-align: center;
}
}
.address-edit {
color: #3680EB;
font-size: 28px;
z-index: 11;
}
}
&-item {
position: relative;
margin-bottom: 20px;
font-size: 28px;
display: flex;
.label {
min-width: 140px;
color: #666666;
}
.cont {
color: #333333;
@extend .bb;
padding-left: 20px;
}
}
}
// 添加地址
.manage-add {
width: $contentWidth;
margin: 20px auto;
@extend .bb;
background: #fff;
padding: 38px 30px;
font-size: 32px;
color: #3680EB;
@extend .shadow;
}
}
}
}