view-title.wxss
707 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
.view-title {
font-size: 0;
height: 88rpx;
line-height: 88rpx;
text-align: center;
}
.view-title .title-text {
position: relative;
font-family: PingFang-SC-Semibold;
font-size: 28rpx;
color: #222;
letter-spacing: -0.34px;
}
.view-title .title-text:before {
content: '';
position: absolute;
top: 50%;
left: -40rpx;
display: inline-block;
margin-top: -2rpx;
height: 4rpx;
width: 20rpx;
background-color: #222;
}
.view-title .title-text:after {
content: '';
position: absolute;
top: 50%;
right: -40rpx;
margin-top: -2rpx;
display: inline-block;
height: 4rpx;
width: 20rpx;
background-color: #222;
}