wuwei
2025-05-28 7c16e785d2ece656fb0822f7b2514f59dd23e91d
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
@charset "utf-8";
 
/*-----------------
  Author:xxxx
  update:2020
 -------------------*/
body {
    font-family: "微软雅黑", Arial, sans-serif;
    font-size: 14px;
    background: #282e35;
    position: relative;
}
 
.i-container {
    width: 100%;
    min-width: 1290px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}
 
.jmkt-main {
    overflow: hidden;
    padding: 0 20px;
    margin-top: 10px;
}
 
.layui-col-lg5, .layui-col-lg7 {
    width: 100%;
}
 
.pdgxq-m1 .layui-tab layui-tab-title{
    background-color: #262c33;
    border-bottom-width: 0px;
}
.layui-tab-content .layui-tab-item{
    width: 100%;
    height: 700px;
}
 
/*table 纵向滚动显示并隐藏滚动条*/
.layui-tab-content .layui-tab-item{
    /*height: 700px;*/
    overflow-y: scroll;
}
 
/*chrome 和Safari ----隐藏滚动条*/
.layui-tab-content .layui-tab-item::-webkit-scrollbar {
    width: 0 !important;
}
 
/*IE 10+ ----隐藏滚动条*/
.layui-tab-content .layui-tab-item{
    -ms-overflow-style: none;
}
 
/*Firefox ----隐藏滚动条*/
.layui-tab-content .layui-tab-item{
    scrollbar-width: none;
}