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
76
77
78
79
80
81
82
83
84
85
86
| body {
| padding: 0;
| margin: 0;
| font-family: Microsoft YaHei;
| background: #E0E0E0;
| /* 不允许复制 */
| -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;
| }
|
| .title {
| font-size: 0.28rem;
| font-weight: 400;
| color: #000000;
| }
|
| .content {
| color: #666666;
| font-size: 0.26rem;
| line-height: 0.32rem;
| margin-top: 0.3rem;
| }
|
| .content img {
| width: 100%;
| margin-bottom: 0.2rem;
| height: auto;
| }
|
| .bottom {
| height: 1rem;
| position: fixed;
| bottom: 0;
| width: 100%;
| background: #FFFFFF;
| display: flex;
| justify-content: center;
| align-items: center;
| border-top-style: solid;
| border-top-width: 1px;
| border-top-color: #E0E0E0;
| }
|
| @supports (bottom: env(safe-area-inset-bottom)) {
| .bottom {
| padding-bottom: env(safe-area-inset-bottom);
| }
| }
|
| .btn {
| background: #E5005C;
| border-radius: 0.34rem;
| height: 0.68rem;
| font-size: 0;
| line-height: 0.68rem;
| border: none;
| color: #FFFFFF;
| text-align: center;
| display: flex;
| align-items: center;
| justify-content: center;
| width: 3.3rem;
| }
|
| .btn span {
| font-size: 0.3rem;
| }
|
| .btn img {
| height: 0.3rem;
| margin-right: 0.15rem;
| width: auto;
| flex-shrink: 0;
| }
|
|