/* åˆ—è¡¨é¡µæ ·å¼ */
.list-container {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
}

/* é¢åŒ…å±‘å¯¼èˆªæ ·å¼ */
.breadcrumb {
    width: 100%;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb .layui-breadcrumb {
    visibility: visible;
}

.breadcrumb .layui-breadcrumb a {
    color: #666;
    font-size: 16px;
}

.breadcrumb .layui-breadcrumb a:hover {
    color: #5daf62;
}

.breadcrumb .layui-breadcrumb cite {
    color: #333;
    font-size: 16px;
}

/* æ ç›®åˆ—è¡¨æ ·å¼ */
.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: #5daf62;
}

.column-items li.active a {
    background: #5daf62;
    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: #5daf62;
    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: #5daf62;
}

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

.news-list4 ul li{padding-left: 10px;background: url(index_list_icon.png)no-repeat left center;overflow: hidden;line-height: 40px;}
.news-list4 ul li span.list3-time{width: 100px;float: right;display: block;color: #999;font-size: 14px;text-align: right;}
.news-list4 ul li p.list3-tit{width: calc(100% - 100px);float: left;display: block;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;font-size: 18px;}
.news-list4 ul li p.list3-tit:hover{color: #15b797;}
.news-list4 ul li.line{height: 0;line-height: normal;margin: 10px auto;border-bottom: 1px solid #f2f0f1;background: none;}
.news-list4 ul li.line:last-child{display:none;}

/* åˆ†é¡µæ ·å¼ */
.pagination {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.layui-laypage {
    margin: 0;
}

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

.layui-laypage a.on {
    background-color: #5daf62;
    color: #ffffff;
    border-color: #5daf62;
}

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

.layui-laypage a:hover {
    color: #5daf62;
    border-color: #5daf62;
}

.layui-laypage-curr {
    background-color: #5daf62 !important;
    border-color: #5daf62 !important;
}

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

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

/* å“åº”å¼è°ƒæ•´ */
@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;
    }


    .layui-laypage a {
        margin: 0 3px;
        padding: 0 6px;
    }
}



/* è¯¦æƒ…é¡µæ ·å¼ */
.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-body {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
}

.article-body * {
    max-width: 100%!important;
}

.article-body p {
    margin-bottom: 20px;
}

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

.article-body a {
    color: #5daf62;
    text-decoration: none;
}

.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: #5daf62;
    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;
}

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

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

.related-list a:hover {
    color: #5daf62;
}

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

.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;
}

/* å“åº”å¼è°ƒæ•´ */
@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;
    }
}