workbench.scss
2.51 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
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
.page{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.my-top{
position: absolute;
width: 100%;
height: 300rpx;
/* #ifdef MP */
height: 360rpx;
/* #endif */
overflow: hidden;
.head{
position: fixed;
left: 0;
top: 0;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
height: 100rpx;
/* #ifdef APP-PLUS */
height: calc(100rpx + var(--status-bar-height));
padding-top: var(--status-bar-height);
/* #endif */
/* #ifdef MP */
height: calc(120rpx + var(--status-bar-height));
padding-top: calc(40rpx + var(--status-bar-height));
/* #endif */
background-color: rgba(255,255,255,0);
.logo-title{
width: 40%;
color: #fff;
padding-left: 20rpx;
image {
width: 169rpx;
height: 40rpx;
margin-left: 10rpx;
}
}
.setting-mess{
width: 20%;
display: flex;
align-items: center;
height: 100%;
margin-right: 20rpx;
.setting{
display: flex;
justify-content: center;
align-items: center;
width: 80rpx;
height: 100%;
text{
font-size: 38rpx;
}
}
.mess{
display: flex;
justify-content: center;
align-items: center;
width: 80rpx;
height: 100%;
text{
font-size: 38rpx;
}
}
}
}
}
.main {
position: relative;
top: 90rpx;
padding-bottom: 20px;
/* #ifdef MP */
top: 170rpx;
padding-bottom: 20px;
/* #endif */
margin: 0 20rpx;
}
.banner {
height: 330rpx;
image {
width: 100%;
border-radius: 20rpx;
}
}
.bg-white {
background-color: #fff;
border-radius: 20rpx;
margin-top: 20rpx;
}
.bidding-title {
display: flex;
align-items: center;
font-size: 30rpx;
font-weight: bold;
padding: 40rpx;
color: #000;
.bidding-title-line {
width: 14rpx;
height: 30rpx;
border-radius: 80rpx;
background: -webkit-gradient(linear, top top, bottom top, from(#30a738), to(#4dcc56));
background: -o-linear-gradient(top, #30a738, #4dcc56);
background: linear-gradient(to top, #30a738, #4dcc56);
margin-right: 20rpx;
box-shadow: 0 5rpx 10rpx #ace2b0;
}
}
.wallet-info{
display: flex;
width: 100%;
margin-top: 20rpx;
flex-wrap: wrap;
.list{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 25%;
margin-bottom: 40rpx;
.icon{
position: relative;
display: flex;
align-items: center;
image {
width: 80rpx;
height: 80rpx;
}
}
.title{
display: flex;
align-items: center;
margin-top: 20rpx;
text{
color: #888888;
font-size: 24rpx;
}
}
}
}