admin
2021-12-09 f609ca35ee2946acd0ff04b7ac1aa61f75a2e4a1
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
* {
    margin: 0;
    top: 0;
    /* 不允许复制 */
    -moz-user-select: none;
    /* Firefox私有属性 */
    -webkit-user-select: none;
    /* WebKit内核私有属性 */
    -ms-user-select: none;
    /* IE私有属性(IE10及以后) */
    -khtml-user-select: none;
    /* KHTML内核私有属性 */
    -o-user-select: none;
    /* Opera私有属性 */
    user-select: none;
    /* CSS3属性 */
    /* IOS点击阴影 */
    -webkit-tap-highlight-color: transparent;
    /* 禁止长按图片保存 */
    -webkit-touch-callout: none;
}
 
body {
    background-color: #FCFCFC;
    font-family: Arial, "Microsoft YaHei";
}
 
#root {
    position: relative;
}
 
.div_top {
    height: 4.96rem;
    background: linear-gradient(to bottom, #EAF7FF, #B4E4FF);
}
 
.div_bot {
    height: 7.2rem;
    background-color: #FCFCFC;
}
 
#root>img {
    position: absolute;
    width: 5.08rem;
    height: 5rem;
    top: 1.05rem;
    left: 1.2rem;
}
 
.hedaer_title {
    position: absolute;
    font-size: 0.6rem;
    font-weight: bold;
    color: #0E96FF;
    top: 5.82rem;
    left: 0.2rem;
    line-height: 0.45rem;
}