<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* æ–°é—»åˆ—è¡¨é¡µé¢æ&nbsp;·å¼ */
.list-news-container {
    padding: 30px 0 50px;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* æ–°é—»ä¸»ä½“å¸ƒå±€ */
.news-main {
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

/* å·¦ä¾§èœå• */
.news-left {
    width: 22%;
    margin-right: 3%;
    box-sizing: border-box;
}

.news-left .news-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.news-menu .menu-item {

    font-size: 16px;
    color: #666;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
}
.news-menu .menu-item a{
    display: block;padding: 10px 20px;
    width: 100%;
    height: 100%;
}
.news-menu .menu-item.active,.news-menu .menu-item:hover{
    background-color: #e60012;
    color: #fff;
}
.news-menu .menu-item.active a,.news-menu .menu-item:hover a{
    color: #fff;
}
.news-menu .menu-item.contact {
    background-color: #e60012;
    color: #fff;
    /* text-align: center; */
    padding: 10px 20px;
    margin-top: 20px;
}

.news-menu .contact-info {
    background-color: #f5f5f5;
    padding: 15px;
}

.news-menu .contact-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* å³ä¾§å†…å®¹ */
.news-right {
    width: 75%;
    box-sizing: border-box;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.news-category {
    font-size: 18px;
    font-weight: bold;
    color: #1e50ae;
    padding: 8px 0px;
}
.news-category:before{
    content: "";
    display: block; margin-right: 5px;
    float: left;
    width: 3px;
    height:28px;
    background-color: #1e50ae;
}
.news-position {
    padding-right: 10px;
    color: #acacac;
}
.news-position a{
    color: #acacac;
}
.news-position a:hover{
    color: #1e50ae;
}
/* æ–°é—»åˆ—è¡¨ */
.news-list {
    margin-bottom: 30px;
}

.news-item {
    display: flex;
    padding: 20px 0;
    margin-bottom: 10px;
    border-bottom: 1px dashed  #bebebe;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 0 -20px 10px;
    border-radius: 5px;
    border-bottom: none;
    z-index: 2;
}

.news-img {
    width: 180px;
    height: 120px;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.news-img a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%!important;
    transition: all 0.5s;
    object-fit: cover;
}

.news-item:hover .news-img img {
    transform: scale(1.05);
}

.news-content {
    flex: 1;
}

.news-content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.news-content h3 a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.news-item:hover .news-content h3 {
    color: #1e50ae;
}

.news-item:hover .news-content h3 a {
    color: #1e50ae;
}

.news-summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.news-meta {
    color: #999; line-height: 20px;
    font-size: 14px;
}
.news-meta span i{
    margin-right: 5px;
}
.news-time {
    margin-right: 20px;
    position: relative;

}

.news-views {
    position: relative;
    padding-left: 20px;
}
/*å†…å®¹è¯¦æƒ…*/
.news-detail-container {
    padding: 30px 0 50px;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}
.article-container {
    margin-bottom: 30px;
}
.article-header {
    margin-bottom: 20px;
}

.article-title {
    font-size: 24px; text-align: center;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-meta {
    color: #999;
    font-size: 12px; line-height: 24px;;
    text-align: center;
}
.article-meta i{
    font-size: 16px;  vertical-align: middle;
}
.article-meta span {
    margin-right: 15px;
}

.article-image {
    margin-bottom: 20px;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
}

.article-text p,.article-text{
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
}
.article-text img{
    display: block;
    margin: 0 auto;
    max-width: 100% !important;
    height: auto!important;
}
.article-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.article-tags .tag {
    display: inline-block;
    padding: 3px 10px;
    background-color: #f5f5f5;
    color: #666;
    margin-right: 10px;
    font-size: 12px;
    border-radius: 3px;
}

.article-share span {
    color: #666;
    margin-right: 10px;
}

.share-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    color: #666;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-left: 5px;
}

.related-news {
    margin-bottom: 30px;
}

.related-title {
    font-size: 18px;
    font-weight: bold;
    color: #1e50ae;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.related-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.related-list li a {
    flex: 1;
    margin-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-time {
    color: #999;
    font-size: 12px;
}

.article-navigation {
    display: flex;
    flex-direction: column;
}

.prev-article, .next-article {
    padding: 10px 0;
}

.prev-article span, .next-article span {
    color: #999;
}
/* æœŸåˆŠåˆ—è¡¨æ&nbsp;·å¼ */
.standard-news-list {
    margin-bottom: 30px;
}

.standard-news-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.standard-news-item:hover {
    background-color: #f9f9f9;
    padding: 25px 15px;
}

.standard-news-img {
    width: 180px;
    height: 240px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid #eee;
}

.standard-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.standard-news-img:hover img {
    transform: scale(1.05);
}

.standard-news-info {
    flex: 1;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: space-between;*/
}

.standard-news-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
}

.standard-news-info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.standard-news-info h3 a:hover {
    color: #1e50ae;
}

.standard-news-meta {
    margin-top: 20px;
    margin-bottom: 20px;
}

.standard-news-meta span {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

.standard-news-meta span:last-child {
    margin-bottom: 0;
}

.standard-news-desc {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

        .news-list .badges {
           /* width: calc((100% - 20px) / 2); */
            box-sizing: border-box;
        }

        .badges {
            display: flex;
            margin-bottom: 8px;
            padding: 8px 0px 8px 10px;
            border-radius: 8px;
            cursor: pointer;
            background:rgb(242 242 242 / 50%)
        }
        .badges:nth-child(3n){
            margin-right: 0px;
        }
        .badges:hover {
            background: rgb(230, 230, 230);
        }
.badges .avatar {
    width:300px;
    height: 100px;
    margin-right: 10px;
    margin-top: 0px;
    position: relative;
    border-radius:8px; overflow: hidden;
    background: #fff;
}
.author-avatar .author_avatar_img {
    height: 100%!important;
    width: 100%!important;
    display: block;
    /*object-fit: cover;*/
    /*border-radius: 50%;*/
    /*border: 4px solid #fff;*/
    position: relative;
}
.badges .content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.badges .content p{

}
.badges .content p b{
    margin-right: 10px;
}
@media screen and (max-width: 768px) {
    .slideTxtBox .bd ul{
        padding: 0!important
    }
    .news-list .badges{
        width: 100%;
    }
    .badges .avatar{
        width: auto;
    }
    .badges .content p{
        margin-bottom: 5px
    }
    .badges{
        display: block;
    }
    .list-news-container{
        padding-bottom: 0;
    }
    .article-footer,.news-left{
        display: none;
    }
    .news-right{
        width: 100%!important;
    }
    .news-header {
        flex-direction: column;
         align-items: baseline!important;
    }
    .news-item {
        flex-direction: row; /* ä¿æŒæ°´å¹³å¸ƒå±€ */
        padding: 15px 0;
    }
    .news-item:hover {
        padding: 15px;
    }
    .news-img {
        width: 100px!important; /* ç•¥å¾®ç¼©å°ä½†ä¿æŒæ¯”ä¾‹ */
        height: 70px!important;
        margin-right: 15px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .news-content h3 {
        font-size: 15px;
        margin-bottom: 5px;
        height: 20px;
        overflow: hidden;
    }
    .news-summary {
        font-size: 13px;
        margin-bottom: 5px;
        text-indent: 2em;
        line-height: 1.5;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .news-meta {
        font-size: 12px;
    }
    .news-views{
        padding: 0;
    }
    .standard-news-item {
        gap: 15px;
        padding: 20px 0;
    }

    .standard-news-item:hover {
        padding: 20px 10px;
    }

    .standard-news-img {
        width: 120px;
        height: 160px;
    }

    .standard-news-info h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .standard-news-meta {
        margin-bottom: 10px;
    }

    .standard-news-meta span {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .standard-news-desc {
        font-size: 12px;
        line-height: 1.6;
        -webkit-line-clamp: 3;
    }
}</pre></body></html>