﻿@charset "utf-8";

:root {
    --main-color: #ffffff;
    --dark: #333;
    --white-color: #FFFFFF;
    --red-color: #F1151B;
    --grey-color: #999999;
}

img {
    max-width: 100%;
}

@keyframes jumpDown {
    0% {
        opacity: 0;
        transform: translateY(0)
    }

    100% {
        transform: translateY(5px)
    }
}

/* header */
header {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    border-bottom: 1px solid #EEE;
    background: #FFF;
    z-index: 99;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 0 100px;
    width: 100%;
    height: 100px;
}

.header_left {
    display: flex;
    align-items: center;
}

.logo {
    max-width: 112px;
    z-index: 9;
}

.logo img:nth-child(2) {
    display: none;
}

.height100 {
    width: 100%;
    height: 100px;
}

.menu {
    padding-left: 68px;
}

.menu ul {
    display: flex;
}

.menu ul li {
    padding-right: 60px;
}

.menu ul li a {
    position: relative;
    padding: 29px 0;
    display: block;
}

.menu strong {
    display: block;
    color: #333;
    font-size: 18px;
    font-weight: 400;
}

.menu strong.bold {
    font-weight: 700;
}

.menu ul li span {
    display: block;
    padding-top: 2px;
    color: #999;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.menu ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--main-color);
    transform-origin: bottom right;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.menu ul li.active a strong,
.menu ul li a:hover strong {
    color: var(--main-color);
}

.menu ul li.active a::before,
.menu ul li a:hover::before {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.head_menu_r ul {
    display: flex;
}

.head_menu_r li {
    position: relative;
    display: block;
    padding: 28px 0;
    /* margin: 0 20px; */
}

.head_menu_r li a {
    display: block;
    padding: 13px 20px;
}

.head_menu_r li::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 17px;
    background-image: url(../images/menu_icon.svg);
    background-size: cover;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.head_menu_r li:hover a,
.head_menu_r li.active a {
    color: var(--main-color);
}

.head_menu_r li:hover:before,
.head_menu_r li.active:before {
    opacity: 1;
}

.header_right {
    display: flex;
    align-items: center;
}

/* languge */
.language_box {
    position: relative;
    margin-right: 10px;
    padding-left: 20px;
    z-index: 9;
}

.language_box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: #CCC;
}


.header_language {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 80px;
    padding-top: 34px;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    pointer-events: none;
}



.language_current {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    color: var(--dark);

    font-size: 14px;
    font-weight: 400;
    transition: all .6s ease;
    position: relative;
    z-index: 2;
}

.language_current svg,
.language_current img {
    margin-left: 10px;
}

.language_current:hover {
    color: var(--main-color);
}

.language_current:hover svg path {
    fill: var(--main-color);
}

.language_content {
    position: relative;
    z-index: 2;
    padding: 10px 0 10px 0;
    opacity: 0;
    background: #E9E9E9;
    pointer-events: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.language_content .language_item_box {
    padding-bottom: 2px;
}

.language_content a {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: Arial;
    text-transform: uppercase;
    display: block;
    text-align: center;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

.language_box:hover .header_language {
    pointer-events: auto;
}

.language_box:hover .language_content {
    opacity: 1;

    pointer-events: auto;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.language_box:hover .header_language:after {
    height: 100%;
    opacity: 1;
}


/* search */
.am6 {
    transition: .6s all;
}

.circle {
    border-radius: 50%;
}

.relative {
    position: relative;
}

.flex {
    display: flex;
}

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

.items-center {
    align-items: center;
}

.header .search-box {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    min-width: 16px;
    border-radius: 30px;
    border: 1px solid transparent;
    cursor: pointer;
}

.search_box {
    position: relative;
    width: 16px;
    height: 16px;
    z-index: 9;
}

.s_search {
    display: none;
    width: 16px;
    height: 16px;
    background-image: url(../images/search_icon.svg);
    background-repeat: no-repeat;
    background-color: transparent;
    cursor: pointer;
}

.head-search {
    display: none;
}

.header .search-box .head-search .icon-close {
    margin-left: 10px;
    color: #fff;
    cursor: pointer;
}

.header .search-box .head-search>div {
    width: 200px;
    height: 100%;
}

.header .search-box #headKey {
    width: calc(100% - 20px) !important;
}

.header .head-search input {
    color: var(--dark);
    line-height: 30px;
}

.header .search-box .search-wrap {
    width: 16px;
    height: 40px;
}

.header .search-box .head-search .icon-close:hover {
    transform: rotate(360deg);
}

.opacity_head .search-box.open {
    border: 1px solid #fff;
}

.header .search-box.open {
    padding-right: 10px;
    padding-left: 10px;
}

.header .search-box .head-search .icon-close {
    width: 24px;
    height: 24px;
    background-image: url(../images/grey_close.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.header .header-nav .header-nav-item.active a:before {
    background-color: #333;
}

.header-nav .header-nav-item.text-white {
    opacity: 1;
}

.header .search-box.open {
    background-color: var(--white-color);
    border: 1px solid #666;
}

.header .search-box.open .sstop {
    display: none;
}

.header .search-box.open .s_search {
    display: inline-block;
}

.header .search-box.open .search-wrap {
    width: 40px;
}

@media (max-width:1680px) {
    .header {
        padding: 0 60px;
    }

    .menu ul li {
        padding-right: 40px;
    }

}

@media (max-width:1579px) {
    .menu {
        padding-left: 48px;
    }

    .menu ul li {
        padding-right: 30px;
    }

    .head_menu_r li a {
        padding: 13px 16px;
    }

}

@media (max-width:1439px) {
    .header {
        padding: 0 40px;
    }

    .menu {
        padding-left: 38px;
    }

    .menu ul li {
        padding-right: 26px;
    }

    .head_menu_r li a {
        padding: 13px 14px;
    }

    .head_menu_r li:last-child a {
        padding-right: 18px;
    }

}

@media (max-width:1300px) {
    .header {
        padding: 0 30px;
    }

    .menu {
        padding-left: 38px;
    }

    .menu ul li {
        padding-right: 26px;
    }

    .head_menu_r li a {
        padding: 13px 12px;
    }

    .head_menu_r li:last-child a {
        padding-right: 18px;
    }

}

@media (max-width:1279px) {
    .menu {
        display: none;
    }

    .head_menu_r {
        display: none;
    }

    .language_box {
        padding-left: 0;
    }

    .language_box::before {
        display: none;
    }

}

@media (max-width:991px) {
    .header {
        padding: 0 20px;
        height: 80px;
    }

    .logo img {
        max-height: 50px;
    }

    .height100 {
        height: 80px;
    }

}


/* 移动端导航 */
.menubtn {
    transition: 0.4s;
    position: relative;
    z-index: 20;
    float: right;
    cursor: pointer;
    width: 24px;
    height: 14px;
    margin-left: 10px;
    display: none;
}

.menubtn span {
    margin-top: 6px;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    position: relative;
    vertical-align: middle;
    -webkit-transition-duration: .3s, .3s;
    -moz-transition-duration: .3s, .3s;
    -ms-transition-duration: .3s, .3s;
    -o-transition-duration: .3s, .3s;
    transition-duration: .3s, .3s;
    -webkit-transition-delay: .3s, 0s;
    -moz-transition-delay: .3s, 0s;
    -ms-transition-delay: .3s, 0s;
    -o-transition-delay: .3s, 0s;
    transition-delay: .3s, 0s;
    cursor: pointer;
}

.menubtn span:after,
.menubtn span:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 2px;
    left: 0;
    background-color: var(--dark);
    -webkit-transition-duration: .3s, .3s;
    -moz-transition-duration: .3s, .3s;
    -ms-transition-duration: .3s, .3s;
    -o-transition-duration: .3s, .3s;
    transition-duration: .3s, .3s;
    -webkit-transition-delay: .3s, 0s;
    -moz-transition-delay: .3s, 0s;
    -ms-transition-delay: .3s, 0s;
    -o-transition-delay: .3s, 0s;
    transition-delay: .3s, 0s
}

.menubtn span:before {
    top: -6px;
    -webkit-transition-property: top, transform;
    -moz-transition-property: top, transform;
    -ms-transition-property: top, transform;
    -o-transition-property: top, transform;
    transition-property: top, transform;
}

.menubtn span:after {
    bottom: -6px;
    width: 16px;
    -webkit-transition-property: bottom, transform;
    -moz-transition-property: bottom, transform;
    -ms-transition-property: bottom, transform;
    -o-transition-property: bottom, transform;
    transition-property: bottom, transform;
}

.menubtn.active span {
    background-color: transparent;
    -webkit-transition-delay: 0s, 0s;
    -moz-transition-delay: 0s, 0s;
    -ms-transition-delay: 0s, 0s;
    -o-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s
}

.menubtn.active span:after,
.menubtn.active span:before {
    -webkit-transition-delay: 0s, .3s;
    -moz-transition-delay: 0s, .3s;
    -ms-transition-delay: 0s, .3s;
    -o-transition-delay: 0s, .3s;
    transition-delay: 0s, .3s
}

.menubtn.active span:before {
    top: 0px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.menubtn.active span:after {
    width: 100%;
    bottom: 0px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navigate {
    width: 100%;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 4;
    visibility: hidden;
    transition: 0.7s;
}

.navigate:before {
    content: "";
    width: 100%;
    padding-bottom: 100vh;
    height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(37, 149, 72, 0.2);
    z-index: -2;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transform-origin: right top;
    transition: 0.78s;
}

.navigate:after {
    content: "";
    width: 100%;
    padding-bottom: 100vh;
    height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--white-color);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transform-origin: right top;
    transition: 0.88s;
}

.navigate.show {
    visibility: visible;
}

.navigate.show:before {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.navigate.show:after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.navigate-list {
    opacity: 0;

}

.navigate.show .navigate-list {
    opacity: 1;
    transition: all 0.6s;
    transition-delay: .5s;
}

.navigate-list {
    position: absolute;
    left: 0;
    top: 100px;
    right: 0;
    height: calc(100% - 100px);
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
}

.navigate-list .line {
    padding-top: 50px;
    border-top: 1px solid #EEE;
}

.navigate_menu {
    padding-bottom: 20px;
    border-bottom: 1px solid #EEE;

}

.navigate_menu ul li {
    padding-bottom: 30px;
}

.navigate_menu ul li a {
    position: relative;
    display: block;
    background-image: url(../images/menu_icon2.svg);
    background-position: right center;
    background-size: 26px 26px;
    background-repeat: no-repeat;
}

.navigate_menu ul li a:hover {
    background-image: url(../images/menu_icon_green.svg);
}

.navigate_menu strong {
    display: block;
    color: #333;
    font-size: 18px;
    font-family: 'Roboto bold';
}

.navigate_menu span {
    display: block;
    padding-top: 2px;
    color: #999;

    font-size: 14px;
    font-weight: 400;
}

.navigate_menu ul li:nth-child(n+3) strong {

    font-weight: 400;
}

.navigate_menu2 {
    padding-top: 24px;
}

.navigate_menu2 a {
    display: block;
    padding: 13px 0;
    color: #333;

    font-size: 14px;
    font-weight: 400;
}

.navigate_menu2 a:hover {
    color: var(--main-color);
}

@media (max-width:1279px) {

    .menubtn {
        display: block;
    }

}

@media (max-width:991px) {

    .navigate-list {
        top: 80px;
        height: calc(100% - 80px);
    }

    .navigate_menu {
        padding-bottom: 0;
    }

    .navigate_menu2 {
        padding-top: 16px;
        padding-bottom: 5px;
    }

}

/* right */
.right_float {
    position: fixed;
    right: 10px;
    top: 60%;
    z-index: 9;
}

.right_float ul li {
    position: relative;
    width: 60px;
    height: 60px;
    border: 1px solid #EEE;
    border-bottom: none;
    background: #FAFAFA;
    overflow: hidden;
    transition: all .3s ease;
}

.right_float.active ul li:nth-last-child(2) {
    border-bottom: 1px solid #EEEEEE;
}

.right_float ul li .hide_tel {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    width: 156px;
    padding: 20px 15px;
    text-align: center;
    background-color: var(--main-color);
    opacity: 0;
    justify-content: center;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: -1;
    box-shadow: 0 4px 10px 0 rgb(0 0 0 / 10%);
}

.right_float ul li .hide_tel:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-left-color: var(--main-color);
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.right_float ul li .hide_tel>a {
    color: #ffffff;
    font-size: 16px;
    background-color: transparent;
    border: none;
    padding: 0;
}
.right_float ul li:hover {
    overflow: visible;
}
.right_float ul li:hover .hide_tel {
    opacity: 1;
    z-index: 8;
}



.right_float ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;

}

.right_float .back_top {
    display: none;
    border-bottom: 1px solid #EEEEEE;
}

.right_float .back_top p {
    color: var(--main-color);
}

.right_float li:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.right_float li:hover svg path {
    fill: var(--white-color);
}

.right_float li:hover p {
    color: var(--white-color);
}

@media (max-width:767px) {

    .service_menu {
        padding-top: 20px;
    }

    .service_menu ul {
        margin-left: -15px;
        margin-right: -15px;
    }

    .service_menu ul li {
        padding: 0 15px;
        padding-bottom: 15px;
    }

    .service_menu ul li a {
        padding-bottom: 10px;
        font-size: 16px;
        font-weight: 500;
    }

    .service_menu ul li a::before {
        height: 2px;
    }

    .right_float {
        right: 0;
        top: inherit;
        bottom: 15px;
    }

    .right_float ul li {
        width: 50px;
        height: 50px;
    }

}

/* footer */
.footer {
    width: 100%;
    background-image: url(../images/foot_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.footer_top {
    padding-bottom: 18px;
}

.foot_top_one {
    padding-top: 50px;

}

.foot_top_one_left img {
    max-width: 140px;
}

.foot_top_one_left img:nth-child(2) {
    display: none;
}

.foot_top_one_right {
    display: flex;
    align-items: center;
}

.foot_top_one_right a {
    position: relative;
    display: flex;
    justify-content: center;
    margin-left: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.3s 0.1s ease-out;
    overflow: hidden;
    z-index: 1;
}

.foot_top_one_right a>img {
    width: 20px;
}

.foot_top_one_right>a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    border-radius: 50%;
    display: block;
    width: 42px;
    height: 42px;
    text-align: center;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
}

.foot_top_one_right a:hover {
    border: 1px solid var(--main-color);
    transform: translateY(-4px);
}

.foot_top_one_right> a:hover::before {
    box-shadow: inset 0 0 0 52px var(--main-color);
}


.wechat-icon {
    position: relative;
  }
  
  .wechat-code {
    position: absolute;
    bottom: calc(100% + 16px);
    left: 50%;
    margin-left: -65px;
    transform: translateY(-20px);
    padding: 10px;
    width: 130px;
    background: #FFFFFF;
    opacity: 0;
    justify-content: center;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: -1;
  }
  .wechat-code img {
    width: 100%;
  }
  .wechat-icon .wechat-code:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-top-color: #fff;
    bottom: -20px;
    left: 50%;
    margin-left: -10px;
  }
  
 .wechat-icon:hover {
    overflow: visible;
  }
  .wechat-icon:hover .wechat-code {
    opacity: 1;
    transform: translateY(0);
    z-index: 99;
  }



.footer_line {
    padding: 18px 0;
    border-top: 1px solid #4E5152;
}

.footer_line {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;

}

.footer_line a {
    color: inherit;

}

.footer_line a:hover {
    color: var(--white-color);
}

.foot_top_two {
    padding-top: 35px;
}

.foot_contact {
    max-width: 350px;
}

.foot_contact .t {
    padding-bottom: 30px;
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
}

.foot_contact p {
    padding-bottom: 26px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.foot_contact p img {
    width: 18px;
    height: 18px;
    margin-right: 20px;
    margin-top: 3px;
}

.foot_contact p span,
.foot_contact p a {
    color: inherit;
    font-size: inherit;
}

.foot_menu {
    display: flex;
    justify-content: space-between;
    flex: 1;
    min-width: 370px;
    max-width: 450px;
    padding-left: 25px;
}

.foot_menu>div {
    width: 50%;
}

.foot_menu a {
    display: block;
    margin-bottom: 10px;
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
    font-family: 'Roboto thin';
}

.foot_form {
    width: 447px;
}

.indus_form ._list {
    padding-bottom: 10px;
    margin-left: -12px;
    margin-right: -12px;
}

.indus_form ._list .w50 {
    float: left;
    width: calc(50% - 24px);
    margin-right: 12px;
    margin-left: 12px;
}

.indus_form ._list .w50 .i_ {
    position: relative;
}

.indus_form ._list .input_box {
    width: 100%;
}
.indus_form  ._list.form_code .input_box input{
height: 50px;
}
.input_box.message_code {
    height: 50px;
}
.input_box.message_code img {
    height: 100%;
}
.indus_form ._list .input_box input {
    width: 100%;
    height: 34px;
    padding-left: 14px;
    background-color: #474949;
    border: none;
    color: rgba(255, 255, 255, 0.8);
}

.indus_form ._list .text {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Roboto thin';
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-transform: capitalize;
}

.indus_form ._list .active .text {
    top: -10px;
}

.indus_form .big_width {
    padding-left: 12px;
    padding-right: 12px;
}

.indus_form ._list .textarea_box .input_box {
    height: 100%;
}

.indus_form ._list .textarea_box textarea {
    width: 100%;
    padding: 10px;
    height: 66px;
    line-height: 26px;
    border: none;
    background: #474949;
    font-family: "Roboto";
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.indus_form .last_submit {
    padding-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.indus_form .last_submit input {
    width: 100%;
    height: 38px;
    background-color: transparent;
    border: 1px solid var(--white-color);
    color: var(--white-color);

    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    text-transform: capitalize;
    cursor: pointer;
}


.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.indus_form ._list .i_ input::-webkit-input-placeholder,
.indus_form ._list .i_ textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-family: "Roboto";
    font-weight: 400;
}

.indus_form ._list .i_ input::-moz-placeholder,
.indus_form ._list .i_ textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-family: "Roboto";
    font-weight: 400;
}

.indus_form ._list .i_ input::-ms-input-placeholder,
.indus_form ._list .i_ textarea::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-family: "Roboto";
    font-weight: 400;
}

.indus_form label.error {
    position: absolute;
    left: 0;
    top: -16px;
    font-size: 12px;
    line-height: 20px;
    color: var(--red-color);
    width: auto;
}

.foot_form_title {
    padding-bottom: 20px;
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
}

@media (max-width:1279px) {
    .foot_contact {
        max-width: 25%;
    }

    .foot_menu {
        min-width: auto;
    }

}

@media (max-width:1200px) {
    .foot_contact {
        max-width: 30%;
    }

    .foot_form {
        width: 300px;
    }

    .indus_form ._list {
        padding-bottom: 0;
    }

    .indus_form ._list .w50 {
        width: 100%;
        padding-bottom: 10px;
    }

    .indus_form .last_submit {
        padding-top: 10px;
    }
}

@media (max-width:991px) {

    .foot_top_two {
        flex-wrap: wrap;
    }

    .foot_contact {
        width: 100%;
        max-width: inherit;
    }

    .foot_menu {
        flex: inherit;
        width: 100%;
        padding-left: 0;
    }

    .foot_form {
        display: none !important;
    }
}

@media (max-width:767px) {

    .foot_top_one_left img {
        max-width: 140px;
        max-height: 50px;
    }

    .foot_top_one {
        flex-wrap: wrap;
        padding-top: 30px;
    }

    .foot_top_one_right {
        width: 100%;
        padding-top: 25px;
    }

    .foot_top_one_right a {
        margin-left: 10px;
        width: 36px;
        height: 36px;
        padding: 8px;

    }

    .foot_contact p img {
        width: 18px;
        height: 18px;
        margin-right: 10px;
        margin-top: 3px;
    }

    .foot_contact p {
        padding-bottom: 20px;
    }

    .foot_menu a {
        font-size: 18px;
    }

    .footer_line {
        line-height: 1.6;
    }

    .footer_line .my-container>div:first-child {
        flex-wrap: wrap;

    }
    .foot_contact p {
      
        font-size: 14px;
    }
    .foot_contact p img {
        margin-right: 8px;
        margin-top: 4px;
    }


}

@media (max-width:359px) {
    .foot_top_one_right a {
        margin-left: 8px;
        width: 30px;
        height: 30px;
    }

}

/* page location */
.page_cont {
    min-height: 40vh;
    background-color: #FBFBFB;
    overflow: hidden;
}

.location {
    padding-top: 30px;
}

.location a {
    position: relative;
    padding-right: 26px;
    margin-right: 10px;
    color: #CCC;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.location a {
    background-image: url(../images/location_icon.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px 16px;
}

.location a:last-child {
    background-image: none;
    padding-right: 0;
    margin-right: 0;
}

.location a:hover {
    color: var(--main-color);
}

@media (max-width:767px) {

    .location {
        padding-top: 20px;
    }

    .location a {
        padding-right: 17px;
        margin-right: 2px;
        background-size: 14px 14px;
    }

}

/* pro list */
.pro_title {
    margin-top: 24px;
    text-align: center;
}

.pro_title h2 {
    position: relative;
    padding-left: 22px;
    color: var(--dark);

    font-weight: 700;
    line-height: 1.2;
    display: inline-block;
    background-image: url(../images/bh_title_icon.svg);
    background-repeat: no-repeat;
    background-size: 60px 45px;
    background-position: left top;
}

.pro_two_menu {
    padding-top: 48px;
    border-bottom: 1px solid #E3E3E3;
    overflow: hidden;
}

.pro_two_menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -25px;
    margin-right: -25px;
}

.pro_two_menu ul li {
    padding-left: 25px;
    padding-right: 25px;
}

.pro_two_menu ul li a {
    display: block;
    position: relative;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
}

.pro_two_menu a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: width 0.3s ease;
}

.pro_two_menu li a:hover,
.pro_two_menu li.active a {
    color: var(--main-color);
  
}

.pro_two_menu li a:hover:before,
.pro_two_menu li.active a::before {
    width: 100%;
}

.pro_list {
    padding-top: 28px;
    padding-bottom: 42px;
}

.pro_list ul {
    margin-left: -22px;
    margin-right: -22px;
}

.pro_list ul li {
    padding: 22px;
    width: 33.33%;
    float: left;
}

.pro_list .thumb {
    position: relative;
    display: block;
    padding: 62px 64px;
    background-color: #FFF;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}


.pro_list .thumb i {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 0.3s ease;
}

.pro_list .title {
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E3E3E3;
}

.pro_list .title {
    color: var(--dark);
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

.pro_list .more {
    padding-top: 30px;
    display: inline-block;
}

.pro_list .more a {
    display: flex;
    align-items: center;
}

.pro_list .more span,
.pro_list .more i {
    transition: all 0.3s ease;
}

.pro_list .more span {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 400;
}

.pro_list .more i {
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    background-image: url(../images/green_jia.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.pro_list .more i:first-child {
    margin-right: 10px;
}

.pro_list .more i:nth-child(3) {
    margin-left: 10px;
    display: none;
}

.pro_list a:hover .thumb i {
    transform: scale(1.05);
}

.pro_list a:hover .thumb {
    background-color: transparent;
    background-image: url(../images/pro_mask.svg);
}

.pro_list a:hover .title {
    font-weight: 700;
}

.pro_list .more a:hover {
    padding-left: 14px;
}

.pro_list .more:hover i {
    transform: translateX(126%);
    margin-right: 0;

}

.pro_list .more:hover span {
    transform: translateX(-100%);
}

@media (max-width:1440px) {

    .pro_list .thumb {
        padding: 52px 54px;
    }

}

@media (max-width:1366px) {

    .pro_list .thumb {
        padding: 42px 44px;
    }

}

@media (max-width:1279px) {

    .pro_two_menu ul {
        margin-left: -20px;
        margin-right: -20px;
    }

    .pro_two_menu ul li {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pro_list .thumb {
        padding: 32px 34px;
    }


}

@media (max-width:991px) {
    .pro_two_menu ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .pro_two_menu ul li {
        padding-left: 10px;
        padding-right: 10px;
    }

    .pro_list .thumb {
        padding: 24px 26px;
    }


}

@media (max-width:767px) {
    .pro_two_menu ul {
        justify-content: flex-start;
    }

    .pro_two_menu ul li {
        width: 33.33%;
    }

    .pro_list ul li {
        width: 50%;
    }

    .pro_title h2 {
        padding-left: 22px;
        background-size: 50px 35px;
    }

    .pro_list .title {
        padding-top: 20px;
        padding-bottom: 20px;
    }

}

@media (max-width:540px) {
    .mo_pt30 {
        padding-top: 30px;
    }

    .pro_two_menu ul li {
        width: 50%;
    }

    .pro_two_menu li a:hover:before,
    .pro_two_menu li.active a::before {
        width: 60%;
    }

    .pro_two_menu ul li a {
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        height: 100%;

        text-align: center;
    }

    .pro_list ul li {
        width: 100%;
    }


}

/* pro detail */
.pro_detail_bg {
    background-color: var(--white-color);
    overflow: visible;
}

.pro_detail_cont {
    padding-top: 50px;
    margin-bottom: 60px;
    width: 100%;

}

.pro_detail_left {
    float: left;
    width: 410px;
    position: sticky;
    top: 110px;
    z-index: 9;
}

.pro_detail_right {
    float: right;
    width: calc(100% - 410px);
    padding-left: 70px;
}

.pro_detail_left .big_t {
    padding-left: 30px;
    padding-bottom: 22px;
    color: var(--dark);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.pro_detail_left .detail_menu {}

.pro_detail_left .detail_menu li {
    padding: 30px;
    background-color: #EFF2F0;
    border-bottom: 1px solid var(--white-color);
    cursor: pointer;
}

.pro_detail_left .detail_menu .title {
    position: relative;
    color: var(--dark);
    color: #333;
    font-size: 18px;
    font-weight: 400;
}

.pro_detail_left .detail_menu .title i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url(../images/grey_jtx.svg);
}

.pro_detail_left .detail_menu .two_menu a {
    position: relative;
    display: block;
    margin-bottom: 30px;
    padding-left: 13px;
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
}

.pro_detail_left .detail_menu .two_menu a::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
}

.pro_detail_left .detail_menu .two_menu a:last-child {
    margin-bottom: 0;
}
.pro_detail_left .detail_menu .two_menu a.active,
.pro_detail_left .detail_menu .two_menu a:hover {
    color: var(--main-color);
}
.pro_detail_left .detail_menu .two_menu a.active::before,
.pro_detail_left .detail_menu .two_menu a:hover:before {
    color: var(--main-color);
}

.detail_menu .two_menu {
    max-height: 0px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.detail_menu .active .two_menu {
    opacity: 1;
    max-height: inherit;
    padding-top: 30px;

}

.detail_menu .active .title {
    color: var(--main-color);
    font-weight: 700;

}

.detail_menu .active .title i {
    background-image: url(../images/green_jtx.svg);
}

.pro_detail_left .link a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background-color: var(--main-color);
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
}

.pro_detail_left .link a img {
    margin-left: 10px;
}

.pro_detail_right .big_t {
    color: #333;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 30px;
    border-bottom: 1px solid #EEE;
}

.pro_detail_right .detail_content {
    padding-top: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #EEE;
}

.pro_detail_right .detail_content .small_t {
    color: #333;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.pro_detail_right .detail_content .text {
    padding-top: 30px;
}

.pro_detail_right .detail_content .text p {
    padding-bottom: 20px;
    color: #666;
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
    font-family: 'Roboto thin';
}

.pro_detail_right .detail_content .text p:last-child {
    padding-bottom: 0;
}

.pro_detail_button {
    padding-top: 40px;
}

.pro_detail_button p {
    color: #666;
    font-size: 20px;
    font-family: 'Roboto thin';
    text-align: center;
}

.pro_detail_button a {
    display: flex;
    padding: 15px 25px;
    font-family: 'Roboto thin';
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: var(--main-color);
    color: #FFF;
    font-size: 16px;
}

.pro_detail_button .button_more {
    padding-top: 20px;
    justify-content: center;

}

.pro_pic_swier {
    margin-top: 50px;
    position: relative;
    padding-left: 120px;
    padding-right: 120px;
}

.pro_pic_swier .swiper-slide {
    background: #F5F5F5;
}

.pro_pic_swier .prox_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.prodetail_prev {
    left: 0;
}

.prodetail_next {
    right: 0;
}

.pro_pic_swier .prox_button:hover {
    background-color: var(--main-color);
}

.pro_pic_swier .prox_button.swiper-button-disabled {
    cursor: default;
    pointer-events: none;
}

.pro_detail_swiper i {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.prox-pagination {
    padding-top: 20px;
    text-align: center;
}

.prox-pagination span {
    border-radius: 23px;
    background: #CCC;
    opacity: 1;
    margin: 0 2px;
}

.prox-pagination span.swiper-pagination-bullet-active {
    width: 20px;
    background: var(--main-color);
}

.detail_content2 {
    padding-top: 50px;
}

.detail_content2 .small_t {
    color: #333;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.detail_content2 .table {
    padding-top: 30px;
}

.detail_content2 .table table {
    width: 100%;
    border-collapse: collapse;
    border-bottom: 1px solid #DDD;

}

.detail_content2 .table th,
.detail_content2 .table td {
    padding: 28px 15px 28px 50px;
    text-align: left;
    border-top: 1px solid #DDD;
    color: var(--dark);
    font-size: 18px;
    font-weight: 400;
}

.detail_content2 .table tr td {
    border-right: 1px solid #DDD;
}
.detail_content2 .table tr td:last-child {
    border-right: none;
}
.detail_content2 .table tr td:nth-child(n+2) {
    font-family: 'Roboto thin';
}

.detail_content2 .table tr:nth-child(odd) {

    background: #F4F4F4;
}

.prodetail_back {
    margin-top: 60px;
    position: relative;
    display: flex;
    width: 100%;
    padding: 16px 20px;
    justify-content: space-between;
    align-items: center;
    background-color: var(--main-color);
}

.prodetail_back .prev_button,
.prodetail_back .next_button {
    width: calc(50% - 100px);
}

.prodetail_back .prev_button span,
.prodetail_back .next_button span {
    display: block;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
}

.prodetail_back .prev_button span:first-child,
.prodetail_back .next_button span:first-child {

    opacity: 0.5;
}

.prodetail_back .next_button span:first-child,
.prodetail_back .next_button span:nth-child(2) {
    text-align: right;
}


.prodetail_back .back_button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    padding: 10px 15px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    border: 1px solid #FFF;
    background: #FFF;
}

.prodetail_back .back_button span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 28px;
    background-image: url(../images/green_back.svg);
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: left center;
    color: var(--main-color);
    font-size: 18px;
}

@media (max-width:1279px) {
    .pro_detail_right {
        padding-left: 30px;
    }

    .pro_pic_swier {
        padding-left: 90px;
        padding-right: 90px;
    }
}

@media (max-width:991px) {
    .pro_detail_left {
        width: 340px;
    }

    .pro_detail_left .detail_menu li {
        padding: 30px 20px;
    }

    .pro_detail_right {
        width: calc(100% - 340px);
    }
}

@media (max-width:767px) {
    .pro_detail_right .big_t {
        padding-bottom: 20px;
    }

    .pro_detail_left {
        margin-top: 30px;
        width: 100%;
    }

    .pro_detail_right {
        width: 100%;
        padding-left: 0;
    }

    .pro_pic_swier {
        padding-left: 0;
        padding-right: 0;
    }

    .pro_pic_swier .prox_button {
        z-index: 9;
    }

    .pro_pic_swier .prox_button {
        width: 40px;
        height: 40px;

    }

    .pro_detail_button p {
        font-size: 18px;
    }

    .prodetail_prev {
        left: 0;
    }

    .prodetail_next {
        right: 0;
    }

    .prox-pagination {
        display: none !important;
        position: absolute;
        padding-top: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        height: 50px;

    }

    .detail_content2 .table th,
    .detail_content2 .table td {
        padding: 28px 15px 28px 20px;
        font-size: 16px;
    }

    .prodetail_back {
        flex-wrap: wrap;
        justify-content: center;
    }

    .prodetail_back .prev_button,
    .prodetail_back .next_button {
        width: 100%;
        padding-bottom: 20px;
        text-align: center;
    }

    .prodetail_back .next_button span:first-child,
    .prodetail_back .next_button span:nth-child(2) {
        text-align: center;
    }

    .prodetail_back .back_button {
        position: relative;
        left: inherit;
        top: inherit;
        transform: inherit;

    }

    .pro_detail_left .link a {
        padding: 20px 15px;
        font-size: 18px;
    }

    .prodetail_back .back_button span {
        padding-left: 20px;
        background-size: 16px 16px;
        font-size: 16px;
    }
}

/* solution */
.solution_list {
    padding-bottom: 60px;
}

.solution_list ul li {
    position: relative;
    margin-top: 50px;
    background-image: url(../images/solution_icon.svg);
    background-position: left bottom;
    background-repeat: no-repeat;
    overflow: hidden;
}

.solution_list ul li:nth-child(2n) {
    background-image: url(../images/solution_icon2.svg);

    background-position: right bottom;
}

.solution_list ul li a {
    display: block;
    position: relative;
    overflow: hidden;

}

.solution_list .thumb {
    width: 47%;
    float: right;
    transition: all .4s ease;
    overflow: hidden;
}

.solution_list .thumb i {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.solution_list .thumb img {
    width: 100%;
}

.solution_list .text {
    width: 50%;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: 70px;
    left: 40px;
    transition: all .3s ease;
}

.solution_list .text .text_content {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.solution_list .more_b {
    padding-top: 60px;
    display: flex;
    align-items: center;
}

.solution_list .more_b span:first-child {
    font-size: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution_list .more_b span:nth-child(2) img:nth-child(2) {
    display: none;
}

.solution_list .text>div:first-child {
    width: 100%;
}

.solution_list .text .title {
    position: relative;
    color: var(--dark);
    font-weight: 400;
    line-height: 1.5;
    padding-bottom: 28px;
    margin-bottom: 28px;
}

.solution_list .text .title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    transition: width .3s;
}

.solution_list ul li:nth-child(2n) .thumb {
    float: left;
}

.solution_list ul li:nth-child(2n) .text {
    right: 0;
    left: inherit;
    padding-left: 70px;
    padding-right: 0;
}

.solution_list ul li a:hover .text .title {
    color: var(--main-color);
}

.solution_list ul li a:hover .more_b span:first-child {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 400;
    margin-right: 10px;
    opacity: 1;
}

.solution_list a:hover .more_b span:nth-child(2) img:nth-child(1) {
    display: none;
}

.solution_list a:hover .more_b span:nth-child(2) img:nth-child(2) {
    display: block;
}


@media (min-width:768px) {
    .solution_list ul li:nth-child(odd) a:hover .thumb {
        margin-right: 40px;
    }

    .solution_list ul li:nth-child(odd) a:hover .text {
        left: 60px;
        padding-right: 90px;
    }

    .solution_list ul li:nth-child(odd) a:hover .title:before {
        width: calc(100% + 62px);
    }

    .solution_list ul li:nth-child(even) a:hover .thumb {
        margin-left: 40px;
    }

    .solution_list ul li:nth-child(even) a:hover .text {
        right: 40px;
        padding-left: 80px;
    }

    .solution_list ul li:nth-child(even) a:hover .title:before {
        right: 0;
        left: inherit;
        width: calc(100% + 72px);
    }

}

@media (max-width:991px) {
    .solution_list .thumb {
        height: 400px;
    }

    .solution_list ul li:nth-child(2n) .text {
        padding-left: 50px;
    }

    .solution_list ul li:nth-child(odd) a:hover .title:before {
        width: calc(100% + 42px);
    }

    .solution_list ul li:nth-child(even) a:hover .title:before {
        width: calc(100% + 52px);
    }
}

@media (max-width:767px) {
    .solution_list .thumb {
        width: 100%;
        height: auto;
    }

    .solution_list .text {
        position: relative;
        padding-top: 26px;
        width: 100%;
        padding-right: 0 !important;
        left: inherit;
        right: inherit;
        padding-left: 0 !important;
    }

    .solution_list .text .title {
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .solution_list .more_b {
        padding-top: 30px;
    }

}

/* solution detail*/
.solution_detail {
    padding-top: 30px;
    padding-bottom: 70px;
}

.solution_detail .so_detail_one .left {
    padding-right: 50px;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
}

.solution_detail .so_detail_one .right {
    flex: 1;

    max-width: 710px;
    color: var(--dark);
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.solution_detail .so_detail_one .right p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.so_detail_two {
    padding-top: 60px;
}

.solution_swiper .swiper-slide i {
    width: 100%;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
}

.solution_swiper .so_button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 9;
}

.solution_swiper .so_prev {
    left: 0;
}

.solution_swiper .so_next {
    right: 0;
}

.solution_swiper .so_button:hover {
    background-color: var(--main-color);
}

.solution_swiper .so_button.swiper-button-disabled {
    cursor: default;
    background-color: rgba(0, 0, 0, 0.5);
}



.solution_swiper .so_button img {
    width: 36px;
    height: 36px;
}

.so_detail_three {
    padding-top: 50px;
}

.so_detail_three .big_t {
    color: var(--dark);

    font-weight: 700;
    line-height: 1.2;
}

.so_detail_three .three_list {
    padding-top: 30px;
}

.so_detail_three .three_list .border_list {
    margin-bottom: 20px;
    border: 1px solid #EEE;
}

.so_detail_three .three_list .border_list .title {
    padding: 30px;
    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    border-bottom: 1px solid #EEE;
}

.so_detail_three .three_list .border_list .text {
    padding: 30px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.so_detail_three .three_list .border_list .text p {
    position: relative;
    padding-left: 12px;
}

.so_detail_three .three_list .border_list .text p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background-color: #666;
    border-radius: 50%;
}

.so_detail_four {
    padding-top: 40px;
}

.so_detail_four .big_t {
    color: #000;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.so_detail_four .rela_swiper {
    margin-top: 40px;
}

.rela_swiper .thumb {
    position: relative;
    display: block;
    padding: 62px 64px;
    background-color: #F1F1F1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.rela_swiper .thumb i {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 0.3s ease;
}

.rela_swiper .title {
    margin-top: 30px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.rela_swiper a:hover .thumb i {
    transform: scale(1.05);
}

.rela_swiper a:hover .thumb {
    background-color: transparent;
    background-image: url(../images/pro_mask.svg);
}

.rela_swiper a:hover .title {
    font-weight: 700;
}

.rela_swiper .rela_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -26px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9;
}

.rela_swiper .rela_prev {
    left: 0;
}

.rela_swiper .rela_next {
    right: 0;
}

.rela_swiper .rela_button:hover {
    background-color: var(--main-color);
}

.rela_swiper .rela_button.swiper-button-disabled {
    cursor: default;
    background-color: rgba(0, 0, 0, 0.5);
}


@media (max-width:1279px) {
    .rela_swiper .thumb {
        padding: 42px 44px;
    }

}

@media (max-width:991px) {
    .solution_detail .so_detail_one {
        flex-wrap: wrap;
    }

    .solution_detail .so_detail_one .left {
        padding-right: 0;
        width: 100%;
    }

    .solution_detail .so_detail_one .right {
        padding-top: 25px;
        flex: inherit;
        text-align: left;
    }

    .solution_swiper .so_button {
        width: 60px;
        height: 60px;
    }

    .solution_swiper .so_button img {
        width: 30px;
        height: 30px;
    }

    .rela_swiper .thumb {
        padding: 32px 34px;
    }

}

@media (max-width:767px) {
    .so_detail_two {
        padding-top: 50px;
    }

    .solution_swiper .so_button {
        width: 40px;
        height: 40px;
    }

    .solution_swiper .so_button img {
        width: 20px;
        height: 20px;
    }

    .so_detail_three .three_list .border_list .title {
        padding: 26px 20px;
        font-size: 18px;
    }

    .so_detail_three .three_list .border_list .text {
        padding: 26px 20px;
    }

    .so_detail_four {
        padding-top: 30px;
    }

    .rela_swiper .rela_button {

        margin-top: -26px;
        width: 40px;
        height: 40px;

    }
}

/* cadwork china */
.cad_banner {
    position: relative;
    background-color: #EDEDED;
    overflow: hidden;
}

.cad_banner .ban_img {
    width: 64%;
    float: right;
    text-align: right;
}

.cad_banner .cad_position {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cad_banner .cad_position>.my-container {
    height: 100%;
}

.cad_banner .cad_position .cad_ban_text {
    position: relative;
    width: 30%;
    height: 100%;
    max-width: 432px;
    display: flex;
    align-items: center;
}

.cad_banner .cad_position .cad_ban_text .location {
    position: absolute;
    left: 0;
    top: 30px;
    padding-top: 0;
}

.cad_banner .cad_position .icon {
    max-width: 70%;
}

.cad_banner .cad_position .text {
    margin-top: 20px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    /* text-transform: uppercase; */
    max-height: 156px;
    overflow-y: auto;
}

.cad_bottom_cont .pro_two_menu {
    padding-top: 0;
}

.cad_bg {
    padding: 50px 0 70px 0;
    background: #F5F5F5;
    text-align: center;
}

.cad_bg .cad_title,
.hunde_title {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.cad_bg .cad_s_title {
    padding-top: 40px;
    color: var(--dark);
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
}

.cad_bg .cad_text {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 20px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;

}

.cad_text_content {
    padding-top: 60px;
    padding-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.cad_text_content p {
    padding-bottom: 20px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.cad_text_content p:last-child {
    padding-bottom: 0;
}

.cad_text_content p strong {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
}

.cad_text_pic {
    padding-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.cad_text_pic ul {
    margin-left: -10px;
    margin-right: -10px;
}

.cad_text_pic ul li {
    float: left;
    width: 50%;
    padding: 0 10px;
}

.cad_text_pic .thumb {
    position: relative;
}

.cad_text_pic .thumb img:nth-child(2) {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 158px;
}

@media (max-width:1440px) {
    .cad_banner .cad_position .cad_ban_text .location {
        top: 20px;
    }

    .cad_banner .cad_position .icon {
        padding-top: 30px;
        max-width: 55%;
    }
}

@media (max-width:1280px) {
    .cad_banner .cad_position .cad_ban_text .location {
        top: 10px;
    }

    .cad_banner .cad_position .cad_ban_text {
        width: 34%;
        padding-right: 20px;
    }

}

@media (max-width:1279px) {
    .cad_banner .cad_position .text {
        max-height: 104px;
    }
}

@media (max-width:991px) {
    .cad_banner .cad_position {
        position: relative;
        width: 100%;
        padding-right: 0;
        padding-bottom: 30px;
    }

    .cad_banner .ban_img {
        width: 100%;
    }

    .cad_banner .cad_position .icon {
        margin: 0 auto;
        max-width: 70%;
    }

    .cad_banner .cad_position .cad_ban_text {
        width: 100%;
        max-width: inherit;
        padding-right: 0;
        text-align: center;
        justify-content: center;
    }

    .cad_banner .cad_position .text {
        max-height: inherit;
    }
}

@media (max-width:767px) {
    .cad_text_content {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .cad_banner .cad_position .cad_ban_text {
        padding-top: 25px;
    }

    .cad_bg {
        padding: 50px 0 50px 0;
    }

    .cad_text_pic {
        padding-bottom: 40px;
    }

    .cad_text_pic ul li {
        width: 100%;
        padding-bottom: 20px;
    }
}

/* hundrgger china */
.hunde_banner {
    position: relative;
    overflow: hidden;
}

.hunde_banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

.hunde_bottom {
    padding-top: 50px;
}

.hunde_bottom .cad_text_content {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* hundegger development */
.max1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.development_pic {
    padding-bottom: 45px;
}

.development_pic .deve_swiper {
    margin-top: 50px;
}

.deve_swiper .hunde_pic {
    overflow: hidden;
}

.deve_swiper .hunde_pic i {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 0.3s ease;
}

.deve_swiper .deve_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9;
}

.deve_swiper .deve_prev {
    left: 0;
}

.deve_swiper .deve_next {
    right: 0;
}

.deve_swiper .deve_button:hover {
    background-color: var(--main-color);
}

.deve_swiper .deve_button.swiper-button-disabled {
    cursor: default;
    background-color: rgba(0, 0, 0, 0.5);
}

.deve_year_cont {
    margin-bottom: 50px;
    position: relative;
    padding: 75px 64px;
    background: #F5F5F5;
    z-index: 1;
}

.deve_year_cont .icon {
    position: absolute;
    right: 25px;
    bottom: 25px;
    max-width: 256px;
    z-index: -1;
}

.deve_year_cont ul {
    position: relative;
}

.deve_year_cont ul::before {
    content: "";
    position: absolute;
    left: 118px;
    height: 100%;
    border-left: 2px dashed #CCC;
}

.deve_year_cont ul li {
    display: flex;
    padding-bottom: 40px;
}

.deve_year_cont .year_number {
    position: relative;
    width: 118px;
    color: var(--dark);
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
}

.deve_year_cont .year_number:after {
    content: "";
    position: absolute;
    top: 4px;
    right: -10px;
    width: 18px;
    height: 18px;
    background-image: url(../images/green_cicle.svg);
}

.deve_year_cont .year_cont {
    flex: 1;
    padding-left: 50px;
    padding-top: 2px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    min-height: 52px;
}

.deve_year_cont .year_cont p {
    color: var(--dark);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

@media (max-width:767px) {
    .deve_year_cont {
        margin-bottom: 50px;
        padding: 35px 20px;

    }

    .deve_year_cont .year_number {
        width: 80px;
        font-size: 22px;
    }

    .deve_year_cont ul::before {
        left: 80px;
    }

    .deve_year_cont .year_cont {
        padding-left: 30px;
    }

    .deve_swiper .deve_button {
        width: 40px;
        height: 40px;
    }

    .deve_year_cont .icon {

        max-width: 30%;
    }

}

/* in china */
.in_china_cont {
    padding-top: 50px;
    padding-bottom: 60px;
}

.in_china_text {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 30px;
    color: #666;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.in_china_cont .line {
    border-bottom: 1px solid #EEE;
}

.in_china_cont .china_service {
    padding-top: 40px;
    text-align: center;
}

.in_china_cont .china_service span {
    padding-bottom: 20px;
    display: inline-block;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
    border-bottom: 1px solid #EEE;
}

.china_service_list {
    padding-top: 20px;
}

.china_service_list ul {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.china_service_list ul li {
    width: 33.33%;
    float: left;
    padding: 15px;
}

.china_service_list .bg {
    padding: 64px 32px;
    width: 100%;
    height: 100%;
    border-bottom: 4px solid #999;
    background: linear-gradient(180deg, rgba(249, 249, 249, 0.00) 0%, #F9F9F9 100%);
    transition: all 0.3s ease;
}

.china_service_list .thumb {
    position: relative;
}

.china_service_list .thumb img {
    width: 100%;
}

.china_service_list .thumb .img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 68%;
}



.china_service_list .thumb .text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 30px 16px 22px 16px;
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
}

.china_service_list .ser_name {
    padding-top: 30px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

.china_service_list .ser_contact {
    padding-top: 27px;
}

.china_service_list .ser_contact p {
    padding-left: 26px;
    color: #666;
    font-family: 'Roboto thin';
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
    background-repeat: no-repeat;
    background-position: 0;
    background-size: 26px 26px;
}

.china_service_list .ser_contact p:last-child {
    margin-bottom: 0;
}

.china_service_list .ser_contact .ser_phone {
    background-image: url(../images/ser_icon_01.svg);
}

.china_service_list .ser_contact .ser_email {
    word-break: break-word;
    background-image: url(../images/ser_icon_02.svg);
}

.china_service_list .ser_contact .wechat {
    padding-left: 0;
    background: none;
    color: var(--dark);
    font-family: Roboto;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

.china_service_list ul li:hover .bg {
    transform: translateY(-10px);
}


.service_customer {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.service_customer .customer_left {
    width: 49%;
    padding-top: 74px;

}

.service_customer .customer_left .title {
    color: #FFF;

    font-weight: 700;
    line-height: 1.2;
}

.service_customer .customer_left .eng {
    padding-top: 16px;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    opacity: 0.6;
}
.customer_right {
    padding: 70px 0;
    display: flex;
    align-items: center;
}

@media (max-width:991px) {
    .china_service_list .thumb .text {
        padding: 30px 12px 20px 12px;
    }

    .china_service_list ul {
        margin-left: -10px;
        margin-right: -10px;
        justify-content: flex-start;
    }

    .china_service_list ul li {
        padding: 10px;

    }

    .china_service_list .bg {
        padding: 44px 20px;
    }

    .service_customer .max1200 {
        flex-wrap: wrap;
    }

    .service_customer .customer_left {
        width: 100%;
    }

    .service_customer .customer_right {
        width: 100%;
    }

}

@media (max-width:860px) {
    .china_service_list ul li {
        width: 50%;

    }
}

@media (max-width:767px) {



    .china_service_list ul li {
        width: 100%;
    }


}

/* about */
.about_pic {
    padding-top: 48px;
    width: 100%;
}

.about_table {
    padding-top: 40px;
}

.about_table .in_a_tab ul {
    display: flex;
}

.about_table .in_a_tab ul li {
    width: 50%;
    border: 1px solid #EEE;
    background: #FFF;
}

.about_table .in_a_tab ul li a {
    padding: 20px;
    display: block;
    color: #333;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.about_table .in_a_tab ul li:first-child.active a {
    background-color: var(--main-color);
}

.about_table .in_a_tab ul li:nth-child(2).active a {
    background-color: var(--red-color);
}

.about_table .in_a_tab ul li.active a {
    color: var(--white-color);
}

.about_table .tab_box {
    position: relative;
}

.about_table .tab_box .pub-t1 {
    display: none;
    opacity: 0;
    width: 100%;
}

.about_table .tab_box .pub-t1.d-show {
    display: inline-block;
    opacity: 1;
}

.about_top {
    position: relative;
    padding-top: 50px;
}

.about_top::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 88px);
    background-image: url(../images/about_bh_icon.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: 1;
}

.tab_box .pub-t1:nth-child(2) .about_top::before {

    background-image: url(../images/about_wm_icon.svg);

}

.about_top .my-container {
    position: relative;
    z-index: 9;
}

.about_top .about_infor_left .about_logo {
    min-height: 64px;
}

.about_top .about_infor_left .title {
    color: #333;
    font-weight: 700;
    line-height: 1.5;
}

.about_top .about_infor_right {
    flex: 1;
    padding-top: 48px;
    padding-bottom: 68px;
    margin-left: 80px;
    max-width: 800px;
}

.about_top .about_infor_right .text {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.about_top .about_infor_right .number {
    padding-top: 33px;
}

.about_top .about_infor_right .number ul {
    margin-left: -27px;
    margin-right: -27px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.about_top .about_infor_right .number ul li {
    width: 33.33%;
    padding: 27px;
    float: left;
}

.about_top .about_infor_right .num {
    color: #333;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
}

.about_top .about_infor_right .num span {
    margin-right: 4px;
}

.about_top .about_infor_right .number p {
    padding-bottom: 10px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    border-bottom: 1px solid #666;
}

.about_bottom {
    background-color: #EBEFEC;
}

.about_thumb {
    position: relative;
    padding-top: 186px;
    width: 100%;
    min-height: 588px;
    background-color: #EBEFEC;
}

.about_thumb .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about_thumb .about_thumb_text {
    padding: 50px;
    max-width: 800px;
    background: #FFF;
}

.about_thumb .about_thumb_text .title {
    color: #333;
    font-weight: 700;
    line-height: 1.5;
}

.about_thumb .about_thumb_text .text {
    padding-top: 30px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.about_bottom {
    padding-top: 60px;
}

.about_bottom .title {

    color: #333;
    font-weight: 700;
    line-height: 1.5;
}

.about_bottom .about_bottom_list {
    padding-top: 40px;
    padding-bottom: 60px;
}

.about_bottom .about_bottom_list ul {
    margin-left: -20px;
    margin-right: -20px;
}

.about_bottom .about_bottom_list ul li {
    width: 50%;
    float: left;
    padding: 0 20px;
}

.about_bottom .about_bottom_list .thumb i {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.about_bottom .about_bottom_list p {
    padding-top: 20px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

@media (max-width:1440px) {
    .about_top .about_infor_right .number ul {
        margin-left: -20px;
        margin-right: -20px;
    }

    .about_top .about_infor_right .number ul li {
        padding: 20px;
    }

}

@media (max-width:1439px) {
    .about_top .about_infor_right {
        margin-left: 50px;
    }

    .about_top .about_infor_right .number ul {
        margin-left: -15px;
        margin-right: -15px;
    }

    .about_top .about_infor_right .number ul li {
        padding: 20px 15px;
    }

}

@media (max-width:1279px) {

    .about_top .about_infor_right .number ul li {
        width: 50%;
    }

}

@media (max-width:991px) {
    .about_top .my-container {
        flex-wrap: wrap;
    }

    .about_top .about_infor_right {
        flex: inherit;
        width: 100%;
        margin-left: 0;
        padding-bottom: 40px;
        max-width: 100%;
    }

    .about_top .about_infor_right .number ul li {
        width: 33.33%;
    }

    .about_table .in_a_tab ul li a {
        /* word-break: break-all; */
    }

}

@media (max-width:767px) {
    .about_top::before {
        display: none;
    }

    .about_top .about_infor_left .about_logo {
        min-height: 50px;
    }

    .about_table {
        padding-top: 30px;
    }

    .about_table .in_a_tab ul {
        flex-wrap: wrap;
    }

    .about_table .in_a_tab ul li {
        width: 100%;
    }

    .about_table .in_a_tab ul li a {
        padding: 20px 10px;
        font-size: 18px;
    }

    .about_top .about_infor_right .number ul li {
        width: 50%;
    }

    .about_top .about_infor_right .num {
        font-size: 24px;
    }

    .about_top .about_infor_right .num span {
        font-size: 26px;

    }

    .about_top .about_infor_right .number p {
        margin-top: 10px;
        line-height: 24px;
        height: 57px;
        padding-bottom: 9px;
    }

    .about_thumb {
        padding-top: 0;
        min-height: inherit;
    }

    .about_thumb .bg {
        position: relative;
        height: auto;
        background-image: none !important;
        padding-left: 16px;
        padding-right: 16px;
    }

    .about_thumb .about_thumb_text {
        padding: 40px 25px;
        margin-top: 25px;
    }

    .about_bottom {
        padding-top: 50px;
    }

    .about_top .about_infor_left .title,
    .about_thumb .about_thumb_text .title,
    .about_bottom .title {
        line-height: 1.4;
    }

    .about_bottom .about_bottom_list {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .about_bottom .about_bottom_list ul li {
        width: 100%;
        padding-bottom: 30px;
    }

    .about_top .about_infor_right {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/*news center*/
.social_list {
    padding-top: 48px;
}

.social_list .son_list a {
    display: flex;
    align-items: center;
}

.social_list .thumb {
    position: relative;
    width: 416px;
    display: inline-block;
    overflow: hidden;
}

.social_list .thumb i {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s;
}

.social_list ul li {
    padding-bottom: 20px;
    padding-top: 20px;
    border-bottom: 1px solid #EEE;
}


.social_list li a:hover .thumb i {
    transform: translate(-50%, -50%) scale(1.03);
}

.social_r {
    flex: 1;
    padding-left: 50px;
}

.social_r .time {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
}

.social_r .t {
    color: var(--dark);
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    height: 72px;
    text-transform: capitalize;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.social_r .so_more {
    padding-top: 60px;
}

.son_list .more_b {
    padding-top: 60px;
    display: inline-block;
}

.son_list .more_b>div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.son_list .more_b span {
    margin-left: 10px;
}

.son_list .more_b span img:nth-child(2) {
    display: none;
}

.son_list a:hover .more_b span img:nth-child(1) {
    display: none;
}

.son_list .more_b span img:nth-child(2) {
    display: none;
}

.son_list a:hover .more_b span img:nth-child(2) {
    display: block;
}

.son_list a:hover .more_b>div:first-child {
    color: var(--main-color);
}

.social_list a:hover .t {
    color: var(--blue);
}

@media screen and (max-width:1100px) {
    .social_list .thumb {
        width: 350px;
    }

}

@media screen and (max-width:991px) {
    .social_list {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .social_r {
        padding-left: 30px;
    }

}

@media screen and (max-width:900px) {
    .social_list .thumb {
        width: 300px;
    }

    .social_r .t {
        font-size: 22px;
    }

    .social_r .so_more {
        padding-top: 30px;
    }

}

@media screen and (max-width:767px) {
    .social_list .son_list a {
        display: block;
    }

    .social_list .thumb {
        width: 100%;
    }

    .social_r {
        width: 100%;
        padding-top: 15px;
        padding-left: 0;
    }

    .social_r .t {
        margin-top: 10px;
        font-size: 18px;
        line-height: 25px;
        height: 50px;
    }

    .social_r .time {
        line-height: 30px;
    }

    .social_list {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .son_list .more_b {
        padding-top: 30px;
    }

}

/*page*/
.paged {
    padding: 60px 0 60px 0;
    text-align: center;
    overflow: hidden;
}

.paged .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.paged .pagination li {
    display: inline-block;
    padding: 0 25px;

}

.paged:after {
    clear: both;
    content: '';
    width: 0px;
    display: block;
    height: 0px;
    visibility: hidden;
}

.paged span,
.paged a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-size: 20px;
    font-weight: 400;
}

.paged a:hover,
.paged .active span {
    color: var(--main-color);
}

.paged ul li:first-child span,
.paged ul li:last-child a,
.paged ul li:first-child a,
.paged ul li:last-child span {
    height: 50px;
    width: 50px;
    border: 1px solid #EEE;
    background: #FFF;
}

.paged a:hover svg path {
    stroke: var(--main-color);
}

@media (max-width:767px) {
    .paged {
        padding: 10px 0 30px 0;
    }

    .paged span,
    .paged a {
        font-size: 14px;
        height: 40px;
    }

    .paged .pagination li {
        display: inline-block;
        padding: 0 10px;

    }

    .paged ul li:first-child span,
    .paged ul li:last-child a,
    .paged ul li:first-child a,
    .paged ul li:last-child span {
        width: 40px;
        height: 40px;
    }

}

/* article */
.article_cont {
    padding-top: 28px;
}

.article_cont .big_t {
    color: #111;
    font-weight: 400;
    line-height: 1.5;
}

.article_cont .article_share {
    padding-bottom: 25px;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EEE;
    overflow: hidden;
}

.article_cont .article_share .time {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
}

.article_cont .article_share .right {
    display: flex;
    align-items: center;
}

.article_cont .article_share .right a {
    margin-left: 10px;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.article_cont .article_share .right a:hover {
    transform: translateY(-5px);
}

.article_text {
    padding-top: 50px;
    padding-bottom: 60px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
}

.article_text p {
    padding-bottom: 20px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
}

.article_text p:last-child {
    padding-bottom: 0;
}

.article_text p img {
    display: block;
    max-width: 100%;
    width: auto !important;
    height: auto !important;
    margin: 0 auto;
}

.article_back {
    padding-bottom: 60px;
}

.article_back .up_ {
    position: relative;
    padding: 40px 0;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
}

.article_back .up_::before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 52px;
    background: #EEE;
}

.article_back .up_ .prev {
    width: calc(50% - 60px);
}

.article_back .up_ .next {
    width: calc(50% - 60px);
}

.article_back .up_ .n {
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.article_back .up_ .t {
    color: #111;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.article_back .up_ a:hover .t {
    color: var(--main-color);
}

.article_back .up_back {
    padding-top: 40px;
    display: flex;
    justify-content: center;
}

.article_back .up_back a {
    display: inline-flex;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
    color: #FFF;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 400;
}

.article_back .up_back a img {
    margin-right: 15px;
}

@media (max-width:767px) {
    .article_cont .big_t {
        line-height: 1.3;
    }

    .article_cont .article_share {
        padding-bottom: 15px;
        /* padding-top: 15px; */
    }

    .article_text {
        padding-top: 20px;
        padding-bottom: 30px;
        line-height: 1.8;
    }

    .article_text p {
        line-height: 1.8;
    }

    .article_back .up_ {
        flex-wrap: wrap;
        padding: 30px 0 15px 0;
    }

    .article_back .up_ .prev,
    .article_back .up_ .next {
        width: 100%;
        padding-bottom: 15px;
    }

    .article_back .up_::before {
        display: none;
    }

    .article_back .up_back a {
        font-size: 18px;
    }

    .article_back .up_back a img {
        margin-right: 10px;
    }

}

/* hundegger china */
.hun_production {
    padding-top: 30px;
    padding-bottom: 40px;
}

.hun_production ul {
    margin-left: -10px;
    margin-right: -10px;
}

.hun_production ul li {
    width: 50%;

    padding: 20px 10px;
    float: left;
}

.hun_production .thumb {
    overflow: hidden;
}

.hun_production .thumb i {
    position: relative;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s ease;
}

.hun_production .thumb i span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.hun_production .title {
    margin-top: 30px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 400;
}

.hun_production .text {
    margin-top: 10px;
    color: #666;
    font-family: 'Roboto thin';
    font-size: 16px;
}

.hun_production a.line {
    display: block;
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 30px;
}

.hun_production .more {
    margin-top: 30px;
    display: inline-block;
}

.hun_production .more a {
    display: flex;
    align-items: center;
}

.hun_production .more span,
.hun_production .more i {
    transition: all 0.3s ease;
}

.hun_production .more span {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 400;
}

.hun_production .more i {
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    background-image: url(../images/green_jia.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.hun_production .more i:first-child {
    margin-right: 10px;
}

.hun_production .more i:nth-child(3) {
    margin-left: 10px;
    display: none;
}

.hun_production a:hover .thumb i {
    transform: scale(1.05);
}

.hun_production a:hover .thumb i span {

    opacity: 1;
}

.hun_production a:hover .title {
    font-weight: 700;
}

.hun_production .more a:hover {
    padding-left: 14px;
}

.hun_production .more:hover i {
    transform: translateX(126%);
    margin-right: 0;

}

.hun_production .more:hover span {
    transform: translateX(-100%);
}


@media (max-width:540px) {
    .hun_production ul li {
        width: 100%;
    }

    .hun_production .title {
        margin-top: 20px;
    }

    .hun_production a.line {
        padding-bottom: 20px;
    }

    .hun_production .more {
        margin-top: 20px;
    }

}


/* cadwork */
.cadwork_list {
    padding-top: 50px;
    padding-bottom: 55px;
}

.cadwork_list .no1 {
    margin-bottom: 5px;
    cursor: pointer;
}

.cadwork_list .no1_cont {
    max-height: 0px;
    padding-left: 30px;
    padding-right: 30px;
    border: 1px solid #EEE;

    overflow: hidden;
    transition: all 0.4s ease;
}

.cadwork_list .no1_cont p {
    padding-bottom: 30px;
    color: #666;
    font-family: 'Roboto thin';
    font-size: 18px;
    line-height: 26px;
}

.cadwork_list .no1_cont p:last-child {
    padding-bottom: 0;
}

.cadwork_list .no1_cont img {
    display: block;
    max-width: 100%;

    width: auto !important;
    height: auto !important;
    margin: 0 auto;
}

.cadwork_list .no1_title {
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    background-color: #F5F5F5;
}

.cadwork_list .no1_title .no1_title_left {
    flex: 1;
    margin-right: 20px;
    color: var(--dark);
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
}

.cadwork_list .no1_title i {
    width: 26px;
    height: 26px;
    background-image: url(../images/cadwork_close.svg);
}

.cadwork_list .active .no1_cont {
    opacity: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    max-height: inherit;
}

.cadwork_list .active .no1_title i {
    background-image: url(../images/cadwork_open.svg);
}

@media (max-width:767px) {
    .cadwork_list .no1_title .no1_title_left {
        font-size: 20px;
    }

    .cadwork_list .no1_cont {
        padding-left: 20px;
        padding-right: 20px;
    }

}

/* contact */
.contact_banner {
    position: relative;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.contact_banner .mask {
    padding-top: 76px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.contact_banner .pro_title h2 {
    color: var(--white-color);
}

.contact_cont {
    position: relative;
    margin-top: -150px;
    z-index: 9;
}

.contact_cont .contact_cont_box {
    position: relative;
    padding: 60px 70px 0 70px;
    background: linear-gradient(180deg, #FFF 0%, #FFF 100%);
    z-index: 1;
}

.contact_cont .contact_cont_box::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 90%;
    max-width: 366%;
    max-height: 287px;
    background-image: url(../images/contact_icon_r.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
    z-index: -1;
}

.contact_cont_box .title {
    position: relative;
    padding-bottom: 16px;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.2;

}

.contact_cont_box .title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 1px;
    background-color: var(--main-color);
}

.contact_cont_box .contact_text {
    padding-top: 80px;
    padding-bottom: 100px;
}

.contact_cont_box .contact_text .line {
    width: 1px;
    height: 170px;
    background-color: #EDEDED;
}

.contact_cont_box .contact_text .text_list span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--main-color);
}

.contact_cont_box .contact_text .text_list .t {
    padding-top: 16px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.contact_cont_box .contact_text .text_list p {
    padding-top: 16px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}

.contact_cont_box .contact_text .code_img ul {
    display: flex;
    justify-content: space-between;
    margin-left: -10px;
    margin-right: -10px;
}

.contact_cont_box .contact_text .code_img li {
    padding: 0 10px;
}

.contact_cont_box .contact_text .code_img li {
    text-align: center;
}

.contact_cont_box .contact_text .code_img img {
    width: 100px;
    border: 1px solid #EEE;
}

.contact_cont_box .contact_text .code_img p {
    padding-top: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.contact_form {
    padding-top: 60px;
}

.contact_form .top .title {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.1;

}

.contact_form .top .text {
    padding-top: 20px;
    color: #999;
    font-size: 16px;
    font-weight: 400;
}

/* message */
.messform {
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 50px;
    padding-bottom: 60px;
    overflow: hidden;
}

.messform .text-area label {
    position: absolute;
    top: -20px;
    left: 0;
    color: var(--red-color);
}

.messform .col {
    width: 50%;
    padding: 10px 15px;
    float: left;
}

.messform .input-container {
    position: relative;
}

.messform .input-container input {
    outline: none;
    z-index: 1;
    padding: 20px 16px;
    padding-left: 102px;
    position: relative;
    background: none;
    background-color: #FFF;
    width: 100%;
    height: 68px;
    border: 0;
    font-family: Roboto;
    color: var(--dark);
    line-height: 28px;
    font-size: 16px;
    font-weight: 400;
}

.messform .input-container span {
    position: absolute;
    left: 30px;
    top: 24px;
    width: 120px;

    color: #CCC;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    z-index: 9;
}

.messform .input-container span em {
    color: #F1151B;
    font-size: 16px;
    font-style: normal;
}

.messform .input-container input {
    color: var(--dark);
}

/* .messform .input-container input::-webkit-input-placeholder {
    color: #CCC;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
}

.messform .input-container input:-moz-placeholder {
    color: #CCC;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
}

.messform .input-container input::-moz-placeholder {
    color: #CCC;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
}

.messform .input-container input:-ms-input-placeholder {
    color: #CCC;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
} */


.messform .input-container textarea {
    color: var(--dark);
}


.messform .colw100 {
    width: 100%;
    padding: 10px 15px;
    float: left;
}

.messform .input-container textarea {
    outline: none;
    z-index: 1;
    position: relative;
    background-color: var(--white-color);
    width: 100%;
    height: 230px;
    padding: 20px 25px 30px;
    padding-left: 155px;
    line-height: 26px;
    border: 0;
    color: var(--dark);
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    resize: none;
}

.messform .yanz {
    width: 452px;
    max-width: calc(100% - 210px);
}

.messform .yanz .messcontrol {
    padding-left: 170px;
}

.messform .yanz span {
    width: 130px;
}

.messform .yz {
    margin-left: 8px;
}

.messform .yz img {
    height: 68px;
}

.messform .reset,
.messform .submit {
    width: calc(50% - 15px);
    height: 70px;
    background: transparent;
    color: #FFF;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 400;
    border-radius: 0;
    cursor: pointer;
}

.messform .reset {
    background: #CCC;
}

.messform .submit {
    margin-left: 16px;
    background-color: var(--white-color);

    color: #FFF;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 400;

    display: flex;
    align-items: center;
    justify-content: center;
}

.messform .submit {
    background-color: var(--main-color);
    color: var(--white-color);

}

@media (max-width:1279px) {
    .contact_cont_box .contact_text {
        flex-wrap: wrap;
    }

    .contact_cont_box .contact_text .line:nth-child(6) {
        display: none;
    }

    .contact_cont_box .contact_text .code_img {
        padding-top: 30px;
        width: 50%;
    }
}

@media (max-width:991px) {
    .contact_cont_box .contact_text {
        padding-top: 60px;
        padding-bottom: 50px;
    }

    .contact_cont_box .contact_text .text_list {
        width: 50%;
        padding-bottom: 30px;
    }

    .contact_cont_box .contact_text .code_img {
        width: 100%;
        padding-top: 0;
        max-width: 400px;
    }

    .contact_cont_box .contact_text .line {
        display: none;
    }
}

@media (max-width:767px) {
    .contact_banner {
        height: auto;
        background-image: none !important;
    }

    .contact_banner .mask {
        position: absolute;
        left: 0;
        top: 0;
        padding-top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact_banner .pro_title {
        margin-top: 0;
    }

    .contact_cont {
        margin-top: 30px;
    }

    .contact_cont .contact_cont_box {
        padding: 40px 20px 0 20px;
    }

    .contact_cont_box .contact_text .text_list {
        width: 100%;
    }

    .contact_cont_box .contact_text .text_list .t {
        padding-top: 10px;
        line-height: 1.2;
    }

    .contact_cont_box .contact_text .text_list p {
        padding-top: 10px;
        font-size: 18px;
        line-height: 1.2;
    }

    .contact_cont_box .contact_text .code_img ul {
        margin-left: -5px;
        margin-right: -5px;
    }

    .contact_cont_box .contact_text .code_img li {
        padding: 0 5px;
    }

    .messform .input-container span {
        left: 16px;
        top: 20px;
        width: 120px;
    }

    .messform .yanz span {
        width: 130px;
    }

    .messform .yanz .messcontrol {
        padding-left: 160px;
    }

    .messform .col {
        width: 100%;
    }

    .messform .input-container input {
        padding: 15px 16px;
        padding-left: 102px;
        height: 58px;
        line-height: 28px;
    }

    .messform .code_yz {
        flex-wrap: wrap;
    }

    .messform .yanz {
        max-width: inherit;
        width: 100%;
    }

    .messform .yz {
        padding-top: 20px;
        width: 100%;
        margin-left: 0;
    }

    .messform .yz img {
        height: 58px;
    }

    .messform .reset,
    .messform .submit {
        height: 50px;
        font-size: 18px;
    }
}


/*sitemap*/
.site_map {
    padding: 30px 0;
}

.wzdt_xt {
    width: calc(100% - 200px);
    padding-top: 0;
    padding-left: 30px;
    float: left;
}

.wzdt_xt ul li {
    float: left;
    line-height: 45px;
    padding-right: 20px;
}

.wzdt_xt ul li.w100 {
    width: 100%;
}

.wzdt_xt ul li a {
    font-size: 16px;
    color: var(--dark);
}

.wzdt_xt ul li a.one {
    font-size: 18px;
    color: var(--dark);
    font-weight: bold;
}

.wzdt_xt ul li a:hover {
    color: var(--main-color);
}

.sitemapz {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 20px;
}

.sitemapy {
    float: left;
    width: 200px;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
}

.sitemapy h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.sitemapy h3 a {
    color: #fff;
    font-size: inherit;
    display: block;
    line-height: 45px;
}

@media (max-width:767px) {
    .sitemapy h3 a {
        font-size: 18px;
    }

    .sitemapy {
        width: 100%;
    }

    .wzdt_xt {
        padding: 10px 0;
        width: 100%
    }

    .wzdt_xt ul li {
        line-height: 30px;
        padding-left: 15px;
    }

    .wzdt_xt ul li a {
        font-size: 16px;
    }
}