/*//////////////////////////////////////////////////////////////////
[ FONT ]*/
@font-face {
  font-family: Roboto-Regular;
    src: url('../fonts/roboto-regular.ttf'); 
}

@font-face {
  font-family: Roboto-Bold;
    src: url('../fonts/roboto-bold.ttf'); 
}

@font-face {
  font-family: Roboto-Black;
    src: url('../fonts/roboto-black.ttf'); 
}

@font-face {
  font-family: SourceSansPro-Regular;
    src: url('../fonts/sourcesanspro-regular.ttf'); 
}

@font-face {
  font-family: OpenSans-Regular;
    src: url('../fonts/opensans-regular.ttf'); 
}

@font-face {
  font-family: OpenSans-Bold;
    src: url('../fonts/opensans-bold.ttf'); 
}

@font-face {
  font-family: DroidSerif-Bold;
    src: url('../fonts/droidserif-bold.ttf'); 
}
body{color: #000;}



/*//////////////////////////////////////////////////////////////////

/*
[ Header ]*/

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
[ Header Desktop ]*/

.container-menu-desktop {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}


/*//////////////////////////////////////////////////////////////////
[ Header ]*/

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
[ Header Desktop ]*/

.container-menu-desktop {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

img{max-width: 100%}
/*==================================================================
[ Top bar ]*/
.top-bar {
  height: 45px;
}

.content-topbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  justify-content: space-between;
  align-items: center;
}
.left-top-bar{
  font-size: 16px;
  color: white;
}

.right-top-bar > span > i {
  font-size: 15px;
  color: white;
  vertical-align: middle;
  margin-left: 25px;
}

.right-top-bar > span > span {
  font-family: Roboto-Regular;
  font-size: 16px;
  line-height: 15px;
  color: white;
  vertical-align: middle;
  margin-left: 5px;
}

.topbar-mobile .right-top-bar > span > i {
  font-size: 15px;
  color: #555555;
  vertical-align: middle;
  margin-left: 20px;
}

.topbar-mobile .right-top-bar > span > span {
  font-family: Roboto-Regular;
  font-size: 16px;
  line-height: 30px;
  color: #555555;
  vertical-align: middle;
  margin-left: 5px;
}


/*==================================================================
[ Menu ]*/
.wrap-menu-desktop {
  /*position: absolute;*/
  z-index: 1100;
  background-color: white;
  width: 100%;
  height: 101px;
  /*top: 45px;*/
  left: 0; 

  -webkit-transition: height 0.3s;
  -o-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s;
}

.limiter-menu-desktop {
  max-width: 1600px;
  padding: 0 15px;
  height: 100%;position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  align-items: center;
}


/*------------------------------------------------------------------
[ Logo ]*/
.logo {
  display: block;
  position: relative;
  height: 100%;
  flex-grow: 1;
}

.logo img {
  max-width: calc(100% - 20px);
  max-height: 100%;
  position:absolute;
  top: 0; 
  left: 0; 
  bottom: 0;
  margin: auto;
  transition: all 1s;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
}


/*------------------------------------------------------------------
[ Menu ]*/

.menu-desktop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%;
}

.main-menu {
  list-style-type: none;
  margin: 0;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.main-menu > li {
  display: block;
  position: relative;
  padding-top: 20px;  
  padding-bottom: 20px; 
  padding-left: 13px;
  padding-right: 13px;
  -webkit-transition: width 0.5s;
  -moz-transition: width 0.5s;
  transition: width 0.5s;
}

.main-menu > li > a {
  font-family: Roboto-Bold;
  font-size: 16px;
  text-transform: uppercase;
  color: #808080;
  padding: 5px;
}

/*---------------------------------------------*/
.sub-menu {
  list-style-type: none;
  position: absolute;
  top:0;
  left:100%;
  min-width: 100px;max-height: 600px;overflow-y:auto;overflow-x:hidden;
  background-color: white;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;

  box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);

  visibility: hidden;
  opacity: 0; 
}

.sub-menu li {
  position: relative;
  background-color: #f2f2f2;
  border-top: 1px solid #e0e0e0;

  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.main-menu > li > .sub-menu {
  top:100%;
  left: 0;z-index: 999;
}

.sub-menu a {
  font-family: Roboto-Regular;
  font-size: 14px;
  line-height: 1.5;
  color: #808080;

  display: block;
  padding: 10px 10px 10px 20px;
  width: 100%;
}

/*---------------------------------------------*/
.main-menu > li:hover > a {
  color: #555555;
  text-decoration: none;
}

.main-menu > li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}

.sub-menu li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
} 

.sub-menu li:hover {
  background-color: white;
}

.sub-menu > li:hover > a {
  color: #555555;
  text-decoration: none;
}

@media (max-width: 1300px) {
  .main-menu > .respon-sub-menu .sub-menu {
    right: 100%;
    left: auto;
  }

  .main-menu > .respon-sub-menu > .sub-menu {
    right: 0px;
    left: auto;
  }
}

/*---------------------------------------------*/
.main-menu > li::before {
  content: "";
  display: block;
  position: absolute;
  height: 3px;
  border-radius: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4px;
  width: 0;
  background-color: #72C900;

  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.main-menu > li:hover:before {
  width: calc(100% - 36px);
}


/*==================================================================
[ Fixed menu desktop ]*/

.fix-menu-desktop {
  height: 110px;
}

.fix-menu-desktop .wrap-menu-desktop {
  top: 0;
  height: 65px;
  position: fixed;
  box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
}



/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
[ Header Mobile ]*/
.wrap-header-mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  background-color: white;
  padding: 15px;
  display: none;

  box-shadow: 0 0px 4px 0px rgba(153,153,153,0.3);
  -moz-box-shadow: 0 0px 4px 0px rgba(153,153,153,0.3);
  -webkit-box-shadow: 0 0px 4px 0px rgba(153,153,153,0.3);
  -o-box-shadow: 0 0px 4px 0px rgba(153,153,153,0.3);
  -ms-box-shadow: 0 0px 4px 0px rgba(153,153,153,0.3); 
}

/*------------------------------------------------------------------
[ Logo mobile ]*/
.logo-mobile {
  display: block;
  padding-right: 25px;
}

.logo-mobile img {
  max-width: 100%;
  max-height: 60px;
}


/*------------------------------------------------------------------
[ btn show menu ]*/
.hamburger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 0;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  transform: scale(0.7);
}

.hamburger:hover {
  opacity: 1;
}

/*---------------------------------------------*/
@media (max-width: 992px){
  .wrap-header-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .container-menu-desktop {display: none;}
}

/*==================================================================
[ Menu mobile ]*/
.menu-mobile {
  width: 100%;
  background-color: white;
  display: none;
  border-top: 1px solid #ececec;
}

.main-menu-m {
  padding-top: 10px;
  padding-bottom: 10px;
}

.main-menu-m > li > a {
  font-family: Roboto-Regular;
  font-size: 18px;
  color: white;
  line-height: 2.86;
  text-transform: uppercase;
  padding-left: 20px;
}

.main-menu-m > li {
  color: white;
  position: relative;
}

.arrow-main-menu-m {
  font-size: 23px;
  color: #fff;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  top: 3px;
  padding: 10px;
  cursor: pointer;
}

.arrow-main-menu-m i {
  transform-origin: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.turn-arrow-main-menu-m i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

/*---------------------------------------------*/
.sub-menu-m {
  background-color: #fff;
  padding: 10px 15px 10px 32px;
  display: none;
}

.sub-menu-m a {
  font-family: Roboto-Regular;
  font-size: 15px;
  color: #808080;
  line-height: 2.5;
}

.sub-menu-m a:hover {
  text-decoration: none;
  color: #555555;
}

@media (min-width: 992px){
  .menu-mobile {
    display: none;
  }
}

/*//////////////////////////////////////////////////////////////////
[ BACK TO TOP ]*/
.btn-back-to-top {
  display: none;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 40px;
  right: 40px;
  background-color: black;
  opacity: 0.5;
  justify-content: center;
  align-items: center;
  z-index: 1150;
  border-radius: 4px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
  font-size: 22px;
  color: white;
  line-height: 1em;
}

.btn-back-to-top:hover {
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 576px) {
  .btn-back-to-top {
    bottom: 125px;
    right: 15px;
  }
}

/*//////////////////////////////////////////////////////////////////
[ Alert validate ]*/
/*banner////////////////////////////////////*/
/* ------------------------------- 3. Slider Styles ------------------------------- */

#fwslider {
    position: relative;
    width:100%;margin-bottom: 0px;
}
#fwslider .slide {
    display: none;
    position: absolute;
    top:0;
    left:0;
    z-index: 0;
    width:100%;
}
#fwslider .slide img {
    width:100%;
}
#fwslider .slidePrev {
    position: absolute;
    top:50%;
    left:-50px;   
    z-index: 10;
}
#fwslider .slidePrev span {
  background-image: url("../images/sliderarrows.png");
  width: 60px;
  height: 60px;
  float: left;
  background-position: 13px 0px;
  background-repeat: no-repeat;
  cursor: pointer;
}
#fwslider .slideNext {
    position: absolute;
    top:50%;
    right:-50px;  
    z-index: 10;
}
#fwslider .slideNext span {
   background-image: url("../images/sliderarrows.png");
  width: 60px;
  height: 60px;
  float: left;
  background-position: -70px 0px;
  background-repeat: no-repeat;
  cursor: pointer;
}
#fwslider .timers {
    height:4px;
    position: absolute;
    bottom:15px;
    right:0;
    z-index: 3;
}
.slide-btns{
  margin-top: 0.5em;
}
.slide-btns ul li{
  display:inline-block;
  margin-right: 1em;
}
.slide-btns ul li a{
  color: #FFF;
  font-size: 0.72em;
  text-transform: uppercase;
  border:solid 2px #FFF;
  border-radius: 5px;
  padding: 0.8em 1.2em;
  transition:0.5s all;
  -webkit-transition:0.5s all;
  -moz-transition:0.5s all;
  -o-transition:0.5s all;
  display: block;
}
.slide-btns ul li a:hover{
  background:#1DD2AF;
  border:solid 2px #1DD2AF;
}
#fwslider .timer {
    height:4px;
    width:40px;
    background-color: #fff;
    float:left;
    margin-right: 10px;
}
#fwslider .progress {
    height:4px;
    width:0%;
    background-color:#2C3E50;
    float:left;
}

#fwslider .title {  /* Slider Title Style */
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-size:5em;
  padding:5px 20px 0;
  font-style: normal;
  font-weight: 400;
  border:none;
  text-align:left;
}
#fwslider .description { /* Slider Description Style */
  font-family: 'Roboto', sans-serif;
    opacity: 0;
    color:#ffffff;
    font-size: 2.5em;
    padding:0px 0 1em;
    clear:both;
    text-align:left;
    margin-left: 2%;
}
/* ------------------------------- 5. Media Query Max Width 719 ------------------------------- */
@media only screen and (max-width:1366px) {
    
    #fwslider .timers { display:none; }
  #fwslider .title {
    font-size: 4em;
    padding: 141px 56px 0;
  }
  #fwslider .description {
    padding: 0px 0.9em 1em;
  }
}
@media only screen and (max-width: 1280px){
    #fwslider .timers { display:none; }
  #fwslider .title {
    font-size: 3em;
    padding: 141px 100px 0;
  }
  #fwslider .description {
    font-size: 2em;
    margin-left: 6%;
  }
}
@media only screen and (max-width: 1024px){
   
    #fwslider .timers { display:none; }
   
  #fwslider .title {
    font-size: 3em;
    padding: 100px 100px 0;
  }
}
@media only screen and (max-width:768px){
   #fwslider .title { font-size:2em; }
     #fwslider .description { /*-- font-size:12px;--*/font-size:1em;margin-left: 11%;}
}
@media only screen and (max-width:640px){
   #fwslider .title { font-size:1.8em; }
     #fwslider .description { /*-- font-size:12px;--*/font-size: 0.875em;
  margin-left: 16%;
  padding: 0.5em 0 0.2em;
}
#fwslider .title {
    padding: 50px 100px 0;
}
}
@media only screen and (max-width:480px){
   #fwslider .title { font-size:1.6em; }
     #fwslider .description { 
      font-size: 0.875em;
    padding: 0.5em 0 0.2em;
    width: 70%;
    margin-left: 22%;
    }
  
}
@media only screen and (max-width:320px){
   #fwslider .title { font-size: 1.2em; }
     #fwslider .description { 
      font-size: 0.8em;
    padding: 0.5em 0 0.2em;
    width: 90%;
    margin-left: 18%;
    }
  
  #fwslider .slideNext span,#fwslider .slidePrev span{
    display:none;
  }
  .slide-btns ul li a {
    color: #FFF;
    font-size: 0.72em;
    text-transform: uppercase;
    border: solid 1px #FFF;
    padding: 0.7em 0.8em;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    display: block;
  }
  .sb-search-input {
      font-size: 12px;
  }
  #fwslider .title {
    padding: 50px 56px 0;
    font-size: 1em;
  }
}
/*//////////////////////////////////////////////*/
/*start search*/
.sb-search {
  position: absolute;
  /*top:-12px;*/
  right:0px;
  width: 0%;
  min-width: 45px;
  font-family: 'Roboto', sans-serif;
  height: 42px;
  float: right;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  transition: width 0.3s;
  -webkit-backface-visibility: hidden;
}
.sb-search-input {
  position: absolute;
  top: 0;
  left: -5px;
  border: none;
  outline: none;
  background: #73C900;
  width: 100%;
  height: 46px;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  z-index: 10;
  padding: 5px 20px;
  font-size: 13px;
  color: #ffffff;
}
.sb-search-input::-webkit-input-placeholder {
  color: #ffffff;
}
.sb-search-input:-moz-placeholder {
  color: #ffffff;
}
.sb-search-input::-moz-placeholder {
  color: #fff;
}
.sb-search-input:-ms-input-placeholder {
  color: #ffffff;
}
.sb-icon-search,.sb-search-submit  {
  width: 45px;
  height: 45px;
  display: block;
  position: absolute;
  right: 5px;
  top: -3px;
  padding: 0;
  margin: 0;
  line-height: 45px;
  text-align: center;
  cursor: pointer;
}
.sb-search-submit {
  background: #fff; /* IE needs this */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
    filter: alpha(opacity=0); /* IE 5-7 */
    opacity: 0;
  color: transparent;
  border: none;
  outline: none;
  z-index: -1;
  -webkit-appearance: none;
}
.sb-icon-search {
  color: #fff;
  background: #fff url('../images/fdj_03.png') no-repeat 13px 13px;
  z-index: 90;
}
/* Open state */
.sb-search.sb-search-open,.no-js .sb-search {
  width: 20%;
}
.sb-search.sb-search-open .sb-icon-search,.no-js .sb-search .sb-icon-search {
  background: #fff url('../images/fdj_03.png') no-repeat 13px 13px;
  color: #fff;
  z-index: 11;
}
.sb-search.sb-search-open .sb-search-submit,.no-js .sb-search .sb-search-submit {
  z-index: 90;
}
/*search end*/
/*语言切换*/
.leange{width: 90px;margin: 0 20px;overflow: hidden; height: 28px;font-size: 16px;border-radius: 30px;border: 1px solid #ccc;}
.leange div{width: 50%;text-align: center;line-height: 27px;float: left;color: #000;}
.leange .check{background: #73CA00;color: #fff;}
.leange:hover div{background: #73CA00;color: #fff;}
.leange:hover .check{background: #fff;color: #000;}
/*登录按钮*/
.sign{min-width: 140px;height: 36px;color: #000;margin-right: 40px;}
.sign .login{width: 65px;height: 34px;float: left;}
.sign .singin{width: 65px;height: 34px;float: right;}
.sign div{border: 1px solid #73CA00;text-align: center;line-height: 34px;font-size: 12px;color: #73CA00}
.sign div:hover{color: #fff;background: #73CA00;}
.loginp{font-size: 16px;line-height: 36px;}
.loginp a:hover{color: red}
/*导航栏适配*/
/*下滑样式*/

.fix-menu-desktop .main-menu > li > a{font-size: 14px;}
.fix-menu-desktop .sign div{font-size: 12px;}
.fix-menu-desktop .leange{font-size: 14px;}

@media only screen and (max-width:1300px){
   .main-menu > li{padding: 20px 10px;}
   .loginp{font-size: 14px;line-height: 36px;}
   .loginp a:hover{color: red}
}

@media only screen and (max-width:1224px){
   .main-menu > li > a{font-size: 14px;}
   .sign div{font-size: 14px;}
   .leange{font-size: 14px;}
}

@media only screen and (max-width:1150px){
   .main-menu > li > a{font-size: 14px;}
   .leange{font-size: 14px;width: 70px;margin: 0 10px;}
   .sign{width: 95px;}
   .sign div{font-size: 14px;}
   .main-menu > li{padding: 20px 6px;}
   .sign .login{width: 45px;height: 32px;line-height: 32px;}
   .sign .singin{width: 45px;height: 32px;line-height: 32px;}
   .sb-search{top: 26px;}
   .fix-menu-desktop .sb-search{top: 11px;}
}

@media only screen and (max-width:768px){
  .sign{width: 100%;height: 36px;color: #000;margin-right: 40px;}
  .sign .login{width: 75px;height: 34px;float: left;}
  .sign .singin{width: 75px;height: 34px;float: right;}
  #c_n1{display: none;}
}

/*----------------------首页通用--------------------------*/
.bodywarp{background: #EFF5F5;padding-bottom: 80px;}
.globaltitle{margin: 50px auto 40px auto;text-align: center;}
.globaltitle h3{font-size: 28px;font-family: 'Arial','简-黑体';margin-bottom: 4px;font-weight: 700;}
.globaltitle p{font-size: 16px;color: #AAAAAA;text-transform:uppercase;}
.globaltitle span{display: block; width: 66px;height: 0px;border: 1px solid #AAAAAA;margin: 16px auto 0 auto;}

/*----------------------首页通用--------------------------*/

/*首页技术*/
.Tec .Tec_des{overflow: hidden;background: #fff; z-index: 1; position: relative; width: 20%;padding: 35px 0;item-align:center;float: left;border-right:1px solid #dddddd;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.Tec .Tec_des:last-child{border: none;}
.Tec .Tec_des > div{margin: 0 auto;padding: 0 15px;}
.Tec .Tec_des > div div[class*="Tec-bg"]{float: left; width: 60px;margin: -3px 6% 0 10.42%; height: 60px;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.Tec .Tec_des #Tec-bg5{margin: -3px 6% 0 10.78%;}
.pt13{padding-top: 13px;}
.Tec .Tec_des > div p:nth-child(2){font-size: 18px;margin: 4px 0 4px 0;z-index: 999;}
.Tec .Tec_des > div p:nth-child(3){font-size: 14px;color: #939393}
.Tec .Tec_des > div p{
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.Tec .Tec_des::before{
  display: block;
  width: 100%;height: 100%;
  position: absolute;top: -100%;left: 0px;
  background-color: #73CA00;
  content: '';
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  z-index: -1;
}
.Tec .Tec_des:hover::before{
  top: 0;
}
.Tec .Tec_des::after{
  display: block;
  width: 100%;height: 3%;
  position: absolute;bottom: 0;left: -100%;
  background-color: #FFC700;
  content: '';
  animation-delay:2s;
  -webkit-animation-delay:2s; 
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  z-index: -1;
}
.Tec .Tec_des:hover::after{
  -webkit-animation:mymove .5s forwards;
  -webkit-animation-delay:.3s;
}
@keyframes mymove
  {
    from {left:-100%;}
    to {left:0;}
  }
.Tec .Tec_des:hover p{color: #fff;}
.Tec .Tec_des:hover p:nth-child(3){color: #fff}
.Tec .Tec_des .Tec-bg1{background: url(../images/images/1-1.png)no-repeat center;background-size: 84%}
.Tec .Tec_des:hover .Tec-bg1{background: url(../images/images/1-2.png)no-repeat center;background-size: 84%}
.Tec .Tec_des .Tec-bg2{background: url(../images/images/2-1.png)no-repeat center;background-size: 84%}
.Tec .Tec_des:hover .Tec-bg2{background: url(../images/images/2-2.png)no-repeat center;background-size: 84%}
.Tec .Tec_des .Tec-bg3{background: url(../images/images/3-1.png)no-repeat center;background-size: 84%}
.Tec .Tec_des:hover .Tec-bg3{background: url(../images/images/3-2.png)no-repeat center;background-size: 84%}
.Tec .Tec_des .Tec-bg4{background: url(../images/images/4-1.png)no-repeat center;background-size: 84%}
.Tec .Tec_des:hover .Tec-bg4{background: url(../images/images/4-2.png)no-repeat center;background-size: 84%}
.Tec .Tec_des .Tec-bg5{background: url(../images/images/5-1.png)no-repeat center;background-size: 84%}
.Tec .Tec_des:hover .Tec-bg5{background: url(../images/images/5-2.png)no-repeat center;background-size: 84%}

@media only screen and (max-width:1870px){
   /*.Tec .Tec_des #Tec-bg5{margin: -3px 6% 0 2%;}*/
   .Tec .Tec_des{width: 19%}
   .Tec .Tec_des:last-child{width: 24%}
}
@media only screen and (max-width:1570px){
   .Tec .Tec_des > div div[class*="Tec-bg"]{margin: -3px 2% 0 4%;}
   .Tec .Tec_des #Tec-bg5{margin: -3px 6% 0 4%;}
   .Tec .Tec_des > div p:nth-child(2){font-size: 16px;padding-top: 13px;}
}
@media only screen and (max-width:1455px){
   .Tec .Tec_des{padding: 25px 0;}
   .Tec .Tec_des:nth-child(1){width: 16%}
   .Tec .Tec_des:nth-child(2){width: 21%}
   .Tec .Tec_des:nth-child(3){width: 16%}
   .Tec .Tec_des:nth-child(4){width: 21%}
   .Tec .Tec_des:last-child{width: 26%}
   .Tec .Tec_des > div div[class*="Tec-bg"]{margin: -3px 2% 0 0%;}
   .Tec .Tec_des #Tec-bg5{margin: -3px 2% 0 0%;}
}
@media only screen and (max-width:1400px){
   .Tec .Tec_des{padding: 15px 0;}
   .Tec .Tec_des:nth-child(1){width: 17%}
   .Tec .Tec_des:nth-child(2){width: 21%}
   .Tec .Tec_des:nth-child(3){width: 17%}
   .Tec .Tec_des:nth-child(4){width: 18%}
   .Tec .Tec_des:last-child{width: 27%}
   .Tec .Tec_des > div div[class*="Tec-bg"]{margin: 5px 2% 0 0%;width: 40px;height: 40px;}
   .Tec .Tec_des > div p:nth-child(2){font-size: 16px;}
   .Tec .Tec_des #Tec-bg5{margin: 5px 2% 0 0%;}
}
@media only screen and (max-width:1130px){
   .Tec .Tec_des{padding: 15px 0;border-bottom: 1px solid #ddd}
   .Tec .Tec_des:nth-child(1){width: 33%;}
   .Tec .Tec_des:nth-child(2){width: 34%;}
   .Tec .Tec_des:nth-child(3){width: 33%;border-right: none;}
   .Tec .Tec_des:nth-child(4){width: 50%}
   .Tec .Tec_des:last-child{width: 50%;border-bottom: 1px solid #ddd}
   .Tec .Tec_des > div div[class*="Tec-bg"]{margin: 5px 2% 0 6%;width: 40px;height: 40px;}
   .Tec .Tec_des > div p:nth-child(2){font-size: 16px;}
   .Tec .Tec_des #Tec-bg4{margin: 5px 2% 0 12%;}
   .Tec .Tec_des #Tec-bg5{margin: 5px 2% 0 12%;}
}
@media only screen and (max-width:745px){
   .Tec .Tec_des{padding: 15px 0;border-bottom: 1px solid #ddd}
   .Tec .Tec_des:nth-child(1){width: 50%;}
   .Tec .Tec_des:nth-child(2){width: 50%;border-right: none;}
   .Tec .Tec_des:nth-child(3){width: 50%;border-right: 1px solid #ddd}
   .Tec .Tec_des:nth-child(4){width: 50%}
   .Tec .Tec_des:last-child{width: 100%;border-bottom: 1px solid #ddd}
   .Tec .Tec_des > div div[class*="Tec-bg"]{margin: 5px 2% 0 6%;width: 40px;height: 40px;}
   .Tec .Tec_des > div p:nth-child(2){font-size: 16px;}
   .Tec .Tec_des #Tec-bg5{margin: 5px 2% 0 3%;}
}
@media only screen and (max-width:500px){
   .Tec .Tec_des:nth-child(1){width: 45%;}
   .Tec .Tec_des:nth-child(2){width: 55%;}
   .Tec .Tec_des:nth-child(3){width: 45%;}
   .Tec .Tec_des:nth-child(4){width: 55%}
   .Tec .Tec_des > div div[class*="Tec-bg"]{margin: 5px 2% 0 0%;}
   .Tec .Tec_des #Tec-bg5{margin: 5px 2% 0 0%;}
}
@media only screen and (max-width:450px){
   .Tec .Tec_des:nth-child(1){width: 100%;border-right: none;}
   .Tec .Tec_des:nth-child(2){width: 100%;border-right: none;}
   .Tec .Tec_des:nth-child(3){width: 100%;border-right: none;}
   .Tec .Tec_des:nth-child(4){width: 100%;border-right: none;}
   .Tec .Tec_des > div div[class*="Tec-bg"]{margin: 5px 6% 0 0%;}
   .Tec .Tec_des #Tec-bg5{margin: 5px 6% 0 0%;}
}

/*产品中心*/
.examples .fa{font-size: 55px;}
.carousel.flexible .items {
    display: none;
  }
.carousel-example {
  padding: 0px 0 50px 0;
}  
.carousel-control {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  font-size: 30px;
  text-align: center;
  opacity: 1;
}

a.carousel-control.left,
a.carousel-control.right {
  background-image: none;
  opacity: 1;
  text-align: center;
}

/*产品动画*/
figure {
  margin: 0;
  position: relative;
  text-align:center;
}

figure img {
  width: 100%;
  display: block;
  position: relative;
}

figcaption {
  position: absolute;
  top: 0;
  left: 0;
  background: #72C900;
  color: #fff;
}

figcaption h3 {
  margin: 40px 0 5px;
  padding: 0;
  color: #fff;
  font-size:20px;
  line-height:18px;
}
figcaption h3 a {
  color:#fff;
}

figcaption .meta-box {
  color:#fff;
}
figcaption span a {
  font-size:14px;
  color:#fff;
}
figcaption span a:hover {
  color:#fff;
}

figcaption footer {
  position:absolute;
  bottom: 30px;
  text-align:center;
  width:100%;
}
figcaption a.link-gallery,
figcaption a.link-p-detail {
  padding: 6px 10px;
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  min-width: 60px;
  border: 2px solid #FFF;
  color: #FFF;
  margin-right: 13px;
}

figure img {
  z-index: 10;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
}

 figure:hover img,
 figure.cs-hover img {
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  -ms-transform: scale(0.4);
  transform: scale(0.4);
}

figcaption {
  height: 100%;
  width: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  -moz-transition: -moz-transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
}

figure:hover figcaption,
figure.cs-hover figcaption {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  filter: alpha(opacity=100);
}
#nivo-lightbox-demo a {
  padding: 8px 20px;
  border: 2px solid #ffffff;
  border-radius: 2em;
  color: #fff;
}

/*首页关于我们*/
/*左侧*/
.company_global{background: #fff;}
.company_global img{width: 100%;}
.company_global .company_img{padding: 0px;position: relative;}
.company_global .company_flex{
  position: absolute;
  bottom: 0px;left: 0px; 
  width: 100%;height: 100%;
  display: -webkit-flex;
  display: flex;
}
.company_history,.company_culture,.company_partenner{
  width: 33.3333333%;padding: 25px 0 20px 25px;float: left;
  background: rgba(255,255,255,.8);
  overflow: hidden;position: relative;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  z-index: 12;
}
.company_history h3,.company_culture h3,.company_partenner h3{
  font-size: 18px;margin-bottom: 5px;color: #000;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.company_history p,.company_culture p,.company_partenner p{
  font-size: 14px;color: #666666;font-weight: lighter;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.company_history div{
  width: 48px;height: 42px;float: left;margin-right: 10px;
  background: url(../images/2-1.png)no-repeat center center;
}
.company_history:hover div{
  background: url(../images/2-2.png)no-repeat center center;
}
.company_culture div{
  width: 48px;height: 42px;float: left;margin-right: 10px;
  background: url(../images/3-1.png)no-repeat center center;
}  
.company_culture:hover div{
  background: url(../images/3-2.png)no-repeat center center;
} 
.company_partenner div{
  width: 48px;height: 42px;float: left;margin-right: 10px;
  background: url(../images/6-1.png)no-repeat center center;
}  
.company_partenner:hover div{
  background: url(../images/6-2.png)no-repeat center center;
} 
.company_history::before,.company_culture::before,.company_partenner::before{
  display: block;
  width: 100%;height: 100%;
  position: absolute;top: -100%;left: 0px;
  background-color: #73CA00;
  content: '';
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  z-index: -1;
}
.company_history:hover::before,.company_culture:hover::before,.company_partenner:hover::before{
  top: 0;
} 
.company_history:hover,.company_culture:hover,.company_partenner:hover{
  padding-bottom: 35px;
  color: #fff;
} 
.company_history:hover h3,.company_culture:hover h3,.company_partenner:hover h3{
  color: #fff;
}
.company_history:hover p,.company_culture:hover p,.company_partenner:hover p{
  color: #fff;
}
.company_history::after,.company_culture::after,.company_partenner::after{
  display: block;
  width: 100%;height: 3px;
  position: absolute;bottom: 0;left: -100%;
  background-color: #FFC600;
  content: '';
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  z-index: -1;
}
.company_history:hover::after,.company_culture:hover::after,.company_partenner:hover::after{
  left: 0;
} 

/*右侧*/
.company_global .company_title{padding: 50px 0px 0 0;margin-right: 40px;}
.company_global .company_title h3{font-size: 20px;}
.company_title em{
  display: block;width: 30px;height: 0px;
  border: 2px solid #73CA00;margin: 15px 0 25px 0;
}
.company_info p:last-child{display: none;}
.company_info{
  line-height: 30px;color: #555555;
  margin-bottom: 35px;
}
.company_honor_title{
  width: 49%;margin:  0 1% 1% 0;
  padding: 10px 0;text-align: center;
  float: left;background: #EFF5F5;color: #555555;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.company_honor_title:hover{
  background: #73C900;color: #fff;
}

@media only screen and (max-width:1659px){
    .company_history,.company_culture,.company_partenner{
        padding: 25px 0 20px 15px;
    }
    .company_global .company_title{padding: 20px 0px 0 0;}
    .company_global .company_title h3{
      font-size: 24px;
    }
    .company_info p:first-child{display: none;}
    .company_info p:last-child{display: block;}
}
@media only screen and (max-width:1439px){
    .company_global img{width: 100%;}
    .company_history h3,.company_culture h3,.company_partenner h3{
      font-size: 16px;
    }
    .company_history p,.company_culture p,.company_partenner p{
      font-size: 12px;
    }
    .company_history div,.company_culture div,.company_partenner div{
      width: 36px;height: 30px;
      background-size: 100%;
    }
    .company_honor_s{
      display: none;
    }
}
@media only screen and (max-width:1199px){
    .company_flex span{
        display: none;
    }
    .company_global .company_title h3{
      font-size: 20px;
    }
    .company_title em{
      margin: 10px 0;
    }
    .company_info{
      font-size: 14px;line-height: 27px;margin-bottom: 16px;
    }
    .company_honor_h{
      font-size: 14px;
    }
    .company_honor_title{text-align: center;text-indent: 0px;}
    .company_honor_s{
      display: none;
    }
}
@media only screen and (max-width:991px){
    .company_history,.company_culture,.company_partenner{
        padding: 25px 0 20px 35px;
    }
    .company_history h3,.company_culture h3,.company_partenner h3{
      font-size: 18px;
    }
    .company_history p,.company_culture p,.company_partenner p{
      font-size: 14px;
    }
    .company_history div,.company_culture div,.company_partenner div{
      width: 48px;height: 42px;
      background-size: 100%;
    }
    .company_flex span{
        display: inline-block;
    }
    .company_global .company_title{
      margin-right: 0px;
      padding: 30px 20px;
    }
    .company_title em{
      margin: 15px 0 25px 0;
    }
    .company_info{
      font-size: 16px;line-height: 30px;margin-bottom: 35px;
    }
    .company_info p:first-child{display: block;}
    .company_info p:last-child{display: none;}
    .company_honor_h{
      font-size: 16px;
    }
    .company_honor_s{
      display: block;
    }
}
@media only screen and (max-width:716px){
    .company_history,.company_culture,.company_partenner{
        padding: 25px 0 20px 15px;
    }
}
@media only screen and (max-width:656px){
    .company_history h3,.company_culture h3,.company_partenner h3{
      font-size: 16px;
    }
    .company_history p,.company_culture p,.company_partenner p{
      font-size: 12px;
    }
    .company_history div,.company_culture div,.company_partenner div{
      width: 36px;height: 30px;
      background-size: 100%;
    }
}
@media only screen and (max-width:563px){
    .company_flex span{
        display: none;
    }
    .company_honor_h{
      font-size: 14px;
    }
    .company_honor_s{
      font-size: 14px;
    }
}
@media only screen and (max-width:475px){
    .company_honor_title{
      width: 100%;text-indent: 0px;text-align: center;
    }
}
@media only screen and (max-width:433px){
    .company_history,.company_culture,.company_partenner{
        padding: 15px 0 10px 0px;
    }
    .company_global .company_flex h3 ,.company_global .company_flex p{
      text-align: center;
    }
    .company_history div,.company_culture div,.company_partenner div{
      display: none;
    }
}

/*--------------------------解决方案--------------------------------*/
.nav-tabs{
  display: block;border: none;display: flex;justify-content:center;flex-wrap:wrap;
}
.nav-tabs > li > a{
  border-radius: 0px;
}
.nav-tabs ul{}
.case > li.active > a, .case > li.active > a:hover, .case > li.active > a:focus{
  background: #73C900;border: none;border-radius: 0px;
  color: #fff;text-align: center;
  border-right: 3px solid #FFC600;
}
.case > li > a{
  background: #fff;color: #000;margin-bottom: 10px;
  border: none;
  border-right: 3px solid #fff;
  margin-right: 0px;text-align: center;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  padding: 31.6px 15px;
}
.case > li > a:hover{
  background: #73C900;color: #fff;
  border-right: 3px solid #FFC600;
}
.tab-pane{position: relative;}
.tab-pane:hover img{
  transform:scale(1.1);
  -webkit-transform:scale(1.1);  /*兼容-webkit-引擎浏览器*/
  -moz-transform:scale(1.1);
}
.tab-pane img{max-width: 100%;height: 370px;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.tabbable .tab-content{background: none;}
.tab-pane{overflow: hidden;}
.tab-pane div{position: absolute;
  background: rgba(136,193,2,.6);width: 100%;padding: 20px 0;
  text-align: center;left: 0px;bottom: 0px;color: #fff;
}
.tab-pane div p{margin: 0px;line-height: 24px;}
.tab-pane div p:last-child{font-size: 14px;}
.tabbable .newmore{display: none;padding: 8px 15px;color: #666666;margin: 20px auto;
  text-align: center;background: #73CA00;color: #fff;
}

@media only screen and (max-width:1199px){
  .tab-pane img{max-width: 100%;height: auto;}
  .case > li > a{padding: 18.3px 15px;}
  .nav-tabs > li{padding-left: 0px;padding-right: 5px;}
  .tab-pane div{padding: 10px 0}
}
@media only screen and (max-width:991px){
  .nav-tabs{padding-right: 0px;}
}

@media only screen and (max-width:768px){
  .tab-content{padding: 0px;}
  .case > li > a{padding: 10px 15px;}
  .nav-tabs > li{padding:0;}
  .tab-pane div{padding: 10px 0}
  .tabbable .newmore{display: block;}
  .bodywarp{padding-bottom: 20px;}
}


/*--------------------------新闻资讯--------------------------------*/
.solu1{
  margin: 50px auto;
}
.solu1 img{
  max-width: 100%;
  height: 284px;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.newtit{
  padding: 50px 30px;background: #fff;
  height: 284px;
}
.newlist{
  padding: 0px;
}
.newimg{
  height: 100%;overflow: hidden;
  width: 100%;
}
.newlist p{
  margin-bottom: 5px;
}
.newtit,.newimg{
  width: 50%;text-align: center;
  position: relative;
}
.newtit p:first-child{
  font-size: 14px;color: #666666;
}
.newtit p:nth-child(2){
  display: -webkit-box;
  -webkit-line-clamp:1;
  -webkit-box-orient:vertical;overflow: hidden;
  font-size: 18px;color: #72C900;margin-bottom: 10px;
}
.newtit p:nth-child(3){
  font-size: 15px;line-height: 24px;
  color: #666666;margin-bottom: 20px;
  text-align: left;
}
/*.newtit p:nth-child(2) span{
    display: none;
  }*/
.newtit .newmore{
  padding: 8px 15px;color: #666666;margin: 20px auto;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;border: 1px solid #AAAAAA;font-size: 15px;
}
.newlist:hover img{
  transform:scale(1.1);
  -webkit-transform:scale(1.1);  /*兼容-webkit-引擎浏览器*/
  -moz-transform:scale(1.1);
}
.newlist:hover .newmore{
  border-radius: 20px;border: 1px solid #72C900;
  background: #72C900;color: #fff;
}
.newtit:after{
  display: block;
  content: '';
  width: 15px;height: 30px;top: 50%;margin-top: -15px;
  position: absolute;right: -15px;z-index: 999;
  background: url(../images/arrow.png)no-repeat center;
}
.newlist:nth-child(3) .newtit{float: right;}
.newlist:nth-child(3) .newimg{float: left;}
.newlist:nth-child(3) .newtit:after{
  display: block;
  content: '';
  width: 15px;height: 30px;top: 50%;margin-top: -15px;
  position: absolute;left: -15px;z-index: 999;
  background: url(../images/arrow1.png)no-repeat center;
}
.newlist:nth-child(4) .newtit{float: right;}
.newlist:nth-child(4) .newimg{float: left;}
.newlist:nth-child(4) .newtit:after{
  display: block;
  content: '';
  width: 15px;height: 30px;top: 50%;margin-top: -15px;
  position: absolute;left: -15px;z-index: 999;
  background: url(../images/arrow1.png)no-repeat center;
}
@media only screen and (max-width:1659px){
    .newtit p:nth-child(3) span{
      display: none;
    }
    .newtit p:nth-child(3){
      margin-bottom: 30px;
    }
}
@media only screen and (max-width:1439px){
    /*.newtit p:nth-child(2) span{
      display: none;
    }*/
    .newtit{
      padding: 50px 15px;
    }
}
@media only screen and (max-width:1199px){
    /*.newtit p:nth-child(2) span{
      display: none;
    }*/
    .newtit{
      padding: 30px 15px;
    }
}
@media only screen and (max-width:991px){
    .newlist:nth-child(2n) .newtit{float: right;}
    .newlist:nth-child(2n) .newimg{float: left;}
    .newlist:nth-child(2n) .newtit:after{
      display: block;
      content: '';
      width: 15px;height: 30px;top: 50%;margin-top: -15px;
      position: absolute;left: -15px;z-index: 999;
      background: url(../images/arrow1.png)no-repeat center;
    }
    .newlist:nth-child(3) .newtit{float: left;}
    .newlist:nth-child(3) .newimg{float: right;}
    .newlist:nth-child(3) .newtit:after{
      display: block;
      content: '';
      width: 15px;height: 30px;top: 50%;margin-top: -15px;
      position: absolute;z-index: 999;left: 100%;
      background: url(../images/arrow.png)no-repeat center;
    }
    .newtit{
      padding: 30px 30px;
    }
    .newtit p:nth-child(2) span{
      display: inline;
    }
    .newtit p:nth-child(3) span{
      display: inline;
    }
}
@media only screen and (max-width:749px){
    .newlist:nth-child(3),.newlist:nth-child(4){
      display: none;
    }
    .solu1{
      margin: 0px;
    }
}
@media only screen and (max-width:655px){
   /* .newtit p:nth-child(2) span{
      display: none;
    }*/
    .newtit p:nth-child(3) span{
      display: none;
    }
}
@media only screen and (max-width:530px){
    .newlist{margin-bottom: 20px;}
    .newtit{width: 100%;float: right;height: 100%;}
    .newimg{width: 100%;float: left;}
    .newimg img{width: 100%;height: 100%;}
    .newtit:after{display: none;}
    .newtit{padding-left: 10px;padding-right: 10px;}
    .newlist:nth-child(2n) .newtit:after{display: none;}
   /* .newtit p:nth-child(2) span{
      display: inline;
    }*/
    .newtit p:nth-child(3) span{
      display: inline;
    }
    /*.newtit{padding-right: 0px;padding-left: 0px;}*/
}


/*---------------------------选择我们---------------------------*/
.chooseimg{width: 50%;margin-bottom: 15px;height: 412px;
  background: url(../images/why.png) no-repeat center center;
}
.tabs-basic{
    margin: 30px auto;
    text-align: center;
}

/* The tabs */

.tabs-basic ul{
    list-style: none;
    text-align: left;

    margin: 0;
    padding: 0;
}

.tabs-basic ul li{
    display: inline-block;
    margin-bottom: -1px;
    width: 20%;float: left;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
}
.tabs-basic ul li:last-child{
  border: none;
}

.tabs-basic ul li a{
    display: block;
    text-decoration: none;
    color: #656a6d;
    border-bottom: 0;
    color: #fff;
    padding: 30px 10px 40px 40px;
    border-right:1px solid #fff; 
}
.tabs-basic ul li a p:last-child{font-size: 15px;}

.tabs-basic ul li a div[class*="shuzi"]{
  width: 60px;height: 50px;float: left;
  margin-right: 9px;background-size: 100%;
}
.tabs-basic ul li a .shuzi1{background: url(../images/1.png)no-repeat center center;}
.tabs-basic ul li a .shuzi2{background: url(../images/2.png)no-repeat center center;}
.tabs-basic ul li a .shuzi3{background: url(../images/3.png)no-repeat center center;}
.tabs-basic ul li a .shuzi4{background: url(../images/4.png)no-repeat center center;}
.tabs-basic ul li a .shuzi5{background: url(../images/5.png)no-repeat center center;}
.tabs-basic ul li:first-child{background: url(../images/01.jpg)no-repeat center;}
.tabs-basic ul li:nth-child(2){background: url(../images/02.jpg)no-repeat center;}
.tabs-basic ul li:nth-child(3){background: url(../images/03.jpg)no-repeat center;}
.tabs-basic ul li:nth-child(4){background: url(../images/04.jpg)no-repeat center;}
.tabs-basic ul li:last-child{background: url(../images/05.jpg)no-repeat center;}

.tabs-basic .tab-active {
    background-color: #FFC700;
}

/* The content */

.tabs-basic .tabs-content-placeholder{
    overflow: hidden;height: 412px;
    width: 50%;float: right;
    font-weight: normal;
    background: url(../images/lm_03.png)no-repeat right bottom;
    background-position: 90% 90%;
    background-color: #fff;
    padding: 70px 74px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 15px;
}
.tabs-basic .tabs-content-placeholder h3{
  font-size: 19px;margin-bottom: 15px;line-height: 28px;
}
.tabs-basic .tabs-content-placeholder span{
  line-height: 22px;color: #AAAAAA;
  margin-bottom: 28px;display: block;
}
.tabs-basic .tabs-content-placeholder p{
  font-size: 15px;line-height: 26px;color: #000;
}
.tabs-basic .tabs-content-placeholder a p:hover{
  color: #7FCD00;
}
.tabs-content-placeholder .fwrx{
  display: inline-block;
  padding: 11px 18px;background: #EFF5F5;margin-top: 32px;
}
.tabs-content-placeholder .fwrx img{
  float: left;margin-right: 10px;
}
.tabs-content-placeholder .fwrx p{
  float: left;font-size: 16px;
}
.tabs-basic .tabs-content-placeholder div{
    display: none;
}

.tabs-basic .tabs-content-placeholder div.tab-content-active{
    display: block;
}


@media only screen and (max-width:1659px){
    .tabs-basic ul li a{
      padding: 25px 0 20px 15px;
    }
    .tabs-basic .tabs-content-placeholder{
      padding: 40px 50px;
    }
}

@media only screen and (max-width:1439px){
    .tabs-basic ul li a div[class*="shuzi"]{
      width: 38px;height: 28px;
      margin-top: 10px;
    }
    .tabs-basic .tabs-content-placeholder{
      padding: 40px 35px;
    }
}

@media only screen and (max-width:1199px){
    .tabs-basic ul li a div[class*="shuzi"]{
      display: none;
    }
    .tabs-basic ul li a{padding: 20px 0px;}
    .tabs-basic ul li a p{
      text-align: center;
    }
    .chooseimg{width: 40%}
    .tabs-basic .tabs-content-placeholder{width: 60%}
}
@media only screen and (max-width:991px){
    .tabs-basic ul li a p:last-child{
     /* display: none;*/
    }
    .tabs-basic ul li a p:last-child{font-size: 17px;}
    .chooseimg{width: 100%;margin-bottom: 0px;height: 330px;}
    .tabs-basic .tabs-content-placeholder{width: 100%;height: 100%;}
}

@media (max-width: 560px) {
    .tabs-basic ul li a{
        padding: 12px 15px;
    }
}
@media (max-width: 510px) {
    .tabs-basic ul li{
      width: 33.33333%;
    }
    .tabs-basic ul li a{
      padding: 8px 0px 15px 0;
    }
    .tabs-basic ul li:nth-child(4),.tabs-basic ul li:nth-child(5){
      width: 50%;border-top: 1px solid #fff;
    }
    .chooseimg{display: none;}
    .tabs-basic .tabs-content-placeholder{
      padding: 20px 10px;
    }
}

/*----------------底部footer----------------------*/
.bgfoot{background: #fff;color: #000}
.bgfoot a{color: #666666;}
.bgfoot a:hover{color: #73C900}
.bgfoot h4 a{color: #000;}
.wrap-link-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.bgfoot h4{color: #000;font-size: 18px;}
.bgfoot .row{display: flex;justify-content:left;flex-wrap:wrap;}
.lanxi{width: 20%;float: left;padding: 30px 15px 0 15px}
/*.lanxi:nth-child(2),.lanxi:nth-child(3){width: 13%}*/
.lanxi:nth-child(6){width: 40%}
.lanxi:last-child{width: 50}
.lanxi ul li{margin: 10px 0;}
.lanxi:last-child h4{font-size: 18px;font-family: 'Aparajita 常规';margin-top: -5px;margin-bottom: 18px;}
.lanxi:last-child p{
  color: #666666;line-height: 30px;
}
.bg3{background:  #72C900;color: #fff;}
.bg3 a{color: #fff;}

.footer_left .footer_mobile p {
  float: left;
  color: #fff;
}
.footer_left .footer_mobile p > * {
  display: block;
}
.footer_left .footer_mobile p span {
  font-size: 14px;
  background: url("../images/f_tel.png") no-repeat left center;
  padding-left: 30px;
}
.footer_left .footer_mobile p b {
  font-size: 35px;
  font-weight: 300;
  margin: 5px 0;
}
.footer_left .footer_mobile p small {
  font-size: 14px;
  color: #797979;
}
.footer_left .footer_mobile ul {
  float: right;
}
.footer_left .footer_mobile ul li {
  font-size: 14px;
  color: #797979;
  margin-bottom: 5px;
}
.footer_mob {
  background: #73CA00;
  overflow: hidden;border-top: 1px solid #fff;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 1000;
}
.footer_mob li {
  width: 25%;
  color: #fff;
  float: left;
  padding: 10px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  box-sizing: border-box;
}
.footer_mob li:nth-of-type(1) {
  border-left: 0;
}
.footer_mob li a {
  color: #fff;
  text-align: center;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.footer_mob li a > * {
  display: block;
}
.footer_mob li a i {
  font-size: 18px;
  padding-right: 10px;
}
.footer_mob li a span {
  font-size: 12px;
}
.last-bottom{font-size: 14px;}
.last-bottom a:hover{color: orange}

@media (max-width: 1659px) {
    .lanxi{width: 20%;}
    .lanxi:last-child{width: 50%;padding-left: 0px;padding-right: 0px;}
}

@media (max-width: 1439px) {
    .lanxi{width: 25%;}
    .lanxi:nth-child(2),.lanxi:nth-child(3){width: 25%}
    .lanxi:nth-child(5){clear: both;}
    .lanxi:last-child{width: 50%;padding: 30px 15px 0 15px}
}

@media (max-width: 991px) {
    .lanxi{width: 22%;}
    .lanxi:nth-child(2),.lanxi:nth-child(3){width: 28%}
}

@media (max-width: 768px) {
    .lanxi{width: 20%;}
    .lanxi:nth-child(2),.lanxi:nth-child(3){width: 28%}
    .lanxi:nth-child(4){}
    .lanxi:nth-child(5){clear: both;}
    .lanxi:last-child{width: 60%;padding: 30px 0px 0 0px}
    .last-bottom{margin-bottom: 35px;padding: 15px;}
}
@media (max-width: 625px) {
    .lanxi{width: 50%;}
    .lanxi:nth-child(2),.lanxi:nth-child(3){width: 50%}
    .lanxi:nth-child(3){clear: both;}
    .lanxi:nth-child(4){clear: none;}
    .lanxi:last-child{width: 100%;padding: 30px 15px 0 15px}
}
/*--------------------------------首页结束--------------------------------*/

.container1{margin: 0 auto;padding: 0 15px;}

/*内页导航通用*/
.gobalbanner{max-width: 100%;background: #fff;}
.globalnav{background: #fff; padding: 18px 0;font-size: 16px;box-shadow: 0px 2px 8px 0px #eee ;margin-bottom: 30px;}
.globalnav img{margin-right: 15px;}
.globalnav a{color: #000;}
.combanner{
  width: 100%;
  box-shadow: 0px 2px 8px 0px #eee ;margin-bottom: 30px;
}
.combanner a{color: #000;}
.combanner .container1 div[class*="comnav"]{
  width: 16.6665%;border-right: 1px solid #DDDDDD;
  display: inline-block;padding: 15px 0;text-align: center;
  float: left;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.combanner .container1 div[class*="comnav"]:last-child{border-right: none;}
.container1 .navlogo{width: 45px;height: 40px;margin: 0 auto;margin-bottom: 9px;}
.comnav1 .navlogo{background: url(../images/1-11.png)no-repeat center center;}
.comnav2 .navlogo{background: url(../images/2-1.png)no-repeat center center;}
.comnav3 .navlogo{background: url(../images/3-1.png)no-repeat center center;}
.comnav4 .navlogo{background: url(../images/4-1.png)no-repeat center center;}
.comnav5 .navlogo{background: url(../images/5-1.png)no-repeat center center;}
.comnav6 .navlogo{background: url(../images/6-1.png)no-repeat center center;}
.combanner .container1 div[class*="comnav"]:hover{
  background: #72C900;
}
.combanner .container1 div[class*="comnav"]:hover a{
  color: #fff;
}
.comnav1:hover .navlogo{background: url(../images/1-2.png)no-repeat center center;}
.comnav2:hover .navlogo{background: url(../images/2-2.png)no-repeat center center;}
.comnav3:hover .navlogo{background: url(../images/3-2.png)no-repeat center center;}
.comnav4:hover .navlogo{background: url(../images/4-2.png)no-repeat center center;}
.comnav5:hover .navlogo{background: url(../images/5-2.png)no-repeat center center;}
.comnav6:hover .navlogo{background: url(../images/6-2.png)no-repeat center center;}

@media (max-width: 768px) {
  .nopad{padding: 0px;}
}

@media (max-width: 564px) {
    .combanner .container1{padding: 0px;}
    .combanner .container1 div[class*="comnav"]{
      width: 33.3333%;border-bottom: 1px solid #DDDDDD;
    }
    .combanner .container div[class*="comnav"]:nth-child(3){border-right: none;}
}

/*横幅*/
.lv{width: 100%;height: 400px;background: url(../images/lv_02.jpg)no-repeat center center;
  background-size: 100%;
}
@media (max-width: 1440px) {
  .lv{height: 290px;}
}
@media (max-width: 991px) {
  .lv{height: 200px;}
}
@media (max-width: 665px) {
  .lv{display: none;}
}

/*----------------------品牌文化-----------------------*/
.logodes{line-height: 27px;}
.ppf{padding: 0px;position: relative;}
.ppf img{width: 100%;}
.ppf .ppabs{
  position: absolute;bottom: 0px;left: 0px;width: 100%;
  background: rgba(136,193,2,.7);
  padding: 25px 30px 20px 30px;color: #fff;
}
.ppf .ppabs p:first-child{
  font-size: 18px;font-weight: bold;margin-bottom: 6px;
}
.ppf .ppabs p:last-child{
  font-size: 14px;line-height: 24px;
}
.ppf:nth-child(2) .ppabs,.ppf:nth-child(3) .ppabs{
  background: rgba(230,177,14,.7);
}
@media (max-width: 1279px) {
  .ppf .ppabs{
    padding: 25px 15px 20px 15px;
  }
}
@media (max-width: 430px) {
  .ppf .ppabs{
    padding: 15px 15px 10px 15px;
  }
  .ppwh{padding: 0px;}
  .logodes{padding: 0 15px;}
}

/*荣誉资质*/
.rrzz{
  padding: 1px 0 30px 0;
  background: url(../images/bbg.jpg) no-repeat center center;
  background-size: cover;
}
.honorimg{
  width: 40%;background: url(../images/honor.png)no-repeat center center;
  background-size: 100%;height: 380px;margin-top: 65px;
}
.honortitle{width: 53%}
.honorc{float: left;width: 49%;padding: 10px 25px;border: 1px solid #ccc;margin-bottom: 15px;
  font-size: 15px;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.honorc a{color: #000;}
.honorc:hover{
  background: #73C900;
}
.honorc:hover a{
  color: #fff;
}
.honorc:nth-child(2n){
  float: right;
}

@media (max-width: 1439px) {
  .honorimg{width: 40%}
  .honortitle{width: 56%}
}
@media (max-width: 1279px) {
  .honorimg{width: 30%}
  .honortitle{width: 67%}
}
@media (max-width: 991px) {
  .honorimg{width: 45%}
  .honortitle{width: 51%}
  .honorc{width: 100%;}
}
@media (max-width: 648px) {
  .honorimg{display: none;}
  .honortitle{width: 100%;margin-bottom: 50px;}
  .honorc{width: 100%;}
}
/*加工装备*/
.equ .carousel-example {
  padding: 20px 0 50px 0;
}
.equ .flex-item img{width: 100%;object-fit:cover;}
.equ .flex-div{width: 100%;height: 40px;text-align: center;line-height: 40px;background: #EDEDED;font-size: 14px;}

.equ .carousel-control {
  width: 50px;
  height: 50px;
  top: 45%;
  transform: translateY(-50%);
  bottom: auto;
  font-size: 55px;
  text-align: center;
  opacity: 1;
}

.equ a.carousel-control.left,
.equ a.carousel-control.right {
  background-image: none;
  opacity: 1;
  text-align: center;
}

.equ .carousel.flexible .items {
  display: none;
}
.equ .flex-item .flex-div{
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.equ .flex-item:hover .flex-div{
  background: #73C900;color: #fff;
}

/*合作伙伴*/
.partenter{background: #F6F6F6;padding: 1px 0 40px 0}
.tubiao{margin: 0px auto;}
.tubiao a{display: block;border: 1px solid #dcdcdc;width: 19%;float: left;margin-right: 1%;margin-bottom: 15px;
  item-aligns:center;text-align: center;
}
.tubiao img{max-width: 100%;}

@media (max-width: 960px) {
  .tubiao a{border: 1px solid #dcdcdc;width: 32%;float: left;margin-right: 1%;margin-bottom: 15px;}
}

@media (max-width: 760px) {
  .tubiao a{border: 1px solid #dcdcdc;width: 49%;float: left;margin-right: 1%;margin-bottom: 15px;}
  .tubiao a:nth-child(5){display: none;}
  .tubiao a:nth-child(6){display: none;}
}



/*服务于支持*/
.sevv{background: #F6F6F6;padding: 50px 0;}
.service{background: #fff;padding: 0px;}
.service .sek{
  width: 50%;float: left;height: 100%;
  background-size: 100%;
}
.service div[class*='ser']{
  height: 317px;overflow: hidden;
}
.service .sev{padding: 20px 30px;width: 50%;float: right;}
.service .sev h3{font-size: 22px;margin-bottom: 6px;}
.service .sev h5{font-size: 16px;color: #CCCCCC;text-transform: uppercase;}
.service .sev span{display: block;width: 60px;height: 0px;border: 1px solid #73C900;margin-top: 10px;margin-bottom: 15px;}
.service .sev p{line-height: 24px;}

.service div[class*='ser']:nth-child(2n) .sek{
  float: right;
}
.service div[class*='ser']:nth-child(2n) .sev{
  float: left;
}
@media (max-width: 1279px) {
  .service div[class*='ser']{
    height: 380px;
  }
}
@media (max-width: 768px) {
  .service {margin-top: 50px;}
  .ssss{display: none;}
  .service div[class*='ser']:nth-child(2n) .sek{
    float: left;
  }
  .service div[class*='ser']:nth-child(2n) .sev{
    float: right;
  }
  .service div[class*='ser']{height: 100%;}
  .service .sek{
    width: 100%;min-height: 200px;
  }
  .service .sev{
    width: 100%;padding: 20px 15px;
  }
}

/*技术中心 ---------- 核心技术*/
.tec ul{margin-bottom: 35px;}
.tec ul li{
  display: inline;padding: 10px 30px;font-size: 15px;
  float: left;margin-right: 10px;background: #fff;margin-bottom: 15px;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.tec ul li:hover{
  background: #73CA00;
}
 .tec ul li:hover a{
  color: #fff;
 }
.tec ul .active , .tec ul .active a{
  background: #73CA00;color: #fff;
}
.tec ul li a{color: #000}
.code .codedes{
  width: 56%;
}
.code .codeimg{
  width: 40%;
}
.code img{
  max-width: 100%;
}
.code h3{font-size: 30px;}
.code h4{text-transform: uppercase;color: #73CA00;font-size: 22px;font-weight: bold;margin: 6px 0 20px 0}
.code p{line-height: 27px;color: #555555}


/*技术中心 ---------- 科研人才*/
.code .talent{width: 100%;margin-bottom: 50px;}

/*技术中心 ---------- 科研平台*/
.plat p{text-align: center;margin: 15px 0;padding: 0 10px;}




@media (max-width: 991px) {
  .tec ul li{
    width: 33%;padding: 0px;margin-right: 0px;
    text-align: center;line-height: 50px;border-right: 1px solid #f5f5f5;
  }
  .tec ul li:nth-child(3),.tec ul li:nth-child(5){
    border: none;
  }
  .code .codedes{
    width: 100%;
  }
  .code .codeimg img{
    display: none;
  }
}

/*翻页*/
.page{font-size: 14px;}
.page a{padding: 6px 10px;background: #fff;font-size: 14px;}
.page .current{padding: 6px 10px;background: #73CA00;color: #fff;font-size: 14px;}
@media (max-width: 768px) {
  .page{line-height: 32px;}
}

/*-----------------------------新闻资讯----------------------------------*/
.news{padding: 50px 0 0 0;}
.news a{color: #000;}
.news .tec ul li{
  background: #F0F0F0;color: #fff;
}
.news .tec ul li a{
  color: #000;
}
.news .tec ul .active{
  background: #73CA00;
}
.news .tec ul .active a{
  color: #fff;
}
.news .tec ul li:hover{
  background: #73CA00;
}
.news .tec ul li:hover a{
  color: #fff;
}

.f-news{
  margin: 50px 0;
}
.f-news .news-time{
  font-weight: bold;color: #555555
}
.f-news .news-time img{
  float: left;margin-top: 2px;
  margin-right: 10px;
}
.f-news h2{
  font-size: 24px;margin: 20px 0;line-height: 31px;
}
.f-news h2:hover{
  color: #73CA00;
}
.news-content > img{
  float: left;width: 30%;
}
.news-content .news-content1{
  width: 65%;padding: 25px 0;
  line-height: 27px;color: #666666;
}
.news-content1 span:hover{
  color: #73C900;
}
.news-content .news-content1 p{
  margin-bottom: 25px;
}
.news-content .news-content1 span{
  float: left;
}
.news-content .news-content1 span img{
  margin-top: -3px;margin-right: 10px;
}

.s-news{
  margin-top: 70px;background: #F6F6F6;
  padding: 70px 0;
}
.s-news a{
  color: #000;
}
.s-news-list{
  padding: 35px 25px 30px;
  border: 1px solid #ccc; position: relative;
  overflow: hidden;z-index: 1;height: 251px;
}
.s-news-list h3{
  font-size: 18px;color: #73CA00;
  margin: 10px 0 15px 0;font-weight: lighter;
}
.s-news-list p:nth-child(3){
  line-height: 26px;
}
.s-news-list span{
  display: block;width: 50px;height: 20px;margin-top: 20px;
  background: url(../images/jt.png) no-repeat center;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.s-news-list:hover span{
  background: url(../images/jtt.png) no-repeat center;
}

.s-news-list:nth-child(2){
  border: none;border-top: 1px solid #ccc;border-bottom: 1px solid #ccc;
}
.s-news-list:nth-child(4){
  border-top: none;
}
.s-news-list:nth-child(5){
  border: none; border-bottom: 1px solid #ccc;
}
.s-news-list:nth-child(6){
  border-top: none;
}
.s-news-list:before{
  position: absolute;
  content: '';
  width: 100%;height: 100%;
  background-color: #fff;
  left: 0;top: -100%;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  z-index: -1;
}

.s-news-list:hover::before{
  top: 0px;
}
.s-news-list:after{
  position: absolute;
  content: '';
  width: 100%;height: 4px;
  background-color: #73C900;
  left: -100%;bottom: 0;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  z-index: -1;
}

.s-news-list:hover::after{
  left: 0;
}
.s-news .page{
  text-align: center;margin: 40px auto 0 auto;
}

.m-txt21{line-height: 31px;}
.news .tec .news-about{background: #fff;padding: 8px 0;margin-bottom: 0px;display: block;width: 100%;}
.news .tec .news-about:hover{background: none;}
.news .tec .news-about:hover a{color: #73C900}

@media (max-width: 1279px) {
  .s-news-list{height: 280px;}
}

@media (max-width: 991px) {
  .news-content .news-content1{
    padding: 0px;
  }
  .news .tec .news-about{background: #fff;padding: 8px 0;margin-bottom: 0px;display: block;width: 100%;
    line-height: 20px;text-align: left;
  }
  .s-news-list{height: 260px;}
  .s-news-list:nth-child(2){
    border: 1px solid #ccc;border-left: none;
  }
  .s-news-list:nth-child(3){
    border-right: none;
  }
  .s-news-list:nth-child(5){
    border-left: 1px solid #ccc;
  }
}
@media (max-width: 768px) {
  .s-news{
    padding: 0 0 50px 0;
  }
  .news-content > img{
    float: left;width: 100%;margin-bottom: 20px;
  }
  .news-content .news-content1{
    width: 100%;
  }
  .s-news-list {
    padding: 35px 0 30px;border: none;
    border-bottom: 1px solid #ccc;height: auto;
  }
  .s-news-list:nth-child(2){
    border-right: none;border-top: none;
  }
  .s-news-list:nth-child(5){
    border-left: none;
  }
}



/*联系我们*/
.size25 {
  width: calc((100% - 40px) / 3);
  height: 50px;
}
.flex-sb{
  display: flex;
}
.bo-rad-2 {border-radius: 2px;} 
.size22 {
  width: 100%;
  min-height: 150px;
}
.bo6 {border: 1px solid #cccccc;}
.s-txt31 {
  font-family: Roboto-Regular;
  font-size: 15px;
  color: #555555;
  line-height: 1.6666667;
}

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;

  font-family: Roboto-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f071";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/*------------------------------------------------------------------
[ rs alert validate ]*/
.rs1-alert-validate .alert-validate::before {
  right: 22px;
}

.rs1-alert-validate .alert-validate::after {
  right: 28px;
}

.btn-drive {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;min-width: 150px;border-radius: 5px;
  padding: 10px;
  background: #ccc;color: #fff;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.btn-drive:hover{
  background: #73C900;
}
.ymm{
  color:  #A9A9A9;font-size: 32px;
}
.lxhm{
  background:#73C900;color: #fff; 
  padding-top: 30px;padding-bottom: 30px;
  height: 530px;margin-bottom: 80px;
}
.lxhm a{color: #fff;}
.lxhm a:hover{color: #ccc;}
.lxhm .wx{
  width: 162px;/*height: 118px;*//*background: url(../images/wx_03.jpg)no-repeat center;*/
  margin-top: 30px;
}
.lxhm .wx img{/*width: 118px;height: 118px;*/}
@media (max-width: 991px) {
  .zx{padding: 0px;width: 100%}
  .lxhm{
    height: auto;margin: 0px;
  }
}
@media (max-width: 768px) {
  .zx{padding: 0px;}
  .lxhm{
    height: auto;margin: 0px;
  }
  #allmap{height:330px;}
}

/*加入我们*/
.jia img{width: 100%;}
.jia .left{padding: 0px 20px 0 0;}

/*招聘*/
.jibs_content {
  text-align: center;
  font-size: 15px;
  line-height: 30px;
  color: #666;
  margin-bottom: 4%;
}
.job_tab {
  line-height: 54px;
  background: #73C900;
  font-size: 14px;
  color: #fff;
  text-align: center;
  width: 100%;
  overflow: hidden;
}
.job_tab span {
  display: block;
  width: 20%;
  text-align: center;
  float: left;
}
.jobs ul li > p {
  line-height: 54px;
  background: #ffffff;
  font-size: 14px;
  color: #4c4c4c;
  text-align: center;
  overflow: hidden;
  height: 54px;
}
.jobs ul li:nth-of-type(even) > p {
  background: #f3f3f3;
}
.jobs ul li > p span {
  float: left;
  display: block;
  width: 20%;
}
.jobs ul li div {
  background: #ebebeb;
  padding: 20px;
  display: none;
}
.jobs ul li div small {
  font-size: 14px;
  line-height: 30px;
  color: #3658AD;
}
.jobs ul li div > p {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 27px;
  /*font-weight: bold;*/
}
.jobs ul li div > span {
  display: block;
  margin-top: 20px;
  border-top: 1px solid #ccc;
  font-size: 14px;
  color: #7C7C7C;
  padding-top: 20px;
}
.jobs ul li div > span a {
  color: #0057a9;
}

@media(max-width:768px){
  .job_tab{line-height: 35px;}
  .jobs ul li > p{line-height: 39px;padding:10px 0;}
  .job_tab span,.jobs ul li > p span{ width: 33.3%;}
  .job_tab span:nth-of-type(2),.job_tab span:nth-of-type(3),
  .jobs ul li > p span:nth-of-type(2),.jobs ul li > p span:nth-of-type(3){display: none;}
}

.evior{text-align: center;margin-top: 10px;}



/*产品中心*/
/*产品导航*/
/* lightbox */
.mfp-bottom-bar{ background-color: transparent; }
.prolistflbtinner:hover .prolistflbt{font-size: 17px; transition:all 500ms; }
.prolistflbtinner:hover .prolistflbt{border-left: solid 3px #73CA00;}
.icon-angle-down3{width: 20px; height: 20px; background: url(../images/jt-x.png)center no-repeat; }
.topmargin{padding: 0px;}

/* 产品列表 product-list-page */
.product-list-page{padding-top: 50px;}
.product-list-page .product-nav ul li ul{ padding-top: 10px !important; }
.product-list-page .product-nav ul li ul li ul{ padding-top: 6px !important; }
.product-list-page .product-nav ul li { padding-bottom: 7px; }
.product-list-page .product-nav ul li ul li{ padding-bottom: 10px !important; font-size: 14px; }
.product-list-page .product-nav ul li ul li ul li{ padding-bottom: 6px !important; }
.product-list-page .product-nav ul li:last-child { padding-bottom: 0; }
.product-list-page .product-nav ul li { transition: border .4s ease; }
.product-list-page .product-nav ul li a { color: #888888; /* font-weight: bold; */ display: block; }
.product-list-page .product-nav ul li.fatherClass > a{ color: #333;font-weight: 700; }
.product-list-page .product-nav ul li.active > a, 
.product-list-page .product-nav ul li:hover > a { color: #333;  }
.product-list-page .product-nav ul li.active > a{ font-weight: 500; }
.product-list-page .product-nav ul li.active ul li:hover a{ color: #73CA00; }
/* .product-list-page .product-nav ul li.active ul li a { color: #ccc; } */
.product-list-page .product-nav ul li.active ul li ul li a { color: #ccc; font-weight: 100; }
/*.product-list-page .product-search i { position: absolute; left: 0; bottom: 6px; color: #999; }
.product-list-page .product-search input { margin-left: 10px; }*/
.product-list-page .list-poster > div a { display: block; overflow: hidden; }
.product-list-page .list-poster > div, .product-list-page .list-poster > div img { -ms-transition: 1s ease; transition: 1s ease; }
.product-nav h5{font-size:22px; font-weight:inherit; margin-bottom: 10px; }

/* .product-list-page .list-poster > div:hover{ border-color: #ddd;box-shadow: 0px 0px 1px #ddd; } */
.product-list-page .list-poster > div a:hover img { -ms-transform: scale(1.1); transform: scale(1.1); }
.product-list-page .list-poster > div a h5{ padding-top: 5px; }

.img-responsive{width: 100%;}
.product-page .flex-item{margin-bottom: 25px;}
.protitle{
  text-align: center;margin: 15px 0 0 0;
}
.product-list-page .product-nav ul li{font-family: 'YaHei'}
.product-list-page .product-nav ul li:nth-child(1) a{color: #03723f;font-weight: bold;}
.product-list-page .product-nav ul li:nth-child(2) a{color: #03723f;font-weight: bold;}
.product-list-page .product-nav ul li:nth-child(1) ul li a{text-indent: 20px;color: #000;}

@media (max-width:991px) {
  .product-list-page .product-nav {  }
}
@media (max-width:767px) {
  .product-list-page > div { margin-top: 0 !important; }
  .product-list-page > div .col_one_fifth { margin-bottom: 20px !important; }
  .product-list-page .product-nav { padding: 0; }
  .product-list-page .product-nav > h5 { font-size: 16px; padding: 10px 15px;
    border: 1px solid #ccc;border-radius: 5px;margin: 20px 0;
    background: #73CA00;color: #fff;
  }
  .product-list-page .product-nav ul li{font-size: 18px;}
  .product-list-page .product-nav ul li ul li{font-size: 16px;}
  .product-list-page{padding-top: 15px;} 
  .product-list-page .product-nav > ul, .product-list-page .product-nav > form { display: none; padding: 0 15px; }
  .product-list-page .product-search i { left: 20px; }
  .product-list-page .product-nav h5 i { transition: .45s ease; }
  .product-list-page .product-nav h5 i.rotate { transform: rotate(180deg); }
  .product-list-page .row { margin-left: 0; }
}

/*产品详情*/
.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.infoimg{padding: 0px;}
.infoimg img{max-width: 100%;padding: 0px;}
.inforight{padding-right: 0px;float: right;}
.info-title {font-size: 23px;border-bottom: 1px solid #C9C9C9;line-height: 32px;margin-bottom: 25px;}
.info-desc{line-height: 25px;color: #333333;margin-bottom: 20px;font-size: 14px}
.infocot{padding-top: 40px;border-top: 1px solid #C9C9C9;float: left;width: 100%;}
.infocot [class^="infot"]{margin-bottom: 20px; padding: 10px 28px;border-radius: 30px;background: #E4E4E4;margin-right: 10px;float: left;}
.infocot [class^="infot"] img{float: left;margin-right: 5px;margin-top: 3px}
.infot1 img{margin-top: 3px;}
.info .bubi{margin: 0px;float: left;height: 100%;}
.info select{width: 160px;height: 44px;background: none;border: 1px solid #C9C9C9;
  appearance: none;text-indent: 10px;font-size: 14px;border-radius: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.infocot a{cursor: pointer;}
.info .bbb{background: url(../images/ccc_03.jpg)no-repeat center;top: 15px;}
.listtitle{
  background: #73CA00;text-align: center;
  line-height: 24px;color: #fff;padding: 6px;border-radius: 15px;margin: 25px 0 15px 0;
}
.listpage{
  padding: 15px;
}
.bigpage div{width: 40%;background: #73CA00;padding: 6px 15px;color: #fff;
  transition: .45s ease;margin: 20px 0;
}
.bigpage div a{color: #fff;}
.bigpage div:hover{text-indent: 20px;}
.bigpage div:hover a{color: #555555}

/*相关推荐*/
.tuijian { text-align: center;}
.tj{margin-bottom: 50px;width: 100%;height: 100%}
.other{padding: 0 5px; margin: 20px 0;overflow: hidden;}
.other img{width: 100%;}
.otherin{position: relative;border: 1px solid #EDEDED;}
.tuihide{position: absolute;height: 55px;line-height: 55px;text-align: center;color: #fff;
  bottom: -57px;transition: all .5s ease;width: 100%;background: rgba(136,193,2,0.9);
}
.other:hover .tuihide{bottom: 0px;}
.didi{display: none;}

@media(max-width: 768px){
  .info{margin-top: 20px;padding: 0px;}
  .infoimg{margin: 20px 0;}
  .tuijian {display: none;}
  .didi{display: block;}
  .info-title{font-size: 22px;line-height: 30px;margin-top: 20px;}
  .infocot [class^="infot"]{padding: 10px 30px;}
  .bigpage div{float: none;}
  .bigpage .left{padding: 0px;}
  .bigpage{height: auto;line-height: 50px;}
  .main{padding: 30px 0}
  .info .bubi{width: 100%}
  .info select{width: 100%}
  .bigpage div{width: 100%;padding: 0px;text-indent: 20px;}
  .listpage{padding: 15px 0}
}

@media (min-width: 992px){
    .inforight{/*width: 100%;*/margin: 20px 0}
    .list-peijian .item tr td img{ padding: 10px;max-width: 142px; }
    /* 大屏幕设置最大宽度 */
    .list-peijian .item .table tr td:nth-child(1){ max-width: 100px; }                      
    .list-peijian .item .table tr td:nth-child(2){ max-width: 120px;padding-right: 20px; }
    .list-peijian .item .table tr td:nth-child(3){ max-width: 120px;padding-right: 20px; }
    .list-peijian .item .table tr td:nth-child(4){ max-width: 220px;padding-right: 50px; }
    .list-peijian .item .table tr td:nth-child(5){ max-width: 180px;padding-right: 20px; }
}
@media (max-width: 991px){
    .list-peijian .item{ margin-bottom: 10px; }
    .list-peijian .item table{ margin: 0 15px; }
    .list-peijian .item .table > thead > tr > th,
    .list-peijian .item tr td{ font-size: 12px; }

    .list-peijian .item .table-title{ font-size: 14px; }
    .list-peijian .item tr td img{ min-width: 60px;width: auto; }

}




/*解决方案*/
.solution{
  margin: 50px auto;
}
.solution img{
  width: 100%;max-height: 169px;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.solution a p{color: #000;text-align: center;margin: 15px}
.solution a div:hover  p{color: #72C900}
.solution a div:hover img{box-shadow: 0px 0px 9px 3px rgba(0,0,0,0.6)}
@media (max-width: 768px){
  .solution img{
    max-height: 100%;
  }
}

/*解决方案详情*/
.solu{padding: 50px 15px;}
.solu h2{text-align: center;}
.solu-content{
  line-height: 27px;margin: 40px 0;
}
.solu-img{
  margin: 40px  auto 0 auto;text-align: center;
}
.solu-jt{
  margin-top: 45px;text-align: center;
  margin-bottom: 50px;
}
.solu-list{margin-bottom: 20px;}
.solu-list img{
  width: 100%;
}
.solu-list p{
  margin: 10px 0;
}
.solu-list .mmore{
  background: #72C900;color: #fff;
  line-height: 40px;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.solu-list:hover .mmore{
  background: #FFC700;
}

/*轮播左侧*/
#slider2,
#slider3 {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  margin: 0 auto;
  }

.rslides_tabs {
  list-style: none;
  padding: 0;
  background: rgba(0,0,0,.25);
  box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
  -moz-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
  -webkit-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
  font-size: 18px;
  list-style: none;
  margin: 0 auto;
  max-width: 100%;
  padding: 10px 0;
  text-align: center;
  width: 100%;
  }

.rslides_tabs li {
  display: inline;
  float: none;
  margin-right: 1px;
  }

#slider3-pager a {
  display: inline-block;
}

#slider3-pager img {
  float: left;
}

#slider3-pager .rslides_here a {
  background: transparent;
  box-shadow: 0 0 0 2px #666;
}

#slider3-pager a {
  padding: 0;
}
#slider3-pager img{
  width: 50px;height: 50px;
}
.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  }

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  }

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
  }

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
  }

/*右侧选项卡*/
.tips { color:#999; font-size:12px; margin:50px 0 20px; }
.tab-content { background-color:#f7f7f7; }
.tab-content h4, .accordion-content h4 { margin-bottom:5px; }
.tab-content p, .accordion-content p { margin-bottom:10px; }
.demo table{width: 100%}
.demo table td{width: 50%;padding: 2px 0;}
.demo img{max-width: 100%}
.lovideo{text-align: center;}
.lovideo img{max-width: 100%;}
@media (max-width: 991px){
  .demo{padding: 0px;margin-top: 30px;}
  .nopad{padding: 0px;}
}

/*解决详情图*/
.nanj-pc{text-align: center;}
.nanj-pc img{max-width: 100%;margin: 50px 0}
.nanj-mo img{width: 100%;}
.nanj-mo{display: none;}

/*@media (max-width: 768px){
  .nanj-pc{display: none;}
  .nanj-mo{display: block;}
}*/




/************************注册页面************************/
header{position: relative;}
/*.reg-header{box-shadow: 0 5px 5px #dedede; margin-bottom: 60px;}
.reg-header span{float: right; color: #a6a6a6; padding-top: 25px;}
.reg-header span a:hover{color: #0FAC51;}
.reg-con{overflow: hidden;margin-bottom: 40px;}
.reg-con .reg-con-txt{float: right; padding: 30px 90px 90px 50px; background: #f5f5f5; color: #484848;}
.reg-con .reg-con-txt p{font-size: 18px;}
.reg-con .reg-con-txt b{display: block; font-size: 16px; margin: 30px 0;}
.reg-con .reg-con-txt ul li{font-size: 14px; color: #747474; line-height: 35px;}
.reg-con .reg-con-txt ul li i{font-size: 12px; color: #a8a8a8; padding-right: 10px;}
.reg-con .reg-con-form{float: right; width: 408px; padding-right: 70px; margin-right: 70px; border-right: 1px solid #ccc;}
.reg-con .reg-con-form .reg-input{border: 1px solid #e0e0e0; width: 100%; line-height: 50px; position: relative; margin-bottom: 30px; padding-right: 10px;}
.reg-con .reg-con-form .reg-input:after{display: block;content:'';clear: both;}
.reg-con .reg-con-form .reg-input .Validform_right{    position: absolute;top: 56px;left: 0;}
.reg-con .reg-con-form .reg-input .Validform_wrong{    position: absolute;top: 56px;left: 0;}

.reg-con .reg-con-form .reg-input label{width: 120px; font-size: 14px; color: #565656; text-align: center; display: block; float: left;}
.reg-con .reg-con-form .reg-input input{width: 280px; float: left; height: 47px; line-height: 47px; border: 0;background: #fff !important;;}
.reg-con .reg-con-form .reg-input img{position: absolute; right: 10px; top: 50%; transform: translateY(-50%); -webkit-transform: translateY(-50%); width: 110px; height: 40px; border: 1px solid #ccc;}
.reg-con .reg-con-form .reg-checkbox{overflow: hidden;}
.reg-con .reg-con-form .reg-checkbox input{float: left;}
.reg-con .reg-con-form .reg-checkbox p{float: left; font-size: 14px; color: #565656;}
.reg-con .reg-con-form .reg-checkbox p a{color: #0072ff;}
.reg-con .reg-con-form input[type=submit]{margin-top: 34px; display: block; width: 100%; font-size: 18px; text-align: center; color: #fff; background: #0FAC51; border: 0; height: 54px; line-height: 54px; cursor: pointer;}
*/

#Login_start{left: 50%;margin-left: -175px;/*top: 150px;*/}

/*新增*/
.ppfo .qzq{
  width: 19.5%;
  float: left;margin-right: 5px;
  margin-bottom: 7px;line-height: 26px;
}
.ppfo .qzq div:first-child{
  background: #73C900;padding: 10px 0;
  color: #fff;font-size: 20px;text-align: center;
}
.ppfo .qzq div:last-child{
  color: #000;background: #E9E9E9;
  padding: 23px 15px;height: 150px;
  text-align: left;
}
.ppfo .liver div:last-child{
  text-align: center;
}


@media (max-width: 1279px){
  .ppfo .qzq{
    width: 32.6666%;text-align: center;
  }
  .ppfo .qzq div:last-child{
    color: #000;background: #E9E9E9;
    padding: 23px 10px;
  }
}
@media (max-width: 991px){
  .ppfo .qzq{
    width: 32.4666%;text-align: center;
  }
  .ppfo .qzq div:last-child{
    padding: 23px 10px;
  }
}
@media (max-width: 768px){
  .ppfo .qzq{
    width: 49.2%;text-align: center;
  }
  .ppfo .qzq div:last-child{
    padding: 23px 10px;
  }
}
@media (max-width: 653px){
  .ppfo .qzq{
    width: 100%;text-align: center;
    margin-right: 0px;
  }
  .ppfo .qzq div:last-child{
    padding: 23px 10px;
    height: auto;
  }
  .ppwh{padding: 0 10px;}
}

/*历程*/
.timeline{margin-bottom: 50px;}
.hiddd{display: none;}





/*产品详情*/
.o_product{
    clear: both;
    padding: 18px 22px;
}
.o_product .o_product_img{
    float: left;
    /*width: 240px;*/
}
.o_product .o_product_img .o_product_thumb{
    /*height: 240px;
    width: 240px;*/
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.o_product .product_small{
    margin-top:10px;
    height: 55px;
    position: relative;
}
.swiper-container{
   /* width: 240px;*/
   /* height: 50px;*/
    overflow: hidden;
}
.o_product .product_small .arrow-left{
    width: 10px;
    height: 20px;
    display: block;
    background: url(../Image/swiper-l.png) no-repeat;
    position: absolute;
    left: -15px;
    top: 16px;
    transition: all 0.5s;
}
.o_product .product_small .arrow-right{
    width: 10px;
    height: 20px;
    display: block;
    background: url(../Image/swiper-r.png) no-repeat;
    position: absolute;
    right: -12px;
    top: 16px;
    transition: all 0.5s;
}
.o_product .product_small ul{
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}
.o_product .product_small ul li{
    float: left;
    height: 50px;
    width: 50px;
    margin: 0px;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.o_product .product_small ul li.select img{
    border: 1px solid #C4C4C4;
}
.o_product .product_small ul li img{
    height: 50px;
    width: 50px;
    display: inline-block;
    box-sizing: border-box;
}
.o_product .o_product_img .o_product_thumb img{
    max-height:240px;
    width: 240px;
    display: inline-block;
    vertical-align: middle;
}

.o_product .o_product_info{
    float: right;
    width: 415px;
}
.o_product .o_product_info h2{
    color: #3f3f3f;
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
}
.o_product .o_product_info .o_product_detail{
    background: #F6F6F6;
    font-size: 14px;
    color: #999;
    padding: 15px 10px;
    margin-top: 10px;
}
.o_product .o_product_info .o_product_detail .o_product_data{
    clear: both;
    width: 100%;
}
.o_product .o_product_info .o_product_detail .o_product_data:after,.o_product:after{
    display: block;
    content: '';
    clear: both;
    height: 0;
    width: 0;
}
.o_product_data span{
    display: inline-block;
    float: left;
    line-height: 22px;
}
.o_product_data span.key{
    width: 56px;
    text-align: right;
}
.o_product_data span.val{
    width: 339px;
}
.colhs{
    color: #FE4200;
}
.o_product_data span.val b{
    color:#FE4200;
    font-size: 16px;
}
.o_product_info .go_order{
    padding: 8px 25px;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    background: #ff5e25;
    border: none;
    margin-top: 50px;
    outline: none;
}
.o_product_info .go_order:hover{
    background: #FE4200;
}
.order-content{
    padding: 20px 30px;
    background: #fff;
}

.order-content .order-line{
    color: #333;
    height: 30px;
    line-height: 30px;
    margin-bottom: 12px;
    font-size: 14px;
}
.order-content .order-line:after{
    display: block;
    content: '';
    clear: both;
    height: 0;
    width: 0;
}
.order-content .order-line lable{
    width: 70px;
    margin-right: 5px;
    display: inline-block;
    float: left;
    text-align: right;
}
.order-content .order-line .order-zhi{
    float: left;
    padding: 10px;
    line-height: 30px;
    padding: 0px 10px;
    width: 220px;
    border: 1px solid #d2d2d2;
}
.order-content .order-line .order-zhi.noborder{
    border:none;
}
.order-content .order-line  .order-zhi.overword{
    height: 30px;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;

}
.order-line.bz-line{
    height: auto;
}
.order-content .order-line .beizhu{
    padding: 10px;
    float: left;
    border: 1px solid #d2d2d2;
}
.order-content .order-line .dwid{
    width: 375px;
}
.order-content .order-line img{
    display: inline-block;
    float: left;
    margin-left:15px;
}
.order-content .go-sub{
    margin-left:70px;
    border: none;
    color: #fff;
    background: #ff5e25;
    font-size: 14px;
    padding: 8px 28px;
    margin-top:8px;
    border-radius: 5px;
    outline: none;
}
.order-content .go-sub:hover
{
    background: #FE4200;
}


/*登录查看*/
.chak{
  width: 100%;
  height: 100px;
  background: #ccc;
  padding: 40px 0;
}
.chak p{
  text-align: center;
  color: #fff;
}
.chak p span{
  color: #73CA00
}
.chak p:last-child{display: none;}

@media (max-width: 768px){
  .chak p:first-child{display: none;}
  .chak p:last-child{display: block;}
}


/*产品中心*/
.sock ul li{margin-bottom: 10px;padding: 8px 0;overflow: hidden; display: block;width: 100%;/*height: 130px;*/}
.sock ul li .left{text-align: center;overflow: hidden;}
.sock ul li img{/*max-height: 130px;*/margin: 0 auto}
.sock ul li h1{line-height: 30px;font-size: 18px;margin: 5px 0 10px 0;
  transition:0.5s all;
  -webkit-transition:0.5s all;
  -moz-transition:0.5s all;
  -o-transition:0.5s all;
  display: -webkit-box;
  -webkit-line-clamp:1;
  -webkit-box-orient:vertical;overflow: hidden;
}
.sock ul li p{font-size: 14px;line-height: 26px;}
.sock ul li:hover h1{color: #73C900}


@media (max-width: 768px){
  .sock ul li h1{font-size: 16px;margin-bottom: 0px;}
  .sock ul li .left{padding: 0px;}
  .sock ul li .right {padding-right: 0px;}
  .sock ul li p{font-size: 14px;line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
  }
}


/*加工工艺*/
.solu-jt .tabs-list li{margin: 0px;}
.solu-jt .tabs-list li a{height: 100%;background-color: #F6F6F6;padding: 0px;}
.solu-jt .tabs-list li.active a{
  background-color:#F6F6F6;color: #72C900;position: relative;
}
.solu-jt .tabs-list li.active a:after{
  position: absolute;
  display: block;content: '';
  width:0;
  height:0;bottom: -15px;left: 37%;
  border-right:20px solid transparent;
  border-left:20px solid transparent;
  border-bottom:20px solid #E2E2E2;
}


@media (max-width: 1440px){
  .solu-jt .tabs-list li a img{
    width: 120px;
  }
}
@media (max-width: 1280px){
  .solu-jt .tabs-list li a{
    padding: 0px;
  }
}
@media (max-width: 992px){
  .solu-jt .tabs-list li a{
    width: 100px;
  }
}

/*产品详细*/
.pro_one{ background-color:#f4f4f4; overflow:hidden; padding-top:1%; padding-bottom:2%;}
.pro_one .pro_one_div{ width:96%; max-width:750px; margin:0 auto; text-align:center;position: relative;}
.pro_one .pro_one_div .pro_one_t{ line-height:26px; font-size:30px; color:#2a2a2a; margin-top:30px; margin-bottom:15px; letter-spacing:3px;}
.pro_one .pro_one_div .pro_one_desc{ font-size:18px; color:#c30d23; line-height:26px;}
.big_img{ width:100%; margin-bottom:15px; /*margin-top:30px;*/}

#owl-demo5{  width:96%; max-width:512px; margin:0 auto;text-align:center;}
#owl-demo5 .owl-item.loading{ min-height:100px;}
#owl-demo5.owl-theme .owl-controls .owl-buttons{ position:absolute; margin-top:-43%; width:140%; left:-20%; height:0;}
#owl-demo5.owl-theme .owl-controls .owl-buttons div{color: #FFF;display: inline-block;zoom: 1;*display: inline; width:72px; height:72px;/*IE7 life-saver*/ text-indent:60px;overflow:hidden;-webkit-transition: all 0.3s ease-out 0s;-moz-transition: all 0.3s ease-out 0s;-o-transition: all 0.3s ease-out 0s;transition: all 0.3s ease-out 0s; margin-top:0;}
#owl-demo5.owl-theme .owl-controls .owl-buttons div.owl-prev{background:url(../images/product_left.png) no-repeat; float:left; background-size:100% 100%;}
#owl-demo5.owl-theme .owl-controls .owl-buttons div.owl-prev:hover{background:url(../images/product_left_on.png) no-repeat; background-size:100% 100%;}
#owl-demo5.owl-theme .owl-controls .owl-buttons div.owl-next{ background:url(../images/product_right.png) no-repeat; float:right; background-size:100% 100%;}
#owl-demo5.owl-theme .owl-controls .owl-buttons div.owl-next:hover{background:url(../images/product_right_on.png) no-repeat; background-size:100% 100%; }


#owl-demo5 .item{margin: 0px 6px; }
#owl-demo5 .item img{display: block;height: 100%;width: 100%; /*border-radius:50%;*/ border:1px solid #c7c7c7; background-color:#fff;}
#owl-demo5 .item dd{ width:100%; margin:0 auto; max-width:424px;margin-bottom:10px;}
/*#owl-demo5 .item img:Hover{ border:1px solid #c30d23;}*/
#owl-demo5 .item .psel{border:1px solid #c30d23;}
.owl-item{float: left;}

@media (max-width: 768px){
  #owl-demo5.owl-theme .owl-controls .owl-buttons{margin-top:-53%; width:100%; left:0%; height:0;}
  .big_img{ margin-bottom:12px;}
  .info-title{margin-top: 0px;}
}







