@charset "UTF-8";
.news-slide {
    width: 100%;
}

.news-slide .swiper-slide a{
    width: 100%;
    background: #d7eeff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.news-slide .img {
    width: 47.222%;
}
.news-slide .img .img-cont {
    width: 100%;
    height: 0;
    padding-bottom: 73.235%;
    position: relative;
}
.news-slide .img .img-flex {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-slide .img .img-cont img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-slide .txt {
    width: 52.778%;
    padding:5%;
    padding-top:9%;
    text-align: left;
}

.news-slide .txt .date {
    color: #999;
    font-size: 16px;
    line-height:20px;
    margin-bottom:4%;
}

.news-slide .txt h3 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    line-height: 36px;
    height:72px;
    margin-bottom:4%;
}

.news-slide .txt p {
    color: #666;
    font-size: 16px;
    line-height: 36px;
    margin-bottom: 8%;
}

.news-slide .txt .more {
    display: flex;
    align-items: center;
    color: var(--mainColor);
    font-size: 16px;
    line-height:24px;
}

.news-slide .txt .more .icon {
    width:24px;
    height:24px;
    border-radius: 50%;
    border:var(--mainColor) solid 1px;
    margin-right: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-slide .swiper-container .swiper-pagination {
    bottom: auto;
    top:0;
    width: 52.778%;
    padding:5%;
    left:auto;
    right:0;
    display: flex;
    gap:1.75%;
}

.news-slide .swiper-container .swiper-pagination-bullet {
    opacity: 0.5;
    width: 32.166%;
    margin: 0;
    background: var(--mainColor);
    height: 2px;
    transition: all .3s;
    position: relative;
    border-radius: 0;
}

.news-slide .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

/* 1440 响应式 */
@media (max-width: 1440px) {

    .news-slide .swiper-slide a{
        border-radius: 20px;
    }
    .news-slide .txt {
        padding:5%;
        padding-top:8%;
    }

    .news-slide .txt h3 {
        font-size: 20px;
        line-height: 28px;
        height:56px;
        margin-bottom:4%;
    }

    .news-slide .txt p {
        font-size: 16px;
        line-height: 32px;
        margin-bottom: 8%;
    }
}

/* 1080 响应式 */
@media (max-width: 1080px) {
    .news-slide .swiper-slide a{
        border-radius: 16px;
    }
    .news-slide .txt {
        padding:4%;
        padding-top:6%;
    }

    .news-slide .txt .date {
        font-size: 14px;
        margin-bottom:3%;
    }

    .news-slide .txt h3 {
        font-size: 18px;
        line-height: 24px;
        height:48px;
        margin-bottom:3%;
    }

    .news-slide .txt p {
        font-size: 14px;
        line-height: 28px;
        margin-bottom: 5%;
    }

    .news-slide .txt .more {
        font-size: 14px;
        line-height:20px;
    }

    .news-slide .txt .more .icon {
        width:20px;
        height:20px;
        margin-right: 8px;
        font-size: 12px;
    }
}

/* 769 响应式：上下堆叠 */
@media (max-width: 769px) {
    .news-slide .swiper-slide a {
        border-radius: 8px;
        display: block;
    }
    .news-slide .img {
        width: 100%;
    }
    .news-slide .txt {
        width: 100%;
        padding: 12px;
        padding-bottom: 32px;
    }
    .news-slide .txt .date {
        font-size: 12px;
        margin-bottom:8px;
    }

    .news-slide .txt h3 {
        font-size: 16px;
        line-height: 24px;
        height:48px;
        margin-bottom:8px;
    }

    .news-slide .txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 16px;
    }
    .news-slide .swiper-container .swiper-pagination {
        top:auto;
        bottom:12px;
        width: 100%;
        padding: 0 12px;
    }
}

.news-list{width:100%;}
.news-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4.166%;
    width: 100%;
}

.news-list ul li {
    width: 30.55%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    margin-bottom:4.166%;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.news-list ul li:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 69, 185, 0.10);
    transform: translateY(-4px) scale(1.01);
    border-color: #e6f4ff;
}
.news-list ul li a{
    display: block;
    width:100%;
}

.news-list .img {
    width: 100%;
    position: relative;
}

.news-list .img .img-cont {
    width: 100%;
    height: 0;
    padding-bottom: 73.235%;
    position: relative;
}

.news-list .img .img-flex {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-list .img .img-cont img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list .txt {
    width:100%;
    padding: 8%;
}

.news-list .txt h3 {
    font-size: 24px;
    color: #333;
    line-height:28px;
    margin-bottom:5%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.news-list li:hover .txt h3{
    color: var(--mainColor);
}

.news-list .txt p {
    color: #999;
    font-size: 16px;
    line-height: 32px;
    margin-bottom:5%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-list .txt .date {
    color: #999;
    font-size: 16px;
    line-height: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

/* 1440 响应式 */
@media (max-width: 1440px) {
    .news-list ul li {
        border-radius: 20px;
    }

    .news-list .txt {
        padding: 8%;
    }

    .news-list .txt h3 {
        font-size: 20px;
        line-height:24px;
        margin-bottom:5%;
    }
    .news-list .txt p {
        font-size: 16px;
        line-height: 28px;
        margin-bottom:5%;
    }

    .news-list .txt .date {
        font-size: 16px;
    }
}

/* 1080 响应式 */
@media (max-width: 1080px) {
    .news-list ul li {
        border-radius: 16px;
    }

    .news-list .txt {
        padding: 6%;
    }

    .news-list .txt h3 {
        font-size: 18px;
        line-height:24px;
        margin-bottom:5%;
    }
    .news-list .txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom:5%;
    }

    .news-list .txt .date {
        font-size: 14px;
    }
}

/* 769 响应式：一列 */
@media (max-width: 769px) {
    .news-list ul{gap:3%;}
    .news-list ul li {
        width:48.5%;
        margin-bottom:3%;
        border-radius: 8px;
    }
    .news-list .txt {
        padding: 12px;
    }

    .news-list .txt h3 {
        font-size: 16px;
        line-height:24px;
        margin-bottom:8px;
    }
    .news-list .txt p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom:8px;
    }

    .news-list .txt .date {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .news-list ul {
        gap: 0;
    }

    .news-list ul li {
        width: 100%;
    }
}


.news-detail-box{
    width:100%;
    display: flex;
    justify-content: space-between;
}

.news-recom {
    width: 25%;
}
.news-recom .recom-title{
    font-size:24px;
    color:#333;
    line-height:28px;
    padding-bottom:16px;
    border-bottom:#e0e0e0 solid 1px;
    margin-bottom:10%;
}
.news-recom li {
    width: 100%;
    margin-bottom: 10%;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.news-recom li a {
    display: block;
    width: 100%;
}
.news-recom .img {
    width: 100%;
    position: relative;
}
.news-recom .img .img-cont {
    width: 100%;
    height: 0;
    padding-bottom: 73.235%;
    position: relative;
    overflow: hidden;
    border-radius:12px;
}
.news-recom .img .img-flex {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-recom .img .img-cont img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-recom .txt {
    margin-top:5%;
    width: 100%;
}
.news-recom .txt h3 {
    font-size: 20px;
    color: #333;
    line-height: 24px;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.news-recom li:hover .txt h3 {
    color: var(--mainColor);
}
.news-recom .txt p {
    color: #999;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-recom .txt .date {
    color: #999;
    font-size: 16px;
    line-height: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

/* 1440 响应式 */
@media (max-width: 1440px) {
    .news-recom .recom-title {
        font-size: 20px;
        line-height: 24px;
        padding-bottom: 12px;
        margin-bottom: 4.466%;
    }
    .news-recom .txt h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .news-recom .txt p {
        margin-bottom: 8px;
    }
}

/* 1080 响应式 */
@media (max-width: 1080px) {
    .news-recom .recom-title {
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 12px;
        margin-bottom: 4.466%;
    }

    .news-recom .txt h3 {
        font-size: 16px;
    }

    .news-recom .txt p {
        font-size: 14px;
        line-height: 20px;
    }

    .news-recom .txt .date {
        font-size: 14px;
    }
}

/* 769 响应式：一列 */
@media (max-width: 769px) {
    .news-detail-box{
        display: block;
    }
    .news-recom {
        margin-top:32px;
        width:100%;
    }
    .news-recom .recom-title {
        padding-bottom: 8px;
        margin-bottom: 4%;
    }
    .news-recom ul li{
        margin-bottom:4%;
    }
    .news-recom .img .img-cont {
        border-radius: 8px;
    }
    .news-recom .txt{
        margin-top:2%;
    }
    .news-recom .txt .date {
        font-size: 12px;
    }
}

.news-detail{
    width:69.44%;
}
.news-detail .news-title{
    width:100%;
    border-bottom:#e0e0e0 solid 1px;
    padding-bottom:5%;
    margin-bottom:5%;
}
.news-detail .news-title h1{
    font-size:40px;
    color:#333;
    line-height:56px;
    font-weight: bold;
}
.news-detail .news-title .date{
    font-size: 16px;
    color:#999;
    line-height: 20px;
    margin-top:2%;
}

.detail-return{
    width:100%;
    margin-top:5%;
    padding:10px 32px;
    background-color: #d7eeff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.detail-return .return-item{
    font-size: 16px;
    color:#888;
    line-height:36px;
    display: flex;
    align-items: center;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.detail-return .return-item .iconfont{
    font-size:14px;
    margin-left:8px;
    margin-right:8px;
}
.detail-return .return-item:nth-child(2) .iconfont {
    font-size:20px;
}
.detail-return .return-item:hover {
    color: var(--mainColor);
}
@media (max-width: 1440px) {
    .news-detail .news-title h1{
        font-size:32px;
        line-height:48px;
    }
    .news-detail .news-title .date{
        font-size: 16px;
        line-height: 20px;
        margin-top:2%;
    }

    .detail-return{
        padding:8px 24px;
    }
    .detail-return .return-item{
        font-size: 16px;
        line-height:36px;
    }
    .detail-return .return-item .iconfont{
        font-size:14px;
        margin-left:8px;
        margin-right:8px;
    }
    .detail-return .return-item:nth-child(2) .iconfont {
        font-size:20px;
    }
}
@media (max-width: 1080px) {
    .news-detail .news-title h1 {
        font-size: 24px;
        line-height: 36px;
    }

    .news-detail .news-title .date {
        font-size: 14px;
    }

    .detail-return {
        padding: 8px 16px;
    }

    .detail-return .return-item {
        font-size: 14px;
        line-height: 28px;
    }

    .detail-return .return-item .iconfont {
        font-size: 12px;
        margin-left: 4px;
        margin-right: 4px;
    }

    .detail-return .return-item:nth-child(2) .iconfont {
        font-size: 16px;
    }
}
@media (max-width: 769px) {
    .news-detail {
        width: 100%;
    }
    .news-detail .news-title h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .news-detail .news-title .date {
        font-size: 12px;
    }
}