header.less
965 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
header {
width: 100%;
z-index: 1000;
top: 0;
background-color: #fff;
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
height: 64px;
font-size: 14px;
padding: 0 24px;
width: 1152px;
margin: 0 auto;
h1 {
position: relative;
&:before {
content: "";
position: absolute;
top: 10px;
left: 144px;
width: 1px;
height: 12px;
background: #999;
}
a {
display: block;
width: 120px;
height: 32px;
background: url(https://gw.alipayobjects.com/zos/rmsportal/qdWihUzYxihpnOMVhFPV.png) no-repeat 0 50%;
background-size: 120px 32px;
text-indent: -999em;
}
span{
position: absolute;
font-size: 14px;
font-weight: 400;
top: 6px;
left: 168px;
color: rgba(0,0,0,.65);
white-space: nowrap;
}
}
}
}