custom-product.scss
849 Bytes
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
@import '@/styles/_support';
.content {
position: relative;
padding-bottom: 2.5rem;
font-family: MicrosoftYaHei;
}
.top-space {
height: 2.5rem;
}
.box {
position: relative;
}
.ebg {
position: absolute;
bottom: 0;
left: 0;
right: 0;
img {
max-width: 100%;
}
}
.product {
display: flex;
justify-content: center;
flex-wrap: wrap;
&-item {
background-color: #ffffff;
// display: flex;
// justify-content: center;
// align-content: center;
// align-items: center;
flex-wrap: wrap;
width: 12.5rem;
height: 12.5rem;
border-radius: .75rem;
border: solid 1px #f2f2f2;
margin: .5rem;
cursor: pointer;
.icon-wrap {
height: 8.25rem;
@extend .fcc;
}
.t1 {
width: 100%;
text-align: center;
font-size: $fontSizeTitle;
}
}
}