/* 全局样式 */

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: -4px;
}

/* 头部样式 */
.header-top {
    background-color: #c00;

    min-height: 80px;
    display: flex;
    align-items: center;
}

.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}





.banner {
    width: 100%;
    overflow: hidden;
    height: auto;
}

.banner img {
    width: 100%;
    height: auto;
}

/* 主要内容样式 */
main {
    background-color: #fff;
    padding: 20px 0;
    min-height: 500px;
}

.breadcrumb {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    padding: 8px 12px;
    background-color: #f8f8f8;
    border-radius: 4px;
    text-align: left;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.breadcrumb a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.breadcrumb a::after {
    content: '>';
    margin: 0 8px;
    color: #999;
    font-size: 10px;
}

.breadcrumb a:last-child::after {
    content: '';
    margin: 0;
}

.breadcrumb a:last-child {
    color: #333;
    font-weight: bold;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
}

.sidebar {
    width: 250px;
}

.sidebar-title {
    background-color: #fff;
    color: #333;
    padding: 8px 15px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #0066cc 50%, #c00 50%);
}

.sidebar-title h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
}

.sidebar-menu {
    list-style: none;
    margin-bottom: 20px;
}

.sidebar-menu li {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

.sidebar-menu li a {
    display: block;
padding: 25px;
    color: #333;
    text-decoration: none;
    font-size: 20px;
    background: url('../img/2026/zy2.png') no-repeat right center;
    background-size: 10px 10px;
    text-align: center;
}

.sidebar-menu li a:hover {
    color: #0066cc;
    background: url('../img/2026/zy2.png') no-repeat right center;
    background-size: 10px 10px;
}

.sidebar-menu li.active a {
    color: #0066cc;
    font-weight: bold;
}


.news-list {
    list-style: disc;
    margin-left: 20px;
}

.news-list li {
    list-style: disc;
    padding: 6px 0;
    line-height: 1.5;
}

.news-list li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    display: block;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.news-list li a:hover {
    color: #0066cc;
}

.content {
    flex: 1;
    margin-left: 30px;
    min-width: 800px;
}

.article-header {
    display: flex;
    align-items: flex-start;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    padding-top: 15px;
}
.article-content ul {
    padding: 15px;
}

.article-content ul li{
    display: flex;
    align-items: flex-start;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    padding-top: 15px;
}
.article-content ul li a{
     display: flex;
}

.article-content ul li h1 {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
}

.article-content .article-image {
    margin-right: 15px;
}
.article-content .article-image img {
    width: 270px;
    height: 150px;
}
.article-content .article-info {
    flex: 1;
}
.article-content .article-info .article-meta {
    font-size: 15px;
    color: #999;
}


.article-image {
    margin-right: 15px;
}

.article-image img {
    width: 270px;
    height: auto;
}

.article-info {
    flex: 1;
}

.article-header h1 {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
}

.article-meta {
    font-size: 15px;
    color: #999;
}

.article-content {

    font-size: 14px;
    line-height: 1.8;
}

.paginationpage .pagination {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
}

.pagination li {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    background-color: #ececec;
    margin-bottom: 5px;
}

.pagination li a {
    color: #333;
    text-decoration: none;

}

.pagination li a:hover {
    color: #0066cc;
}

.pagination li.current {
    background-color: #c00;
    color: #fff;
    border-color: #c00;
}

/* 页脚样式 */
footer {
    background-color: #c00;
    color: #fff;
    padding: 30px 0;
    margin-top: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 80px;
}

.footer-info {
    flex: 1;
    margin-left: 50px;
    font-size: 12px;
    line-height: 1.8;
}

.footer-qrcode {
    display: flex;
    gap: 30px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 5px;
}

.qrcode-item p {
    font-size: 12px;
}

/* 清除浮动 */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .container {
        width: 100%;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .content {
        margin-left: 0;
        min-width: 100%;
    }
}


/* 响应式调整 */
@media (max-width: 768px) {
    .header-top {
        padding: 10px;
    }
    
    .header-top .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .container {
        padding: 0 10px;
    }

    .container .content-wrapper {
        /* //倒序显示 */
        flex-direction: column-reverse;
        align-items: flex-end;
    }

    .container .content {
        width: 100%;
    }

    .article-content ul li a{
        flex-direction: column;
    }
    
    .article-content ul li{
        flex-direction: column;
    }

    .article-content ul li h1 {
        font-size: 16px;
    }
    .article-content .article-image img {
        width: 100%;
        height: auto;
    }

    .article-content .article-image {
        margin-right: 0;
    }
    
    .nav {
        width: 100%;
        margin-top: 10px;
        background-color: #93080c;
    }
    
    .nav ul {
        width: 100%;
        height: auto;
        justify-content: space-between;
    }
    
    .nav ul li {
        margin-left: 0;
        margin-right: 10px;
        margin-bottom: 0px;
    }
    
    .nav ul li:last-child {
        margin-right: 0;
    }
    
    .nav ul li a {
        font-size: 12px;
        padding: 2px 6px !important;
    }
    .footer .certer{
        width: 100% !important;
    }
    .footer .certer>img{
        display: none;
    }
    .footer .copyright{
        margin: 0px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav ul li {
        margin-right: 0;
        margin-bottom: 5px;
        margin-bottom: 0px;
    }
    
    .nav ul li a {
        font-size: 14px;
    }
}