.indexBanner {
    position: relative;
}

.indexBanner .swiper-slide .pic img {
    display: block;
    width: 100%;
}

.indexBanner .swiper-pagination-bullet {
    width: 0.2rem;
    height: 0.2rem;
    background-color: #fff;
    opacity: 0.5;
    margin: 0 .7rem;
}

.indexBanner .swiper-pagination-bullet-active {
    opacity: 1;
}

.section-title {
    font-size: .36rem;
    color: #061F39;
    line-height: 1;
}

.about-section {
    background: rgba(242, 243, 247, 1);
    padding-top: 1rem;
}

.news-section .container,
.advantage-section .container,
.product-section .container,
.about-section .container {
    max-width: 16rem;
    width: 100%;
    margin: 0 auto;
    ;
}

.about-section .about-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

.about-section .about-header .btn-view-more {
    margin-top: .84rem;
}

.btn-view-more {
    display: inline-block;
    padding: 0 .39rem;
    line-height: .42rem;
    border-radius: .22rem;
    border: 1px solid #2F8FBB;
    font-weight: 400;
    font-size: .16rem;
    color: #2F8FBB;
    transition: all .3s ease-in-out;
}

.btn-view-more:hover {
    background-color: #2F8FBB;
    color: #fff;
}

.about-section .about-header .about-text-box {
    width: 72.68%;
}

.about-section .about-header .about-desc {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: .16rem;
    color: #666666;
    line-height: .26rem;
    text-indent: 2em;
}

.about-section .about-header .about-stats {
    margin-top: .35rem;
    display: flex;
    justify-content: space-between;
    width: 9rem;
    max-width: 100%;
    text-align: center;
    gap: .2rem .3rem;
    flex-wrap: wrap;
    padding: 0 .6rem;
}

.about-section .about-header .about-stats .stat-item .stat-number {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: .18rem;
    color: #2F8FBB;
    line-height: 1;
}

.about-section .about-header .about-stats .stat-item .counter {
    font-size: .36rem;
    color: #2F8FBB;
    line-height: 1;
    padding-right: 3px;
}

.about-section .about-header .about-stats .stat-item .stat-label {
    font-weight: 400;
    font-size: .16rem;
    color: #808080;
    line-height: .26rem;
    display: block;
}

.about-section .about-building-img {
    position: relative;
    margin-top: -.27rem;
    z-index: 3;
}

.about-section .about-building-img img {
    display: block;
    width: 100%;
}

.product-section {
    padding: 1rem 0;
}

.product-section .section-title {
    text-align: center;
}

.product-section .product-grid {
    margin-top: .4rem;
}

.product-section .btn-wrapper {
    margin-top: 40px;
    text-align: center;
}

.advantage-section {
    padding: 1rem 0;
    background-color: rgba(242, 243, 247, 1);
}

.advantage-section .section-title {
    text-align: center;
}

.advantage-section .advantage-grid {
    margin-top: .3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.advantage-section .adv-card {
    position: relative;
}

.advantage-section .adv-card .adv-img {
    display: block;
    width: 100%;
    /* min-height: 340px; */
    object-fit: cover;
}

.advantage-section .adv-card .cardBox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 36px;
    background-color: rgba(47, 143, 187, .9);
    transition: all .3s ease-in-out;
    opacity: 0;
}

.advantage-section .adv-card:hover .cardBox {
    opacity: 1;
}

.advantage-section .adv-card .adv-title {
    font-size: .24rem;
    color: #FFFFFF;
    line-height: .26rem;
    text-align: center;
}

.advantage-section .adv-card .adv-desc {
    font-weight: 400;
    font-size: .16rem;
    color: #FFFFFF;
    line-height: .26rem;
    text-align: center;
    margin-top: .13rem;
}

.advantage-section .adv-card .cardBottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    transition: all .3s ease-in-out;
    opacity: 1;
    bottom: .19rem;
}

.advantage-section .adv-card:hover .cardBottom {
    opacity: 0;
}

.index-hhyy .btn-view-more {
    border-color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, 1);
    background-color: transparent;
}

.index-hhyy .btn-view-more:hover {
    background-color: #2F8FBB;
    border-color: #2F8FBB;
}

.index-hhyy .section-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    top: 1rem;
    z-index: 4;
}

.news-section {
    background-color: rgba(242, 243, 247, 1);
    padding: 1rem 0;
}

.news-section .section-title {
    text-align: center;
}

.news-section .news-layout {
    margin-top: .4rem;
    display: flex;
    justify-content: space-between;
}

.news-section .news-layout .news-featured {
    width: 42.5%;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(36, 36, 36, 0.31);
}

.news-section .news-featured .news-img-box {
    overflow: hidden;
}

.news-section .news-featured .news-img-box img {
    display: block;
    width: 100%;
    height: 3rem;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.news-section .news-list .news-item:hover .item-img-box img,
.news-section .news-layout .news-featured:hover .news-img-box img {
    transform: scale(1.05);
}

.news-section .news-layout .news-featured .news-content {
    padding: .4rem .3rem;
}

.news-section .news-layout .news-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-section .news-layout .news-title h3 {
    font-weight: bold;
    font-size: .24rem;
    color: #2F8FBB;
    line-height: 1;
    flex: 1;
    margin-right: .2rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-section .news-layout .news-title .date {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: .14rem;
    color: #B3B3B3;
    line-height: 1;
}

.news-section .news-layout .news-desc {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: .16rem;
    color: #666666;
    line-height: .26rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: .52rem;
    margin-top: .24rem;
}

.news-section .news-layout .news-link {
    font-weight: 400;
    font-size: .14rem;
    color: #2F8FBB;
    line-height: 1;
    margin-top: 52px;
}

.news-section .news-list {
    width: 55%;
}

.news-section .news-list .news-item {
    display: flex;
    background: #FFFFFF;
    padding: 10px;
    align-items: center;
}

.news-section .news-list .news-item:not(:last-child) {
    margin-bottom: 17px;
}

.news-section .news-list .news-item .item-img-box {
    width: 150px;
    height: 150px;
    overflow: hidden;
}

.news-section .news-list .news-item .item-img-box img {
    display: block;
    width: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.news-section .news-list .news-item .item-content {
    flex: 1;
    margin: 0 .2rem;
}

.news-section .news-layout .news-item .news-title h3 {
    font-size: .2rem;
    color: rgba(6, 31, 57, 1);
    transition: all .3s ease-in-out;
}

.news-section .news-layout .news-item:hover .news-title h3 {
    color: #2F8FBB;
}

.news-section .news-layout .news-item .news-link,
.news-section .news-layout .news-item .news-desc {
    margin-top: 15px;
}

.news-section .news-layout .news-item .news-link {
    color: rgba(153, 153, 153, 1)
}

.news-section .btn-wrapper {
    margin-top: .38rem;
    text-align: center;
}

@media (max-width:1024px) {
    .indexBanner .swiper-pagination {
        opacity: 1;
    }

    .indexBanner .swiper-pagination-bullet {
        width: .14rem;
        height: .14rem;
    }

    .advantage-section .advantage-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .news-section .news-layout{
        flex-direction: column;
    }
    .news-section .news-layout .news-featured,
    .news-section .news-list {
        width: 100%;
    }
    .news-section .news-list{
        margin-top: .3rem;
    }
}

@media (max-width:768px) {
    .news-section .news-list .news-item .item-img-box{
        width: 120px;
        height: 120px;
    }
    .about-section .about-header {
        flex-direction: column;
    }

    .about-title-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .about-section .about-header .btn-view-more {
        margin-top: 0;
    }

    .about-section .about-header .about-text-box {
        width: 100%;
        margin-top: .3rem;
    }

    .about-section .about-header .about-stats {
        padding: 0 .2rem;
    }
}