* {
    padding: 0px;
    margin: 0px;
    font-size: 15px;
}

a {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

input,
textarea {
    outline: none;
}

.public {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
}

.public_title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.public_title h5 {
    font-weight: bold;
    font-size: 37px;
    color: #111111;
}

.public_title span {
    font-weight: bold;
    font-size: 67px;
    color: #111111;
    opacity: 0.09;
    text-transform: uppercase;
    position: absolute;
    top: -43px;
}

.public_title i {
    width: 67px;
    height: 3px;
    background: #707070;
    display: block;
    margin-top: 15px;
}

.header {
    width: 100%;
}

.nav {
    width: 100%;
    height: 90px;
    background: rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    box-shadow: 0px 0px 10px 1px #0000002d;
}

.nav .logo {
    height: 80%;
}

.nav .logo img {
    height: 100%;
    display: block;
}

.nav .out {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav .out .right {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav .out .right ul {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 62px;
}

.nav .out .right ul li {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 88px;
}

.nav .out .right ul li:last-child {
    margin-right: 0px;
}

.nav .out .right ul li .title {
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav .out .right ul li.on .title {
    color: #007DD4;
}

.nav .out .right .tel {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav .out .right .tel img {
    width: 29px;
    height: 29px;
    display: block;
    margin-right: 10px;
}

.nav .out .right .tel span {
    font-size: 18px;
    color: #FFF;
    display: block;
}

.nav_pages {
    background: #FFF;
}

.nav_pages .out .right ul li .title {
    color: #444444;
}

.nav_pages .out .right .tel span {
    color: #444444;
}


/* ---------------------- */
/* banner */
.banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner img {
    display: block;
    width: 100%;
     transform: scale(1.3);
    transition: 4s ease;
}

.banner_pages {
    overflow: hidden;
}

.banner_pages img {
    transform: scale(1);
}

.banner .swiper-slide-active  img {
    transform: scale(1);
}

.banner .text {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: right;
    top: 0px;
    left: 0px;
    z-index: 20;
    box-sizing: border-box;
}

.banner .text .public {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.banner .text h5 {
    font-weight: 500;
    font-size: 68px;
    color: #FFF;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    margin-bottom: 59px;
    transform: translateY(100px);
    opacity: 0;
    transition: 0.5s ease;
    transition-delay: 0.4s;
}

.banner .text span {
    font-weight: 400;
    font-size: 46px;
    color: #FFFFFF;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    transform: translateY(100px);
    opacity: 0;
    transition: 0.5s ease;
    transition-delay: 0.6s;
}

.banner .text h5 b {
    font-weight: 500;
    font-size: 68px;
    color: #007DD4;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    transition: 0.5s ease;
    transition-delay: 0.4s;
}

.banner .swiper-pagination {
    width: auto;
    left: 110px;
    bottom: 82px;
}

.banner .swiper-pagination .swiper-pagination-bullet {
    width: 81px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0px 0px 0px 0px;
    margin-right: 10px;
    position: relative;
    opacity: 1;
}

.banner .swiper-pagination .swiper-pagination-bullet::after {
    position: absolute;
    width: 0%;
    height: 100%;
    background: #FFFFFF;
    display: block;
    content: '';
    left: 0px;
    top: 0px;
    transition: 0.5s ease;
}

.banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0px;
}

.banner .swiper-pagination .swiper-pagination-bullet-active::after {
    width: 100%;
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
    width: 61px;
    height: 61px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    top: auto;
}

.banner .swiper-button-next::after,
.banner .swiper-button-prev::after {
    font-size: 14px;
    color: #fff;
}

.banner .swiper-button-next {
    right: 160px;
    bottom: 74px;
}

.banner .swiper-button-prev {
    bottom: 74px;
    left: auto;
    right: 291px;
}

.banner .swiper-slide-active .text h5,
.banner .swiper-slide-active .text span {
    transform: translateY(0px);
    opacity: 1;
}

.banner_pages .public {
    align-items: baseline !important;
}

.banner_pages .text h5 {
    transform: translateY(0);
    opacity: 1;
    text-align: left;
    font-weight: 400;
    font-size: 46px;
    color: #FFFFFF;
    line-height: 100%;
    margin-bottom: 20px;
}

.banner_pages .text span {
    font-weight: 400;
    font-size: 28px;
    color: #FFFFFF;
    transform: translateY(0);
    opacity: 1;
}

/* works_scope */
.works_scope {
    margin-top: 140px;
    margin-bottom: 100px;
}

.works_scope .out {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    margin-top: 60px;
}

/* width: 43.75% ; */
/* width: 17.68%; */
.works_scope .out .box {
    width: 10% ;
    background: #007DD4;
    height: 560px;
    position: relative;
    overflow: hidden;
    transition: 0.5s ease;
    /* margin-right: 1.2% ; */
}

.works_scope .out .box:last-child{
    margin-right: 0px ;
}

.works_scope .out .box .beijing {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works_scope .out .box .text {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg, rgba(0, 123, 212, 0.14), rgba(7, 48, 141, 0.68));
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.works_scope .out .box .text p {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.5em;
    letter-spacing: 1px;
    margin-top: 45px;
    position: absolute;

    width: 100%;
    padding: 0px 20px;
    box-sizing: border-box;
    transition: 0.5s ease;
    opacity: 0;

    
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7 ; /* 限制为两行 */
    overflow: hidden;
    
}

.works_scope .out .box .tit {
    position: absolute;
    top: 43%;
    padding: 0px 20px;
    box-sizing: border-box;
    width: 100%;
    transition: 0.5s all;
}

.works_scope .out .box span {
    font-weight: 500;
    font-size: 13px;
    color: #FFFFFF;
    margin-bottom: 10px;

}

.works_scope .out .box h5 {
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
}

.works_scope .out .box .icon {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 55.92px;
    height: 55.92px;
    object-fit: contain;
}

.works_scope .out .box.on {
    width: 23% ;
}

.works_scope .out .box.on .text p {
    opacity: 1;
    top: 30% ;
}

.works_scope .out .box.on .tit {
    top: 26%;
}

/* About */
.About {
    width: 100%;
    background-size: cover !important;
    padding: 115px 0px 120px 0px;
    box-sizing: border-box;
}

.About .title h5 {
    font-weight: 400;
    font-size: 49px;
    color: #FFFFFF;
    line-height: 70px;
}

.About .title span {
    font-weight: 400;
    font-size: 23px;
    color: #FFFFFF;
    line-height: 37px;
}

.About p {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    margin: 60px 0px;
    line-height: 1.8em;
    letter-spacing: 1px;
}

.About a {
    width: 127px;
    height: 34px;
    background: #0879F8;
    box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16), inset 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
    border-radius: 0px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
}

.About a img {
    display: block;
    height: 10.25px;
    margin-left: 10px;
}

.About .digital {
    width: 100%;
    height: 179px;
    display: flex;
    align-items: center;
    margin-top: 67px;
}

.About .digital .box {
    width: 25%;
    background: #FFF;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.About .digital .box::after {
    width: 1px;
    height: 107px;
    background: #C7CBCF;
    position: absolute;
    right: 0px;
    content: '';
}

.About .digital .box:last-child::after {
    display: none;
}

.About .digital .box:nth-child(3),
.About .digital .box:nth-child(4) {
    background: #007DD4;
}

.About .digital .box h5 {
    font-weight: 400;
    font-size: 21px;
    color: #666666;
    display: flex;
    align-items: end;
}

.About .digital .box h5 b {
    font-weight: 500;
    font-size: 52px;
    color: #007DD4;
    margin-right: 11px;
    line-height: 100%;
}

.About .digital .box span {
    font-weight: 500;
    font-size: 18px;
    color: #666666;
    margin-top: 20px;
    display: block;
}

.About .digital .box:nth-child(3) h5,
.About .digital .box:nth-child(4) h5,
.About .digital .box:nth-child(3) h5 b,
.About .digital .box:nth-child(4) h5 b,
.About .digital .box:nth-child(3) span,
.About .digital .box:nth-child(4) span {
    color: #FFF;
}

/* Case_Pages */
.Case_Pages {
    margin-top: 138px;
}

.Case_Pages .out {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 138px;
    position: relative;
}

.Case_Pages .out .Case_swiper {
    width: 100%;
}

.Case_Pages .out .Case_swiper .swiper-slide {
    width: 932px;
    height: 639.54px;
    border-radius: 10px;
    margin-right: 32px;
    overflow: hidden;
    position: relative;
}

.Case_Pages .out .Case_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
}

.Case_Pages .out .Case_swiper .swiper-slide .text {
    position: absolute;
    bottom: -100%;
    left: 0px;
    width: 100%;
    height: 79px;
    background: rgba(0, 0, 0, 0.26);
    padding: 0px 54px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 26px;
    color: #FFFFFF;
    transition: 0.6s ease;

}

.Case_Pages .out .Case_swiper .swiper-slide-active .text {
    bottom: 0px;
}

.Case_Pages .out .text_out {
    width: 560px;
    height: 366px;
    background: rgba(255, 255, 255, 0.89);
    border-radius: 0px 0px 0px 0px;
    position: absolute;
    right: 281px;
    top: 134px;
    z-index: 20;
}

.Case_Pages .out .text_out .swiper-slide {
    width: 100%;
    height: 100%;
    padding: 64px 44px 28px 54px;
    box-sizing: border-box;
}

.Case_Pages .out .text_out .swiper-slide h5 {
    font-weight: 500;
    font-size: 25px;
    color: #111111;
    margin-bottom: 20px;
    line-height: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
}

.Case_Pages .out .text_out .swiper-slide p {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 1.6em;
    letter-spacing: 1px;
    word-break: break-all;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.Case_Pages .out .text_out .swiper {
    width: 100%;
    height: 100%;
}

.Case_Pages .out .text_out .swiper-slide a {
    width: 127px;
    height: 34px;
    background: #0879F8;
    box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16), inset 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
    border-radius: 0px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    margin-top: 22px;
}

.Case_Pages .out .text_out .swiper-slide a img {
    display: block;
    height: 10.25px;
    margin-left: 10px;
}

.Case_Pages .out .text_out .swiper-button-next,
.Case_Pages .out .text_out .swiper-button-prev {
    width: 43px;
    height: 43px;
    background: rgba(0, 0, 0, 0.17);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 35px;
    left: auto;
    top: auto;
    bottom: 28px;
}

.Case_Pages .out .text_out .swiper-button-prev {
    right: 123px;
}

.Case_Pages .out .text_out .swiper-button-next::after,
.Case_Pages .out .text_out .swiper-button-prev::after {
    font-size: 13.46px;
    color: #fFF;
}

.Case_Pages .out .text_out .swiper-button-next:hover,
.Case_Pages .out .text_out .swiper-button-prev:hover {
    background: #007DD4;
}

/* product_pages */
.product_pages {
    width: 100%;
    margin-bottom: 100px;
}

.product_pages .out {
    margin-top: 60px;
}

.product_pages .out .swiper-slide {
    width: 25%;
    background: #F1F5F8;
    height: 632px ;
}

.product_pages .out .swiper-slide:nth-child(2n) {
    background: #E0E8EF;
}

.product_pages .out .swiper-slide a {
    display: block;
    padding: 54px 47px;
    box-sizing: border-box;
}

.product_pages .out .swiper-slide .img {
    width: 100%;
    height: 369px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_pages .out .swiper-slide .img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
    transition: 0.5s ease ;
}


.product_pages .out .swiper-slide .text {
    margin-top: 30px;
}

.product_pages .out .swiper-slide .text h5 {
    font-weight: 500;
    font-size: 32px;
    color: #111111;
    line-height: 100%;
    margin-bottom: 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
}

.product_pages .out .swiper-slide .text span {
    font-weight: 400;
    font-size: 18px;
    color: #666666;
}

.product_pages .out .swiper-slide .text i {
    width: 39px;
    height: 2px;
    background: #007DD4;
    display: block;
    margin: 20px 0px;
}

.product_pages .out .swiper-slide .text p {
    word-break: break-all;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.6em;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
}

.product_pages .out .swiper-slide:hover .img img {
    transform: scale(1.2);
}

.product_pages .out .swiper-slide:hover .text h5{
    color: #007DD4 ;
}


.Online_banner {
    width: 100%;
    background: url(../images/di_bannre.jpg) no-repeat center;
    background-size: cover;
    padding: 81px 0px 40px 0px;
    box-sizing: border-box;
    
}

.Online_banner .public {
    position: relative;
}

.Online_banner .tel {
    position: absolute ;
    right: 3%  ;
    bottom: 0px ;
    display: flex ;
    align-items: center ;
}

.Online_banner .tel img {
    width: 40px  ;
    height: 40px  ;
    display: block; 
    object-fit: contain ;
    margin-right: 15px ;
}

.Online_banner .tel span {
    font-size: 32px ;
    color: #007DD4 ;
}


.Online_banner h1 {
    font-weight: 400;
    font-size: 30px;
    color: #111111;
    line-height: 100%;
    margin-bottom: 32px;
}

.Online_banner p {
    font-weight: 400;
    font-size: 44px;
    color: #444444;
    margin-bottom: 53px;
}

.Online_banner a {
    width: 214px;
    height: 66px;
    border-radius: 33px 33px 33px 33px;
    border: 1px solid #007DD4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 22px;
    color: #007DD4;
}


/* footer */
.footer {
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0px -1px 6px 1px rgba(0, 0, 0, 0.16);
}

.footer .Top_out {
    padding: 25px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #707070;
}

.footer .Top_out .logo {
    width: 112px;
}

.footer .Top_out .logo img {
    width: 100%;
    display: block;
}

.footer .Top_out .box {
    display: flex;
    align-items: center;
}

.footer .Top_out .box span {
    font-weight: 400;
    font-size: 18px;
    color: #EBEBEB;
    display: block;
    margin-right: 16px;
}

.footer .Top_out .box .icon_box {
    position: relative;

}

.footer .Top_out .box .icon_box .icon {
    width: 42px;
    height: 42px;
    display: block;
}

.footer .Top_out .box .icon_box .img {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 45px;
    background: #FFF;
    left: 50%;
    margin-left: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-sizing: border-box;
    display: none;
}

.footer .Top_out .box .icon_box .img img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer .list_out {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.footer .list_out .right {
    width: 65%;
    display: flex;
    justify-content: space-between;
}

.footer .list_out .right .box h5 {
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 39px;
}

.footer .list_out .right .box a {
    font-weight: 400;
    font-size: 15px;
    color: #DCDCDC;
    display: block;
    margin-bottom: 37px;
}

.footer .list_out .right .box a:last-child {
    margin-bottom: 0px;
}

.footer .list_out .left {
    width: 30%;
}

.footer .list_out .left p {
    font-weight: 400;
    font-size: 15px;
    color: #DCDCDC;
    margin-bottom: 54px;
}

.footer .link_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
    padding-bottom: 50px;
}

.footer .link_list h5 {
    font-weight: 400;
    font-size: 15px;
    color: #DCDCDC;
}

.footer .link_list a {
    font-weight: 400;
    font-size: 15px;
    color: #DCDCDC;
    margin: 0px 5px;
}

.Record_n_varchar {
    height: 45px;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid #727272;
    box-sizing: border-box;
}

.Record_n_varchar .public {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Record_n_varchar a {
    font-weight: 400;
    font-size: 14px;
    color: #CCCCCC;
}

/* Company */
.Company {
    margin: 100px 0px;
    width: 100%;
}

.Company .out {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.Company .out .left {
    width: 48%;
}

.Company .out .left img {
    width: 100%;
    height: 100%;
    display: block;
}

.Company .out .right {
    width: 50%;
    padding-top: 40px;
    box-sizing: border-box;
}

.Company .out .right span {
    font-weight: 500;
    font-size: 29px;
    color: #007DD4;
}

.Company .out .right h5 {
    font-weight: bold;
    font-size: 40px;
    color: #111111;
    line-height: 100%;
    margin-top: 20px;
}

.Company .out .right p {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 1.8em;
    letter-spacing: 1px;

}

    .Company .out .right h5 {
        margin-bottom: 40px  ;
    }

.Company .digital {
    margin-top: 120px;
    display: flex;
    width: 100%;
}

.Company .digital .box {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Company .digital .box h5 {
    font-weight: 400;
    font-size: 21px;
    color: #666666;
    display: flex;
    align-items: end;
}

.Company .digital .box h5 b {
    line-height: 100%;
    font-weight: 500;
    font-size: 55px;
    color: #111111;
}

.Company .digital .box i {
    width: 40px;
    height: 5px;
    background: #007DD4;
    display: block;
    margin: 28px 0px;
}

.Company .digital .box span {
    font-weight: 500;
    font-size: 20px;
    color: #666666;
}

/* Advantage */
.Advantage {
    width: 100%;
    background: #F8F8F8;
    padding: 51px 0px 65px 0px;
    box-sizing: border-box;
}

.A_public_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.A_public_title span {
    font-weight: 500;
    font-size: 21px;
    color: #111111;
    margin-bottom: 20px;
    display: block;
}

.A_public_title h5 {
    font-weight: bold;
    font-size: 49px;
    color: #111111;
    display: block;
}

.Advantage .out {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 46px;
}

.Advantage .out .box {
    width: 33.3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.Advantage .out .box .img {
    height: 46.71px;
    display: block;
    margin-bottom: 26px;
}

.Advantage .out .box h5 {
    font-weight: bold;
    font-size: 23px;
    color: #111111;
    margin-bottom: 25px;
    line-height: 100%;
}

.Advantage .out .box .text p {
    text-align: center;
    font-weight: 500;
    font-size: 17px;
    color: #555555;
    line-height: 1.8em;
}

/* Culture */
.Culture {
    width: 100%;
    background: url(../images/Culture.png ) no-repeat center;
    background-size: cover;
    padding: 87px 0px 96px 0px;
    box-sizing: border-box;
}

.Culture .out {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 85px;
}

.Culture .out .box {
    width: 32%;
    height: 347px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
    padding: 50px 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    box-shadow: inset 0 3px 6px #FFF;

}

.Culture .out .box img {
    height: 79.98px;
    display: block;
    margin-bottom: 28px;
}

.Culture .out .box h5 {
    font-weight: 500;
    font-size: 31px;
    color: #333333;
    line-height: 100%;
    margin-bottom: 38px;
}

.Culture .out .box p {
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    line-height: 1.6em;
}

.Culture .out .box:hover {
    background: #007DD4;

}

.Culture .out .box:hover h5,
.Culture .out .box:hover p {
    color: #FFF;
}

.Culture .out .box:hover:nth-child(1) img {
    content: url(../images/Culture_on_1.png);
}

.Culture .out .box:hover:nth-child(2) img {
    content: url(../images/Culture_on_2.png);
}

.Culture .out .box:hover:nth-child(3) img {
    content: url(../images/Culture_on_3.png);
}


/* Honor */
.Honor {
    margin-top: 100px;
    box-sizing: border-box;
}

.Honor .out .swiper {
    padding: 60px 3% 100px 1%;
    box-sizing: border-box;
}

.Honor .out .swiper-slide {
    width: 23.7%;
    height: 490.58px;
    background: #FFFFFF;
    box-shadow: 0px 3px 12px 1px rgba(0, 0, 0, 0.13);
    margin-right: 36px;
    padding: 24px 37px 42px 37px;
    box-sizing: border-box;
}



.Honor .out .swiper-slide img {
    width: auto;
    max-width: 100%;
    display: block;
    height: 345px;
    object-fit: contain;
    margin: 0 auto;
}

.Honor .out .swiper-slide i {
    width: 100%;
    height: 2px;
    background: #EBEBEB;
    display: block;
    margin: 29px 0px 27px 0px;
}

.Honor .out .swiper-slide span {
    font-weight: 500;
    font-size: 24px;
    color: #555555;
    display: block;
    text-align: center;
}



.Product_out .box::after {
    width: 0%;
    height: 3px;
    background: #ff0000;
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    transition: all .5s ease-in-out;
}

.Product_out .box:hover::after {
    width: 100%;
}

.Case_Pages .nav_box a::after {
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    content: '';
    background: #333;
    display: block;

}

/* Engineering */
.Engineering {
    width: 100%;
    margin: 100px 0px;
    box-sizing: border-box;
}

.Engineering .out {
    margin-top: 64px;
    display: flex;
    flex-wrap: wrap;
}

.Engineering .out .box {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 72px;
}

.Engineering .out .box:nth-child(3n) {
    margin-right: 0px;
}

.Engineering .out .box .img {
    width: 100%;
    height: 287px;
    display: block;
    overflow: hidden;
}

.Engineering .out .box .img img {
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.5s ease;
    object-fit: cover;
}

.Engineering .out .box .text {
    width: 100%;
    padding: 25px 10px 0px 10px;
    box-sizing: border-box;
    text-align: center;
    font-weight: 500;
    font-size: 22px;
    color: #333333;
}

.Engineering .out .box:hover .img img {
    transform: scale(1.2);
}

.Engineering .out .box:hover .text {
    color: #007DD4;
}


/* 新闻中心 */
.News_Page {
    margin-top: 100px;
    margin-bottom: 55px;
}

.News_Page .out {
    margin-top: 58px;
}

.News_Page .out .box {
    width: 100%;
    border-bottom: 1px solid #DDDDDD;
    position: relative;
    padding-bottom: 49px;
    box-sizing: border-box;
    margin-bottom: 53px;
}

.News_Page .out .box::after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 0%;
    height: 1px;
    background: #007DD4;
    content: '';
    display: block;
    transition: 0.6s ease;
}

.News_Page .out .box:hover::after {
    width: 100%;
}

.News_Page .out .box a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.News_Page .out .box .left {
    width: 28.25%;
}

.News_Page .out .box .left img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.News_Page .out .box .left .img {
    width: 100%;
    height: 276px;
    overflow: hidden;
}

.News_Page .out .box .ceter {
    width: 9.313%;
}

.News_Page .out .box .ceter h6 {
    font-weight: 400;
    font-size: 45px;
    color: #007DD4;
    text-align: center;
}

.News_Page .out .box .ceter i {
    width: 100%;
    height: 1px;
    background: #707070;
    margin-top: 25px;
    margin-bottom: 18px;
    display: block;
}

.News_Page .out .box .ceter span {
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    text-align: center;
    display: block;
}

.News_Page .out .box .right {
    width: 48%;
}

.News_Page .out .box .right h5 {
    font-weight: 500;
    font-size: 24px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
    color: #333333;
    margin-bottom: 48px;
}

.News_Page .out .box .right p {
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    line-height: 1.5em;
    letter-spacing: 1px;
    word-break: break-all;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 58px;

}

.News_Page .out .box .right .jiantou_box {
    width: 171px;
    height: 54px;
    /* background: #007DD4; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 54px;
    overflow: hidden;
    position: relative;
}

.News_Page .out .box .right .jiantou_box::after {
    width: 0%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: #007DD4;
    content: ' ';
    transition: 0.6s ease;
    z-index: -1;
}

.News_Page .out .box .right .jiantou_box span {
    font-weight: 500;
    font-size: 14px;
    color: #99999B;

}

.News_Page .out .box .right .jiantou_box .jian {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 18px;
    transform: translateX(10px);
    background: #007DD4;

}

.News_Page .out .box .right .jiantou_box:hover {
    /* background: #007DD4; */
}

.News_Page .out .box:hover .right .jiantou_box span {
    color: #FFF;
}

.News_Page .out .box:hover .right .jiantou_box::after {
    width: 100%;
}

/* 分页 */
.Pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.Pagination .Pagination_out {
    display: flex;
    align-items: center;
    justify-content: center;
}

.Pagination .Pagination_out a {
    width: 43px;
    height: 43px;
    /* background: #007DD4; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    border-radius: 50%;
    margin: 0px 5px;
}

.Pagination .Pagination_out a:hover,
.Pagination .Pagination_out a.on {
    color: #FFF;
    background: #007DD4;
}

.product_pages2 {
    margin-top: 138px;
}

/* Works_pages */
.Works_pages {
    margin: 138px 0px 100px 0px;
    width: 100%;
}

.Works_pages .out {
    margin-top: 64px;
}

.Works_pages .out .box {
    width: 100%;
    padding: 32px 0px;
    box-sizing: border-box;
    border-bottom: 4px solid #F3F3F3;
}

.Works_pages .out .box:first-child {
    padding-top: 0px;
}

.Works_pages .out .box a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.Works_pages .out .box .left {
    width: 100%;
    margin-bottom: 44px;
}

.Works_pages .out .box .left h5 {
    font-weight: 500;
    font-size: 30px;
    color: #333333;
    margin-bottom: 44px;
}

.Works_pages .out .box .left p {
    font-weight: 400;
    font-size: 18px ;
    color: #666666;
    line-height: 1.7em;
}

.Works_pages .out .box .right {
    width: 100%;
    display: flex;
    position: relative;
   justify-content: right;
}

.Works_pages .out .box .right::after {
    position: absolute;
    right: -15px;
    bottom: -15px;
    width: 182px;
    height: 85px;
    background: #007DD4;
    content: '';
    display: block;
    z-index: -1;
}

.Works_pages .out .box .right img {
    width: 23.5%;
    display: block;
    margin-right: 2%;
}

.Works_pages .out .box .right img:last-child {
    margin-right: 0px;
}

.Works_pages .out .box_1 {
    width: 100%;
}

.Works_pages .out .box_1 .left {
    width: 48%;
}

.Works_pages .out .box_1 .right {
    width: 48%;
}

.Works_pages .out .box_1 .right img {
    width: 49%;
}

.Works_pages .out .box_2 {
    width: 100%;
}

.Works_pages .out .box_2 a {
    flex-direction: row-reverse;
    
}

.Works_pages .out .box_2 .left {
    width: 48%;
}

.Works_pages .out .box_2 .right {
    width: 48%;

}

.Works_pages .out .box_2 .right img {
    width: 49%;
}

/* 联系我们 */
.Contact_Page {
    margin: 130px 0px 80px 0px;
}

.Contact_Page .out {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}

.Contact_Page .out .box {
    width: calc(100% / 4);
    border: 1px solid #DDDDDD;
    height: 302px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Contact_Page .out .box .img {
    width: 78px;
    height: 78px;
    margin-bottom: 26px;
}

.Contact_Page .out .box .img img {
    width: 100%;
    height: 100%;
    display: block;
}

.Contact_Page .out .box h5 {
    font-weight: 500;
    font-size: 22px;
    color: #333333;
}

.Contact_Page .out .box i {
    display: block;
    margin: 22px 0px;
    width: 39px;
    height: 4px;
    background: #005199;
}

.Contact_Page .out .box span {
    font-weight: 400;
    font-size: 18px;
    color: #888888;
    padding: 0px 2%;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    height: 24px;
}

.Contact_Page .out .wei_box .img {
    width: 121px;
    height: 121px;
    margin-bottom: 0px;
}

.Contact_Page .out .wei_box .img img {
    transform: scale(0.95);
}

/* 在线联系 */

.Feedback {
    width: 100%;
    background: #F7F7F7;
    padding-top: 70px;
    padding-bottom: 97px;
    box-sizing: border-box;
}

.Feedback .out {
    width: 100%;
}

.Feedback .out .title {
    display: flex;
    align-items: center;
    margin-bottom: 52px;
}

.Feedback .out .title h5 {
    font-weight: 500;
    font-size: 36px;
    color: #007DD4;
}

.Feedback .out .title i {
    font-weight: 500;
    font-size: 16px;
    color: #666666;
    display: block;
    margin: 0px 20px;
}

.Feedback .out .title span {
    font-weight: 400;
    font-size: 17px;
    color: #666666;
    display: block;
}

.Feedback .out form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.Feedback .out input {
    width: 48%;
    height: 46px;
    background: #FFFFFF;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #EEEEEE;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    padding: 0px 12px;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.Feedback .out textarea {
    width: 100%;
    height: 214px;
    border: 1px solid #EEEEEE;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    padding: 18px 21px 18px 21px;
    box-sizing: border-box;
    background: #FFF;
}

.Feedback .out button {
    width: 477px;
    height: 67px;
    background: #007DD4;
    border-radius: 33px 33px 33px 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 22px;
    color: #FFFFFF;

    border: none;
    margin: 0 auto;
    margin-top: 95px;

}

.CAPTCHA {
    width: 40%;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.CAPTCHA input {
    margin-bottom: 0px !important;
    margin-right: 10px !important;
}

.CAPTCHA img {
    width: 120px;
    height: 48px;
    display: block;
}

.button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Webmap */
.Webmap {
    width: 100%;
    display: block;
}

.Webmap img {
    width: 100%;
    display: block;
}


/* 视频详情页 */
.Knowledge-list .max-width {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.Knowledge-list {
    padding: 80px 0px;
}

.Knowledge-list .titel {
    text-align: center;
    /* margin-top: 70px; */
}

.Knowledge-list .titel h5 {
    font-size: 30px;
    color: rgba(51, 51, 51, 1);
    font-weight: 400;
}

.Knowledge-list .release {
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(227, 227, 227, 1);
    border-bottom: 1px solid rgba(227, 227, 227, 1);
    margin-top: 30px;
}

.Knowledge-list .release i {
    display: block;
    width: 1px;
    height: 14px;
    background: rgba(153, 153, 153, 1);
    margin: 0px 30px;
}

.Knowledge-list .release span {
    font-size: 13px;
    color: rgba(102, 102, 102, 1);
}

.Knowledge-list .text {
    padding: 43px 73px 73px 73px;
    box-sizing: border-box;
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
    line-height: 2.5em;
    border-bottom: 1px solid rgba(227, 227, 227, 1);
}

.Knowledge-list .text img {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    display: block;
}

.Knowledge-list .text video {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}


.butt_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding-left: 77px; */
    box-sizing: border-box;
    margin-top: 61px;
}

.butt_box .left .box {
    display: flex;
    align-items: center;
}

.butt_box .left .box span,
.butt_box .left .box a {
    color: #666666;
    font-size: 13px;
    margin-bottom: 14px;
    display: block;
}

.butt_box .left .box a:hover {
    color: #3B6BB3;
}

.butt_box .right {
    width: 161px;
    height: 36px;
    background: #3B6BB3;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
}

.butt_box .right {
    cursor: pointer;
}



.CNCautomatic_item_pages {
    margin: 180px 0px 80px 0px;
}

.CNCautomatic_item_pages .out {
    display: flex;
    justify-content: space-between;
}

.CNCautomatic_item_pages .out .right {
    width: 100%;
    background: #FFF;
    border-radius: 6px;
    box-shadow: 0px 0px 10px 1px #00000034;
    padding: 30px 45px;
    box-sizing: border-box;
}

.CNCautomatic_item_pages .out .right .Right_title {
    display: flex;
    justify-content: space-between;
}

.CNCautomatic_item_pages .out .right .Right_title .left_Swiper {
    width: 40%;
}

.CNCautomatic_item_pages .out .right .Right_title .CNCautomatic_swiper {
    width: 100%;
    border: 1px solid #D5D5D5;
    height: 320px;
    overflow: hidden;
}

.CNCautomatic_item_pages .out .right .Right_title .CNCautomatic_swiper .swiper-slide {
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.CNCautomatic_item_pages .out .right .Right_title .CNCautomatic_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.CNCautomatic_item_pages .out .right .Right_title .CNCautomatic_swiper2 {
    width: 100%;
    height: 90px;
    margin-top: 20px;
}

.CNCautomatic_item_pages .out .right .Right_title .CNCautomatic_swiper2 .swiper-slide {
    width: 24%;
    margin-right: 2%;
    border: 1px solid #D5D5D5;
    box-sizing: border-box;
}

.CNCautomatic_item_pages .out .right .Right_title .CNCautomatic_swiper2 .swiper-slide-thumb-active {
    border: 1px solid #004F89;
}

.CNCautomatic_item_pages .out .right .Right_title .CNCautomatic_swiper2 .swiper-slide:last-child {
    margin-right: 0px;
}

.CNCautomatic_item_pages .out .right .Right_title .CNCautomatic_swiper2 .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.CNCautomatic_item_pages .out .right .Right_title .CNCautomatic_swiper2 .swiper-button-next:after,
.CNCautomatic_item_pages .out .right .Right_title .CNCautomatic_swiper2 .swiper-button-prev:after {
    color: #004F89;
    font-size: 20px;
    left: 0px;
    right: 0px;
    font-weight: bold;
}

.CNCautomatic_item_pages .out .right .Right_title .CNCautomatic_swiper2 .swiper-button-next {
    right: 0px;
    ;
}

.CNCautomatic_item_pages .out .right .Right_title .CNCautomatic_swiper2 .swiper-button-prev {
    left: 0px;
}

.CNCautomatic_item_pages .out .right .right_text {
    width: 53%;
    padding-top: 20px;
    box-sizing: border-box;
}

.CNCautomatic_item_pages .out .right .right_text h5 {
    color: #333;
    font-size: 26px;
    font-weight: bold;
}

.CNCautomatic_item_pages .out .right .right_text i {
    margin-top: 30px;
    margin-bottom: 20px;
    width: 90px;
    height: 2px;
    background: #004F89;
    display: block;
}

.CNCautomatic_item_pages .out .right .right_text .title_chanshu {
    font-size: 17px;
    margin-bottom: 10px;
    color: #333;
}

.CNCautomatic_item_pages .out .right .right_text p {
    color: #333;
    font-size: 15px;
    line-height: 1.6em;
}

.CNCautomatic_item_pages .out .right .right_text a {
    width: 140px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #FFF;
    background: #004F89;
    border-radius: 3px;
    margin-top: 40px;
}

.CNCautomatic_item_pages .out .right .text_h5 {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
}

.CNCautomatic_item_pages .out .right .text_h5 h5 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.CNCautomatic_item_pages .out .right .text_h5 i {
    width: 100%;
    height: 1px;
    background: #D5D5D5;
    display: block;
}

.CNCautomatic_item_pages .out .right .text_list {
    width: 100%;
    padding: 0px 20px;
    box-sizing: border-box;
}

.CNCautomatic_item_pages .out .right .text_list img {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.CNCautomatic_item_pages .out .right .text_list p {
    color: #333;
    line-height: 1.6em;
    font-size: 15px;
}

.CNCautomatic_item_pages .out .right .butt_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 60px;
}

.CNCautomatic_item_pages .out .right .butt_box .box {
    width: 48%;
    display: flex;
    align-items: center;
}

.CNCautomatic_item_pages .out .right .butt_box .box span {
    font-size: 15px;
    display: block;
    color: #333;
}

.CNCautomatic_item_pages .out .right .butt_box .box a {
    font-size: 15px;
    display: block;
    color: #333;
}

.CNCautomatic_item_pages .out .right .butt_box .box2 {
    justify-content: right;
}

.CNCautomatic_item_pages .out .right .butt_box .box:hover a {
    color: #007DD4;
}

.min_navCan {
    width: 0.4rem;
    height: 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
}

.min_navCan i {
    width: 100%;
    height: 2px;
    display: block;
    background: #333;
    margin-bottom: 5px;
    transition: 0.6s;
}

.min_navCan i:last-child {
    margin-bottom: 0px;
}


.min_navCan.all i:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}


.min_navCan.all i:nth-child(2) {
    transform: scale(0);
    opacity: 0;
}

.min_navCan.all i:nth-child(3) {
    transform: rotate(-43deg) translateY(-10px);
}


.min_Nav_out {
    position: absolute;
    top: 0.9rem;
    left: 0px;
    width: 100%;
    background: #FFF;
    box-shadow: 0px 0px 10px 1px #00000027;
    padding: 15px 20px;
    box-sizing: border-box;

    display: none;

}

.min_Nav_out .box {
    border-bottom: 1px solid #eee;
}

.min_Nav_out .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.min_Nav_out .title a {
    color: #333;
    font-size: 14px;
    width: 80%;
    padding: 10px 0px;
    box-sizing: border-box;
}

.min_Nav_out .title img {
    height: 10px;
    display: block;
    transition: 0.5s;
}

.min_Nav_out .title img.on {
    transform: rotate(90deg);
}

.min_pulldown {
    width: 100%;
    padding: 0px 15px;
    box-sizing: border-box;
    display: none;
}

.min_pulldown a {
    color: #333;
    font-size: 13px;
    display: block;
    padding: 10px 0px;
    box-sizing: border-box;
}


/* 下拉 */
.Dow_dropdown {
    width: 100%;
    position: fixed;
    top: 90px ;
    left: 0px;
    background: #FFFFFF;
    z-index: 100;
    padding: 60px 0px;
    border: 1px solid #51515123;
    box-sizing: border-box;
    box-shadow: 0px 10px 10px 1px #00000010;
    display: none ;

}

.Dow_dropdown .Dow_list {
    display: flex;
    justify-content: right;
    width: 90%;
    margin: 0 auto;
    max-width: 1570px;
    height: 100%;
}

.Dow_dropdown .Dow_list .Dow_out {
    width: 100%;
    max-width: 1320px;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.Dow_dropdown .Dow_list .Dow_out .text {
    display: flex;
    justify-content: space-between;
    width: 772px;
}

.Dow_dropdown .Dow_list .Dow_out .left {
    width: 254px;
    border-right: 1px solid #ededed;
    padding-right: 55px;
    box-sizing: border-box;
}

.Dow_dropdown .Dow_list .Dow_out .left a {
    display: block;
    font-size: 14px;
    color: #000000;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Dow_dropdown .Dow_list .Dow_out .left a::after {
    content: '→';
    transform: translateX(-20px );
    opacity: 0 ;
    transition: 0.5s ease-in-out ;
    font-size: 17px ;
    display: block ;
    color: #000000 ;
}

.Dow_dropdown .Dow_list .Dow_out .right {
    width: 417px;
    position: relative;
    overflow: hidden;
    align-items: baseline ;
}

.Dow_dropdown .Dow_list .Dow_out .right p {
    color: #000000;
    font-size: 14px;
    line-height: 1.7em;
    display: none ;
}

.Dow_dropdown .Dow_list .Dow_out .right p:first-child{
    display: block ;
}


.Dow_dropdown .Dow_list .Dow_out .right .box {
    width: 100% ;
    display: none ;
}

.Dow_dropdown .Dow_list .Dow_out .right .box:first-child{
    display: block ;
}

.Dow_dropdown .Dow_list .Dow_out .right .box a {
    display: block ;
    color: #000000 ;
    font-size: 14px ;
    margin-bottom: 15px ;
}


.Dow_dropdown .Dow_list .Dow_out .right .box a:hover {
    color: #007DD4 ;
}

.Dow_dropdown .Dow_list .Dow_out .img {
    width: 317px;
    height: 194px;
    overflow: hidden;
}

.Dow_dropdown .Dow_list .Dow_out .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.Dow_dropdown .Dow_list .Dow_out .left a.on {
    color: #007DD4 ;
}

.Dow_dropdown .Dow_list .Dow_out .left a.on::after {
    transform: translateX(0);
    opacity: 1 ;
}

.nav .out .right ul li:hover .Dow_dropdown {
    display: block ;
}


@media (max-width:992px) {

    .Online_banner .tel{
        right: 3% ;
    }
    
    .Online_banner .tel img {
        width: 0.36rem ;
        margin-right: 0.15rem ;
    }

    .Online_banner .tel span {
        font-size: 0.24rem ;
    }


    .min_navCan {
        display: flex;
    }

    .public {
        padding: 0px 3%;
        box-sizing: border-box;
    }

    .nav .out .right {
        display: none;
    }

    .nav {
        height: 0.9rem;
        background: #FFF;
    }

    .banner {
        margin-top: 0.9rem;
    }

    .banner .swiper-pagination {
        width: auto;
        left: 0.3rem;
        bottom: 0.22rem;
    }

    .banner .swiper-pagination .swiper-pagination-bullet {
        width: 0.8rem;
        height: 0.02rem;
        margin-right: 0.1rem;
    }

    .banner .swiper-button-prev {
        bottom: 0.22rem;
        right: 1rem;
    }

    .banner .swiper-button-next,
    .banner .swiper-button-prev {
        width: 0.6rem;
        height: 0.6rem;
        border: 0.02rem solid #FFFFFF;
    }

    .banner .swiper-button-next::after,
    .banner .swiper-button-prev::after {
        font-size: 0.14rem;
    }

    .banner .swiper-button-next {
        right: 0.3rem;
        bottom: 0.22rem;
    }

    .banner .text {
        padding-bottom: 0.4rem;
        box-sizing: border-box;
    }

    .banner .text h5 {
        font-size: 0.4rem;
        margin-bottom: 0.2rem;
    }

    .banner .text h5 b {
        font-size: 0.4rem;
    }

    .banner .text span {
        font-size: 0.26rem;
        text-shadow: 0px 0.03rem 0.06rem rgba(0, 0, 0, 0.16);
    }

    .public_title span {
        font-size: 0.67rem;
        top: -0.43rem;
    }

    .public_title h5 {
        font-size: 0.35rem;
    }

    .public_title i {
        width: 0.67rem;
        height: 0.03rem;
        margin-top: 0.15rem;
    }

    .works_scope {
        margin-top: 1rem;
        margin-bottom: 0.8rem;
    }

    .works_scope .out {
        margin-top: 0.6rem;
        flex-wrap: wrap;
    }

    .works_scope .out .box {
        width: 50%;
        height: 5.6rem;
    }

    .works_scope .out .box.on {
        width: 50%;
    }

    .works_scope .out .box .text {
        justify-content: unset;
        padding-top: 0.7rem;
    }

    .works_scope .out .box .tit {
        position: relative;
        top: 0px;
        padding: 0px 0.20rem;
    }

    .works_scope .out .box.on .tit {
        top: 0px;
    }

    .works_scope .out .box .text p {
        width: 100%;
        position: relative;
        padding: 0px 0.20rem;
        margin-top: 0px;
        opacity: 1;
        font-size: 0.16rem;
        margin-top: 0.3rem ;
    }

    .works_scope .out .box.on .text p {
        bottom: 0px;
        top: auto ;
    }

    .works_scope .out .box span {
        font-size: 0.13rem;
        margin-bottom: 0.1rem;
    }

    .works_scope .out .box h5 {
        font-size: 0.24rem;
    }

    .works_scope .out .box .icon {
        bottom: 0.4rem;
        left: 0.4rem;
        width: 0.55rem;
        height: 0.55rem;
        object-fit: contain;
    }

    .About {
        padding: 1rem 0px 1.2rem 0px;
    }

    .About .title h5 {
        font-size: 0.49rem;
        line-height: 0.7rem;
    }

    .About .title span {
        font-size: 0.23rem;
        line-height: 0.37rem;
    }

    .About p {
        font-size: 0.16rem;
        margin: 0.6rem 0px;
    }

    .About a {
        width: 1.27rem;
        height: 0.34rem;
        box-shadow: 0px 0.03rem 0.06rem 1px rgba(0, 0, 0, 0.16), inset 0px 0.03rem 0.06rem 1px rgba(0, 0, 0, 0.16);
        font-size: 0.14rem;
    }

    .About a img {
        display: block;
        height: 0.1rem;
        margin-left: 0.1rem;
    }

    .About .digital {
        height: 1.79rem;
        margin-top: 0.67rem;
        flex-wrap: wrap;
    }

    .About .digital .box h5 {
        font-size: 0.21rem;
    }

    .About .digital .box h5 b {
        font-size: 0.52rem;
        margin-right: 0.11rem;
    }

    .About .digital .box span {
        font-size: 0.18rem;
        margin-top: 0.2rem;
    }

    .About .digital .box {
        width: 50%;
    }

    .About .digital .box::after {
        width: 1px;
        height: 1.07rem;
        right: 0px;
        content: '';
    }

    .Case_Pages {
        margin-top: 1.4rem;
    }

    .Case_Pages .out {
        margin-top: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .Case_Pages .out .Case_swiper .swiper-slide {
        width: 100%;
        height: 4.7rem;
        border-radius: 0.1rem;
        margin-right: 0px;
    }

    .Case_Pages .out .Case_swiper .swiper-slide .text {
        height: 0.79rem;
        padding: 0px 0.54rem;
        font-size: 0.26rem;
    }

    .Case_Pages .out .text_out {
        width: 5.6rem;
        height: 3.66rem;
        right: 0px;
        top: 0px;
        z-index: 20;
        display: none;
    }

    .product_pages .out {
        margin-top: 0.6rem;
    }

    .product_pages .out .swiper-slide {
        width: 100%;
        height: 6.32rem ;
    }

    .product_pages .out .swiper-slide a {
        display: block;
        padding: 0.54rem 0.47rem;
        box-sizing: border-box;
    }

    .product_pages .out .swiper-slide .img {
        height: 3.7rem;
    }

    .product_pages .out .swiper-slide .text {
        margin-top: 0.3rem;
    }

    .product_pages .out .swiper-slide .text h5 {
        font-size: 0.32rem;
        margin-bottom: 0.15rem;
    }

    .product_pages .out .swiper-slide .text span {
        font-size: 0.18rem;
    }

    .product_pages .out .swiper-slide .text i {
        width: 0.39rem;
        height: 0.02rem;
        margin: 0.2rem 0px;
    }

    .product_pages .out .swiper-slide .text p {
        font-size: 0.16rem;
    }

    .product_pages {
        margin-bottom: 0.8rem;
    }

    .Online_banner {
        padding: 0.81rem 0px 0.4rem 0px;
    }

    .Online_banner h1 {
        font-size: 0.3rem;
        margin-bottom: 0.32rem;
    }

    .Online_banner p {
        font-size: 0.3rem ;
        margin-bottom: 0.48rem;
    }

    .Online_banner a {
        width: 1.5rem;
        height: 0.46rem;
        border-radius: 0.33rem;
        font-size: 0.17rem;
    }

    .footer .Top_out {
        padding: 0.25rem 0px;
    }

    .footer .Top_out .logo {
        width: 1.2rem;
    }

    .footer .Top_out .box span {
        font-size: 0.18rem;
        margin-right: 0.16rem;
    }

    .footer .Top_out .box span {
        display: none;
    }

    .footer .Top_out .box .icon_box .icon {
        display: none;
    }

    .footer .Top_out .box .icon_box .img {
        width: 1rem;
        height: 1rem;
        position: relative;
        top: 0px;
        background: #FFF;
        left: 0px;
        margin-left: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.05rem;
        box-sizing: border-box;
        display: block;
    }

    .footer .Top_out .box .icon_box .icon {
        width: 0.42rem;
        height: 0.42rem;
    }

    .footer .list_out .right {
        display: none;
    }

    .footer .list_out {
        margin-top: 0.6rem;
        width: 100%;
    }

    .footer .list_out .left {
        width: 100%;
    }

    .footer .list_out .left p {
        font-size: 0.18rem;
        margin-bottom: 0.4rem;
    }

    .footer .link_list {
        margin-top: 0.4rem;
        padding-bottom: 0.5rem;
    }

    .footer .link_list h5 {
        font-size: 0.15rem;
    }

    .footer .link_list a {
        font-size: 0.15rem;
        margin: 0px 0.05rem;
    }


    .Record_n_varchar a {
        font-weight: 400;
        font-size: 0.12rem;
        color: #CCCCCC;
    }

    .banner_pages .text i {
        width: 0.54rem;
        height: 0.04rem;
    }

    .banner_pages .text h5 b,
    .banner_pages .text h5 {
        font-size: 0.3rem;
    }

    .Company {
        margin: 1rem 0px 0.6rem 0px;
    }

    .Company .out {
        flex-wrap: wrap;
    }

    .Company .out .left {
        width: 100%;
    }

    .Company .out .right {
        width: 100%;
        padding-top: 0.4rem;
    }

    .Company .out .right span {
        font-size: 0.3rem;
    }

    .Company .out .right h5 {
        font-size: 0.4rem;
        margin-top: 0.2rem;
    }

    .Company .out .right p {
        font-size: 0.2rem;

    }
    .Company .out .right h5 {
        margin-bottom: 0.4rem  ;
    }

    .Company .digital {
        margin-top: 1rem;
        flex-wrap: wrap;
    }

    .Company .digital .box {
        width: 50%;
        margin-bottom: 0.4rem;
    }

    .Company .digital .box h5 {
        font-size: 0.2rem;
    }

    .Company .digital .box h5 b {
        font-size: 0.5rem;
    }

    .Company .digital .box i {
        width: 0.4rem;
        height: 0.05rem;
        margin: 0.28rem 0px;
    }

    .Company .digital .box span {
        font-size: 0.2rem;
    }

    .Advantage {
        padding: 0.51rem 0px 0.65rem 0px;
        box-sizing: border-box;
    }

    .A_public_title span {
        font-size: 0.21rem;
        margin-bottom: 0.2rem;
    }

    .A_public_title h5 {
        font-size: 0.49rem;
    }

    .Advantage .out .box {
        width: 50%;
        margin-bottom: 0.4rem;
    }

    .Advantage .out .box .img {
        height: 0.47rem;
        margin-bottom: 0.26rem;
    }

    .Advantage .out .box h5 {
        font-size: 0.23rem;
        margin-bottom: 0.25rem;
    }

    .Advantage .out .box .text p {
        font-size: 0.17rem;
    }

    .Culture {
        padding: 0.87rem 0px 0.96rem 0px;
    }

    .Culture .out {
        margin-top: 0.85rem;
        flex-wrap: wrap;
    }

    .Culture .out .box {
        width: 100%;
        height: auto ;
        margin-bottom: 0.4rem ;
    }

    .Culture .out .box:last-child {
        margin-bottom: 0.4rem ;
    }

    .Culture .out .box img {
        height: 0.8rem;
        margin-bottom: 0.28rem;
    }

    .Culture .out .box h5 {
        font-size: 0.31rem ;
        margin-bottom: 0.38rem ;
    }    
    
    .Culture .out .box p{
        font-size: 0.18rem ;
    }

    .Honor{
        margin-top: 1rem ;
    }
    
    .Honor .out .swiper {
        padding: 0.6rem 3% 1rem  1%;
        box-sizing: border-box;
    }

    .Honor .out .swiper-slide{
        width: 48% ;
        height: 5rem ;
        box-shadow: 0px 0.03rem 0.12rem 1px rgba(0, 0, 0, 0.13);
        margin-right: 0.36rem ;
        padding: 0.24rem 0.37rem 0.42rem 0.37rem ;
    }

    .Honor .out .swiper-slide span{
        font-size: 0.24rem ;
    }

    .Honor .out .swiper-slide img{
        height: 3.4rem ;
    }

    .Honor .out .swiper-slide i {
        width: 100%;
        height: 0.02rem ;
        margin: 0.29rem 0px 0.27rem 0px;
    }

    .Works_pages {
        margin: 1.2rem 0px 1rem  0px;
    }

    .public_title span{
        font-size: 0.37rem ;
    }

    .Works_pages .out{
        margin-top: 0.64rem ;
    }

    .Works_pages .out .box {
        padding: 0.32rem 0px;
        border-bottom: 0.04rem solid #F3F3F3;
    }

    .Works_pages .out .box_1 .left , .Works_pages .out .box_2 .left{
        width: 100% ;
    }

    .Works_pages .out .box_1 .right , .Works_pages .out .box_2 .right{
        width: 100% ;
    }

    .Works_pages .out .box_1 .right::after , .Works_pages .out .box_2 .right::after{
        display: none ;
    }

    .Works_pages .out .box .left h5 {
        font-size: 0.3rem ;
        margin-bottom: 0.3rem ;
    }

    .Works_pages .out .box .left p{
        font-size: 0.2rem ;
    }

    .Works_pages .out .box .left{
        margin-bottom: 0.3rem ;
    }

    .Works_pages .out .box .right::after {
        position: absolute;
        right: -0.15rem ;
        bottom: -0.15rem ;
        width: 1.82rem ;
        height: 0.85rem ;
    }

    .Works_pages .out .box .right img{
        width: 23.5% ;
    }

    .product_pages2{
        margin-top: 1rem ;
    }
    
    .CNCautomatic_item_pages .out .right {
        width: 100%;
        padding: 0.3rem 0.25rem;
    }

    .CNCautomatic_item_pages .out .right .Right_title {
        flex-wrap: wrap;
    }

    .CNCautomatic_item_pages .out .right .right_text {
        padding-top: 0.2rem;
        width: 100%;
    }

    .CNCautomatic_item_pages .out .right .Right_title .CNCautomatic_swiper {
        height: 4rem;
    }

    .CNCautomatic_item_pages .out .right .Right_title .left_Swiper {
        width: 100%;
    }

    .CNCautomatic_item_pages .out .right .Right_title .CNCautomatic_swiper2 {
        height: 1.5rem;
        margin-top: 0.2rem;
    }

    .CNCautomatic_item_pages .out .right .right_text h5 {
        font-size: 0.26rem;
    }

    .CNCautomatic_item_pages .out .right .right_text i {
        margin-top: 0.3rem;
        margin-bottom: 0.35rem;
        width: 0.9rem;
        height: 0.02rem;
    }

    .CNCautomatic_item_pages .out .right .right_text p {
        font-size: 0.17rem;
    }

    .CNCautomatic_item_pages .out .right .right_text a {
        width: 1.4rem;
        height: 0.46rem;
        font-size: 0.14rem;
        border-radius: 0.03rem;
        margin-top: 0.6rem;
    }

    .CNCautomatic_item_pages .out .right .text_h5 {
        width: 100%;
        margin-top: 0.3rem;
        margin-bottom: 0.2rem;
    }

    .CNCautomatic_item_pages .out .right .text_h5 h5 {
        font-size: 0.2rem;
        margin-bottom: 0.15rem;
    }

    .CNCautomatic_item_pages .out .right .text_list {
        padding: 0px 0.1rem;
    }

    .CNCautomatic_item_pages .out .right .text_list p {
        font-size: 0.18rem;
    }

    .CNCautomatic_item_pages {
        margin-top: 1.4rem;
        margin-bottom: 1rem;
    }

    .CNCautomatic_item_pages .out .right .butt_box {
        flex-wrap: wrap;
        margin-top: 0.6rem;
    }

    .CNCautomatic_item_pages .out .right .butt_box .box span,
    .CNCautomatic_item_pages .out .right .butt_box .box a {
        font-size: 0.15rem;
    }

    .CNCautomatic_item_pages .out .right .butt_box .box {
        width: 100%;
    }

    .CNCautomatic_item_pages .out .right .butt_box .box2 {
        justify-content: left ;
        margin-top: 0.3rem ;
    }

    .Engineering {
        margin: 1rem 0px ;
    }

    .Engineering .out{
        margin-top: 0.6rem ;
        justify-content: space-between ;
    }

    .Engineering .out .box {
        margin-right: 0px ;
        width: 48% ;
        margin-bottom: 0.4rem ;
    }

    .Engineering .out .box .img{
        height: 2.5rem ;
    }

    .Engineering .out .box .text {
        padding: 0.25rem 0.1rem 0px 0.1rem ;
        font-size: 0.22rem;
    }

    .Knowledge-list {
        padding: 0.8rem 0px;
    }

    .Knowledge-list .titel h5 {
        font-size: 0.3rem;
    }

    .Knowledge-list .release {
        height: 0.62rem;
        margin-top: 0.3rem;
    }

    .Knowledge-list .release span {
        font-size: 0.13rem;
    }

    .Knowledge-list .text {
        padding: 0.43rem 0 0.73rem 0;
        box-sizing: border-box;
        font-size: 16px;
        color: rgba(51, 51, 51, 1);
        line-height: 2.5em;
        border-bottom: 1px solid rgba(227, 227, 227, 1);
    }

    .Knowledge-list .text {
        font-size: 0.22rem;
    }

    .Knowledge-list .text p{
        font-size: 0.22rem ;
        line-height: 1.7em ;
    }

    .butt_box .right {
        display: none;
    }

    .butt_box {
        margin-top: 0.61rem;
    }

    .butt_box .left .box span {
        flex: none;
    }

    .butt_box .left .box span,
    .butt_box .left .box a {
        font-size: 0.13rem;
        margin-bottom: 0.14rem;
    }

    .News_Page .out .box a{
        flex-wrap: wrap ;
    }

    .News_Page .out .box .left{
        width: 100% ;
    }

    .News_Page .out .box .left .img {
        height: 3rem ;
    }

    .News_Page .out{
        margin-top: 0.6rem ;
    }

    .News_Page .out .box .ceter{
        display: none ;
    }

    .News_Page .out .box .right {
        width: 100% ;
        margin-top: 0.4rem ;
    }

    .News_Page .out .box .right h5 {
        font-size: 0.24rem ;
        margin-bottom: 0.20rem ;
    }

    .News_Page .out .box .right p {
        font-size: 0.18rem ;
        margin-bottom: 0.38rem ;
    }

    .News_Page .out .box .right .jiantou_box {
        width: 1.71rem ;
        height: 0.54rem ;
        border-radius: 0.54rem ;
    }

    .News_Page .out .box .right .jiantou_box span{
        font-size: 0.14rem ;
    }

    .News_Page .out .box .right .jiantou_box .jian {
        width: 0.54rem ;
        height: 0.54rem ;
        font-size: 0.18rem ;
        transform: translateX(0.1rem );
    }

    .News_Page .out .box {
        padding-bottom: 0.49rem ;
        margin-bottom: 0.53rem ;
 
    }
    .News_Page {
        margin-top: 1rem ;
        margin-bottom: 0.55rem ;
    }


    .Contact_Page .out .box {
        width: 50% ;
        box-sizing: border-box ;
    }

    .CAPTCHA {
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: 0.3rem ;
    }

    .CAPTCHA input {
        margin-bottom: 0px  !important;
        margin-right: 0.1rem  !important;
    }

    .CAPTCHA img{
        width: 1.2rem  ;
        height: 0.48rem  ;
        display: block ;
    }

    


    .Contact_Page {
        margin: 1rem 0px 0.7rem   0px;
    }

    .Contact_Page .out {
        margin-top: 0.56rem ;
        flex-wrap: wrap ;
    }

    .Contact_Page .out .box {
        height: 3.02rem ;
    }

    .Contact_Page .out .box .img {
        width: 0.78rem ;
        height: 0.78rem ;
        margin-bottom: 0.26rem ;
    }

    .Contact_Page .out .box h5 {
        font-size: 0.22rem ;
    }

    .Contact_Page .out .box i {
        margin: 0.22rem  0px;
        width: 0.39rem ;
        height: 0.04rem ;
        background: #005199;
    }

    .Contact_Page .out .box span {
        font-size: 0.18rem ;
        padding: 0px 0.3rem ;
        box-sizing: border-box ;
    }

    .Contact_Page .out .wei_box .img {
        width: 1.4rem ;
        height: 1.4rem ;
        margin-bottom: 0px ;
    }

    .Feedback {
        padding-top: 0.7rem ;
        padding-bottom: 0.97rem ;
    }

    .Feedback .out .title h5 {
        font-size: 0.36rem ;
    }

    .Feedback .out .title i {
        font-size: 0.16rem ;
        margin: 0px 0.2rem ;
    }

    .Feedback .out .title span {
        font-size: 0.17rem ;
    }

    .Feedback .out .title{
        margin-bottom: 0.5rem ;
    }
    
    .Feedback .out input {
        height: 0.46rem ;
        border-radius: 0.04rem ;
        font-size: 0.14rem ;
        padding: 0px 0.12rem ;
        margin-bottom: 0.2rem ;
    }

    .Feedback .out textarea {
        width: 100%;
        height: 2.14rem ;
        font-size: 0.14rem ;
        padding: 0.18rem  0.21rem  0.18rem  0.21rem ;
    }

    .Feedback .out button {
        width: 4.77rem ;
        height: 0.67rem ;
        border-radius: 0.33rem ;
        font-size: 0.22rem ;
        margin-top: 0.95rem ;
    }


}

@media (min-width:993px) and (max-width:1199px) {

    .works_scope .out .box:nth-child(6) , .works_scope .out .box:nth-child(7) , .works_scope .out .box:nth-child(8) , .works_scope .out .box:nth-child(9),.works_scope .out .box:nth-child(10) {
        display: none ;
    }

    .works_scope .out .box{
        width: 20% ;
    }

    .works_scope .out .box.on{
        width: 40% ;
    }

    .public {
        padding: 0px 3%;
        box-sizing: border-box;
    }

    .nav .out .right ul li {
        margin-right: 30px;
    }

    .nav .out .right ul li .title {
        font-size: 15px;
    }

    .nav .out .right .tel span {
        font-size: 15px;
    }

    .nav .out .right ul {
        margin-right: 30px;
    }

    .banner .text h5 {
        margin-bottom: 20px;
    }

    .banner .text h5,
    .banner .text h5 b {
        font-size: 40px;
    }

    .banner .text span {
        font-size: 26px;
    }

    .works_scope .out .box .text p {
        padding: 0px 20px;
        font-size: 15px;
    }

    .works_scope .out .box.on .tit {
        padding: 0px 20px;
        top: 13%;
    }

    .Case_Pages .out .text_out {
        right: 20px;
    }

    .product_pages .out .swiper-slide {
        width: 50%;
    }

    .Online_banner h1 {
        font-size: 26px;
    }

    .Online_banner p {
        font-size: 30px;
    }

    .Online_banner a {
        width: 130px;
        height: 40px;
        font-size: 15px;
    }

    .footer .list_out .left p {
        margin-bottom: 25px;
    }

    .footer .list_out .right .box h5 {
        margin-bottom: 20px;
    }

    .footer .list_out .right .box a {
        margin-bottom: 17px;
    }

    .Culture .out .box p{
        font-size: 15px ;
    }

    .Culture .out .box h5{
        font-size: 26px ;
        margin-bottom: 20px ;
    }

    .Culture .out .box img{
       height: 60px ;
    }

    .Culture .out .box{
        height: 285px ;
    }

    .Honor .out .swiper-slide{
        width: 32% ;
    }

}

@media (min-width:1200px) and (max-width:1600px) {
    .public {
        padding: 0px 3%;
        box-sizing: border-box;
    }

    .nav .out .right ul li {
        margin-right: 3vw;
    }

    .nav .out .right ul li .title,
    .nav .out .right .tel span {
        font-size: 17px;
    }

    .banner .text h5 {
        margin-bottom: 30px;
    }

    .banner .text h5,
    .banner .text h5 b {
        font-size: 46px;
    }

    .banner .text span {
        font-size: 36px;
    }



    .works_scope .out .box.on .text p {
        bottom: 28%;
    }

    .works_scope .out .box.on .tit {
        top: 15%;
    }

    .Case_Pages .out .text_out {
        right: 60px;
    }

    .Honor .out .swiper-slide{
        width: 32% ;
    }


}