yangfeng
2023-09-06 3a1a63d17e21cb9c26e4515e49e9ff75f59f52a0
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
125
126
127
128
129
130
131
132
133
134
135
136
137
@import "element-ui/lib/theme-chalk/index.css";
@import "./variable.scss";
@import "./reset-element.scss";
 
ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
}
// 间距
.margin_left_3px {
  margin-left: 3px;
}
.margin_left_5px {
  margin-left: 5px;
}
.margin_left_10px {
  margin-left: 10px;
}
.margin_left_15px {
  margin-left: 15px;
}
.margin_left_20px {
  margin-left: 20px;
}
.margin_right_5px {
  margin-right: 5px;
}
.margin_right_10px {
  margin-right: 10px;
}
.margin_right_15px {
  margin-right: 15px !important;
}
.margin_right_20px {
  margin-right: 20px;
}
.margin_right_40px {
  margin-right: 40px;
}
.margin_top_10px {
  margin-top: 10px;
}
.margin_top_20px {
  margin-top: 20px;
}
.margin_top_30px {
  margin-top: 30px;
}
.margin_top_35px {
  margin-top: 35px;
}
.margin_top_40px {
  margin-top: 40px;
}
.margin_bottom_2px {
  margin-bottom: 2px;
}
.margin_bottom_10px {
  margin-bottom: 10px !important;
}
.margin_bottom_15px {
  margin-bottom: 15px !important;
}
.margin_bottom_20px {
  margin-bottom: 20px !important;
}
.margin_bottom_30px {
  margin-bottom: 30px !important;
}
.margin_bottom_40px {
  margin-bottom: 40px !important;
}
.margin_bottom_50px {
  margin-bottom: 50px !important;
}
//
.float_left {
  float: left;
}
.float_right {
  float: right;
}
//
.line_height_32px {
  line-height: 32px;
}
.text_indent_20 {
  text-indent: 20px;
}
.text_indent_30 {
  text-indent: 30px;
}
// 字体大小
.font_size_12 {
  font-size: 12px;
}
.font_size_13 {
  font-size: 13px;
}
.font_size_14 {
  font-size: 14px;
}
.font_size_15 {
  font-size: 15px;
}
.font_size_16 {
  font-size: 16px;
}
.font_size_18 {
  font-size: 18px;
}
.font_size_20 {
  font-size: 20px !important;
}
.font_size_30 {
  font-size: 30px !important;
}
.font_size_40 {
  font-size: 40px !important;
}
.cursor_pointer {
  cursor: pointer;
}
 
.btn-pager {
  display: flex;
  margin-top: 10px;
  // background: #fff;
  .page {
    margin-left: auto;
  }
}