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
| * {
| 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: #FF4B93;
| font-family: Arial, "Microsoft YaHei";
| }
|
| .div_flag {
| display: -webkit-flex;
| margin-top: 0.21rem;
| justify-content: center;
| height: 0.3rem;
| }
|
| .div_flag img {
| width: 1.68rem;
| height: 0.3rem;
| }
|
| .div_flag div {
| color: #FFFFFF;
| font-size: 0.29rem;
| margin-top: 0.02rem;
| margin-left: 0.05rem;
| }
|
| .div_title {
| color: #FFFFFF;
| font-size: 0.36rem;
| height: 0.36rem;
| font-weight: bold;
| text-align: center;
| line-height: 0.36rem;
| margin-top: 0.21rem;
| }
|
| .div_content_bg {
| color: #000000;
| font-size: 0.24rem;
| background-color: #FFFFFF;
| border-radius: 0.24rem;
| margin-top: 0.23rem;
| margin-left: 0.35rem;
| margin-right: 0.35rem;
| padding-top: 0.5rem;
| padding-left: 0.38rem;
| padding-right: 0.33rem;
| line-height: 0.45rem;
| }
|
|