<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.news-list{
    position: relative;
    z-index: 1;
    display: inline-grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
.news-list .photo_news {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 24px 24px 0;
    background: #FFFFFF;
    box-shadow: 0px 4px 37px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    box-sizing: border-box;
    overflow: hidden;
}
.news-list .photo_news a { text-decoration: none; }
.news-list .block_img_container {
    overflow: hidden;
    border-radius: 10px;
    height: 235px;
}
.news-list .block_img {
    position: relative;
    display: flex;
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
}
.news-list .photo_news:hover .block_img {
    overflow: hidden;
    transform: scale(1.2,1.2);
    transition: transform 2s;
}
.news-list .photo_text_title {
    position: relative;
    text-align: left;
    font-weight: bold;
    margin-top: 10px;
    font-size: 24px;
    line-height: 28px;
    color: #333333;
    margin-bottom: 0;
    overflow: hidden;
    text-decoration: none;
    max-height: 112px;

}
.news-list .photo_news:hover .photo_text_title {
    color: #188fff;
}
.news-list .photo_text_desc {
    text-align: left;
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 21px;
    overflow: hidden;
    height: 0;
}
.photo_news_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    background: #FFFFFF;
    z-index: 1;
    padding: 10px 0 24px;
}
.time{
    text-align: left;
    font-size: 12px;
    line-height: 14px;
    color: #A5A5A5;
}
@media only screen and ( min-width:1361px ) and ( max-width:1566px ) {
    .news-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and ( max-width:1303px ) {
    .news-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and ( min-width:751px ) {
    .photo_news {
        height: 439px;
    }
}

@media only screen and (max-width: 767px) {
    .card_container1 {
        width: 100%;
        float: left;
    }
    .card_container4{
        width: 100%;
        float: left;
        margin-top: 20px;
    }
    .card_container {
        display: block;
    }
}
@media only screen and (max-width: 750px) {
    .news-list .photo_text_title{
        max-height: unset;
        font-size: 18px;
        line-height: 21px;
    }
    .news-list{
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        grid-column-gap: 0;
        grid-row-gap: 0;
    }
    .news-list .photo_news {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .news-list .photo_news:nth-child(odd) {
        margin-right: 20px;
    }
    .news-list .photo_text_desc {
        height: auto !important;
        max-height: unset;
    }
}

@media only screen and ( max-width:629px ) {
    .news-list .photo_news {
        width: 100%;
    }
    .news-list .photo_news:nth-child(odd) {
        margin-right: 0;
    }
    .card_container4{
        grid-template-columns: repeat(1, 1fr);
    }
    ul.tabs {
        display: block;
    }

    ul.tabs li {
        width: 100%;
    }

    ul.tabs li div {
        margin: 0 auto;
    }
    ul.tabs li:first-child{
        margin-bottom: 10px;
    }
    .search_left, .search_right, .search_right2, .search_left2, .search_section, .search_button{
        width: 100%!important;
    }
    .search_section button{margin-bottom: 8px;}
    .search_left{
        margin-bottom: 10px;
    }
}
</pre></body></html>