        /* 优化后的样式 */
        :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: 50px;
            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-form {
            display: flex;
            position: relative;
            width: 100%;
            box-shadow: var(--shadow);
            border-radius: var(--radius);
            overflow: hidden;
            z-index: 1000;
        }
        
        .search-input {
            flex: 1;
            height: 42px;
            padding: 0 20px;
            border: none;
            outline: none;
            font-size: 15px;
            background: #fff;
            border-radius: var(--radius) 0 0 var(--radius);
        }
        
        .search-input:focus {
            background: #f8fafc;
        }
        
        .search-button {
            height: 42px;
            padding: 0 24px;
            background: var(--primary);
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        
        .search-button:hover {
            background: var(--primary-dark);
        }
        
        .nav-container {
            background-color: var(--primary-light);
            border-radius: var(--radius);
            margin-top: 10px;
        }
        
        .navbar {
            display: flex;
            list-style: none;
            width: 100%;
            padding: 0;
            margin: 0;
        }
        
        .navbar li {
            padding: 0;
        }
        
        .navbar li a {
            font-weight: 500;
            font-size: 16px;
            padding: 15px 18px;
            position: relative;
            display: block;
            color: #1a68cc;
            transition: all 0.3s;
        }
        
        .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;
        }
        
        .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;
        }
        
        .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;
        }
        
        .page-body p {
            margin-bottom: 20px;
        }
        
        /* 页脚 */
        .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;
        }
        
        /* 移动端调整 */
        @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%;
            }
            
            .navbar {
                margin: 0;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .navbar li {
                padding: 0;
                flex: 1 0 auto;
                text-align: center;
            }
            
            .navbar li a {
                padding: 12px 10px;
                font-size: 14px;
            }
            
            .search-form {
                width: 100%;
            }
            
            .search-input {
                height: 42px;
            }
            
            .search-button {
                height: 42px;
                padding: 0 15px;
            }
            
            .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;
            }
        }
        
        @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;
        }