/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  /* you need to set this to assign to the main element a min height of 100% */
  height: 100%;
}



body {
  font-size: 100%;
  font-family:MicrosoftYaHei;
  color: #000000;
  background-color: #ffffff;
}

a {
  color: #6cac70;
  text-decoration: none;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

/* .overflow-hidden {
  overflow: hidden;
} */

/* -------------------------------- 

Main components 

-------------------------------- */
/* 头部以及侧边菜单 */
.cd-main-content {
  /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
  min-height: 100%;
  position: relative;
  background-color: #ffffff;
  z-index: 2;
  /* padding-top: 50px; */
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-main-content.lateral-menu-is-open {
  /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}
@media only screen and (min-width: 768px) {
  .cd-main-content {
    /* padding-top: 70px; */
  }
}
/* 头部导航 */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
header.lateral-menu-is-open {
  /* translate to show the lateral menu */
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}
header.is-fixed {
  position: fixed;
}

#cd-logo {
	position: absolute;
	top: 1.5vw;
	left:4vw;
	margin: 0;
	}
#cd-logo img {
  display: block;
  width: 100%;
}

#cd-top-nav {
  position: absolute;
  top: 0;
  right: 120px;
  height: 100%;
  display: none;
}
#cd-top-nav ul {
  height: 100%;
  padding-top: 18px;
}
#cd-top-nav li {
  display: inline-block;
  margin-right: 1em;
}
#cd-top-nav a {
  display: inline-block;
  padding: .5em;
 font-size: 1vw;
 font-weight:500;
 	font-stretch: normal;
 	line-height: 2vw;
 	letter-spacing: 0vw;
 	color: #000000;
}
#cd-top-nav a.current {
  background-color: #242e30;
}
.no-touch #cd-top-nav a:hover {
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (min-width: 768px) {
  #cd-top-nav {
    display: block;
  }
}

#cd-menu-trigger {
  position: absolute;
  right:3vw ;
  top: 1.5vw;
  height: 1vw;
  width: 3vw;
}
#cd-menu-trigger .cd-menu-text {
  height: 100%;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
  display: none;
}
#cd-menu-trigger .cd-menu-icon {
  /* this span is the central line in the menu menu */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 18px;
  height: 2px;
  background-color: #FFF;
  /* these are the upper and lower lines in the menu menu */
}
#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: inherit;
  left: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
#cd-menu-trigger .cd-menu-icon::before {
  bottom: 5px;
}
#cd-menu-trigger .cd-menu-icon::after {
  top: 5px;
}
#cd-menu-trigger.is-clicked .cd-menu-icon {
  background-color: rgba(255, 255, 255, 0);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
  background-color: white;
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  #cd-menu-trigger .cd-menu-text {
    display: inline-block;
    line-height: 70px;
  }
  #cd-menu-trigger .cd-menu-icon {
    left: auto;
    right: 1.25em;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

#cd-lateral-nav {
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  /* the secondary navigation is covered by the main element */
  z-index: 1;
  width: 260px;
  background-color: #000000;
  overflow-y: auto;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
  /* this creates the subtle slide in animation of the navigation */
  -webkit-transform: translateX(80px);
  -moz-transform: translateX(80px);
  -ms-transform: translateX(80px);
  -o-transform: translateX(80px);
  transform: translateX(80px);
}
#cd-lateral-nav .cd-navigation {
  margin: 0px 0 16px;
}
.search{
	width: 80%;
	display: block;
	margin-left: 10% !important;
	font-size: 14px;
}
.search .icon-search{
	color: #ffffff;
	
}
.search input{color: #FFFFFF;}
#cd-lateral-nav .sub-menu {
  padding: 0 10px 20px 15px;
  display: none;
}
#cd-lateral-nav a {
  display: block;
  line-height: 4rem;
  padding: 0 16px 0 32px;
  color: #ffffff;
font-size: 14px;
}
.friend-link a{
  display: none;
  line-height: 1rem !important;
  padding: 5px !important;
  color: #ffffff;
  float: left;
	
}

#cd-lateral-nav a:hover{
	background: #038a5f;
	color: #FFF;
}
#cd-lateral-nav a.current {
  background-color: #3a4a4d;
  color: #FFF;
}
.no-touch #cd-lateral-nav a:hover {
  color: #FFF;
}
#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-overflow-scrolling: touch;
}

#cd-lateral-nav .item-has-children > a {
position: relative;
font-size: 14px;
font-weight: normal;
font-stretch: normal;
 
}
#cd-lateral-nav .item-has-children > a::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1em;
  background: url("../img/cd-arrow.svg") no-repeat center center;
  background-size: 8px 11px;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
#cd-lateral-nav .item-has-children > a.submenu-open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

#cd-lateral-nav .socials {
  padding: 0 32px;
}
#cd-lateral-nav .socials:after {
  content: "";
  display: table;
  clear: both;
}
#cd-lateral-nav .socials a {
  height: 32px;
  width: 32px;
  float: left;
  padding: 0;
  background-image: url("../img/cd-socials.svg");
  background-repeat: no-repeat;
  background-size: 128px 64px;
  background-color: #FFF;
  margin-right: .5em;
  border-radius: 0.25em;
}
#cd-lateral-nav .socials a.cd-twitter {
  background-position: 0 0;
}
#cd-lateral-nav .socials a.cd-github {
  background-position: -32px 0;
}
#cd-lateral-nav .socials a.cd-facebook {
  background-position: -64px 0;
}
#cd-lateral-nav .socials a.cd-google {
  background-position: -96px 0;
}
.no-touch #cd-lateral-nav .socials a:hover {
  background-color: #4e6361;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-twitter {
  background-position: 0 -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-github {
  background-position: -32px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-facebook {
  background-position: -64px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-google {
  background-position: -96px -32px;
}
/* 文案 */
.block{
	width: 100%;
	text-align: center;
}
.block .text_1{
	width: 57vw;
	padding: 8.5vw 0 3vw 0;
	display: block;
	margin: auto;
	font-family: MicrosoftYaHei;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.12vw;
	
}
.paragraph_1{
	width: 57vw;
	display: block;
	margin: auto;
	padding-bottom: 8.5vw;
	font-family: MicrosoftYaHeiLight;
	font-size: 1rem;
	font-weight: normal;
	font-stretch: normal;
	line-height: 2rem;
	letter-spacing: 0.12vw;
	color: #484747;
}
.block_3{
	position: relative;
}
.block_3 .text_2{
	width: 40%;
	height: 2.5rem;
	text-align: center;
	font-family: MicrosoftYaHei;
	font-size:2.5rem!important;
	font-weight: 500;
	font-stretch: normal;
	line-height: 2rem;
	letter-spacing: 0rem;
	color: #ffffff;
	position: absolute;
	top: 48%;
	left: 30%;
}
.link{
	position: absolute;
	bottom: 16%;
	left: 30%;
	width: 40%;
	text-align: center;
}
.link img{
	width:27px;
	height: 15px;
}

.brand{
	padding-bottom: 7.5vw;
}
.brand .paragraph_1{
	padding-bottom: 6vw;
}
.brand a,.image-wrapper_1 a,.case a{
	width: 38px;
	margin: auto;
	color: #000000;
	display: block;
	padding-bottom: 5px;
	padding-bottom: 1.5vw;
	border-bottom: 1px solid #000000;
	letter-spacing: 0.1vw;
}
.image-wrapper_1 ul,.case ul{
	width: 100%;
	height: 100%;
	float: left;
	background: #ffffff;
}
.image-wrapper_1 ul li{
	width: 50%;
	float: left;
}
.image-wrapper_1 ul li img{
	width: 100%;
	height: 100%;
	/* overflow: hidden; */
}
.image-wrapper_1 ul li .paragraph_1,.image-wrapper_1 ul li .text_1{
	width:54%;
}
.image-wrapper_1 .block_2{
	padding-bottom: 4.3vw;
}
.image-wrapper_1 .paragraph_1{
	padding-bottom: 5.2vw;
}
.image-wrapper_1 ul li .text_1{
	padding-top:5.5vw !important ;
}
.case ul{
	background-color: #f9f2ea;
}
.case ul li{
	width: 50%;
	float: left;
	text-align: center;
}
.case li:last-child{
	
}
.case .text_3{
	width: 100%;
	display: block;
	font-size:2.5rem;
	line-height: 2rem;
	letter-spacing: 0rem;
	padding-bottom: 2.5vw;
}
.case .paragraph_3{
	width: 100%;
	display: block;
	padding-bottom: 7vw;
	letter-spacing: 0.12vw;
}
.case .block_3{
	margin-top: 46%;
}
.jion .link{
	color: #ffffff;
	position: absolute;
	top: 55%;
	left: 30%;
	letter-spacing: 0.12vw;
}
footer{
	width: 100%;
	float: left;
	background-color: #ffffff;
}
.footer-block{
	width: 72%;
	margin: auto;
	padding: 4.5vw 0 2vw 0;
}
.footer-block ul li{
	font-size: 14px;
	width: 50%;
	float: left;
	line-height: 2rem;
	margin-bottom: 23px;
}
.footer-block ul li a{
	font-family: MicrosoftYaHeiLight;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	color: #484747;
	line-height: 2rem;
}
.footer-block ul li dd{
    color: #484747;
}
.footer-block ul li dd a{
	border-right: 1px solid #000000;
	padding:0 15px;
	line-height: 14px;
	color: #484747;
}
.footer-block ul li dd a:first-child{
	padding-left: 0;
}
.footer-block ul li dd a:last-child{
	border: none;
}
.logo-black{
	margin-bottom: 15px;
}
.qrcode{
	margin-top: 36px;
}
.footer-block .friendlink{
	margin-top: 60px;
}
.footer-block .friendlink a{
	padding: 5px;
}
/* 新闻详情 */
.new-detail .text_2{
	font-size: 1.5rem;
}
.new-container,.pro-container{
	width: 72%;
	margin: auto;
	padding: 35px 0 35px 0;
}
.new-container .block{
	text-align: left;
}
.new-container .new-title,.pro-container .pro-title {
	font-family: MicrosoftYaHei;
	font-size: 1.25rem;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0rem;
	line-height: 1.5rem;
	color: #212121;
	margin-bottom: 15px;
}
.new-container .author{
	font-family: MicrosoftYaHei;
	font-size: 1.1rem;
	font-weight: normal;
	font-stretch: normal;
	line-height: 2.5rem;
	letter-spacing: 0rem;
	color: #212121;
	display: block;
	margin-bottom: 30px;
}
.new-container .author .name{
	color: #0e6740;
}
.new-container .author .time{
	color: #9d9d9d;
}
.new-container img,.pro-container img{
	max-width: 100%;
}
/* 产品详情 */
.pro-container{
	position: relative;
}
.pro-container .pro-title{
	font-weight: 900px;
}
.pro-container p{
	line-height: 2rem;
    font-family: MicrosoftYaHeiLight;
	font-weight: normal;
	color: #8f8f8f;
}
.pro-describe{
	margin-bottom: 3.8vw;
}
.video-link{
	position: absolute;
	top: 30px;
	right: 0;
}
.pro-container .return{
	/*margin-top: 4.5vw;*/
	display: block;
}
/* 产品列表 */
.pro-list{
	width: 96%;
	margin: 1%  auto 0;
	background: #ffffff;
}
.pro-list .pro-img{
	/* width: 31.6vw; */
	height: 31.6vw;
}
.pro-list .pro-img img{
	height: 100%;
	width: auto;
}
.pro-list .x4{
	padding: 0.5%;
}
.pro-list .card{
	border: none;
	color: #212121;
}
.pro-list .card:hover{
	border: solid 1px rgba(0, 0, 0, .125);
	background: #038a5f;
	color: #ffffff;
	
}
.pro-list .card:hover h5,.pro-list .card:hover a{
    color: #ffffff;
}
.pro-list .card-body h5:hover,.pro-list .card-body a:hover{
	color: #ffffff;
}
.pro-list .card-body {
    padding: 1rem 0;
    flex: 1 1 auto;
}
.pro-list .card-body h5{
	width: 100%;
	float: left;
	font-family: MicrosoftYaHei;
	font-size: 1rem !important;
	font-weight: normal;
	font-stretch: normal;
	line-height:2.2rem;
    letter-spacing: 0.12vw;
	overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
    text-align: left;
   color: #484747;
}
.pro-list .card-body a{
	width: 20%;
	text-align: right;
	/*float: left;*/
	font-family: MicrosoftYaHeiLight;
	text-decoration: underline;
	font-size: 1rem;
	line-height: 2.2rem;
	color: #048d5e;
}
.pro-list .x6{
	width: 50%;
	padding:.5% 2.5%;
}
.pro-list .x6:hover{
color: #ffffff;
}
.case-block{
	background-color: #f0efeb;
}

.new-detai a{
	cursor: pointer;
}
.new-list .card-body{
	padding: 5px 0;
}
.new-list .card-body h5{
	overflow: hidden;
	height: 2rem;
}
.new-title{
	padding-top: 1vw;
	color: #000000;
	letter-spacing: 0.12vw;
}
/* 招商加盟 */
.download{
	position: absolute;
	width: 40%;
	text-align: center;
	bottom:15%;
	left: 30%;
	color: #ffffff  !important;
	text-decoration: underline !important;
	font-size: 1.25rem;
	font-stretch: normal;
	font-style:normal;
}
.merchants-join{
		font-family: MicrosoftYaHei;
		font-size: 2.5rem !important;
		font-weight: 800px;
		font-stretch: normal;
		letter-spacing: 0px;
		font-style:normal;
		padding-bottom: 1.5vw !important;
}
.jion .link,.merchants-paragraph{
	font-family: MicrosoftYaHei;
	font-size: 1.5rem !important;
	font-weight: 600px;
	font-stretch: normal;
	letter-spacing: 0.12vw;
	font-style:normal;
}
.merchants-paragraph{
	padding-bottom: 6vw;
}
.jion-block{
	background: #ffffff;
}
.jion-list{
	width: 100%;
	padding-bottom: 10.5vw;
}
.jion-list ul{
	width: 40%;
	margin: auto;
}
.jion-list ul li{
	display: block;
	width: 100%;
	height: 5vw;
	background-size: 100%;
	background-repeat: no-repeat;
	text-align: center;
}
.jion-list ul li a{
	color: #484747;
	font-size: 1.15rem;
	width: 100%;
	height: 5vw;
	line-height: 3vw;
	    letter-spacing: 0.12vw;
}
.join-form .text_2{
	position: absolute;
	top: 20%;
}
.join-form .text_1{
	position: absolute;
	top: 26.5%;
	font-size: 1.5rem;
	color: #ffffff;
	letter-spacing: 0.12vw;
}
.form{
	position: absolute;
	top: 44%;
	left: 14.5%;
	width: 71%;
	color: #ffffff;

}
.form .input-group{
	width: 49%;
	float: left;
}
.form .textarea{
	margin-left: 2%;
}

.form .input {
	font-size: 14px;
    padding: .375em .75em;
    border: solid 1px #ddd;
    width: 100%;
    line-height: 1.5rem;
	margin-bottom: 22px;
    display: block;
    border-radius: 3px;
    outline: 0;
    background-color: #eaeaeb;
	color: #212121;
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
.form button{
		border: none;
	    border-radius: 3px;
		border-radius: none !important;
	    background: #5db95f;
	    line-height: 1.5;
	    padding: 0.575em 2em;
	    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
.map{
	width: 100%;
	max-height: 960px;
}
/* 关于公司 */
.about-container{
	width: 100%;
	float: left;
	background: #ffffff;
}
	
.about-container .container{
	width: 71%;
	margin: auto;
}
.img1{
	margin: 11vw 0 7vw 0;
}
.slibe{
	float: left;
	width: 10%;
}
.slibe img{
	height: auto;
}
.written-words{
	width: 90%;
	float: left;
	margin-bottom: 6vw;
}
.brand-dna {
	font-family: MicrosoftYaHei;
	font-size: 1.5rem;
	font-weight: bold;
	font-stretch: normal;
	line-height: 2rem;
	letter-spacing: 0rem;
	color: #000000;
	margin-bottom: 2.4375rem;
}
.asti-asti {
	font-family: MicrosoftYaHeiLight;
	font-size:1rem;
	line-height: 2rem;
	font-weight: normal;
	font-stretch: normal;
	color: #484747;
	margin-bottom: 3.75rem;
	letter-spacing: 0.12vw;
	}
.about3{
	margin-bottom: 6vw;
}
.slibetop{
	display: none;
}
.list-link{
	width: 71%;
	margin: auto;
	font-family: MicrosoftYaHeiLight;
    font-size: 1.12rem;
    line-height: 2.5rem;
    font-weight: normal;
    font-stretch: normal;
    color: #484747;
}
.list-link a{
text-align: left;
}

.pro-list .card-body a:first-child{
	width: 80%;
}
