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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
| * {
| margin: 0%;
| padding: 0;
| box-sizing: border-box;
| }
|
| html {
| /* font-size: calc(100vw / 1440 * 96) !important; */
| font-size: 100px;
| }
|
| body {
| font-size: 0.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; */
| z-index: 1;
| }
|
| /* 字体宋体 */
| * {
| font-family: 宋体;
| }
| .fontFamily {
| font-family: "simsun", "宋体", serif;
| font-weight: bolder;
| }
|
| /* 超出隐藏1 */
| .BeyondHiding1 {
| white-space: nowrap;
| overflow: hidden;
| text-overflow: ellipsis;
| }
| /* 超出隐藏2 */
| .BeyondHiding2 {
| display: -webkit-box;
| -webkit-line-clamp: 2;
| /* 设置要显示的行数 */
| -webkit-box-orient: vertical;
| /* 设置显示方式为垂直方向 */
| overflow: hidden;
| /* 隐藏超出的内容 */
| }
| /* 超出隐藏3 */
| .BeyondHiding3 {
| display: -webkit-box;
| -webkit-line-clamp: 3;
| /* 设置要显示的行数 */
| -webkit-box-orient: vertical;
| /* 设置显示方式为垂直方向 */
| overflow: hidden;
| /* 隐藏超出的内容 */
| }
| /* 手势 */
| .cursor {
| cursor: pointer;
| }
| ul {
| list-style: none;
| }
|
| html {
| color: #fff;
| background-color: #fff;
| }
|
| img {
| width: 100%;
| height: 100%;
| }
|
| uni-page-wrapper {
| width: 100%;
| }
| uni-page-body {
| width: 100%;
| height: 100%;
| }
|
|