zhangchunxia
2025-01-22 4bbc711a52c76c83ef00a111046049dbbff0098d
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
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
*,body {
    padding: 0px;
    margin: 0px;
    font-family: "微软雅黑";
}
:root {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
 
    color-scheme: light dark;
    color: rgba(255, 255, 255, 0.87);
    background-color: #242424;
 
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}
 
html,
body {
    /* background: url("@/assets/images/bg.jpg") no-repeat;
    background-size: cover; */
    /* font-size: .16rem; */
    color: #ffffff;
    /* position: relative; */
    width: 100%;
    height: 100%;
}