* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* 顶部导航栏 */
.top-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-left, .nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

    .nav-link:hover {
        color: #1890ff;
    }

.new-tag {
    background-color: #ff4d4f;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 4px;
}

/* 主要内容区域 */
.main-content {
    background-color: #f5f5f5;
    padding: 40px 20px;
}

.report-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* 左侧：渐变背景面板 */
.report-left-panel {
    width: 35%;
    min-width: 300px;
    position: relative;
}

.report-gradient-bg {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(180deg, #1e3a8a 0%, #059669 100%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-radius: 12px 0 0 12px;
}

.report-di-logo {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    margin-bottom: 40px;
    line-height: 1;
}

.report-title-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 40px 0;
}

    .report-title-left h2 {
        color: #fff;
        font-size: 32px;
        font-weight: bold;
        margin: 0 0 16px 0;
        line-height: 1.3;
    }

    .report-title-left h3 {
        color: #fff;
        font-size: 20px;
        font-weight: 400;
        margin: 0;
        line-height: 1.4;
        opacity: 0.95;
    }

.report-copyright-left {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-top: auto;
}

/* 右侧：报告详情 */
.report-right-panel {
    width: 65%;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.report-title {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 32px 0;
    line-height: 1.4;
}

.report-details-card {
    background-color: #f5f5f5;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    margin-bottom: 16px;
    font-size: 15px;
    align-items: baseline;
}

    .detail-item:last-child {
        margin-bottom: 0;
    }

.detail-label {
    color: #666;
    min-width: 90px;
    font-weight: 400;
}

.detail-value {
    color: #333;
    font-weight: 500;
    flex: 1;
}

.price-item {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    color: #ff4d4f;
    font-weight: bold;
    font-size: 15px;
}

.price-value {
    color: #333;
    font-size: 24px;
    font-weight: bold;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
}

.btn-primary {
    background-color: #1890ff;
    color: #fff;
}

    .btn-primary:hover {
        background-color: #40a9ff;
    }

.btn-success {
    background-color: #52c41a;
    color: #fff;
}

    .btn-success:hover {
        background-color: #73d13d;
    }

.btn-outline {
    background-color: #fff;
    color: #1890ff;
    border: 1px solid #1890ff;
}

    .btn-outline:hover {
        background-color: #e6f7ff;
    }

/* 客服按钮二维码弹出框 */
.service-btn-wrapper {
    position: relative;
    display: inline-block;
    flex: 1;
}

.service-qr-popover {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(-5px);
    width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-qr-popover::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.service-qr-popover::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(0, 0, 0, 0.06);
    z-index: -1;
}

.service-btn-wrapper:hover .service-qr-popover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.service-qr-popover img {
    width: 180px;
    height: 180px;
    display: block;
    margin: 0 auto 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    transition: transform 0.2s ease;
}

.service-btn-wrapper:hover .service-qr-popover img {
    transform: scale(1.02);
}

.service-qr-popover p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.3px;
    }

/* 右侧：广告和推荐 */
.right-panel {
    position: sticky;
    top: 80px;
}

.ad-block {
    background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%);
    color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.ad-content {
    position: relative;
    z-index: 2;
}

    .ad-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
        font-weight: bold;
    }

    .ad-content p {
        font-size: 14px;
        margin: 16px 0;
        opacity: 0.9;
    }

.ad-btn {
    background-color: #fff;
    color: #1890ff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

    .ad-btn:hover {
        background-color: #f0f0f0;
    }

.ad-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    opacity: 0.2;
}

.video-recommendations {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #fafafa;
    border-radius: 6px;
    transition: background-color 0.3s;
}

    .video-item:hover {
        background-color: #f0f0f0;
    }

.video-icon {
    font-size: 20px;
}

.video-info {
    flex: 1;
}

.video-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.video-tag {
    font-size: 12px;
    color: #999;
}

/* 报告提供者信息 */
.provider-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.provider-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.provider-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1890ff 0%, #52c41a 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
}

.provider-title {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
}

.provider-count {
    color: #999;
    font-size: 14px;
}

.provider-description {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.provider-link {
    color: #1890ff;
    text-decoration: none;
    font-size: 14px;
}

    .provider-link:hover {
        text-decoration: underline;
    }

/* 标签页 */
.tabs-container {
    margin-top: 30px;
}

.tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 24px;
}

.tab {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s;
    margin-bottom: -2px;
}

    .tab:hover {
        color: #1890ff;
    }

    .tab.active {
        color: #1890ff;
        border-bottom-color: #1890ff;
        font-weight: 500;
    }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

/* 购买流程 */
.purchase-process {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 0;
}

.process-step {
    flex: 1;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #1890ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-btn {
    background-color: #1890ff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .step-btn:hover {
        background-color: #40a9ff;
    }

.step-details {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

    .step-details p {
        margin-bottom: 8px;
    }

.process-arrow {
    font-size: 24px;
    color: #1890ff;
    margin-top: 10px;
    flex-shrink: 0;
}

/* 温馨提示 */
.tips-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tips-title {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.tips-content {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

    .tips-content p {
        margin-bottom: 12px;
    }

    .tips-content strong {
        color: #333;
    }

/* 页脚 */
.footer {
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-contact {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

    .footer-contact a {
        color: #1890ff;
        text-decoration: none;
    }

        .footer-contact a:hover {
            text-decoration: underline;
        }

.footer-address {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

    .footer-links a {
        color: #1890ff;
        text-decoration: none;
        font-size: 14px;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.footer-dev {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: 12px;
    color: #999;
}

.footer-qr {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.qr-code-item {
    text-align: center;
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
    margin-bottom: 8px;
}

.qr-code-item p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .report-content-wrapper {
        flex-direction: column;
    }

    .report-left-panel {
        width: 100%;
        min-height: 300px;
    }

    .report-gradient-bg {
        border-radius: 12px 12px 0 0;
        min-height: 300px;
        padding: 30px 40px;
    }

    .report-right-panel {
        width: 100%;
        padding: 30px 40px;
    }

    .report-title-left h2 {
        font-size: 28px;
    }

    .report-title-left h3 {
        font-size: 18px;
    }

    .purchase-process {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-qr {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 12px;
    }

    .nav-left {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-content {
        padding: 20px 15px;
    }

    .report-content-wrapper {
        border-radius: 8px;
    }

    .report-gradient-bg {
        padding: 25px 30px;
        min-height: 250px;
    }

    .report-di-logo {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .report-title-left h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .report-title-left h3 {
        font-size: 16px;
    }

    .report-right-panel {
        padding: 25px 30px;
    }

    .report-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .report-details-card {
        padding: 20px;
    }

    .detail-item {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
    }
}

/* PDF阅读器样式 */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    overflow: auto;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

    .pdf-modal.show {
        display: flex;
        align-items: center;
        justify-content: center;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pdf-modal-content {
    background-color: #fff;
    width: 96%;
    max-width: 1500px;
    height: 92vh;
    max-height: 950px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: slideUp 0.3s ease;
    margin: auto;
}

.pdf-modal-header {
    background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
    color: #fff;
    padding: 18px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3);
    flex-shrink: 0;
}

    .pdf-modal-header h2 {
        font-size: 18px;
        font-weight: 500;
        margin: 0;
    }

.pdf-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    line-height: 1;
}

    .pdf-close-btn:hover {
        opacity: 0.7;
    }

.pdf-toolbar {
    background-color: #fafafa;
    border-bottom: 1px solid #e8e8e8;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.pdf-toolbar-left,
.pdf-toolbar-center,
.pdf-toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pdf-toolbar-left {
    flex: 1;
    justify-content: flex-start;
    min-width: 280px;
}

.pdf-toolbar-center {
    flex: 1;
    justify-content: center;
    min-width: 300px;
}

.pdf-toolbar-right {
    flex: 1;
    justify-content: flex-end;
    min-width: 320px;
}

.pdf-tool-btn {
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    padding: 7px 14px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

    .pdf-tool-btn:hover {
        background-color: #1890ff;
        border-color: #1890ff;
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
    }

    .pdf-tool-btn:active {
        background-color: #096dd9;
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(24, 144, 255, 0.3);
    }

    .pdf-tool-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.page-info {
    font-size: 13px;
    color: #666;
    margin: 0 12px;
    font-weight: 600;
    white-space: nowrap;
}

.page-input {
    width: 65px;
    padding: 7px 10px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    transition: all 0.2s;
    font-weight: 500;
}

    .page-input:hover {
        border-color: #1890ff;
    }

    .page-input:focus {
        outline: none;
        border-color: #1890ff;
        box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
    }

.zoom-select {
    padding: 7px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 13px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 85px;
    font-weight: 500;
}

    .zoom-select:hover {
        border-color: #1890ff;
    }

    .zoom-select:focus {
        outline: none;
        border-color: #1890ff;
        box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
    }

.search-box {
    display: flex;
    align-items: center;
    gap: 3px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 3px;
    transition: all 0.2s;
}

    .search-box:focus-within {
        border-color: #1890ff;
        box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
    }

.search-input {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    width: 190px;
    background: transparent;
    transition: all 0.2s;
}

    .search-input:focus {
        outline: none;
    }

.search-box .pdf-tool-btn {
    border: none;
    background: transparent;
    padding: 5px 8px;
    margin: 0;
    box-shadow: none;
}

    .search-box .pdf-tool-btn:hover {
        background-color: #f0f0f0;
        color: #1890ff;
        transform: none;
        box-shadow: none;
    }

.pdf-viewer-container {
    flex: 1;
    overflow: auto;
    background: linear-gradient(135deg, #525252 0%, #424242 100%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    min-height: 0;
}

.pdf-viewer {
    position: relative;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pdf-page {
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    background-color: #fff;
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

    .pdf-page canvas {
        display: block;
    }

.pdf-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    font-size: 16px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.pdf-status-bar {
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 10px 28px;
    font-size: 12px;
    color: #666;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* 搜索高亮 */
.pdf-search-highlight {
    background-color: rgba(255, 255, 0, 0.4);
    position: absolute;
    pointer-events: none;
}

    .pdf-search-highlight.active {
        background-color: rgba(255, 200, 0, 0.6);
    }

/* 响应式设计 - PDF阅读器 */
@media (max-width: 1400px) {
    .pdf-modal-content {
        width: 98%;
        height: 94vh;
    }
}

@media (max-width: 1024px) {
    .pdf-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .pdf-toolbar-left,
    .pdf-toolbar-center,
    .pdf-toolbar-right {
        width: 100%;
        justify-content: center;
        min-width: auto;
    }

    .search-box {
        width: 100%;
        max-width: 400px;
    }

    .search-input {
        width: 100%;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .pdf-modal {
        padding: 10px;
    }

    .pdf-modal-content {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }

    .pdf-toolbar {
        padding: 10px 12px;
    }

    .pdf-modal-header {
        padding: 14px 18px;
    }

        .pdf-modal-header h2 {
            font-size: 16px;
        }

    .pdf-viewer-container {
        padding: 15px;
    }

    .pdf-status-bar {
        padding: 8px 16px;
    }
}

/* 支付模态框样式 */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

    .payment-modal.show {
        display: block;
    }

.payment-modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    animation: paymentModalSlideUp 0.3s ease;
    padding: 30px 35px;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

@keyframes paymentModalSlideUp {
    from {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.payment-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #666;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 50%;
    line-height: 1;
}

    .payment-close-btn:hover {
        background-color: #f0f0f0;
        color: #333;
    }

.payment-header {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 10px;
}

.payment-title {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
    word-break: break-all;
    padding-right: 40px;
}

.payment-report-type {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.required-mark {
    color: #ff4d4f;
    font-size: 16px;
    font-weight: bold;
}

.type-label {
    font-size: 15px;
    color: #666;
    margin-right: 8px;
}

.radio-group {
    display: flex;
    align-items: center;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 20px;
}

    .radio-label input[type="radio"] {
        width: 18px;
        height: 18px;
        margin-right: 8px;
        cursor: pointer;
        accent-color: #1890ff;
    }

.radio-text {
    font-size: 15px;
    color: #333;
}

.report-price {
    margin-left: auto;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.payment-content {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 25px;
    display: grid;
    grid-template-columns: minmax(140px, 160px) minmax(200px, 1fr) minmax(160px, 200px);
    gap: 20px;
    align-items: start;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payment-method-item {
    position: relative;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    gap: 10px;
    min-height: 120px;
    justify-content: center;
}

    .payment-method-item:hover {
        border-color: #1890ff;
        box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
    }

    .payment-method-item.active {
        border-color: #1890ff;
        background-color: #e6f7ff;
    }

.method-check {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 24px;
    height: 24px;
    background-color: #1890ff;
    border-radius: 0 0 8px 0;
    z-index: 100;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .method-check .check-icon {
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        line-height: 1;
        margin: 0;
        padding: 0;
        transform: none;
    }

.method-logo {
    font-size: 32px;
    font-weight: bold;
    margin-top: 8px;
    margin-bottom: 8px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 1;
}

.method-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: 48px;
    max-height: 48px;
}

.payment-method-item[data-method="wechat"] .method-logo {
    color: #07c160;
    font-size: 28px;
}

.payment-method-item[data-method="alipay"] .method-logo {
    color: #1677ff;
    font-size: 28px;
}

.method-name {
    font-size: 14px;
    color: #666;
}

.payment-qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code-container {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

.qr-code-placeholder {
    width: 220px;
    height: 220px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

    .qr-code-placeholder::before {
        content: '';
        position: absolute;
        width: 180px;
        height: 180px;
        background-image: linear-gradient(90deg, #000 1px, transparent 1px), linear-gradient(0deg, #000 1px, transparent 1px);
        background-size: 10px 10px;
        opacity: 0.3;
    }

.qr-code-text {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
}

.qr-code-image {
    width: 220px;
    height: 220px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    background-color: #fff;
}

.qr-code-expire {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.qr-code-placeholder.error {
    border-color: #ff4d4f;
}

.qr-code-placeholder.success {
    border-color: #52c41a;
}

.qr-code-hint {
    font-size: 12px;
    color: #999;
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
}

.payment-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-label {
    font-size: 14px;
    color: #666;
}

.summary-amount {
    font-size: 28px;
    font-weight: bold;
    color: #ff4d4f;
    line-height: 1.2;
    word-wrap: break-word;
}

.payment-tips {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    word-wrap: break-word;
    word-break: break-all;
}

    .payment-tips p {
        margin: 0 0 8px 0;
        word-wrap: break-word;
        word-break: break-all;
    }

.agreement-link {
    color: #1890ff;
    text-decoration: none;
}

    .agreement-link:hover {
        text-decoration: underline;
    }

/* 支付模态框响应式设计 */
@media (max-width: 768px) {
    .payment-modal {
        padding: 10px;
    }

    .payment-modal-content {
        width: 100%;
        padding: 30px 20px;
    }

    .payment-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .payment-methods {
        flex-direction: row;
        justify-content: center;
    }

    .payment-method-item {
        flex: 1;
        max-width: 150px;
    }

    .qr-code-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .qr-code-placeholder {
        width: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }

    .qr-code-image {
        width: 100%;
        max-width: 250px;
        height: auto;
    }

    .payment-summary {
        text-align: center;
    }
}

/* ========== 列表页面样式 ========== */

/* 页面标题栏 */
.list-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.list-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.list-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
}

/* 列表内容区域内的搜索栏 */
.list-search-section {
    margin-bottom: 20px;
    padding: 16px;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.list-search-box-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 800px;
}

.list-search-input-inline {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: all 0.3s;
}

    .list-search-input-inline:focus {
        border-color: #1890ff;
        box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
    }

    .list-search-input-inline::placeholder {
        color: #999;
    }

.list-search-btn-inline {
    padding: 12px 24px;
    background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3);
}

    .list-search-btn-inline:hover {
        background: linear-gradient(135deg, #40a9ff 0%, #1890ff 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(24, 144, 255, 0.4);
    }

    .list-search-btn-inline:active {
        transform: translateY(0);
    }

/* 主要内容区域 */
.list-main-content {
    background-color: #f5f5f5;
    padding: 20px;
    min-height: calc(100vh - 200px);
}

.list-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* 左侧筛选栏 */
.list-sidebar {
    width: 280px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.filter-section {
    margin-bottom: 30px;
}

    .filter-section:last-child {
        margin-bottom: 0;
    }

.filter-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
}

.filter-icon {
    font-size: 18px;
    color: #1890ff;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.filter-content {
    padding-top: 5px;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: color 0.3s;
}

    .filter-checkbox:hover {
        color: #1890ff;
    }

    .filter-checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-right: 8px;
        cursor: pointer;
        accent-color: #1890ff;
    }

.filter-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.filter-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: color 0.3s;
}

    .filter-radio:hover {
        color: #1890ff;
    }

    .filter-radio input[type="radio"] {
        width: 16px;
        height: 16px;
        margin-right: 8px;
        cursor: pointer;
        accent-color: #1890ff;
    }

.filter-date-range {
    margin-top: 15px;
}

.date-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-icon {
    font-size: 18px;
    color: #1890ff;
}

.date-inputs {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

    .date-input:focus {
        border-color: #1890ff;
    }

.date-separator {
    color: #999;
    font-size: 14px;
}

/* 中间列表区域 */
.list-content {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 列表头部筛选栏 */
.list-filter-bar {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.filter-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    gap: 20px;
}

    .filter-row:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 110px;
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    padding-top: 4px;
}

.filter-icon {
    font-size: 18px;
    color: #1890ff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #e6f7ff 0%, #bae7ff 100%);
    border-radius: 6px;
}

.filter-label-text {
    white-space: nowrap;
}

.filter-options {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.filter-checkbox-inline {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background-color: #fff;
    user-select: none;
}

    .filter-checkbox-inline:hover {
        color: #1890ff;
        border-color: #91d5ff;
        background-color: #f0f9ff;
        transform: translateY(-1px);
        box-shadow: 0 2px 6px rgba(24, 144, 255, 0.15);
    }

    .filter-checkbox-inline input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
        margin: 0;
        cursor: pointer;
    }

        .filter-checkbox-inline input[type="checkbox"]:checked + span {
            color: #1890ff;
        }

        .filter-checkbox-inline input[type="checkbox"]:checked ~ span {
            color: #1890ff;
        }

    .filter-checkbox-inline.checked {
        color: #1890ff;
        border-color: #1890ff;
        background: linear-gradient(135deg, #e6f7ff 0%, #bae7ff 100%);
        font-weight: 500;
        box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
    }

    .filter-checkbox-inline span {
        display: inline-block;
        line-height: 1;
    }

/* 时间范围切换按钮样式 */
.filter-time-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background-color: #fff;
    margin-right: 10px;
    user-select: none;
    outline: none;
}

    .filter-time-toggle:hover {
        color: #1890ff;
        border-color: #91d5ff;
        background-color: #f0f9ff;
        transform: translateY(-1px);
        box-shadow: 0 2px 6px rgba(24, 144, 255, 0.15);
    }

    .filter-time-toggle.active {
        color: #1890ff;
        border-color: #1890ff;
        background: linear-gradient(135deg, #e6f7ff 0%, #bae7ff 100%);
        font-weight: 500;
        box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
    }

    .filter-time-toggle:focus {
        outline: none;
        border-color: #1890ff;
        box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
    }

.filter-date-range-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
    padding: 8px 12px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .filter-date-range-inline:hover {
        border-color: #91d5ff;
        box-shadow: 0 2px 6px rgba(24, 144, 255, 0.1);
    }

    .filter-date-range-inline .date-icon {
        font-size: 16px;
        color: #1890ff;
    }

.date-input-inline {
    padding: 6px 10px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
    transition: all 0.3s;
    width: 130px;
    background: transparent;
    color: #333;
}

    .date-input-inline:focus {
        background-color: #f0f9ff;
    }

    .date-input-inline::-webkit-calendar-picker-indicator {
        cursor: pointer;
        opacity: 0.6;
        transition: opacity 0.3s;
    }

        .date-input-inline::-webkit-calendar-picker-indicator:hover {
            opacity: 1;
        }

.filter-date-range-inline .date-separator {
    color: #999;
    font-size: 13px;
    padding: 0 4px;
}

/* 排序栏 */
.list-sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.sort-options {
    display: flex;
    gap: 20px;
    align-items: center;
}

.sort-btn {
    background: none;
    border: none;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .sort-btn:hover {
        background-color: #f5f5f5;
        color: #1890ff;
    }

    .sort-btn.active {
        color: #1890ff;
        font-weight: 500;
    }

.sort-dropdown {
    position: relative;
}

.sort-arrow {
    font-size: 10px;
    margin-left: 4px;
}

.list-result-count {
    font-size: 14px;
    color: #999;
}

/* 报告列表 */
.report-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.report-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: #fff;
    margin-bottom: 16px;
}

    .report-item:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        border-color: #1890ff;
        transform: translateY(-2px);
    }

.report-thumbnail {
    width: 160px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.report-thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.report-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.report-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.report-thumbnail:hover img {
    transform: scale(1.05);
}

.thumbnail-placeholder {
    color: #999;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    background: #f5f5f5;
}

.report-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.report-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.report-item-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.report-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.report-tag {
    font-size: 12px;
    color: #999;
    padding: 4px 8px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.report-tag.highlight {
    background-color: #e6f7ff;
    color: #1890ff;
    border: 1px solid #91d5ff;
    font-weight: 500;
}

.report-action {
    width: 150px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    justify-content: center;
}

.report-price {
    font-size: 20px;
    font-weight: bold;
    color: #ff4d4f;
}

.btn-buy {
    background: linear-gradient(135deg, #E62129 0%, #d81b43 100%);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 8px rgba(230, 33, 41, 0.3);
}

    .btn-buy:hover {
        background: linear-gradient(135deg, #d81b43 0%, #E62129 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(230, 33, 41, 0.4);
        color: #fff;
        text-decoration: none;
    }

    .btn-buy:active {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(230, 33, 41, 0.3);
    }

/* 分页 */
.list-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
}

.pagination-btn {
    padding: 8px 16px;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

    .pagination-btn:hover:not(:disabled) {
        border-color: #1890ff;
        color: #1890ff;
    }

    .pagination-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.pagination-pages {
    display: flex;
    gap: 8px;
    align-items: center;
}

.page-btn {
    min-width: 36px;
    height: 36px;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .page-btn:hover {
        border-color: #1890ff;
        color: #1890ff;
    }

    .page-btn.active {
        background-color: #1890ff;
        border-color: #1890ff;
        color: #fff;
    }

.page-ellipsis {
    color: #999;
    font-size: 14px;
    padding: 0 4px;
}

/* 响应式设计 - 列表页面 */
@media (max-width: 1200px) {
    .list-content-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .list-header-container {
        flex-direction: column;
        align-items: stretch;
    }

    .list-title {
        text-align: center;
    }

    .list-search-section {
        padding: 12px;
    }

    .list-search-box-inline {
        flex-direction: column;
        max-width: 100%;
    }

    .list-search-input-inline {
        width: 100%;
    }

    .list-search-btn-inline {
        width: 100%;
    }

    .list-filter-bar {
        padding: 16px;
        border-radius: 8px;
    }

    .filter-row {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .filter-label {
        min-width: auto;
        font-size: 14px;
    }

    .filter-icon {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }

    .filter-options {
        width: 100%;
        gap: 8px;
    }

    .filter-checkbox-inline,
    .filter-time-toggle {
        padding: 6px 12px;
        font-size: 13px;
    }

    .filter-date-range-inline {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        flex-wrap: wrap;
        padding: 6px 10px;
    }

    .date-input-inline {
        width: calc(50% - 15px);
        min-width: 100px;
        font-size: 12px;
    }

    .list-sort-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .report-item {
        flex-direction: column;
    }

    .report-thumbnail {
        width: 100%;
        height: 200px;
    }

    .report-action {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ========== 订单页面样式 ========== */

/* 订单页面标题栏 */
.orders-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 30px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.orders-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.orders-title {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.orders-stats {
    display: flex;
    gap: 30px;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.stat-value {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

    .stat-value.warning {
        color: #ffd700;
    }

    .stat-value.success {
        color: #52c41a;
    }

/* 订单主要内容区域 */
.orders-main-content {
    background-color: #f5f5f5;
    padding: 20px;
    min-height: calc(100vh - 200px);
}

.orders-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* 订单状态筛选标签 */
.orders-filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-tab {
    padding: 10px 24px;
    border: none;
    background: none;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
}

    .filter-tab:hover {
        background-color: #f5f5f5;
        color: #1890ff;
    }

    .filter-tab.active {
        background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%);
        color: #fff;
        box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3);
    }

/* 订单列表 */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-item {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

    .order-item:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        border-color: #1890ff;
    }

/* 订单头部 */
.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.order-info-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-number {
    font-size: 14px;
    color: #666;
}

    .order-number strong {
        color: #333;
        font-weight: 600;
    }

.order-date {
    font-size: 13px;
    color: #999;
}

.order-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

    .order-status.pending {
        background-color: #fff7e6;
        color: #fa8c16;
        border: 1px solid #ffd591;
    }

    .order-status.paid {
        background-color: #e6f7ff;
        color: #1890ff;
        border: 1px solid #91d5ff;
    }

    .order-status.completed {
        background-color: #f6ffed;
        color: #52c41a;
        border: 1px solid #b7eb8f;
    }

    .order-status.cancelled {
        background-color: #fff1f0;
        color: #ff4d4f;
        border: 1px solid #ffccc7;
    }

.status-icon {
    font-size: 16px;
}

/* 订单内容 */
.order-content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.order-document {
    flex: 1;
    display: flex;
    gap: 16px;
}

.document-thumbnail {
    width: 100px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #1890ff 0%, #52c41a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-placeholder-small {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
}

.document-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.document-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.document-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.meta-item {
    font-size: 13px;
    color: #999;
}

    .meta-item::before {
        content: "•";
        margin-right: 8px;
        color: #d9d9d9;
    }

    .meta-item:first-child::before {
        content: "";
        margin: 0;
    }

/* 订单金额 */
.order-amount {
    width: 200px;
    flex-shrink: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amount-label {
    font-size: 13px;
    color: #999;
}

.amount-value {
    font-size: 24px;
    font-weight: bold;
    color: #ff4d4f;
}

    .amount-value.cancelled-amount {
        color: #999;
        text-decoration: line-through;
    }

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.payment-method {
    font-size: 13px;
    color: #666;
}

.payment-time {
    font-size: 12px;
    color: #999;
}

.cancel-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.cancel-reason,
.cancel-time {
    font-size: 12px;
    color: #999;
}

/* 订单底部 */
.order-footer {
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.order-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-order {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

    .btn-order.btn-primary {
        background-color: #1890ff;
        color: #fff;
    }

        .btn-order.btn-primary:hover {
            background-color: #40a9ff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
        }

    .btn-order.btn-success {
        background-color: #52c41a;
        color: #fff;
    }

        .btn-order.btn-success:hover {
            background-color: #73d13d;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(82, 196, 26, 0.3);
        }

    .btn-order.btn-outline {
        background-color: #fff;
        color: #1890ff;
        border: 1px solid #1890ff;
    }

        .btn-order.btn-outline:hover {
            background-color: #e6f7ff;
            border-color: #40a9ff;
        }

.order-expiry {
    flex: 1;
    text-align: right;
}

.expiry-text {
    font-size: 13px;
    color: #fa8c16;
}

    .expiry-text strong {
        color: #ff4d4f;
        font-weight: 600;
    }

.order-completed-info {
    flex: 1;
    text-align: right;
}

.completed-text {
    font-size: 13px;
    color: #52c41a;
}

/* 订单分页 */
.orders-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
}

/* 响应式设计 - 订单页面 */
@media (max-width: 1200px) {
    .order-content {
        flex-direction: column;
    }

    .order-amount {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .orders-header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .orders-stats {
        width: 100%;
        justify-content: space-around;
    }

    .orders-filter-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .filter-tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    .order-item {
        padding: 16px;
    }

    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .order-content {
        flex-direction: column;
    }

    .order-document {
        flex-direction: column;
    }

    .document-thumbnail {
        width: 100%;
        height: 200px;
    }

    .order-amount {
        width: 100%;
        text-align: left;
    }

    .order-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .order-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-order {
        width: 100%;
    }

    .order-expiry,
    .order-completed-info {
        text-align: left;
    }
}

/* 空结果样式 */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

.no-results p {
    margin: 0;
}

/* 分页按钮禁用状态 */
.pagination-btn.disabled {
    background-color: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
    border: 1px solid #e0e0e0;
}

.pagination-btn.disabled:hover {
    background-color: #f5f5f5;
    color: #ccc;
}

/* 筛选选项样式 */
.filter-checkbox-inline {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 8px;
    font-size: 14px;
    cursor: pointer;
}

.filter-checkbox-inline input[type="checkbox"] {
    margin-right: 6px;
    width: 16px;
    height: 16px;
}

.filter-checkbox-inline span {
    color: #333;
    transition: color 0.3s;
}

.filter-checkbox-inline:hover span {
    color: #1890ff;
}

.filter-checkbox-inline input[type="checkbox"]:checked + span {
    color: #1890ff;
    font-weight: 500;
}
 solid #d9d9d9;
}

.filter-reset-btn:hover {
    background-color: #f5f5f5;
    border-color: #40a9ff;
    color: #40a9ff;
}