/* 优化后的样式 */
        :root {
            --primary: #2c7de6;
            --primary-light: #d4e6ff;
            --primary-dark: #0d4a9c;
            --nav-hover: #0d4a9c;
            --text-color: #333;
            --text-light: #666;
            --border-color: #e4e7ed;
            --bg-gray: #f5f7fa;
            --success: #52c41a;
            --warning: #faad14;
            --danger: #f5222d;
            --shadow: 0 4px 12px rgba(0,0,0,0.06);
            --radius: 8px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            color: var(--text-color);
            background-color: #fff;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: var(--text-color);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--primary);
            text-decoration: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 顶部导航栏 */
        .topbar-bg {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .topbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            color: #666;
            font-size: 13px;
        }
        
        /* 主导航 */
        .header {
            background-color: #fff;
        }
        
        .header-container {
            display: flex;
            flex-direction: column;
            padding: 15px 0 0;
        }
        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .logo {
            height: 70px;
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 100%;
            width: auto;
        }
        
        .nav-search {
            flex: 1;
            max-width: 500px;
            margin-left: 20px;
            position: relative;
            z-index: 1000;
        }
        
        /* 新增搜索框样式 */
        .search-area {
            max-width: 480px;
            width: 100%;
        }
        
        .search-box {
            width: 100%;
        }
        
        .search-form {
            display: flex;
            position: relative;
            width: 100%;
        }
        
        .search-select {
            position: relative;
            background: var(--primary-light);
            border-radius: 4px 0 0 4px;
            cursor: pointer;
            padding: 0 15px;
            height: 48px;
            display: flex;
            align-items: center;
            font-size: 14px;
            min-width: 100px;
            transition: all 0.3s;
            justify-content: center;
        }
        
        .search-select:hover {
            background: #d4e5ff;
        }
        
        .search-select::after {
            content: "▼";
            font-size: 10px;
            margin-left: 8px;
        }
        
        .search-select-options {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #fff;
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
            border-radius: 4px;
            display: none;
            z-index: 10;
        }
        
        .search-select-options a {
            display: block;
            padding: 10px 15px;
            font-size: 14px;
            text-align: center;
        }
        
        .search-select-options a:hover {
            background: var(--primary-light);
        }
        
        .search-input {
            flex: 1;
            height: 48px;
            padding: 0 15px;
            border: 2px solid var(--border-color);
            border-left: none;
            border-right: none;
            outline: none;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .search-input:focus {
            border-color: var(--primary);
        }
        
        .search-button {
            height: 48px;
            padding: 0 24px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: background 0.3s;
        }
        
        .search-button:hover {
            background: #1a68cc;
        }
        
        .nav-container {
            background-color: var(--primary-light);
            border-radius: 6px;
            margin-top: 10px;
            padding: 0 8px;
        }
        
        .navbar {
            display: flex;
            list-style: none;
            width: 100%;
            padding: 0;
            margin: 0;
        }
        
        .navbar li {
            padding: 0;
            position: relative;
        }
        
        .navbar li a {
            font-weight: 500;
            font-size: 16px;
            padding: 15px 12px;
            position: relative;
            display: block;
            color: #1a68cc;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .navbar li a .arrow-icon {
            font-size: 12px;
            margin-left: 4px;
            transition: transform 0.3s;
        }
        
        .navbar li:hover a .arrow-icon {
            transform: translateY(2px);
        }
        
        .navbar li a:hover {
            color: var(--nav-hover);
            background: rgba(255,255,255,0.2);
        }
        
        .navbar li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: var(--nav-hover);
            transition: width 0.3s ease;
            width: 0;
        }
        
        .navbar li a:hover:after {
            width: 100%;
        }
        
        /* 网站统计区 */
        .stats-bar {
            background-color: var(--primary-light);
            padding: 8px 0;
            margin: 15px 0;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .stats-info {
            font-size: 14px;
            color: var(--text-light);
        }
        
        .stats-info strong {
            color: var(--primary);
            font-weight: bold;
            padding: 0 3px;
        }
        
        .quick-links {
            font-size: 14px;
        }
        
        .quick-links a {
            margin-left: 10px;
            color: var(--primary);
            font-weight: 500;
            position: relative;
        }
        
        .quick-links a:hover:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--primary);
        }
        
        /* 版块通用样式 */
        .section {
            margin: 30px 0;
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 25px;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .section-title {
            font-size: 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            color: var(--text-color);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -16px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }
        
        /* 自定义页面样式 */
        .page-container {
            display: grid;
            gap: 30px;
            grid-template-columns: 1fr 3fr;
            margin: 30px 0;
        }
        
        @media (max-width: 991px) {
            .page-container {
                grid-template-columns: 1fr;
            }
        }
        
        .sidebar {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 25px;
        }
        
        .sidebar-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .pagenav {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .pagenav li {
            margin-bottom: 10px;
        }
        
        .pagenav li a {
            display: block;
            padding: 12px 15px;
            background: var(--bg-gray);
            border-radius: var(--radius);
            transition: all 0.3s;
            font-size: 15px;
            font-weight: 500;
        }
        
        .pagenav li a:hover {
            background: var(--primary);
            color: #fff;
            transform: translateX(5px);
        }
        
        .pagenav li.active a {
            background: var(--primary);
            color: #fff;
        }
        
        .page-content {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 30px;
            overflow: hidden; /* 防止内容溢出 */
        }
        
        .page-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }
        
        .page-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }
        
        .page-divider {
            height: 1px;
            background: var(--border-color);
            margin: 25px 0;
        }
        
        /* 修复文本和图片溢出问题 */
        .page-body {
            font-size: 16px;
            line-height: 1.8;
            word-wrap: break-word; /* 确保长单词和URL换行 */
            overflow-wrap: break-word; /* 现代浏览器支持 */
            max-width: 100%; /* 防止内容溢出容器 */
        }
        
        .page-body p {
            margin-bottom: 20px;
            max-width: 100%; /* 防止段落溢出 */
        }
        
        /* 确保图片自适应容器宽度 */
        .page-body img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 15px 0;
        }
        
        /* 表格样式修复 */
        .page-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            max-width: 100%;
            overflow-x: auto;
            display: block;
        }
        
        .page-body table th,
        .page-body table td {
            padding: 10px 15px;
            border: 1px solid var(--border-color);
            text-align: left;
        }
        
        .page-body table th {
            background-color: var(--bg-gray);
            font-weight: 600;
        }
        
        /* 页脚 */
        .footer {
            margin-top: 40px;
            padding: 50px 0 30px;
            background: #fff;
            text-align: center;
            border-top: 1px solid var(--border-color);
            color: var(--text-light);
        }
        
        .footer-menu {
            margin-bottom: 25px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .footer-menu a {
            margin: 0 15px 10px;
            font-size: 14px;
            color: var(--text-light);
            transition: all 0.3s;
        }
        
        .footer-menu a:hover {
            color: var(--primary);
        }
        
        .footer-copyright {
           font-size: 13px;
           margin-top: 15px;
           line-height: 1.6;
        }

        .footer-copyright a {
           margin: 0 15px 10px;
           font-size: 13px;
           color: var(--text-light);
           transition: all 0.3s;
        }

        .footer-copyright a:hover {
           color: var(--primary);
        }
        
        /* 移动端调整 */
        @media (max-width: 991px) {
            .topbar {
                display: none;
            }
            
            .header-container {
                padding: 10px 0 0;
            }
            
            .header-top {
                flex-direction: column;
                align-items: stretch;
                margin-bottom: 10px;
            }
            
            .logo {
                margin-bottom: 15px;
                justify-content: center;
            }
            
            .nav-search {
                margin: 0 0 15px;
                max-width: 100%;
            }
            
            .nav-container {
                margin-top: 10px;
                padding: 0 5px !important;
            }
            
            .navbar {
                flex-wrap: wrap;
                padding: 0;
            }
            
            .navbar li {
                padding: 0;
                flex: 1 0 auto;
                text-align: center;
            }
            
            .navbar li a {
                padding: 10px 5px !important;
                font-size: 14px;
                justify-content: center;
            }
            
            .search-form {
                width: 100%;
            }
            
            .search-select {
                min-width: 80px;
                padding: 0 5px;
                font-size: 13px;
                height: 40px;
                flex-shrink: 0;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .search-select::after {
                font-size: 8px;
                margin-left: 4px;
            }
            
            .search-input {
                height: 40px;
                font-size: 14px;
                border-left: 2px solid var(--border-color);
                border-right: 2px solid var(--border-color);
            }
            
            .search-button {
                height: 40px;
                padding: 0 15px;
                font-size: 14px;
            }
            
            .search-select-options {
                width: 80px;
                left: 0;
            }
            
            .search-select-options a {
                text-align: center;
                padding: 10px 5px;
                font-size: 13px;
            }
            
            .stats-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .quick-links {
                margin-top: 10px;
                display: flex;
                flex-wrap: wrap;
            }
            
            .quick-links a {
                margin: 5px 10px 5px 0;
            }
            
            /* 移动端隐藏网站统计 */
            .stats-bar {
                display: none !important;
            }
            
            /* 移动端表格优化 */
            .page-body table {
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 20px;
            }
            
            .sidebar {
                padding: 20px;
            }
            
            .page-content {
                padding: 20px;
            }
            
            .page-title {
                font-size: 24px;
            }
        }
        
        /* SVG图标 */
        .icon {
            width: 18px;
            height: 18px;
            fill: currentColor;
            margin-right: 8px;
        }