index.css
664 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
@charset "UTF-8";
* {
margin: 0;
padding: 0;
}
html, body {
width: 100%;
height: 100%;
text-rendering: optimizeLegibility;
}
body {
box-sizing: border-box;
font-family: "Source Han Sans" ,Source Han Sans;
}
ul, ol, li {
list-style: none;
}
input {
border: none;
outline: none;
}
a {
text-decoration: none;
color: black;
}
/* 在线链接服务仅供平台体验和调试使用,平台不承诺服务的稳定性,企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
font-family: "Source Han Sans";
src: url(../font/SourceHanSansCN-VF-2.otf);
}
.red_bold {
color: #C70009;
font-weight: bold;
}