.section-module {
    margin: 40px 0 60px;
}

.news-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.news-container {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.news-container .left {
    flex: 1;
}

.news-container .left .news-lists>*+* {
    margin-top: 20px;
}

.news-container .left .tag-and-news-list {
    display: flex;
    gap: 20px;
}

.news-container .left .tag-catalog {
    width: 164px;
    background: #FFFFFF;
    border: 1px solid #E3EAF3;
    padding: 0 20px 20px;
}

.news-container .tag-catalog .header {
    height: 60px;
    line-height: 60px;
    border-bottom: 1px solid #E3EAF3;

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.news-container .tag-catalog .header>span {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}

.news-container .tag-catalog .header>span>img {
    height: 24px;
    width: auto;
    margin-right: 8px;
}

.news-container .tag-catalog>ul {
    margin-top: 20px;
}

.news-container .tag-catalog>ul>li+li {
    margin-top: 10px;
}

.news-container .tag-catalog>ul>li>a {
    font-weight: 400;
    font-size: 14px;
    color: #333333;
}

.news-container .tag-catalog>ul>li:hover>a,
.news-container .tag-catalog>ul>li.active>a {
    font-weight: 500;
    color: #186CE7;
    text-decoration: underline !important;
}

.news-container .left .tag-and-news-list>.news-list-card {
    width: 635px;
    padding: 20px;
    display: initial;
}

.news-container .left .tag-and-news-list>.news-list-card .latest-news {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}

.news-container .left .tag-and-news-list>.news-list-card .title {
    width: 590px;
}

.news-container .left .tag-and-news-list>.news-list-card .pic-desc {
    display: flex;
    gap: 20px;

    margin: 20px 0;
}

.news-container .left .tag-and-news-list>.news-list-card .desc {
    flex: 1;
}

.news-container .left .news-list-card {
    padding: 20px;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #E3EAF3;
    cursor: pointer;
}

.news-container .left .news-list-card:first-child {
    margin: 0;
}

.news-container .left .news-list-card .pic {
    width: 279px;
    height: 194px;
    overflow: hidden;
}

.news-container .left .news-list-card .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-container .left .news-list-card .content {
    padding: 20px;
    flex: 1;
}

.news-container .left .news-list-card .title {
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    width: 450px;
    margin: 0px;

    /* 单行缺省，必须设置width，且不能用百分比 */
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.news-container .left .news-list-card:hover .title {
    color: #4385FF;
}

.news-container .left .news-list-card .desc {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    line-height: 25px;
    margin: 20px 0;

    /* 两行缺省 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-container .left .news-list-card .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-container .left .news-list-card .bottom .tags span {
    margin-left: 10px;
    padding: 2px 10px;
    border-radius: 14px;
    border: 1px solid #186CE7;

    font-size: 14px;
    color: #186CE7;
}

.news-container .left .news-list-card .bottom .tags span.active {
    background-color: #186CE7;
    color: #FFFFFF;
}

.news-container .left .news-list-card .bottom .time,
.article-read-count {
    font-weight: 400;
    font-size: 14px;
    color: #6E7080;
}

.article-read-count::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 18px;
    margin-right: 10px;
    vertical-align: middle;
    background: url(../images/20250430/news/eye.svg) no-repeat center center / cover;
}


.news-container .right {
    width: 360px;
}

.news-container .right .card {
    border: 1px solid #E3EAF3;
    margin-bottom: 20px;
}

/* 预约演示 */
.news-container .right .reserve .pic {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.news-container .right .reserve .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-container .right .reserve .title {
    text-align: center;
    height: 45px;
    line-height: 45px;
    background: #186CE7;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
}

.news-container .right .header {
    height: 60px;
    line-height: 60px;
    margin: 0 20px;
    border-bottom: 1px solid #E3EAF3;

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.news-container .right .header>span {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}

.news-container .right .header>span>img {
    height: 24px;
    width: auto;
    margin-right: 8px;
}

.news-container .right .header>a {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
}

.news-container .right .header>a:hover {
    color: #186CE7;
}

.news-container .right .card .content {
    padding: 20px;
}

/* 热门资讯 */
.news-container .right .hot-articles ul li {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
    cursor: pointer;
}

.news-container .right .hot-articles ul li:hover .title {
    color: #186CE7;
}

.news-container .right .hot-articles ul li:last-child {
    margin-bottom: 0;
}

.news-container .right .hot-articles ul li .title {
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 25px;

    /* 两行缺省 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;

    flex: 1;
}

.news-container .right .hot-articles ul li .read {
    width: 75px;
}

/* 热门产品 */
.news-container .right .hot-products ul li {
    display: inline-block;
    margin: 0 8px 12px 0;
}

.news-container .right .hot-products ul li a {
    font-size: 14px;
    color: #186CE7;
    line-height: 30px;
    background-color: #fff;

    padding: 2px 10px;
    height: 30px;
    border-radius: 15px;
    border: 1px solid #186CE7;
}

.news-container .right .hot-products ul li:hover a {
    background-color: #186CE7;
    color: #fff;
}

/* 优音通信 */
.news-container .right .submit-form {
    padding: 20px;
}

.news-container .right .submit-form .title {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}

.news-container .right .submit-form .desc {
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 25px;
}

.news-container .right .submit-form .form {
    margin-bottom: 20px;
}

.news-container .right .submit-form .form a {
    display: inline-block;
    width: 106px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;

    background: #186CE7;
    border-radius: 18px;

    position: relative;
    z-index: 1;
}

.news-container .right .submit-form .form input {
    text-align: center;
    height: 36px;
    width: 230px;
    border-radius: 18px;
    outline: none;
    border: none;
    font-size: 14px;
    margin-left: -36px;

    background: #F5F5F5;
}

.news-container .right .submit-form .form input::placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

/* 更多干货资讯 */
.news-container .right .more-news {
    padding: 20px;
}

.news-container .right .more-news .title {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}

.news-container .right .more-news .qrcode {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.news-container .right .more-news .qrcode img {
    width: 120px;
    height: 120px;
}

.news-container .right .more-news .desc {
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 25px;
}




/**分页**/
.news-pager {
    text-align: center;
    margin: 40px 0;
}

.news-pager #pagination {
    width: 100%;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.news-pager .total-items {
    margin-right: 15px;
}

.news-pager .pagination-list-items {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.news-pager .pagination-list-items:hover,
.news-pager .pagination-list-items.actived {
    background-color: #186CE7;
    /* border-radius: 50%; */
    color: #ffffff;
}


.news-pager #pageTips {
    position: fixed;
    right: 10px;
    font-size: 15px;
}

.news-pager #btnNext,
.news-pager #btnPrev {
    width: 70px !important;
    background: #F4F6FC !important;
    border-radius: 5px !important;
    border: 1px solid #CCCCCC;
}

.news-pager #btnNext:hover,
.news-pager #btnPrev:hover {
    color: #000000;
}


.news-pager .actived,
.news-pager .actived:hover {
    color: #fff;
    background-color: #186CE7;
    border-color: #186CE7;
    border-radius: 50%;
}

.news-pager .page-jump {
    margin-left: 15px;
}

.news-pager .page-jump input {
    width: 70px;
    height: 30px;
    text-align: center;
    margin: 0 5px;
    background: #F4F6FC;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
}

.news-pager .page-jump button {
    height: 49px;
    padding: 0 10px;
    margin-left: 5px;
    cursor: pointer;
}