/* 顶栏样式 */
.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%;
    }
}
	   /* 头部样式 */
        .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: 65px;
			width:160px;
        }
        .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;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .sub-nav {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0;
    }
    
    .sub-nav-columns {
        flex-direction: column;
    }
    
    .sub-nav-column {
        padding: 0;
    }
    
    .sub-nav-column-title {
        background-color: #f5f5f5;
        padding-left: 15px;
    }
    
    .sub-nav-column a {
        padding-left: 25px;
    }
}



     /* 基础样式 */
        * {
            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;
        }
        a {
            text-decoration: none;
            color: #333;
        }
        a:hover {
            color: #2a7dc9;
        }
        
       
        
        /* 面包屑 */
        .breadcrumb {
            padding: 15px 0;
            font-size: 14px;
            color: #999;
        }
        .breadcrumb a {
            color: #666;
        }
        
        /* 主要内容区 */
        .main-content {
            display: flex;
            margin: 20px 0;
        }
        .content-area {
            flex: 1;
            margin-right: 20px;
        }
        
        /* 栏目区块 */
        .channel-section {
            background-color: #fff;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            margin-bottom: 25px;
        }
        .section-header {
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .section-title {
            font-size: 20px;
            color: #2a7dc9;
        }
        .section-more {
            color: #999;
            font-size: 14px;
        }
        
        /* 文档列表 */
        .doc-list {
            padding: 15px;
        }
        .doc-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            display: flex;
        }
        .doc-item:last-child {
            border-bottom: none;
        }
        .doc-icon {
            width: 60px;
            height: 60px;
            margin-right: 15px;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2a7dc9;
            font-size: 24px;
            border-radius: 4px;
        }
        .doc-content {
            flex: 1;
        }
        .doc-name {
            font-size: 16px;
            margin-bottom: 8px;
        }
        .doc-meta {
            display: flex;
            flex-wrap: wrap;
            font-size: 12px;
            color: #999;
            margin-bottom: 8px;
        }
        .doc-meta span {
            margin-right: 15px;
        }
        .doc-desc {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }
        .doc-action {
            width: 120px;
            text-align: right;
        }
        .download-btn {
            display: inline-block;
            padding: 8px 15px;
            background-color: #2a7dc9;
            color: white;
            border-radius: 4px;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        .download-btn:hover {
            background-color: #1a6cb9;
        }
        
        /* 侧边栏 */
        .sidebar {
            width: 290px;
        }
        .sidebar-widget {
            background-color: #fff;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .widget-title {
            font-size: 16px;
            padding-bottom: 10px;
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            color: #2a7dc9;
        }
        .widget-list {
            list-style: none;
        }
        .widget-list li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #eee;
        }
        .widget-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .widget-list a {
            color: #666;
            display: block;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
        }
        .tag {
            padding: 4px 10px;
            background-color: #f0f7ff;
            color: #2a7dc9;
            border-radius: 12px;
            font-size: 12px;
            margin-right: 1px;
            margin-bottom: 8px;
        }
        .tag:hover {
            background-color: #d9ebff;
        }
        
        /* 页脚 */
        .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;
            margin: 0 15px;
        }
        .copyright {
            text-align: center;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
            }
            .content-area {
                margin-right: 0;
                margin-bottom: 20px;
            }
            .sidebar {
                width: 100%;
            }
            .header-top {
                flex-direction: column;
            }
            .logo {
                margin-bottom: 15px;
            }
            .search-box {
                width: 100%;
                margin: 0 0 15px 0;
            }
        }