<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.news-container {
    margin: 25px 0;
    font-size: 15px;
}
@media only screen and (max-width: 1440px) {
    .news-container {
        font-size: 13px;
    }
}
.main-video {
    margin-bottom: 25px;
    margin-right: 25px;
    grid-column: 1/3;
    grid-row: 1/3;
}
.main-video .main-img {
    height: 383px;
    max-width: 100%;
    max-height: 100%;
    background: #e9e9e9;
    display: flex;
    align-items: center;
}
.main-img img {
    width: 100%;
    height: 100%;
}
.news-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 280px);
    grid-template-rows: repeat(2, 311px);
    grid-gap: 25px;
}
.news-item {
    width: 281px;
    height: 260px;
}
.img {
    height: 160px;
    width: 100%;
    margin-bottom: 10px;
    background: #e9e9e9;
    display: flex;
   /* align-items: center; */
}
.img img {
    width: 100%;
}
.video-content-title {
    margin: 10px 0 15px 0;
    font-weight: bolder;
}
.text-content-title {
    margin-bottom: 5px;
    font-weight: bolder;
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    overflow: hidden; 
    word-break: break-word; 
    text-overflow: ellipsis; 
    -webkit-line-clamp: 2;
}
.text-content-desc {
    color: #727272;
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    overflow: hidden; 
    word-break: break-word; 
    text-overflow: ellipsis; 
    -webkit-line-clamp: 3;
}
.news-content {
    width: 24%;
}
/* news-pagination */
.news-pagination {
    display: flex;
    align-items: center;
    color: #3894fb;
    margin-top: 40px;
}
.news-pagination &gt; li &gt; .arrow-left {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-right: 10px solid #3894fb;
    border-bottom: 5px solid transparent;
    margin-right: 3px;
}
.news-pagination &gt; li &gt; .arrow-right {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 10px solid #3894fb;
    border-bottom: 5px solid transparent;
    margin-left: 3px;
}
.news-pagination &gt; li {
    cursor: pointer;
    border: 1px solid;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.news-pagination &gt; li:first-child, .news-pagination &gt; li:last-child {
    border: none;
}
</pre></body></html>