@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;
}

/*视频*/
.videoimg {
    text-align: center;
    position: relative;
}

.videoimg .video-img {
    display: inline-block;
    border: 2px solid #DDE2E9;
}

.videoimg .video-img img {
    width: 100%;
    aspect-ratio: 1.842 / 1;
}

.videoimg .btn-inner {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.videoimg .btn-inner .btn-play {
    position: relative;
    width: 65px;
    height: 65px;
    display: inline-block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    text-align: center;
    line-height: 65px;
    color: #40D6FF;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.videoimg .btn-inner .btn-play i {
    margin-left: 5px;
}

.videoimg .btn-inner .btn-play:hover {
    background: #40D6FF;
    color: #ffffff;
}

.videoimg .btn-inner .btn-play:active {
    background: #063464;
    color: #ffffff;
}

.videoimg .btn-inner .btn-play i:before {
    font-size: 21px;
}

@keyframes circle-fade-before {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes circle-fade-after {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.videoimg .btn-inner .btn-play span {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #ffffff;
    animation: circle-fade-before 2s infinite ease-in-out;
    -webkit-animation: circle-fade-before 2s infinite ease-in-out;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.videoimg .btn-inner .btn-play:hover span {
    border: 1px solid #40D6FF;
}

.videoimg .btn-inner .btn-play .circle-2 {
    animation: circle-fade-after 2s infinite ease-in-out;
    -webkit-animation: circle-fade-after 2s infinite ease-in-out;
}

/*视频播放*/
.video-play1 {
    width: 640px;
    height: 480px;
    position: fixed;
    z-index: 99999;
    left: 50%;
    top: 50%;
    margin-top: -240px;
    margin-left: -320px;
    display: none;
}

.video-play-con {
    overflow: hidden;
}

.video-close {
    height: 30px;
    overflow: hidden;
}

.video-close span {
    float: right;
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
    opacity: .8;
    filter: alpha(opacity=80);
    cursor: pointer;
}


/*产品汇总*/
.pro-item {
    position: relative;
    border: 1px solid #DDE2E9;
}

.pro-item .proimg img {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.proimg a {
    display: block;
    transition: all .3s;
}

.protext {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(rgb(142, 160, 188, 0.8), rgb(29, 101, 185, 0.9) 70%);
    background-image: -moz-linear-gradient(rgb(142, 160, 188, 0.8), rgb(29, 101, 185, 0.9) 70%);
    background-image: -o-linear-gradient(rgb(142, 160, 188, 0.8), rgb(29, 101, 185, 0.9) 70%);
    background-image: -ms-linear-gradient(rgb(142, 160, 188, 0.8), rgb(29, 101, 185, 0.9) 70%);
    background-image: linear-gradient(rgb(142, 160, 188, 0.8), rgb(29, 101, 185, 0.9) 70%);
}

.protext p {
    color: #ffffff;
}

.pro-item:hover .protext {
    display: flex;
    justify-content: center;
    align-items: center;
}


/*技术*/
.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: 576px) {

}

@media (min-width: 768px) {
    .tabs-wrapper {
        padding: 30px;
    }

    ul.tabs li {
        margin-bottom: 0px;
    }

    .tab-content {
        padding: 40px 0 0;
    }
}


@media (min-width: 992px) {

}

@media (min-width: 1200px) {


}

/*相关阅读*/
.related-pro-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    transition: all 0.3s linear;
}

.related-pro-img {
    border: 4px solid #DDE2E9;
    text-align: center;
    overflow: hidden;
}

.related-pro-img:hover img {
    transform: scale(1.1);
}

.swiper-parent {
    position: relative;
}