/* 首页轮播图 */
.swiperVideo {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    --swiper-theme-color: #fff;
    /* 设置Swiper风格 */
    --swiper-navigation-size: 30px;
    /* 设置按钮大小 */
}
.swiperVideo .swiper-slide::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/wenli.png) ;
    z-index: 15;
    pointer-events: none;
}
.swiperVideo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiperVideo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiperVideo .swiper-pagination-bullet {
    width: 4px;
    height: 4px;
    opacity: 1;
    background: #fff;
}
.swiperVideo .swiper-pagination-bullet-active {
    background: #23438c;
    width: 16px;
    height: 4px;
    border-radius: 2px;
}
/* 关于我们 */
.aboutWeb {
    padding: 100px 0;
    display: flex;
    justify-content: space-between;
}
.aboutWeb .left {
    flex: 1;
    padding-left: 2.6%;
    margin-right: 100px;
    padding-top: 60px;
    overflow: hidden;
}
.aboutWeb .left .tit {
    position: relative;
    height: 70px;
    width: 100%;
    font-size: 70px;
    line-height: 70px;
    color: transparent;
    -webkit-text-stroke: 1px #ececec;  
}
.aboutWeb .left .tit span {
    position: absolute;
    left: 0;
    font-size: 40px;
    color: #000000;
    font-weight: bold;
    -webkit-text-stroke: 0px #ececec;  
}
.aboutWeb .left .des {
    margin-top: 20px;
    font-size: 18px;
    color: #666666;
}
.aboutWeb .left p {
    margin-top: 60px;
    line-height: 34px;
    font-size: 18px;
    color: #444444;
}

.aboutWeb .left .more {
    margin-top: 60px;
    display: flex;
    align-items: center;
    height: 52px;
    width: 197px;
    background-color: #fff;
}
.aboutWeb .left .more i {
    font-style: normal;
    width: 144px;
    background-color: #23438c;
    height: 52px;
    line-height: 52px;
    text-align: center;
    color: #fff;
    font-size: 16px;
}
.aboutWeb .left .more span {
    width: 52px;
    height: 52px;
    margin-left: 1px;
    background-color: #23438c;
    color: #fff;
    text-align: center;
    line-height: 52px;
    font-size: 16px;
}

.aboutWeb .pic {
    height: 640px;
    width: 50%;
    overflow: hidden;
    border-top-left-radius: 80px;
}
.aboutWeb .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 80px;
}

/* 关于我们手机版 */
.aboutphone {
    display: none;
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 50px;
}
.aboutphone .top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
}
.aboutphone .top .more {
    display: flex;
    align-items: center;
    height: 26px;
    width: 99px;
    background-color: #fff;
}
.aboutphone .top .more i {
    font-style: normal;
    width: 72px;
    background-color: #23438c;
    height: 26px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    font-size: 12px;
}
.aboutphone .top .more span {
    width: 26px;
    height: 26px;
    margin-left: 1px;
    background-color: #23438c;
    color: #fff;
    text-align: center;
    line-height: 26px;
    font-size: 8px;
}
.aboutphone .top .left {
    flex: 1;
}
.aboutphone .top .left .tit {
    position: relative;
    height: 35px;
    width: 100%;
    font-size: 35px;
    line-height: 35px;
    color: transparent;
    -webkit-text-stroke: 2px #ececec;  
}
.aboutphone .top .left .tit span {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    color: #000000;
    font-weight: bold;
    -webkit-text-stroke: 0px #ececec;  
}
.aboutphone .top .left .des {
    font-size: 12px;
    color: #666666;
    line-height: 30px;
}
.aboutphone p {
    margin-top: 20px;
    font-size: 13px;
    color: #444444;
    line-height: 24px;
}
.aboutphone .pic {
    margin-top: 30px;
    overflow: hidden;
    border-top-left-radius: 80px;
    width: 100%;
}
.aboutphone .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 描述容器 */
.deswrap {
    width: 100%;
    padding-top: 110px;
    padding-bottom: 60px;
    background-image: url(../images/deswebbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.deswrap .w {
    background-color: transparent;
}
.deswrap .desSwiper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 120px;
}
.deswrap .toolBar {
    display: flex;
    height: 180px;
    width: 100%;
    background-color: #fff;
}
.deswrap .toolBar .baritem {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.deswrap .toolBar .baritem::after {
    content: '';
    position: absolute;
    right: 0;
    width: 50px;
    height: 100%;
    background-image: linear-gradient(90deg, 
		#ffffff 0%, 
		#f9f9f9 100%);
}
.deswrap .toolBar .baritem.active {
    background-color: #2b6ede;
}
.deswrap .toolBar .baritem.active::after {
    background-image: none;
}
.deswrap .toolBar .baritem.active {
    color: #fff;
}
.deswrap .toolBar .baritem span {
    font-size: 44px;
    color: #23438c;
}
.deswrap .toolBar .baritem.active span {
    color: #fff;
}
.deswrap .toolBar .baritem  i {
    font-style: normal;
    font-size: 22px;
    font-weight: bold;
    color: #000;
    margin-top: 22px;
}
.deswrap .toolBar .baritem.active i {
    color: #fff;
}
.deswrap .main {
    width: 50%;
}
.deswrap h2 {
    position: relative;
    height: 70px;
    line-height: 70px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);  
    color: transparent;
    font-size: 70px;
}
.deswrap h2 span {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 44px;
    color: #fff;
    font-weight: bold;
}
.deswrap h3 {
    font-size: 18px;
    color: #ffffff;
    margin-top: 10px;
}
.deswrap p {
    font-size: 18px;
    line-height: 36px;
    color: #fff;
    margin-top: 60px;
}
/* 产品中心网页 */
.productweb {
    padding: 100px 0;
    background-color: #fff;
}
.productweb .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.6%;
    overflow: hidden;
}
.productweb .top .left .tit {
    position: relative;
    height: 70px;
    width: 100%;
    font-size: 70px;
    line-height: 70px;
    color: transparent;
    -webkit-text-stroke: 1px #ececec;  
}
.productweb .top .left .tit span {
    position: absolute;
    left: 0;
    font-size: 40px;
    color: #000000;
    font-weight: bold;
    -webkit-text-stroke: 0px #ececec;  
}
.productweb .top .left .des {
    margin-top: 20px;
    font-size: 18px;
    color: #666666;
}
.productweb .top .more {
    display: flex;
    align-items: center;
    height: 52px;
    width: 197px;
    background-color: #fff;
}
.productweb .top .more i {
    font-style: normal;
    width: 144px;
    background-color: #23438c;
    height: 52px;
    line-height: 52px;
    text-align: center;
    color: #fff;
    font-size: 16px;
}
.productweb .top .more span {
    width: 52px;
    height: 52px;
    margin-left: 1px;
    background-color: #23438c;
    color: #fff;
    text-align: center;
    line-height: 52px;
    font-size: 16px;
}
.productweb .productmain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    width: 100%;
    overflow: hidden;
}
.productweb .productmain .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30%;
    padding-left: 2.6%;
    padding-right: 100px;
}
.productweb .productmain .left  a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    border-bottom: 1px solid #e7e7e7;
    font-size: 28px;
    line-height: 32px;
    color: #000;
}
.productweb .productmain .left  a span {
    color: #b4b4b4;
    font-size: 16px;
}
.productweb .productmain .left  a:hover {
    color: #23438c;
    border-bottom: 1px solid #23438c;
}
.productweb .productmain .left  a:hover span {
    color: #23438c;
}
.productweb .productmain .left  a.active {
    color: #23438c;
    border-bottom: 1px solid #23438c;
}
.productweb .productmain .left  a.active span {
    color: #23438c;
}

.prowebSwiper {
    display: none;
    position: relative;
    flex: 1;
    overflow: hidden;
    --swiper-navigation-size: 20px;/* 设置按钮大小 */
    --swiper-theme-color: #b4b4b4;/* 设置Swiper风格 */
}
.prowebSwiper .swiper-slide {
    height: 100%;   
    background-color: #f7f7f7; 
}
.prowebSwiper .swiper-slide .prowebitem {
    display: block;
    padding-bottom: 50px;
}
.prowebSwiper .swiper-button-next, .prowebSwiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.prowebSwiper .swiper-button-next:hover, .prowebSwiper .swiper-button-prev:hover{
    background-color: #23438c;
    color: #fff;
}
.prowebSwiper .swiper-button-next {
    right: 24%;
}
.prowebSwiper .pic {
    height:calc(100% - 120px);
    width: 100%;
    overflow: hidden;
}
.prowebSwiper .pic img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 1.0s;
}
.prowebSwiper h2 {
    text-align: center;
    font-size: 26px;
    line-height: 34px;
    color: #000;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.prowebSwiper p {
    height: 60px;
    font-size: 16px;
    line-height: 34px;
    color: #666666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    padding: 0 15px;
}
.prowebSwiper .swiper-slide .prowebitem:hover img{
    transform: scale(1.2);
}
.prowebSwiper .swiper-slide .prowebitem:hover h2 {
    color: #23438c;
}

/* 产品中心手机版 */
.productphone {
    display: none;
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 50px;
}
.productphone .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.productphone .top h2 {
    position: relative;
    font-size: 35px;
    color: #000;
    line-height: 35px;
    height: 35px;
    color: transparent;
    -webkit-text-stroke: 1px #ececec;  
}
.productphone .top h2 span {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
    line-height: 30px;
    color: #000;
    -webkit-text-stroke: 0px #ececec;  
    font-weight: bold;
}

.productphone .top .more {
    display: flex;
    align-items: center;
    height: 26px;
    width: 99px;
    background-color: #fff;
}
.productphone .top .more i {
    font-style: normal;
    width: 72px;
    background-color: #23438c;
    height: 26px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    font-size: 12px;
}
.productphone .top .more span {
    width: 26px;
    height: 26px;
    margin-left: 1px;
    background-color: #23438c;
    color: #fff;
    text-align: center;
    line-height: 26px;
    font-size: 8px;
}
.productphone .des {
    font-size: 12px;
    line-height: 30px;
    color: #666;
}   
.productphone .prophonenav {
    display: flex;
    margin-top: 30px;
    width: 100%;
    height: 35px;
    overflow: hidden;
}
.productphone .prophonenav a {
    display: flex;
    justify-content: space-between;
    width: calc((100% - 30px)/3);
    height: 100%;
    border-bottom: 1px solid #e7e7e7;
    margin-right: 15px;
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
}
.productphone .prophonenav a span {
    color: #b4b4b4;
}
.productphone .prophonenav a.active {
    color: #23438c;
    border-bottom: 1px solid #23438c;
}
.productphone .prophonenav a.active span {
    color: #23438c;
}

.prophoneSwiper {
    position: relative;
    display: none;
    margin-top: 34px;
    height: 325px;
    background-color: #f7f7f7;
    overflow: hidden;
    --swiper-theme-color: #b4b4b4;/* 设置Swiper风格 */
    --swiper-navigation-size: 12px;/* 设置按钮大小 */
}
.prophoneSwiper .swiper-slide {
    width: 100%;
    height: 100%;
    padding: 0px 15px;
}
.prophoneSwiper .swiper-button-next,.prophoneSwiper .swiper-button-prev{
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.prophoneitem {
    display: block;
    width: 100%;
    height: 100%;
}
.prophoneitem .pic {
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.prophoneitem .pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.prophoneitem h2 {
    margin-top: 10px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.prophoneitem p {
    height: 24px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 24px;
    color: #666666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/* 行业应用 */
.hyweb {
    padding: 100px 0;
    width: 100%;
    background-image: url(../images/hybg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.hyweb .w {
    background-color: transparent;
}
.hyweb .top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.hyweb .top .left .tit {
    position: relative;
    height: 70px;
    width: 100%;
    font-size: 70px;
    line-height: 70px;
    color: transparent;
    -webkit-text-stroke: 1px #ececec;  
}
.hyweb .top .left .tit span {
    position: absolute;
    left: 0;
    font-size: 40px;
    color: #000000;
    font-weight: bold;
    -webkit-text-stroke: 0px #ececec;  
}
.hyweb .top .left .des {
    margin-top: 20px;
    font-size: 18px;
    color: #666666;
}
.hyweb .top .more {
    display: flex;
    align-items: center;
    height: 52px;
    width: 197px;
    background-color: #fff;
}
.hyweb .top .more i {
    font-style: normal;
    width: 144px;
    background-color: #23438c;
    height: 52px;
    line-height: 52px;
    text-align: center;
    color: #fff;
    font-size: 16px;
}
.hyweb .top .more span {
    width: 52px;
    height: 52px;
    margin-left: 1px;
    background-color: #23438c;
    color: #fff;
    text-align: center;
    line-height: 52px;
    font-size: 16px;
}
.hywebmain {
    margin-top: 60px;
    display: flex;
    width: 100%;
    height: 530px;
}
.hywebmain .hywebitem {
    position: relative;
    height: 100%;
    width: 100px;
    transition: all 1.0s;
    margin-right: 10px;
}
.hywebmain .hywebitem:last-child{
    margin-right: 0;
}
.hywebmain .hywebitem img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hywebmain .hywebitem .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 35px;
}
.hywebmain .hywebitem .mask span {
    font-size: 30px;
    color: #fff;
} 
.hywebmain .hywebitem .mask h2 {
    margin-top: 24px;
    font-size: 34px;
    color: #fff;
    font-weight: bold;
}  
.hywebmain .hywebitem .mask p {
    display: none;
    margin-top: 24px;
    line-height: 28px;
    font-size: 18px;
    color: #ffff;
}
.hywebmain .hywebitem .mask a {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    margin-top: 48px;
    display: none;
}

.hywebmain .hywebitem.active .mask {
    align-items: normal;
}
.hywebmain .hywebitem.active .mask p {
    display: block;
}
.hywebmain .hywebitem.active .mask a {
    display: block;
}
/* 行业应用手机版 */
.hyphone {
    display: none;
    padding: 40px 0;
    width: 100%;
    background-image: url(../images/hybg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.hyphone .w {
    background-color: transparent;
}

.hyphone .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hyphone .top h2 {
    position: relative;
    font-size: 35px;
    color: #000;
    line-height: 35px;
    height: 35px;
    color: transparent;
    -webkit-text-stroke: 1px #ececec;  
}
.hyphone .top h2 span {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
    line-height: 30px;
    color: #000;
    -webkit-text-stroke: 0px #ececec;  
    font-weight: bold;
}
.hyphone .top .more {
    display: flex;
    align-items: center;
    height: 26px;
    width: 99px;
    background-color: #fff;
}
.hyphone .top .more i {
    font-style: normal;
    width: 72px;
    background-color: #23438c;
    height: 26px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    font-size: 12px;
}
.hyphone .top .more span {
    width: 26px;
    height: 26px;
    margin-left: 1px;
    background-color: #23438c;
    color: #fff;
    text-align: center;
    line-height: 26px;
    font-size: 8px;
}
.hyphone .des {
    font-size: 12px;
    line-height: 30px;
    color: #666;
}  
.hyphonSwiper {
    position: relative;
    margin-top: 25px;
    height: 280px;
    overflow: hidden;
    --swiper-theme-color: #23438c;

}
.hyphonSwiper .swiper-slide {
    padding-bottom: 26px;
}
.hyphonSwiper .pic {
    position: relative;
    height: 100%;
    width: 100%;
}
.hyphonSwiper .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hyphonSwiper .pic .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 26px;
    padding-top: 35px;
    padding-right: 44px;
}
.hyphonSwiper .pic .mask span {
    font-size: 20px;
    color: #fff;
}
.hyphonSwiper .pic .mask h2 {
    margin-top: 12px;
    font-weight: bold;
    font-size: 17px;
    color: #fff;
}
.hyphonSwiper .pic .mask p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
}
.hyphonSwiper .pic .mask a {
    display: block;
    margin-top: 20px;
    color: #fff;
    font-size: 12px;
}



/* 对于小屏幕设备（手机等） */
@media only screen and (max-width: 600px) {
    .swiperVideo {
        height: 28vh;
    }
    .aboutWeb{
        display: none;
    }
    .aboutphone {
        display: block;
    }
    .deswrap {
        padding-top: 40px;
        padding-bottom: 50px;    
        background-image: url(../images/desphonebg.jpg);
    }
    .deswrap .desSwiper  {
        margin-bottom: 30px;
    }
    .deswrap .toolBar {
        height: 86px;
    }
    .deswrap .toolBar .baritem::after  {
        width: 25px;
    }
    .deswrap .toolBar .baritem span {
        font-size: 22px;
    }
    .deswrap .toolBar .baritem  i {
        font-size: 12px;
    }

    .deswrap .main {
        width: 100%;
    }
    .deswrap h2  {
        font-size: 35px;
        height: 35px;
        line-height: 35px;    
    }
    .deswrap h2 span {
        font-size: 22px;
    }
    .deswrap h3 {
        font-size: 12px;
    }
    .deswrap p  {
        font-size: 14px;
        line-height: 24px;
        margin-top: 40px;
    }
    .productweb {
        display: none;
    }
    .productphone {
        display: block;
    }
    .hyweb {
        display: none;
    }
    .hyphone {
        display: block;
    }
}
/* 对于中等屏幕设备（平板等） */
@media only screen and (min-width: 601px) and (max-width: 1199px) {
    .swiperVideo {
        height: 50vh;
    }
    .aboutWeb{
        display: none;
    }
    .aboutphone {
        display: block;
    }
    .deswrap {
        padding-top: 40px;
        padding-bottom: 50px;    
        background-image: url(../images/desphonebg.jpg);
    }
    .deswrap .desSwiper  {
        margin-bottom: 30px;
    }
    .deswrap .toolBar {
        height: 86px;
    }
    .deswrap .toolBar .baritem::after  {
        width: 25px;
    }
    .deswrap .toolBar .baritem span {
        font-size: 22px;
    }
    .deswrap .toolBar .baritem  i {
        font-size: 12px;
    }
    .deswrap .main {
        width: 100%;
    }
    .deswrap h2  {
        font-size: 35px;
        height: 35px;
        line-height: 35px;    
    }
    .deswrap h2 span {
        font-size: 22px;
    }
    .deswrap h3 {
        font-size: 12px;
    }
    .deswrap p  {
        font-size: 14px;
        line-height: 24px;
        margin-top: 40px;
    }

    .productweb {
        display: none;
    }

    .productphone {
        display: block;
    }

    .hyweb {
        display: none;
    }
    .hyphone {
        display: block;
    }

}