lgq
2025-07-08 eea897aeac44a75e93fdc90939261f1b44711087
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
@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;
}
 
@media only screen and (max-width:1280px) and (max-height: 800px){
    .i-container {
        min-width: 1045px;
        height: 100%;
        overflow-y: scroll;
    }
    /** 隐藏列表下拉滚动条 **/
    .div-body::-webkit-scrollbar {
        display: none;
    }
    /*IE 10+ ----隐藏滚动条*/
    .div-body {
        -ms-overflow-style: none;
    }
    /*Firefox ----隐藏滚动条*/
    .div-body {
        scrollbar-width: none;
    }
    .layui-tab-content .layui-tab-item {
        height: 580px;
    }
 
 
}