/* 适用于整个页面的滚动条 */
html {
    scrollbar-width: thin; /* Firefox 兼容 */
    scrollbar-color: #c1c1c1 #f1f1f1; /* Firefox 滑块 & 轨道颜色 */
}

/* WebKit (Chrome, Edge, Safari) 滚动条样式 */
::-webkit-scrollbar {
    width: 5px; /* 垂直滚动条宽度 */
    height: 5px; /* 水平滚动条高度 */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* 滚动条轨道颜色 */
    border-radius: 4px; /* 圆角 */
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1; /* 滚动条滑块颜色 */
    border-radius: 4px; /* 圆角 */
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8; /* 鼠标悬停时滑块颜色 */
}

.w300_ellipsis{
    width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*导航样式*/
#main_box{
    flex-direction: column;
}
body{
    background-color: #f5f5fa;
    min-width: 1024px;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em {
    position: absolute;
    left: -1px;
    top: -1px;
    padding: 1px;
    width: 100%;
    height: 100%;
    background-color: #2563eb;
}
.layui-laypage a:hover {
    color: #2563eb;
}
.layui-progress-bar{
    background-color: #2563eb;
}
 .layui-table th{
font-size: 16px !important;
}