

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ring {
    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top-color: #3498db;
    border-right-color: #e74c3c;
    border-bottom-color: #f1c40f;
    border-left-color: #2ecc71;
    animation: spin 1s linear infinite, grow 1s ease-in-out infinite alternate;
}

.text {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
    animation: blink 1s infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes grow {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1.5);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.copyright {
    padding-top: 15px;
    background-color: #e6e6e6;
}

body {
    overflow: hidden;
    overflow-y: auto;
    background-attachment: fixed;
    background-position: top;
    background-color: #e6e6e6
}
.cgi-body {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background-color: #FFFFFF
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #333
}

html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100%;
    font-family: "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
}

td, th {
    border: 1px solid #DDD;
}
.KJ-IFRAME {
    height: 140px;
}
.KJ-TabBox ul, .KJ-TabBox li {
    margin: 0;
    list-style: none;
    padding: 0;
    border: 0;
    font-size: 14px;
}

.KJ-TabBox li {
    display: inline-block;
    border: 1px solid darkgrey;
    padding: 5px;
    border-bottom: 0;
    color: darkgrey;
    cursor: pointer;
}

.KJ-TabBox li {
    border-left: none;
}

    .KJ-TabBox li:first-child {
        border-left: solid 1px;
    }

    .KJ-TabBox li.cur {
        color: limegreen;
        font-weight: bold;
        background-color: white;
        cursor: default;
        border-color: limegreen;
        border-left: solid 1px;
        border-right: solid 1px;
        color: crimson;
        border-color: crimson;
    }

.KJ-TabBox div {
    border-top: 1px solid gainsboro;
    margin-top: -1px;
    display: none;
}

    .KJ-TabBox div.cur {
        display: block !important;
        border-color: limegreen;
    }

.KJ-TabBox .KJ-IFRAME {
    background: white;
}
.dz_content tr {
    height: 38px;
}
/* 自适应宽度设置 */
.msgx {
    width: 100%;   
    margin: 0 auto;
}
/* 弹窗样式 */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 1000;
    width: 98%;
   /* max-width: 300px;*/
    height: 80vh; /* 弹窗高度固定为窗口的80% */
    overflow-y: auto; /* 当内容超出时允许滚动 */
}
    /* 弹窗关闭按钮 */
    .popup .close-btn {
        position: absolute;
        bottom: 10px; /* 悬浮在弹窗底部10px */
        left: 50%;
        transform: translateX(-50%);
        width: 40px; /* 调整按钮宽度 */
        height: 40px; /* 调整按钮高度 */
        padding: 0; /* 移除填充 */
        background: #f44336;
        color: white;
        border: none;
        border-radius: 50%; /* 圆形按钮 */
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 添加阴影 */
        font-size: 24px; /* 增大X的尺寸 */
        line-height: 40px; /* 让X垂直居中 */
        text-align: center; /* 让X水平居中 */
    }
    /* 显示弹窗的类 */
    .popup.show {
        display: block;
    }
/* 覆盖层 */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
justify-content: center;
align-items: center;
color:#ffffff;
font-size:19px;
font-weight:bold;
}
    /* 显示覆盖层的类 */
    .overlay.show {
        display: block;
    }