@charset "utf-8";

/*header*/
header {
    position: fixed;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all .5s ease-out;
    z-index: 999;
}

.header {
    position: relative;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    transition: background-color .4s;
    z-index: 4;
}

.header .logo {
    float: left;
    height: 100%;
    width: 120px;
    display: flex;
    align-items: center;
}

.logo img:nth-child(2) {
    display: none;
}

.header .header_r {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.menu {
    padding-right: 74px;
}
.menu ul {
    margin-left: -25px;
    margin-right: -25px;
    display: flex;
    justify-content: space-between;
}

.menu ul>li {
    float: left;
    padding: 0 25px;
}

.menu ul>li>a {
    position: relative;
    padding-top: 38px;
    padding-bottom: 38px;
    display: inline-block;
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.menu ul>li>a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--white-color);
    transform-origin: bottom right;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

/* hover */
.menu>ul>li.active>a,
.menu>ul>li.current>a {
    color: var(--white-color);
    font-weight: 700;
}

.menu ul>li>a:hover::before,
.menu ul>li.active>a::before,
.menu ul>li.current>a::before {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.menu ul>li.active>a::before,
.menu ul>li.current>a::before {
    background-color: var(--white-color);
}

/* menu */
.menu .menu_item_li .submenu-hidden {
    left: 0;
    position: absolute;
    top: calc(100% + 1px);
    display: flex;
    transition: all 0.4s ease-out;
    width: 100%;
    background-color: var(--white-color);
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    z-index: 9;
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
}

.menu .menu_item_li .max-width {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    max-width: 950px;
    margin: 0 auto;
}

.menu .menu_item_li .submenu .menu_item_a {
    position: relative;
    font-size: 16px;
    color: #666;
    line-height: 26px;
    margin-right: 18px;
    margin-left: 18px;
    transition: all .2s;
}

.menu .menu_item_li .submenu .menu_item_a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--blue-color);
    transform-origin: center;
    transform: translate(-50%, 0) scaleX(0);
    transition: transform 0.3s ease-in-out;
}
.menu .menu_item_li>.submenu a:hover {
    color: var(--blue-color);
}
.menu .menu_item_li>.submenu a:hover::before {
    transform: translate(-50%, 0) scaleX(1);
}

.menu>ul>li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}
.language_box {
    position: relative;
    margin-right: 10px;
  }
  
  .header_language {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    padding-top: 60px;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    pointer-events: none;
  }
  
  .header_language:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 34px;
    opacity: 0;
    border-radius: 27px;
    background-color: var(--white-color);
    z-index: 1;
    pointer-events: none;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
  }
  
  .language_current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100px;
background: rgba(255, 255, 255, 0.30);
    transition: all .6s ease;
    position: relative;
    z-index: 2;
  }
  
  .language_content {
    position: relative;
    z-index: 2;
    padding: 10px 0 10px 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
  
  .language_content .language_item_box {
    padding-bottom: 2px;
  }
  
  .language_content a {
    color:var(--black-color);
    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_content a:hover {
    color: var(--main-color);
  }
  .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;
  }

/* product */
.menu .menu_item_li .pro_menu_z {
    /* background-color: #F5F7FA; */
}
.menu .menu_item_li .pro_menu_z:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 10%;
    height: 100%;
    background-color:#F5F7FA;
z-index: -1;
}
.pro_menu_left {
    padding: 56px 80px 45px 0;
    width: 450px;
    background-color: #F5F7FA;

}

.pro_menu_right {
    flex: 1;
    justify-content: space-between;
    padding-top: 65px;
    padding-left: 90px;
    padding-bottom: 50px;
    background-color: var(--white-color);
}

.pro_menu_left .t {
    color: var(--blue-color);
    font-weight: 600;
}

.pro_menu_left .des {
    padding-top: 32px;
    font-size: 16px;
    color:#666;
    line-height: 32px;
    min-height: 128px;
}

.pro_menu_left .index_more {
    margin-top: 50px;
}

.pro_menu_right .item {
   width: calc(20% - 15px);

}

.pro_menu_right .item .title {
    position: relative;
    display: block;
    padding-bottom: 15px;
    color: var(--black-color);
    font-weight: 700;
    font-size: 18px;
}

.pro_menu_right .item .title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    /* background-color: #e5e5e5; */
    background-image: url(../images/pro_menu_line.png);
    background-repeat: no-repeat;
    background-position: left;
}

.call_line {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    padding: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}
.call_line .t {
    color:var(--white-color);
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.call_line .t img {
    margin-right: 6px;
}
.call_line .call_tel {
    padding-top: 6px;
}
.call_line .call_tel a{
    color:var(--white-color);
text-align: center;
font-family: 'Archivo';
font-size: 26px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.call_line .call_tel a:hover {
    color: var(--white-color) !important;

}
.pro_menu_right .item .loop {
    padding-top: 10px;
    display: flex;
    flex-flow: column;
}

.pro_menu_right .item .loop a {
    position: relative;
    padding-left: 15px;
    margin-top: 13px;
    line-height: 26px;
    font-size: 16px;
    color: #666;
}
.pro_menu_right .item .loop a::after {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
    color: #666;
}
.pro_menu_right .item .loop a:hover {
    color: var(--blue-color);
}
.pro_menu_right .item .loop a:hover:after {
    color: var(--blue-color);

}

@media (max-width:1580px) {
    .pro_menu_left {
        padding: 50px 30px 50px 0;
        width: 420px;
    }

    .pro_menu_right {
        padding-left: 50px;
    }

}

@media (max-width:1440px) {
    .pro_menu_left {
        padding: 50px 30px 50px 0;
        width: 400px;
    }

    .pro_menu_right {
        padding-left: 40px;
    }

}

@media (max-width:1439px) {
    .pro_menu_left {
        padding: 50px 30px 50px 0;
        width: 350px;
    }

    /* .pro_menu_right {
        padding-left: 0px;
    } */

}

.head_menu {
    margin-left: 20px;
    width: 40px;
    cursor: pointer;
    display: none;
}

.head_menu i {
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../images/menu_line_white.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.head_menu img:nth-child(2) {
    display: none;
}

.head_link {
    padding-left: 10px;
}

.head_link a {
    padding: 16px 30px;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 100px;
}

.search {
    position: relative;
    pointer-events: auto;
    width: 60px;
    height: 60px;
    transition: width .6s cubic-bezier(.38, 0, 0, 1);
    z-index: 1;
}

.search .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    cursor: pointer;
    height: 60px;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.30);
    transition: background .3s cubic-bezier(.38, 0, 0, 1);
    background-image: url(../images/search_white.svg);
    background-repeat: 24px 22px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.search .putIn {
    width: 194px;
    height: 100%;
    opacity: 0;
    z-index: 3;
    transform-origin: 100%;
    border: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    padding: 0 10px 0 40px;
    transition: transform .6s cubic-bezier(.38, 0, 0, 1), opacity .6s cubic-bezier(.38, 0, 0, 1);
    position: absolute;
    top: 0;
    right: 0;
    transform: scaleX(0);
    font-size: 16px;
    color: var(--black-color);
    font-family: 'Microsoft YaHei';
    z-index: -1;
}

.search:hover {
    width: 224px;
}

.search:hover .icon {
    background-color: var(--main-color);
}

.search:hover .putIn {
    opacity: 1;
    transform: scaleX(1);
}

/* 导航弹出 */
body.fixed {
    overflow: hidden;
}
.main-sidebar {
    position: fixed;
    top: -120%;
    left: 0;
    padding-top: 15px;
    overflow-y: scroll;
    height: calc(100% - 80px);
    min-height: calc(100% - 80px);
    width: 100%;
    z-index: 810;
    background: #FFFFFF;
    transition: all 0.5s ease-in-out;
}

.page_header .main-sidebar {
    height: calc(100% - 57px);
}

.disleft {
    top: 100px;
}


.sidebar-menu {
    list-style: none;
    margin: 0;
    background: #FFFFFF;
    padding: 0 16px;
}

.sidebar-menu>li {
    position: relative;
    margin: 0;
    padding: 18px 0;
    border-bottom: 1px solid #F2F4F6;
}

.sidebar-menu>li>a {
    display: block;
    font-weight: bold;
    color: #333333;
    line-height: 22px;
}

.sidebar-menu>li>a>span {
    color: inherit;
    font-size: 16px;
}

.sidebar-menu>li>a>i {
    width: 18px;
    height: 22px;
    float: right;
    background-image: url(../images/menu_icon_pressed_one.svg);
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: center;
}

.sidebar-menu>li.active>a>i {
    background-image: url(../images/menu_icon_open_one.svg);
}

.sidebar-menu>li>.treeview-menu li em {
    width: 18px;
    height: 22px;
    float: right;
    font-style: normal;
    background-image: url(../images/menu_icon_more.svg);
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: center;
}

.sidebar-menu>li>.treeview-menu li i {
    width: 18px;
    height: 22px;
    float: right;
    background-image: url(../images/menu_icon_more.svg);
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: center;
}

.sidebar-menu>li>.treeview-menu li.ico i {
    background-image: url(../images/menu_icon_open_two.svg);
}

.sidebar-menu>li .badge,
.sidebar-menu>li .label {
    margin-top: 3px;
    margin-right: 5px
}

.sidebar-menu li.header {
    padding: 10px 25px 10px 15px;
    font-size: 12px;
}

.sidebar-menu li.active>.treeview-menu {
    display: block
}

.sidebar-menu a {
    text-decoration: none
}

.sidebar-menu .treeview-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 10px;
    padding-top: 8px;
}

.sidebar-menu .treeview-menu .treeview-menu {
    padding-left: 20px
}

.sidebar-menu .treeview-menu>li {
    margin: 0
}

.sidebar-menu .treeview-menu>li>a {
    padding: 7px 0px 7px 0;
    display: block;
    color: #666;
}

.sidebar-menu .treeview-menu>li>.treeview-menu {
    border-left: 1px solid #F2F4F6;
}

.sidebar-menu .treeview-menu>li>.menu_open {
    padding-top: 10px;
    padding-bottom: 10px;
}

.sidebar-menu .treeview-menu>li>.menu_open li {
    padding-bottom: 15px;
    border-left: 1px solid #F2F4F6;
    padding-left: 20px;
}

.sidebar-menu .treeview-menu>li>.menu_open li:last-child {
    padding-bottom: 0;
}

.sidebar-menu .treeview-menu>li>.treeview-menu>li>a {
    padding: 7px 0px 7px 0;
}

.sidebar-menu .treeview-menu>li.active>a i {
    background-image: url(../images/menu_icon_open_two.svg);
}

.sidebar-menu .treeview-menu>li>.menu_open li b {
    width: 18px;
    height: 22px;
    float: right;
    background-image: url(../images/user_icon_more.svg);
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: center;
}

.sear_eject {
    padding: 5px 16px;
    padding-bottom: 20px;
}

.search_bg {
    padding: 10px 20px;
    width: 100%;
    height: 48px;
    background: #F2F4F6;
    border-radius: 24px 24px 24px 24px;
}

.search_bg .ser_input {
    float: left;
    line-height: 28px;
    width: calc(100% - 20px);
    border: none;
    outline: 0;
    background: none;
    color: #333;
}

.search_bg .ser_input:-moz-placeholder {
    color: #CCCCCC;
}

.search_bg .ser_input::-moz-placeholder {
    color: #CCCCCC;
}

.search_bg .ser_input:-ms-input-placeholder {
    color: #CCCCCC;
}

.search_bg .ser_input::-webkit-input-placeholder {
    color: #CCCCCC;
}

.search_bg .ser_button {
    float: right;
    width: 20px;
    height: 100%;
    border: none;
    outline: 0;
    font-size: 0;
    background-color: inherit;
    background-image: url(../images/menu_icon_search.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
}

.navtoggle {
    display: none;
    margin-left: 10px;
    width: 32px;
    height: 37px;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 999;
    transition: all 0.5s ease-in-out;
}

.navtoggle span {
    width: 100%;
    height: 100%;
    display: inline-block;
    background-image: url(../images/nav_icon_menu_white.svg);
    font-size: 0;
    background-position: center;
    background-size: 24px 24px;
    background-repeat: no-repeat;
}
.headerColor2 .navtoggle span,
.headerColor3 .navtoggle span,
.grey_head .navtoggle span,
.white_head .navtoggle span {
    background-image: url(../images/nav_icon_menu_grey.svg);
}

.headerColor3 .navtoggle.navleft span,
.grey_head .navtoggle.navleft span {
    background-image: url(../images/menu_icon_close.svg);
}

.navleft span {
    background-image: url(../images/menu_icon_close.svg);
    background-size: 24px 24px;
}

.menud_footer {
    padding-top: 30px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 40px;
    text-align: center;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 22px;
}

.menud_footer a {
    font-weight: 400;
    color: #CCCCCC;
    line-height: 22px;
}

.menud_footer span {
    font-size: inherit;
    color: inherit;
    white-space: nowrap;
}

.two_menu {
    display: block;
}

.two_menu .menu_open {
    display: none;
}

/* header */

/*header hover*/
.header.grey_head,
.header.headerColor2,
.header.headerColor3,
.header.white_head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    background: #FFF;
}

.header.grey_head .logo img:nth-child(1),
.header.white_head .logo img:nth-child(1),
.header.headerColor2 .logo img:nth-child(1),
.header.headerColor3 .logo img:nth-child(1) {
    display: none;
}

.header.grey_head .logo img:nth-child(2),
.header.white_head .logo img:nth-child(2),
.header.headerColor2 .logo img:nth-child(2),
.header.headerColor3 .logo img:nth-child(2) {
    display: block;
}


.header.grey_head .menu ul>li>a,
.header.white_head .menu ul>li>a,
.header.headerColor2 .menu ul>li>a,
.header.headerColor3 .menu ul>li>a {
    color: var(--black-color);
}

.header.grey_head .menu ul>li>a::before,
.header.white_head .menu ul>li>a::before,
.header.headerColor2 .menu ul>li>a::before,
.header.headerColor3 .menu ul>li>a::before {
    background-color: var(--main-color);
}

.header.grey_head .menu>ul>li.active>a,
.header.grey_head .menu>ul>li.current>a,
.header.white_head .menu>ul>li.active>a,
.header.white_head .menu>ul>li.current>a,
.header.headerColor2 .menu>ul>li.active>a,
.header.headerColor2 .menu>ul>li.current>a {
    color: var(--main-color);
}

.header.grey_head .menu ul>li.active>a::before,
.header.grey_head .menu ul>li.current>a::before,
.header.white_head .menu ul>li.active>a::before,
.header.white_head .menu ul>li.current>a::before {
    background-color: var(--main-color);
}





.header.white_head .head_menu img:nth-child(2) {
    display: none;
}

.header.white_head .head_menu img:nth-child(1) {
    display: block;
}



.header.grey_head .language_current,
.header.headerColor2 .language_current,
.header.white_head .language_current{
background: rgba(0, 0, 0, 0.30);
}

.header.grey_head .search .icon,
.header.headerColor2 .search .icon,
.header.white_head .search .icon {
    background-color: rgba(0, 0, 0, 0.30);
}

.header.grey_head .search:hover .icon,
.header.headerColor2 .search:hover .icon,
.header.white_head .search:hover .icon {
    background-color: var(--main-color);
}

.header.grey_head .head_menu i,
.header.white_head .head_menu i {
    background-image: url(../images/menu_line.svg);
}
@media (max-width:1800px) {

.header {
    padding-left: 70px;
    padding-right: 70px;
}
.menu {
    padding-right: 50px;
}
.menu ul {
    margin-left: -20px;
    margin-right: -20px;
}

.menu ul>li {
    padding: 0 20px;
}
}
@media (max-width:1580px) {
    .header {
        padding: 0 50px;
    }
    .menu{
        padding-right: 45px;
    }
    
    .menu ul {
        margin-left: -13px;
        margin-right: -13px;
    }

    .menu ul>li {
        padding: 0 13px;
    }
    

}

@media (max-width:1440px) {
    .menu{
        padding-right: 40px;
    }
    .menu ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .menu ul>li {
        padding: 0 10px;
    }

}

@media (max-width:1439px) {
    .header {
        padding: 0 50px;
    }
    .menu{
        padding-right: 30x;
    }
    .search:hover {
        width: 190px;
    }
    
    .search .putIn{
        width: 160px;
    }
}

@media (max-width:1365px) {
    .menu {
        display: none;
    }
    .navtoggle {
        display: block;
    }
}

@media (max-width:360px) {}


.visibles {
    visibility: visible;
    opacity: 1;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 99;
}

.hidden {
    display: none;
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menu ul li {
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media (max-width:991px) {
    .search,
    .search .icon {
        width: 50px;
        height: 50px;
    }
    .language_current {
        width: 50px;
        height: 50px;
    }

}
@media (max-width:767px) {
    .header {
        padding: 0 20px;
        height: 80px;
    }
   
    .head_menu {
        margin-left: 10px;
    }
    .head_link {
        display: none;
    }
   .search {
    display: none !important;
   }
   .language_current {
    width: 46px;
    height:46px;
}
.header_language {
    padding-top: 50px;
}
   .disleft {
    top: 80px;
}

}

