favorite.scss
1.5 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
@import './../../styles/support';
.page {}
.nav {
@extend .bb;
display: flex;
justify-content: center;
align-items: center;
&-v-line {
width: 4px;
height: 45px;
background-color: #adadad;
}
&-item {
color: #adadad;
position: relative;
@extend .bb;
padding: 0 40;
text-align: center;
width: 100%;
height: 112px;
padding-top: 32px;
font-size: 30px;
}
.active {
color: #c28585;
.under {
position: absolute;
height: 3px;
width: 112px;
background-color: #c28585;
left: 0;
right: 0;
bottom: 24px;
margin: 0 auto;
}
}
}
.shop-list {
width: $contentWidth;
margin: 54px auto 0;
}
// 店铺信息
.shop {
display: flex;
align-items: center;
margin: 0 auto 48px;
height: auto;
&-icon {
width: 120px;
height: 120px;
border-radius: 120px;
border: solid 1px #333333;
}
&-detail {
flex: 1;
@extend .bb;
height: 120px;
padding: 0 12px 0 24px;
flex-wrap: wrap;
display: flex;
align-content: space-between;
height: auto;
div {
width: 100%;
}
&-title {
font-size: 28px;
}
&-desc {
font-size: 18px;
}
}
&-btn-wrap {
.shop-btn {
@include btc(148px, 52px);
background-color: #cc9999;
border-radius: 52px;
color: #ffffff;
margin: 12px 0;
font-size: 24px;
}
.shop-btn2 {
background: transparent;
border: solid 1px #ffffff;
}
}
}