/* 列表页样式 */
.list-container {
    padding: 10px 0 20px;
    display: flex;
    flex-wrap: wrap;
}

/* 栏目列表样式 */
.column-list {
    width: 25%;
    margin-right: 2%;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.column-title {
    padding: 22px 20px;
    border-bottom: 1px solid #eee;
    background-color: #f9f9f9;
}

.column-title h2 {
    font-size: 22px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.column-items {
    padding: 15px;
    margin: 0;
    list-style: none;
}

.column-items li {
    margin-bottom: 5px;
}

.column-items li:last-child {
    margin-bottom: 0;
}

.column-items a {
    display: block;
    padding: 15px 20px;
    color: #666;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
}

.column-items a:hover {
    background: #f2f2f2;
    color: #2770f1;
}

.column-items li.active a {
    background: #2770f1;
    color: #fff;
}

/* 新闻列表样式 */
.news-list {
    width: 73%;
    margin-bottom: 20px;
}

.news-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-item {
    display: flex;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.news-list ul li:last-child .news-item{
    margin-bottom: 0px;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.news-date {
    display: flex;
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    padding-right: 20px;
    border-right: 1px solid #eee;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.news-date .day {
    display: block;
    font-size: 24px;
    color: #2770f1;
    font-weight: bold;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

.news-content {
    flex: 1;
    display: flex;
    padding-left: 20px;
    flex-direction: column;
    justify-content: center;
}

.news-content h3 {
    font-size: 18px;
}

.news-content h3 a {
    color: #333;
    line-height: 1.6;
    transition: color 0.3s;
}

.news-content h3 a:hover {
    color: #003ac8;
}

.news-content p {
    margin-top: 10px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.news-title{border-bottom: 1px solid #e1e1e1;height: 42px;margin-bottom: 20px;}
.news-title a{font-size: 22px;border-bottom: 2px solid #2770f1;line-height: 40px;height: 42px;display: inline-block;color: #2770f1;}
.news-title:not(:first-of-type){margin-top: 20px;}
.news-title .more{float: right;}
.news-title .more a{color: #cfcfcf;font-size: 15px; border: none;}
.news-title .more a:hover{color:#4a6ec7;}

/* 分页样式 */
.pagination {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.layui-laypage {
    margin: 0;
}

.layui-laypage a {
    margin: 0 5px;
    padding: 0 12px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #e2e2e2;
    color: #666;
    border-radius: 2px;
    transition: all 0.3s;
}

.layui-laypage a.on {
    background-color: #2770f1;
    color: #ffffff;
    border-color: #2770f1;
}

.layui-laypage a.on:hover {
    color: #ffffff;
}

.layui-laypage a:hover {
    color: #2770f1;
    border-color: #2770f1;
}

.layui-laypage-curr {
    background-color: #2770f1 !important;
    border-color: #2770f1 !important;
}

.layui-laypage-curr em {
    color: #fff !important;
}

.layui-laypage-prev,
.layui-laypage-next {
    padding: 0 15px;
}

.lanmu-list ul{display: flex;margin: -10px;flex-wrap: wrap;}
.lanmu-list ul li{width: 25%;}
.lanmu-list ul li a{margin: 10px;display: block;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;border: 1px solid #e1e1e1;text-align: center;border-radius: 5px;line-height: 38px;height: 40px;}
.lanmu-list ul li a:hover{background:#2770f1;color:#fff;}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .list-container {
        padding: 15px;
    }

    .column-title h2{
        font-size: 18px;
    }

    .column-list {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .column-items a{
        font-size: 14px;
    }

    .news-list {
        width: 100%;
        margin-bottom: 10px;
    }

    .news-item {
        flex-direction: column;
        padding: 15px;
    }

    .news-date {
        width: auto;
        padding-right: 0;
        padding-bottom: 15px;
        border-right: none;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-end;
    }

    .news-date .day {
        font-size: 20px;
        margin-right: 10px;
    }

    .news-date .month {
        margin-top: 0;
    }

    .news-content {
        padding-left: 0;
    }

    .pagination{
        margin-top: 20px;
        margin-bottom: 20px;
    }
}



/* 详情页样式 */
.detail-container {
    padding: 30px 0;
}

/* 文章内容样式 */
.article-content {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.1);
}

.article-title {
    font-size: 24px;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.4;
    text-align: center;
    font-weight: 600;
}

.article-meta {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.article-meta span {
    display: inline-block;
    margin: 0 15px;
    color: #999;
    font-size: 14px;
}
.article-meta .dozoom img{ margin-top: -2px;  }
.article-meta .dozoom a{ margin: 0 5px; font-size: 14px; }
.article-meta .dozoom .on{ opacity: 0.6; }

.article-body {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
}

.article-body * {
    max-width: 100%!important;
    font-size:18px !important;
    line-height:2 !important;
    font-family: 宋体, SimSun !important;
} 

.article-body .ld-con{display:flex;}
.article-body .ld-con span{min-width:100px;}
 
.article-body p {
    /* margin-bottom: 20px; */
}

.article-body p:last-child {
    margin-bottom: 0;
}

.article-body a {
    color: #003ac8;
    text-decoration: none;
}

.article-body table{margin:0 auto;}

.ld-box p img{width:155px;height:auto;}
.ld-box p{text-align: justify;}
.ld-box p strong{float: left;}

.article-body a:hover {
    text-decoration: underline;
}


/* 相关文档和附件样式 */
.related-documents,
.related-attachments {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px dashed #e5e5e5;
}

.related-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 8px;
    /*border-bottom: 1px solid #e5e5e5;*/
}

.related-title i {
    color: #003ac8;
    margin-right: 8px;
    font-size: 24px;
    vertical-align: middle;
}

.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dotted #eee;
    display: flex;
    justify-content: space-between;
}

.related-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-list li .file-tit{display:flex;align-items: center;}

.related-list a {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.related-list a:hover {
    color: #003ac8;
}

.related-list i {
    font-size: 18px;
    margin-right: 10px;
    color: #003ac8;
}

.related-list .doc-name {
    flex: 1;
    font-size: 15px;
}

.related-list .doc-size,
.related-list .doc-time {
    color: #999;
    font-size: 13px;
    margin-left: 10px;
}

/* 扫一扫样式 */
.detail-container .qrcode { text-align: center; margin-top: 50px;}
.detail-container .qrcode p {font-size: 16px;line-height: 20px;padding-bottom: 10px;color: #b5b5b5;text-align: center !important;}

/* 分享样式 */
.share-box{display: inline-block;margin-right:0px;margin-top: 20px;}
.share-box a{display: inline-block;width: 24px;height: 24px;line-height: 24px;background:url(2026_share.png) no-repeat;margin-left: 7px;cursor: pointer;}
.share-box a:hover{opacity: .8;}
.share-box a.gwds_weixin{background-position: 0 -38px;}
.dayin-box{margin-top: 20px;}

/* 机构信息样式 */
.wjxx {
    background: #f7f7f7;
    border: 1px solid #dddddd;
    padding: 10px 0;
    margin-bottom: 30px;
   
}
.wjxx li {
    width: 33.33%;
    float: left;
    font-size: 16px;
    padding: 7px 0;
}
.wjxx li span {
    display: block;
    margin-left: 30px;
}


/* 图片列表 */
.img-list ul{display: flex;margin: -15px;flex-wrap: wrap;/*justify-content: space-between;*/}
.img-list ul li{width: 33.33%;}
.img-list ul li .con{margin: 15px;box-shadow: 0px 0px 0px 20px rgba(14,39,71,0.16);-webkit-box-shadow: 0px 0px 20px rgba(14,39,71,0.16);-moz-box-shadow: 0px 0px 20px rgba(14,39,71,0.16);-ms-box-shadow: 0px 0px 20px rgba(14,39,71,0.16);-o-box-shadow: 0px 0px 20px rgba(14,39,71,0.16);padding: 10px 20px 20px 20px;}
.con .img-box{overflow:hidden;padding: 10px 10px 20px 10px;text-align: center;border-bottom: 1px solid #d2d2d2;margin-bottom: 20px;height: 250px;}
.con .img-box img{width:50%;height:auto;}
.con .txt .title{font-weight:bold;font-size:16px;line-height:30px;}
.con .txt .title a{display:block;}
.con .txt .content{font-size:14px;line-height:22px;padding:10px 0px;text-align:justify;}
.con .txt .info{color:#9f9e9e;font-size:16px;}

.img-list01 ul li .img-box img{width:100%;height:100%;}
.img-list01 ul li .txt .title a{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}


/* 响应式调整 */
@media screen and (max-width: 768px) {
    .breadcrumb {
        margin-bottom: 15px;
    }

    .detail-container {
        padding: 15px;
    }

    .article-content {
        padding: 20px;
    }

    .article-title {
        font-size: 20px;
    }

    .article-meta {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .article-meta span {
        margin: 5px 10px;
    }

    .article-body {
        font-size: 15px;
    }

    .related-documents,
    .related-attachments {
        margin-top: 20px;
        padding-top: 15px;
    }

    .related-title {
        font-size: 16px;
    }

    .related-list .doc-name {
        font-size: 14px;
    }

   .wjxx li {
        width: 100%;
        float: left;
        font-size: 16px;
        padding: 7px 10px;
    }
    .wjxx li span{margin-left: 0px;}

    .img-list ul li{width: 90%;margin:0 auto;}
    .con .img-box{height:auto;}
    .con .img-box img{width: 70%;}
    .lanmu-list ul li{width:50%;}

    .article-body .ld-con{display:block;}

    .img-list01 ul li{width:100%;}
    .img-list01 ul li .img-box{height: 180px;padding: 10px 0px 20px 0;}
}