gaosp
2024-01-23 51d0d474cfea8c0497a4e29b550a2e690e4b4bcf
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
// @import './variables.scss';
// @import './mixin.scss';
// @import './transition.scss';
// @import './element-ui.scss';
// // @import './sidebar.scss';
// @import './style.scss';
@font-face {
  font-family: digital;
  src: url('../assets/DS-Digital.ttf');
}
body {
  height: 100%;
  -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;
}
* {
  margin: 0;
  padding: 0;
}
label {
  font-weight: 700;
}
 
html {
  height: 100%;
  box-sizing: border-box;
}
 
#app{
  height: 100%;overflow: hidden;
}
 
*,
*:before,
*:after {
  box-sizing: inherit;padding: 0;margin: 0;
}
 
a,
a:focus,
a:hover {
  cursor: pointer;
  color: inherit;
  outline: none;
  text-decoration: none;
}
 
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%;overflow-x:hidden;overflow-y: scroll;
}
 
.app-container {
  padding: 20px;
}
.el-input__inner {
  background: transparent;
  border-radius: 2px;
  border: 1px solid #435F9E;
  height: 32px;
  line-height: 32px;
  color: #C6DCE0;
}
.el-input__icon {
  line-height: 32px;
}
.el-form-item__content {
  line-height: 40px;
}
.el-form-item {
  margin-bottom: 22px;
}
.el-form-item__label {
  font-size: 12px;
}
.el-dialog__wrapper {
  .el-input__inner {
    color: #000;
  }
}
.el-button {
  min-width: 150px;
  background: #AAB6BA;
  color: #90999C;
}
.el-button--primary {
  color: #FFF;
  background: #5DD1FC;
}
.el-textarea__inner {
  background-color: transparent;
  border: 1px solid #435F9E;
}
.table-action {
  display: inline-block;
  width: 92px;
  height: 32px;
  line-height: 32px;
  color: #5DD1FC;
  background: url('../assets/img/table-edit.png');
}
.table-del {
  margin-inline: 4px;
  color: #FF4342;
  background: url('../assets/img/table-del.png');
}
.el-dialog {
  // background: ;
  background-image: url('~@/assets/img/login/bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFF;
  height: 85vh;
}
.el-dialog__wrapper .el-input__inner {
  color: #FFF;
}
.el-form-item__content .el-input__inner {
  color: #FFF!important;
}