wujingjing
2025-01-06 14e22728d1c03eb4cc770c8c93cfe9296b1a9441
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
html,
body {
    height: 100%;
    overflow: hidden;
}
.nav-bar-continer {
    width: 100%;
    height: 100%;
}
.custom_table_border_spacing {
    width: 100%;
    height: calc(100% - 284px);
    overflow: auto;
}
table {
    border: 1px solid #ccc;
    /* 边框合并 */
    border-collapse: collapse;
    width: 100%;
    height: 100%;
}
table thead {
    position: sticky;
    top: 0;
    background-color: #fff;
}
 
th,
td {
    border: 1px solid #ccc;
    color: #000;
    padding: 10px;
    white-space: pre-wrap;
    /* background: #e6e6e6; */
}
th {
    background-color: #008de3;
    color: #fff;
    font-size: 14px;
    width: 100px;
}
td {
    font-size: 14px;
    text-align: center;
}
tbody tr {
    background-color: rgba(244, 243, 247, 1);
    cursor: pointer;
}
tbody tr:hover {
    background-color: #add3fa;
    color: white;
}
.query_button {
    width: 170px;
    height: 30px;
    border-width: 0px;
    border-radius: 3px;
    background: #0066cb;
    cursor: pointer;
    outline: none;
    font-family: Microsoft YaHei;
    color: white;
    font-size: 17px;
}
.button.Long_rarrow {
    overflow: visible;
}
 
.button.blue {
    border: 1px solid #1e7db9;
    box-shadow: 0 1px 2px #8fcaee inset, 0 -1px 0 #497897 inset, 0 -2px 3px #8fcaee inset;
    background: -webkit-linear-gradient(top, #42a4e0, #2e88c0);
    background: -moz-linear-gradient(top, #42a4e0, #2e88c0);
    background: linear-gradient(top, #42a4e0, #2e88c0);
}
._box {
    width: 1180px;
    /* margin: 0px auto;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
}
 
.left {
    display: flex;
    align-items: flex-end;
}
 
.left .item {
    margin-right: 20px;
}
 
.left .item .input input {
    background-color: #eee;
    border: 1px solid #d2d2d2;
    height: 24px;
    border-radius: 3px;
}
 
.btnright {
    background: #2196f3;
    color: #fff;
    padding: 10px 30px;
}
.button {
    width: 320px;
    line-height: 38px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 1px #333;
    border-radius: 5px;
    overflow: hidden;
}
.img_title {
    width: 100%;
    height: 30px;
    position: absolute;
    top: 30px;
    color: white;
    font-size: 57px;
    text-align: center;
    letter-spacing: 20px;
}
.foot {
    width: 100%;
    height: 35px;
    background: #d3d3d3;
    color: #a3a4aa;
    font-family: 'SimSun';
    padding: 20px 0;
    box-sizing: border-box;
}
.foot_right {
    margin-top: -12px;
    text-align: center;
    font-family: 宋体;
    font-size: 18px;
    font-weight: bold;
    color: black;
}
.layui-table-cell {
    height: auto;
    white-space: normal;
}