/* 导航高亮（main.js 全局导航渲染使用，非产品页业务样式） */
.actives>a{
    color: #FCB333 !important;
    border-bottom: 5px solid #FCB333;
}
.hovers{
    color: #FCB333 !important;
}

/* ===== 产品介绍区 ===== */
.product-intro{
    position: relative;
    width: 100%;
    padding-bottom: 70px;
}
.product-intro__crumb{
    position: relative;
    width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    font-size: 18px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #212121;
}
.product-intro__title{
    position: relative;
    width: 1300px;
    margin: 0 auto;
    padding-top: 92px;
    text-align: center;
    font-size: 30px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #6FC2F9;
}
.product-intro__desc{
    position: relative;
    width: 940px;
    text-align: justify;
    text-indent: 2em;
    margin: 0 auto;
    padding-top: 30px;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #2A3B55;
    line-height: 29px;
}
.product-intro__desc + .product-intro__desc{
    padding-top: 14px;
}

/* ===== 功能分组区（左列表 + 右轮播） ===== */
.func-group{
    position: relative;
    width: 100%;
}
.func-group__title{
    text-align: center;
    padding-top: 0;
    font-size: 30px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #6FC2F9;
}
.func-group + .func-group .func-group__title{
    padding-top: 77px;
}
.func-group__body{
    position: relative;
    width: 1300px;
    padding-top: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.func-group__body-left{
    position: relative;
    width: 440px;
}
.func-group__item{
    position: relative;
    width: 100%;
    margin-top: 20px;
}
.func-group__item:first-child{
    margin: 0;
}
.func-group__item label{
    display: flex;
    width: 100%;
    align-items: center;
}
.func-group__item i{
    width: 6px;
    height: 20px;
    background: #6FC2F9;
}
.func-group__item span{
    font-size: 20px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #212121;
    padding-left: 15px;
}
.func-group__item p{
    padding-left: 21px;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #6B6B74;
}
.func-group__body-right{
    position: relative;
    width: 650px;
    margin-left: auto;
    overflow: hidden;
}
.func-group__body-right.pd-gallery{
    /* 本结构未启用分页圆点，去除 gallery-lightbox 预留的底部留白，避免图片块相对文字区上移 */
    padding-bottom: 0;
}
.func-group__body-right .swiper-slide{
    position: relative;
    display: flex;
    justify-content: center;
}
.func-group__body-right .swiper-slide img{
    width: 550px;
    height: 310px;
}
.func-group__body-right .swiper-button-prev, .func-group__body-right .swiper-button-next{
    top: 150px;
}
.func-group:last-of-type{
    padding-bottom: 72px;
}
.func-group--reverse .func-group__body{
    flex-direction: row-reverse;
}
.func-group--reverse .func-group__body-right{
    margin-left: 0;
    margin-right: auto;
}
.func-group__body-right.pd-gallery .swiper-button-prev{
    left: 0;
}
.func-group__body-right.pd-gallery .swiper-button-next{
    right: 0;
}
