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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
//颜色参数
@bg-b: #333;
@bg-b-s:#444;
@black-line:#191919;
@gray-line:#666;
@light-line:#ddd;
@main-font-color:#fff;
@secondary-font-color:#999;
@gold-color-light:#FFD04B;
@gold-color: #a18430;
@toVw:100/375vw;
@toVh:100/667vh;
//公共类
.search-btn-block{
margin-left: 20px;
}
.search-form{
background: white;
padding: 10px;
margin: 10px 0;
}
.new-block{
margin: 10px;
text-align: right;
}
.fl-r{
float: right;
}
.text-c{
text-align: center;
}
.text-b{
font-weight: bold;
}
.color-b{
color: #6ba8e6;
}
.text-r{
text-align: right;
}
.main-block{
margin: 5px;
background: white;
padding: 5px;
}
html{
font-family: "Helvetica Neue",
Helvetica,
"PingFang SC",
"Hiragino Sans GB",
"Microsoft YaHei",
"微软雅黑",
Arial,
sans-serif;
}
.clear-both{
&:after{
content: '';
display: block;
clear: both;
}
}
//滚动条样式
::-webkit-scrollbar-track-piece { //滚动条凹槽的颜色,还可以设置边框属性
border-radius: 10px;
}
::-webkit-scrollbar {//滚动条的宽度
width:5px;
height:5px;
}
::-webkit-scrollbar-thumb {//滚动条的设置
background-color:@secondary-font-color;
border-radius: 10px;
height: 10px;
min-height:10px;
}