    :root {
        /* 方案A：信任蓝 + 活力橙 - 清新天蓝版本 */
        --primary: #3B82F6;
        --primary-dark: #2563EB;
        --secondary: #60A5FA;
        --accent: #F97316;
        --success: #10B981;
        --error: #EF4444;
        --dark: #1E293B;
        --gray: #64748B;
        --gray-light: #E2E8F0;
        --background: #F8FAFC;
        --white: #ffffff;
    }

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

    html {
        overflow-x: hidden;
        width: 100%;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
        background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #BFDBFE 100%);
        color: var(--dark);
        line-height: 1.5;
        min-height: 100vh;
        font-size: 14px;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    html, body {
        width: 100%;
        height: 100%;
    }

    /* 导航栏 */
    .navbar {
        position: sticky;
        top: 0;
        z-index: 100;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
        overflow: visible;
    }

    .navbar::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background:
                repeating-linear-gradient(
                        120deg,
                        transparent,
                        transparent 35px,
                        rgba(255, 255, 255, 0.03) 35px,
                        rgba(255, 255, 255, 0.03) 70px
                );
        pointer-events: none;
        z-index: 1;
    }

    .nav-container {
        max-width: 1480px;
        margin: 0 auto;
        padding: 0.8rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
        position: relative;
        z-index: 10;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        font-weight: 700;
        font-size: 18px;
        color: white;
        flex-shrink: 0;
        padding-right: 1rem;
    }

    .logo-icon {
        height: 35px;
        background: transparent;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .logo-icon img {
        height: 100%;
        width: auto;
    }

    .nav-description {
        flex: 1;
        color: white;
        font-size: 14px;
        line-height: 1.5;
        font-weight: 400;
        padding-left: 1.5rem;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links {
        display: flex;
        gap: 2.5rem;
        flex-shrink: 0;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        transition: all 0.2s;
        white-space: nowrap;
    }

    .nav-links a:hover {
        opacity: 0.85;
    }

    /* 用户区域 */
    .nav-user {
        flex-shrink: 0;
        margin-left: auto;
        padding-left: 2rem;
        width: 220px;
        display: flex;
        justify-content: flex-end;
    }

    /* 登录按钮 */
    .login-btn {
        background: rgba(255, 255, 255, 0.25);
        color: white;
        border: 1.5px solid rgba(255, 255, 255, 0.6);
        padding: 0 1.5rem;
        height: 40px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: 0 2px 12px rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
    }

    .login-btn:hover {
        background: rgba(255, 255, 255, 0.35);
        border-color: rgba(255, 255, 255, 0.8);
        box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
    }

    /* 用户信息 */
    .user-info {
        position: relative;
    }

    .user-avatar-wrapper {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        padding: 0 0.75rem 0 0.25rem;
        height: 40px;
        border-radius: 30px;
        transition: all 0.2s;
        background: rgba(255, 255, 255, 0.1);
    }

    .user-avatar-wrapper:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .user-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.8);
        object-fit: cover;
        flex-shrink: 0;
    }

    .user-name {
        color: white;
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    /* 下拉菜单 */
    .user-dropdown {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        background: white;
        border-radius: 8px;
        border: 1px solid #E5E7EB;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        overflow: hidden;
    }

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

    .dropdown-item0 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 0.8rem 0.5rem;
        color: #6B7280;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s;
        background: transparent;
    }

    .dropdown-item0:hover {
        background: #F9FAFB;
        color: #374151;
    }

    .dropdown-item0 svg {
        flex-shrink: 0;
        stroke: currentColor;
        width: 20px;
        height: 20px;
    }

    /* Hero */
    .hero {
        position: relative;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.95) 0%, rgba(37, 99, 235, 0.95) 100%);
        padding: 0.875rem 1.5rem;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-content {
        flex: 1;
    }

    .hero h1 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.85rem;
        opacity: 0.9;
    }

    .hero-stats {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .stat {
        text-align: center;
    }

    .stat-value {
        font-size: 1.25rem;
        font-weight: 700;
        display: block;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.75rem;
        opacity: 0.85;
        margin-top: 0.15rem;
    }

    /* 主容器 */
    .main-container {
        max-width: 1480px;
        margin: 2rem auto 3rem;
    }

    .content-grid {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 1.75rem;
    }

    /* 玻璃卡片 */
    .glass-card {
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(16px);
        border-radius: 5px;
        padding: 1.75rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.6);
    }

    /* 服务卡片 */
    .services {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    .service-card {
        background: white;
        border-radius: 14px;
        padding: 0;
        cursor: pointer;
        transition: all 0.25s;
        border: 1px solid rgba(59, 130, 246, 0.15);
        position: relative;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }

    .service-card:hover {
        border-color: rgba(59, 130, 246, 0.25);
    }

    .service-card.active {
        border-color: var(--primary);
        overflow: hidden;
    }

    /* 有徽章的卡片即使选中也要显示徽章 */
    .service-card:has(.service-badge) {
        overflow: visible !important;
    }

    /* 有徽章的卡片选中时，三角形需要裁剪 */
    .service-card.active:has(.service-badge)::after {
        clip-path: polygon(0 0, 100% 0, 100% 100%);
    }

    /* 右上角SVG三角形+对号 */
    .service-card.active::after {
        content: '';
        position: absolute;
        top: -1px;
        right: -1px;
        width: 45px;
        height: 45px;
        background-image: url("data:image/svg+xml,%3Csvg width=%2745%27 height=%2745%27 viewBox=%270 0 45 45%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M 45 0 L 45 45 L 0 0 Z%27 fill=%27%233B82F6%27/%3E%3Cpath d=%27M 27 12.5 L 30.5 16 L 37 9.5%27 stroke=%27white%27 stroke-width=%272.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 fill=%27none%27/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        filter: drop-shadow(-1px 1px 6px rgba(59, 130, 246, 0.25));
        border-top-right-radius: 14px;
    }

    @keyframes checkmarkAppear {
        0% {
            opacity: 0;
            transform: translate(8px, -8px) scale(0.8) rotate(10deg);
        }
        100% {
            opacity: 1;
            transform: translate(0, 0) scale(1) rotate(0deg);
        }
    }

    .service-badge {
        position: absolute;
        top: -15px;
        left: 15px;
        background: linear-gradient(135deg, var(--error) 0%, #DC2626 100%);
        color: white;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 11px;
        box-shadow: 0 3px 10px rgba(239, 68, 68, 0.5);
        z-index: 10;
        display: inline-flex;
        align-items: center;
        gap: 3px;
    }

    .service-badge svg {
        flex-shrink: 0;
        width: 10px;
        height: 10px;
    }

    .service-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem 0.5rem 1rem;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    }

    .service-icon svg {
        color: white;
        width: 36px;
        height: 36px;
    }

    .service-info {
        text-align: center;
    }

    .service-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary-dark);
        margin-bottom: 0.15rem;
    }

    .service-price {
        color: var(--primary);
        font-size: 0.75rem;
    }

    .service-desc {
        color: var(--primary);
        font-size: 0.75rem;
        line-height: 1.3;
        background: rgba(59, 130, 246, 0.08);
        padding: 0.6rem 0.75rem;
        text-align: center;
        border-radius: 0 0 13px 13px;
        margin: 0;
    }

    .service-card.active .service-desc {
        background: var(--primary);
        color: white;
        border-radius: 0 0 13px 13px;
    }

    /* 区块标题 */
    .section-header0 {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .section-header0::before {
        content: '';
        width: 3px;
        height: 18px;
        background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
        border-radius: 2px;
    }

    /* 选项按钮 */
    .option-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .option-btn {
        padding: 0.5rem 0.6rem;
        border: 1px solid var(--gray-light);
        background: white;
        border-radius: 5px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        color: var(--dark);
    }

    .option-btn:hover {
        border-color: var(--primary);
        background: rgba(59, 130, 246, 0.04);
    }

    .option-btn.active {
        border-color: var(--primary-dark);
        background: #EEF2F8;
        color: var(--primary-dark);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    }

    /* 上传容器 */
    .upload-container {
        display: flex;
        align-items: stretch;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .upload-container > .upload-left {
        flex: 1;
        margin-bottom: 0 !important;
        height: 320px;
    }

    .upload-container > .upload-right {
        flex: 1;
        margin-bottom: 0 !important;
        height: 320px;
        overflow: hidden;
    }

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

    .upload-right1 {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .upload-right1 .text-input-area {
        flex: 1;
        min-height: 0;
    }

    .upload-right2 {
        height: 100%;
        overflow-y: auto;
    }

    /* 分隔符：或 */
    .upload-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        flex-shrink: 0;
        position: relative;
    }

    .upload-divider span {
        font-size: 1rem;
        font-weight: 600;
        color: var(--gray);
        background: white;
        padding: 0.5rem;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    /* 上传区域 */
    .upload-zone {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(6, 182, 212, 0.02) 100%);
        border: 1px dashed var(--gray-light);
        border-radius: 5px;
        padding: 2rem 1.5rem;
        text-align: center;
        transition: all 0.25s;
        cursor: pointer;
        margin-bottom: 1.5rem;
    }

    .upload-right2 {
        padding: 1rem 1.5rem;
        margin-bottom: 0;
        box-sizing: border-box;
    }

    .upload-zone:hover {
        border-color: var(--primary);
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(6, 182, 212, 0.06) 100%);
    }

    /* 文本输入区域 */
    .text-input-hint {
        font-size: 0.85rem;
        color: var(--gray);
        background: rgba(59, 130, 246, 0.04);
        padding: 0.75rem 1rem;
        border-radius: 8px 8px 0 0;
        border: 1px dashed var(--gray-light);
        border-bottom: none;
        line-height: 1.6;
    }

    .text-input-area {
        flex: 1;
        width: 100%;
        min-height: 240px;
        padding: 1.5rem;
        border: 1px dashed var(--gray-light);
        border-top: none;
        border-bottom: none;
        background: white;
        font-size: 0.9rem;
        font-family: inherit;
        color: var(--dark);
        resize: vertical;
        outline: none;
        transition: all 0.25s;
        line-height: 1.8;
    }

    .text-input-area:focus {
        border-color: var(--primary);
        background: rgba(59, 130, 246, 0.02);
    }

    .text-input-area::placeholder {
        color: var(--gray-light);
    }

    .text-input-count {
        font-size: 0.85rem;
        color: var(--gray);
        text-align: right;
        padding: 0.75rem 1rem;
        background: white;
        border: 1px dashed var(--gray-light);
        border-radius: 0 0 8px 8px;
        border-top: none;
    }

    .char-count {
        color: var(--error);
        font-weight: 700;
        font-size: 1rem;
    }

    .upload-icon {
        margin-bottom: 0.75rem;
        animation: uploadFloat 3s ease-in-out infinite;
    }

    .upload-right2 .upload-icon {
        margin-bottom: 0.3rem;
    }

    .upload-right2 .upload-icon svg {
        width: 45px;
        height: 45px;
    }

    .upload-icon svg {
        display: block;
        margin: 0 auto;
        filter: drop-shadow(0 6px 12px rgba(59, 130, 246, 0.2));
        transition: all 0.3s ease;
        width: 70px;
        height: 70px;
    }

    .upload-zone:hover .upload-icon svg {
        transform: scale(1.05);
        filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.3));
    }

    .upload-icon .upload-arrow {
        animation: arrowBounce 1.5s ease-in-out infinite;
        transform-origin: center;
    }

    @keyframes uploadFloat {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-8px);
        }
    }

    @keyframes arrowBounce {
        0%, 100% {
            transform: translate(40px, 40px) translateY(0px);
        }
        50% {
            transform: translate(40px, 40px) translateY(-3px);
        }
    }

    .upload-text {
        font-size: 0.85rem;
        color: var(--gray);
        margin-bottom: 1rem;
    }

    .upload-right2 .upload-text {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .upload-btn {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        color: white;
        border: none;
        padding: 0.875rem 2.5rem;
        border-radius: 5px;
        font-size: 0.85rem;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .upload-btn:hover {
        box-shadow: 0 8px 24px rgba(59, 130, 246, 0.45);
    }

    .file-info {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 1rem;
        flex-wrap: wrap;
    }

    .file-badge {
        background: white;
        border: 1px solid var(--gray-light);
        padding: 0.4rem 1rem;
        border-radius: 5px;
        font-size: 0.8rem;
        color: var(--primary);
    }

    .file-badge-bold {
        font-weight: 700;
    }

    /* 上传区域顶部容器 - 固定高度避免布局跳动 */
    .upload-area-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* 上传成功内联样式（替换icon、text、button位置） */
    .upload-success-inline {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .file-icon-small {
        flex-shrink: 0;
    }

    .file-name-display {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--dark);
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        word-break: break-all;
    }

    .file-status-row {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .file-status-success {
        font-size: 0.85rem;
        color: var(--primary);
        font-weight: 500;
    }

    .file-delete-btn-inline {
        font-size: 0.85rem;
        color: #64748B;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.25rem 0.75rem;
        transition: color 0.2s;
    }

    .file-delete-btn-inline:hover {
        color: #EF4444;
    }

    /* 报告类型选择 */
    .report-type-section {
        margin-top: 1.5rem;
        width: 100%;
    }

    .report-type-title {
        font-size: 0.75rem;
        color: var(--gray);
        margin-bottom: 0.3rem;
        text-align: left;
    }

    .report-type-options {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.35rem;
    }

    .report-type-btn {
        background: #F3F4F6;
        border: 1px solid #E5E7EB;
        border-radius: 3px;
        padding: 0.3rem 0.4rem;
        font-size: 0.7rem;
        color: #6B7280;
        cursor: pointer;
        transition: all 0.2s;
        position: relative;
        white-space: nowrap;
        overflow: visible;
    }

    .report-type-btn:hover {
        border-color: var(--primary);
        background: rgba(59, 130, 246, 0.05);
    }

    .report-type-btn.active {
        border-color: var(--primary);
        background: rgba(59, 130, 246, 0.1);
        color: var(--primary);
        font-weight: 600;
    }

    /* 右上角对号标记 */
    .report-type-btn.active::after {
        content: '';
        position: absolute;
        top: -1px;
        right: -1px;
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M 16 0 L 16 16 L 0 0 Z%27 fill=%27%233B82F6%27/%3E%3Cpath d=%27M 9 4 L 11 6 L 13.5 3.5%27 stroke=%27white%27 stroke-width=%271.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 fill=%27none%27/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
    }

    /* 提交区域 */
    .submit-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1.25rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .submit-btn {
        background: linear-gradient(135deg, var(--accent) 0%, #EA580C 100%);
        color: white;
        border: none;
        padding: 0.875rem 2rem;
        border-radius: 5px;
        font-size: 1.05rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .submit-btn:hover {
        box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45);
    }

    .submit-btn-disabled {
        opacity: 0.6;
    }

    .price-info {
        font-size: 0.85rem;
        color: var(--gray);
    }

    .price-info strong {
        color: var(--error);
        font-size: 0.95rem;
    }

    /* 提示框 */
    .info-box {
        background: linear-gradient(135deg, rgba(249, 115, 22, 0.04) 0%, rgba(234, 88, 12, 0.04) 100%);
        border-left: 3px solid var(--accent);
        border-radius: 5px;
        padding: 1.25rem;
    }

    .info-title {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .info-list {
        padding-left: 1.25rem;
        color: var(--gray);
        font-size: 0.85rem;
        line-height: 1.75;
    }

    .info-list li {
        margin-bottom: 0.4rem;
    }

    .info-list .red-tip {
        color: red;
    }

    /* 侧边栏卡片 */
    .sidebar-card {
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(16px);
        border-radius: 5px;
        padding: 0.5rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.6);
        margin-bottom: 1.25rem;
        position: relative;
    }

    .sidebar-card-btn {
        background: rgba(255, 255, 255, 0.97);
        border-radius: 5px;
        padding: 0.5rem;
        backdrop-filter: none !important;
        box-shadow: none !important;
        border: none !important;
    }

    .promo-badge {
        position: absolute;
        top: -8px;
        right: -8px;
        background: linear-gradient(135deg, var(--error) 0%, #DC2626 100%);
        color: white;
        padding: 0.35rem 1rem;
        border-radius: 12px;
        font-size: 10px;
        font-weight: 800;
        transform: rotate(10deg);
        box-shadow: 0 3px 10px rgba(239, 68, 68, 0.45);
        letter-spacing: 0.3px;
    }

    .sidebar-buttons {
        display: flex;
        gap: 0.75rem;
    }

    .sidebar-btn {
        flex: 1;
        padding: 0.875rem;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.25s;
        border: 1px solid rgba(59, 130, 246, 0.15);
    }

    .sidebar-btn.primary {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
        color: var(--primary);
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
    }

    .sidebar-btn.primary:hover {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    }

    .sidebar-btn.secondary {
        background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(234, 88, 12, 0.08) 100%);
        color: var(--accent);
        border-color: rgba(249, 115, 22, 0.15);
        box-shadow: 0 2px 8px rgba(249, 115, 22, 0.1);
    }

    .sidebar-btn.secondary:hover {
        background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(234, 88, 12, 0.15) 100%);
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
    }

    /* 步骤卡片 */
    .steps-card h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--dark);
        text-align: center;
    }

    .steps-divider {
        width: 85%;
        height: 1px;
        background-image: linear-gradient(to right, transparent, var(--primary) 20%, var(--secondary) 50%, var(--primary) 80%, transparent);
        opacity: 0.3;
        margin: 0 auto 1.5rem;
    }

    .steps-grid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .step {
        text-align: center;
        flex: 1;
        padding: 0.5rem;
        border-radius: 10px;
        transition: all 0.2s;
    }

    .step:hover {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.04) 0%, rgba(6, 182, 212, 0.04) 100%);
    }

    .step-number {
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.5rem;
        font-size: 1.05rem;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
        color: white;
        font-weight: 700;
    }

    .step-label {
        font-size: 0.75rem;
        color: var(--dark);
        line-height: 1.3;
    }

    .step-arrow {
        flex-shrink: 0;
        color: var(--primary);
        opacity: 0.4;
        margin: 0 -0.25rem;
    }

    .step-arrow svg {
        display: block;
    }

    /* FAQ */
    .faq-tabs {
        display: flex;
        gap: 0;
        margin-bottom: 1.25rem;
        border-bottom: 2px solid var(--gray-light);
    }

    .faq-tab {
        flex: 1;
        padding: 0.75rem 1rem;
        background: transparent;
        border: none;
        border-bottom: 2px solid transparent;
        margin-bottom: -2px;
        cursor: pointer;
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--gray);
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        position: relative;
    }

    /* 竖线分隔符 */
    .faq-tab::after {
        content: '';
        position: absolute;
        right: 0;
        top: 5%;
        height: 90%;
        width: 1px;
        background: var(--gray-light);
    }

    /* 最后一个tab不显示竖线 */
    .faq-tab:last-child::after {
        display: none;
    }

    .faq-tab svg {
        width: 1em;
        height: 1em;
        stroke-width: 2;
    }

    .faq-tab:hover {
        color: var(--primary);
    }

    .faq-tab.active {
        color: var(--primary);
        border-bottom-color: var(--primary);
    }

    .faq-content h4 {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--dark);
        margin: 1.25rem 0 0.5rem;
    }

    .faq-content p {
        color: var(--gray);
        font-size: 0.82rem;
        line-height: 1.7;
        margin-bottom: 0.75rem;
        padding: 0 1.5rem;
    }

    .highlight {
        color: var(--error);
        font-weight: 600;
    }

    /* 底部 */
    .footer {
        text-align: center;
        padding: 2.5rem 1.5rem;
        color: white !important;
        background: #ececec !important;
        margin-top: 3rem;
        position: relative;
        overflow: hidden;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(96, 165, 250, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 70% 50%, rgba(147, 197, 253, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
    }

    .footer-links a {
        color: #181818;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s;
        font-weight: 500;
        padding: 0.25rem 0;
        border-bottom: 2px solid transparent;
    }

    .copyright {
        opacity: 0.85;
        font-size: 0.85rem;
        position: relative;
        z-index: 1;
        color: #666666;
    }

    /* 联系按钮 */
    .contact-float {
        position: fixed;
        right: 1.5rem;
        bottom: 1.5rem;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
        z-index: 1000;
        transition: all 0.3s ease;
        font-size: 20px;
        animation: pulse-subtle 3s ease-in-out infinite;
    }

    @keyframes pulse-subtle {
        0%, 100% {
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
        }
        50% {
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.5);
        }
    }

    .contact-float svg {
        width: 50px;
        height: 50px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }

    .contact-float svg path {
        fill: #FF623E;
    }

    .contact-float:hover {
        transform: scale(1.1) translateY(-3px);
        box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
        animation: none;
    }

    .contact-float:active {
        transform: scale(1.05) translateY(-2px);
    }

    /* 响应式 */
    @media (max-width: 1200px) {
        .content-grid {
            grid-template-columns: 1fr;
        }

        .nav-description {
            font-size: 12px;
        }

        .nav-links {
            gap: 1.5rem;
        }
    }

    @media (max-width: 900px) {
        .nav-description {
            display: none;
        }
    }

    @media (max-width: 768px) {

        .contact-float {
            width: 56px;
            height: 56px;
            right: 1rem;
            bottom: 1rem;
        }

        .contact-float svg {
            width: 26px;
            height: 26px;
        }

        .stat-value {
            font-size: 1.1rem;
        }

        .stat-label {
            font-size: 0.7rem;
        }

        .services {
            grid-template-columns: 1fr;
        }

        /* 版权信息分两行显示 */
        .copyright {
            text-align: center;
            line-height: 1.8;
        }

        .copyright a {
            display: block;
        }

        /* 用户区域响应式 */
        .user-name {
            display: block;
            font-size: 13px;
        }

        .user-avatar {
            width: 36px;
            height: 36px;
        }

        .login-btn {
            padding: 0.5rem 1rem;
            font-size: 13px;
        }

        /* 修复移动端下拉菜单位置 */
        .user-dropdown {
            right: -5px;
        }

        /* 修复移动端nav-user宽度 */
        .nav-user {
            width: auto;
            padding-left: 0.5rem;
            min-width: 0;
            flex-shrink: 0;
        }

        .user-avatar-wrapper {
            padding: 0 0.5rem 0 0.25rem;
            max-width: none;
        }

        .user-name {
            max-width: 120px;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* 上传区域响应式 */
        .upload-container {
            flex-direction: column;
            gap: 1rem;
        }

        .upload-divider {
            width: 100%;
            height: 40px;
        }

        .upload-divider span {
            margin: 0 auto;
        }

        .text-input-area {
            min-height: 300px;
        }

        .steps-grid {
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
        }

        .step-arrow {
            display: none;
        }

        .nav-links {
            gap: 1.25rem;
            flex-shrink: 1;
        }

        .nav-links a {
            font-size: 0.8rem;
        }

        .logo-icon {
            height: 30px;
        }

        .nav-container {
            padding: 0.8rem 1rem;
            gap: 0.5rem;
        }

        .glass-card,
        .sidebar-card {
            padding: 1.25rem;
        }

        /* 修复FAQ标题显示 */
        .faq-content h4 {
            padding: 0 1.5rem;
            font-size: 0.85rem;
        }

        .faq-content p {
            font-size: 0.8rem;
        }

        .upload-zone {
            padding: 2rem 1.25rem;
        }

        .submit-section {
            flex-direction: column;
            align-items: stretch;
        }

        .submit-btn {
            width: 100%;
            justify-content: center;
        }

        .option-btn {
            font-size: 0.75rem;
        }

        .file-info {
            gap: 0.5rem;
            margin-top: 0.75rem;
        }

        .file-badge {
            font-size: 0.7rem;
            padding: 0.25rem 0.5rem;
        }

        .report-type-section {
            margin-top: 1rem;
        }

        .report-type-options {
            gap: 0.5rem;
        }

        .report-type-btn {
            padding: 0.4rem 0.75rem;
            font-size: 0.75rem;
        }

        .upload-area-top {
            padding: 0 0.5rem;
        }

        .upload-success-inline {
            max-width: 100%;
        }

        .file-name-display {
            font-size: 0.8rem;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: break-spaces;
            word-break: break-all;
        }
    }

    @media (max-width: 480px) {
        .logo {
            font-size: 15px;
        }

        .main-container {
            padding: 0 1rem;
        }
    }

    /* 登录弹框 */
    .login-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
        padding: 2rem 0;
    }

    .login-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
    }

    .login-content {
        position: relative;
        background: linear-gradient(to bottom, #E0F2FE 0%, #BFDBFE 30%, #DBEAFE 50%, #F0F9FF 60%, #FFFFFF 65%, #FFFFFF 100%);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(59, 130, 246, 0.15);
        border-radius: 20px;
        padding: 3rem 4rem;
        max-width: 500px;
        width: 90%;
        max-height: none;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        z-index: 1;
        margin: auto;
    }

    .login-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.2s;
    }

    .login-close:hover {
        background: rgba(59, 130, 246, 0.1);
    }

    .login-close svg {
        color: var(--primary);
    }

    .login-header {
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .login-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .login-subtitle {
        font-size: 0.95rem;
        color: #64748B;
        margin: 0;
    }

    .login-body {
        text-align: center;
    }

    .login-method-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .login-tip {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        color: #64748B;
        font-size: 0.9rem;
    }

    .wechat-icon {
        flex-shrink: 0;
    }

    .login-qrcode {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
        padding: 1.5rem;
        background: transparent;
        border-radius: 12px;
        min-height: 240px;
    }

    .login-qrcode .qrcode-loading {
        position: absolute;
        min-height: 200px;
        min-width: 200px;
    }

    .login-qrcode img {
        width: 200px;
        height: 200px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .login-qrcode img.loaded {
        opacity: 1;
    }

    .login-qrcode .qrcode-refresh {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        min-height: 200px;
        min-width: 200px;
    }

    .login-qrcode .qrcode-refresh.hidden {
        display: none;
    }

    .qrcode-error-text {
        color: var(--gray);
        font-size: 0.875rem;
        margin: 0;
    }

    .qrcode-refresh-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--primary);
        background: #EFF6FF;
        border: 1px solid var(--primary);
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .qrcode-refresh-btn:hover {
        color: white;
        background: var(--primary);
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
        transform: translateY(-1px);
    }

    .qrcode-refresh-btn:active {
        transform: translateY(0);
    }

    @media (max-width: 768px) {
        .login-content {
            padding: 2.5rem 1.5rem;
            width: 92%;
            max-height: none;
        }

        .login-title {
            font-size: 1.4rem;
        }

        .login-subtitle {
            font-size: 0.85rem;
        }

        .login-method-title {
            font-size: 1rem;
        }

        .login-tip {
            font-size: 0.85rem;
        }

        .login-qrcode {
            padding: 1rem;
            min-height: 220px;
        }

        .login-qrcode .qrcode-loading {
            min-height: 180px;
            min-width: 180px;
        }

        .login-qrcode img {
            width: 180px;
            height: 180px;
        }
    }

    @media (max-width: 480px) {
        .login-content {
            padding: 2rem 1.25rem;
            width: 95%;
            border-radius: 16px;
            max-height: none;
        }

        .login-close {
            top: 0.75rem;
            right: 0.75rem;
        }

        .login-close svg {
            width: 20px;
            height: 20px;
        }

        .login-header {
            margin-bottom: 2rem;
        }

        .login-title {
            font-size: 1.25rem;
        }

        .login-subtitle {
            font-size: 0.8rem;
        }

        .login-method-title {
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .login-tip {
            font-size: 0.8rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .wechat-icon {
            width: 20px;
            height: 20px;
        }

        .login-qrcode {
            padding: 0.75rem;
            min-height: 200px;
        }

        .login-qrcode .qrcode-loading {
            min-height: 160px;
            min-width: 160px;
        }

        .login-qrcode img {
            width: 160px;
            height: 160px;
        }
    }

    @media (max-width: 375px) {
        .login-content {
            padding: 1.75rem 1rem;
            max-height: none;
        }

        .login-title {
            font-size: 1.15rem;
        }

        .login-qrcode .qrcode-loading {
            min-height: 140px;
            min-width: 140px;
        }

        .login-qrcode img {
            width: 140px;
            height: 140px;
        }
    }

    /* ========== 订单查询区域样式 ========== */
    .resultZone {
        display: none;
    }

    .order-search-section {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
        align-items: center;
    }

    .back-to-home-btn {
        padding: 0.75rem 1.25rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        color: white;
        font-size: 0.9rem;
        font-weight: 500;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }

    .back-to-home-btn:hover {
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }

    .back-to-home-text {
        white-space: nowrap;
    }

    /* 支付方式查询提示 */
    .payment-query-tips {
        display: flex;
        gap: 1rem;
        margin-left: auto;
    }

    .payment-tip-item {
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: white;
        border: 1px solid var(--gray-light);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .payment-tip-item:hover {
        border-color: var(--primary);
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
    }

    .payment-tip-item .icon {
        flex-shrink: 0;
    }

    .payment-tip-item span {
        font-size: 0.875rem;
        color: var(--dark);
        font-weight: 500;
    }

    .payment-qr-popup {
        position: absolute;
        top: calc(100% + 1.5rem);
        right: 0;
        background: white;
        border: 1px solid var(--gray-light);
        border-radius: 12px;
        padding: 1rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        width: 700px;
        height: 280px;
    }

    .payment-tip-item:hover .payment-qr-popup {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .payment-qr-popup img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto 0.75rem;
        border-radius: 8px;
    }

    .payment-qr-popup p {
        text-align: center;
        font-size: 0.875rem;
        color: var(--gray);
        margin: 0;
    }

    /* Tab切换 */
    .order-tabs {
        display: flex;
        gap: 0.75rem;
        margin-bottom: 0;
        padding: 0.5rem 0.5rem 0rem 0.5rem;
        background: #F8FAFC;
        border-radius: 12px 12px 0 0;
        position: relative;
        border-bottom: 1px solid #E2E8F0;
    }

    .order-tab {
        padding: 0.625rem 1.5rem;
        background: rgba(148, 163, 184, 0.2);
        border: 1px solid transparent;
        border-radius: 8px 8px 0 0;
        font-size: 0.9rem;
        color: #475569;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }

    .order-tab:hover {
        color: var(--primary);
        background: rgba(148, 163, 184, 0.3);
    }

    .order-tab.active {
        color: var(--primary);
        background: white;
        padding-bottom: calc(0.625rem + 1px);
        margin-bottom: -1px;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
        z-index: 2;
        border: 1px solid #E2E8F0;
        border-bottom: 1px solid white;
    }

    .order-tab-content {
        display: none;
    }

    .order-tab-content.active {
        display: block;
        background: white;
        padding: 1.5rem;
        border-radius: 0 0 12px 12px;
        border: 1px solid #E2E8F0;
        border-top: none;
        margin-top: -1px;
    }

    .order-search-box {
        flex: 1;
        position: relative;
        display: flex;
        align-items: center;
    }

    .order-search-box .search-icon {
        position: absolute;
        left: 1rem;
        color: #94A3B8;
        pointer-events: none;
    }

    .order-search-input {
        width: 100%;
        padding: 0.875rem 1rem 0.875rem 3rem;
        border: 1px solid #E2E8F0;
        border-radius: 8px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        background: white;
    }

    .order-search-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .order-search-input::placeholder {
        color: #94A3B8;
    }

    .order-search-btn {
        padding: 0.875rem 2.5rem;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .order-search-btn:hover {
        background: #2563EB;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    /* 订单列表 */
    .order-list {
        background: transparent;
        border-radius: 8px;
        overflow: hidden;
    }

    .order-header {
        display: grid;
        grid-template-columns: 1.3fr 1.5fr 0.6fr 0.8fr 0.9fr 1.2fr 1fr;
        gap: 1rem;
        padding: 1rem 1.5rem;
        background: #F8FAFC;
        border-bottom: 1px solid #E2E8F0;
        font-weight: 600;
        font-size: 0.9rem;
        color: #475569;
    }

    .order-header0 {
        display: grid;
        grid-template-columns: 1.5fr 1.5fr 0.6fr 0.8fr 0.9fr 0.9fr 1.2fr 1fr;
        gap: 1rem;
        padding: 1rem 1.5rem;
        background: #F8FAFC;
        border-bottom: 1px solid #E2E8F0;
        font-weight: 600;
        font-size: 0.9rem;
        color: #475569;
    }

    .order-item {
        border-bottom: 1px solid #F1F5F9;
        position: relative;
    }

    .order-item:last-child {
        border-bottom: none;
    }

    .order-row {
        display: grid;
        grid-template-columns: 1.2fr 1.4fr 0.6fr 0.8fr 0.9fr 1.2fr 1fr;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
        align-items: center;
        transition: background 0.2s ease;
    }

    .order-row0 {
        display: grid;
        grid-template-columns: 1.2fr 1.4fr 0.6fr 0.8fr 0.8fr 0.9fr 1.4fr 1fr;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
        align-items: center;
        transition: background 0.2s ease;
        text-align: center;
    }

    .order-item:hover .order-row {
        background: #F8FAFC;
    }

    .order-item:hover .order-row0 {
        background: #F8FAFC;
    }

    .order-col {
        font-size: 0.875rem;
        color: #334155;
    }

    .col-id {
        font-family: 'Monaco', 'Consolas', monospace;
        font-size: 0.825rem;
    }

    .col-filename {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .rate-text {
        font-weight: 600;
        font-size: 0.9rem;
    }

    .rate-red {
        color: #EF4444;
    }

    .action-link {
        color: var(--primary);
        text-decoration: underline;
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .action-link:hover {
        color: #2563EB;
    }

    /* 订单结果卡片容器 - 双卡片布局 */
    .order-result-cards {
        display: flex;
        gap: 1rem;
        margin: 1rem 0 0.5rem 0;
    }

    .order-result-cards .order-result-card {
        flex: 1;
        margin: 0;
    }

    /* 订单结果卡片 */
    .order-result-card {
        margin: 1rem 0 0.5rem 0;
        padding: 1.25rem 1.5rem;
        border-radius: 10px;
        background: white;
        border: 1px solid #E2E8F0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .order-result-card .result-title {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .aigc-complete .result-title {
        color: #10B981;
    }

    .aigc-complete .result-title svg {
        stroke: #10B981;
    }

    .reduce-complete .result-title {
        color: #10B981;
    }

    .reduce-complete .result-title svg {
        stroke: #10B981;
    }

    .aigc-recommend .result-title {
        color: #334155;
    }

    .result-content {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .result-progress {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .progress-item {
        display: grid;
        grid-template-columns: 80px 1fr 100px;
        gap: 0.75rem;
        align-items: center;
    }

    .progress-label {
        font-size: 0.875rem;
        color: #64748B;
    }

    .progress-bar {
        height: 8px;
        background: #F1F5F9;
        border-radius: 4px;
        overflow: hidden;
        position: relative;
    }

    .progress-fill {
        height: 100%;
        border-radius: 4px;
        transition: width 0.3s ease;
    }

    .progress-red {
        background: linear-gradient(90deg, #EF4444 0%, #DC2626 100%);
    }

    .progress-blue {
        background: linear-gradient(90deg, #60A5FA 0%, #3B82F6 100%);
    }

    .progress-value {
        font-size: 0.875rem;
        font-weight: 600;
        color: #334155;
        text-align: right;
    }

    .result-download-btn,
    .result-action-btn {
        padding: 0.625rem 1.5rem;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 0.875rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .result-download-btn:hover,
    .result-action-btn:hover {
        background: #2563EB;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }
    .col-action {
        text-align: center;
    }

    /* 移动端适配 */
    @media (max-width: 1024px) {
        .order-header {
            display: none;
        }

        .order-header0 {
            display: none;
        }

        .order-tabs {
            gap: 0.5rem;
            padding: 0.375rem 0.375rem 0 0.375rem;
        }

        .order-tab {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }

        .order-tab.active {
            padding-bottom: calc(0.625rem + 1px);
        }

        .order-tab-content.active {
            padding: 1rem;
        }

        .order-result-cards {
            flex-direction: column;
            gap: 0.75rem;
            margin: 1rem 0 0.5rem 0;
        }

        .order-result-card {
            margin: 1rem 0 0.5rem 0;
            padding: 1rem;
        }

        /* 移动端隐藏visibility:hidden的卡片 */
        .order-result-card[style*="visibility: hidden"] {
            display: none !important;
        }

        .order-row {
            grid-template-columns: 1fr;
            gap: 0.5rem;
            padding: 1rem;
        }

        .order-row0 {
            grid-template-columns: 1fr;
            gap: 0.5rem;
            padding: 1rem;
        }

        .order-col {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
        }

        .order-col::before {
            content: attr(data-label);
            font-weight: 600;
            color: #64748B;
            font-size: 0.85rem;
        }

        .col-id::before {
            content: "订单号: ";
        }

        .col-filename::before {
            content: "文件名: ";
        }

        .col-words::before {
            content: "字数: ";
        }

        .col-repeat::before {
            content: "重复率: ";
        }

        .col-aigc::before {
            content: "AIGC率: ";
        }

        .col-time::before {
            content: "创建时间: ";
        }

        .col-action::before {
            content: "操作: ";
        }

        .progress-item {
            grid-template-columns: 70px 1fr 90px;
            gap: 0.5rem;
        }

        .result-content {
            flex-direction: column;
            align-items: stretch;
        }

        .result-download-btn,
        .result-action-btn {
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .order-search-section {
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .payment-query-tips {
            width: 100%;
            justify-content: center;
            margin-left: 0;
        }

        .payment-tip-item {
            padding: 0.4rem 0.75rem;
        }

        .payment-tip-item span {
            font-size: 0.8rem;
        }

        .payment-tip-item .icon {
            width: 20px;
            height: 20px;
        }

        /* 移动端点击显示弹窗 */
        .payment-tip-item.active .payment-qr-popup {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            width: 90%;
            height: auto;
        }

        .payment-qr-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            right: auto;
            transform: translate(-50%, -50%) scale(0.9);
            min-width: 280px;
        }

        .payment-tip-item.active .payment-qr-popup {
            transform: translate(-50%, -50%) scale(1);
        }

        .back-to-home-btn {
            padding: 0.625rem 1rem;
            font-size: 0.85rem;
        }

        .back-to-home-btn svg {
            width: 18px;
            height: 18px;
        }

        .order-search-btn {
            padding: 0.875rem 1.5rem;
            flex-shrink: 0;
        }

        .order-search-input {
            font-size: 0.875rem;
        }

        .col-filename {
            white-space: normal;
            word-break: break-all;
        }
    }

    /* 隐藏页面底部的xdsoft弹窗残留 */
    .xdsoft_dialog_overlay:not(.xdsoft_active),
    .xdsoft_modal:empty {
        display: none !important;
    }

    /* ==================== 支付弹窗样式 ==================== */
    .payment-modal {
        position: fixed;
        top: -40;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .payment-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
    }

    .payment-content {
        position: relative;
        background: white;
        border-radius: 16px;
        padding: 1.5rem 2rem;
        width: 90%;
        max-width: 450px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: paymentSlideIn 0.3s ease;
    }

    @keyframes paymentSlideIn {
        from {
            opacity: 0;
            transform: translateY(-30px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .payment-close {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        color: var(--gray);
        transition: all 0.2s;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .payment-close:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--primary);
    }

    .payment-header {
        text-align: center;
        margin-bottom: 1rem;
        padding: 0.75rem;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(96, 165, 250, 0.05) 100%);
        border-radius: 8px;
    }

    .payment-title {
        font-size: 0.85rem;
        color: var(--dark);
        margin-bottom: 0.3rem;
        font-weight: 500;
        word-break: break-all;
    }

    .payment-subtitle {
        font-size: 0.8rem;
        color: var(--gray);
        word-break: break-all;
    }

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

    .payment-qrcode {
        display: inline-block;
        padding: 0.6rem;
        background: white;
        border: 3px solid #FF6B35;
        border-radius: 8px;
        margin-bottom: 0.6rem;
        position: relative;
        min-height: 146px;
        min-width: 146px;
    }

    .payment-qrcode img {
        display: block;
        width: 140px;
        height: 140px;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .payment-qrcode img.loaded {
        opacity: 1;
    }

    /* 二维码加载动画 */
    .qrcode-loading {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 140px;
        min-width: 140px;
    }

    .qrcode-loading.hidden {
        display: none;
    }

    .loading-spinner {
        width: 40px;
        height: 40px;
        border: 4px solid #f3f3f3;
        border-top: 4px solid var(--primary);
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-bottom: 0.75rem;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .qrcode-loading p {
        font-size: 0.875rem;
        color: var(--gray);
        margin: 0;
    }

    .payment-price-wrapper {
        position: relative;
        margin-bottom: 0.6rem;
    }

    .payment-price-section {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
    }

    .payment-price {
        font-size: 1.6rem;
        font-weight: 700;
        color: #FF4444;
    }

    .payment-currency {
        font-size: 0.9rem;
        color: #FF4444;
        font-weight: 500;
    }

    .payment-countdown {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.75rem;
        color: #FF6B35;
        font-weight: 500;
        white-space: nowrap;
    }

    .payment-tip {
        font-size: 0.75rem;
        color: var(--gray);
        margin-bottom: 0.75rem;
    }

    /* 礼包码区域 */
    .gift-code-section {
        margin: 0.75rem 0.5rem;
        text-align: left;
        min-height: 50px;
    }

    .gift-code-row {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        min-height: 36px;
    }

    .gift-code-checkbox {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
        font-size: 0.85rem;
        color: var(--dark);
        user-select: none;
        flex-shrink: 0;
        min-height: 36px;
    }

    .gift-code-checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
        cursor: pointer;
        accent-color: var(--primary);
    }

    .gift-code-input-wrapper {
        min-height: 36px;
        display: flex;
        align-items: center;
        max-width: 280px;
    }

    .gift-code-row.centered {
        justify-content: center;
    }

    .gift-code-input-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        position: relative;
        width: 100%;
    }

    .gift-code-input {
        flex: 1;
        padding: 0.55rem 2.5rem 0.55rem 0.75rem;
        border: 1px solid var(--gray-light);
        border-radius: 6px;
        font-size: 0.8rem;
        transition: all 0.2s;
        height: 36px;
        max-width: 180px;
    }

    .gift-code-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .gift-code-clear {
        position: absolute;
        right: 68px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.25rem;
        color: var(--gray);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.2s;
    }

    .gift-code-clear:hover {
        color: #EF4444;
    }

    .gift-code-redeem {
        background: var(--primary);
        color: white;
        border: none;
        padding: 0.55rem 0.9rem;
        border-radius: 6px;
        font-size: 0.8rem;
        cursor: pointer;
        transition: all 0.2s;
        font-weight: 500;
        flex-shrink: 0;
        height: 36px;
    }

    .gift-code-redeem:hover {
        background: var(--secondary);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .gift-code-success {
        padding: 0.6rem 0.9rem;
        background: rgba(59, 130, 246, 0.1);
        border-radius: 6px;
        color: var(--dark);
        font-size: 0.8rem;
        text-align: center;
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 280px;
        margin: 0 auto;
    }

    /* 支付方式 */
    .payment-methods {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
        margin: 0.75rem 0;
    }

    .payment-method {
        flex: 1;
        max-width: 180px;
        cursor: pointer;
        position: relative;
    }

    .payment-method input[type="radio"] {
        position: absolute;
        opacity: 0;
    }

    .payment-method-content {
        border: 2px solid var(--gray-light);
        border-radius: 8px;
        padding: 0.6rem;
        transition: all 0.2s;
        text-align: center;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .payment-method input[type="radio"]:checked + .payment-method-content {
        border-color: var(--primary);
        background: rgba(59, 130, 246, 0.05);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .payment-method:hover .payment-method-content {
        border-color: var(--primary);
    }

    .payment-method-icon {
        flex-shrink: 0;
    }

    .payment-method-text {
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--dark);
    }

    .payment-method-tip {
        font-size: 0.75rem;
        color: var(--gray);
        margin-top: 0.6rem;
    }

    .payment-footer {
        margin-top: 0.75rem;
        text-align: center;
        padding-top: 0.75rem;
        border-top: 1px solid var(--gray-light);
    }

    .payment-cancel {
        background: none;
        border: none;
        color: var(--primary);
        font-size: 0.85rem;
        cursor: pointer;
        padding: 0.5rem 1rem;
        transition: all 0.2s;
        text-decoration: underline;
    }

    .payment-cancel:hover {
        color: var(--secondary);
    }

    /* 移动端适配 */
    @media (max-width: 768px) {
        .payment-modal {
            align-items: center !important;
            justify-content: center !important;
            padding: 0;
        }

        .payment-content {
            padding: 1.25rem;
            width: 92%;
            max-width: 400px;
            border-radius: 12px;
            max-height: 90vh;
            overflow-y: auto;
        }

        .payment-close {
            top: 0.5rem;
            right: 0.5rem;
            padding: 0.4rem;
        }

        .payment-close svg {
            width: 20px;
            height: 20px;
        }

        .payment-header {
            padding: 0.6rem;
            margin-bottom: 0.75rem;
        }

        .payment-title {
            font-size: 0.75rem;
            margin-bottom: 0.25rem;
        }

        .payment-subtitle {
            font-size: 0.7rem;
        }

        .payment-qrcode {
            padding: 0.5rem;
        }

        .payment-qrcode img {
            width: 120px;
            height: 120px;
        }

        .payment-price {
            font-size: 1.4rem;
        }

        .payment-currency {
            font-size: 0.8rem;
        }

        .payment-countdown {
            position: static;
            transform: none;
            display: block;
            text-align: center;
            font-size: 0.7rem;
            margin-top: 0.25rem;
        }

        .payment-tip {
            font-size: 0.7rem;
        }

        .gift-code-row {
            flex-direction: column;
            align-items: center;
            gap: 0.6rem;
            min-height: 36px;
        }

        .gift-code-row.centered {
            align-items: center;
        }

        .gift-code-checkbox {
            min-height: 36px;
            align-self: flex-start;
        }

        .gift-code-input-wrapper {
            width: 100%;
            min-height: 36px;
            max-width: 100%;
            display: flex;
            justify-content: center;
        }

        .gift-code-input-container {
            flex-wrap: nowrap;
            max-width: 100%;
            width: 100%;
            justify-content: center;
        }

        .gift-code-input {
            flex: 1;
            min-width: 0;
            font-size: 0.75rem;
            height: 36px;
            max-width: 180px;
        }

        .gift-code-clear {
            right: 115px;
        }

        .gift-code-redeem {
            font-size: 0.75rem;
            padding: 0.55rem 0.8rem;
            height: 36px;
        }

        .gift-code-success {
            min-height: 36px;
            font-size: 0.75rem;
            max-width: 100%;
        }

        .payment-methods {
            gap: 0.6rem;
        }

        .payment-method {
            max-width: 48%;
        }

        .payment-method-content {
            padding: 0.5rem;
            gap: 0.3rem;
        }

        .payment-method-icon {
            width: 28px;
            height: 28px;
        }

        .payment-method-text {
            font-size: 0.75rem;
        }

        .payment-method-tip {
            font-size: 0.7rem;
        }

        .payment-footer {
            margin-top: 0.6rem;
            padding-top: 0.6rem;
        }

        .payment-cancel {
            font-size: 0.8rem;
        }
    }



    /* 报告标题和作者输入区域 */
    .report-meta-section {
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .report-meta-field {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .report-meta-label {
        font-size: 0.95rem;
        white-space: nowrap;
        min-width: 60px;
        padding-top: 0.875rem;
    }

    .input-wrapper {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .report-meta-input {
        flex: 1;
        padding: 0.575rem 1rem;
        border: 1px solid var(--gray-light);
        border-radius: 5px;
        font-size: 0.9rem;
        font-family: inherit;
        color: var(--dark);
        background: white;
        transition: all 0.25s;
        outline: none;
    }

    .report-meta-input:focus {
        border-color: var(--primary);
        background: rgba(59, 130, 246, 0.02);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .report-meta-input::placeholder {
        color: #94A3B8;
        font-size: 0.85rem;
    }

    /* 输入框错误提示 */
    .input-error-message {
        color: #EF4444;
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
        display: none;
        font-weight: 500;
        animation: errorFadeIn 0.3s ease;
        line-height: 1.4;
    }

    @keyframes errorFadeIn {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .input-error {
        border-color: #EF4444 !important;
        background: rgba(239, 68, 68, 0.05) !important;
    }

    .input-error:focus {
        border-color: #EF4444 !important;
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
    }


    /* ==================== 通用弹框样式 ==================== */
    .alert-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 10998;
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .alert-overlay.show {
        opacity: 1;
    }

    .alert-modal {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        background: white;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        z-index: 10999;
        width: 90%;
        max-width: 380px;
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        overflow: hidden;
    }

    .alert-modal.show {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    /* 标题栏 */
    .alert-header {
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid #E2E8F0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8FAFC;
    }

    .alert-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--dark);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .alert-icon {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
    }

    .alert-icon-success {
        stroke: #52c41a;
    }

    .alert-icon-info {
        stroke: #8c8c8c;
    }

    .alert-icon-warning {
        stroke: #faad14;
    }

    .alert-icon-error {
        stroke: #ff4d4f;
    }

    .alert-close {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.25rem;
        color: #94A3B8;
        transition: all 0.2s;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .alert-close:hover {
        background: rgba(148, 163, 184, 0.1);
        color: #64748B;
    }

    .alert-close svg {
        display: block;
    }

    /* 内容区域 */
    .alert-content {
        padding: 2rem 1.5rem;
        font-size: 1rem;
        line-height: 1.6;
        color: var(--dark);
        text-align: center;
        min-height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* 按钮区域 */
    .alert-footer {
        padding: 1rem 1.5rem 1.5rem;
        display: flex;
        gap: 1rem;
        justify-content: center;
    }

    .alert-footer.single {
        justify-content: center;
    }

    .alert-footer.double {
        justify-content: center;
    }

    /* 按钮样式 */
    .alert-btn {
        padding: 0.75rem 2.5rem;
        border-radius: 6px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        min-width: 120px;
    }

    .alert-btn-default {
        background: #E2E8F0;
        color: #475569;
        border: 1px solid #CBD5E1;
    }

    .alert-btn-default:hover {
        background: #CBD5E1;
        border-color: #94A3B8;
    }

    .alert-btn-primary {
        background: #334155;
        color: white;
        box-shadow: 0 4px 12px rgba(51, 65, 85, 0.3);
    }

    .alert-btn-primary:hover {
        background: #1E293B;
        box-shadow: 0 6px 16px rgba(51, 65, 85, 0.4);
        transform: translateY(-1px);
    }

    .alert-btn-primary:active {
        transform: translateY(0);
    }

    /* 移动端适配 */
    @media (max-width: 768px) {
        .alert-modal {
            width: 92%;
            max-width: 400px;
        }

        .alert-header {
            padding: 1rem 1.25rem;
        }

        .alert-title {
            font-size: 1rem;
        }

        .alert-close svg {
            width: 20px;
            height: 20px;
        }

        .alert-content {
            padding: 1.5rem 1.25rem;
            font-size: 0.95rem;
            min-height: 60px;
        }

        .alert-footer {
            padding: 0.75rem 1.25rem 1.25rem;
            gap: 0.75rem;
        }

        .alert-btn {
            padding: 0.7rem 1.5rem;
            font-size: 0.9rem;
            min-width: 100px;
        }

        .uploadResult {
            margin-left: 0.5rem!important;
        }
    }

    @media (max-width: 480px) {
        .alert-modal {
            width: 95%;
        }

        .alert-header {
            padding: 0.875rem 1rem;
        }

        .alert-title {
            font-size: 0.95rem;
        }

        .alert-content {
            padding: 1.25rem 1rem;
            font-size: 0.9rem;
        }

        .alert-footer {
            padding: 0.75rem 1rem 1rem;
            flex-direction: row;
        }

        .alert-btn {
            flex: 1;
            padding: 0.65rem 1rem;
            font-size: 0.85rem;
            min-width: auto;
        }
    }

    /* ==================== 分页样式 ==================== */
    .pagination {
        font-size: 14px;
        text-align: center;
        padding: 1.5rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .pagination .page_details {
        color: var(--gray);
        font-size: 0.875rem;
    }

    .pagination .page_to {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
    }

    .pagination .page_to .flex_parent {
        display: flex;
        gap: 1rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pagination .page_to li {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 36px;
        height: 36px;
        padding: 0 12px;
        color: var(--dark);
        background: white;
        border: 1px solid var(--gray-light);
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
        font-size: 0.875rem;
    }

    .pagination .page_to li.page_hide {
        display: none;
    }

    .pagination .page_to li:hover {
        color: var(--primary);
        background: #EFF6FF;
        border-color: var(--primary);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
    }

    .pagination .page_to li.active {
        color: white;
        background: var(--primary);
        border-color: var(--primary);
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    }

    .pagination .page_to li.active:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        transform: translateY(-1px);
    }

    .pagination .page_to li:disabled,
    .pagination .page_to li.disabled {
        color: var(--gray);
        background: var(--gray-light);
        border-color: var(--gray-light);
        cursor: not-allowed;
        opacity: 0.5;
    }

    .pagination .page_to li:disabled:hover,
    .pagination .page_to li.disabled:hover {
        transform: none;
        box-shadow: none;
    }

    .pagination .page_jump {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
    }

    .pagination .page_jump input.page_jump_input {
        width: 60px;
        height: 36px;
        text-align: center;
        background-color: white;
        border: 1px solid var(--gray-light);
        border-radius: 6px;
        color: var(--dark);
        font-size: 0.875rem;
        transition: all 0.3s ease;
    }

    .pagination .page_jump input.page_jump_input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .pagination .page_jump input.page_jump_btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        height: 36px;
        font-size: 0.875rem;
        font-weight: 600;
        text-align: center;
        white-space: nowrap;
        cursor: pointer;
        user-select: none;
        border: none;
        border-radius: 6px;
        background: var(--primary);
        color: white;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
    }

    .pagination .page_jump input.page_jump_btn:hover {
        background: var(--primary-dark);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        transform: translateY(-1px);
    }

    .pagination .page_jump input.page_jump_btn:active {
        transform: translateY(0);
    }

    /* 移动端适配 */
    @media (max-width: 768px) {
        .pagination {
            padding: 1rem 0;
            gap: 0.75rem;
        }

        .pagination .page_to li {
            min-width: 32px;
            height: 32px;
            padding: 0 10px;
            font-size: 0.8125rem;
        }

        .pagination .page_jump input.page_jump_input {
            width: 50px;
            height: 32px;
            font-size: 0.8125rem;
        }

        .pagination .page_jump input.page_jump_btn {
            padding: 0 16px;
            height: 32px;
            font-size: 0.8125rem;
        }

        .pagination .page_details {
            width: 100%;
            text-align: center;
            font-size: 0.8125rem;
        }
    }

    .auxiliary {
        color: #999999;
        font-size: 12px;
        margin-top: 10px;
        user-select: none;
        background-color: #f8f8f8;
        display: inline-block;
        padding: 8px 10px;
        font-weight: bold;
    }




