@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --primary-blue: #3a6eff;
    --primary-purple: #8b5cf6;
    --text-primary: #1d2129;
    --text-secondary: #4e5969;
    --text-placeholder: #86909c;
    --border-color: #c9cdd4;
    --bg-page: #f2f5ff;
    --bg-form: #ffffff;
    --radius: 8px;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-page);
    background-image: radial-gradient(circle at 0% 0%, rgba(58, 110, 255, 0.12) 0%, transparent 40%), radial-gradient(circle at 100% 100%, rgba(139, 92, 246, 0.12) 0%, transparent 40%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* 背景波浪装饰 */
.bg-waves {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    z-index: -1;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 200%;
    height: 200%;
    background: rgba(58, 110, 255, 0.08);
    border-radius: 50% 50% 0 0;
    transform: translate3d(0, 0, 0);
}

.wave:nth-child(1) {
    left: -50%;
    animation: wave 12s infinite linear;
    opacity: 0.5;
}

.wave:nth-child(2) {
    left: 0;
    animation: wave 8s infinite linear;
    opacity: 0.3;
}

.wave:nth-child(3) {
    left: 50%;
    animation: wave 10s infinite linear;
    opacity: 0.1;
}

@keyframes wave {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* 顶部品牌区 */
.header {
    padding: 40px 40px;
}

.brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header.logo img {
    width: 180px;
    height: 40px;
    display: block;
}

.power-badge {
    display: inline-flex;
    align-items: center;
    color: #999;
    padding: 10px 24px;
    font-size: 12px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #15c377;
    border-radius: 50%;
    animation: pulse 2s infinite;
    margin-left: 10px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(21, 195, 119, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 77, 79, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 79, 0);
    }
}

/* 主内容区 */
.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* 左侧宣传区 */
.promo-section {
    width: 50%;
}

.promo-illustration {
    width: 100%;
    max-width: 585px;
    margin: 0 auto;
}

/* 右侧登录表单区 */
.login-section {
    width: 42%;
    max-width: 480px;
    background-color: var(--bg-form);
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

label {
    font-size: 14px;
    color: #313a46;
    font-family: "Rubik",
    sans-serif;
    font-weight: 500;
}

.form-control {
    border: 1px solid #d9e3e9;
    border-radius: 4px;
    max-width: 100%;
    padding: .469rem .75rem;
    font-size: 14px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.form-control:focus {
    border: 1px solid #a2b9ca;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

.form-control-lg {
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 4px;
}

.form-control-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
}

input[type="color"] {
    min-height: 38px;
}

.input-group-prepend .btn,
.input-group-append .btn {
    min-height: 38px;
}

.form-control-sm,
.input-group-sm>.form-control,
.input-group-sm>.input-group-append>.btn,
.input-group-sm>.input-group-append>.input-group-text,
.input-group-sm>.input-group-prepend>.btn,
.input-group-sm>.input-group-prepend>.input-group-text {
    font-size: 12px;
}

.custom-select:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.custom-control-input {
    display: none;
}

.custom-control-input:checked~.custom-control-indicator {
    background-color: #07C160;
}

.form-check-input:only-child {
    position: absolute;
}

#form_content label {
    font-size: 15px;
    user-select: none;
}

#form_content .captcha-pic {
    height: 42px;
    margin-left: 10px;
    border-radius: 0.5rem;
}

#form_content input {
    padding: 1.35rem 0.8rem;
    background: #f5f5f5;
    color: #606266;
    border: none;
    border-radius: 0.5rem;
}

#form_content input::placeholder {
    color: #c0c4cc;
}

#form_content .checkbox.checkbox-custom label::before {
    top: 2px;
    border: 1px solid #98a6ad;
}

#form_content .checkbox.checkbox-custom input[type="checkbox"]:checked+label::before {
    background-color: var(--primary-blue);
    border-color: transparent;
}

#form_content .login-button {
    padding: .75rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #FFF;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    border-color: transparent;
}

.account-copyright {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
}

.account-copyright .copyright {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    margin: 0;
}

.account-copyright .copyright a:hover {
    color: #076ab6;
    text-decoration: underline;
    cursor: pointer;
}

.account-copyright .copyright .govbei {
    display: inline-block;
    padding-left: 18px;
    height: 14px;
    line-height: 14px;
    background: url(../images/police.png) 0 0 no-repeat;
}


/* =============
   Checkbox and Radios
============= */
.checkbox label { display: inline-block; padding-left: 8px; position: relative; font-weight: normal; }

.checkbox label::before { -o-transition: 0.3s ease-in-out; -webkit-transition: 0.3s ease-in-out; background-color: #ffffff; border-radius: 3px; border: 2px solid #98a6ad; content: ""; display: inline-block; height: 18px; left: 0; margin-left: -18px; position: absolute; transition: 0.3s ease-in-out; width: 18px; outline: none !important; }

.checkbox label::after { color: #797979; display: inline-block; font-size: 11px; height: 18px; left: 0; margin-left: -18px; padding-left: 3px; padding-top: 2px; position: absolute; top: 0; width: 18px; }

.checkbox input[type="checkbox"] { cursor: pointer; opacity: 0; z-index: 1; outline: none !important; }

.checkbox input[type="checkbox"]:disabled + label { opacity: 0.65; }

.checkbox input[type="checkbox"]:focus + label::before { outline-offset: -2px; outline: none; }

.checkbox input[type="checkbox"]:checked + label::after { content: ""; position: absolute; top: 3px; left: 7px; display: table; width: 5px; height: 10px; border: 1px solid #313a46; border-top-width: 0; border-left-width: 0; -webkit-transform: rotate(45deg); transform: rotate(45deg); }

.checkbox input[type="checkbox"]:disabled + label::before { background-color: #e3eaef; cursor: not-allowed; }

.checkbox.checkbox-circle label::before { border-radius: 50%; }

.checkbox.checkbox-inline { margin-top: 0; }

.checkbox.checkbox-single input { height: 18px; width: 18px; position: absolute; }

.checkbox.checkbox-single label { height: 18px; width: 18px; }

.checkbox.checkbox-single label:before { margin-left: 0; }

.checkbox.checkbox-single label:after { margin-left: 0; }

.checkbox-custom input[type="checkbox"]:checked + label::before { background-color: #07C160; border-color: #07C160; }

.checkbox-custom input[type="checkbox"]:checked + label::after { border-color: #ffffff; }

.checkbox-primary input[type="checkbox"]:checked + label::before { background-color: #2d7bf4; border-color: #2d7bf4; }

.checkbox-primary input[type="checkbox"]:checked + label::after { border-color: #ffffff; }

.checkbox-danger input[type="checkbox"]:checked + label::before { background-color: #f1556c; border-color: #f1556c; }

.checkbox-danger input[type="checkbox"]:checked + label::after { border-color: #ffffff; }

.checkbox-info input[type="checkbox"]:checked + label::before { background-color: #4eb7eb; border-color: #4eb7eb; }

.checkbox-info input[type="checkbox"]:checked + label::after { border-color: #ffffff; }

.checkbox-warning input[type="checkbox"]:checked + label::before { background-color: #f9bc0b; border-color: #f9bc0b; }

.checkbox-warning input[type="checkbox"]:checked + label::after { border-color: #ffffff; }

.checkbox-success input[type="checkbox"]:checked + label::before { background-color: #0acf97; border-color: #0acf97; }

.checkbox-success input[type="checkbox"]:checked + label::after { border-color: #ffffff; }

.checkbox-purple input[type="checkbox"]:checked + label::before { background-color: #777edd; border-color: #777edd; }

.checkbox-purple input[type="checkbox"]:checked + label::after { border-color: #ffffff; }

.checkbox-pink input[type="checkbox"]:checked + label::before { background-color: #ff679b; border-color: #ff679b; }

.checkbox-pink input[type="checkbox"]:checked + label::after { border-color: #ffffff; }

.checkbox-dark input[type="checkbox"]:checked + label::before { background-color: #313a46; border-color: #313a46; }

.checkbox-dark input[type="checkbox"]:checked + label::after { border-color: #ffffff; }

/*!  0bu7yWlxpn75Znr1IN5bff4RAFUvsg7fzdGXkVE++LpOTiQPYAAPETlFU+greqSqr/SkC/P33XdQZrr3syRv+HEFe7InDF9B79HYUBkfSFgDUCZ5EFQLsg==  */