mh-two-thousand-and-two
2024-03-29 d27fbd63d7840787d7f3ca5333b6e24dc3a860d4
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
    * {
        margin: 0%;
        padding: 0;
        box-sizing: border-box;
    }
    html {
        font-size: calc(100 * 100vw / 1440) !important;
        /* font-size: 10px; */
    }
    
    body {
        font-size: .16rem !important;
    }
    .flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
 
    .flex-column {
        flex-direction: column;
    }
 
    .flex-wrap {
        flex-wrap: wrap;
    }
 
    .flex-center {
        align-items: center;
        justify-content: center;
    }
 
    .flex-grow {
        flex-grow: 1;
    }
 
    .flex-column {
        flex-direction: column;
    }
 
    .flex-shrink {
        flex-shrink: 0;
    }
 
    .flex-start {
        justify-content: flex-start
    }
    .flex-content{
        justify-content: space-around;
    }
    .flex-items-start{
        align-items: flex-start;
    }
 
    .relative {
        position: relative;
        z-index: 99999 !important;
    }
    /* 字体宋体 */
    .font-family{
        font-family: 宋体;
    }
    ul {
        list-style: none;
    }
 
    html {
        color: #fff;
        background-color: #fff;
    }
 
    img {
        width: 100%;
        height: 100%;
    }