zhaoxiaoqiang1
2026-01-04 f1d30d03186c79ca2cbcfe60d6d2ce7d73fba97b
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
body {
    // font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0px;
    padding: 0px;
    line-height: 24px;
    font: 14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif;
}
 
.el-input__prefix .el-input__icon {
    display: none !important;
}
 
* {
    box-sizing: border-box;
}
 
.el-form-item__label {
    width: 80px;
}
 
.el-input--prefix .el-input__inner {
    padding-left: 10px;
    font-size: 14px;
}
 
.el-input--suffix .el-input__inner {
    padding-right: 10px;
}
 
.el-menu-item.is-active {
    background-color: #263445 !important;
}
 
.el-menu-item:focus,
.el-menu-item:hover {
    background-color: #28b584;
}
 
.el-form-item__content>input:disabled {
    background-color: #fff;
    border: none;
}
 
.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner {
    background-color: #409eff !important;
    border-color: #409eff !important;
}
 
.el-checkbox__input.is-disabled .el-checkbox__inner::after {
    border-color: #fff !important;
}
.el-dialog__body {
    padding: 10px 16px;
}
 
.el-range-separator {
    width: 20px!important;
}
.el-range-editor.el-input__inner{
    width: 250px;
}
 
table {
    width: 100%;
    >tr {
        width: 100%;
        &:first-child {
            >td {
                background-color: #333333;
                color: white;
            }
        }
        td {
            padding: 6px;
            text-align: center;
            font-size: 14px;
            >a {
                color: blue;
                font-size: 14px;
                cursor: pointer;
            }
        }
    }
}
.el-table__header {
    tr {
        th {
            background-color: #FAFAFA;
            color: #222222;
        }
    }
}
.form-inline {
    // display: flex;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
    // box-shadow: 0px 0px 5px #ddd;
    padding: 20px 0px;
    flex-wrap: wrap;
    .el-form-item {
        float: left;
        width: 30%;
        margin: 8px 0px;
        height: 40px;
    }
    .search {
        // float: right;
        .el-form-item__content {
            // margin-left: 100px;
            margin-left: 10px;
        }
    }
}
 
.clearfix:after {
    content: ".";
    height: 1px;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both
}
 
.el-form-item.is-success .el-input__inner{
    border-color: #dcdfe6;
}
 
.el-form-item.is-success .el-input__inner:focus{
    border-color: #409EFF;
}