        @import url('https://fonts.googleapis.cn/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');
        /* 全局重置与基础样式 */
        * {
            font-family: 'Noto Sans SC', sans-serif !important;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 全局滚动条美化 */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

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

        ::-webkit-scrollbar-thumb:hover {
            background: #0ea5e9;
        }

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

        body {
            background: #0f172a;
            background-image:
                radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.05) 0%, transparent 30%),
                radial-gradient(circle at 85% 80%, rgba(129, 140, 248, 0.05) 0%, transparent 30%),
                radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.03) 0%, transparent 50%);
            color: #e0e0e0;
            min-height: 100vh;
            line-height: 1.6;
        }

        /* 布局容器 */
        .container {
            display: flex;
            min-height: 100vh;
        }

        /* ==================== PC端左侧导航栏 ==================== */
        .sidebar {
            width: 280px;
            background: #1e293b;
            border-right: 1px solid #2d3748;
            padding: 32px 24px;
            position: fixed;
            left: 0;
            top: 0;
            height: 100vh;
            overflow-y: auto;
            z-index: 99;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            border-top-right-radius: 16px;
            border-bottom-right-radius: 16px;
        }

        .sidebar-title {
            font-size: 22px;
            font-weight: 700;
            color: #38bdf8;
            margin-bottom: 28px;
            padding-bottom: 18px;
            border-bottom: 1px solid #2d3748;
        }

        .nav-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .nav-item a {
            display: block;
            padding: 14px 18px;
            background: #27273a;
            border: 1px solid #363652;
            border-radius: 12px;
            color: #e0e0e0;
            text-decoration: none;
            font-size: 16px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }

        .nav-item a.active {
            background: #38bdf8;
            color: #0f172a;
            border-color: #38bdf8;
            font-weight: 500;
            box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
        }

        .nav-item a:hover {
            background: #38bdf8;
            color: #0f172a;
            border-color: #38bdf8;
            box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
            transform: translateY(-2px);
        }

        .back-home {
            display: block;
            margin-top: 24px;
            padding: 14px 18px;
            background: linear-gradient(135deg, #456eb1, #cc3464);
            border: 1px solid #2d3748;
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            text-align: center;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }

        .back-home i {
            color: #36a1cf;
            margin-right: 10px;
        }

        .back-home:hover {
            background: linear-gradient(135deg, #b23f3f, #2d4367);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }


        /* ==================== 主内容区域 ==================== */
        .main-content {
            flex: 1;
            margin-left: 280px;
            padding: 24px;
            max-width: 1200px;
            margin-right: auto;
            margin-left: 280px;
        }

        .main-content.dierjian {
            max-width: 1200px;
        }

        .main-title {
            color: #ffffff;
            font-size: 22px;
            margin-bottom: 36px;
            font-weight: 600;
            background: linear-gradient(135deg, #1e293b, #0f172a);
            padding: 12px 24px;
            border-radius: 16px;
            border: 1px solid #2d3748;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        .point-title {
            color: #e0e0e0;
            font-size: 26px;
            margin: 0 0 24px;
            font-weight: 700;
            border-left: 4px solid #38bdf8;
            padding-left: 20px;
            background: #1e293b;
            padding: 14px 24px;
            border-radius: 16px;
            border: 1px solid #2d3748;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        /* 点位内容区域 - 默认隐藏 */
        .point-section {
            display: none;
        }

        /* 默认显示第一个点位 */
        .point-section:first-child {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* 确保point-section内的元素居中 */
        .point-section > * {
            width: 100%;
            max-width: 700px;
        }

        .point-section .point-title {
            text-align: center;
        }

        .point-section .arrow-grid {
            justify-content: center;
        }

        .point-section .switch-btn-group {
            justify-content: center;
        }

        /* 确保point-section内的图片居中 */
        .point-section img {
            display: block;
            margin: 0 auto;
        }

        .point-section .point-img {
            margin-left: auto;
            margin-right: auto;
        }

        p {
            font-size: 16px;
            color: #e0e0e0;
            margin-bottom: 18px;
            background-color: #1e293b;
            padding: 18px 24px;
            border-radius: 12px;
            border: 1px solid #2d3748;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .step-group {
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 700px;
        }

        .step-item {
            background: linear-gradient(135deg, #27273a, #1e293b);
            border-radius: 16px;
            padding: 16px;
            border: 1px solid #363652;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .point-img {
            width: 90%;
            height: auto;
            max-width: 500px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            border: 1px solid #2d3748;
            margin-bottom: 16px;
            cursor: pointer;
        }

        /* 电击箭两栏布局 */
        .arrow-grid {
            display: flex;
            gap: 24px;
            margin: 24px 0;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .arrow-column {
            background: linear-gradient(135deg, #27273a, #1e293b);
            border-radius: 16px;
            padding: 20px;
            border: 1px solid #363652;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            min-width: 300px;
            max-width: calc(50% - 12px);
        }

        .arrow-column h3 {
            font-size: 18px;
            font-weight: 600;
            color: #38bdf8;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 1px solid #363652;
            width: 100%;
            text-align: center;
        }

        .arrow-column .step-item {
            margin-bottom: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .arrow-column .step-item:last-child {
            margin-bottom: 0;
        }

        .arrow-column .step-item p {
            text-align: center;
            width: 100%;
            margin-bottom: 12px;
        }

        .arrow-column .step-item img {
            display: block;
            margin: 0 auto;
        }

        /* 上下组切换按钮样式 */
        .switch-btn-group {
            display: flex;
            justify-content: space-between;
            margin-top: 36px;
            gap: 24px;
        }

        .switch-btn {
            flex: 1;
            padding: 16px 24px;
            background: #27273a;
            border: 1px solid #363652;
            border-radius: 12px;
            color: #e0e0e0;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }

        .switch-btn:hover:not(:disabled) {
            background: #38bdf8;
            color: #0f172a;
            border-color: #38bdf8;
            box-shadow: 0 8px 16px rgba(56, 189, 248, 0.4);
            transform: translateY(-2px);
        }

        .switch-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        /* ==================== 移动端响应式适配 ==================== */
        @media (max-width: 992px) {
            .container {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                height: auto;
                position: relative;
                border-right: none;
                border-bottom: 1px solid #2d3748;
                padding: 24px;
                border-radius: 0;
            }

            .nav-list {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;
            }

            .nav-item {
                flex: 1;
                min-width: 150px;
            }

            .nav-item a {
                text-align: center;
                padding: 12px;
                font-size: 14px;
            }

            .back-home {
                margin-top: 20px;
            }

            .main-content {
                margin-left: 0;
                padding: 24px;
            }
        }

        @media (max-width: 576px) {
            .nav-item {
                min-width: 130px;
            }

            .main-title {
                font-size: 18px;
                padding: 10px 16px;
            }

            .point-title {
                font-size: 22px;
                padding: 12px 18px;
            }

            p {
                font-size: 14px;
                padding: 14px 18px;
            }

            .step-item {
                padding: 20px;
            }

            .switch-btn-group {
                flex-direction: column;
                gap: 12px;
            }

            .switch-btn {
                padding: 14px 20px;
            }
        }