@charset "utf-8";
a {
    text-decoration: none
}

ul {
    list-style: none
}

.product-section {
    margin: 80px 0 80px 0;
    padding: 80px 0 80px 0;
    position: relative;
    /* background: url(/assets/images/shapes/book-now-shape.png) no-repeat; */
    /* background-color: var(--thm-primary); */
    background-size: cover
}

.product-title {
    padding: 50px 10px 30px;
    font-weight: normal;
    font-size: 36px;
    line-height: 46px;
    color: #252b3a;
    text-align: center;
    color: #ffffff
}

.product-wrapper {
    max-width: 1200px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.product-features .product-body {
    margin: 0px 25px
}

.product-features .product-body:after {
    content: "";
    width: 100%;
    height: 3px;
    background: url(../images/history/productBase-features-model.png) no-repeat;
    background-size: 100% auto;
    background-position: center;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 0
}


/*li*/

.features-item {
    position: relative;
    float: left
}

.features-slide .features-item>* {
    text-align: center
}

.features-item h3 {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 50px;
    color: #ffffff;
    opacity: 0.7;
    transition: all 0.1s
}

.features-item h4 {
    font-size: 17px;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.7;
    transition: all 0.1s;
}

.features-item i {
    position: absolute;
    width: 75%;
    height: 33px;
    background: url(../images/history/productBase-features-timeline.png) no-repeat;
    background-size: contain;
    background-position: right center;
    left: -25%;
    margin-left: 10px;
    top: 35px;
    z-index: 3
}

.features-item .features-info {
    display: block;
    margin: 0 auto;
    padding: 20px 53px;
    transition: all 0.3s;
    border-radius: 2px
}

.features-item .features-info .features-info-i {
    font-size: 14px;
    color: #A0A2A8;
    line-height: 22px;
    margin-bottom: 10px
}

.features-item .features-info .features-info-s {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    overflow: hidden
}

.features-item.dark i {
    background: url(../images/history/productBase-features-timeline-dark.png) no-repeat;
    background-size: contain;
    background-position: right center
}


/*鼠标悬浮效果*/

.features-item:hover h3 {
    font-size: 22px;
    line-height: 28px;
    opacity: 0.9
}

.features-item:hover i {
    width: 75%;
    margin-left: 13px;
    background: url(../images/history/productBase-features-timeline-hover.png) no-repeat;
    background-size: contain;
    background-position: right center
}

.features-item:hover a {
    background: url(../images/history/productBase-features-info.png) no-repeat;
    background-size: 100% 100%
}


/*左右按钮*/

.product-features .swiper-button-prev {
    width: 54px;
    height: 54px;
    left: -15px;
    top: 60%;
    background: none
}

.product-features .swiper-button-prev:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 15px;
    height: 30px;
    background: url(../images/history/productBase-features-left.png) no-repeat;
    background-size: 100% 100%;
    top: 50%;
    margin-top: -15px;
    left: 50%;
    margin-left: -7px
}

.product-features .swiper-button-next {
    width: 54px;
    height: 54px;
    right: -15px;
    top: 60%;
    background: none
}

.product-features .swiper-button-next:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 15px;
    height: 30px;
    background: url(../images/history/productBase-features-right.png) no-repeat;
    background-size: 100% 100%;
    top: 50%;
    margin-top: -15px;
    left: 50%;
    margin-left: -7px
}


/*new start*/
/* 确保swiper容器正确 */
.product-wrapper {
    position: relative;
}

/* 导航按钮基础样式 */
.swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(1, 92, 211, 0.9);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* 悬停效果 */
.swiper-button:hover {
    background: rgba(1, 92, 211, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* 按钮位置 */
.swiper-button-prev {
    left: -20px;
}

.swiper-button-next {
    right: -20px;
}

/* 禁用状态 */
.swiper-button-disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    background: rgba(1, 92, 211, 0.5) !important;
}

.swiper-button-disabled:hover {
    transform: translateY(-50%) scale(1) !important;
    background: rgba(1, 92, 211, 0.5) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}

/* 图标样式 */
.swiper-button i {
    font-size: 20px;
    font-weight: bold;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .swiper-button {
        width: 35px;
        height: 35px;
    }

    .swiper-button-prev {
        left: -15px;
    }

    .swiper-button-next {
        right: -15px;
    }
}

@media (max-width: 576px) {
    .swiper-button {
        width: 30px;
        height: 30px;
    }

    .swiper-button i {
        font-size: 16px;
    }

    .swiper-button-prev {
        left: -10px;
    }

    .swiper-button-next {
        right: -10px;
    }
}
/*new  end*/

@media only screen and (max-width: 767px) {
    .features-item .features-info {
        display: block;
        margin: 0 auto;
        padding: 3px 14px;
        transition: all 0.3s;
        border-radius: 2px
    }
    .features-item .features-info .features-info-s {
        font-size: 12px;
        color: #FFFFFF;
        line-height: 20px;
        overflow: hidden
    }
    .product-section {
        margin: 35px 0 31px 0;
        padding: 14px 0 66px 0;
        position: relative;
        background: url(../images/history/productBase-features-bag.jpg) no-repeat;
        background-size: cover;
    }
    .product-title {
        padding: 28px 10px 30px;
        font-weight: normal;
        font-size: 36px;
        line-height: 46px;
        color: #252b3a;
        text-align: center;
        color: #ffffff;
    }
    .product-features .swiper-button-prev {
        width: 24px;
        height: 35%;
        left: 4px;
        top: 40%;
        background: none;
    }
    .product-features .swiper-button-next {
        width: 24px;
        height: 35%;
        right: 4px;
        top: 40%;
        background: none;
    }
}