@charset "utf-8";
/* CSS Document */

@import url("swiper-bundle.min.css");

/*banner大图*/
.pro-banner {
    /*    background:url(../images/pro-tit-bg.png) no-repeat left center;
        padding: 40px 24px;
        width: 580px;
        text-align: center;*/
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*产品列表*/
.product-list .item .img {
    border: 1px solid #DDE2E9;
    overflow: hidden;
}

.product-list .item .img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    vertical-align: middle;
    transition: all 0.3s linear;
}

.product-list .item .img:hover img {
    transform: scale(1.1);
}

.product-list .item .cont {
    overflow: hidden;
}

.product-list .item .title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 4px;
}

.product-list .item .des {
    line-height: 30px;
    max-height: 224px;
    overflow: hidden;
}

.product-list .item .des a {
    font-weight: bold;
}

/*技术*/
.technology-section {
    background: #f6f6f6;
}

.tabs-wrapper {
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 2px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, .1);
    padding: 10px;
    overflow: hidden;
}

ul.tabs {
    background: #fff;
    border: none;
    padding: 0 !important;
    margin: 0 !important;
}

ul.tabs li {
    display: inline-block;
    color: #1D65B9;
    cursor: pointer;
    position: relative;
    margin-bottom: 20px;
}

ul.tabs li.current {
    color: #9BCB3B;
    border-bottom: 4px solid #9BCB3B;
}

.tab-content {
    display: none;
    width: 100%;
    overflow-x: auto;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.tab-content.current {
    display: block;
}

.tab-content table th, .tab-content table td {
    padding: 2px 3px !important;
}

.technology-icon {
    border: 1px solid #eaeaea;
}

.technology-caption {
    border: 1px solid #eaeaea;
    border-top: none;
}

@media (min-width: 768px) {
    .tabs-wrapper {
        padding: 30px;
    }

    ul.tabs li {
        margin-bottom: 0px;
    }

    .tab-content {
        padding: 40px 0 0;
    }
}

/*为什么选择我们*/
.why-choose-item {
    border-top: 4px solid #1D65B9;
    text-align: center;
    box-shadow: 0px 0px 10px #e5e2e2;
    -moz-box-shadow: 0px 0px 10px #e5e2e2;
    -webkit-box-shadow: 0px 0px 10px #e5e2e2;
}

.why-choose-item .img {
    height: 80px;
    width: 80px;
    line-height: 80px;
    margin: 0 auto;
}

.why-choose-item .img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    vertical-align: bottom;
    margin-bottom: -10px;
}

.why-choose .swiper-pagination-bullet {
    width: 40px;
    border-radius: 4px;
}

@media (min-width: 992px) {
    .why-choose-item {
        min-height: 530px;
    }
}


/*相关阅读*/
.related-pro-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    transition: all 0.3s linear;
}

.related-pro-img {
    border: 4px solid #DDE2E9;
    overflow: hidden;
}

.related-pro-img:hover img {
    transform: scale(1.1);
}

.swiper-parent1 {
    position: relative;
}


/*应用行业*/
.application-section .swiper-parent {
    position: relative;
}

.application-item {
    position: relative;
    margin: 0 15px;
}

.application-item img {
    width: 100%;
    aspect-ratio: 1 / 1.272;
}

.application-tit {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: rgba(29, 101, 185, 0.5);
}

@media (max-width: 575px) {
    .application-mySwiper .swiper-slide {
        transform: rotateY(0deg) !important;
    }
}

@media (min-width: 992px) {
    .application-mySwiper .swiper-slide-next {
        transform: rotateY(0deg) !important;
    }

    .application-mySwiper .swiper-slide-next + .swiper-slide {
        transform: rotateY(0deg) !important;
    }
}

@media (min-width: 1600px) {
    .application-section .swiper-parent {
        width: 1400px;
        margin: 0 auto;
    }
}

/*疑问解答*/
.faq-answer .answer-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-answer .answer-item .answer-button {
    font-weight: 700;
    padding-right: 45px;
    position: relative;
}

.faq-answer .open .answer-button {
    color: #1D65B9;
}

.faq-answer .answer-item .answer-button .faq-button {
    position: absolute;
    right: 0;
    top: 0;
    height: 32px;
    width: 32px;
    font-size: 15px;
    color: #005de0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
}

.faq-answer .open .answer-button .faq-button {
    transform: rotate(-90deg);
}

.faq-answer .answer-item .answer-body {
    display: none;
}

.faq-answer .open .answer-body {
    display: block;
}