* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    font-size: 16px;
    line-height: 1.6
}

body {
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif;
    color: #333;
    background-color: #f8f9fa
}

.container {
    margin: 0 auto;
    padding: 0 20px
}

a {
    color: #1890ff;
    text-decoration: none;
    transition: color .3s
}

a:hover {
    color: #40a9ff
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all .3s
}

input,select,textarea {
    font-family: inherit;
    outline: none;
    transition: border-color .3s
}

img {
    max-width: 100%;
    height: auto
}

p {
    margin-bottom: 1rem
}

ul,ol {
    list-style: none
}

table {
    width: 100%;
    border-collapse: collapse
}

th,td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee
}

th {
    background-color: #f8f9fa;
    font-weight: 600
}

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px #0000001a;
    padding: 20px;
    margin-bottom: 20px
}

.grid {
    display: grid;
    gap: 20px
}

.grid-2 {
    grid-template-columns: repeat(2,1fr)
}

.grid-3 {
    grid-template-columns: repeat(3,1fr)
}

.grid-4 {
    grid-template-columns: repeat(4,1fr)
}

.flex {
    display: flex
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.flex-column {
    display: flex;
    flex-direction: column
}

.mt-1 {
    margin-top: .25rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-3 {
    margin-top: .75rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-5 {
    margin-top: 1.25rem
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-5 {
    margin-bottom: 1.25rem
}

.p-1 {
    padding: .25rem
}

.p-2 {
    padding: .5rem
}

.p-3 {
    padding: .75rem
}

.p-4 {
    padding: 1rem
}

.p-5 {
    padding: 1.25rem
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.text-primary {
    color: #1890ff
}

.text-success {
    color: #52c41a
}

.text-warning {
    color: #faad14
}

.text-danger {
    color: #ff4d4f
}

.text-muted {
    color: #999
}

.bg-primary {
    background-color: #6325f6
}

.bg-success {
    background-color: #52c41a
}

.bg-warning {
    background-color: #faad14
}

.bg-danger {
    background-color: #ff4d4f
}

.bg-light {
    background-color: #f8f9fa
}

.border {
    border: 1px solid #d9d9d9
}

.border-top {
    border-top: 1px solid #d9d9d9
}

.border-bottom {
    border-bottom: 1px solid #d9d9d9
}

.border-left {
    border-left: 1px solid #d9d9d9
}

.border-right {
    border-right: 1px solid #d9d9d9
}

.rounded {
    border-radius: 4px
}

.rounded-lg {
    border-radius: 8px
}

.rounded-xl {
    border-radius: 12px
}

.rounded-full {
    border-radius: 50%
}

.shadow-sm {
    box-shadow: 0 1px 3px #0000001a
}

.shadow {
    box-shadow: 0 2px 8px #0000001a
}

.shadow-lg {
    box-shadow: 0 4px 12px #0000001a
}

@media (max-width: 1200px) {
    .container {
        max-width:960px
    }
}

@media (max-width: 992px) {
    .container {
        max-width:720px
    }

    .grid-4,.grid-3 {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width: 768px) {
    .grid-4,.grid-3,.grid-2 {
        grid-template-columns:1fr
    }

    h1 {
        font-size: 2rem
    }

    h2 {
        font-size: 1.75rem
    }

    h3 {
        font-size: 1.5rem
    }
}

@media (max-width: 576px) {
    h1 {
        font-size:1.75rem
    }

    h2 {
        font-size: 1.5rem
    }

    h3 {
        font-size: 1.25rem
    }
}

.fade-in {
    animation: fadeIn .3s ease-in
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.slide-in {
    animation: slideIn .3s ease-out
}

@keyframes slideIn {
    0% {
        transform: translate(-20px);
        opacity: 0
    }

    to {
        transform: translate(0);
        opacity: 1
    }
}


.loading {
    display: inline-block;
    width: 40px;
    height: 12px;
    text-align: center;
}

.loading::before {
    content: '●●●';
    display: inline-block;
    color: #1890ff;
    animation: pulse-dots 1.4s infinite;
}

@keyframes pulse-dots {
    0%, 60%, 100% {
        opacity: 0.3;
    }
    30% {
        opacity: 1;
    }
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8
}

::selection {
    background-color: #1890ff;
    color: #fff
}

::-moz-selection {
    background-color: #1890ff;
    color: #fff
}

:root {
    --primary-color: #6325F6;
    --btn-bg-primary: #6325F6;
    --btn-bg-primary-hover: rgb(36, 153, 62);
    --btn-bg-primary-active: rgb(124, 68, 255);
    --btn-bg-primary-disabled: rgb(207, 207, 207);
    --btn-bg-primary-text: #fff;
    --btn-bg-primary-text-hover: #fff;
    --btn-bg-primary-text-active: #fff;
    --btn-bg-primary-text-disabled: #fff
}

.custom-message[data-v-7dc3c351] {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 9999;
    min-width: 300px;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 12px #00000026;
    animation: slideDown-7dc3c351 .3s ease-out
}

.custom-message.message-center[data-v-7dc3c351] {
    left: 50%;
    transform: translate(-50%)
}

.custom-message .message-content[data-v-7dc3c351] {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 8px;
    position: relative
}

.custom-message .message-icon[data-v-7dc3c351] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
    font-weight: 700
}

.custom-message .message-text[data-v-7dc3c351] {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    word-break: break-word
}

.custom-message .message-close[data-v-7dc3c351] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    margin-left: 12px;
    transition: background-color .3s ease
}

.custom-message .message-close[data-v-7dc3c351]:hover {
    background-color: #0000001a
}

.custom-message.message-success .message-content[data-v-7dc3c351] {
    background-color: #f0f9ff;
    border: 1px solid #67c23a
}

.custom-message.message-success .message-icon[data-v-7dc3c351] {
    background-color: #67c23a;
    color: #fff
}

.custom-message.message-success .message-text[data-v-7dc3c351],.custom-message.message-success .message-close[data-v-7dc3c351] {
    color: #67c23a
}

.custom-message.message-error .message-content[data-v-7dc3c351] {
    background-color: #fef0f0;
    border: 1px solid #f56c6c
}

.custom-message.message-error .message-icon[data-v-7dc3c351] {
    background-color: #f56c6c;
    color: #fff
}

.custom-message.message-error .message-text[data-v-7dc3c351],.custom-message.message-error .message-close[data-v-7dc3c351] {
    color: #f56c6c
}

.custom-message.message-warning .message-content[data-v-7dc3c351] {
    background-color: #fdf6ec;
    border: 1px solid #e6a23c
}

.custom-message.message-warning .message-icon[data-v-7dc3c351] {
    background-color: #e6a23c;
    color: #fff
}

.custom-message.message-warning .message-text[data-v-7dc3c351],.custom-message.message-warning .message-close[data-v-7dc3c351] {
    color: #e6a23c
}

.custom-message.message-info .message-content[data-v-7dc3c351] {
    background-color: #f3f0ff;
    border: 1px solid #6325F6
}

.custom-message.message-info .message-icon[data-v-7dc3c351] {
    background-color: #6325f6;
    color: #fff
}

.custom-message.message-info .message-text[data-v-7dc3c351],.custom-message.message-info .message-close[data-v-7dc3c351] {
    color: #6325f6
}

@keyframes slideDown-7dc3c351 {
    0% {
        opacity: 0;
        transform: translate(-50%) translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translate(-50%) translateY(0)
    }
}

@media (max-width: 768px) {
    .custom-message[data-v-7dc3c351] {
        left:10px;
        right: 10px;
        transform: none;
        min-width: auto;
        max-width: none
    }

    .custom-message.message-center[data-v-7dc3c351] {
        left: 10px;
        right: 10px;
        transform: none
    }

    .custom-message .message-content[data-v-7dc3c351] {
        padding: 12px 16px
    }

    .custom-message .message-text[data-v-7dc3c351] {
        font-size: 13px
    }
}

.custom-form[data-v-d6158c52] {
    width: 100%
}

.custom-form-item[data-v-60964032] {
    margin-bottom: 18px
}

.custom-form-item[data-v-60964032]:last-child {
    margin-bottom: 0
}

.form-item-label[data-v-60964032] {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #606266;
    font-weight: 500
}

.form-item-label.is-required[data-v-60964032]:before {
    content: "*";
    color: #f56c6c;
    margin-right: 4px
}

.form-item-content[data-v-60964032] {
    position: relative
}

.form-item-error[data-v-60964032] {
    color: #f56c6c;
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.4
}

@media (max-width: 768px) {
    .custom-form-item[data-v-60964032] {
        margin-bottom:16px
    }

    .form-item-label[data-v-60964032] {
        font-size: 13px;
        margin-bottom: 6px
    }
}

.custom-input-wrapper[data-v-f721f505] {
    position: relative;
    width: 100%
}

.custom-input[data-v-f721f505] {
    width: 100%;
    border: 1px solid #dcdfe6;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 16px;
    color: #606266;
    background-color: #fff;
    transition: border-color .3s ease;
    box-sizing: border-box
}

.custom-input[data-v-f721f505]:focus {
    outline: none;
    border-color: #6325f6
}

.custom-input[data-v-f721f505]:disabled {
    background-color: #f5f7fa;
    border-color: #e4e7ed;
    color: #c0c4cc;
    cursor: not-allowed
}

.custom-input.has-error[data-v-f721f505] {
    border-color: #f56c6c
}

.custom-input.input-small[data-v-f721f505] {
    height: 28px;
    font-size: 12px;
    padding: 0 10px;
    border-radius: 8px
}

.custom-input.input-default[data-v-f721f505] {
    height: 32px;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 10px
}

.custom-input.input-large[data-v-f721f505] {
    height: 40px;
    font-size: 16px;
    padding: 0 16px;
    border-radius: 12px
}

.password-toggle[data-v-f721f505] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px
}

.password-toggle .toggle-icon[data-v-f721f505] {
    width: 16px;
    height: 16px;
    object-fit: contain
}

.error-message[data-v-f721f505] {
    color: #f56c6c;
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.4
}

@media (max-width: 768px) {
    .custom-input.input-large[data-v-f721f505] {
        height:36px;
        font-size: 14px
    }
}

.custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    outline: none;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap;
    box-sizing: border-box
}

.custom-button:focus {
    outline: none
}

.custom-button.button-small {
    padding: 7px 15px;
    font-size: 12px;
    min-height: 28px
}

.custom-button.button-default {
    padding: 8px 15px;
    font-size: 14px;
    min-height: 32px
}

.custom-button.button-large {
    padding: 12px 20px;
    font-size: 16px;
    min-height: 40px
}

.custom-button.button-default {
    color: #606266;
    background-color: #fff;
    border-color: #dcdfe6
}

.custom-button.button-default:hover:not(.button-disabled):not(.button-loading) {
    color: #d3c8ed;
    border-color: #c6e2ff;
    background-color: #ecf5ff
}

.custom-button.button-primary {
    color: #fff;
    background-color: #6325f6;
    border-color: #6325f6
}

.custom-button.button-primary:hover:not(.button-disabled):not(.button-loading) {
    background-color: #5a21e0;
    border-color: #5a21e0
}

.custom-button.button-success {
    color: #fff;
    background-color: #67c23a;
    border-color: #67c23a
}

.custom-button.button-success:hover:not(.button-disabled):not(.button-loading) {
    background-color: #85ce61;
    border-color: #85ce61
}

.custom-button.button-warning {
    color: #fff;
    background-color: #e6a23c;
    border-color: #e6a23c
}

.custom-button.button-warning:hover:not(.button-disabled):not(.button-loading) {
    background-color: #ebb563;
    border-color: #ebb563
}

.custom-button.button-danger {
    color: #fff;
    background-color: #f56c6c;
    border-color: #f56c6c
}

.custom-button.button-danger:hover:not(.button-disabled):not(.button-loading) {
    background-color: #f78989;
    border-color: #f78989
}

.custom-button.button-info {
    color: #fff;
    background-color: #909399;
    border-color: #909399
}

.custom-button.button-info:hover:not(.button-disabled):not(.button-loading) {
    background-color: #a6a9ad;
    border-color: #a6a9ad
}

.custom-button.button-text {
    color: #409eff;
    background-color: transparent;
    border-color: transparent;
    padding: 8px 0
}

.custom-button.button-text:hover:not(.button-disabled):not(.button-loading) {
    color: #66b1ff
}

.custom-button.button-round {
    border-radius: 20px
}

.custom-button.button-circle {
    border-radius: 50%;
    padding: 8px;
    min-width: 32px;
    min-height: 32px
}

.custom-button.button-disabled {
    color: #c0c4cc;
    background-color: #fff;
    border-color: #ebeef5;
    cursor: not-allowed
}

.custom-button.button-disabled.button-primary,.custom-button.button-disabled.button-success,.custom-button.button-disabled.button-warning,.custom-button.button-disabled.button-danger,.custom-button.button-disabled.button-info {
    color: #fff;
    background-color: #c0c4cc;
    border-color: #c0c4cc
}

.custom-button.button-loading {
    cursor: not-allowed;
    opacity: .8
}

.loading-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin-5a2c7faa 1s linear infinite;
    margin-right: 6px
}

@keyframes spin-5a2c7faa {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@media (max-width: 768px) {
    .custom-button.button-large {
        padding:10px 16px;
        font-size: 14px;
        min-height: 36px
    }
}

.custom-dialog-overlay[data-v-b6db0076] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000080;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn-b6db0076 .3s ease-out
}

.custom-dialog[data-v-b6db0076] {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px #0000004d;
    overflow: hidden;
    animation: slideIn-b6db0076 .3s ease-out;
    max-height: 90vh;
    display: flex;
    flex-direction: column
}

.custom-dialog-header[data-v-b6db0076] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px 12px 24px;
    border-bottom: 1px solid #e0e0e0;
    background: #b291f9
}

.dialog-title[data-v-b6db0076] {
    font-size: 16px;
    color: #fff;
    margin: 0
}

.close-btn[data-v-b6db0076] {
    background: none;
    border: none;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease
}

.close-btn[data-v-b6db0076]:hover {
    color: #fff;
    background: #ffffff1a
}

.custom-dialog-body[data-v-b6db0076] {
    padding: 0;
    flex: 1;
    overflow-y: auto
}

.custom-dialog-footer[data-v-b6db0076] {
    padding: 10px 24px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 10px
}

@keyframes fadeIn-b6db0076 {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideIn-b6db0076 {
    0% {
        opacity: 0;
        transform: scale(.9) translateY(-20px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

@media (max-width: 768px) {
    .custom-dialog[data-v-b6db0076] {
        margin:20px;
        border-radius: 14px
    }

    .custom-dialog-header[data-v-b6db0076],.custom-dialog-footer[data-v-b6db0076] {
        padding: 15px 20px
    }
}

.custom-checkbox[data-v-f5eeeea6] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none
}

.custom-checkbox.disabled[data-v-f5eeeea6] {
    cursor: not-allowed;
    opacity: .6
}

.checkbox-input[data-v-f5eeeea6] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0
}

.checkbox-mark[data-v-f5eeeea6] {
    position: relative;
    width: 16px;
    height: 16px;
    border: 2px solid #d1d5db;
    border-radius: 3px;
    background: #fff;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.checkbox-mark.checked[data-v-f5eeeea6] {
    background: #6325f6;
    border-color: #6325f6
}

.check-icon[data-v-f5eeeea6] {
    width: 10px;
    height: 10px
}

.checkbox-label[data-v-f5eeeea6] {
    font-size: 14px;
    color: #333;
    cursor: pointer
}

.custom-checkbox:hover:not(.disabled) .checkbox-mark[data-v-f5eeeea6] {
    border-color: #6325f6
}

.custom-checkbox.disabled .checkbox-label[data-v-f5eeeea6] {
    cursor: not-allowed
}

.find-pwd-dialog {
    padding: 40px;
    text-align: center
}

.find-pwd-dialog .logo-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center
}

.find-pwd-dialog .logo-container .logo {
    height: 40px
}

.find-pwd-dialog .title-head {
    font-size: 22px;
    color: #6325f6;
    text-align: center;
    margin-bottom: 18px;
    font-weight: 700
}

.find-pwd-dialog .step {
    width: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center
}

.find-pwd-dialog .tips1,.find-pwd-dialog .tips2 {
    font-weight: 500;
    color: #222;
    font-size: 16px;
    text-align: center;
    margin-bottom: 8px
}

.find-pwd-dialog .tips2 {
    color: #888;
    font-size: 14px;
    margin-bottom: 0
}

.find-pwd-dialog .input-form {
    width: 100%;
    margin-top: 32px
}

.find-pwd-dialog .input-form .input-wrap {
    margin-bottom: 18px
}

.find-pwd-dialog .input-form .input-wrap .custom-input {
    border-radius: 12px;
    font-size: 16px;
    padding: 0 16px
}

.find-pwd-dialog .input-form .input-line {
    display: flex;
    margin-bottom: 20px;
    gap: 12px
}

.find-pwd-dialog .input-form .input-line .input-wrap {
    flex: 1;
    margin-bottom: 0
}

.find-pwd-dialog .input-form .input-line .get-code {
    width: 130px;
    height: 40px;
    background: #fff;
    border: 1px solid #6325F6;
    color: #6325f6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all .2s;
    margin-left: 0
}

.find-pwd-dialog .input-form .input-line .get-code.is-counting {
    background: #f5f5f5;
    color: #bbb;
    border-color: #eee;
    cursor: not-allowed
}

.find-pwd-dialog .input-form .input-line .get-code:hover:not(.is-counting) {
    background: #6325f6;
    color: #fff
}

.find-pwd-dialog .next-btn {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    background: #6325f6;
    border: none;
    margin-top: 18px;
    letter-spacing: 8px
}

.find-pwd-dialog .footer-section {
    margin-top: 24px;
    text-align: center
}

.find-pwd-dialog .footer-section .divider {
    color: #6325f6;
    font-size: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    text-align: center
}

.find-pwd-dialog .footer-section .divider:hover {
    text-decoration: underline
}

.password-strength-tip {
    font-size: 12px;
    margin: -10px 0 8px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all .3s ease
}

.password-strength-tip.invalid {
    color: #ee0a24;
    background-color: #fff2f0;
    border: 1px solid #ffebee
}

.password-strength-tip.valid.strength-medium {
    color: #ff8f00;
    background-color: #fff8e1;
    border: 1px solid #ffecb3
}

.password-strength-tip.valid.strength-strong {
    color: #07c160;
    background-color: #f0f9ff;
    border: 1px solid #e1f5fe
}

@media (max-width: 768px) {
    .find-pwd-dialog {
        padding:0px
    }

    .find-pwd-dialog .input-form .input-line .get-code {
        width: 100px;
        font-size: 14px
    }

    .find-pwd-dialog .input-form .next-btn {
        height: 44px;
        font-size: 18px
    }
}

.login-dialog[data-v-20de6821] {
    padding: 40px;
    text-align: center
}

.login-dialog .logo-container[data-v-20de6821] {
    margin-bottom: 40px;
    display: flex;
    justify-content: center
}

.login-dialog .logo-container .logo[data-v-20de6821] {
    height: 40px
}

.login-dialog .login-switch[data-v-20de6821] {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-bottom: 24px
}

.login-dialog .login-switch .switch-btn[data-v-20de6821] {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 700;
    color: #888;
    padding: 0 0 8px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color .2s,border-color .2s;
    outline: none
}

.login-dialog .login-switch .switch-btn[data-v-20de6821]:hover {
    color: #6325f6
}

.login-dialog .login-switch .switch-btn.active[data-v-20de6821] {
    color: #6325f6;
    border-bottom: 2.5px solid #6325F6
}

.login-dialog .tab-content .input-form .input-wrap[data-v-20de6821] {
    margin-bottom: 18px
}

.login-dialog .tab-content .input-form .input-wrap[data-v-20de6821] .custom-input {
    border-radius: 12px;
    font-size: 16px;
    padding: 0 16px
}

.login-dialog .tab-content .input-form .input-line[data-v-20de6821] {
    display: flex;
    margin-bottom: 20px;
    gap: 12px
}

.login-dialog .tab-content .input-form .input-line .input-wrap[data-v-20de6821] {
    flex: 1;
    margin-bottom: 0
}

.login-dialog .tab-content .input-form .input-line .get-code[data-v-20de6821] {
    width: 130px;
    height: 40px;
    background: #fff;
    border: 1px solid #6325F6;
    color: #6325f6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all .2s;
    margin-left: 0
}

.login-dialog .tab-content .input-form .input-line .get-code.is-counting[data-v-20de6821] {
    background: #f5f5f5;
    color: #bbb;
    border-color: #eee;
    cursor: not-allowed
}

.login-dialog .tab-content .input-form .input-line .get-code[data-v-20de6821]:hover:not(.is-counting) {
    background: #6325f6;
    color: #fff
}

.login-dialog .tab-content .input-form .login-btn[data-v-20de6821] {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    background: #6325f6;
    border: none;
    margin-top: 18px;
    letter-spacing: 8px
}

.login-dialog .login-footer[data-v-20de6821] {
    margin-top: 24px;
    display: flex;
    justify-content: space-between
}

.login-dialog .login-footer .register-link[data-v-20de6821],.login-dialog .login-footer .forgot-pwd-link[data-v-20de6821] {
    color: #6325f6;
    cursor: pointer;
    text-decoration: none;
    font-size: 15px
}

.login-dialog .login-footer .register-link[data-v-20de6821]:hover,.login-dialog .login-footer .forgot-pwd-link[data-v-20de6821]:hover {
    text-decoration: underline
}

@media (max-width: 768px) {
    .login-dialog[data-v-20de6821] {
        padding:20px
    }

    .login-dialog .login-switch[data-v-20de6821] {
        gap: 60px
    }

    .login-dialog .login-switch .switch-btn[data-v-20de6821] {
        font-size: 18px
    }

    .login-dialog .tab-content .input-form .input-line .get-code[data-v-20de6821] {
        width: 100px;
        font-size: 14px
    }

    .login-dialog .tab-content .input-form .login-btn[data-v-20de6821] {
        height: 44px;
        font-size: 18px
    }
}

.register-section[data-v-20de6821] {
    padding: 0 40px;
    margin-top: 0
}

.register-title[data-v-20de6821] {
    font-size: 22px;
    color: #6325f6;
    text-align: center;
    margin-bottom: 18px;
    font-weight: 700
}

.login-tabs[data-v-20de6821] {
    padding: 0 40px;
    margin-top: 0
}

.agreement-checkbox[data-v-20de6821] {
    display: flex;
    align-items: flex-start;
    margin: 0 0 8px;
    gap: 8px
}

.agreement-checkbox .agreement-text-wrap[data-v-20de6821] {
    font-size: 14px;
    color: #888;
    text-align: left
}

.agreement-checkbox .agreement-text-wrap .policy-text[data-v-20de6821] {
    color: #6325f6;
    cursor: pointer;
    margin: 0 2px;
    word-break: break-all
}

.register-hint[data-v-20de6821] {
    color: #888;
    font-size: 14px;
    text-align: center;
    margin: 8px 0 0
}

.button-section[data-v-20de6821] {
    padding: 0 40px;
    margin-top: 18px
}

.button-section .login-button[data-v-20de6821] {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    background: #6325f6;
    border: none;
    margin-bottom: 0;
    letter-spacing: 8px
}

.footer-section[data-v-20de6821] {
    padding: 0 40px;
    margin-top: 24px;
    text-align: center
}

.footer-section .divider[data-v-20de6821] {
    color: #6325f6;
    font-size: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    text-align: center
}

.footer-section .divider.two[data-v-20de6821] {
    display: flex;
    justify-content: space-between;
    color: #6325f6;
    font-size: 15px;
    margin-bottom: 12px
}

.footer-section .divider.two div[data-v-20de6821] {
    cursor: pointer
}

.footer-section .third-party-login[data-v-20de6821] {
    display: flex;
    align-items: center;
    margin: 18px 0 10px
}

.footer-section .third-party-login .divider-line[data-v-20de6821] {
    flex: 1;
    height: 1px;
    background: #eee
}

.footer-section .third-party-login .divider-text[data-v-20de6821] {
    padding: 0 10px;
    color: #bbb;
    font-size: 14px
}

.footer-section .third-party-icons[data-v-20de6821] {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 0
}

.footer-section .third-party-icons .game-icon-wrapper[data-v-20de6821] {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
    cursor: pointer
}

.footer-section .third-party-icons .game-icon-wrapper .game-icon[data-v-20de6821] {
    width: 44px;
    margin-bottom: 4px
}

.footer-section .third-party-icons .game-icon-wrapper span[data-v-20de6821] {
    font-size: 13px;
    color: #333
}

.password-strength-tip[data-v-20de6821] {
    font-size: 12px;
    margin: -10px 0 8px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all .3s ease
}

.password-strength-tip.invalid[data-v-20de6821] {
    color: #ee0a24;
    background-color: #fff2f0;
    border: 1px solid #ffebee
}

.password-strength-tip.valid.strength-medium[data-v-20de6821] {
    color: #ff8f00;
    background-color: #fff8e1;
    border: 1px solid #ffecb3
}

.password-strength-tip.valid.strength-strong[data-v-20de6821] {
    color: #07c160;
    background-color: #f0f9ff;
    border: 1px solid #e1f5fe
}

.policy-content[data-v-20de6821] {
    padding: 20px;
    line-height: 1.6;
    color: #333
}

.policy-content[data-v-20de6821] h1 {
    margin: 24px 0 16px;
    font-weight: 600;
    color: #333
}

.policy-content[data-v-20de6821] p {
    margin: 16px 0;
    line-height: 1.8
}

.policy-content[data-v-20de6821] ul {
    margin: 16px 0;
    padding-left: 24px
}

.policy-content[data-v-20de6821] li {
    margin: 8px 0
}

.policy-content[data-v-20de6821] blockquote {
    margin: 16px 0;
    padding: 16px;
    background: #f8f9fa;
    border-left: 4px solid #6325F6;
    border-radius: 4px
}

.policy-content[data-v-20de6821] code {
    background: #f1f3f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: Courier New,monospace
}

.policy-content[data-v-20de6821] pre {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 16px 0
}

.certification-dialog[data-v-20de6821] {
    padding: 20px;
    text-align: center
}

.certification-dialog .certification-content .certification-text[data-v-20de6821] {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px
}

.certification-dialog .certification-content .certification-actions[data-v-20de6821] {
    display: flex;
    justify-content: center
}

.certification-dialog .certification-content .certification-actions .certification-btn[data-v-20de6821] {
    background: #6325f6;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s
}

.certification-dialog .certification-content .certification-actions .certification-btn[data-v-20de6821]:hover {
    background: #7d46ff;
    box-shadow: 0 4px 12px #6325f64d
}

.certification-dialog .certification-content .certification-actions .certification-btn[data-v-20de6821]:active {
    transform: translateY(1px)
}

.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100
}

.header-container {
    margin: 0 20px
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 60px
}

.logo {
    width: 144px;
    height: 34px;
    background: url(../images/glsail-logo-Cn766TyJ.png) no-repeat center center;
    background-size: 100% 100%
}

.logo a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none
}

.logo a h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #1890ff;
    line-height: 37px;
    text-align: center
}

.nav-menu {
    display: flex;
    gap: 24px;
    margin-left: 40px
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all .5s
}

.nav-menu a:hover {
    color: var(--btn-bg-primary-hover)
}

.shop-dropdown {
    position: relative
}

.shop-dropdown:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    z-index: 999
}

.shop-dropdown .shop-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 8px #0000001a;
    z-index: 1000;
    min-width: 160px;
    margin-top: 0;
    padding-top: 4px
}

.shop-dropdown .shop-menu .shop-menu-item {
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color .3s;
    color: #333;
    font-size: 14px
}

.shop-dropdown .shop-menu .shop-menu-item:hover {
    background-color: #f5f5f5
}

.shop-dropdown .shop-menu .shop-menu-item.disabled {
    color: #999;
    cursor: not-allowed
}

.shop-dropdown .shop-menu .shop-menu-item.disabled:hover {
    background-color: transparent
}

.shop-dropdown .shop-menu .shop-menu-item:first-child {
    border-radius: 4px 4px 0 0
}

.shop-dropdown .shop-menu .shop-menu-item:last-child {
    border-radius: 0 0 4px 4px
}

.news-dropdown {
    position: relative
}

.news-dropdown:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    z-index: 999
}

.news-dropdown .news-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 8px #0000001a;
    z-index: 1000;
    min-width: 120px;
    margin-top: 0;
    padding-top: 4px
}

.news-dropdown .news-menu .news-menu-item {
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color .3s;
    color: #333;
    font-size: 14px
}

.news-dropdown .news-menu .news-menu-item:hover {
    background-color: #f5f5f5
}

.news-dropdown .news-menu .news-menu-item:first-child {
    border-radius: 4px 4px 0 0
}

.news-dropdown .news-menu .news-menu-item:last-child {
    border-radius: 0 0 4px 4px
}

@media (max-width: 768px) {
    .header .container {
        padding:0 0px
    }

    .search-box {
        margin: 10px 0;
        max-width: 100%
    }

    .nav-menu {
        gap: 16px
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto
}

.header-actions .icon-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 20px;
    padding: 0 6px
}

.header-actions .icon-btn:hover {
    color: #409eff
}

.header-actions .login-btn {
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 36px;
    width: 86px;
    height: 36px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
    transition: all .4s ease
}

.header-actions .login-btn .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 6px
}

.header-actions .login-btn .user-name {
    max-width: 98px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.header-actions .login-btn:hover {
    box-shadow: 0 0 10px 0 var(--btn-bg-primary-hover);
    background: var(--btn-bg-primary-hover)
}

.header-actions .login-btn.is-login {
    width: 152px;
    color: #333;
    justify-content: flex-start
}

.header-actions .login-btn.is-login:hover {
    color: #fff
}

.header-actions .login-btn .arrow-icon {
    width: 8px;
    height: 6px;
    position: absolute;
    top: 16px;
    right: 12px
}

.header-actions .user-dropdown {
    position: relative
}

.header-actions .user-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 8px #0000001a;
    z-index: 1000;
    min-width: 120px
}

.header-actions .user-dropdown .dropdown-menu .dropdown-item {
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color .3s;
    color: #333
}

.header-actions .user-dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #f5f5f5
}

.header-actions .user-dropdown .dropdown-menu .dropdown-item:first-child {
    border-radius: 4px 4px 0 0
}

.header-actions .user-dropdown .dropdown-menu .dropdown-item:last-child {
    border-radius: 0 0 4px 4px
}

.header-actions .user-options {
    display: flex;
    align-items: center;
    /*gap: 12px*/
}

.header-actions .user-options li {
    transition: all .5s ease;
    border-radius: 50%
}

.header-actions .user-options li:hover {
    cursor: pointer;
    box-shadow: 0 0 10px #ffffffb3;
    transform: translateY(-2px)
}

.header-actions .user-options .op-order {
    width: 26px;
    height: 29px;
    background-size: 100% 100%
}

.header-actions .user-options .op-mail {
    width: 32px;
    height: 26px;
    background-size: 100% 100%
}
