/* ===================首页样式========================== */
.top-banner {
    width: 100%;
    /* height:calc(100vh - 96px); */
    position: relative;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: calc(100vh - 96px);
}

.banner-img img {
    width: 100%;
    object-fit: cover;
}

.banner-img img.none-mb {
    height: 100vh;
}

.banner-img img.none-pc-pad {
    min-height: 440px;
}

.banner-mp4 {
    width: 100vw;
    height: calc(100vh - 96px);
    object-fit: cover;
}

.banner-mp4 video {
    height: 100%;
}

.play-img {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    cursor: pointer;
    z-index: 9;
}

.banner-cont {
    position: absolute;
    z-index: 4;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    color: #fff;
}

.banner-cont .text {
    max-width: 80%;
    line-height: 1.8;
    font-weight: 300;
}

.banner-cont .link {
    display: flex;
    align-items: center;
    width: 196px;
    height: 48px;
    border-radius: 4px;
    border: 1px solid #fff;
    transition: all .4s ease;
    justify-content: center;
}

.banner-cont .link span {
    padding-right: 18px;
    background: url('../images/common/right1.png') no-repeat right center/14px auto;
}

.banner-cont .link:hover {
    background: #119cda;
}
.banner-cont .link2{
    border-radius: 24px;
}
.top-banner .swiper-pagination {
    bottom: 36px;
}

.top-banner .swiper-pagination-bullet {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, .5);
    opacity: 1;
    margin: 0 10px !important;
    position: relative;
    border-radius: 0;
}

.top-banner .swiper-pagination-bullet:before {
    content: "";
    width: 0;
    height: 100%;
    background: #119cda;
    position: absolute;
    top: 0;
    left: 0;
}

.top-banner .swiper-pagination-bullet-active.swiper-pagination-bullet {
    background: #fff;
}

.top-banner .swiper-pagination-bullet-active.swiper-pagination-bullet:before {
    animation: bulletLine 4s linear both .8s;
}

.top-banner .swiper-pagination-bullet-active.oneBullet:before {
    animation: bulletLine 3.8s linear both 0s;
}

@keyframes bulletLine {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* 效果 */
.banner-cont .text,
.banner-cont .link {
    opacity: 0;
}

.swiper-slide-active .banner-cont .text {
    animation: bannerUp 1s ease both 1s;
}

.swiper-slide-active .banner-cont .link {
    animation: bannerUp 1s ease both 1.1s;
}

.oneSlide .banner-cont .text {
    animation: bannerUp 1s ease both .4s;
}

.oneSlide .banner-cont .link {
    animation: bannerUp 1s ease both .5s;
}

@keyframes bannerUp {
    0% {
        opacity: 0;
        transform: translateY(120px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-banner .swiper-slide {
    overflow: hidden;
    position: relative;
}

.top-banner .swiper-slide img {
    width: 100%;
    object-fit: cover;
    transform: matrix(1, 0, 0, 1, 0, 0);
    transition: all 0.4s ease 1.2s;
}

.top-banner .swiper-slide-active img {
    /* transition-delay: 0.4s !important;
    transform: matrix(1.06, 0, 0, 1.06, 0, 0);
    transition: all 4s ease; */
}

.home-title {
    font-size: 26px;
    font-weight: 400;
    color: #151515;
    text-transform: uppercase
}

.home-title-line {
    width: 62px;
    height: 5px;
    background: #119cda;
    margin-top: 20px;
}

.home-title-desc {
    font-size: 16px;
    font-weight: normal;
    color: #151515;
    opacity: 0.8;
    margin-top: 35px;
    text-transform: uppercase
}

.banner-left,
.banner-right {
    width: 50px;
    height: 50px;
    cursor: pointer;
    outline: none;
    z-index: 9;
}

.home-cate-list {
    margin: 30px 0 50px 0;
    overflow-x: auto;
}

.b-shop-item {
    display: flex;
    width: 32%;
    max-width: 780px;
    background: #F5F6F7;
    padding: 46px 36px;
    box-sizing: border-box;
    margin-bottom: 40px;
    position: relative;
}

.b-shop-item:last-child,
.b-shop-item:nth-last-child(2) {
    margin-bottom: 0;
}

.b-shop-img {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.b-shop-left {
    max-width: 340px;
    /* height: 230px; */
    align-items: flex-start;
    position: relative;
    z-index: 9;
    color: #fff;
}

.b-shop-title {
    font-size: 24px;
    /* color: #2A2A2A; */
    margin-bottom: 10px;
    font-weight: bold;
}

.b-shop-title-en {
    font-size: 22px;
    /* color: #838383; */
    /* opacity: 0.6; */
    text-transform: uppercase;
}

.b-shop-title2 {
    font-size: 18px;
    color: #2A2A2A;
    margin-top: 30px;
}

.b-shop-more {
    cursor: pointer;
    /* color: #333333; */
}

.more-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.b-shop-item:hover .more-icon {
    background-image: url(images/common/more_ac.png);
}

.b-shop-desc {
    font-size: 14px;
    font-weight: 400;
    color: #63696F;
    margin-top: 22px;
}

.home-new-cont {
    box-sizing: border-box;
    top: 15%;
    left: 35%;
    z-index: 1;
    align-items: flex-start;
}

.home-new-b-desc,
.home-new-b-title {
    color: #fff;
    font-weight: 300;
}

.home-odipie-left {
    width: 735px;
    max-width: 30%;
}

.home-sub-title {
    font-size: 24px;
    font-weight: normal;
    color: #666;
    text-transform: uppercase;
    margin: 0px 0 25px 0;
}

.home-desc-p p {
   /* text-align: justify;*/
    font-size: 16px;
    color: #666666;
    margin-top: 30px;
    line-height: 1.8;
}

.home-odipie-list {
    padding: 100px;
    background: #F5F6F7;
}

.home-odipie-img {
    width: 1197;
    max-width: 69%;
}

.home-bg {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    object-fit: cover;
}

.home-num-list {
    margin-top: 20px;
}

.home-num-item {
    width: 50%;
    font-size: 15px;
    color: #151515;
    font-weight: 400;
    margin-top: 40px;
}

.home-num-item.w-auto {
    width: auto;
}

.nums-r span {
    font-size: 30px;
    line-height: 1;
}

.home-num-item p {
    color: #151515;
    line-height: 2;
    opacity: 0.6;
}

.home-item-nums {
    font-size: 50px;
    line-height: 1;
    margin-right: 5px;

}

.news-more {
    font-size: 18px;
    color: #4B4B4B;
    line-height: 3;
}

.h-news-list {
    width: 48%;
}

.border-b {
    border-bottom: 2px solid #F9F4ED;
}

.h-news-item-top {
    width: 50%;
    margin-top: 24px;
}

.h-news-time {
    font-size: 20px;
    font-weight: 400;
    color: #555555;
    padding-bottom: 35px;
   /* border-bottom: 2px solid #F9F4ED;*/
    margin-bottom: -29px;
}

.h-news-title {
    color: #555555;
    margin-bottom: 25px;
}

.h-news-desc {
    color: #76767F;
    line-height: 25px;
    margin-bottom: 25px;
}

.h-news-item {
    padding: 27px 0;
    border-bottom: 2px solid #F9F4ED;
}

.h-n-time {
    width: 87px;
    height: 87px;
    background: #F5F7F7;
    margin-right: 20px;
    font-size: 16px;
    color: #555555;
}

.h-n-right {
    flex: 1
}

.h-n-time p {
    font-size: 34px;
}

.h-n-title {
    max-width: 520px;
    font-size: 15px;
    color: #76767F;
}

.icon-right {
    width: 18px;
    height: 18px;
}

.icon-right2 {
    width: 8px;
    height: 13px;
    margin: 0 15px;
}

.h-news-item:hover {
    transition: all 0.5s;
    background: #F5F7F7;
}

.h-news-item:hover .h-n-title {
    transition: all 0.5s;
    color: #555555;
}

.news-item {
    max-width: 32%;
    margin-right: 2%;
}

.news-item:nth-child(3n+3) {
    margin-right: 0;
}

.news-img {
    max-width: 500px;
}

.news-title {
    font-size: 20px;
    color: #504947;
    margin-top: 26px;
}

.news-label {
    font-size: 14px;
    color: #3979E7;
    margin: 5px 0 10px 0;
}

.news-time {
    font-size: 16px;
    color: #939393;
}

.news-desc {
    font-size: 16px;
    color: #353535;
    line-height: 1.8;
    opacity: 0.75;
    margin-top: 35px;
}

/* 产品页 */
.page-banner-img {
    width: 100%;
    object-fit: contain;
    /* min-height: 660px; */
}

.page-banner-cont {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    color: #fff;
}

.page-router {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 0;
    width: 100%;

    color: #fff;
    font-size: 15px;
}

.page-router-cont {
    height: 60px;
}

.icon-home {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.icon-right1 {
    width: 18px;
    height: 18px;
}

.page-router .icon-right {
    margin: 0 20px;
    width: 18px;
    height: 18px;
}

.page-line {
    width: 100%;
    height: 10px;
    background: linear-gradient(#fff, #f7f7f7);
}

.margin-25 {
    margin: 25px auto;
}

.h-cate-item {
    font-size: 16px;
    color: #727072;
    margin-right: 30px;
    white-space: nowrap;
}

.h-cate-item.ac,
.h-cate-item:hover {
    color: #119cda;
    border-bottom: 3px solid #119cda;
    font-weight: bold;
}

.shop-list-item {
    align-items: flex-start;
    margin-bottom: 130px;
}

.shop-item {
    margin-left: 30px;
}

.shop-item:first-child {
    margin-left: 0;
}

.shop-cate-left {
    max-width: 24%;
    height: 480px;
    align-items: flex-start;
}

.shop-cate-right {
    max-width: 75%;
}

.shop-p-title {
    font-size: 34px;
    font-weight: normal;
    color: #151515;
}

.shop-p-desc {
    font-size: 16px;
    font-weight: normal;
    color: #383838;
    margin-top: 44px;
    line-height: 2;
}

.cate-more-btn {
    width: 140px;
    height: 48px;
    background: #119cda;
    font-size: 18px;
    font-weight: normal;
    color: #FFFFFF;
}

.hover-img {
    /* width: 100%; */
    overflow: hidden;
}

.hover-img img {
    width: 100%;
    object-fit: cover;
    transition: all .6s ease;
    -webkit-transition: all .6s ease;
}

.hover-img img:hover {
    transform: scale(1.05);
    transition: all 2s;
    -webkit-transform: scale(1.05);
    -webkit-transition: all 2s;
}

.shop-item2 {
    width: 32%;
    max-width: 520px;
    margin-bottom: 75px;
    margin-right: 2%;
}

.shop-item2:nth-child(3n+3) {
    margin-right: 0;
}

.shop-img {
    max-width: 520px;
    /* max-height: 458px; */
    /* padding: 60px 0; */
    background: #F1F5F7;
    /* border: 1px solid #F1F5F7; */
}

.shop-inner {
    margin: 130px auto;
    font-size: 16px;
    font-weight: normal;
}

.shop-i-title1 {
    color: #119cda;
    text-transform: uppercase;
}

.shop-i-title2 {
    font-size: 34px;
    color: #000000;
    text-align: center;
    margin: 20px 0 50px 0;
}

.shop-i-desc {
    color: #383838;
    line-height: 1.8;
    margin-bottom: 46px;
}

.shop-i-desc p {
    color: #494949;
    line-height: 1.8;
}

.shop-i-imgs img {
    max-width: 49%;
    max-height: 100%;
    width: 780px;
    height: 400px;
}

.shop-i-desc img {
    display: block;
    max-width: 100%;
    width: auto;
    margin: 60px auto;
}

/* 解决方案 */
.works-inner {
    padding: 130px 0;
    background: #F2F3F5;
}

.works-img {
    width: 100%;
    height: 584px;
}

.works-cont {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    align-items: center;
}

.works-box {
    max-width: 500px;
    padding: 50px 100px 50px 50px;
    background: rgba(0, 0, 0, 0.65);
    z-index: 3;
    color: #FFFFFF;
    line-height: 1.8;
}

.work-cate-list {
    padding: 45px 50px;
    width: 100%;
    box-sizing: border-box;
    bottom: 0;
    left: 0;
    z-index: 3;
    overflow-x: auto;
}

.work-item {
    font-size: 18px;
    color: #fff;
    margin-right: 30px;
    white-space: nowrap;
    line-height: 30px;
    text-transform: uppercase;
}

.work-item.ac,
.work-item:hover {
    color: #119cda;
    border-bottom: 1px solid #119cda;
}

.say-item {
    max-width: 506px;
    width: 98%;
    min-height: 256px;
    background: #F5F6F7;
    padding: 35px;
    box-sizing: border-box;
}

.say-item img {
    width: 74px;
    height: 74px;
    margin-right: 30px;
    border-radius: 50%;
}

.say-name {
    font-size: 18px;
    font-weight: normal;
    color: #2A2A2A;
}

.say-title {
    font-size: 14px;
    font-weight: 400;
    color: #2A2A2A;
    line-height: 1;
    opacity: 0.73;
    margin: 12px 0 26px 0;
}

.say-desc {
    font-size: 15px;
    color: #2A2A2A;
    line-height: 22px;
}

.say-banner {
    padding-bottom: 50px;
}

.say-pagination .swiper-pagination-bullet {
    width: 54px;
    height: 1px;
    background: #E3E4E6;
    margin: 0 !important;
    border-radius: 0;
    opacity: 1;
}

.say-pagination .swiper-pagination-bullet-active {
    background: #119cda;
    height: 3px;
}

.consult-box {
    width: 100%;
    min-height: 615px;
}

.consult-bg {
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
}

.consult-title {
    font-size: 30px;
    color: #FFFFFF;
    line-height: 2;
    text-align: center;
}

.consult-btn {
    width: 325px;
    height: 54px;
    background: #119cda;
    border-radius: 3px;
    font-size: 20px;
    font-weight: normal;
    color: #FFFFFF;
    margin-top: 50px;
}

.consult-btn img {
    width: 26px;
    height: 26px;
    margin-right: 16px;
}

/* 新闻 */
.news-t-img {
    max-width: 780px;
    width: 49%;
    max-height: 450px;
}

.news-right {
    max-width: 780px;
    width: 49%;
    height: 450px;
    /* height: 100%; */
    align-items: flex-start;
}

.news-t-title {
    font-size: 36px;
    font-weight: normal;
    color: #222234;
    line-height: 1.5;
}

.news-t-desc {
    font-size: 16px;
    font-weight: normal;
    color: #939393;
    line-height: 1.8;
    margin: 20px 0;
}

.news-t-btn {
    width: 140px;
    height: 48px;
    background: #119cda;
    font-size: 18px;
    font-weight: normal;
    color: #FFFFFF;
}

.news-list .news-item {
    margin-bottom: 100px;
}

.news-page a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #F0F1F2;
    border-radius: 23px;
    line-height: 45px;
    text-align: center;
    font-size: 20px;
    font-weight: normal;
    color: #303030;
    margin: 0 15px;
}

.news-page a.ac,
.news-page a:hover {
    background: #119cda;
    color: #fff;
}

.news-d-page {
    padding-top: 6px;
    position: relative;
    color: #4E4E4E;
}

.news-head {
    background: #F7F8FA;
    padding-bottom: 1px;
}

.news-head .page-line {
    background: linear-gradient(#F7F8FA, #f2f2f2);
}

.news-head .news-t-title {
    margin: 90px 0 20px 0;
}

.news-head .news-t-tme {
    margin-bottom: 90px;
}

.news-head .news-t-tme span {
    margin-right: 30px;
}

.news-detail-desc {
    margin: 78px auto;

}

.news-detail-desc p {
    margin: 20px auto;
    font-size: 16px;
    font-weight: normal;
    color: #666666;
    line-height: 1.8;
}

.news-detail-desc img {
    width: auto;
    max-width: 100%;
    display: block;
    margin: 64px auto;
}

.news-b-box {
    width: 584px;
    /* height: 116px; */
    padding: 40px 44px;
    box-sizing: border-box;
    background: #F7F9FA;
    font-size: 16px;
    font-weight: normal;
    color: #4A4A4A;
}

.news-b-box b {
    flex-shrink: 0;
    margin-right: 15px;
}

.news-b-box p {
    line-height: 1.5;
}

/* 关于我们 */
.about-cont,
.about-year-cont {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-b-year {
    font-size: 68px;
    color: #F1F5F7;
    line-height: 42px;
    text-transform: uppercase;
}

.about-b-title {
    font-size: 22px;
    color: #F1F5F7;
    margin: 30px 0 20px 0;
}

.about-b-desc {
    max-width: 380px;
    font-size: 16px;
    color: #F1F5F7;
    line-height: 24px;
}

.about-year-cont {
    align-items: center;
}

.about-item {
    font-size: 16px;
    font-weight: normal;
    color: #F1F5F7;
    margin-top: 50px;
    align-items: center;
    cursor: pointer;
}

.about-item span {
    display: none;
    margin-left: 26px;
}

.about-item.ac {
    font-size: 18px;
    font-weight: bold;
}

.about-item.ac span {
    display: block;
}

.about-item .year-circle {
    width: 38px;
    height: 38px;
    background: transparent;
    border-radius: 50%;
    margin: 0 26px;
}

.year-circle i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #FFFFFF;
    text-align: center;
    line-height: 38px;
}

.about-item.ac .year-circle {
    border: 1px solid #DADADA;
}

.homorary-img {
    max-width: 298px;
    max-height: 422px;
}

.about-b-box {
    min-height: 760px;
}

.about-b-title2 {
    font-size: 40px;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 520px;
}

.about-b-desc {
    max-width: 630px;
    font-size: 18px;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 32px;

    margin-bottom: 40px;
}

.contract-left {
    max-width: 620px;
}

.contract-title {
    color: #1A1A1A;
    margin-bottom: 20px;
}

.contract-title:first-child {
    margin-top: 0 !important;
}

.contract-cell {
    font-size: 16px;
    font-weight: normal;
    color: #303030;
    line-height: 26px;
    margin-bottom: 12px;
}

.contract-cell img,.icon-eamil {
    width: 28px;
    height: 28px;
    margin-right: 12px;
}

.contract-right {
    width: 605px;
    /* height: 420px; */
    padding: 10px;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 2px solid #F2F2F2;
    border-radius: 5px;
}

.contract-right #map {
    width: 100%;
    height: 420px;
}

.contract-right #map .amap-logo,
.contract-right #map .amap-copyright {
    display: none !important;
}

.contract-box {
    padding: 70px 0;
    background: #F5F6F7;
}

.tech-contact-items {
    width: 444px;
    /* height: 50px; */
    padding: 18px;
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 4px;
    font-size: 16px;
    font-weight: normal;
    color: #222234;
    display: flex;
    align-items: center;
    margin-bottom: 58px;
}

.tech-contact-items p {
    width: 100px;
}

.tech-contact-items input {
    flex: 1;
}

.tech-contact-items.lg {
    width: 100%;
}

.tech-contact-items.textarea {
    /* height: 140px; */
    align-items: flex-start;
}

.tech-contact-items textarea {
    flex: 1;
    height: 100px;
    border: none
}

.tech-contact-submit {
    width: 481px;
    height: 50px;
    background: #119cda;
    border-radius: 4px;
    font-size: 18px;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 50px;
    text-align: center;
}

.contact-b-title {
    font-size: 36px;
    font-weight: normal;
    color: #222234;
    margin-bottom: 75px;
}

.map-bg {
    padding: 120px 0 100px 0;
    background: #F7F9FA;
}

.map-box-inner {
    max-width: 76%;
    /* overflow: auto; */
}

.map-left {
    /* width: 1067px;
    height: 530px; */
    width: 1197px;
    height: 598px;
    flex-shrink: 0;
    max-width: 100%;
    max-height: 100%;
}
.map-left img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.map-city {
    position: absolute;
    color: #fff;
    width: 14px;
    height: 14px;
    background: rgba(38, 105, 221, 0.15);
    border-radius: 50%;
    cursor: pointer;
    animation: opcityan 0.7s infinite;
}

@keyframes opcityan {

    0% {

        background: rgba(38, 105, 221, 0.15);
    }

    100% {

        background: transparent;
    }
}

.map-city .dotted {
    /* width: 8px;
    height: 8px;
    background: #119cda;
    border-radius: 50%;
    animation:opcityan 0.7s infinite; */
}

.map-hover {
    display: none;
    padding: 20px;
    min-width: 150px;
    font-size: 16px;
    color: #333;
    position: absolute;
    top: -70px;
    left: 0;
    background: #fff;
    border-radius: 3px;
    z-index: 99;
}

.map-hover::after {
    content: '';
    position: absolute;
    left: 3px;
    bottom: -5px;
    width: 6px;
    height: 6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}

.map-city:hover .map-hover {
    display: block;
}

.map-right {
    max-width: 22%;
    width: 360px;
}

.map-cell {
    padding: 50px 0;
    border-bottom: 1px solid #E8EBF1;
}

.map-title {
    color: #333333;
}

.map-desc {
	word-break: break-all;
    color: #454545;
    line-height: 30px;
    opacity: 0.8;
    margin-top: 10px;
}

.company-title {
    color: #333333;
}

.company-test {
    color: #454545;
    line-height: 30px;
    opacity: 0.8;
    margin-top: 15px;
}

.company-imgs {
    width: 20%;
}

.company-list img {
    max-width: 190px;
    max-height: 110px;
    width: auto;
    height: auto;
    /* margin-right: 92px; */
    margin-bottom: 20px;
}

.company-list img:nth-child(6n+6) {
    margin-right: 0;
}

/* 商品详情 */
.shop-d-box {
    padding: 40px;
    background: #fff;
}

.shop-left {
    width: 60%;
    max-width: 700px;
    margin-right: 44px;
}

.left-img {
    max-width: 700px;
    height: 543px;
}

.big-img {
    max-width: 700px;
    height: 543px;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #E8E8E8;
}

.big-img img {
    height: auto;
}

.to-big-icon {
    width: 30px !important;
    height: 30px !important;
    bottom: 0;
    right: 0;
}


/* 遮罩层 */

.mask {
    display: none;
    width: 200px;
    height: 200px;
    position: absolute;
    background-color: rgba(220, 220, 220, 0.5);
    /*top:0px;  //内联设置了动态的top，left
    left:0px;*/
}


/* 左侧隐藏大图 */

.big {
    display: none;
    width: 700px;
    height: 540px;
    overflow: hidden;
    position: absolute;
    top: 0px;
    left: 700px;
    border: 1px solid #EDEEF0;
    background: #fff;
    z-index: 999;
}

.big_img {
    width: 1400px !important;
    height: 1052px !important;
    position: absolute;
    max-width: 200% !important;
    max-height: 200% !important;
}

.small-list {
    overflow-x: auto;
    max-width: 700px;
}

.small-list::-webkit-scrollbar {
    display: none;
}

.samll-rel {
    max-width: 700px;
}

.prob-pic-btn {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    display: block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%
}

.prob-pic-btn.prev {
    left: -40px;
}

.prob-pic-btn.next {
    right: -40px;
}

.small-img {
    width: 120px;
    height: 92px;
    box-sizing: border-box;
    margin-right: 25px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #E8E8E8;
}

.big-img .little,
.small-img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    align-self: center;
}

.small-img.ac {
    border: 1px solid #119cda;
}

.shop-right {
    flex: 1;
    height: 543px;
    border-bottom: 1px solid #E8E8E8;
    min-width: 35%;
}

.shop-name {
    /* padding-top: 60px; */
    color: #2A2A2A;
    line-height: 1.5;
}

.shop-sub-title {
    font-size: 14px;

    color: #63696F;
    line-height: 42px;
    margin: 5px 0 32px 0;
}

.shop-desc {
    padding-top: 45px;
    border-top: 1px solid #E8E8E8;
    font-size: 16px;
    font-weight: normal;
    color: #666666;
    line-height: 32px;
    margin-bottom: 50px;
    white-space: pre-line;
}

.shop-kefu {
    width: 198px;
    height: 50px;
    background: #119cda;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
}

.shop-kefu img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.shop-d-cont {
    /* background: #fff; */
    margin: 60px auto;
}

.shop-d-left {
    width: 65%;
    max-width: 950px;
}
.shop-d-cate{
    width: 30%;
}
.shop-d-desc p {
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.8;
}

.shop-d-desc ul ul {
    margin-left: 20px;
}

.shop-d-desc li {
    list-style: disc;
    line-height: 1.8;
}

.shop-d-desc img {
    width: auto!important;
    height: auto!important;
    max-width: 100%!important;
    max-height: 100%!important;
}
.shop-d-desc table {
    border-collapse: collapse;
    border: 1px solid #A6BBC3;
    width: 100%;
    /* margin: 0 auto; */
    border-spacing: 0;
    overflow: auto;
    /* display: block; */
}

.shop-d-desc tbody {
    overflow-x: scroll;
}

.shop-d-desc tr {
    text-align: left;
    vertical-align: top;
    border: 1px solid rgba(166, 187, 195, 0.34);
}

.shop-d-desc tr:nth-child(2n+1) {
    background: #F7F9FC;
}

.shop-d-desc td {
    padding: 12px;
    font-size: 14px;
    /* white-space: break-spaces; */
    /* display: inline-block; */
    border-right: 1px solid rgba(166, 187, 195, 0.34);
}
.shop-d-desc td:last-child{
    border-right: none;
}
.shop-d-desc .table-bgcolor {
    width: 35%;
}

.shop-d-desc .td1 {
    width: 60%;
}
.detail-cont01 {
    padding-top: 0px;
}

.detail-cont {
    padding: 60px 0 50px 0;
    border-bottom: 2px solid #eceef4;
}

.detail-cont:last-child {
    border-bottom: none;
}

.shop-cate-item {
    width: 100%;
    max-width: 444px;
    height: 56px;
    background: #F5F7FA;
    text-align: center;
    line-height: 56px;
    font-size: 16px;
    color: #4E4E4E;
    margin-bottom: 14px;
}

.shop-cate-item.ac {
    color: #119cda;
    border-top: 1px solid #119cda;
}

.detail-table {
    border-collapse: collapse;
    /* border: 1px solid #A6BBC3; */
    width: 100%;
    margin: 0 auto;
    border-spacing: 0;
    overflow: auto;
    /* display: block; */
}

.detail-table tbody {
    overflow-x: scroll;
}

.detail-table tr {
    text-align: left;
    vertical-align: top;
    /* border: 1px solid rgba(166, 187, 195, 0.34); */
}

.detail-table tr:nth-child(2n+1) {
    background: #F7F9FC;
}

.detail-table td {
    padding: 12px;
    font-size: 14px;
    white-space: break-spaces;
    display: inline-block;

}

.detail-table .table-bgcolor {
    width: 35%;
}

.detail-table .td1 {
    width: 60%;
}
.down-title1{
    font-size: 40px;
    font-weight: bold;
    color: #2A2A2A;
    padding-top: 0;
}
.down-title {
    font-size: 30px;
    font-weight: bold;
    color: #2A2A2A;
    margin-bottom: 32px;
}

.solu-item {
    width: 30%;
    max-width: 485px;
    margin-right: 5%;
    margin-bottom: 50px;
}
.solu-item2 {
    width: 32%;
    max-width: 565px;
    margin-right: 2%;
    margin-bottom:72px;
    background: #f5f5f5;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
}
.solu-item:nth-child(3n+3),.solu-item2:nth-child(3n+3) {
    margin-right: 0;
}

.solu-title {
    font-size: 16px;
    color: #333333;
    margin: 30px 0 40px 0;
}
.solu-title2 {
    /* height: 100px; */
    padding: 20px 32px;
    font-size: 20px;
    color: #4F4F4F;
}
.solu-item2 img{
    max-height: 300px;
}
.page-tabs {
    font-size: 14px;
    font-weight: bold;
    color: #7A7A7A;
    margin-bottom: -10px;
}

.tab-left {
    padding-bottom: 3px;
}

.page-tabs a {
    color: #7A7A7A;
}

.tab-item {
    margin-left: 30px;
    padding: 35px 0;
}

.tab-item.ac,
.tab-item:hover {
    border-bottom: 3px solid #119cda;
    color: #119cda;
}

.year-bg {
    width: 100%;
    max-height: 260px;
    bottom: 0;
    left: 0;
    z-index: 1;
    object-fit: fill;
}

.year-banner {
    margin: 100px auto;
    padding-bottom: 160px;
}

.year-item {
    /* width: 25%; */
    border-left: 1px solid #EAEBED;
    height: 250px;
    padding-left: 20px;
    margin-left: 20px;
    overflow: inherit;
}

.year-item::before {
    content: '';
    position: absolute;
    left: -11px;
    bottom: 0;
    width: 22px;
    height: 22px;
    background: rgba(38, 105, 221, 0.33);
    border-radius: 50%;
}

.year-item::after {
    content: '';
    position: absolute;
    left: -5px;
    bottom: 6px;
    width: 10px;
    height: 10px;
    background: #119cda;
    border-radius: 50%;
}
.year-desc{
    height: 48px;
}
.year-img{
    max-width: 238px;
    max-height:100%;
    margin-top: 20px;
}
.honors-cont {
    padding: 100px 0 200px 0;
    background: linear-gradient(#F5F7F7, #fff);
}

.honors-item {
    max-width: 376px;
    width: 98%;
}

.honors-img {
    max-width: 376px;
    max-height: 376px;
    width: 98%;
    height: 100%;
    background: #fff;
}

.honors-img img {
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 300px;
}

.honors-title {
    text-align: center;
    font-size: 16px;
    color: #2A2A2A;
    margin-top: 20px;
}

/* 加入我们 */
.job-cont {
    background: #F7F9FA;
    padding: 60px 0;
}

.job-cont-inner {
    align-items: flex-start;
}

.job-left {
    width: 69%;
    max-width: 1104px;
}

.job-top-card {
    padding: 40px;
    margin-bottom: 8px;
    background: #fff;
    box-sizing: border-box;
}

.job-t-title {
    font-size: 24px;
    color: #171717;
}

.job-t-desc {
    font-size: 14px;
    color: #333333;
    margin-top: 14px;
    line-height: 1.8;
}

.job-card {
    padding: 0 30px;
    background: #fff;
    box-sizing: border-box;
}

.job-item {
    padding: 30px 0;
    border-bottom: 2px solid #F7F6F2;
}

.job-i-left {
    width: 40%;
}

.job-name {
    font-size: 20px;
    color: #363431;
}

.job-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    white-space: nowrap;
}

.job-desc span {
    margin-right: 20px;
}

.job-time {
    font-size: 16px;
    color: #171717;
}

.job-show-btn {
    padding: 0 8px;
    border-radius: 3px;
    height: 28px;
    background: #119cda;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
}

.job-intro {
    display: none;
    padding: 35px 0 0;
    border-top: 2px solid #F7F6F2;
    margin-top: 30px;
}

.job-intro p {
    font-size: 14px;
    color: #242526;
    line-height: 2;
    margin-bottom: 20px;
}

.job-intro p:last-child {
    margin-bottom: 0;
}

.job-intro h4 {
    font-size: 16px;
    font-weight: bold;
    color: #242526;
    margin-bottom: 20px;
}

.job-right {
/*    text-align: justify;*/
    max-width: 444px;
    width: 29%;
    padding: 38px 33px;
    box-sizing: border-box;
    background: #FFFFFF;
    font-size: 14px;
    color: #666666;
    line-height: 2;
}

.job-right p{line-height: 28px;margin-top: 10px;}

/* .job-right img {
    display: block;
    width: 96px;
    height: 34px;
    margin-bottom: 10px;
} */

.job-right .email {
    color: #119cda;
    margin-bottom: 20px;
}

.live-cont {
    max-height: 450px;
    background: #F5F5F5;
}

.live-cont img,
.live-right {
    width: 50%;
}

.live-right {
    padding: 0 80px;
    box-sizing: border-box;
}

.live-p-title {
    color: #343434;
    margin-bottom: 30px;
}

.live-p-desc {
    color: #949496;
    line-height: 1.8;
}

.banner-b-left,
.banner-b-right {
    display: none;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 40%;
    left: -60px;
    cursor: pointer;
    outline: none;
    z-index: 9;
}

.banner-b-right {
    left: auto;
    right: -60px;
}

.c-b-item .c-b-img {
    margin-bottom: 26px;
    max-width: 500px;
    width: 98%;

}

.c-b-date {
    display: none;
    font-size: 22px;
    font-weight: bold;
    color: #606060;
    margin-bottom: 10px;
}

.c-b-desc {
	display: none;
    font-size: 15px;
    color: #504947;
}

@media all and (max-width:1599px) {

    .work-cate-list {
        justify-content: flex-start;
    }

    .news-right {
        height: auto;
    }
}

@media screen and (max-width:1000px) {

    .banner-img,
    .banner-img img {
        height: 600px;
    }

    .banner {
        padding-top: 50px;
    }

    .home-title {
        font-size: 20px;
    }

    .home-cate-list {
        margin: 20px 0 30px 0;
    }

    .b-shop-item {
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
    }

    .b-shop-item:last-child,
    .b-shop-item:nth-last-child(2) {
        margin-bottom: 20px;
    }

    .b-shop-more {
        margin-top: 20px;
    }

    .banner-left,
    .banner-right {
        width: 40px;
        height: 40px;
    }

    .home-odipie-list {
        padding: 0;
        margin-top: 0;
    }

    .home-sub-title {
        margin: 0px 0 25px 0;
        font-size: 16px;
    }

    .home-num-list {
        margin-top: 30px;
        align-items: flex-start;
    }

    .home-num-item {
        width: 50%;
        margin-bottom: 20px;
        font-size: 13px;
        margin-top: 0;
    }

    .home-item-nums {
        font-size: 26px;
        line-height: 1.2;
    }

    .nums-r span {
        font-size: 20px;
    }

    .home-num-item p {
        line-height: 1.5;
    }

    .h-news-item-top,
    .h-news-list {
        width: 100%;
        margin-top: 15px;
    }

    .news-item {
        max-width: 100%;
        width: 100%;
        margin-bottom: 35px;
    }

    .news-title {
        font-size: 16px;
        margin-top: 20px;
    }

    .news-time {
        font-size: 15px;
        margin-top: 10px;
    }

    .h-news-time {
        font-size: 16px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .h-news-title, .h-news-desc {
        margin-bottom: 15px;
    }
    .news-desc {
        font-size: 15px;
        line-height: 1.5;
        opacity: 0.75;
        margin-top: 15px;
    }

    .indal-list ul {
        margin-left: 0;
        margin-top: -12px;
        flex-wrap: wrap;
    }

    .indal-list li img,
    .indal-list li {
        height: auto;
        position: relative;
        width: 100% !important;

    }

    .indal-list li {
        margin-top: 12px;
        margin-left: 0;
        top: 0 !important;
    }

    .indal-cont {
        bottom: 10%;
        padding: 0 20px;
    }

    .indal-hint {
        display: none;
    }

    .indal-cont .name,
    .indal-cont .text,
    .indal-cont .link {
        opacity: 1;
        animation: none !important;
    }

    .product-cate-list {
        margin-bottom: 10px;
    }

    .shop-p-title {
        font-size: 20px;
    }

    .home-title-line {
        width: 48px;
        height: 3px;

        margin-top: 10px;
    }

    .shop-p-desc {
        font-size: 14px;
        margin-top: 20px;
        line-height: 1.5;
    }

    .shop-cate-left {
        max-width: 100%;
        height: auto !important;
    }

    .shop-cate-right {
        max-width: 100%;
    }

    .cate-more-btn {
        width: 110px;
        height: 35px;
        margin: 20px 0;
        font-size: 16px;
    }

    .shop-item {
        margin-left: 10px;
    }

    .b-shop-title {
        font-weight: bold;
        font-size: 14px;
        margin-top: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .b-shop-title-en {
        font-size: 14px;
    }

    .more-icon {
        width: 30px;
        height: 30px;
    }

    .shop-list-item {
        margin-bottom: 42px;
    }

    .shop-cate-right {
        overflow-x: auto;
    }

    .shop-inner {
        margin: 42px auto;
    }

    .shop-i-title2 {
        font-size: 20px;
        margin: 10px 0 25px 0;
    }

    .shop-i-imgs {
        width: 100%;
    }

    .shop-i-imgs img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .shop-item2 {
        width: 48%;
        margin-bottom: 30px;
    }

    .b-shop-desc {
        font-size: 12px;
        margin-top: 8px;
    }

    .works-inner {
        padding: 42px 0;
    }

    .works-img {
        height: 300px;
    }

    .say-item {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .say-item img {
        width: 50px;
        height: 50px;
        margin-right: 20px;
    }

    .say-title {
        font-size: 14px;
        margin: 12px 0 20px 0;
    }

    .say-desc {
        font-size: 13px;
    }

    .work-cate-list {
        padding: 20px;
    }

    .work-item {
        font-size: 14px;
    }

    .say-banner {
        padding-bottom: 30px;
    }

    .consult-title {
        font-size: 20px;
        line-height: 1.5;
    }

    .consult-box {
        min-height: 200px;
    }

    .consult-title {
        font-size: 20px;
        line-height: 1.5;
    }

    .consult-btn {
        width: 200px;
        height: 40px;
        font-size: 15px;
        margin-top: 40px;
    }

    .consult-btn img {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .works-cont {
        justify-content: center;
    }

    .works-box {
        max-width: 92%;
        padding: 20px;
    }

    .news-t-img img,
    .news-right {
        width: 100%;
        height: 100%;
    }

    .news-t-title {
        font-size: 20px;
        margin-top: 20px;
    }

    .news-t-desc {
        font-size: 14px;
        margin: 10px 0 20px 0;
    }

    .news-t-btn {
        width: 130px;
        height: 38px;
    }

    .news-list .news-item {
        margin-bottom: 30px;
    }

    .news-page a {
        width: 40px;
        flex-shrink: 0;
        height: 40px;
        border-radius: 20px;
        line-height: 40px;
        font-size: 18px;
        margin: 0 8px;
    }

    .news-head .news-t-title {
        margin: 42px 0 20px 0;
    }

    .news-head .news-t-tme {
        margin-bottom: 22px;
    }

    .news-head .news-t-tme span {
        margin-right: 20px;
    }

    .news-head {
        padding-bottom: 20px;
    }

    .news-detail-desc {
        margin: 30px auto;
    }

    .news-detail-desc p {
        margin: 20px auto;
        font-size: 14px;
    }

    .news-detail-desc img {
        margin: 25px auto;
    }

    .news-b-box {
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .home-odipie-left,
    .home-odipie-img {
        width: 100%;
        max-width: 100%;
        margin-top: 30px;
    }

    .home-banner1 {
        height: 220px;
    }

    .home-new-img {
        height: 100%;
    }

    .about-year-cont {
        height: 50px;
        bottom: 0;
        top: auto;
        background: rgba(0, 0, 0, 0.2);
    }

    .about-year-list {
        flex-direction: row;
        justify-content: center;
        display: flex;
        justify-content: flex-start;
        overflow-x: auto !important;
    }

    .about-item {
        font-size: 16px;
        margin-top: 0;
        margin-right: 30px;
        white-space: nowrap;
        color: #fff;
    }

    .about-item.ac {
        font-size: 16px;
    }

    .about-item.ac span {
        display: none;
    }

    .about-cont {
        height: calc(100% - 50px);
    }

    .about-box {
        /* overflow-y: auto; */
        /* max-height: 100%; */
    }

    .about-box::-webkit-scrollbar {
        display: none;
    }

    .about-b-year {
        font-size: 30px;
    }

    .about-b-title {
        margin: 0px 0 10px 0;
    }

    .about-b-desc {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 0;
    }

    .about-item .year-circle {
        width: 20px;
        height: 20px;
        margin: 0 10px;
    }

    .about-img {
        height: 250px;
    }

    .about-b-right {
        margin-top: 10px;
        justify-content: flex-end;
        width: 100%;
    }

    .year-banner {
        margin-bottom: 0;
        padding-bottom: 110px;
    }

    .about-subtitle {
        margin-bottom: 0;
    }

    .mt-42 {
        margin-top: 25px;
    }

    .about-b-box {
        min-height: 400px;
    }

    .about-b-title2 {
        font-size: 26px;
        margin-bottom: 0px;
        max-width: 92%;
        margin-top: 20px;
    }

    .contract-title {
        font-size: 22px;
        line-height: 36px;
    }

    .contract-cell {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 18px;
    }

    .contract-box {
        padding: 42px 0
    }

    .contact-b-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .tech-contact-items {
        width: 100%;
        padding: 10px;
        font-size: 15px;
        margin-bottom: 20px;
    }

    .tech-contact-submit,
    .contract-right {
        width: 100%;
    }



    .page-banner-img {
        min-height: 200px;
        object-fit: cover;
    }

    .solu-item {
        width: 48%;
        margin-bottom: 30px;
        margin-right: 2%;
    }
    .solu-item:nth-child(2n+2){
        margin-right: 0;
    }
    .solu-title {
        margin: 15px 0 0;
    }

    .page-banner-cont {
        height: 100% !important;
    }

    .solu-item .b-shop-more {
        margin-top: 10px;
    }


    .b-shop-title2 {
        margin-top: 10px;
        font-size: 14px;
    }

    .page-router-cont {
        overflow-x: auto;
        white-space: nowrap;
    }

    .shop-d-cont {
        margin: 20px auto;
    }
    .shop-d-box {
        padding: 0;
        background: transparent;
    }
    .shop-left {
        width: 100%;
        margin-right: 0;
    }

    .big-img {
        width: 100%;
        height: 92vw;
    }

    .small-list {
        overflow-x: auto;
        width: 100%;
    }

    .shop-right {
        height: auto;
        margin-top: 20px;
        border-bottom: none;
    }

    .shop-sub-title {
        line-height: 1.5;
        margin: 5px 0 15px 0;
    }

    .shop-desc {
        padding-top: 15px;
        font-size: 14px;
        margin-bottom: 25px;
    }

    .detail-cont {
        padding: 20px 0 20px 0;
    }

    .shop-d-left {
        width: 100%;
    }
    .down-title1{
        font-size: 28px;
    }
    .down-title {
        font-size: 24px;
        font-weight: bold;
        color: #2A2A2A;
        margin-bottom: 10px;
    }

    .shop-d-desc p {
        font-size: 14px;
    }

    .shop-d-cate {
        display: none;
    }

    .about-page .tab-left {
        display: none;
    }

    .home-desc-p p {
        margin-top: 15px;
    }

    .home-num-item.w-auto {
        width: 50%;
    }

    .honors-cont {
        padding: 30px 0;
    }

    .honors-img {
        width: 100%;
        height: 100%;
    }

    .live-cont img,
    .live-right {
        width: 100%;
    }

    .live-right {
        padding: 20px;
    }

    .live-cont {
        max-height: 100%;
    }

    .page-name {
        max-width: 30%;
        overflow: hidden;
        word-break: keep-all;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .year-bg {

        object-fit: cover;
    }

    .map-bg {
        padding: 30px 0;
    }

    .map-box-inner {
        /* transform: scale(0.5); */
        max-width: 100%;
        height: 100%;
        overflow-x: auto;
    }
    .map-right {
        max-width: 100%;
        width: 100%;
    }
    .map-left {
      height: 50vw;
    }

 

    .map-cell {
        padding: 25px 0;
    }

    .company-list {
        justify-content: space-between;
    }
    .company-imgs {
        width: 33%;
    }
    .company-list img {
        width: 100%;
        margin-right: 0;
    }
    .job-left,.job-right{
        width: 100%;
    }
    .tab-list{
        overflow-x: auto;
    }
    .tab-item {
        margin-left: 0;
        margin-right: 20px;
        padding: 15px 0;
        white-space: nowrap;
    }
    .home-new-cont {
        left: 0;
        width: 100%;
        text-align: center;
    }
    .shop-item2:nth-child(3n+3) {
        margin-right: 2%;
    }
    .solu-item2 {
        width: 100%;
        margin-right: 0;
        margin-bottom: 50px;
    }
    .solu-title2{
        height: auto;
        padding: 20px;
        font-size: 18px; 
    }
}