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
| /* 用flex方式布局上中下页面结构 */
| .article {
| /* display: flex;
| width: 100%;
| height: 100vh;
| flex-direction: column;
| overflow: auto; */
| }
|
| .article .main {
| flex-grow: 1;
| padding-top: 40px;
| /* background-color: #eeeeee; */
| }
|
| .van-nav-bar {
| height: 40px !important;
| z-index: 999 !important;
| }
|
| .common {
| /* background-color: #fff; */
| padding: 0 15px;
| }
|
| /* 搜索框 */
| .van-search__content {
| border-radius: 5px !important;
| }
|
| .flex {
| display: flex;
| }
|
| .flex1 {
| display: flex;
| justify-content: space-between;
| }
|
| .flex2 {
| display: flex;
| justify-content: space-between;
| flex-wrap: wrap;
| }
|
| .flex3 {
| display: flex;
| /* justify-content: space-between; */
| flex-wrap: wrap;
| }
|
| .flex4 {
| display: flex;
| align-items: center;
| }
|
| .flex5 {
| display: flex;
| flex-direction: column;
| text-align: left;
| margin-bottom: 15px;
| }
|
| /* 图片 */
| .imageBox {
| position: relative;
| }
|
| .imageBox img {
| position: absolute;
| top: 0;
| right: 0;
| bottom: 0;
| left: 0;
| margin: auto;
| max-width: 100%;
| max-height: 100%;
| }
|
| /* 固定定位不能设置高度 */
| .footer {
| padding-top: 40px;
| }
|
| /* css首行缩进两个字符 */
| .text_indent {
| text-indent: 35px;
| }
|
| .blank_gap {
| margin-top: 6px;
| margin-bottom: 6px;
| }
|
| .text-flow {
| white-space: nowrap;
| text-overflow: ellipsis;
| overflow: hidden;
| word-break: break-all;
| }
| .autoImg {
| width: auto;
| height: auto;
| max-width: 100%;
| max-height: 100%;
| position: absolute;
| top: 0;
| left: 0;
| right: 0;
| bottom: 0;
| margin: auto;
| }
|
|