-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.less
52 lines (47 loc) · 987 Bytes
/
demo.less
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
.index {
background: #f9fbfc;
height: 100vh;
--primary-color: #f2b04f;
--text-color: #112950;
box-sizing: border-box;
}
.tagBox {
padding: 40px;
.tag {
width: 128px;
height: 40px;
background-color: #635DF7;
color: #fff;
font-size: 28px;
font-weight: normal;
line-height: 40px;
text-align: center;
margin-bottom: 36px;
}
.descLi {
padding-left: 32px;
font-size: 32px;
color: var(--text-color);
position: relative;
margin-bottom: 48px;
}
.descLi::before {
content: '';
width: 24px;
height: 1px;
background-color: #635DF7;
position: absolute;
left: 0;
top: 50%;
}
.nextBtn {
width: 100%;
height: 64px;
background-color: var(--primary-color);
color: #FFFFFF;
line-height: 64px;
text-align: center;
margin-top: 32px;
border-radius: 32px;
}
}