myGiftBox.less
1.32 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
.my_gift_box{
width: 100%;
height: calc(100vh-25px);
background-color: #fff;
padding-top: 25px;
.top_box{
display: flex;
justify-content: space-between;
margin: 0 30px;
img{
width: 37px;
height: 37px;
margin: 4px 0;
}
.tabs{
flex: 1;
display: flex;
justify-content: space-between;
margin: 0 134px 0 200px;
.tap{
height:45px;
font-size:32px;
font-weight:400;
color:rgba(153,153,153,1);
line-height:45px;
width: 100px;
text-align: center;
.line{
width:26px;
height:4px;
background:rgba(208,2,27,1);
border-radius:3px;
margin: 3px auto;
display: none;
}
}
.active{
color: #D0021B;
.line{
display: block;
}
}
}
.desc{
width:114px;
height:45px;
font-size:26px;
font-weight:400;
color:rgba(153,153,153,1);
line-height:45px;
}
}
}