﻿@import url(https://fonts.googleapis.com/css?family=Lato);
*{
    margin: 0;padding: 0;
}
@charset "utf-8";
/**
 * @Author   zcool
 * @Date     2017-11-20
 */

body, h1, h2, h3, h4, h5, h6, p,dl, dt, dd, ul, li, pre, form, fieldset, legend, button, input, textarea, th, td ,ol{margin: 0;padding: 0;}
body {font: 12px "PingFang HK","Microsoft YaHei","Arial";color: #333;line-height: 1.5;overflow-x: hidden;}
ol,ul,li {list-style-type:none;vertical-align : middle;}
img {vertical-align:top;border: 0;}
input,select,textarea,button {vertical-align:middle;}
textarea,input {text-indent: 10px;} /*表单元素默认有10像素的缩进*/
input[type='submit'],input[type='button'],button {text-indent: 0;text-align: center;cursor: pointer;}
label, button, a {cursor: pointer}
ins,em,b,i {text-decoration: none;font-style: normal;}
/* 去掉浏览器激活样式 */
select:focus,
textarea:focus,
input:focus,
button{outline:none;}

/* 提示文字的初始样式 */
input::-webkit-input-placeholder,
input::-moz-input-placeholder,
textarea::-webkit-textarea-placeholder,
textarea::-moz-textarea-placeholder{color: #999;transition:color .5s;}

/* 提示文字的激活样式 */
input:focus::-webkit-input-placeholder,
input:focus::-moz-input-placeholder,
input:hover::-webkit-input-placeholder,
input:hover::-moz-input-placeholder,
textarea:focus::-webkit-input-placeholder,
textarea:focus::-moz-input-placeholder,
textarea:hover::-webkit-input-placeholder,
textarea:hover::-moz-input-placeholder{color: #c2c2c2;}

/* table */
table {border-collapse:collapse;border-spacing:0;font:inherit;}
body,
html {
  /*background-color: #14213D;*/
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  /*font-family: 'Lato', sans-serif;*/
}
/*用来解决在安卓上的点击出现篮框问题*/
body{ -webkit-tap-highlight-color:rgba(0,0,0,0); }
/*解决ios上去除微信点击蓝色边框 */
a:focus,
input:focus,
p:focus,
div:focus{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
a{cursor: pointer;}
.scroll-animate.animated {visibility: hidden;}
[data-ahref]{cursor: pointer;}
.app{
    display: none;
}
.wid-100{
    width: 100%;
}
/*animate补充动画*/
@keyframes fadeInLeftSmall {
    from {
        opacity: 0;
        transform: translate3d(-10px, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInLeftSmall {
    animation-name: fadeInLeftSmall;
}
@keyframes fadeInRightSmall {
    from {
        opacity: 0;
        transform: translate3d(10px, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInRightSmall {
    animation-name: fadeInRightSmall;
}
@keyframes fadeInDownSmall {
    from {
        opacity: 0;
        transform: translate3d(0%, -10px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInDownSmall {
    animation-name: fadeInDownSmall;
}
@keyframes fadeOutDownSmall {

    from {
        opacity: 1;
        transform: none;
    }
    to {
        opacity: 0;
        transform: translate3d(0%, 10px, 0);
    }
}
.fadeOutDownSmall {
    animation-name: fadeOutDownSmall;
}
@keyframes fadeInUpSmall {
    from {
        opacity: 0;
        transform: translate3d(0%, 10px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInUpSmall {
    animation-name: fadeInUpSmall;
}
.nav {
  position: relative;
  width: auto;
  display: inline-block;
  border: none;
}
/*.an,.fadeInLeft,.fadeInUp,.fadeInDown,.fadeInRight,.animated{*/
  /*visibility:hidden;*/
/*}*/
.btn-nav {
  position: fixed;
  top: 50px;
  left: 30px;
  background: transparent;
  border: none;
  padding: 10px;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  cursor: pointer;
  z-index: 99999;
}

.btn-nav:focus {
  outline: 0;
}

.icon-bar {
  display: block;
  margin: 6px 0;
  width: 40px;
  height: 5px;
  background-color: #FFFFFF;
}
.btn-nav:hover .icon-bar {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background-color: #56bcd6;
}

.nav-content {
  position: fixed;
  top: -100%;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  display: block;
  height: 100%;
  z-index: 9;
}

.nav-list {
  list-style: none;
  padding: 0;
  position: relative;
  top: 30%;
}

.item-anchor:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  left: 0;
  bottom: 0;
  z-index: 9;
  background: transparent;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.item-anchor {
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  padding: 10px;
}

.item-anchor:hover,
.item-anchor:focus {
  color: #56bcd6;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.item-anchor:hover:after,
.item-anchor:focus:after{
  width: 100%;
  background: #56bcd6;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.nav-item {
  margin: 40px auto;
  text-align: center;
}

.nav_m .animated {
  display: block;
  margin: 0 auto;
}

.nav_m .animated:hover .icon-bar,
.nav_m .animated:focus .icon-bar{
  background-color: #56bcd6;
}

.nav_m .animated:focus {
  cursor: pointer;
  z-index: 9999;
}

.middle {
  margin: 0 auto;
}

.icon-bar {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
  z-index: 999999;
}

.nav_m .animated .icon-bar {
  z-index: 999999;
  background-color: #56bcd6;
}

.nav_m .animated .top {
  -webkit-transform: translateY(10px) rotateZ(45deg);
  -moz-transform: translateY(10px) rotateZ(45deg);
  -ms-transform: translateY(10px) rotateZ(45deg);
  -o-transform: translateY(10px) rotateZ(45deg);
  transform: translateY(10px) rotateZ(45deg);
}

.nav_m .animated .bottom {
  -webkit-transform: translateY(-11px) rotateZ(-45deg);
  -moz-transform: translateY(-11px) rotateZ(-45deg);
  -ms-transform: translateY(-11px) rotateZ(-45deg);
  -o-transform: translateY(-11px) rotateZ(-45deg);
  transform: translateY(-11px) rotateZ(-45deg);
}

.nav_m .animated .middle {
  width: 0;
}

@keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-webkit-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-moz-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-o-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

.showNav {
  -webkit-animation: showNav 1s ease forwards;
  -moz-animation: showNav 1s ease forwards;
  -o-animation: showNav 1s ease forwards;
  animation: showNav 1s ease forwards;
}
.fadeInLeft{
  opacity: 0;
  animation-fill-mode: both;
}
.fadeInUp{
  opacity: 0;
  animation-fill-mode: both;
}
.fadeInRight{
  opacity: 0;
  animation-fill-mode: both;
}
.fadeInDown{
  opacity: 0;
  animation-fill-mode: both;
}
.bounceInRight{
  opacity: 0;
  animation-fill-mode: both;
}
.bounceInLeft{
  opacity: 0;
  animation-fill-mode: both;
}
@keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

@-webkit-keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

@-moz-keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

@-o-keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}
.left{
  float: left;
}
.right{
  float: right;
}
.hideNav {
  -webkit-animation: hideNav 1s ease forwards;
  -moz-animation: hideNav 1s ease forwards;
  -o-animation: hideNav 1s ease forwards;
  animation: hideNav 1s ease forwards;
}

.hidden {
  display: none;
}
.subheading{
  padding:50px 0 100px 0;
  width:100%;
  text-align: center;
}
.subheading h3{
  font-size:26px;
  font-weight:400;
  color:rgba(255,255,255,1);
  line-height: 1;
  margin-bottom: 0;
  padding-bottom: 0;
}
.subheading span{
  width:48px;
  height:2px;
  background:rgba(255,255,255,1);
  display: inline-block;
  margin-top:18px;
}
.screen4.bg .date{
  color:#ffffff;
}
.new_style .screen2{
  position: relative;
}
.bg-l{
  width:50%;
  height: 960px;
  background: #F9F9F9;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.part3{
  position: relative;
}
.screen2 .scre2_box{
  width:130px;
  height:130px;
  background:rgba(255,255,255,1);
  display: flex;
  align-items: center;
  justify-content: center; 
  margin-right: 65px;
  float: left;
  margin-bottom: 65px;
  position: relative;
  z-index: 2;
}
.screen2 .scre2_box:nth-child(3n){
  margin-right: 0;
}
.screen2 .left{
  width:50%;
  position: relative;
}
.screen2 .right{
  width:50%;
  height: 100%;
}
.screen2 .container{
  padding-bottom: 90px;
}
.new_con_list1 .screen2 .container{
  padding-bottom: 0px;
}
.bus_page_scre2_cont{
  margin-left: 141px;
  position: relative;
  padding-top:51px;
}
.bus_page_scre2_cont .logo{
  position: absolute;
  top:0;
  left: -37px;
  z-index: -1;
}
.bus_page_scre2_cont strong{
  font-size:32px;
  color:rgba(51,51,51,1);
  display: inline;
  margin:0;
  padding: 0;
}
.hide{
  display: none!important;
}
.bounceInRightAdd{
  opacity: 0;
  animation: bounceInRight 1s ease;
  animation-fill-mode: both!important;
}
.bounceInLeftAdd{
  opacity: 0;
  animation: bounceInLeft 1s ease;
  animation-fill-mode: both!important;
}
.bounceOutLeftAdd{
  opacity: 0;
  animation: bounceOutLeft 1s ease;
  animation-fill-mode: both!important;
}
.bounceInUp{
  opacity: 0;
  animation-fill-mode: both!important;
}

.bus_page_scre2_cont p{
  font-size:16px;
  font-weight:400;
  line-height: 28px;
  color:#999999;
  display: inline-block;
  margin-bottom: 23px;
  text-align: justify;
}
.bus_page_scre2_cn{
  width:19px;
  font-size:18px;
  font-weight:400;
  color:rgba(0,136,63,1);
  display: inline-block;
  margin-left: 35px;
  margin-top: 25px;
}
.bus_page_scre2_en{
  width:21px;
  font-size:26px;
  font-weight:400;
  color:rgba(0,136,63,1);
  display: inline-block;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-86px);
  margin-left: 15px;
  letter-spacing: 1.5px;
}
.screen2 .introduction{
  width:160px;
  height:320px;
  background:rgba(215,203,173,0.2);
  position: absolute;
  left: -110px;
  top:-35px;
}
.prodList .ins_banner_bg .menu > div{
  width: calc(100% / 2);
  padding:0 100px;
}
.prodList .ins_banner_bg .menu span:nth-child(3){
  right:100px;
}
.bus_page_scre2_leaf{
  position: absolute;
  left: -168px;
  bottom: 52px;
  height: 300px;
  z-index: 2;
}
.bus_page_scre2_leaf2{
  position: absolute;
  top:120px;
  right: 0;
}
.leaf2{
  position: absolute;
  top:0;
  right: 120px;
}
.leaf3{
  position: absolute;
  bottom: 80px;
  left: 0;
  z-index: -1;
}
.screen3 .subheading h3{
  color:#333333;
}
.screen3 .subheading .line{
  background: #BFAC7C;
}
.screen3 .left{
  width:50%;
  background: #F9F9F9;
}
.bus_page_01 .screen3{
  background-image: none;
  padding-top:40px;
}
.bus_page_scre3_box{
  position: relative;
  padding: 60px 0;
}
.bus_page_scre3_box .part_1{
  width:465px;
  float: left;
}
.bus_page_scre3_box .logo3{
  position: absolute;
  left: 0;
  top:0;
  pointer-events: none;
}
.bus_page_scre3_year{
  font-size:36px;
  font-weight:bold;
  color:#56bcd6;
  margin-left:60px;
  display: block;
}
.bus_page_scre3_circle{
  margin-top:70px;
  margin-left: 60px;
}
.bus_page_scre3_circle .on{
  width:39px;
  height:39px;
  line-height: 39px;
  text-align: center;
  background:rgba(0,136,63,1);
  border-radius:50%;
  display: inline-block;
  opacity: .5;
  transition: opacity .5s ease;
}
.bus_page_scre3_circle .on:hover{
  opacity: 1;
}
.bus_page_scre3_circle span i{
  font-size: 16px;
}
.bus_page_scre3_circle .on i{
  color:#ffffff;
  font-size: 14px;
}
.bus_page_scre3_circle .on:hover{
  cursor: pointer;
}
.bus_page_scre3_circle span:nth-child(2){
  margin-left: 28px;
}
.bus_page_scre3_cont{
  margin:20px 0 0 60px;
  font-size:24px;
  width:100%;
  font-weight:bold;
  color:rgba(51,51,51,1);
  line-height:36px;
  display: block;
}
.bus_page_scre3_cf{
  margin:18px 0 0 60px;
  font-size:18px;
  font-weight:400;
  color:rgba(153,153,153,1);
  line-height:30px;
  display: block;
}
.bus_page_scre3_part_2{
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width:554px;
  height:358px;
  position: absolute;
  top:0;
  left: 50%;
  margin-left: -60px;
  border:16px solid rgba(255,255,255,1);
  box-shadow:0px 10px 50px 0px rgba(121,121,121,0.15);
}
.bus_page_scre3_part_3{
  width:405px;
  height: 257px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  position: absolute;
  left: calc(100% + 61px);
  top: 50%;
  margin-top: -132.5px;
  border:16px solid rgba(255,255,255,1);
  box-shadow:0px -10px 50px 0px rgba(121,121,121,0.15);
}
.bus_page_scre3 .container{
  padding-bottom: 235px;
}
.bus_page_scre3_part_3 .cover{
  position: absolute;
  left: -16px;
  top: -16px;
  width: 430px;
  height: 280px;
  background: linear-gradient(to right ,rgba(255,255,255,0.4) 0%,rgba(255,255,255,1) 70%);
}
.screen5{
  width:100%;
  position: relative;
  margin-bottom: 100px;
  padding-top:40px;
  overflow: hidden;
}
.screen5 .bg{
  width: 100%;
  position: absolute;
  top:0;
  left:0;
  z-index: -1;
  min-width: 1920px;
  height: 690px;
}
.screen5 .box{
  width:calc(100% / 3 - 60px);
  background: #FFFFFF;
  margin-left: 30px;
  float: left;
}
.screen5 .box:nth-child(1){
  margin-left: 0;
}
.screen5 .container{
  width:1400px;
}
.screen5 .box a > div{
  padding:25px 30px;
}
.bus_page_01 .screen2 .container .left > .clear{
  z-index: 2;
  position: relative;
}
.screen5 .box a > div .title{
  font-size:24px;
  font-weight:bold;
  color:#56bcd6;
}
.screen5 .box a > div .right{
  font-size:50px;
  font-family:BaronNeueBold;
  font-weight:400;
  line-height: 50px;
  color:rgba(233,233,233,1);
}
.screen5 .box a > div .scre5_cn{
  font-size:18px;
  font-weight:400;
  color:rgba(153,153,153,1);
  display: block;
  margin-top: 10px;
  margin-bottom: 6px;
}
.screen5 .box a > div .scre5_cn p{
  font-size:32px;
  font-weight:400;
  color:#56bcd6;
  display: inline;
}
.screen5 .box a > div .scre5_en{
  font-size:12px;
  font-weight:400;
  color:rgba(153,153,153,1);
  line-height:16px;
  display: block;
}
.screen5 .box a > div .area{
  font-size:16px;
  font-weight:400;
  color:rgba(102,102,102,1);
  display: block;
  margin-bottom: 0;
}
.screen5 .box a > div .area i{
  margin-right: 5px;
}
.screen5 .box a .factory{
  width:100%;
}
.news_list{
  padding:25px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}
.news_list .left:nth-child(1){
  width:263px;
  height:146px;
  overflow: hidden;
}
.news_list .left:nth-child(1) img{
  width:100%;
}
.news_list .left:nth-child(2){
  width:714px;
  margin-left: 30px;
  margin-right: calc(100% - 1108px);
}
.news_list .left .title{
  font-size:18px;
  font-weight:bold;
  color:rgba(191,172,124,1);
  line-height:18px;
  margin-bottom: 35px;
  display: block;
}
.newList .part2{
  padding-top: 60px;
}
.news_list .left p{
  font-size:14px;
  font-weight:400;
  color:rgba(153,153,153,1);
  line-height:24px;
  margin-bottom:0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news_list .right .year{
  font-size:16px;
  font-family:Gotham-Book;
  font-weight:normal;
  color:#56bcd6;
  line-height:24px;
}
.news_list .right .month{
  font-size:40px;
  font-family:Gotham-Light;
  font-weight:bold;
  color:rgba(153,153,153,1);
  line-height:24px;  
}
.news_list .right{
  width:147px;
  text-align: right;
  opacity: 1;
    transition: all 0.3s ease-in-out;
}
.news_list_more{
  width:180px;
  height:50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  background:rgba(209,195,160,1);
  position: absolute;
  bottom: 0;
  right: 0;
  font-size:16px;
  font-weight:400;
  color:rgba(255,255,255,1);
  opacity: 0;
    transition: all 0.3s ease-in-out;
}
.news_list:hover .right{
  opacity: 0;
}
.news_list:hover .news_list_more{
  opacity: 1;
}
.news_list:hover{
  background:rgba(255,255,255,1);
  box-shadow:0px 10px 50px 0px rgba(121,121,121,0.15);
}
.prodList .screen2 .top{
  width:530px;
  height: 470px;
  position: relative;
}
.prodList .screen2 .top img{
  width: 100%;
  margin-top:-22px;
}
.prodList .screen2 .top .cont{
  width:80px;
  height:220px;
  background:rgba(255,255,255,1);
  position: absolute;
  right: 0;
  bottom: 85px;
}
.prodList .screen2 .top .cont .en{
  width: 200px;
  font-size: 12px;
  font-family:'Microsoft YaHei';
  font-weight: 400;
  color: rgba(102,102,102,1);
  display: inline-block;
  transform: rotate(90deg) translate(102px,74px);
  letter-spacing: 0.5px;
}
.prodList .screen2 .top .cont .cn{
  width: 19px;
  height: 175px;
  font-size: 18px;
  font-family:'Microsoft YaHei';
  line-height: 1.1;
  font-weight: 400;
  color: rgba(102,102,102,1);
  display: inline-block;
  transform: translate(44px,-11px);
}
.prodList .screen2 .mid{
  width:calc(100% - 539px);
    display: flex;flex-wrap: wrap;justify-content: center;
}
.prodList .screen2 .mid > div:nth-child(1){
  width:100%;
  height:70px;
  background:rgba(191,172,124,1);
  line-height: 70px;
  text-align: center;
  display: block;
  float: left;
}
.prodList .screen2 .mid > div:nth-child(1):hover{
  cursor: pointer;
}
.prodList .screen2 .mid > div:nth-child(1) span{
  font-size:24px;
  font-family:'Microsoft YaHei';
  font-weight:400;
  color:rgba(255,255,255,1);
}
.prodList .screen2 .mid .box,
.prodList .screen2 .hide_prod_box .box{
  width:calc(100% / 3 - 25px);
  height:375px;
  background:rgba(255,255,255,1);
  box-shadow:0px 3px 30px 0px rgba(0, 0, 0, 0.08);
  float: left;
  margin: 25px 0 0 25px;
  text-align: center;
}
.prodList .screen2 .hide_prod_box .box{
  width:calc(100% / 5 - 22px);
}
.prodList .screen2 .hide_prod_box .box:nth-child(1){
  margin-left: 0px;
}
.prodList .screen2 .hide_prod_box .box:nth-child(6){
  margin-left: 10px;
}
.prodList .screen2 .hide_prod_box .box:nth-child(11){
  margin-left: 10px;
}
.prodList .screen2 .mid .con_title,
.prodList .screen2 .hide_prod_box .con_title{
  font-size:18px;
  font-family:'MicrosoftYaHei-Bold';
  font-weight:bold;
  color:#56bcd6;
  padding: 25px 0 25px;
  margin-bottom: 10px;
}
.prodList .screen2 .mid .con_title::after,
.prodList .screen2 .hide_prod_box .con_title::after{
  width:32px;
  height:1px;
  background:#56bcd6;
  bottom: 15px;
}
.prodList .screen2 .mid .box span,
.prodList .screen2 .hide_prod_box .box span{
  font-size:14px;
  font-weight:400;
  color:rgba(153,153,153,1);
  display: block;
  width: 100%;
  line-height: 14px;
  margin-top:18px;
}
.prodList .screen2 .mid .box a,
.prodList .screen2 .hide_prod_box .box a{
  display: inline-block;
  width:100px;
  height:30px;
  line-height: 30px;
  border:1px solid rgba(221,221,221,1);
  border-radius:15px;
  margin-top:20px;
  font-size:12px;
  font-weight:400;
  color:rgba(163,163,163,1);
  cursor: pointer;
}
.prodList .screen2.part_2{
  padding-top: 0px;
  background:rgba(247,247,247,1);
}
.prodList .screen2.part_2 .mid .box:nth-child(2){
  margin-left: 0
}
.prodList .screen2.part_2 .hide_prod_box .box:nth-child(1){
  margin-left: 0
}
.prodList .screen2.part_2 .top .cont{
  left: 0;
  right: none;
}
.prodList .screen2 .box > img{
    height:172px;
}
.prodList .btn{
  width:54px;
  height:54px;
  background:rgba(126,203,40,1);
  box-shadow:0px 3px 30px 0px rgba(0, 0, 0, 0.11);
  border-radius:50%;
  line-height: 54px;
  text-align: center;
  position: absolute;
  bottom: 161px;
  pointer-events: auto;
}
.btn_r{
  right: -27px;
}
.btn_l{
  left: -27px;
}
.prodList .btn{
  cursor: pointer;
}
.prodList .btn i.icon-Arrows_b{
font-size: 12px;
}
.prodList .btn i{
  color:#ffffff;
  font-size: 20px;
}
.full_cover{
  position: fixed;
  width:100vw;
  height:100vh;
  left: 0;
  top: 0%;
  background: rgba(0,0,0,0.7);
  z-index: 100;
  display: none;
}
.imageInfo{
  width:74vw;
  height: 68vh;
    max-height: 680px;
  background: #FFFFFF;
  position: fixed;
  left:0;right: 0;
  top:0;bottom: 0;margin: auto!important;
  z-index: 140;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.imageInfo .left{
  width:38%;height: 100%;
}
.imageInfo .right{
  width:62%;position: relative;
  height: 100%;
}
.imageInfo .right .box{
  padding: 30px 70px;
  width:100%;
  height:100%;
  background:rgba(255,255,255,1);
  box-shadow:0px 3px 30px 0px rgba(0, 0, 0, 0.08);
  position: relative;
    overflow-y: auto;
}
.imageInfo .right .box .product_name_cn{
  font-size:24px;
  font-weight:bold;
  color:#666666;
  line-height:30px;
  display: block;
}
.imageInfo .right .box .product_name_en{
  font-size:20px;
  color:#C0C0C0;
  line-height:30px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 36px;
}
.imageInfo .right .box .title{
  font-size:18px;
  font-weight:400;
  color:#56bcd6;
  display: inline-block;
  line-height: 18px;
  margin-bottom: 6px;
}
.imageInfo .right .box .dot{
  width: 7px;
  height: 7px;
  background: rgba(195,177,132,1);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 2px;
  margin-right:6px;
}
.imageInfo .right .box .cont{
  font-size:14px;
  font-weight:400;
  color:rgba(153,153,153,1);
  line-height:26px;
  display: block;
  margin-bottom: 40px;
}
.imageInfo .right .box .table{
  width:100%;
  border-bottom:1px solid rgba(232,232,232,1);
  margin-top:5px;
}
.imageInfo .right .box .table .tr{
  border:1px solid rgba(232,232,232,1);
}
.imageInfo .right .box .table .rows{
  border:1px solid rgba(232,232,232,1);
  border-bottom: none;
}
.imageInfo .right .box .table .tr span{
  width:110px;
  padding: 10px 0;
  font-size:14px;
  font-weight:400;
  color:rgba(102,102,102,1);
  line-height:26px;
  display: block;
  float: left;
  text-align: center;
}
.imageInfo .right .box .table .tr span:nth-child(2){
  width:calc(100% - 112px);
  display:  block;
  float: left;
  border-left:1px solid rgba(232,232,232,1);
}
.imageInfo .right .box .table .rows span:nth-child(1){
  width:110px;
  padding: 10px 0;
  font-size:14px;
  font-weight:400;
  color:rgba(102,102,102,1);
  line-height:26px;
  display:  block;
  float: left;
  text-align: center;
}
.imageInfo .right .box .table .rows span:nth-child(2){
  width:calc(100% - 112px);position: relative;
  padding: 10px 0;
  float: left;
  border-left:1px solid rgba(232,232,232,1);
    display: flex;flex-wrap: wrap;align-items: flex-start;
    justify-content: flex-start;
}
.imageInfo .right .box .table .rows span:nth-child(2):after{
    content: "";position: absolute;
    height: 100%;width: 1px;background-color: #eee;
    top: 0;left: calc(100%/3);
}
.imageInfo .right .box .table .rows span:nth-child(2):before{
    content: "";position: absolute;
    height: 100%;width: 1px;background-color: #eee;
    top: 0;right: calc(100%/3);
}
.imageInfo .right .box .table .rows span:nth-child(2) p{
  font-size:14px;
  width: calc((100%/3) - 20px);
  text-align: center;
  font-weight:400;
  color:rgba(153,153,153,1);
  line-height:26px;
  display: inline-block;
    margin: 0 10px;
  margin-bottom: 10px;
}
.imageInfo .btn{
  width:90px;
  height:34px;
  background:transparent;
    box-shadow: none;
  border-radius:17px;
  font-size:24px;
  font-weight:400;
  color:rgb(93, 93, 93);
  line-height:34px;
  position: absolute;
  right:0;
  top: 14px;
}
.prod_use .screen2 .container{
  position: relative;
  padding-bottom: 0;
}
.prod_use .screen2 .container .title{
  font-size:16px;
  font-family:MicrosoftYaHei;
  font-weight:400;
  color:#56bcd6;
  line-height:26px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  top:89px;
}
.prod_use .screen2 .container .title p{
  font-size: 24px;
  display: inline;
}
.prod_use .screen2 .container .step{
    width: 100%;
    display: flex;
    position: absolute;
    top: 185px;
    justify-content: center;
    align-items: center;
}
.prod_use .screen2 .container .step .circle1{
    background: transparent;
    width:107px;
    height: 107px;
    border:2px solid rgba(191,172,124,1);
    border-radius:50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
}
.prod_use .screen2 .container .step .circle2{
    width:93px;
    height:93px;
    background:rgba(191,172,124,1);
    border-radius:50%;
    display: flex;
    justify-content: center;
    align-items: center;
 
}
.prod_use .screen2 .container .step .circle2 span{
  font-size:18px;
  font-weight:400;
  color:rgba(255,255,255,1);
  line-height:26px;
  text-align: center;
}
.prod_use .screen2 .container .step .slash{
  float: left;
  margin:0 50px;
  font-size:20px;
  display: block;
  color:rgba(255,255,255,0.7);
}
.prod_use > .container > div{
  box-shadow:0px 3px 20px 0px rgba(216, 216, 216, 0.35);
  margin-top: -65px;
  margin-left: 60px;
  width:calc(100% - 120px);
}
.prod_use .screen3{
  padding:70px 70px 0 70px;
  background:#ffffff;
  width:100%;
}
.prod_use .line{
  width:100%;
  height:1px;
  background: #56bcd6;
  margin-bottom: 50px;
}
.prod_use .screen3 h3{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top:56px;
  padding:  0 30px;
  background: #ffffff;
  font-size:22px;
  font-weight:400;
  color:rgba(51,51,51,1);
}
.prod_use .screen3 h3 .btn_link_more{
    font-size: 13px;
    position: absolute;
    top: 140%;
    left: 0;right: 0;margin: auto;
    text-align: center;
    width: 70px;
    text-decoration: underline;
    color: #a0a0a0;
}
.prod_use .screen3 .product_img{height: 180px;background-repeat: no-repeat;background-size: cover;background-position: center;}
.prod_use .screen3 .product_img img{opacity: 0;}
.prod_use .screen3 .prod_use_show p{
    height: 156px;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:6;
}
@media screen and (max-width: 600px) {
    .prod_use .screen3 h3 .btn_link_more{display: none;}
    .prod_use .screen3 .product_img{height: 130px;}
}
.prod_use .screen3 .prod_use_show{
  width:100%;
}
.prod_use .screen3 .prod_use_show .box{
  width:calc(( 100% - 80px ) / 3 );
  float: left;
  margin-left: 40px;
  padding:15px;
  margin-bottom: 34px;
  text-align: center;
}
.prod_use .screen3 .prod_use_show .box:nth-child(3n+1){
  margin-left: 0;
}
.prod_use .screen3 .prod_use_show .box:hover{
  box-shadow:0px 3px 30px 0px rgba(0, 0, 0, 0.08);
}
.prod_use .screen3 .product_img{
    width:313px;
    height: 313px;
    overflow: hidden;
}
.prod_use .screen3 .product_img img{
  width:100%;
}
.prod_use .screen3 .prod_use_show .title{
  font-size:18px;
  font-weight:normal;
  color:#56bcd6;
  line-height:26px;
  display: block;
  margin-top:30px;
  margin-bottom: 10px;
}
.prod_use .screen3 .prod_use_show p{
  font-size:14px;
  font-weight:normal;
  color:rgba(153,153,153,1);
  line-height:26px;
  margin-top: 15px;
  overflow: hidden;
}
.flex{
  display: flex;
  justify-content: center;
  align-items: center;
}
.prod_use .screen3 .prod_use_show a{
  width:100px;
  height:30px;
  border:1px solid rgba(221,221,221,1);
  border-radius:15px;
  display: inline-block;
  font-size:12px;
  font-weight:400;
  color:rgba(163,163,163,1);
  margin-bottom: 15px;
  line-height: 30px;
}
.prod_use .screen3.parts_2{
  margin-top:0;
  padding-top:40px;
}
.prod_use .screen3.parts_2 h3{
  top: 26px;
}
.prod_use .btn_to_load_box{
  padding-top:5px;
  padding-bottom: 70px;
}
.R_D .screen2 .trans{
  overflow-y: auto;
  width:calc( 50% + 120px );
  transform: rotateY(180deg);
  box-shadow:0px 10px 50px 0px rgba(121,121,121,0.15);
  position: relative;
  margin-bottom: 65px;
  background: #ffffff;
}
.R_D .screen2 .text_box_1{
  background: #FFFFFF;
  width:100%;
  padding: 60px 60px 20px 60px;
  height: 494px;
  transform: rotateY(180deg);
}
.R_D .screen2 .text_box_1 > div{
  margin-bottom: 30px;
  margin-left: 25px;
}
.trans::-webkit-scrollbar {/*滚动条整体样式*/
  width: 4px;     /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.R_D .screen2 .top-shadow{
  width:calc( 50% + 115px );
  height: 60px;
  z-index: 3;
  background: #FFFFFF;
  position: absolute;
  left: 5px;
  top:0;
}
.R_D .screen2 .btm-shadow{
  width:calc( 50% + 115px );
  height: 30px;
  z-index: 3;
  background: rgba(255,255,255,1);
  position: absolute;
  left: 5px;
  bottom:0;
}
.trans::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
  border-radius: 2px;
   -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  background: #D1C3A0;
}
.trans::-webkit-scrollbar-track {/*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  border-radius: 2px;
  background: #EDEDED;
}
.R_D .screen2 .text_box_1 .year{
  font-size:24px;
  font-weight:bold;
  color:#56bcd6;
  line-height:30px;
  display: inline-block;
  margin-right: 20px;
  vertical-align: top;
}
.R_D .screen2 .text_box_1 .cont{
  font-size:16px;
  font-weight:400;
  color:rgba(102,102,102,1);
  line-height:24px;
  display: inline-block;
  width:505px;
  margin-bottom: 0;
}
.R_D .screen2 .container{
  position: relative;
  padding-bottom: 0;
}
.R_D .screen2 .R_D_right{
  width:calc(50% - 84px);
  position: absolute;
  right: 0;
  top:50%;
  transform: translateY(-50%);
  overflow: hidden;
  z-index: 5;
}
.R_D .screen2 .R_D_right img{
  width: 100%;
}
.R_D .screen2 .text_left{
  float: left;
  width:calc(50% - 60px);
  font-size:16px;
  font-weight:400;
  color:rgba(102,102,102,1);
  line-height:26px;
  padding-right: 60px;
}
.R_D .screen2 .text_right{
  float: right;
  width:50%;
  font-size:16px;
  font-weight:400;
  color:rgba(102,102,102,1);
  line-height:26px;
  margin-bottom: 35px;
}
.R_D .screen3{
  background:rgba(247,247,247,1);
  padding: 45px 0;
}
.R_D .screen3 span{
  display: block;
  float: left;
    margin-right: 25px;
  font-size:24px;
  font-weight:400;
  color:rgba(51,51,51,1);
  line-height:70px;
  white-space: nowrap;
}
.R_D .screen3 span p{
  display: inline;

}
.R_D .screen3 span p:nth-child(1){
  font-size:45px;
  font-weight:bold;
  color:rgba(126,203,40,1);
  line-height:24px;
  margin-left: 19px;
  margin-right: 10px;
}
.R_D .screen3 span p:nth-child(2){
  font-size:16px;
  font-weight:400;
  color:rgba(200,200,200,1);
  line-height:24px;
}
.R_D .screen2.screen4 .trans{
  position: absolute;
  right: 0;
  top: 50%;
  height: 626px;
  transform: translateY(-50%);
}
.R_D .screen2.screen4 .top-shadow{
  top: 45px;
  right: 0;
  width:calc( 50% + 100px );
  left: auto!important;
}
.R_D .screen2.screen4 .btm-shadow{
  bottom: 45px;
  height: 155px;
  right: 5px;
  width:calc( 50% + 100px );
  left: auto!important;
}
.R_D .screen2.screen4 .btm-more{
  bottom: 45px;
  height: 130px;
  padding-top: 30px;
  background: #FFFFFF;
  right: 5px;
  width:calc( 50% + 115px );
  z-index: 20;
  position: absolute;
}
.R_D .screen2.screen4 .btm-more span{
  font-size:16px;
  margin-left: 60px;
  font-weight:400;
  color:rgba(191,172,124,1);
  line-height:26px;
}
.R_D .screen2.screen4 .btm-more i{
  font-size:17px;
  font-weight:400;
  color:rgba(191,172,124,1);
  line-height:37px;
  margin-left: 13px;
}
.R_D .screen2.screen4 .image{
  position: relative;
}
.R_D .screen2.screen4 .text_box_1{
  transform: none;
  height: auto;
}
.R_D .screen2.screen4 .text_box_1 h3,
.R_D .customized .customized_box h3{
  font-size:32px;
  font-weight:bold;
  color:rgba(204,185,143,1);
  line-height:26px;
  margin-top:24px;
}
.R_D .screen2.screen4 .text_box_1 .line,
.R_D .customized .customized_box .line{
  width:50px;
  height:5px;
  background:rgba(126,203,40,1);
  margin-top: 22px;
  margin-bottom: 25px;
  display: block;
}
.R_D .screen2.screen4 .text_box_1 > div > p{
  font-size:16px;
  font-weight:400;
  color:rgba(102,102,102,1);
  line-height:26px; 
  margin-bottom: 40px;
}
.R_D .screen2.screen4 .text_box_1 .left{
  width:calc(50% - 51px);
  margin-bottom: 18px;
  margin-right: 50px;
}
.R_D .screen2.screen4 .text_box_1 .left:nth-child(2n){
  width: 50%;
  margin-right: 0;
}
.R_D .screen2.screen4 .text_box_1 span{
  font-size:14px;
  font-weight:400;
  color:rgba(102,102,102,1);
  line-height:24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient: vertical;
}
.R_D .screen2.screen4 .text_box_1 .circle{
  display: inline-block;
  width:9px;
  height:9px;
  background:rgba(209,195,160,1);
  border-radius:50%;
  margin-bottom: 0;
  margin-right: 14px;
}
.R_D .customized{
  padding:150px 0!important;
  margin-bottom: 55px;
}
.customized_box{
  width:545px;
  height:558px;
  padding:0 60px;
  background:rgba(255,255,255,1);
  box-shadow:0px 10px 50px 0px rgba(121,121,121,0.15);
  position: absolute;
  left: 150px;
  top:50%;
  margin-top:-279px;
}
.R_D .customized .customized_box p{
  font-size:16px;
  font-weight:400;
  color:#56bcd6;
  line-height:24px;
}
.patent_part_2 .title{
  border-bottom: 1px solid #E4E4E4;
  text-align: center;display: flex;align-items: center;
    justify-content: center;
}
.patent_part_2 .title > div.on{
  border-bottom: 4px solid #BFAC7C;
  padding-bottom: 28px;
}
.patent_part_2 .title > div:hover{
  cursor: pointer;
}
.patent_part_2 .title > div{
  width:calc(100% / 3);
  font-size:38px;
  font-weight:400;
  color:#56bcd6;
  float: left;
  padding-top: 60px;
}
.honor .wall{
  border-bottom:1px solid #E8E8E8;
    display: flex;flex-wrap: wrap;
    align-items: stretch;
}
.honor .wall .box{
  width:calc(100% / 3 - 2px);
  float: left;
  border:1px solid #E8E8E8;
  border-bottom: none;
  text-align: center;
  padding:30px;display: none;
}
.honor .wall .box:nth-of-type(1),.honor .wall .box:nth-of-type(2),.honor .wall .box:nth-of-type(3),.honor .wall .box:nth-of-type(4),.honor .wall .box:nth-of-type(5),.honor .wall .box:nth-of-type(6){
    display: inline-block;
}
.honor .wall .box:hover{
  cursor: pointer;
}
.honor .wall .box .top{
  width:100%;
}
.honor .wall .box .top .left{
  font-size:18px;
  font-weight:400;
  color:rgba(255,255,255,1);
  line-height:37px;
  width:76px;
  height:37px;
  background:rgba(204,185,143,1);
  border-radius:19px;
}
.honor .wall .box .top .right{
  font-size:18px;
  font-weight:400;
  color:rgba(153,153,153,1);
  line-height:37px;
  width:112px;
  height:37px;
  border:1px solid rgba(153,153,153,1);
  border-radius:19px;
}
.honor .wall .box .mid{
  width:250px;
  height: 208px;
  background: url(../image/honor_frame.png) no-repeat;
  background-size: 100% 100%;
  display: inline-block;
  margin-top:70px;
  margin-bottom: 60px;
  position: relative;
}
.honor .wall .box .mid img{
  width:90%;
  bottom: calc((100% - 20px) / 2);
  transform: translate(-50%,50%);
  position: absolute;
  left: 50%;
}
.honor .wall .box .mid .btm{
  
}
.new_style .screen2.honor{
  padding-top:175px;
}
.honor .wall .box .btm .title{
  font-size:24px;
  font-weight:bold;
  color:#56bcd6;
  line-height:36px;
  display: block;
}
.honor .wall .box .btm .cont{
  font-size:18px;
  font-weight:400;
  color:rgba(51,51,51,1);
  line-height:30px;
  margin-bottom:45px;
  display: inline-block;
}
.honor .wall .box .btm p{
  font-size:18px;
  font-weight:400;
  color:rgba(153,153,153,1);
  line-height:30px;
  margin-bottom: 0;
}
.patent_part_2 .title p{
  display: inline;
  font-size:18px;
  font-weight:400;
  color:#56bcd6;
}
.patent_part_2 .title span{
  display: inline;
  font-size:61px;
  font-family:'BaronNeue';
  font-weight:400;
  color:#56bcd6;
}
.patent_wall_pic{
  padding :50px;
    display: flex;justify-content: flex-start;
    align-items: center;flex-wrap: wrap;
}
.patent_wall_pic .box{
  border:5px solid transparent;
  width:30%;
  float: left;
  margin: 30px 1.5%;
  text-align: center;
    display: none;
}
.patent_wall_pic .box:nth-of-type(1),.patent_wall_pic .box:nth-of-type(2),.patent_wall_pic .box:nth-of-type(3){
    display: inline-block;
}
.load-more{
    display: inline-block;
    text-align: center;
    font-size: 14px;
    color: #bfac7c;
    line-height: 1.2;
    cursor: pointer;
}
.patent_wall_pic .box > div{
  width:100%;
  height: 100%;
  border:1px solid #dddddd;
}
.honor .popup{
  width:572px;
  height:80vh;
  background:rgba(255,255,255,1);
  border:5px solid rgba(191,172,124,1);
  position: fixed;
  left: 50%;
  top:50%;
  margin-left: -286px;
  margin-top: -40vh;
  display: none;
  z-index: 110;
}
.popup .icon-guanbi{
  color:#000;
  font-size: 20px;
  position: absolute;
  right: 10px;
  top:0;
}
.popup .icon-guanbi:hover{
  cursor: pointer;
}
.honor .popup.wall .box{
  width:100%;
}
.honor .popup.wall .box .top .left{
  width:92px;
  height:45px;
  background:rgba(204,185,143,1);
  border-radius:19px;
  font-size:22px;
  font-weight:400;
  color:rgba(255,255,255,1);
  line-height:45px;
}
.honor .popup.wall .box .top .right{
  width:136px;
  height:45px;
  border:1px solid rgba(153,153,153,1);
  border-radius:19px;
  font-size:22px;
  font-weight:400;
  color:rgba(153,153,153,1);
  line-height:45px;
}
.honor .popup.wall .box .btm .title{
  font-size:29px;
  font-weight:bold;
  color:#56bcd6;
  line-height:44px;
}
.honor .popup.wall .box .btm .cont{
  font-size:22px;
  font-weight:400;
  color:rgba(51,51,51,1);
  line-height:36px;
  margin-top:8px;
  margin-bottom: 80px;
}
.honor .popup.wall .box .mid{
  width: 303px;
  height: 240px;
  margin-top:96px;
  margin-bottom: 70px;
}
.patent .btn_to_load_box{
  padding:60px 0 0 0;
}
.patent_wall_pic .box:hover > div{
  border:1px solid transparent;
}
.patent_wall_pic .box:hover{
  border:5px solid rgba(191,172,124,1);
}
.patent_wall_pic .box:hover span{
  color:#BFAC7C;
}
.patent_wall_pic .box:hover .line{
  background:#BFAC7C;
}
.patent_wall_pic .box:nth-child(3n+1){
  margin-left: 0;
}
.patent_wall_pic .box img{
  margin:25px auto;
    max-height: 430px;
}
.patent_wall_pic .box span{
  font-size:20px;
  font-weight:bold;
  color:rgba(51,51,51,1);
  line-height:20px;
  display: block;
  margin-bottom: 20px;
}
.patent_wall_pic .box .line{
  width:50px;
  height:2px;
  background:rgba(221,221,221,1);
  display: inline-block;
}
.popup .btn{
  width:90px;
  height:90px;
  background:linear-gradient(45deg,rgba(255,232,173,1),rgba(239,210,138,1),rgba(191,172,124,1),rgba(191,172,124,1));
  border-radius:50%;
  text-align: center;
  line-height: 90px;
  position: absolute;
  top:50%;
  margin-top:-45px;
}
.popup .btn:hover{
  cursor: pointer;
}
.popup .btn-r{
  right: -150px;
}
.popup .btn-l{
  left: -150px;
}
.popup .btn i{
  color:#ffffff;
  font-size: 32px;
}
.safe .con_title{
  padding-top:0;
}
.new_style.safe .screen2{
  padding-top:65px;
  background: #F7F7F7;
  padding-bottom: 60px;
}
.safe .screen2.screen4 .trans{
  height: auto;
}
.safe .screen2.screen4 .trans{
  width:calc(50% + 20px)
}
.safe .screen2.screen4 .text_box_1 h3{
  font-size:24px;
  font-weight:400;
  color:rgba(51,51,51,1);
  line-height:24px;
}
.safe .screen2.screen4 .text_box_1 > div > p{
  font-size:16px;
  font-weight:400;
  color:rgba(102,102,102,1);
  line-height:26px;
}
.safe .screen2.screen4 .text_box_1{
  padding: 60px 60px 50px 60px;
}
.safe .screen2 .text_box_1{
  height: 978px;
  padding: 60px 60px 20px 72px;
}
.safe .screen2 .safe_step_box{
  border-left: 1px dashed rgba(85,85,85,0.5);
  padding-top:16px;
}
.safe .screen2 .text_box_1 .title{
  font-size:24px;
  font-weight:400;
  color:#56bcd6;
  line-height:24px;
  display: block;
  margin-bottom: 29px;
}
.safe .screen2 .text_box_1 .line{
  width:51px;
  height:5px;
  background: #56bcd6; 
  display: block;
  margin-bottom: 34px;
}
.safe .screen2 .text_box_1 .cont{
  font-size:16px;
  font-weight:400;
  color:rgba(102,102,102,1);
  line-height:26px;
  margin-bottom: 7px;
}
.safe .screen2 .safe_step_box .step{
  margin-left: -26px;display: flex;flex-wrap: wrap;
    justify-content: flex-start;align-items: center;
}
.safe .screen2 .safe_step_box .step .circle{
  width:51px;
  height:51px;
  background:rgba(204,185,143,1);
  border-radius:50%;
  text-align: center;
  line-height: 51px;
  display: block;
  float: left;
  margin-right: 19px;
}
.safe .screen2 .safe_step_box .step .circle i{
  color:#FFFFFF;
  font-size: 30px;
}
.safe .screen2 .safe_step_box > div:last-child{
  margin-bottom: 45px;
}
.safe .screen2 .safe_step_box .step div{
  float: left;width: 74%;
}
.safe .screen2 .safe_step_box .step .title{
  font-size:16px;
  font-weight:400;
  color:#56bcd6;
  line-height:16px;
  margin-top: 8px;
  margin-bottom: 2px;
}

.safe .screen2 .safe_step_box .step .cont{
  font-size:14px;
  font-family:MicrosoftYaHei;
  font-weight:400;
  color:rgba(153,153,153,1);
  line-height:20px;
  margin-bottom: 0;
}
.safe .screen2 .safe_step_box .step_icon{
  margin-left: -26px;
  margin-bottom: 6px;
}
.safe .screen2 .safe_step_box .step_icon i{
  display: block;
  font-size:12px;
  line-height: 12px;
  color:rgba(204,185,143,1);
  margin-left: 19px;
}
.safe .screen2 .safe_step_box .step_icon i:nth-child(1){
  transform: translateY(5px);
}
.new_style.safe .screen3{
  background: #ffffff;
  padding:90px 0 120px 0;
}
.new_style.safe .screen3 .top .left{
  position: relative;
  background: #ffffff;
  padding-top:47px;
  width:calc(100% - 548px);
}
.new_style.safe .screen3 .top .right{
  width:541px;
  height:202px;
  background:rgba(255,255,255,1);
  box-shadow:0px 3px 30px 0px rgba(0, 0, 0, 0.08);
}
.new_style.safe .screen3 .top .left img{
  position: absolute;
  left: 0;
  top:0;
}
.new_style.safe .screen3 .top .left .com_center{
  font-size:20px;
  font-weight:400;
  color:rgba(102,102,102,1);
  line-height:26px;
  display: block;
  white-space: normal;
  float: none;
  width: 100%;
  margin-top:56px;
}
.new_style.safe .screen3 .top .left .com_cnas{
  font-size:26px;
  font-weight:400;
  color:rgba(51,51,51,1);
  line-height:36px;
  display: block;
  white-space: normal;
  float: none;
  width: 100%;
  margin-top:36px;
  margin-bottom: 80px;
}
.new_style.safe .screen3 .top .left > div span:nth-child(1){
  width:186px;
  font-size:36px;
  font-weight:bold;
  color:rgba(0,136,63,1);
  line-height:36px;
}
.new_style.safe .screen3 .top .left > div span:nth-child(2){
  height:1px;
  margin-top:17.5px;
  width:calc(100% - 250px);
  background:#CCB98F;
  display: inline-block;
}
.new_style.safe .screen3 .mid p{
  font-size:16px;
  font-family:'Microsoft YaHei';
  font-weight:400;
  color:rgba(102,102,102,1);
  line-height:26px;
}
.new_style.safe .screen3 .mid .last_p{
  margin-bottom: 56px;
}
.new_style.safe .screen3 .mid .left,
.new_style.safe .screen3 .mid .right{
  width:calc((100% - 30px) / 2);
}
.new_style.safe .screen3 .btm .title{
  font-size:20px;
  font-weight:bold;
  color:#56bcd6;
  line-height:26px;
  margin:60px 0 40px;
}
.safe .screen3 span{
  float: none;
  width: 100%;
}
.new_style.safe .screen3 .btm .circle{
  width:10px;
  height:10px;
  background:rgba(51,51,51,1);
  border-radius:50%;
  display: inline-block;
  margin-right: 10px;
}
.new_style.safe .screen3 .btm .iso_cerf > div{
  width:calc((100% - 90px) / 4);
  margin-left: 30px;
  float: left;
  text-align: center;
}
.new_style.safe .screen3 .btm .iso_cerf.iso_hal > div{
  width: calc(33.33% - 20px);
}
.new_style.safe .screen3 .btm .iso_cerf > div:nth-child(1){
  margin-left: 0;
}
.new_style.safe .screen3 .btm .iso_cerf > div >div{
  border:1px solid rgba(221, 221, 221, 1);
  background:rgba(255,255,255,0.8);
  padding: 13px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.new_style.safe .screen3 .btm .iso_cerf > div .cont{
  font-size:16px;
  font-family:'MicrosoftYaHei-Bold';
  font-weight:bold;
  color:rgba(204,185,143,1);
  line-height:26px;
  margin-top:14px;
}
.hr .ins_banner_bg .menu > div{
  width:25%;
  padding:0 30px;
}
.hr .ins_banner_bg .menu > div:last-of-type{
    border-right: none;
}
.hr .ins_banner_bg .menu span:nth-child(2){
  margin-left: 15px;
}
.hr .ins_banner_bg .menu span:nth-child(3){
  right:30px;
}
.hr .ins_banner_bg .menu span{
  font-size:24px;
  font-weight:400;
}
.hr .ins_banner_bg .menu p{
  font-size:18px;
  font-weight:400;
}
.hr .screen2 .container{
  background:rgba(255,255,255,1);
  box-shadow:0px 3px 20px 0px rgba(190, 190, 190, 0.35);
  padding:60px;
  text-align: center;
  margin-bottom: 60px;
}
.hr .screen2 .container > span{
  font-size:16px;
  font-weight:400;
  color:rgba(153,153,153,1);
  line-height:24px;
  display: block;
  margin-bottom: 60px;
}
.hr .screen2 .container > span:last-child{
  margin-bottom:0;
}
.hr .screen2 .container .box{
  width:100%;
  margin-bottom: 60px;
}
.hr .screen2 .container .box > div{
  width:303px;
  height:156px;
  background: url(../image/background_1.png) no-repeat;
  background-size: 100%;
  margin-left: 53px;
  text-align: left;
  padding: 30px;
}
.hr .screen2 .container .box > div:nth-child(1){
  margin-left: 0;
}
.hr .screen2 .container .box .title{
  font-size:24px;
  font-weight:bold;
  color:#56bcd6;
  line-height:24px;
  margin-bottom: 30px;
  display: block;
}
.hr .screen2 .container .box p{
  font-size:16px;
  font-weight:400;
  color:rgba(102,102,102,1);
  line-height:24px;
}
.hr .screen2 .container .box2{
  margin-bottom: 60px; 
}
.hr .screen2 .container .box2 > div.flex{
  width:143px;
  height:124px;
  background: url(../image/background_2.png) no-repeat;
  background-size: 100%;
}
.hr .screen2 .container .box2 > div .title{
  font-size:18px;
  font-family:MicrosoftYaHei-Bold;
  font-weight:bold;
  color:rgba(205,186,145,1);
  line-height:24px;
}
.hr .screen2 .container .box2 .circle {
  font-size: 0;
  margin:0 11px;
}
.hr .screen2 .container .box2 .circle span{
  display: inline-block;
  width:6px;
  height:6px;
  background:rgba(232,232,232,1);
  border-radius:50%;
  margin:0 3px;
}
.hr.Service .screen2 .container{
  box-shadow:none;
  text-align: left;
  background: transparent;
}
.hr.ServiceList .screen2 .container{
  padding: 0;
  margin-bottom: 0;
}
.hr.ServiceList .new_list_info h4{
  margin-top:17px;
}
.objective .screen2 {
  text-align: center;
}
.objective .screen3{
  background: #F7F7F7;
  padding: 55px 0;
}
.objective .screen3 .box{
  width:calc((100% - 30px) / 2);
  height:432px;
  float: left;
  margin: 15px 0 15px 30px;
  padding: 70px 60px;
  background:rgba(255,255,255,1);
}
.objective .screen3 .box:nth-child(2n-1){
  margin-left: 0;
}
.objective .screen2 >span{
  font-size:16px;
  font-weight:400;
  color:rgba(153,153,153,1);
  top:-30px;
  position: relative;
  margin-bottom: 37px;
  display: inline-block;
}
.objective .screen3 .box .title{
  font-size:32px;
  font-weight:bold;
  color:rgba(191,172,124,1);
  display: inline-block;
  line-height: 32px;
  margin-bottom: 30px;
}
.objective .screen3 .box .right{
  font-size:78px;
  font-family:'Gotham-Bold';
  font-weight:bold;
  color:rgba(232,232,232,1);
  display: block;
  line-height: 78px;
}
.objective .screen3 .box .sm_title{
  font-size:18px;
  font-weight:400;
  color:rgba(51,51,51,1);
  display: block;
  line-height: 18px;
}
.objective .screen3 .box .line{
  width:37px;
  height:3px;
  background:#56bcd6;
  display: block;
  margin: 30px 0 26px;
}
.objective .screen3 .box p{
  font-size:16px;
  font-weight:400;
    padding-right: 20px;
  color:rgba(153,153,153,1);
  display: block;
  line-height:24px;
  text-align: justify;
  height: 168px;
  overflow-y: auto;
}
.hr.contact .screen2 .con_title{
  margin-bottom: 90px;
}
.hr.contact .screen3 .container{
  background:rgba(255,255,255,1);
  box-shadow:0px 3px 20px 0px rgba(216, 216, 216, 0.35);
  padding-top: 75px;
  padding-bottom: 90px;
  transform: translateY(-95px);
}
.hr.contact .screen3{
  background:rgba(247,247,247,1);
}
.hr.contact .screen3 .top{
  text-align: center;
  padding-bottom:40px;
  margin:0 85px;
  border-bottom: 1px solid #F7F7F7;
}
.hr.contact .screen3 .top .en{
  font-size:32px;
  font-family:BigJohn;
  font-weight:400;
  color:rgba(51,51,51,1);
  line-height:32px;
  display: block;
  margin-bottom: 26px;
    text-transform: uppercase;
}
.hr.contact .screen3 .top .cn{
  font-size:16px;
  font-family:MicrosoftYaHei;
  font-weight:400;
  color:rgba(153,153,153,1);
  line-height:16px;
  display: block;
}
.hr.contact .screen3 .top .title{
  font-size:24px;
  font-weight:400;
  color:rgba(51,51,51,1);
  line-height:24px;
  display: block;
  margin-top:44px;
}
.hr.contact .screen3 .btm{
  margin-top:77px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hr.contact .screen3 .btm > span{
  font-size:16px;
  color:#999999;
  line-height:24px;
  margin-left: 45px;
}
.hr.contact .screen3 .btm > span .iconfont{
  color:#CBB88D;
  font-size: 16px;
} 
.hr.contact .screen3 .btm > span .type{
  color:#333333;
  font-weight:bold;
  margin:0 5px;
} 
.objective .screen3 .box p::-webkit-scrollbar
{
    width: 3px;
    height: 5px;
    background-color: #F5F5F5;
}
/*定义滚动条轨道 内阴影+圆角*/
.objective .screen3 .box p::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}
/*定义滑块 内阴影+圆角*/
.objective .screen3 .box p::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: rgba(191,172,124,1);
}
.hr_src .screen2 .sm-title{
  margin:0 125px;
  text-align: center;
  display: block;
  font-size:15px;
  font-weight:400;
  color:rgba(153,153,153,1);
  font-family:"Microsoft YaHei";
  line-height:26px;
  margin-bottom: 82px;
}
.hr_src .screen2 .welfare{
  text-align: center;
}
.hr_src .screen2 .welfare i{
  color:#BFAC7C;
  font-size: 40px;
}
.hr_src .screen2 .container{
  padding-bottom: 0;
}
.hr_src .screen2 .welfare .box{
  float: left;
  width: calc(100% / 8);
  margin-bottom: 60px;
}
.hr_src .screen2 .welfare span{
  font-size:16px;
  font-weight:bold;
  color:#2A3030;
  display: block;
}
.hr_src .screen3{
  background: transparent;
}
.hr_src .screen3 .white_bg{
  background: #ffffff;
}
.hr_src .screen3 .grey_bg{
  background:rgba(246,246,246,1);
  padding-bottom: 40px;
}
.hr_src .screen3 .grey_bg .pic_show{
  transform: translateY(-100px);display: flex;justify-content: space-around;
    align-items: center;
}
.hr_src .screen3 .grey_bg .box{
  position: relative;
  background: #ffffff;
  padding: 20px;
  width:30%;
  float: left;
  line-height: 1;
}
.hr_src .screen3 .grey_bg .box .numb{
  font-size:50px;
  font-family:'MicrosoftYaHei-Bold';
  font-weight:bold;
  color:rgba(240,240,240,1);
  line-height:62px;
  position: absolute;
  left: 20px;
  top:0;
}
.hr_src .screen3 .grey_bg .box .title{
  font-size:18px;
  font-family:'MicrosoftYaHei-Bold';
  font-weight:bold;
  color:rgba(51,51,51,1);
  line-height:26px;
  display: block;
  position: relative;
  z-index: 2;
  margin-left: 16px;
}
.hr_src .screen3 .grey_bg .box img{
  width:100%;
  margin-top:39px;
}
.hr_src .screen3 .grey_bg .box:nth-child(1){
  margin-left: 0;
}
.hr_src .screen3 .con_title{
  padding-top:10px;
  margin-bottom: 80px;
}
.hr_src .screen3 .grey_bg .btm{
  transform: translateY(-60px);
}
.hr_src .screen3 .grey_bg .btm .prevs{
  transform: rotateY(180deg);
}
.hr_src .screen3 .grey_bg .btm .prev{
  font-size:14px;
  font-family:Microsoft YaHei;
  font-weight:400;
  color:rgba(102,102,102,1);
  line-height:26px;
  text-transform: uppercase;
}
.hr_src .screen3 .grey_bg .btm .line{
  width:1px;
  height:13px;
  background:#56bcd6;
  display: inline-block;
  margin:0 19px;
}
.hr_src .screen3 .grey_bg .btm .next{
  font-size:14px;
  font-family:Microsoft YaHei;
  font-weight:400;
  color:rgba(102,102,102,1);
  line-height:26px;
  text-transform: uppercase;
}
.hr_src .screen3 .grey_bg .btm:hover{
  cursor: pointer;
}
.hr_src .screen3 .grey_bg .btm i{
  color:rgba(102,102,102,1);
  font-size: 32px;
  line-height: 10px;
  margin:8px 10px 0 10px;
}
.hr_src .screen3 .grey_bg .btm .on{
  color:#56bcd6;
}
#screen4{
  padding-top:60px;
}
.hr_src .screen4 .container > span{
  font-size:15px;
  font-family:Microsoft YaHei;
  font-weight:400;
  color:rgba(153,153,153,1);
  line-height:26px;
  margin:-30px 115px 0;
  display: inline-block;
}
.hr_src .screen4 .con_title{
  padding: 30px 0 70px;
}
.hr_src .screen4 .out_box{
  padding:5px;
  margin-top:45px;
  border:1px solid rgba(191,172,124,1);
}
.hr_src .screen4 .inside_box{
  border:1px solid rgba(191,172,124,1);
  padding:55px 30px;
  position: relative;
}
.hr_src .screen4 .left_top{
  position: absolute;
  left: 30px;
  top: 55px;
}
.hr_src .screen4 .left_top span.en{
  font-size:15px;
  font-family:Microsoft YaHei;
  font-weight:400;
  color:rgba(191,172,124,1);
  line-height:26px;
  transform: rotate(90deg);
  display: inline-block;
}
.hr_src .screen4 .left_top span.cn{
  width:16px;
  height:173px;
  font-size:15px;
  font-family:Microsoft YaHei;
  font-weight:400;
  color:rgba(191,172,124,1);
  line-height:18px;
  display: inline-block;
}
.hr_src .screen4 .right_top{
  position: absolute;
  right: 30px;
  top: 55px;
}
.hr_src .screen4 .right_top .icon-Arrow_L1{
  color:rgba(204,204,204,1);
  font-size: 18px;
}
.hr_src .screen4 .right_top .icon-Arrow_R1{
  color:rgba(204,204,204,1);
  font-size: 18px;
}
.hr_src .screen4 .left_btm{
  position: absolute;
  left: 30px;
  bottom: 0;top: 0;margin: auto;
    height: 84%;
    display: flex;flex-direction: column;
    justify-content: space-between;
}
.hr_src .screen4 .right_btm{
  position: absolute;
  right: 30px;
  bottom: 55px;
}
.hr_src .screen4 .right_btm span{
  font-size:12px;
  font-family:Microsoft YaHei;
  font-weight:400;
  color:rgba(191,172,124,1);
  line-height:26px;
}
.hr_src .screen4 .cont{
  padding:110px 0;display: flex;justify-content: space-around;
}
.hr_src .screen4 .cont .box{
  background: url(../image/hr_circle_white_out.png) no-repeat;
  background-size: 100%;
  float: left;
  margin-left: 20px;
  position: relative;
  width:200px;
  height: 200px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hr_src .screen4 .cont .box:hover{
  background: url(../image/hr_circle_blue.png) no-repeat;
}
.hr_src .screen4 .cont .box .cn{
  font-size:16px;
  font-weight:bold;
  color:rgba(191,172,124,1);
  line-height:26px;
  display: block;
  width:100%;
}
.hr_src .screen4 .cont .box .en{
  font-size:12px;
  font-weight:400;
  color:rgba(191,172,124,1);
  line-height:26px;
  display: block;
  width:100%;
}
.hr_src .screen4 .cont .box:hover .cn,
.hr_src .screen4 .cont .box:hover .num,
.hr_src .screen4 .cont .box:hover .en{
  color:#ffffff;
}

.hr_src .screen4 .cont .box .num{
  font-size:16px;
  font-weight:400;
  color:rgba(191,172,124,1);
  line-height:26px;
  display: block;
  width:100%;
}
.hr_src .screen4 .cont .box img{
  position: absolute;
  left: 0;
  top: 0;
  width:100%;
  height: 100%;
  z-index: 1;
}
.hr_src .screen4 .cont .box div{
  z-index: 5;
  position: relative;
}
.hr_src .screen4 .cont .box:nth-child(1){
  margin-left: 0;
}
.hr_src .screen5{
  background:rgba(246,246,246,1);
  padding-bottom: 100px;
  margin-bottom: 0;
}
.hr_src .screen5 .box{
  background: #ffffff;
  padding:30px 40px; 
  width:100%;
  margin-left: 0;
  float: none;
}
.hr_src .screen5 .box:hover{
  cursor: pointer;
}
.hr_src .screen5 .box .type{
  float: left;
  font-size:16px;
  font-weight:400;
  color:rgba(170,170,170,1);
  line-height:20px;
}
.hr_src .screen5 .box .time{
  float: right;
  font-size:20px;
  font-weight:400;
  color:rgba(170,170,170,1);
  line-height:20px;
}
#hr .resume_btn{
    position: absolute;
    z-index: 2;
    left: 0;
    opacity: 0;
    height: 100%;
    cursor: pointer;
}
.btn_load_det{
  transition: all .5s ease;
  cursor: pointer;
}

#contact .screen2 .container{
    padding: 90px 0;
}
.sha_box{
    position: relative;z-index: 100;
}
.header_box .c-hover{
    position: relative;
}
.header_box .c-hover:hover span{
    display: block;
}
.header_box .c-hover span{
    display: none;
    position: absolute;top: calc(100% + 10px);
    left: 0;width: 120px;line-height: 1;
    box-sizing: border-box;padding: 10px;background-color: #fff;
    animation: fadeInDownSmall 0.3s linear;
}
.header_box .c-hover span:after{
    content: '◆';
    position: absolute;
    top: 0;
    width: 100%;
    right: 0;
    text-align: left;
    text-indent: 10px;
    font-size: 20px;
    line-height: 20px;
    margin-top: -10px;
    color: #fff;
    height: 10px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
}
.header_box .c-hover span img{
    width: 100%;
}

#business #roll {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
#business #roll .left {
    width: 40%;
    padding: 1rem 0;
}
#business #roll .left h3 {
    position: relative;
    display: inline-block;
}
#business #roll .left h3:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 1px;
    width: 50px;
    background-color: #333;
    left: calc(100% + 28px);
}
#business #roll .left .msg {
    display: none;
}
#business #roll .left .msg h2 img {
    margin-right: 10px;
    vertical-align: middle;
}
#business #roll .left .msg.on {
    display: block;
}
#business #roll .left .roll-set {
    margin-top: 0.3rem;
    overflow: hidden;
}
#business #roll .left .roll-set > a {
    display: inline-block;
    float: left;
    text-align: center;
    line-height: 50px;margin-right: 20px;
    height: 50px;width: 50px;border-radius: 50%;
    background-color: #eee;
    color: #e2e2e2;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
#business #roll .left .roll-set > a > i {
    display: inline-block;
    font-size: 12px;
    line-height: 50px;
    height: 50px;width: 50px;border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    color: #c5c5c5;
}
#business #roll .left .roll-set > a:hover {
    background-color: #00883f;
}
#business #roll .left .roll-set > a:hover > i {
    color: #fff;
}
#business #roll .right {
    width: 70vw;
    position: absolute;
    left: 40%;
}
#business #roll .right .roll-box {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 1rem;
}
#business #roll .right .roll-box .swiper-item {
    overflow: hidden;
    position: relative;
    z-index: 10;
    width: 3000%;
}
#business #roll .right .roll-box .swiper-item > li {
    float: left;
    padding-right: 32px;
    cursor: pointer;
    perspective: 500px;
}
#business #roll .right .roll-box .swiper-item > li .pic {
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    width: 500px;
    opacity: 0.5;
    transform-origin: -8% 50%;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
#business #roll .right .roll-box .swiper-item > li.on .pic {
    transform: none;opacity: 1;
}
#business #roll .right .roll-box .show-box {
    position: absolute;
    pointer-events: none;
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 8;
}
#business #roll .right .roll-box .show-box > img {
    width: 6.5rem;
}
#business #roll .right .roll-box .show-box .shadow {
    position: absolute;
    bottom: 66%;
    left: 1.3rem;
    width: 3.9rem;
    height: 1px;
    background-color: #babbbb;
    box-shadow: 0 0px 9px 9px rgba(0, 0, 0, 0.26);
    border-radius: 50%;
}
#business .screen5 .container{
    width: 100%;
    display: flex;justify-content: center;align-items: flex-start;
}
#business .screen5 .box{
    margin: 0 20px;
    width: 29%;
}
.ins_banner_bg .menu > div{
    transition: all 0.3s ease-in-out;position: relative;
}
.ins_banner_bg .menu > div > a{display: flex;align-items: center;}
.ins_banner_bg .menu > div.child-down:hover > ul{display: block;}
.ins_banner_bg .menu > div.child-down > ul{position: absolute;width: 100%;top: 100%;left: 0;background-color: #018840;display: none;padding-bottom: 12px;}
.ins_banner_bg .menu > div.child-down > ul li{width: 100%;padding: 0 10%;}
.ins_banner_bg .menu > div.child-down > ul li a{display: inline-block;height: 48px;line-height: 48px;color: #fff;}

#new_detail .screen2 .container{padding-bottom: 20px;}

.sha_box .language_switch{position: relative;}
.sha_box .language_switch .l-down {
    position: absolute;
    top: 80%;
    right: 0;
    min-width: 160px;
    display: none;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}
.sha_box .language_switch .l-down:after {
    content: '◆';
    position: absolute;
    top: 0;
    width: 1rem;
    right: 38px;
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    margin-top: -10px;
    color: #fff;
    height: 10px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
}
.sha_box .language_switch .l-down dd a {
    width: auto;
    display: block;
    height: auto;
    line-height: 45px;font-size: 16px;
    background: #fff;margin: 0;
    color: #666;
    text-align: center;
    padding: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
.sha_box .language_switch .l-down dd a:hover {
    background-color: #56bcd6;
    color: #fff;
}
.sha_box .language_switch .l-down dd:first-of-type a {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    overflow: hidden;
}
.sha_box .language_switch .l-down dd:last-of-type a {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    overflow: hidden;
}
.screen1{z-index: 100;}
.btn_refer input[type=file]{
    position: absolute;opacity: 0;left: 0;z-index: 100;
}
.news_list{flex-wrap: wrap;}

#home .screen4 .title_box{position: relative;}
#home .screen4 .title_box > a{position: absolute;width: 130px;transition: all 0.3s ease-in-out;border-radius: 50px;height: 40px;line-height: 40px;right: 0;top: 0;bottom: 0;margin: auto;border: 1px solid #eee;text-align: center;}
#home .screen4 .title_box > a > em{margin-right: 5px;opacity: 0.8;vertical-align: middle;transition: all 0.3s ease-in-out;}
#home .screen4 .title_box > a > i{font-size: 12px;vertical-align: middle;opacity: 0.8;transition: all 0.3s ease-in-out;}
#home .screen4 .title_box > a:hover{
    background-color: #56bcd6;border-color: transparent;
}
#home .screen4 .title_box > a:hover em{color: #fff;opacity: 1;}
#home .screen4 .title_box > a:hover i{color: #fff;opacity: 1;}
.new_style.safe .screen3 .top .right{position: relative;}
.new_style.safe .screen3 .top .right > img{position: absolute;top: 0;left: 0;bottom: 0;right:0;margin: auto;}
body.con_style .screen3 .blogroll_case .blogroll_box>div>div:first-child{line-height: 1.6;}
.con_style .screen3 .blogroll_case .pure{display: flex;justify-content: flex-start;align-items: stretch;flex-wrap: wrap;}
.R_D .screen2 .text_box_1 > div .clear{display: flex;flex-wrap: wrap;}
.R_D .screen2.screen4 .text_box_1 .left{margin-top: 10px;}

.en .pc_nav>a{margin: 0 1.3%;}
.en .screen5 .box a > div .title{font-size: 20px;height: 56px;display: block;}
.en .news_list .left .title{line-height: 24px;}
.hr_src .screen2 .welfare{display: flex;flex-wrap: wrap;}
.en .hr .screen2 .container .box{align-items: stretch;}
.en .hr .screen2 .container .box > div{background-size: 100% 100%;height: auto;}
.en .hr.contact .screen3 .btm{flex-wrap: wrap;}
.en .hr .screen2 .container .box2 > div .title{font-size: 15px;}
.en .hr.contact .screen3 .btm > span{width: 40%;margin: 18px;}
.en .ins_banner_bg .menu span{vertical-align: text-bottom;}
.en .prodList .screen2 .mid .con_title,.en .prodList .screen2 .hide_prod_box .con_title{font-size: 14px;padding: 25px 6px;}
.en .R_D .screen3 > div{display: flex;justify-content: center;flex-wrap: wrap;}
.en .R_D .screen3 span{width: auto;margin: 0 10px;font-size: 16px;}
.en .patent_wall_pic .box span{font-size: 17px;}
.en .honor .wall .box .btm .title{font-size: 18px;}
.en .honor .wall .box .top .left{width: auto;padding: 0 8px;font-size: 14px;}
.en .honor .wall .box .top .right{font-size: 13px;width: auto;padding: 0 6px;}
.en .honor .wall .box .btm p{font-size: 15px;}
.en .ins_banner_bg .menu i{font-size: 46px;}
.en .join_term_cate_name{width: auto;}
.en .prodList .screen2 .mid .box{width:calc(100% / 2 - 25px);}
.en .prodList .screen2 .hide_prod_box{margin-left: -12px;}
.en .prodList .screen2 .hide_prod_box .box{width:calc(100% / 4 - 28px);margin: 12px 10px;}
.en .prodList .screen2.part_2 .hide_prod_box .box:nth-child(1){margin: 12px 10px;}
.en .bus_page_scre2_cn{opacity: 0;}

@media all and (max-width: 600px){
    .over-2{
        line-height: 24px;height: 48px;
        overflow:hidden;
        text-overflow:ellipsis;
        display:-webkit-box;
        -webkit-box-orient:vertical;
        -webkit-line-clamp:2;box-sizing: content-box;
    }
    .over-3{
        line-height: 24px;height: 72px;
        overflow:hidden;
        text-overflow:ellipsis;
        display:-webkit-box;
        -webkit-box-orient:vertical;
        -webkit-line-clamp:3;box-sizing: content-box;
    }
    .en .subheading h3{font-size: 18px}
    .en .prodList .screen2 .hide_prod_box{margin-left: 0;}
    .en .screen5 .box a > div .scre5_cn{font-size: 14px;}
    .en .hr .screen2 .container .box .title{margin-bottom: 4px;}
    .en .bus_box{padding-top: 40px;padding-bottom: 40px;}
    .en .bus_title{font-size: 18px;}
    .en #business #roll .left h3{font-size: 16px;}
    .en #new .news_list .left .title{font-size: 14px;}
    .prodList .screen2 .mid .box span, .prodList .screen2 .hide_prod_box .box span{line-height: 24px;}
    .en .prodList .screen2 .mid > div:nth-child(1) span{font-size: 18px;}
    .en .prodList .screen2 .mid .con_title, .en .prodList .screen2 .hide_prod_box .con_title{font-size: 12px;line-height: 24px;}
    .en #pater .patent_wall_pic .box span,.en .honor .wall .box .top .left,.en .honor .wall .box .top .right{font-size: 12px;}
    .en .honor .wall .box{padding: 10px;}
    .en .hr.contact .screen3 .btm > span{width: 100%;}
    .en .hr.contact .screen3 .top{padding-bottom: 15px;}
    .en #hr.hr_src .screen2 .welfare span{font-size: 12px;}
    .en #hr.hr_src .screen2 .welfare .box{width: 50%;}
    .en .prod_use .screen2 .container .step{display: none;}
    .en #case.prod_use .screen3 .prod_use_show .box{width: 100%;}
}

@media screen and (min-width: 600px) {
    .sha_box .language_switch:hover .l-down {
        display: block;
    }
}

@media all and (min-width: 1025px){
  .btn_load_det:hover{
    background-color: #56bcd6;
    border-color: #56bcd6;
    color: #fff !important;
  }
    .screen2 .left{margin-top: 20px;}
}

@media all and (max-width: 1700px){
  .imageInfo{
    width:84vw;
    margin-left: -42vw;
  }
}

@media all and (max-width: 1600px){
  .prodList .screen2 .container{
    width:1370px;
  }
  .imageInfo{
    width:84vw;
    margin-left: -42vw;
  }
  .prod_use .container,
  .patent .container,
  .hr .container,
  .hr_src .container{
    width: 1370px;
  }
}
@media all and (max-width: 1500px){
  .imageInfo{
    width:90vw;
    margin-left: -45vw;
  }
}
@media all and (max-width: 1450px){
  .prodList .screen2 .container,
  .patent .container,
  .hr .container,
  .hr_src .container{
      width: 1170px;
  }
  .prodList .screen2 .top{
    width: 500px;
    position:relative;
  }
  .prodList .screen2 .top img {
    margin-top: 0px;
  }
  .prodList .screen2 .hide_prod_box .box{
    width: calc(100% / 5 - 28px);
  }
}
@media all and (max-width: 1400px){
  .imageInfo{
    width:96vw;
    margin-left: -48vw;
  }
  .prod_use .container,
  .hr .container,
  .hr_src .container{
      width: 1170px;
  }
  .prod_use .screen3 .product_img{
    width: 100%;
    height: 180px;
  }
    .screen1 .ins_banner_bg .menu span{font-size: 22px;}
    .screen1 .ins_banner_bg .menu p{font-size: 22px;margin-top: 0;}
}
@media all and (max-width: 1300px){
  .screen5 .container{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .prod_use .container,
  .patent .container,
  .hr .container,
  .hr_src .container{
      width: 1170px;
  }
  .hr_src .screen4 .cont .box{
    margin-left: 20px;
  }
  .imageInfo .right .box {
    padding: 40px 40px;
    width: calc(100% + 60px);
}
.imageInfo .btn{
  left: 40px;
}

}
@media all and (max-width: 1200px){
  .screen2 .scre2_box{
    margin-right:20px;
    margin-bottom: 20px;
  }
  .hr_src .container{
    width: 1150px;
  }
  .hr_src .screen4 .cont .box{
    margin-left: 10px;
  }
  .honor .wall .box .top .left{
    margin-top:0;
  }
  .screen2 .left{
    margin-top:51px;
  }
  .bus_page_scre2_cont{
    margin-left: 50px;
  }
}

@media all and (max-width: 1120px){
    .prod_use .container,
    .patent .container,
    .hr .container,
    .hr_src .container{
        width: 90%;
    }
}

@media all and (max-width: 600px){
    .app{
        display: block;
    }
    .pc{
        display: none;
    }
    .nav-content{
        z-index: 10000;
    }
    #home .screen3 .container .scr3_new_box_m .scr3_new_info{font-size: 13px;}
    #home .screen3 .container .scr3_new_box_m .scr3_new_title{font-size: 18px;}
    #home .screen3 .container{
        width: 90%;
    }
    #home .timeline_case section{
        width: 94%;left: 0;
    }
    #home .course_box h5{
        padding-left: 42px;font-size: 14px;
    }
    .ins_banner_bg .menu{
        width: 100%;
    }
    .ins_banner_bg .menu span:nth-child(3),.ins_banner_bg .menu i{
        display: none;
    }
    .screen1 .ins_banner_bg .menu span:nth-child(2){
        margin-left: 0;
    }
    .screen1 .ins_banner_bg .menu{
        height: 80px;
    }
    .screen1 .ins_banner_bg .menu span{
        font-size: 13px;
    }
    .screen1 .ins_banner_bg .menu p{
        font-size: 13px;
        line-height: 20px;margin-top: 0;
    }
    .screen1 .ins_banner_bg .menu > div{
        padding: 0;height: 80px;display: flex;
        justify-content: center;
    }
    .screen1 .ins_banner_bg .menu > div > a{
        text-align: center;
    }
    .screen2, .screen3, .screen4{
        border: none!important;
    }
    .bg-l{
        display: none;
    }


    #business .screen2 .container {
        display: flex;flex-wrap: wrap;padding-bottom: 30px;
        justify-content: center;align-items: center;
    }
    #business .screen2 .left{
        width: 100%;
    }
    #business .screen2 .left .clear{
        width: 100%;
        display: flex;justify-content: center;
        flex-wrap: wrap;align-items: center;
    }
    #business .screen2 .scre2_box{
        margin: 0;width: 110px;height: 110px;
    }
    #business .screen2 .introduction,#business .bus_page_scre2_leaf{
        display: none;
    }
    #business .bus_page_scre2_cont{
        margin: 0 20px;
    }
    #business .bus_page_scre2_cont p{
        font-size: 13px;margin-bottom: 0px;
    }
    #business .screen2 .right{
        width: 100%;
    }
    #business .subheading{
        padding: 0px 0 10px 0;
    }
    #business .timeLine_box_food .course_box h5{
        font-size: 14px;
    }
    #business .screen5 .container{
        flex-wrap: wrap;
    }
    #business .screen5 .box{
        width: 100%;margin-left: 0;margin-right: 0;
    }
    #business .bg-l{display: none;}
    #business #roll .left{width: 100%;margin: 0 20px;background: #fff;}
    #business #roll .right{
        top: 108%;width: 100%;left: 0;
    }
    #business #roll .right .roll-box .swiper-item > li .pic{
        width: 200px;
    }
    #business .list-timeline-container-outer-wrapper{margin-left: 38px;}
    #business .timeline-next{top: 22px;left: auto;  right: 32px!important;}
    #business .timeline-btn.timeline-prev{top: 22px;left: auto!important;right: 88px!important;}


    #new .news_list{
        flex-wrap: wrap;margin-bottom: 0;
        padding: 10px 20px;
    }
    #new .news_list .left:nth-child(2){
        width: 100%;
        margin: 20px 0;
    }
    #new .news_list .left .title{
        margin-bottom: 10px;font-size: 16px;
    }
    #new .news_list .right{
        display: flex;justify-content: flex-start;
        width: 100%;text-align: left;
    }
    #new .news_list .right .month{
        font-size: 12px;
        font-weight: normal;
        margin-left: 10px;
    }
    #new .news_list_more{
        display: none;
    }
    #new_detail .screen2 .container{
        margin: 0 20px;padding-bottom: 30px;
    }

    #products .screen2 .container{
        padding-bottom: 30px;
    }
    #products.prodList .screen2 .container{
        width: 100%;
    }
    #products.prodList .screen2 .top{
        width: 100%;height: auto;margin-top: 0;
        display: flex;align-items: center;
    }
    #products.prodList .screen2 .mid{
        width: 100%;margin-top: 0;
    }
    #products.prodList .screen2 .mid .box{
        width: 50%;box-shadow: none;margin: 0;
    }
    .prodList .screen2 .box > img{
        max-width: 90%;height: 150px;margin: auto;
    }
    #products.prodList .hide_prod_box{
        display: flex;flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;background-color: #fff;
    }
    #products.prodList .hide_prod_box .box{
        width: 50%; box-shadow: none;margin: 0;
    }
    .prodList .screen2 .mid .con_title, .prodList .screen2 .hide_prod_box .con_title{
        font-size: 14px;
    }
    #products.prodList a.btn{
        height: 30px;line-height: 30px;
        width: 100%;border-radius: 0;background-color: transparent;
        text-align: center;bottom: 0;left: 0;text-decoration: underline;
        box-shadow: none;font-size: 14px;
    }



    #case.prodList .screen2 .container{
        width: 100%;
    }
    #case.prod_use > .container > div{
        width: 100%;margin: 0;box-shadow: none;
    }
    #case.prod_use .screen3{
        padding: 0;
    }
    .prod_use .line{display: none;}
    #case.prod_use .screen3 h3{
        position: relative;top: 0;
        left: 0;transform: none;text-align: center;
        font-size: 16px;padding-top: 20px;padding-bottom: 8px;
    }
    #case.prod_use .screen3 .prod_use_show{
        display: flex;flex-wrap: wrap;
        justify-content: space-between;
    }
    #case.prod_use .screen3 .prod_use_show .box{
        width: 48%;margin: 0;padding: 0;margin-bottom: 15px;
    }
    .prod_use .screen3 .prod_use_show .title{
        font-size: 14px;
    }
    .prod_use .screen2 .container .title{
        width: 90%;text-align: center;top: 32px;
    }
    .prod_use .screen3 .prod_use_show p{
        font-size: 12px;margin-top: 4px;
    }


    .screen1{
        z-index: 9;
    }
    #teas.hr .screen2 .container > span{
        margin-bottom: 10px;
    }
    #teas.hr .screen2 .container{
        padding: 0;box-shadow: none;
    }
    #teas.hr .screen2 .container .box{
        flex-wrap: wrap;
    }
    #teas.hr .screen2 .container .box > div{
        margin:10px 0;
    }
    #teas.hr .screen2 .container .box .title{
        font-size: 18px;
    }
    #teas.hr .screen2 .container .box p{
        font-size: 12px;
    }
    #teas.hr .screen2 .container .box2{
        flex-wrap: wrap;
    }
    .hr .screen2 .container .box2 .circle{display: none;}

    #service .new_recom>div h5{font-size: 13px;}
    #service .new_list_case>div .container .new_list_ent{
        display: flex;flex-wrap: wrap;flex-direction: column;
        justify-content: flex-start;align-items: flex-start;
    }
    #service .new_list_case>div .container .new_list_ent .new_list_info{
        width: 100%;
    }
    #service .new_list_case>div .container .new_list_ent .new_list_info h4{font-size: 16px}
    #service .new_list_case>div .container .new_list_ent .new_list_info h5{font-size: 12px;}
    #service .new_list_case>div .container .new_list_ent .new_det{align-self: flex-end;}


    #ob .screen3 .container{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #ob.objective .screen3{
        padding-top: 20px;
    }
    #ob.objective .screen3 .box{
        width: 100%;padding: 20px;
        margin: 0;height: auto;
    }
    .objective .screen2 >span{
        margin: 0 20px;font-size: 14px;
    }
    .objective .screen3 .box .title{
        font-size: 24px;
    }
    .objective .screen3 .box .right{
        font-size: 50px;
    }
    .objective .screen3 .box .sm_title{
        font-size: 16px;
    }
    .objective .screen3 .box .line{
        margin: 20px 0 15px;
    }
    .objective .screen3 .box p{
        height: auto;font-size: 13px;
    }

    #t_c.hr.contact .screen3 .container{
        padding-top: 30px;padding-bottom: 30px;
    }
    #t_c.hr.contact .screen3 .top{
        margin: 0 10px;margin-bottom: 20px;
    }
    #t_c.hr.contact .screen3 .top .en{
        font-size: 20px;margin-bottom: 4px;
    }
    #t_c.hr.contact .screen3 .top .title{
        font-size: 18px;
    }
    .hr.contact .screen3 .btm{
        flex-wrap: wrap;justify-content: flex-start;
        margin-top: 30px;
    }
    .hr.contact .screen3 .btm > span{
        margin: 10px 20px;
    }

    #contact .screen2 .container{
        padding: 20px;margin: 0;box-shadow: none;
    }
    #contact .con_case>.fl_l h4{
        font-size: 14px;
    }
    #contact .con_style .screen3 .blogroll_case{
        padding-top: 0;
    }

    #hr.new_style .screen2{
        padding-top: 30px;
    }
    #hr.hr_src .screen2 .sm-title{
        margin: 0 0;font-size: 13px;
    }
    #hr.hr_src .screen2 .welfare{
        display: flex;flex-wrap: wrap;
        justify-content: center;align-items: center;
    }
    #hr.hr_src .screen2 .welfare .box{
        width: 25%;margin-bottom: 20px;
    }

    .R_D .screen2 .text_left{
        width: 100%;padding: 0 20px;
    }
    .R_D .screen2 .text_left p{
        font-size: 13px;
    }
    .R_D .screen2 .text_right{
        width: 100%;padding: 0 20px;
    }
    .R_D .screen2 .text_right p{
        font-size: 13px;
    }
    .R_D .screen2 .R_D_right{
        position: relative;top: auto;transform: none;
        width: 100%;
    }
    .R_D .screen2 .top-shadow,.R_D .screen2 .btm-shadow{
        display: none;
    }
    .R_D .screen2 .trans{
        width: 100%;box-shadow: none;transform: none;
        position: relative!important;height: auto!important;
        margin-bottom: 30px;
    }
    .R_D .screen2 .text_box_1{
        padding: 0 20px;height: auto;
        box-sizing: border-box;transform: none;
    }
    .R_D .screen2 .text_box_1 > div{
        margin-bottom: 15px;margin-left: 0;
    }
    .R_D .screen2 .text_box_1 .cont{
        font-size: 13px;
        width:100%;
    }
    .R_D .screen2 .text_box_1 .year{
        font-size: 18px;line-height: 28px;
    }
    .R_D .screen3 .container{
        display: flex;flex-wrap: wrap;margin: 0 20px;
        justify-content: center;align-items: center;
    }
    .R_D .screen3 span{
        float: none;font-size: 13px;margin: 0 5px;
        width: auto;
    }
    .R_D .screen3 span p:nth-child(1){
        font-size: 30px;margin-right: 5px;margin-left: 5px;
    }
    .R_D .screen2.screen4 .text_box_1 > div > p{
        font-size: 13px;margin-bottom: 10px;
    }
    .R_D .screen2.screen4 .image{

    }
    .R_D .screen2.screen4 .text_box_1 h3, .R_D .customized .customized_box h3{
        font-size: 18px;
    }
    .R_D .screen2.screen4{
        padding-top: 20px;
    }
    .R_D .screen2.screen4 .trans{
        transform: none;
    }
    .R_D .screen2.screen4 .text_box_1 .left{
        width: 100%!important;margin: 5px 0;
    }
    .R_D .screen2.screen4 .text_box_1 span{font-size: 13px;}
    .R_D .screen2.screen4 .btm-more{display: none;}
    .R_D .screen2 .container{
        padding: 0 0 20px 0!important;
    }
    .customized_box{
        margin: 0 20px;height: auto;width: auto;
        position: relative;top: 0;left: 0;
        padding: 0;box-shadow: none;
    }
    .R_D .screen2.screen4 .text_box_1 .line, .R_D .customized .customized_box .line{
        height: 3px;margin-top: 0;margin-bottom: 20px;
    }
    .R_D .customized .customized_box p{font-size: 13px;}


    .patent_part_2 .title > div{
        font-size: 16px;padding-top: 30px;
    }
    .patent_part_2 .title > div.on{
        padding-bottom: 10px;
    }
    .patent_part_2 .title span,.patent_part_2 .title p{display: none;}
    #pater .patent_wall_pic{
        padding: 50px 0;display: flex;
        flex-wrap: wrap;justify-content: space-between;
        align-items: center;
    }
    #pater .patent_wall_pic .box{
        margin: 0!important;width: 48%;border: none;
    }
    #pater .patent_wall_pic .box > div{border: none;}
    #pater .patent_wall_pic .box span{font-size: 13px;}
    #pater .patent_wall_pic .box .line{display: none;}
    .honor .wall .box{width: 100%;padding: 20px;}
    .patent_wall_pic .box img{margin: 0 0 20px 0;}
    .patent .btn_to_load_box{padding: 0;}
    .new_style .screen2.honor{padding-top: 120px;}
    .screen2 .container{padding-bottom: 30px;}


    .patent .screen2.honor .container .wall{
        display: flex;flex-wrap: wrap;
        justify-content: center;align-items: stretch;
    }
    .honor .wall .box .mid{margin-top: 30px;margin-bottom: 18px;}
    .honor .wall .box:nth-of-type(4), .honor .wall .box:nth-of-type(5), .honor .wall .box:nth-of-type(6){display: none;}
    .honor .popup,.full_cover{display: none!important;}
    .honor .wall .box .btm .title{font-size: 18px;}
    .honor .wall .box .btm .cont{font-size: 14px;margin-bottom: 8px;}
    .honor .wall .box .btm p{font-size: 14px;}


    .safe .con_title{padding-top: 30px;}
    #safe.safe .screen2.screen4 .trans{
        width: 100%; 
    }
    #safe.safe .screen2.screen4 .text_box_1{
        padding: 30px 20px 20px 20px;
    }
    #safe.new_style.safe .screen2{
        padding-top: 0;padding-bottom: 0;
    }
    #safe.safe .screen2 .text_box_1{
        padding-top: 32px;
    }
    .safe .screen2 .safe_step_box .step_icon{display: none;}
    #safe.R_D .screen2 .text_box_1 > div{
        margin-left: 20px;padding-top: 0;
    }
    #safe.safe .screen2 .safe_step_box .step .circle{
        width: 38px;height: 38px;line-height: 38px;text-align: center;
    }
    #safe.safe .screen2 .safe_step_box .step .circle i{font-size: 24px;}
    #safe.safe .screen2 .safe_step_box .step{
        margin: 8px 0 0 -20px;
    }
    #safe.new_style.safe .screen3{
        padding-top: 10px;padding-bottom: 40px;
    }
    #safe.new_style.safe .screen3 .top .left{
        width: 100%;
    }
    #safe.new_style.safe .screen3 .top .right{
        width: 100%;height: auto;margin-bottom: 30px;
    }
    #safe.new_style.safe .screen3 .top .left > div span:nth-child(1){font-size: 24px;line-height: 10px;}
    #safe.new_style.safe .screen3 .top .left .com_center{margin-top: 10px;font-size: 13px;}
    #safe.new_style.safe .screen3 .top .left .com_cnas{
        margin: 15px 0 24px 0;font-size: 13px;font-weight: bold;
    }
    #safe.new_style.safe .screen3 .mid p{font-size: 13px;}
    #safe.new_style.safe .screen3 .btm .iso_cerf{
        display: flex;justify-content:flex-start;align-items: center;
        flex-wrap: wrap;
    }
    #safe.R_D .screen3 .container .btm{width: 100%;}
    #safe.new_style.safe .screen3 .btm .iso_cerf > div{
        width: 43%;margin:10px 10px;
    }
    .new_style.safe .screen3 .btm .iso_cerf > div .cont{
        white-space: inherit;font-size: 13px;
    }
    #safe.new_style.safe .screen3 .btm .title{
        white-space: inherit;font-size: 13px;margin: 30px 0 20px;
    }


    #hr.hr_src .screen3 .grey_bg .pic_show{
        display: flex;justify-content: center;
        align-items: center;flex-wrap: wrap;
    }
    #hr.hr_src .screen2 .welfare i{font-size: 32px;}
    #hr.hr_src .screen2 .welfare span{font-size: 13px;}
    #hr.hr_src .screen3 .grey_bg .box{width: 100%;margin: 0;}
    #hr.hr_src .screen3 .grey_bg{padding-bottom: 0;}
    #hr.hr_src .screen4 .con_title{padding-bottom: 45px;}
    #hr.hr_src .screen4 .container > span{margin: 0;font-size: 13px;}
    #hr.hr_src .screen4 .inside_box{padding:30px 20px;}
    #hr.hr_src .screen4 .right_btm{bottom: 0;right: 20px;}
    .hr_src .screen4 .left_btm,.hr_src .screen4 .cont .box img{display: none;}
    #hr.hr_src .screen4 .cont{padding: 0;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: stretch;}
    #hr.hr_src .screen4 .cont .box{background: none;margin: 10px 0;width: 100%;height: auto;}
    .hr_src .screen5 .container{
        display: flex;justify-content: center;align-items: center;flex-wrap: wrap;
    }
    #hr .hr_join_box{width: 100%;}
    #hr.hr_src .screen5 .box .type,.hr_src .screen5 .box .time{font-size: 14px;}
    #hr.hr_src .screen5 .box{padding: 20px;}
    #hr .join_term_case{
        padding: 20px;padding-bottom: 45px;
    }
    #hr .join_term_cate_name,#hr .join_term_cate_con{font-size: 13px;}
    #hr .btn_refer{font-size: 14px;transform: none;top: auto;bottom: -45px;}
    .hr .screen2 .container > span{font-size: 13px;}
    .new_style.safe .screen3 .top .right > img{position: relative;}
    .ins_banner_bg{background-size:cover!important; }
    .new_style.safe .screen3 .btm .iso_cerf > div >div > img{width: 40%;}
    .imageInfo{height: 80vh;}
    .imageInfo:after{
        content: "";position: fixed;width: 100vw;height: 100vh!important;visibility: visible!important;
        top: 0;left: 0;background-color: rgba(0,0,0,0.5);z-index: 2;
    }
    .imageInfo .left,.imageInfo .right{width: 100%;height: 50%;position: relative;z-index: 5;}
    .imageInfo .right .box{padding: 20px 10px;width: 100%;overflow-y: auto;}
    .imageInfo .btn{position: fixed;bottom: 10px;left: 10px;width: 100%;top: auto;color: #fff;}

    #home .screen4 .title_box > a{
        border: none;font-size: 12px;top: auto;opacity: 0.6;
    }
    .imageInfo .right .box .table .rows span:nth-child(2) p{
        width: calc((100%/2) - 20px);font-size: 12px;
    }
    .imageInfo .right .box .table .rows span:nth-child(2):before{
        left: 50%;
    }
    .imageInfo .right .box .table .rows span:nth-child(2):after{
        display: none;
    }

    .screen3 .title_box{padding-top: 0!important;}
    .new_list_box li a span:first-child{color: #666;}
    #business .bus_box{padding-top: 20px;padding-bottom: 0;}
    #business .bus_title{font-size: 20px;}
    .ins_banner_bg .menu > div.child-down > ul li a{font-size: 13px;}
    #business .screen2 .left{margin-top: 28px;}
    .bus_page_scre2_cont strong{font-size: 26px;}
    .bus_page_scre3 .container{padding-bottom: 190px;}
    #business .screen5{margin-bottom: 30px;}
    .prodList .screen2 .mid > div:nth-child(1) span{font-size: 1.25rem;}
    .prod_use .screen2 .container .step{display: none;}
    .imageInfo .right .box .product_name_cn{font-size: 16px;}
    .imageInfo .right .box .product_name_en{font-size: 13px;margin-bottom: 12px;}
    .imageInfo .right .box .title{font-size: 14px;}
    .imageInfo .right .box .cont{font-size: 12px;margin-bottom: 12px;}
    .R_D .con_title{margin-bottom: 0;}
    .R_D .screen2 .text_right{margin-bottom: 0;}
    .R_D .screen3 span{height: 48px;}
    .R_D .screen3{padding: 20px 0;}
    .R_D .screen2 .trans{margin-bottom: 0;}
    .R_D .customized{margin-bottom: 20px;}
    .new_recom>div{display: none;}
}

@media (min-width: 1200px) {
    .pc_nav .logo_box{
        font-size: 60px!important;
        left: 49%!important;
    }
}

.banner_sty .banner_img{position: relative;}
.banner_sty .banner_img:after{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;background-color: rgba(0,0,0,0.15);}