a, p, h1, h2, h3, h4, h5, h6, body, span, label, div {
    padding: 0;
    margin: 0;
    font-family: '微软雅黑';
}

div {
    font-family: '微软雅黑';
}

ul {
    padding: 0;
    margin: 0;
}

* {
    list-style: none;
}

a {
    text-decoration: none !important;
}

.clear {
    clear: both;
}

body {
    min-width: 1670px;
}


/*以下是主要css*/
.ksh {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: -2;
    font-size: 14px;
}

html, body {
    background: url(../images/bg.png) no-repeat;
    background-size: cover !important;
    overflow: hidden;
    margin: auto;
}

.login-box {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 348px;
    height: 440px;
    background: #fff;
    border-radius: 6px;
    z-index: 0;
    padding: 36px;
    text-align: center;
}

    .login-box .logo img {
        width: 180px;
    }

    .login-box .ifrom {
        margin-top: 8px;
    }

        .login-box .ifrom ul li {
            text-align: left;
            margin-bottom: 10px;
        }

            .login-box .ifrom ul li label {
                font-size: 14px;
                color: #333;
            }

                .login-box .ifrom ul li label:after {
                    content: '*';
                    color: red;
                    margin-left: 4px;
                }

            .login-box .ifrom ul li input {
                border: 1px solid #ddd;
                height: 36px;
                line-height: 36px;
                border-radius: 6px;
                margin-top: 8px;
                padding: 0 10px;
                width: 328px;
            }

    .login-box .button {
        margin-top: 24px;
    }

        .login-box .button button {
            height: 36px;
            width: 100%;
            background: #1677ff;
            border-radius: 6px;
            border: 0px;
            color: #fff;
            cursor: pointer;
        }

            .login-box .button button:hover {
                background: #4391ff;
            }

.login-bot {
    color: #fff;
    font-size: 12px;
    position: fixed;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 32px;
}

input[type="checkbox"] {
    -webkit-appearance: none; /* 移除默认样式 */
    -moz-appearance: none; /* 移除默认样式 */
    appearance: none; /* 移除默认样式 */
    width: 15px; /* 设置宽度 */
    height: 15px; /* 设置高度 */
    border-radius: 4px; /* 设置为圆形 */
    border: 1px solid #ddd; /* 设置边框 */
    margin-right: 6px;
}

    input[type="checkbox"]:checked {
        background-color: #1677ff; /* 设置选中时的背景颜色 */
        border: 1px solid #1677ff;
    }
.errmsg {
    color: red;
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 9999;
}

/* 遮罩层样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* 弹出框容器 */
.success-modal {
    background-color: white;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease-out;
}

/* 成功图标 */
.success-icon {
    color: #1677ff;
    font-size: 60px;
    margin-bottom: 20px;
}

/* 标题样式 */
.success-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

/* 消息内容 */
.success-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* 确认按钮 */
.confirm-btn {
    background-color: #1677ff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .confirm-btn:hover {
        background-color: #1677ff;
    }
