@charset "utf-8";
/* CSS Document */
@font-face{
	src:url(../fonts/SourceHanSansK-Normal.ttf);
	font-family:"myfont";
	}
@font-face{
	src:url(../fonts/SourceHanSansK-Medium.ttf);
	font-family:"title";
	}
@font-face{
	src:url(../fonts/SourceHanSansK-Heavy.ttf);
	font-family:"heavy";
	}
@font-face{
	src:url(../fonts/IMPACT.TTF);
	font-family:"num";
	}
*{
	padding:0;
	margin:0;
	border:none;
	outline:none;
	list-style:none;
	font-family:"myfont";
	box-sizing: border-box;
	color: #6e6b63;
	}
@font-face {
  font-family: 'iconfont';
  src:url(../icons/iconfont.eot);
  src: url(../icons/iconfont.eot?#iefix) format('embedded-opentype'),
  url(../icons/iconfont.woff) format('woff'),
  url(../icons/iconfont.ttf) format('truetype'),
  url(../icons/iconfont.svg#iconfont) format('svg');
}
.iconfont{
  font-family:"iconfont" !important;
  font-size:16px;font-style:normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
p{
	font-size: 1.6rem;
	line-height: 2;
	margin: 3% 0;
	letter-spacing: 1px;
}
.clear{
	clear:both;
	}
a{
	text-decoration:none;
	}
.w_all{
	width:84%;
	margin:auto;
	}
.w_all2{
	width:64%;
	margin:auto;
	}
.w_all3{
	width:78%;
	margin:auto;
	}
html, body{
	width:100%;
	position:relative;
	font-size: 62.5%;
	background: #eae6de;
	overflow-x: hidden;
	}
header{
	width:100%;
	position:fixed;
	left:0%;
	top:0%;
	z-index:9999;
	background: #f2eee6;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	}
header.outside{
	-webkit-transform: translateY(-180px);
	transform: translateY(-180px);
}
header .nav_box{
	position:relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .logo{
	height:36px;
	margin-top: -12px;
	position:relative;
}
header .logo img{
	display:block;
	height:100%;
	}
header .nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: 3%;
	width: 710px;
	}
header .nav ul{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	}
header .nav li{
	line-height: 100px;
	letter-spacing: 0.1rem;
	font-size:1.6rem;
	font-family: "title";
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	position: relative;
}
header .nav li::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 0;
	background:#817d60;
	opacity: 0;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
header .nav li:hover{
	color: #817d60;
	
}
header .nav li:hover:before{
	opacity: 1;
	width: 100%;
}
header .h_other{
	display: flex;
	align-items: center;
}
header .h_other .ll{
	font-size:1.6rem;
	margin-left: 45px;
	letter-spacing: 1px;
}
header .h_other .ll:hover{
	color: #817d60;
}
.navBtn{
	position: relative;
	z-index:99999;
	cursor:pointer;
}
.navBtn span{
	display: block;
	width: 29px;
	height: 2px;
	background:#6e6b63;
	margin:8px 0;
}
.s_menu{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 999999;
	display: none;
}
.s_menu .s_bg{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #6e6b63;
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
	-webkit-transition: all .7s cubic-bezier(0.775,0,0.211,1);
    transition: all .7s cubic-bezier(0.775,0,0.211,1);
}
.s_menu .s_bg.active{
	transform: scaleY(1);
}
.s_menu .s_nav{
	position: relative;
	z-index: 6;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
	align-items: center;
	opacity: 0;
	-webkit-transition: all .2s ease-in-out 0ms;
    transition: all .2s ease-in-out 0ms;
}
.s_menu .s_nav.active{
	opacity: 1;
}
.s_menu .s_nav .close{
	font-size: 1.8rem;
	color: #eae6de;
	text-transform: uppercase;
	cursor: pointer;
}
.s_menu .s_box{
	position: absolute;
	left: 50%;
	width: 60%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index: 6;
}
.s_menu .s_l{
	opacity: 0;
	-webkit-transform: translateY(10%);
	transform: translateY(10%);
	-webkit-transition: all .6s ease-in-out 0ms;
    transition: all .6s ease-in-out 0ms;
}
.s_menu .s_l.active{
	opacity: 1;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}
.s_menu .s_l .ss{
	position: relative;
}
.s_menu .s_l h3{
	font-size: 4.8rem;
	margin: 3% 0;
	color: #eae6de;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
}
.s_menu .s_l h3:hover,.s_menu .s_l h3.hover{
	color: #fff;
}
.s_menu .dd{
	position: absolute;
	right: 0;
	width: 200px;
	z-index: 1;
	background: #6e6b63;
	top: -100px;
	opacity: 0;
	-webkit-transition: all .6s ease-in-out 0ms;
    transition: all .6s ease-in-out 0ms;
}
.s_menu .dd.active{
	opacity: 1;
	top: 0%;
	z-index: 3;
}
.s_menu .dd a{
	display: block;
	font-size: 2.2rem;
	margin: 20px 0;
	color: #eae6de;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.s_menu .dd a:hover{
	color: #fff;
}
.banner{
	position:relative;
	width:100%;
	margin-top: 100px;
	height:calc(100vh - 100px);
}
.banner .swiper-slide {
	overflow:hidden;
}
.banner .slide-inner {
	width: 100%;
	height: 100%;
}
.banner .txt{
	width: 50%;
	position: absolute;
	left: 8%;
	bottom: 22%;
	z-index: 2;
}
.banner .txt h4{
	font-size: 1.4rem;
	font-weight: normal;
	letter-spacing: 0.05rem;
	line-height: 1.4;
	transform: translateY(60px);
    transition: all 1s;
    transition-delay: 0.3s;
    opacity: 0;
	color: #fff;
	text-transform: uppercase;
}
.banner .txt.active h4{
    transform: translateY(0);
    opacity: 0.8;
}
.banner .txt h3{
	font-size: 4.8rem;
	margin: 2% 0 0;
	letter-spacing: 0.4rem;
	line-height: 1.4;
	transform: translateY(60px);
    transition: all 1s;
    transition-delay: 0.6s;
    opacity: 0;
	color: #fff;
}
.banner .txt.active h3{
    transform: translateY(0);
    opacity: 1;
}
.banner .txt p{
	font-size: 2.4rem;
	letter-spacing: 0.3rem;
	transform: translateY(60px);
    transition: all 1s;
    transition-delay: 0.9s;
    opacity: 0;
	color: #fff;
}
.banner .txt.active p{
    transform: translateY(0);
    opacity: 1;
}
.more{
	margin-top: 5%;
	background: #fff;
	color: #fff;
	letter-spacing: 1px;
	width: 180px;
	line-height: 62px;
	cursor: pointer;
	position: relative;
	text-align: center;
	transform: translateY(60px);
    transition: all 1s;
    transition-delay: 1.2s;
    opacity: 0;
}
.banner .txt.active .more{
    transform: translateY(0);
    opacity: 1;
}
.more::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background: #817d60;
	transition:all .3s ease-in;
}
.more:hover::before{
	width: 100%;
}
.more span{
	font-size: 1.6rem;
	color: #1a1a1a;
	position: relative;
	z-index: 2;
	transition:all .3s ease-in;
}
.more:hover span{
	color: #fff;
}
.btn{
	position: absolute;
	right: 8%;
	bottom: 5%;
	display: flex;
	align-items: center;
	z-index: 6;
}
.btn .ll{
	margin: 0 5px;
	cursor: pointer;
}
.btn .swiper-pagination{
	position: static;
	margin-left: 12px;
	font-size: 1.8rem;
	letter-spacing: 0.5rem;
	display: flex;
	align-items: center;
	width: auto;
}
.btn .ll img{
	height: 12px;
}
.banner .btn .swiper-pagination{
	color: #fff;
}
.banner .btn .swiper-pagination span{
	color: #fff;
}
.scroll{
	position: absolute;
	right: 2%;
	bottom: 18%;
	cursor: pointer;
	z-index: 9;
}
.index_bars{
	padding: 10% 0;
}
.title img{
	transform: translateY(60px);
	opacity: 0;
    transition: all 1s;
    transition-delay: 0.3s;
	max-width: 90%;
}
.title h3{
	font-size: 3.6rem;
	color: #1a1a1a;
	margin-top: 10px;
	transform: translateY(60px);
    transition: all 1s;
    transition-delay: 1s;
    opacity: 0;
}
.index_bar1 .swiper-container{
	width: 88%;
	margin: auto;
	padding: 60px 40px;
}
.index_bar1 .swiper-slide{
	cursor: pointer;
	position: relative;
}
.index_bar1 .swiper-slide .bg{
	overflow: hidden;
	background: #fff;
	position: relative;
	-webkit-transition: all 1s ease-in-out 0ms;
    transition: all 1s ease-in-out 0ms,
}
.index_bar1 .swiper-slide:hover .bg{
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}
.index_bar1 .swiper-slide:nth-of-type(2n+1){
	margin-top: 10%;
}
.index_bar1 .swiper-slide .bg img{
	width: 100%;
	display: block;
	-webkit-transition: all 0.6s ease-in-out 0ms;
    transition: all 0.6s ease-in-out 0ms,
}
.index_bar1 .swiper-slide:hover .bg img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.index_bar1 .swiper-slide .txt{
	position: absolute;
	left: -40px;
	top: -50px;
	background: #817d60;
	padding: 4% 6% 2%;
	width: 70%;
	letter-spacing: 0.2rem;
	opacity: 0;
    -webkit-transition: all .3s ease-in-out 0ms;
    transition: all .3s ease-in-out 0ms;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}
.index_bar1 .swiper-slide.swiper-slide-active .txt,.index_bar1 .swiper-slide.swiper-slide-next .txt{
	opacity: 1;
    -webkit-transition: all .4s ease-in-out .2s;
    transition: all .4s ease-in-out .2s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.index_bar1 .swiper-slide:nth-of-type(2n) .txt{
	left: inherit;
	top: inherit;
	right: -40px;
	bottom: -50px;
}
.index_bar1 .swiper-slide .txt h4{
	font-size: 2.8rem;
	color: #eae6de;
	line-height: 1;
}
.index_bar1 .swiper-slide .txt p{
	font-size: 2rem;
	color: #eae6de;
	margin: 0;
}
.more2{
	position: absolute;
	right: 10%;
	bottom: 20%;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	transform-origin: 0 0;
	-webkit-transition: all .2s ease-in-out 0ms;
    transition: all .2s ease-in-out 0ms;
}
.index_bar1 .swiper-slide:hover .more2{
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
.index_bar1 .contains{
	position: relative;
}
.btns .ll{
	position: absolute;
	right: -2.5%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 9;
}
.btns .ll.left{
	right: initial;
	left: -2.5%;
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
}
.btns .ll i{
	background: #817d60;
	border-radius: 50%;
	color: #eae6de;
	width: 60px;
	line-height: 60px;
	display: block;
	text-align: center;
	font-size: 3rem;
	cursor: pointer;
}
.btns .ll.swiper-button-disabled i{
	background: #fff;
}
.index_bar2{
	padding-top: 5%;
	overflow: hidden;
}
.index_bar2 .swiper-container{
	width: 88%;
	margin-left: 14%;
}
.index_bar2 .swiper-container .swiper-slide{
	margin-top: 0 !important;
}
.index_bar2 .swiper-slide .txt{
	right: inherit;
	top: inherit;
	left: 0px !important;
	bottom: -50px !important;
	width:58%;
}
.btns.btn3 .ll{
	right: 6%;
}
.btns.btn3 .ll.left{
	right: initial;
	left: 6%;
}
.index_bar3 .title{
	text-align: center;
}
.index_bar3 .title img{
	margin: auto;
}
.index_bar3 .contains {
    position: relative;
}
.index_bar3 .ul{
	display: flex;
	justify-content: space-between;
	width: 86%;
	margin: 4% auto 0;
	padding: 0 40px;
	position: relative;
	padding-bottom: 50px;
}
.index_bar3 .ul::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 30%;
	height: 70%;
	background: #6e6b63;
}
.index_bar3 .ul .swiper-slide{
	width: 48.5%;
	position: relative;
}
.index_bar3 .ul .swiper-slide .imgs{
	height: 22vw;
	overflow: hidden;
	-webkit-transition: all 1s ease-in-out 0ms;
    transition: all 1s ease-in-out 0ms,
}
.index_bar3 .ul .swiper-slide:hover .imgs{
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}
.index_bar3 .ul .swiper-slide .imgs img{
	width: 100%;
	-webkit-transition:all 0.6s ease-in-out;
	transition:all 0.6s ease-in-out;
}
.index_bar3 .ul .swiper-slide:hover .imgs img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.index_bar3 .ul .swiper-slide .txt{
	position: absolute;
	left: 50%;
	bottom: -12%;
	width: 80%;
	background: #fff;
	padding: 4%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	text-align: center;
}
.index_bar3 .ul .swiper-slide .time{
	color: #1a1a1a;
	font-size: 1.6rem;
}
.index_bar3 .ul .swiper-slide h3{
	font-size: 2rem;
	color: #1a1a1a;
}
.index_bar4{
	padding: 0% 0 0;
}
.index_bar4 .contain{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #6e6b63
}
.index_bar4 .contain .left{
	width: 50%;
}
.index_bar4 .contain .left img{
	width: 100%;
	display: block;
}
.index_bar4 .contain .right{
	width: 50%;
	padding: 0 6%;
}
.index_bar4 .contain .right img{
	margin-bottom: 5%;
}
.index_bar4 .contain .right p{
	font-size: 1.8rem;
	color: #eae6de;
	margin: 0 ;
	width: 88%;
}
.index_bar4 .more{
	background: #eae6de;
	line-height: 54px;
}
.index_bar4 .more span{
	color: #6e6b63;
}
.index_bar4 .more:hover span{
	color: #fff;
}
.footer {
	position:relative;
	z-index:3;
	background: #1a1a1a;
	padding: 7% 0;
}
.footer .box{
	display: flex;
	justify-content: space-between;
}
.footer .left{
	width: 40%;
	display: flex;
	justify-content: space-between;
}
.footer dl dt{
	font-size: 1.6rem;
	font-family: "title";
	color: #fff;
	margin-bottom: 20px;
	letter-spacing: 0.1rem;
	}
.footer dl dd{
	font-size:1.4rem;
	margin: 10px 0;
	color:#fff;
	opacity: 0.8;
	-webkit-transition:all 0.3s linear;
	transition:all 0.3s linear;
	}
.footer dl a:hover dd{
	opacity: 1;
	}
.footer .right{
	width: 55%;
}
.footer .right .logo{
	float: right;
	margin-bottom: 8%;
}
.footer .copy{
	position: relative;
	text-align: right;
}
.footer .copy p{
	line-height:1.8;
	font-size: 1.4rem;
	margin: 0;
	color: rgba(255,255,255,0.8)
}
.footer .copy a{
	opacity: 0.8;
	color: #fff;
	margin-left: 20px;
	-webkit-transition:all 0.3s linear;
	transition:all 0.3s linear;
}
.footer .copy a:hover{
	opacity: 1;
}
.o_ban{
	margin-top: 200px;
}
.title2{
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}
.title2 h2{
	font-size: 2.6rem;
	color: #1a1a1a;
	font-family: "title";
	font-weight: normal;
	letter-spacing: 0.2rem;
	line-height: 1.2;
	margin-right: 20px;
}
.title2 h3{
	font-size: 5.4rem;
	color: #1a1a1a;
	line-height: 1;
	font-family: "title";
}
.pro{
	padding-bottom: 8%;
	min-height: 50vh;
}
.pro .contain{
	margin-top: 3%;
	position: relative;
}
.p_menu{
	display: none;
}
.p_nav{
	position: relative;
	float: left;
	background: #817d60;
	width: 19vw;
	padding: 3% 3vw;
}
.p_nav.active{
	position: fixed;
	left: 8%;
	top: 5%;
	z-index: 9;
	transition-delay: 0s; 
	transition: all 0s;
}
.p_nav.active2{
	position: absolute;
	left: 0%;
	top: inherit;
	bottom:0;
	transition-delay: 0s; 
	transition: all 0s;
}
.p_nav dl{
	margin-bottom: 30px;
}
.p_nav dt{
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	letter-spacing: 0.3rem;
	margin-bottom: 20px;
}
.p_nav dd{
	font-size: 1.8rem;
	color: #eae6de;
	padding-left: 30px;
	position: relative;
	letter-spacing: 0.2rem;
	margin: 10px 0;
	cursor: pointer;
	-webkit-transition:all 0.3s linear;
	transition:all 0.3s linear;
}
.p_nav dd::before{
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	border: 1px solid #eae6de;
	width: 16px;
	height: 16px;
	-webkit-transition:all 0.3s linear;
	transition:all 0.3s linear;
}
.p_nav dd:hover{
	color: #fff;
}
.p_nav dd.active{
	color: #fff;
}
.p_nav dd.active::before{
	background: #fff;
}
.pro .right{
	float: right;
	width: 74%;
}
.pro ul{
	display: flex;
	flex-wrap: wrap;
}
.pro ul a{
	display: block;
	width: 31.3%;
	margin-right: 3%;
	margin-bottom: 3%;
	background: rgba(255,255,255,0.33);
	text-align: center;
	padding: 5% 4%;
	-webkit-transition: all .4s ease-in-out 0ms;
    transition: all .4s ease-in-out 0ms;
}
.pro ul a:nth-of-type(3n){
	margin-right: 0;
}
.pro ul a:hover{
	background: #fff;
	-webkit-box-shadow: 0 30px 36px 0 rgba(0,0,0,.12);
    -ms-box-shadow: 0 30px 36px 0 rgba(0,0,0,.12);
    -o-box-shadow: 0 30px 36px 0 rgba(0,0,0,.12);
    box-shadow: 0 30px 36px 0 rgba(0,0,0,.12);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
}
.pro ul li img{
	width: 100%;
	margin-bottom: 30px;
}
.pro ul li p{
	font-size: 1.6rem;
	color: #817d60;
	font-family: "title";
}
.pro ul li h3{
	font-size: 2rem;
	color: #1a1a1a;
	font-family: "title2";
}
.pro_d{
	padding-bottom: 10%;
}
.pro_d .title2{
	justify-content: flex-start;
	border-bottom: 1px solid #6e6b63;
	padding-bottom: 2%;
	width: 62%;
	float: right;
	margin-right: 8%;
	margin-bottom: 3%;
}
.pro_d .title2 h3{
	margin-right: 20px;
}
.pro_d .contain{
	position: relative;
}
.pro_d .right{
	float: right;
	width: 74%;
	background: #fff;
}
.pro_d .bar1{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pro_d .bar1 img{
	max-width: 100%;
}
.pro_d .bar1 .ll{
	width: 42%;
}
.pro_d .bar1 .ll img{
	width: 100%;
}
.pro_d .bar1 .rr{
	width: 53%;
}
.pro_d .bar1 .rr h3{
	font-size: 4.8rem;
	color: #1a1a1a;
	margin: 10px 0 0;
	font-weight: normal;
	font-family: "title";
}
.pro_d .bar1 .rr p{
	font-size: 2.6rem;
	color: #1a1a1a;
	line-height: 1.6;
	margin: 10px 0;
}
.pro_d .bar1 .rr p img{
	max-width: 100%;
	display: block;
	margin-top: 40px;
}
.pro_d .bar2{
	padding: 7% 0;
	width: 85%;
	margin: auto;
}
.pro_d h4{
	text-align: center;
	font-size: 3.2rem;
	color: #1a1a1a;
	margin-bottom: 3%;
	font-weight: normal;
	font-family: "title";
}
.pro_d .bar2 img{
	max-width: 100%;
	margin: auto;
	display: block;
}
.pro_d .bar3{
	width: 85%;
	margin: auto;
}
.pro_d .bar3 img{
	max-width: 100%;
	margin: auto;
	display: block;
}
.all_bars{
	padding: 4% 0 8%;
}
.title3 img{
	margin: auto;
	display: block;
	transition: all 1s;
}
.title3 h3{
	font-size: 3.6rem;
	color: #121212;
	font-family: "title";
	font-weight: normal;
	letter-spacing: 0.2rem;
	text-align: center;
	margin-top: 20px;
}
.about1{
	padding-top: 1%;
	width: 100%;
	overflow-x: hidden;
}
.about1 .contain{
	position: relative;
	margin-left: 8%;
	width: 92%;
}
.about1 .title3 img{
	position: absolute;
	left: 3%;
	top: 0%;
}
.about1 .img img{
	width: 100%;
	margin-top: 3%;
}
.about1 .box{
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.about1 .box h3{
	font-weight: normal;
	font-size: 4rem;
	letter-spacing: 0.2rem;
	color: #1a1a1a;
	-webkit-transform:translateX(10%) rotate(90deg);
	transform:translateX(10%) rotate(-90deg);
}
.about1 .box .txt{
	width: 65%;
}
.about1 .box .txt p{
	color: #1a1a1a;
	font-size: 1.8rem;
	margin: 2% 0;
}
.about1s{
	padding-top: 0;
}
.about1s .box{
	display: flex;
	justify-content: space-between;
	position: relative;
}
.about1s .ll{
	width: 43%;
	position: relative;
}
.about1s .ll::before{
	content: "";
	position: absolute;
	right: -5%;
	bottom: -7%;
	width: 80%;
	height: 62%;
	background: #817d60;
}
.about1s .ll b{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}
.about1s .txt{
	width: 48%;
}
.title4{
	font-size: 3.6rem;
	color: #1a1a1a;
	display: flex;
	align-items: center;
	margin-top: 6%;
}
.title4::before{
	content: "";
	width: 8px;
	height: 8px;
	border: 3px solid #817d60;
	margin-right: 10px;
	border-radius: 50%;
	display: block;
}
.about1s .title4{
	margin-bottom: 5%;
}
.about1s .box .txt p{
	color: #1a1a1a;
	font-size: 1.6rem;
	margin: 2% 0;
}
.about2{
	background: #f2eee6;
	position: relative;
	overflow: hidden;
}
.about2 .top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 9;
}
.about2 .title4{
	margin-top: 0;
}

.about2 .contain{
	margin-top: 5%;
	position: relative;
}
.about2 .contain img{
	max-width: 100%;
	margin: auto;
	-webkit-transition:all 0.6s ease-in-out;
	transition:all 0.6s ease-in-out;
}
.about3{
	padding: 8% 0;
}
.about3 .top{
	display: flex;
	justify-content: space-between;
}
.about3 .top .title4{
	margin-top: 0;
}
.about3 .top dl{
	position: relative;
	z-index: 3;
	display: flex;
}
.about3 .top dl dd{
	margin: 0 0 0 20px;
	width: 200px;
	line-height: 60px;
	font-size: 1.6rem;
	color: #817d60;
	border: 1px solid #817d60;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.about3 .top dl dd:hover,.about3 .top dl dd.active{
	background: #817d60;
	color: #fff;
}
.about3 .bars{
	display: none;
}
.about3 ul{
	display: flex;
	flex-wrap: wrap;
	margin-top: 2%;
}
.about3 ul li{
	width: 31.3%;
	margin-right: 3%;
	margin-top: 3%;
	background: rgba(255,255,255,0.3);
	padding: 3%;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	cursor: pointer;
}
.about3 ul li:hover{
	background: #fff;
    box-shadow: 0 30px 36px 0 rgba(0,0,0,.12);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
}
.about3 ul li:nth-of-type(3n){
	margin-right: 0;
}
.about3 ul li p{
	display: flex;
	align-items: center;
	font-size: 2rem;
	color: #817d60;
	font-family: "title";
	position: relative;
}
.about3 ul li p img{
	width: 50px;
	height: 50px;
	background: #eae6de;
	padding: 10px;
	margin-right: 10px;
	border-radius: 50%;
}
.about3 ul li p span{
	font-size: 5.2rem;
	color: #eae6de;
	font-family: "num";
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.about3 ul li h3{
	font-size: 2.4rem;
	color: #1a1a1a;
	font-weight: normal;
	font-family: "title";
	margin:12% 0;
}
.more3{
	font-size: 1.6rem;
	color: #817d60;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.more3 img{
	height: 10px;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	transform-origin: 0 0;
}
.about3 ul li:hover .more3 img{
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
.about3 ul li  b{
	display: none;
}
.news ul{
	position: relative;
	width: 80%;
	margin: auto;
	overflow: hidden;
}
.wall-column {
    display: block;
    position: relative;
    width: 50%;
    float: left;
}
.news ul .article{
	padding: 0 3%;
	padding-bottom: 25%;
	cursor: pointer;
}
.news ul .article a{
  position: relative;
  display: block;
}
.news ul .article b{
	overflow: hidden;
	display: block;
	width: 100%;
	-webkit-transition: all 1s ease-in-out 0ms;
    transition: all 1s ease-in-out 0ms,
}
.news ul .article:hover b{
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}
.news ul .article b img{
	width: 100%;
	-webkit-transition:all 0.6s ease-in-out;
	transition:all 0.6s ease-in-out;
}
.news ul .article:hover b img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.news ul .article .txt{
	padding: 4%;
	background: #fff;
	position: absolute;
	left: 50%;
	bottom: -40px;
	width: 80%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	justify-content: space-between;
}
.news ul .article h3{
	font-size: 2rem;
	color: #1a1a1a;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-family: "title";
	font-weight: normal;
	letter-spacing: 0.1rem;
}
.news ul .article span{
	font-size: 1.6rem;
	color: #6e6b63;
}
.news .more2{
	margin-left: 5%;
    position: static;
    margin-top: 8px;
}
.news ul .article:hover .more2{
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
.pages{
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 1%;
}
.pages span{
	font-size: 1.6rem;
	margin: 0 6px;
	width: 36px;
	height: 36px;
	padding: 3px;
	background: #283644;
	line-height: 32px;
	color: rgba(255,255,255,0.5);
	display: block;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	cursor: pointer;
	text-align: center;
}
.pages span i{
	width: 36px;
	display: block;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.pages span.ll i{
	-webkit-transform: rotate(180deg) translateX(3px);
	transform: rotate(180deg) translateX(3px);
}
.pages span:hover,.pages span.active{
	color: #283644;
	background: #817d60;
}
.pages span:hover i{
	color: #283644;
}
.news_d {
	text-align: center;
	padding-top: 3%;
}
.news_d .box{
	width: 980px;
	max-width: 90%;
	margin: auto;
}
.news_d .top h2{
	font-size: 4rem;
	font-family: "title";
	margin-bottom: 2%;
	font-weight: normal;
	letter-spacing: 0.1rem;
	color: #1a1a1a;
	position: relative;
}
.news_d .top span{
	font-size: 1.8rem;
	color: #1a1a1a;
	display: block;
}
.news_d .top .back{
	width: 40px;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.news_d .txt{
	margin-top: 6%;
}
.news_d .txt p{
	color: #1a1a1a;
	font-size: 1.8rem;
}
.news_d .txt img{
	width: 100%;
}
.news_d .bottom{
	margin: 5% 0 0;
	text-align: left;
}
.news_d .bottom p{
	font-size: 1.8rem;
	color: #1a1a1a;
	margin: 0 ;
}
.news_d .bottom p a{
	color: #1a1a1a;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.news_d .bottom p:hover a{
	text-decoration: underline;
	color: #817d60;
}
.contact{
	width: 100%;
	margin-top: 100px;
	overflow-x: hidden;
}
.map{
	position: relative;
	height: 600px;
}
#mapDiv{
	height: 100%;
	width: 100%;
}
.map b{
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #817d60;
	z-index: 998;
	display: block;
	opacity: 0.35;
}
.contact .mbox{
	position: absolute;
	left: 50%;
	top: 20%;
	background: #817d60;
	padding:1.5% 2%;
	cursor: default;
	z-index: 999;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	color: #fff;
	border-radius: 20px;
	max-width: 92%;
	width: 826px;
}
.map .mbox::before{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -20px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-top: 20px solid #817d60;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
}
.contact .mbox{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.contact .mbox p{
	font-size: 1.6rem;
	color: rgba(255,255,255,0.8);
	margin: 10px 0;
	position: relative;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	padding-left: 60px;
	line-height: 1.7;
}
.contact .mbox p a{
	color:rgba(255,255,255,0.8);
	display: block;
}
.contact .mbox p strong{
	font-weight: normal;
	position: absolute;
	left: 0;
	top: 0px;
	color: #fff;
}
.contact .mbox .ll{
	max-width: 75%;
}
.contact .mbox .rr{
	max-width: 28%;
	text-align: center;
	color: #fff;
	font-size: 1.4rem;
	color:rgba(255,255,255,0.8);
	letter-spacing: 1px;
}
.contact .mbox .rr img{
	display: block;
	max-width: 100%;
	margin: 0 auto 10px;
}
.contact .message{
	padding: 8% ;
	display: flex;
	justify-content: space-between;
}
.contact .message .title3 {
	width: 45%;
}
.contact .message .title3 img{
	margin: 0;
}
.contact .message .title3 h3 {
	font-size: 4rem;
	letter-spacing: 1px;
	color: #1a1a1a;
	margin-top: 15%;
	text-align: left;
	font-weight: normal;
}
.contact .message .right {
	width: 55%;
}
.contact .message .right form{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.contact .message .right input {
	border: none;
	box-shadow: none;
	background: #fff;
	line-height: 30px;
	width: 49%;
	margin: 1% 0;
	line-height: 60px;
	padding: 0 3%;
	outline: none;
	appearance: none;
	color: #6e6b63;
	font-size: 1.6rem;
}
.contact .message .right input:nth-of-type(3),.contact .message .right input:nth-of-type(4) {
	width: 100%;
}
.contact .message .right textarea {
	border: none;
	box-shadow: none;
	background: #fff;
	line-height: 30px;
	width: 100%;
	margin: 2% 0;
	padding: 3%;
	outline: none;
	appearance: none;
	color: #6e6b63;
	font-size: 1.6rem;
	height: 120px;
}
::-webkit-input-placeholder {
	color: #999;
	font-size: 15px;
	font-family: "myfont";
}
::-moz-placeholder {
	color: #999;
	font-size: 15px;
	font-family: "myfont";
}
:-ms-input-placeholder {
	color: #999;
	font-size: 15px;
	font-family: "myfont";
}
.contact .message .right .submit {
	width: 140px;
	margin: 2% 0 0;
	color: #fff;
	padding: 12px 0;
	background: #6e6b63;
	display: block;
	cursor: pointer;
	position: relative;
}
.contact .message .right .submit::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	background: #817d60;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.contact .message .right .submit:hover::before {
	width: 100%;
}
.contact .message .right .submit span{
	font-size: 1.6rem;
	letter-spacing: 1px;
	position: relative;
	z-index: 3;
	color: #fff;
}
/* 荣誉图片放大 */
.big_box{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.8);
	z-index: 9999999999;
	display: none;
}
.big_imgss{
	position: absolute;
	height: 70%;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%) scale(0);
	transform: translate(-50%,-50%) scale(0);
	transition: all 1s cubic-bezier(0.19,1,0.22,1);
	-webkit-transition: all 1s cubic-bezier(0.19,1,0.22,1);
}
.big_imgss.active{
	-webkit-transform: translate(-50%,-50%) scale(1);
	transform: translate(-50%,-50%) scale(1);
}
.big_imgss img{
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	display: none;
}
.big_imgss img:first-of-type{
	display: block;
}
.big_box .righttop{
	position: fixed;
	right: 0px;
	top:0px;
	z-index: 9;
	padding: 15px;
}
.big_box .righttop div{
	float: right;
	width: 48px;
}
.big_box .righttop img{
	width: 48px;
	padding: 6px;
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.big_box .righttop img:hover{
	opacity: 0.6 !important;
}
.big_box .btn{
	position: fixed;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0;
}
.big_box .btn i{
	color: #fff;
	display: block;
	font-size: 3rem;
	cursor: pointer;
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
	position: relative;
	z-index: 2;
}
.big_box .btn:hover i{
	color: #817d60;
}
.big_box .btn_l{
	left: 2%;
}
.big_box .btn_r{
	right: 2%;
}
.big_box .btn_r i{
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.big_box .nums{
	position: fixed;
	left: 50%;
	bottom: 3%;
	color: #fff;
	font-size: 2rem;
	letter-spacing: 0.5rem;
}
.big_box .nums span{
	color: #fff;
}
html[lang="en"] p{
	letter-spacing: 0.1px;
}
html[lang="en"] .banner .txt p {
    font-size: 2.2rem;
    line-height: 1.6;
    letter-spacing: 0rem;
}
html[lang="en"] .banner .txt h3 {
    letter-spacing: 0.1rem;
    line-height: 1.2;
}
html[lang="en"] .banner .more{
	width: 240px;
}
html[lang="en"] .more span {
    font-size: 1.7rem;
}
html[lang="en"] .index_bar1 .swiper-slide .txt{
	letter-spacing: 0.1rem;
}
html[lang="en"] .index_bar1 .swiper-slide .txt h4{
	font-size: 2.4rem;
}
html[lang="en"] .index_bar2 .swiper-slide .txt{
	width: 64%;
}
html[lang="en"] .about1 .box .txt p {
    font-size: 1.6rem;
    margin: 1.5% 0;
}
html[lang="en"] .about2 .txt p {
    font-size: 1.6rem;
    line-height: 1.4;
}
html[lang="en"] .about3 .top dl dt {
    width: 270px;
    font-size: 1.8rem;
}
html[lang="en"] .about3 .top dl dt span{
	letter-spacing: 0.1px;
}
html[lang="en"] .about3 ul li h3{
	font-size: 2.2rem;
}
html[lang="en"] .title2 h2{
	letter-spacing: 0;
}
html[lang="en"] .p_nav dt{
	letter-spacing: 0.1rem;
}
html[lang="en"] .p_nav dd{
	letter-spacing: 0.1px;
	font-size: 1.6rem;
	padding-left: 25px;
}
html[lang="en"] .p_nav dd::before {
    top: 4px;
    width: 12px;
    height: 12px;
}
html[lang="en"] .title2 h3 {
    font-size: 4.6rem;
}
html[lang="en"] .title3 h3{
	letter-spacing: 0.1rem;
}
html[lang="en"] .contact .mbox p {
    font-size: 1.6rem;
}
html[lang="en"] .contact .message .title3 h3{
	letter-spacing: 0.1px;
}
html[lang="en"] .contact .message .right .submit{
	letter-spacing: 0.1px;
}
html[lang="en"] .pro_d .bar1 .rr h3 {
    font-size: 3.6rem;
    margin: 15px 0 0;
}
html[lang="en"] .pro_d .bar1 .rr p {
    font-size: 1.9rem;
    line-height: 1.5;
    margin: 20px 0;
}
html[lang="en"] .news ul .article h3{
	font-size: 1.8rem;
	letter-spacing: 0.1px;
}