zhanghua
2025-04-14 829f5116884f98643ffc5b2a548a600d40c0cedb
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
// @import './variables.scss';
// @import './mixin.scss';
// @import './transition.scss';
// @import './element-ui.scss';
// @import './sidebar.scss';
 
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
}
 
html {
  box-sizing: border-box;
}
 
*,
*:before,
*:after {
  box-sizing: inherit;
}
 
div:focus{
  outline: none;
}
 
a:focus,
a:active {
  outline: none;
}
 
a,
a:focus,
a:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
 
.clearfix {
  &:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }
}
 
//main-container全局样式
.app-main{
  min-height: 100%
}
 
.app-container {
  padding: 20px;
}
 
//搜索栏样式
.filter-container {
 
}
 
//操作栏样式
.operate-container {
  margin-top: 20px;
}
 
.operate-container .btn-add {
  float: right;
}
 
//表格栏样式
.table-container {
  margin-top: 20px;
}
 
//批量操作栏样式
.batch-operate-container {
  display: inline-block;
  margin-top: 20px;
}
 
//分页栏样式
.pagination-container {
  display: inline-block;
  float: right;
  margin-top: 20px;
}
 
//添加、更新表单样式
.form-container {
  position: absolute;
  left: 0;
  right: 0;
  width: 720px;
  padding: 35px 35px 15px 35px;
  margin: 20px auto;
}
 
//主标题
.font-extra-large {
  font-size: 20px;
  color: #303133;
}
 
//标题
.font-title-large {
  font-size: 18px;
  color: #303133;
}
 
//小标题
.font-title-medium {
  font-size: 16px;
  color: #303133;
}
 
//正文
.font-medium {
  font-size: 16px;
  color: #606266;
}
 
//正文
.font-small {
  font-size: 14px;
  color: #606266;
}
 
//正文(小)
.font-extra-small {
  font-size: 13px;
  color: #606266;
}
 
.color-main {
  color: #409EFF;
}
 
.color-success {
  color: #67C23A;
}
 
.color-warning {
  color: #E6A23C;
}
 
.color-danger {
  color: #F56C6C;
}
 
.color-info {
  color: #909399;
}
.pointer{
  cursor: pointer;
}