<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
.main .banner-wrap {
    height: 464px;
    width: 100%;
    background-image: url("../img/about/news-banner.png");
    background-position: center;
    background-size: cover;
}
.main .title {
    font-size: 30px;
    text-align: center;
    margin-top: 50px;
}
.main .shares {
    width: 1366px;
    margin: 60px auto 100px;
    display: flex;
    flex-wrap: nowrap;
}
.main .shares .share-item {
    width: 424px;
    height: 240px;
    position: relative;
    margin: 0 10px;
}
.main .shares .share-item img {
    width: 100%;
    height: 100%;
}
.main .shares .share-item .share-card {
    width: 80%;
    height: 160px;
    background: #F4F6FA;
    padding: 0 15px;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    color: #3d3d3d;
}
.main .shares .share-item .share-card:hover {
    background-image: url("../img/service/service-share-bg.png");
    background-size: cover;
    background-position: center;
    color: #fff;
}
.main .shares .share-item .share-card:hover .share-content {
    color: #fff;
}
.main .shares .share-item .share-card .share-time {
    font-size: 12px;
    margin-top: 15px;
}
.main .shares .share-item .share-card .share-time .mdi-arrow-right {
    float: right;
}
.main .shares .share-item .share-card .share-title {
    font-size: 22px;
    margin-top: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.main .shares .share-item .share-card .share-content {
    font-size: 16px;
    color: #999;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制显示的行数 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.main .news {
    width: 1200px;
    margin: 180px auto 100px;
}
.main .news .news-item {
    display: block;
    height: 180px;
    margin-top: 20px;
    padding: 20px 20px 20px 300px;
    position: relative;
    border-bottom: 1px solid #D8D8D8;
    color: #3d3d3d;
    text-decoration: none;
}
.main .news .news-item img {
    width: 265px;
    height: 160px;
    position: absolute;
    top: 20px;
    left: 0;
}
.main .news .news-item .news-title {
    font-size: 24px;
    color: #3d3d3d;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.main .news .news-item .news-content {
    font-size: 18px;
    line-height: 2em;
    color: #999;
    margin-top: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制显示的行数 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.main .news .news-item .news-time {
    font-size: 14px;
    margin-top: 20px;
    text-align: right;
}
.main .news .news-page {
    text-align: center;
    margin-top: 60px;
    transform: scale(1.2);
}
.main .news .news-page .active {
    background: #E53834 !important;
}</pre></body></html>