

.login-title {
    text-align: center;
    margin-top: 18px;
    font-size: 18px;
    color: #333;
}


.login-form-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 520px;

}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    padding: 40px;
}

.login-form.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

    .login-form.slide-left-out {
        animation: slideLeftOut 0.4s ease forwards;
    }

    .login-form.slide-left-in {
        animation: slideLeftIn 0.4s ease forwards;
    }

    .login-form.slide-right-out {
        animation: slideRightOut 0.4s ease forwards;
    }

    .login-form.slide-right-in {
        animation: slideRightIn 0.4s ease forwards;
    }

@keyframes slideLeftOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideLeftIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

@keyframes slideRightOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideRightIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

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


.login-form .account-title {
    margin-bottom: 20px;
}

.login-form-wx {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.login-form-wx .login-title {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.login-form-wx h3 {
    margin-left: 10px;
    margin-top: 5px;
    font-size: 20px;
    color: #333;
}

.login-title h3 {
    margin-left: 10px;
    margin-top: 5px;
    font-size: 18px;
    color: #333;
}

.bind-modal-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; /* 水平居中 */
}
.bind-modal-title h3 {
    margin-left: 10px;
    margin-top: 5px;
    font-size: 18px;
    color: #333;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #4a90d9;
}

.code-group {
    display: flex;
    gap: 10px;
}

.code-group .form-input {
    flex: 1;
}

.send-code-btn {
    padding: 12px 20px;
    background: #4a90d9;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

.send-code-btn:hover {
    background: #357abd;
}

.send-code-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.login-submit-btn {
    width: 100%;
    padding: 14px;
    background: #4a90d9;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.login-submit-btn:hover {
    background: #357abd;
}

.user-menu-item {
    position: relative;
}

.user-menu-wrapper {
    position: relative;
    padding: 5px 10px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px 10px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease; /* 平滑动画 */
}

.user-avatar:hover {
    transform: scale(1.4); /* 放大1.2倍 */
    transform-origin: center; /* 从中心放大（可选） */
    z-index: 10; /* 保证放大后在最上层 */
}

.user-nickname {
    font-size: 14px;
    color: #333;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1000;
    padding: 8px 0;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 30px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #f5f5f5;
}

.dropdown-icon {
    font-size: 16px;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}

.logout-item {
    
}

.logout-item:hover {
    color: #ff4d4f;
}

.personal-center-wrapper {
    min-height: calc(100vh - 140px);
    background: #f5f7fa;
}

.personal-center-container {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 140px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
}


.pc-header {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
}

.pc-header-avatar {
    flex-shrink: 0;
}

.pc-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.pc-header-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pc-nickname-large {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.pc-bio-large {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.pc-main {
    display: flex;
    gap: 20px;
    flex: 1;
}
.pc-sidebar {
    width: 280px;
    min-height: 720px;
    background: #fff;
    padding: 20px 0;
    border-radius: 12px;
}


.pc-menu {
    padding: 20px 0;
}

.pc-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.pc-menu-item:hover {
    background: #f5f7fa;
    color: #4a90d9;
}

.pc-menu-item.active {
    background: #e8f4ff;
    color: #4a90d9;
    border-left: 3px solid #4a90d9;
}

.pc-menu-icon {
    font-size: 18px;
}

.pc-content {
    flex: 1;
    padding: 30px 40px;
    background: #fff;
    border-radius: 12px;
}

.pc-section {
    max-width: 800px;
}


.pc-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.pc-section-center {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    padding-bottom: 5px;
    text-align: center;
}

.pc-section-sub {
    font-size: 16px;
    color: #999;
    margin-bottom: 30px;
    padding-bottom: 15px;
    text-align: center;
}

.pc-textarea {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    min-height: 120px;
    resize: vertical;
    transition: border-color 0.3s;
}

    .pc-textarea:focus {
        outline: none;
        border-color: #4a90d9;
    }

.pc-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pc-form .small{
    width:450px;
}

.pc-form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}


.pc-form-vertical {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.pc-form-vertical .pc-label {
    min-width: auto;
    font-size: 16px;
    color: #333;
}

.pc-form-vertical .pc-textarea {
    width: 100%;
    font-size: 15px;
    min-height: 256px;
}

.pc-form-vertical .pc-select {
    width: 100%;
    font-size: 15px;
}

.pc-label {
    font-size: 15px;
    color: #666;
    font-weight: 500;
    min-width: 80px;
    flex-shrink: 0;
}
.pc-label-bio {
    font-size: 15px;
    color: #666;
    font-weight: 500;
    min-width: 80px;
    margin-top: -76px;
    flex-shrink: 0;
}

.pc-label-note {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-left: 100px;
    margin-top: -20px;
    margin-bottom: -10px;
    flex-shrink: 0;
}
.pc-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.pc-input:focus {
    outline: none;
    border-color: #4a90d9;
}

.pc-input:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}



.pc-select {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

.pc-btn {
    padding: 10px 60px;
    background: linear-gradient(135deg, #5DB4FF, #299DFF);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin: 20px auto 0;
    display: block;
}

.pc-btn-left {
    padding: 8px 0px;
    background: linear-gradient(135deg, #5DB4FF, #299DFF);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin: 10px 96px; /*上左*/
    width: 120px;
}

.pc-btn:hover {
    background: linear-gradient(135deg, #299DFF, #1F98FF);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pc-btn-left:hover {
    background: linear-gradient(135deg, #299DFF, #1F98FF);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 13px;
    margin-bottom: 30px;
}

.membership-card {
    position: relative;
    background: linear-gradient(to bottom, #fff, #f8f8f8);
    border: 1px solid #eee;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    height: 150px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}


.membership-reference-price {
    position: absolute;
    top: -12px;
    left: -1px;
    background: linear-gradient(to bottom right, #FF938E, #FF5048);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px 6px 6px 0px;
    font-weight: 500;
}

.membership-card.active {
    border-color: #E1B746;
    background: linear-gradient(to bottom, #FEFAE3, #FFE09D);
}

.membership-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
}

.membership-price {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-top: 5px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.membership-price-symbol {
    font-size: 16px;
    font-weight: 600;
    margin-right: 1px;
    margin-bottom: 3px;
}

.membership-desc {
    font-size: 14px;
    color: #999;
}

.vip-compare-section {
    margin-bottom: 30px;
}

.vip-compare-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.vip-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}


.vip-compare-table th,
.vip-compare-table td {
    padding: 8px 20px;
    text-align: center;
    border-bottom: none;
}

.vip-compare-table th:not(:first-child),
.vip-compare-table td:not(:first-child) {
    border-left: 1px solid #f0f0f0;
}

.vip-compare-table th {
    font-weight: 600;
    color: #333;
    position: relative;
}

    .vip-compare-table th:nth-child(1) {
        background: linear-gradient(135deg, #9371FA, #8283FA);
        color: #fff;
    }

    .vip-compare-table th:nth-child(2) {
        background: linear-gradient(135deg, #8283FA, #7097FB);
        color: #fff;
    }

    .vip-compare-table th:nth-child(3) {
        background: linear-gradient(135deg, #FBC93D, #FBB633);
        color: #fff;
    }
/*
    .vip-compare-table th:last-child {
        background: linear-gradient(135deg, #fcd34d, #f59e0b);
        color: #fff;
    }*/

.vip-table-header {
    height: 60px;
    padding-bottom: 5px;
    padding-top: 15px;
    background: linear-gradient(to right, #956EF9, #57AEF7);
}

.vip-icon-row th {
    border-bottom: none;
    padding-bottom: 5px;
    padding-top: 15px;
}


    .vip-icon-row th:nth-child(1) {
        background: #fff;
    }

    .vip-icon-row th:nth-child(2) {
        background: #fff;
    }

    .vip-icon-row th:nth-child(3) {
        background: #fff;
    }

.vip-icon {
    font-size: 32px;
    display: inline-block;
}


.vip-compare-table td {
    color: #333;
}

.vip-feature-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;

}

.vip-feature-desc {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

.vip-compare-table tbody tr:nth-child(odd) td:nth-child(1) {
    background: #fff;
}

.vip-compare-table tbody tr:nth-child(odd) td:nth-child(2) {
    background: #fff;
}

.vip-compare-table tbody tr:nth-child(odd) td:last-child {
    background: #fff;
    color: #FFBC00;
    font-weight: bold;
}

.vip-compare-table tbody tr:nth-child(even) td:nth-child(1) {
    background: #F3F0FE;
}

.vip-compare-table tbody tr:nth-child(even) td:nth-child(2) {
    background: #F3F0FE;
}

.vip-compare-table tbody tr:nth-child(even) td:last-child {
    background: #F3F0FE;
    color: #FFBC00;
    font-weight: bold;
}

.payment-section {
    text-align: center;
}

.payment-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.payment-qrcodes {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.payment-item {
    text-align: center;
}

.payment-qrcode {
    width: 180px;
    height: 180px;
    background: #f5f7fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #999;
}

.payment-item p {
    font-size: 14px;
    color: #666;
}

.orders-list {
    background: #fff;
    border-radius: 8px;
}

.order-empty {
    text-align: center;
    padding: 60px 0;
    color: #999;
}

.empty-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.security-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #f5f7fa;
    border-radius: 8px;
}

.security-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.security-details{
    display: flex;
    flex-direction: column;
    height: 43px;
}

.security-details h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.security-icon {
    font-size: 16px;
}


.security-details p {
    font-size: 13px;
    color: #999;
}

.security-btn {
    color: #fff;
    width: 66px;
    height: 30px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s;
}


.security-btn-yellow {
    background: #FF7C7C;
}

    .security-btn-yellow:hover {
        background: #FF5D5D;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

.security-btn-green {
    background: #31A2FF;
}

    .security-btn-green:hover {
        background: #0F95FF;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }


.login-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.login-links-left {
    font-size: 14px;
    color: #888;
    justify-content: start;
}

.login-links-wx {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 26px;
    cursor: pointer;
    font-size: 15px;
    color: #666;
}

.login-links-wx:hover {
    color: #333;
}

.login-back-text {
    margin-top: 15px;
}

.login-back-text:hover {
    border-bottom: 1px solid #333;
}

.login-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.login-links a:hover {
    color: #357abd;
    text-decoration: underline;
}


.third-party-login {
    margin-top: 5px;
}

    .third-party-login .divider {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

        .third-party-login .divider::before,
        .third-party-login .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e0e0e0;
        }

        .third-party-login .divider span {
            padding: 0 15px;
            color: #999;
            font-size: 13px;
        }

.third-party-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.third-party-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #f5f5f5;
}

.third-party-icon:hover {
    /*transform: translateY(-3px);*/
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.third-party-icon.wechat-icon:hover {
    background: #e8f8e8;
}

.third-party-icon.qq-icon:hover {
    background: #e8f4fc;
}

.third-party-icon svg {
    display: block;
}

.payment-btn-section {
    margin-top: 30px;
    text-align: center;
}

.payment-btn {
    padding: 14px 60px;
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

    .payment-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    }

.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

    .payment-modal-overlay.show {
        display: flex;
    }

.payment-modal {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    min-width: 600px;
    min-height: 600px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

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


.bind-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

    .bind-modal-overlay.show {
        display: flex;
    }

.bind-modal {
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    min-width: 360px;
    max-width: 400px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.bind-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

    .bind-modal-close:hover {
        color: #333;
    }

.bind-modal-title {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #333;
}

.bind-qrcode-section {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.bind-qrcode-box {
    width: 178px;
    height: 178px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
}

.bind-qrcode-placeholder {
    text-align: center;
    color: #999;
    height: 160px;
    overflow: clip;
    justify-content: center; /* 水平居中 */
    margin-left: 2px;
}

    .bind-qrcode-placeholder span {
        font-size: 14px;
    }

.bind-tip {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin: 0;
}

.bind-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bind-form-group {
    width: 100%;
}

.bind-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

    .bind-input:focus {
        outline: none;
        border-color: #4a90d9;
    }

.bind-code-group {
    display: flex;
    gap: 10px;
}

    .bind-code-group .bind-input {
        flex: 1;
    }

.bind-code-btn {
    padding: 12px 15px;
    background: #4a90d9;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

    .bind-code-btn:hover {
        background: #357abd;
    }

    .bind-code-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

.bind-submit-btn {
    width: 100%;
    padding: 12px;
    background: #4a90d9;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

    .bind-submit-btn:hover {
        background: #357abd;
    }

.payment-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    font-size: 34px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

    .payment-modal-close:hover {
        color: #333;
    }

.payment-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #bbb;
    margin-bottom: 25px;
}

.payment-options {
    width: 540px;
    display: flex;
    justify-items: center;
    align-items: center;
    margin: 0 auto;
}

.payment-option {
    margin: 0 auto;
    gap: 10px;
    width: 230px;
    padding: 10px 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: #4a90d9;
}

.payment-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #4a90d9;
}

.payment-option input[type="radio"]:checked{
    color: #4a90d9;
}

.payment-option:has(input:checked) {
    border-color: #4a90d9;
}

.payment-option-icon {
    font-size: 28px;
    color: #26B354;
}

.payment-option-text {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.payment-qrcode-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-qrcode-box {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 0px;
    margin: 80px 0 40px 0;
}

.payment-qrcode-box::before,
.payment-qrcode-box::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #aaa;
}

.payment-qrcode-box::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 1px;
}

.payment-qrcode-box::after {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 1px;
}

.payment-modal .icon-pay-complate {
    margin-top:300px;
    font-size: 64px;
    color: #52c41a;
}

.payment-qrcode-corner-bottom-left,
.payment-qrcode-corner-bottom-right {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #aaa;
}

.payment-qrcode-corner-bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 1px;
}

.payment-qrcode-corner-bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 1px;
}



.payment-qrcode-box img {
    width: 198px;
    height: 198px;
    object-fit: contain;
}


.pay-qr-loading {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    width: 198px;
    height: 198px;
}

.pay-qr-loading span {
    color: #999;
    font-size: 16px;
}

.payment-price-group {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffd700;
    padding-bottom: 20px;
}

.payment-price-group .price-symbol {
    font-size: 20px;
    margin: 5px 5px 0 0;
}

.payment-price {
    font-size: 27px;
    font-weight: 500;
}



.orders-table-container {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

    .orders-table thead {
        display: table;
        width: 100%;
        table-layout: fixed;
        background: #f8f9fa;
    }

    .orders-table tbody {
        display: block;
        max-height: 340px;
        overflow-y: auto;
    }

    .orders-table tbody tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .orders-table th,
    .orders-table td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #eee;
        font-size: 14px;
    }

    .orders-table th {
        font-weight: 600;
        color: #333;
    }


    .orders-table th:nth-child(1),
    .orders-table td:nth-child(1) {
        width: 15%;
    }

    .orders-table th:nth-child(2),
    .orders-table td:nth-child(2) {
        width: 15%;
    }

    .orders-table th:nth-child(3),
    .orders-table td:nth-child(3) {
        width: 15%;
    }

    .orders-table th:nth-child(4),
    .orders-table td:nth-child(4) {
        width: 15%;
    }

    .orders-table th:nth-child(5),
    .orders-table td:nth-child(5) {
        width: 17%;
    }


    .orders-table tbody tr:hover {
        background-color: #f9f9f9;
    }