        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        /* 头部样式 */
        .header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .logo {
            display: flex;
            align-items: center;
        }
        .logo img {
            height: 63px;
        }
        .search-box {
            flex: 1;
            max-width: 500px;
            margin: 0 20px;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }
        .search-box button {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            padding: 0 15px;
            background-color: #2a7dc9;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        .user-area {
            display: flex;
            align-items: center;
        }
        .user-area a {
            margin-left: 15px;
            color: #666;
            text-decoration: none;
        }
        /* 导航条 */
        .nav {
            background-color: #2a7dc9;
        }
        .nav-list {
            display: flex;
            list-style: none;
        }
        .nav-item {
            position: relative;
        }
        .nav-item > a {
            display: block;
            padding: 12px 20px;
            color: white;
            text-decoration: none;
            font-size: 16px;
        }
        .nav-item:hover {
            background-color: #1a6cb9;
        }
        .sub-nav {
            position: absolute;
            top: 100%;
            left: 0;
            width: 200px;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: none;
            z-index: 100;
        }
        .nav-item:hover .sub-nav {
            display: block;
        }
        .sub-nav a {
            display: block;
            padding: 10px 15px;
            color: #666;
            text-decoration: none;
            border-bottom: 1px solid #eee;
        }
        .sub-nav a:hover {
            background-color: #f5f5f5;
            color: #2a7dc9;
        }
		/* 导航条优化 */
.nav-item {
    position: relative;
    z-index: 100;
}

.sub-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 600px; /* 加宽下拉框 */
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    padding: 15px;
    border-radius: 0 0 4px 4px;
}

.sub-nav-columns {
    display: flex;
    flex-wrap: wrap;
}

.sub-nav-column {
    flex: 1;
    min-width: 150px;
    padding: 0 10px;
}

.sub-nav-column-title {
    font-weight: bold;
    color: #2a7dc9;
    padding: 5px 0;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.sub-nav-column a {
    display: block;
    padding: 8px 0;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.sub-nav-column a:hover {
    color: #2a7dc9;
    padding-left: 5px;
}

        /* 面包屑 */
        .breadcrumb {
            padding: 15px 0;
            font-size: 14px;
            color: #999;
        }
        .breadcrumb a {
            color: #666;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #2a7dc9;
        }
        /* 主要内容 */
        .main {
            display: flex;
            margin: 20px 0;
        }
        .content {
            flex: 1;
            background-color: #fff;
            padding: 20px;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .sidebar {
            width: 280px;
            margin-left: 20px;
        }
        .sidebar-box {
            background-color: #fff;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .sidebar-title {
            font-size: 18px;
            padding-bottom: 10px;
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            color: #2a7dc9;
        }
        .sidebar-list {
            list-style: none;
        }
        .sidebar-list li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #eee;
        }
        .sidebar-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .sidebar-list a {
            color: #666;
            text-decoration: none;
            display: block;
        }
        .sidebar-list a:hover {
            color: #2a7dc9;
        }
        /* 文档列表 */
        .doc-list {
            list-style: none;
        }
        .doc-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        .doc-title {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .doc-title a {
            color: #333;
            text-decoration: none;
        }
        .doc-title a:hover {
            color: #2a7dc9;
        }
        .doc-meta {
            display: flex;
            flex-wrap: wrap;
            font-size: 12px;
            color: #999;
        }
        .meta-item {
            margin-right: 20px;
            margin-bottom: 5px;
        }
        .meta-label {
            color: #666;
            margin-right: 5px;
        }
        .stars {
            color: #ffb800;
        }
        /* 页脚 */
        .footer {
            background-color: #333;
            color: #999;
            padding: 30px 0;
            font-size: 14px;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            margin: 0 15px;
        }
        .footer-links a:hover {
            color: #fff;
        }
        .copyright {
            text-align: center;
        }
        /* 分页 */
        .pagination {
            margin-top: 30px;
            text-align: center;
        }
        .pagination a, .pagination span {
            display: inline-block;
            padding: 5px 12px;
            margin: 0 3px;
            border: 1px solid #ddd;
            background-color: #fff;
        }
        .pagination a:hover {
            background-color: #f5f5f5;
        }
        .pagination .current {
            background-color: #2a7dc9;
            color: white;
            border-color: #2a7dc9;
        }
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
            }
            .logo {
                margin-bottom: 15px;
            }
            .search-box {
                width: 100%;
                margin: 0 0 15px 0;
            }
            .nav-list {
                flex-wrap: wrap;
            }
            .nav-item {
                width: 50%;
                text-align: center;
            }
            .sub-nav {
                width: 100%;
            }
            .main {
                flex-direction: column;
            }
            .sidebar {
                width: 100%;
                margin-left: 0;
                margin-top: 20px;
            }
            .doc-title {
                font-size: 16px;
            }
            .meta-item {
                width: 50%;
                margin-right: 0;
            }
        }

/* 基础样式 */
:root {
    --primary-color: #009688;
    --secondary-color: #ff5722;
    --text-color: #333;
    --light-text: #777;
    --bg-color: #f8f8f8;
    --border-color: #e7e7e7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 顶栏样式 */
.topbar {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
    width: 100%;
    position: relative;
    z-index: 1000;
}

.topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.topbar-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.topbar-left {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.logo-link {
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    margin-right: 15px;
    font-size: 16px;
}

.slogan {
    color: var(--light-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-right {
    display: flex;
    align-items: center;
}

.topbar-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.menu-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0 8px;
    transition: color 0.3s;
    white-space: nowrap;
}

.menu-link:hover {
    color: var(--primary-color);
}

.sign-link {
    color: #f44336 !important;
    font-weight: 500;
}

.menu-divider {
    color: #ccc;
    padding: 0 2px;
}

.site-map {
    color: var(--primary-color);
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .topbar-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .topbar-left {
        margin-bottom: 8px;
        width: 100%;
    }
    
    .slogan {
        display: none;
    }
    
    .topbar-menu {
        width: 100%;
        justify-content: space-between;
    }
    
    .menu-divider {
        display: none;
    }
    
    .menu-link {
        padding: 5px 0;
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .topbar-menu {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .menu-link {
        padding: 3px 0;
        text-align: left;
        width: 100%;
    }
}