* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }
        body {
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航栏 */
        header {
            border-bottom: 1px solid #eee;
            padding: 10px 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: #333;
        }
        .logo img {
            height: 24px;
        }
        .nav {
            display: flex;
            gap: 24px;
        }
        .nav a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            transition: color 0.2s;
        }
        .nav a:hover {
            color: #ff6a00;
        }
        .nav a.active {
            color: #ff6a00;
            font-weight: 500;
        }
        .github-link {
            font-size: 12px;
            color: #666;
        }
        /* 移动端汉堡菜单 */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }
        .hamburger span {
            width: 20px;
            height: 2px;
            background: #333;
        }
        /* 英雄区 */
        .hero {
            text-align: center;
            padding: 60px 0;
        }
        .hero h1 {
            font-size: 22px;
            color: #ff6a00;
            margin-bottom: 16px;
            line-height: 1.4;
        }
        .tab-buttons {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .tab-btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: all 0.2s;
        }
        .tab-btn.active {
            background-color: #222;
            color: #fff;
        }
        .tab-btn:not(.active) {
            background-color: #f5f5f5;
            color: #333;
        }
        /* 介绍区 */
        .intro-section {
            background-color: #fff9f0;
            padding: 30px 0;
            margin-bottom: 40px;
        }
        .intro-inner {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            border-radius: 8px;
            padding: 24px;
            border: 1px solid #ffe0b2;
        }
        .intro-header {
            text-align: center;
            margin-bottom: 20px;
        }
        .intro-header .hot-tag {
            display: inline-block;
            background: #ff4400;
            color: #fff;
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 4px;
            margin-bottom: 8px;
        }
        .intro-header h2 {
            font-size: 20px;
            margin-bottom: 8px;
        }
        .intro-header p {
            font-size: 12px;
            color: #666;
        }
        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .intro-left h3 {
            font-size: 14px;
            margin-bottom: 12px;
            color: #333;
        }
        .intro-left ul {
            font-size: 13px;
            color: #555;
            list-style: none;
        }
        .intro-left li {
            margin-bottom: 6px;
            padding-left: 16px;
            position: relative;
        }
        .intro-left li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #ff6a00;
        }
        .intro-right {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .install-command {
            background: #f5f5f5;
            padding: 10px;
            border-radius: 6px;
            font-family: monospace;
            font-size: 12px;
            color: #333;
            word-break: break-all;
        }
        .btn {
            padding: 10px 16px;
            border-radius: 6px;
            font-size: 13px;
            text-align: center;
            cursor: pointer;
            border: none;
            transition: all 0.2s;
        }
        .btn-primary {
            background-color: #222;
            color: #fff;
        }
        .btn-secondary {
            background-color: #fff;
            color: #333;
            border: 1px solid #ddd;
        }
        .btn-group {
            display: flex;
            gap: 8px;
        }
        /* 使用技巧区 */
        .tips-section {
            margin-bottom: 40px;
        }
        .tips-header {
            text-align: center;
            margin-bottom: 24px;
        }
        .tips-header h2 {
            font-size: 20px;
            margin-bottom: 8px;
        }
        .tips-header p {
            font-size: 13px;
            color: #666;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 20px;
        }
        .tip-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 16px;
        }
        .tip-card h3 {
            font-size: 14px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .tip-card ul {
            font-size: 12px;
            color: #555;
            list-style: none;
        }
        .tip-card li {
            margin-bottom: 6px;
        }
        .view-more {
            text-align: center;
        }
        .view-more button {
            font-size: 13px;
            color: #333;
            background: #fff;
            border: 1px solid #ddd;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            margin: 10px;
        }
        /* 模型排行榜 */
        .ranking-section {
            background-color: #f0f7ff;
            padding: 30px 0;
            margin-bottom: 40px;
        }
        .ranking-header {
            text-align: center;
            margin-bottom: 24px;
        }
        .ranking-header h2 {
            font-size: 20px;
            margin-bottom: 8px;
        }
        .ranking-header p {
            font-size: 13px;
            color: #666;
        }
        .ranking-table {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
        }
        .ranking-item {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            border-bottom: 1px solid #f0f0f0;
        }
        .ranking-item:last-child {
            border-bottom: none;
        }
        .rank {
            width: 30px;
            font-size: 14px;
            font-weight: 600;
            color: #999;
        }
        .rank-1 { color: #ffb800; }
        .rank-2 { color: #c0c0c0; }
        .rank-3 { color: #cd7f32; }
        .model-info {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .model-name {
            font-size: 13px;
            font-weight: 500;
        }
        .model-provider {
            font-size: 11px;
            color: #666;
        }
        .model-tags {
            display: flex;
            gap: 4px;
            margin-left: 8px;
        }
        .tag {
            font-size: 10px;
            padding: 1px 4px;
            border-radius: 3px;
        }
        .tag-new { background: #ff4400; color: #fff; }
        .tag-hot { background: #ffb800; color: #fff; }
        .token-count {
            font-size: 12px;
            color: #666;
        }
        .ranking-footer {
            max-width: 1200px;
            margin: 12px auto 0;
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: #666;
        }
        .ranking-tip {
            max-width: 600px;
            margin: 12px auto 0;
            font-size: 12px;
            color: #666;
            text-align: center;
        }
        /* 一键部署区 */
        .deploy-section {
            margin-bottom: 40px;
        }
        .deploy-header {
            text-align: center;
            margin-bottom: 24px;
        }
        .deploy-header h2 {
            font-size: 20px;
            margin-bottom: 8px;
        }
        .deploy-header p {
            font-size: 13px;
            color: #666;
        }
        .deploy-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 20px;
        }
        .deploy-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 24px;
            text-align: center;
        }
        .deploy-card .icon {
            font-size: 24px;
            margin-bottom: 12px;
        }
        .deploy-card h3 {
            font-size: 14px;
            margin-bottom: 8px;
        }
        .deploy-card p {
            font-size: 11px;
            color: #666;
        }
        .deploy-tip {
            text-align: center;
            font-size: 12px;
            color: #666;
        }
        /* 最新动态区 */
        .news-section {
            margin-bottom: 40px;
        }
        .news-header {
            text-align: center;
            margin-bottom: 24px;
        }
        .news-header h2 {
            font-size: 20px;
            margin-bottom: 8px;
        }
        .news-header p {
            font-size: 13px;
            color: #666;
        }
        .news-list {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 10px;
        }
        .news-item {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 16px;
        }
        .news-desc {
            font-size: 12px;
            color: #666;
            margin-bottom: 8px;
        }
        .news-meta {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: #999;
        }
        .news-tag {
            background: #f0f0f0;
            padding: 2px 6px;
            border-radius: 4px;
        }
        /* 页脚 */
        footer {
            background-color: #f9f9f9;
            padding: 30px 0;
            border-top: 1px solid #eee;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }
        .footer-col h4 {
            font-size: 14px;
            margin-bottom: 12px;
            color: #333;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 6px;
        }
        .footer-col a {
            text-decoration: none;
            font-size: 12px;
            color: #666;
        }
        .footer-col a:hover {
            color: #ff6a00;
        }
        .footer-desc {
            font-size: 12px;
            color: #666;
        }
        .copyright {
            text-align: center;
            font-size: 11px;
            color: #999;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        /* 响应式适配 */
        @media (max-width: 768px) {
            .nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: #fff;
                padding: 20px;
                border-bottom: 1px solid #eee;
            }
            .nav.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .intro-content {
                grid-template-columns: 1fr;
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
            .deploy-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            
            .docs-grid {
                grid-template-columns: 1fr;
            }
        }


        /* 新闻头部 */
        .news-header {
            padding: 40px 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .news-header h1 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .news-header .sub-title {
            font-size: 16px;
            color: #666;
            margin-bottom: 16px;
        }
        .news-header .update-info {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 14px;
            color: #666;
        }
        .news-header .update-info span {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .news-count {
            max-width: 1200px;
            margin: 0 auto 20px;
            font-size: 14px;
            color: #666;
        }
        .news-item {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 20px;
            transition: box-shadow 0.2s;
        }
        .news-item:hover {
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .news-meta-top {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: #666;
            margin-bottom: 12px;
        }
        .news-source {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .news-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #222;
        }
        .news-title a{
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #222;
        }
        .news-desc {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .news-tag {
            font-size: 12px;
            background-color: #e0f0ff;
            color: #1677ff;
            padding: 2px 8px;
            border-radius: 4px;
        }
        /* 响应式适配 */
        @media (max-width: 768px) {
            .nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: #fff;
                padding: 20px;
                border-bottom: 1px solid #eee;
            }
            .nav.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .news-header h1 {
                font-size: 24px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }




        /* 主内容区 - 双栏布局 */
        .content-wrapper {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
            padding: 30px 0;
            min-height: calc(100vh - 200px);
        }
        /* 左侧侧边栏 */
        .sidebar {
            border-right: 1px solid #eee;
            padding-right: 20px;
        }
        .sidebar h3 {
            font-size: 16px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff6a00;
            color: #333;
        }
        .related-list {
            list-style: none;
        }
        .related-item {
            margin-bottom: 12px;
        }
        .related-item a {
            text-decoration: none;
            color: #555;
            font-size: 14px;
            display: block;
            padding: 8px 12px;
            border-radius: 6px;
            transition: background-color 0.2s;
        }
        .related-item a:hover, .related-item a.active {
            background-color: #fff9f0;
            color: #ff6a00;
            font-weight: 500;
        }
        /* 右侧内容区 */
        .main-content {
            padding-bottom: 40px;
        }
        .main-content h1 {
            font-size: 28px;
            margin-bottom: 10px;
            color: #222;
        }
        .main-content p {
            font-size: 14px;
            color: #555;
            margin-bottom: 10px;
            line-height: 1.7;
        }
        .breadcrumb {
            font-size: 13px;
            color: #999;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #1677ff;
            text-decoration: none;
        }
        .intro {
            font-size: 15px;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        /* 工具模块样式 */
        .tool-section {
            margin-bottom: 40px;
        }
        .tool-section h2 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #222;
            border-left: 3px solid #ff6a00;
            padding-left: 10px;
        }
        .sub-section {
            margin-bottom: 25px;
        }
        .sub-section h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #333;
        }
        .sub-section p {
            font-size: 14px;
            color: #555;
            margin-bottom: 10px;
            line-height: 1.7;
        }
        .code-block {
            background-color: #f6f8fa;
            border: 1px solid #d1d5da;
            border-radius: 6px;
            padding: 16px;
            margin: 15px 0;
            overflow-x: auto;
            font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
            font-size: 13px;
            color: #24292e;
            line-height: 1.5;
        }
        .params-table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
            font-size: 14px;
        }
        .params-table th, .params-table td {
            border: 1px solid #e1e4e8;
            padding: 10px 12px;
            text-align: left;
        }
        .params-table th {
            background-color: #f6f8fa;
            font-weight: 600;
        }
        .note {
            background-color: #fff8e1;
            border-left: 4px solid #ffc107;
            padding: 12px 16px;
            margin: 15px 0;
            font-size: 13px;
            color: #f57f17;
        }
        /* 响应式适配 */
        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .sidebar {
                border-right: none;
                border-bottom: 1px solid #eee;
                padding-right: 0;
                padding-bottom: 20px;
                margin-bottom: 20px;
            }
            .nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: #fff;
                padding: 20px;
                border-bottom: 1px solid #eee;
            }
            .nav.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .price-grid {
                grid-template-columns: 1fr;
            }
        }


        /* 文档头部 */
        .docs-header {
            text-align: center;
            padding: 40px 0 30px;
        }
        .docs-header h1 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #222;
        }
        .docs-header p {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
        }
        /* 文档主卡片 */
        .main-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 30px;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .main-card p {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }
        .btn-primary {
            background-color: #222;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        .btn-primary:hover {
            background-color: #444;
        }
        /* 文档网格布局 */
        .docs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        .doc-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 20px;
            transition: all 0.2s;
        }
        .doc-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-color: #ff6a00;
        }
        .doc-card h3 {
            font-size: 16px;
            margin-bottom: 8px;
            color: #222;
        }
        .doc-card p {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
        }
        /* 引导提示 */
        .guide-tip {
            text-align: center;
            font-size: 14px;
            color: #666;
            margin-bottom: 40px;
        }


        
        /* 部署页面头部 */
        .deploy-header {
            text-align: center;
            padding: 30px 0 20px;
        }
        .deploy-header h1 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #222;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .deploy-header p {
            font-size: 14px;
            color: #666;
        }
        /* 通用卡片样式 */
        .tutorial-content {
            display: none;
        }
        .tutorial-content.active {
            display: block;
        }
        .card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }
        .card-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            font-size: 14px;
            font-weight: 600;
        }
        .card-header .icon {
            color: #ff6a00;
        }
        .card-subtitle {
            font-size: 12px;
            color: #666;
            margin-bottom: 16px;
        }
        /* 快速选型模块 */
        .question-progress {
            font-size: 12px;
            color: #666;
            margin-bottom: 8px;
        }
        .progress-bar {
            height: 3px;
            background: #eee;
            border-radius: 3px;
            margin-bottom: 16px;
        }
        .progress-bar-fill {
            height: 100%;
            width: 25%;
            background: #ff6a00;
            border-radius: 3px;
        }
        .question-text {
            font-size: 14px;
            margin-bottom: 12px;
        }
        .option-btn {
            display: block;
            width: 100%;
            padding: 10px 16px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            background: #fff;
            text-align: left;
            font-size: 13px;
            cursor: pointer;
            margin-bottom: 8px;
            transition: all 0.2s;
        }
        .option-btn:hover {
            border-color: #ff6a00;
            background-color: #fff9f0;
        }
        /* 方案对比表格 */
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 12px;
            margin-top: 12px;
        }
        .compare-table th, .compare-table td {
            border: 1px solid #eee;
            padding: 8px 6px;
            text-align: center;
        }
        .compare-table th {
            background-color: #f6f8fa;
            font-weight: 600;
        }
        .stars {
            color: #ffb800;
        }
        /* 部署教程模块 */
        .platform-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
            border-bottom: 1px solid #eee;
            padding-bottom: 8px;
        }
        .platform-tab {
            padding: 6px 12px;
            font-size: 12px;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .platform-tab.active {
            background-color: #fff5e6;
            color: #ff6a00;
            font-weight: 500;
        }
        .tutorial-meta {
            font-size: 12px;
            color: #666;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .suitable {
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .features-list {
            font-size: 13px;
            color: #555;
            margin-bottom: 16px;
            padding-left: 20px;
        }
        .steps-list {
            font-size: 13px;
            margin-bottom: 16px;
        }
        .step-item {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .step-number {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #222;
            color: #fff;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .step-content {
            flex: 1;
        }
        .note-box {
            padding: 12px 16px;
            border-radius: 6px;
            font-size: 12px;
            margin-bottom: 16px;
        }
        .note-warning {
            background-color: #fff9e6;
            border-left: 4px solid #ffc107;
            color: #f57f17;
        }
        .note-danger {
            background-color: #ffebee;
            border-left: 4px solid #f44336;
            color: #c62828;
        }
        .btn-deploy {
            background-color: #222;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 13px;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        .btn-deploy:hover {
            background-color: #444;
        }
        /* 费用说明模块 */
        .price-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 12px;
        }
        .price-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 16px;
            font-size: 12px;
        }
        .price-card h4 {
            font-size: 13px;
            margin-bottom: 8px;
        }
        .price-pros {
            color: #2e7d32;
            margin-bottom: 4px;
        }
        .price-cons {
            color: #c62828;
        }
        .price-note {
            font-size: 11px;
            color: #666;
            margin-top: 8px;
        }
        /* 常见问题模块 */
        .faq-item {
            margin-bottom: 12px;
        }
        .faq-q {
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 4px;
        }
        .faq-a {
            font-size: 12px;
            color: #666;
            padding-left: 16px;
        }


        /* 分类标签 */
        .category-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }
        .category-tab {
            padding: 6px 12px;
            font-size: 12px;
            border-radius: 20px;
            border: 1px solid #e0e0e0;
            background: #fff;
            cursor: pointer;
            transition: all 0.2s;
        }
        .category-tab.active {
            background-color: #222;
            color: #fff;
            border-color: #222;
        }
        /* 手风琴列表 */
        .accordion-list {
            margin-bottom: 30px;
        }
        .accordion-item {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
        }
        .accordion-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            cursor: pointer;
            background: #fff;
            transition: background-color 0.2s;
        }
        .accordion-header:hover {
            background-color: #f9f9f9;
        }
        .accordion-title {
            font-size: 15px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .accordion-desc {
            font-size: 12px;
            color: #666;
            margin-top: 2px;
        }
        .accordion-icon {
            font-size: 18px;
            color: #666;
            transition: transform 0.2s;
        }
        .accordion-item.active .accordion-icon {
            transform: rotate(45deg);
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 16px;
            background-color: #fafafa;
        }
        .accordion-item.active .accordion-content {
            max-height: 500px;
            padding: 12px 16px;
        }
        .accordion-content p {
            font-size: 13px;
            color: #555;
            line-height: 1.7;
        }
        /* 底部帮助区 */
        .help-box {
            border: 1px dashed #e0e0e0;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            margin-bottom: 40px;
        }
        .help-box h4 {
            font-size: 14px;
            margin-bottom: 12px;
        }
        .help-box p {
            font-size: 12px;
            color: #666;
            margin-bottom: 16px;
        }
        .help-links {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .help-link {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            color: #666;
            text-decoration: none;
            padding: 4px 8px;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
        }
        .help-link:hover {
            color: #ff6a00;
            border-color: #ff6a00;
        }
        
        .pagination-wrap {padding: 20px 10px;margin-top: 20px;background: #fff;border-radius: 8px;}
        .pagination-wrap .paging-cls {text-align: center;}
        .pagination-wrap .paging-cls li {display: inline-block;margin: 0 5px;list-style: none;}
        .pagination-wrap .paging-cls span, .pagination-wrap .paging-cls a {display: inline-block;border: 1px solid #eef3f8;border-radius: 5px;height: 44px;line-height: 44px;width: 44px;margin: 0 3px;font-size: 14px;color: #000000;text-decoration: none;}