configuration.scss
1.16 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
.configuation-page {
background: #f8f9fa;
min-height: 100vh;
.configuation-header{
background-color: #fff;
position:fixed;
top:0rpx;
z-index: 99999;
.header-gap{
height:35rpx;
background-color: #f8f9fa;
}
.search-top {
justify-content: space-between;
flex-direction: row;
.search-main {
background: #fff;
width: 750rpx;
padding:0 25rpx;
margin-top: -34rpx;
}
}
}
.configuation-container {
padding: 15rpx 15rpx;
.configuation-item {
width: 750rpx;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin: 128rpx 0rpx 0rpx 6rpx;
.item {
width: 330rpx;
height: 288rpx;
background-color: #fff;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
margin: 0rpx 43rpx 35rpx 0rpx;
.image {
width: 200rpx;
height: 144rpx;
}
.name {
font-size: 14px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #333333;
line-height: 20px;
margin-top: 29rpx;
}
}
}
}
}
.configuation-detail-page {
background: #f8f9fa;
min-height: 100vh;
}