@charset "utf-8";
/* CSS Document */
.mainArea{
	padding: 0;
}
@-webkit-keyframes loadleave{
    0%   {

	}
	100%   {

top:-100%;
	}
}
/* Standard syntax */
@keyframes loadleave {
    0%   {


	}
	100%   {

top:-100%;
	}
}

.loaderbox{
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: 99999;
	
	-webkit-animation-name: loadleave; /* Chrome, Safari, Opera */
	-webkit-animation-delay: 6.7s; 
	-webkit-animation-duration: 0s; /* Chrome, Safari, Opera */
	-webkit-animation-fill-mode: forwards;
	animation-name: loadleave;
	animation-duration: 0s;
	animation-delay: 6.7s; 
	animation-fill-mode: forwards;
}

@-webkit-keyframes loadbefore{
    0%   {

	}
	80%{
	left:-50%;
	}
	100%   {

	}
}
/* Standard syntax */
@keyframes loadbefore {
    0%   {

	}
	80%{
	left:-50%;
	}
	100%   {

	}
}


.loaderbox:before{
	content: "";
	width: 50vw;
	height: 100vh;
	display: block;
	z-index: 10;
	background: #fff;
	top: 0;
	left: 0;
	position: absolute;

	-webkit-animation-name: loadbefore; /* Chrome, Safari, Opera */
	-webkit-animation-delay: 3s; 
	-webkit-animation-duration: 5s; /* Chrome, Safari, Opera */
	-webkit-animation-fill-mode: forwards;
	animation-name: loadbefore;
	animation-duration: 5s;
	animation-delay: 3s; 
	animation-fill-mode: forwards;
}



@-webkit-keyframes loadafter{
    0%   {


	}
	100%   {

right:-50vw;
	}
}
/* Standard syntax */
@keyframes loadafter {
    0%   {

	}
	100%   {

right:-50vw;
	}
}
.loaderbox:after{
	content: "";
	width: 50vw;
	height: 100vh;
	display: block;
	z-index: 10;
	background: #fff;
	bottom: 0;
	right: 0;
	position: absolute;
	

	-webkit-animation-name: loadafter; /* Chrome, Safari, Opera */
	-webkit-animation-duration: 3.5s; /* Chrome, Safari, Opera */
	-webkit-animation-delay: 3s; 
	-webkit-animation-fill-mode: forwards;
	animation-name: loadafter;
	animation-duration: 3.5s;
	animation-delay: 3s; 
	animation-fill-mode: forwards;
}
.loaderbox img{
	z-index: 20;
	width: 260px;
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-animation-name: loadlogo; /* Chrome, Safari, Opera */
	-webkit-animation-duration: 6s; /* Chrome, Safari, Opera */
	-webkit-animation-fill-mode: forwards;
	animation-name: loadlogo;
	animation-duration: 6s;
	animation-fill-mode: forwards;

}
@-webkit-keyframes loadlogo {
    0%   {
		opacity: 0;

	}
	40%   {
		opacity: 1;
		margin-top: -20px;

	}
	80%   {
		opacity: 1;
		margin-top: -20px;

	}
	100%   {
		opacity: 0;

	}
}
/* Standard syntax */
@keyframes loadlogo {
  0%   {
		opacity: 0;

	}
	40%   {
		opacity: 1;
		margin-top: -20px;

	}
	80%   {
		opacity: 1;
		margin-top: -20px;

	}
	100%   {
		opacity: 0;

	}
}





.featureArea{
	padding:60px 0;
	overflow: hidden;
}
.featureArea2 {
	padding:0 0 60px;
}
.featureArea .slick-prev {
    left: 5px;
    z-index: 30;
}
.featureArea .slick-next {
    right: 5px;
    z-index: 30;
}
.slick-prev:before, .slick-next:before{
color:#c0ad7b !important;
}
.featureArea ul li{
	padding:50px 30px;
}
.featureArea ul li .item{
	overflow: hidden;
	background: #fff;
	padding: 30px 20px 30px 20px;
	box-shadow: -4px -1px 20px 5px rgba(0, 0, 0, 0.05);
	position:relative;
}
.featureArea ul li .item a.classitem{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display:block;
	z-index: 50;
	color:#fff;
	font-size: 32px;
	font-family: 'cwTeXFangSong';
	transition: 0.9s;
}

.feaureArea ul li:hover .item a.classitem{
	transition: 0.9s;
}


.featureArea ul li .item a.classitem:before{
	display: block;
	content: "";
	position:absolute;
	z-index: 10;
	width: 500px;
	height: 500px;
	background:#ac9f88;
	border-radius: 99em;
	transition: 2.9s;
	transform: translate(100%,100%) scale(0.5);
	
}
.featureArea ul li:hover .item a.classitem:before{
	transform: translate(0%,0%) scale(2.5);
	-webkit-animation-name: goodsbg;
	-webkit-animation-duration: 1.6s; 
	-webkit-animation-fill-mode: forwards;
	animation-name: goodsbg;
	animation-duration: 1.6s;
	animation-fill-mode: forwards;
	transition: 1.9s;
	
}
.featureArea ul li .item a.classitem span{
	
	position:absolute;
	z-index: 15;
	opacity: 0;
	transition: 0.6s;
	top: 50%;
	left: 50%;
	display: block;
	transform: translate(-50%,-50%);

}
.featureArea ul li:hover .item a.classitem span{
	opacity: 1;
	transition: 0.6s;
	transition-delay: 0.8s;
}
.featureArea ul li .item .Img img{
	width: 100%;
	display: block;
}
.featureArea ul li .item b.code{
	line-height: 40px;
	height: 40px;
	color: #777;
	font-weight: normal;
	font-size: 13px;
	display: block;
	text-align: right;
	padding-right: 40px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow : ellipsis;
}
.featureArea ul li .item .Txt{
	padding:20px 40px 0 0;
}
.featureArea ul li .item .Txt h3,
.featureArea ul li .item .Txt h3 a{
	font-weight: normal;
	line-height: 1.5;
color:#785f4d;
	font-size: 25px;
	font-family: 'cwTeXFangSong';
}
.featureArea ul li .item .Txt div.spec{
	color:#777;
	font-size: 13px;
	line-height: 20px;
	height: 20px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow : ellipsis;
}
.featureArea ul li .item .Txt p{
	color:#a1a1a1;
	font-size: 15px;
	line-height: 20px;
	overflow: hidden;
	height: 40px;
	margin:25px 0;
}
.featureArea ul li .item .Txt div.price{
	border-top:1px solid #ededed;
	padding-top:10px;
	margin-top: 10px;
	color:#785f4d;
	font-size:15px;
}
.newsArea{
	padding:0px 0 200px;
}
.newsArea .wrap{
	width: 1580px;
	position:relative;
}

.newsArea ul li{
	position: relative;
	/*padding:50px 0 50px;*/
	margin: 0 0 50px;
	background:#fff;
	box-shadow: -4px -1px 20px 5px rgba(0, 0, 0, 0.05);
}
/*
.newsArea ul li:nth-child(even) .Img{
	right:0;
	left: auto;
}
.newsArea ul li:nth-child(even) .Txt{
	float: left;
}
*/
.newsArea ul li .Img{
	/*width: 550px;
	position:absolute;
	z-index: 10;
	top: 20px;
	left: 0;*/
	width: 35%;
	float: left;
}
.newsArea ul li .Img img{
	width: 100%;
	display: block;
}
.newsArea ul li .Txt{
	/*min-height: 250px;*/
	z-index: 5;
	/*background:#fff;*/
	float: right;
	width:65%;
	padding:80px;
	/*box-shadow: -4px -1px 20px 5px rgba(0, 0, 0, 0.05);*/
}
.newsArea ul li .Txt .date{
	margin:0 40px 0 0;
	float: left;
	font-family: 'Jaldi', sans-serif;
	font-size: 25px;
	color:#777777;
	letter-spacing: 2.5px;
	line-height: 1;
}
.newsArea ul li .Txt .date strong{
	letter-spacing: 2px;
	font-weight: normal;
	font-size: 45px;
	display: block;
}
.newsArea ul li .Txt .Area{
	float: left;
	width:calc(100% - 220px);
}
.newsArea ul li .Txt h3,
.newsArea ul li .Txt h3 a{
	font-family: 'cwTeXFangSong';
	font-size:25px;
	color:#202020;
	font-weight: normal;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow : ellipsis;
}
.newsArea ul li .Txt p{
	display: block;
	color:#a1a1a1;
	font-size: 15px;
	line-height: 25px;
	height: 50px;
	overflow:hidden;
	margin:30px 0;
}
.aboutArea{

	background: url(../images/aboutimg.jpg) no-repeat center top;
	background-size:cover;
	padding:150px 0;		
}
.aboutArea .wrap{
	width: 1580px;
	position:relative;}
.aboutArea .Area{
	float: left;
	width: 35%;
}
.aboutArea .Area .Img{
	padding-bottom: 60px;
	text-align: center;
}
.aboutArea .Area .Img img{
	max-width: 100%;
}
.aboutArea .Area .Txt{
	padding-bottom: 60px;
	text-align: center;
	color:#202020;
	font-size: 15px;
	letter-spacing: 1px;
	line-height: 2;
}

.aboutArea .btn{
	text-align: center;
}

.adArea{
	float: right;
	width:65%;
}
.adArea ul{
	margin-top:-200px;
}
.adArea ul li{
	    box-shadow: -4px -5px 20px 3px rgba(0, 0, 0, 0.17);
	overflow: hidden;
	float: left;
	width: 200px;
	position: relative;
	margin-right: 200px;
}
.adArea ul li:nth-child(3){
	margin-left:200px;
}
.adArea ul li:nth-child(7){
	margin-right:0px;
}
.adArea ul li .Img{
	position: relative;
}
.adArea ul li .Img img{
	width: 100%;
	display: block;
}
.adArea ul li h4{
	font-weight: normal;
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	font-family: 'cwTeXFangSong';
	top: 0%;
	left: 0%;
	color:#fff;
	font-size:25px;
	transition: 0.6s;
}

.adArea ul li h4 a{
	display: block;
	top:50%;
	left: 50%;
	transform:translate(-50%,-50%);
	color:#fff;
	position: absolute;
	z-index: 10;
	opacity: 0;
	transition: 0.9s;


}
.adArea ul li:hover h4 a{
	opacity: 1;
	transition: 2s;
	transition-delay: 1;
}
@-webkit-keyframes adAreabg {
    0%   {
	width: 0;
	height: 0;
		border-radius: 99em;
		bottom: -50%;
	right: -50%;
	}
	100%   {
	width: 100%;
	height: 100%;
		border-radius: 0em;
		bottom: 0%;
	right: 0%;
	}
}
/* Standard syntax */
@keyframes adAreabg {
    0%   {
	width: 0;
	height: 0;
border-radius: 99em;
		bottom: -50%;
	right: -50%;
	}
	100%   {
	width: 100%;
	height: 100%;
border-radius: 0em;
		bottom: 0%;
	right: 0%;
	}
}
.adArea ul li h4:before{
	content: "";
	z-index: 5;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: 0.9s;	
	background: url(../images/linkbg.jpg);
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
}

.adArea ul li:hover h4:before{
	content: "";
	z-index: 5;
	opacity: 1;
	transition: 0.9s;
	background: url(../images/linkbg.jpg);
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	-webkit-animation-name: adAreabg; /* Chrome, Safari, Opera */
	-webkit-animation-duration: 1.5s; /* Chrome, Safari, Opera */
	-webkit-animation-fill-mode: forwards;
	animation-name: adAreabg;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
}

@media (max-width: 1600px){
	.newsArea{
	padding:0px 0 100px;
}
.aboutArea .wrap{
	width: calc(100% - 40px);
	margin:0 20px;
}
	
/*
.newsArea ul li .Img{
width:calc(40% + 40px);
}
.newsArea ul li .Txt{
	width:60%;
}
*/

.newsArea ul li .Img{
	width: 40%;
}
.newsArea ul li .Txt{
	width:60%;
}
	
.newsArea .wrap{
	width: calc(100% - 40px);
	margin:0 20px;
	}
	
.aboutArea .Area {
    float: left;
    width: 40%;
}
.adArea{
	width:60%;
}
.adArea ul li{
	    box-shadow: -4px -5px 20px 3px rgba(0, 0, 0, 0.17);
	overflow: hidden;
	float: left;
	width: 200px;
	position: relative;
	margin-right: 200px;

}
.adArea ul li:nth-child(4){
	margin-right:0px;
}
.adArea ul li:nth-child(7){
	margin-left:200px;
	margin-right:0px;
}	
}


@media (max-width: 1400px){
	
.aboutArea .Area {

    width: calc(35% - 30px);
}
.adArea ul li{
	width: 25%;
	margin-right: 25%;
}
.adArea ul li:nth-child(3){
	margin-left:25%;
}
.adArea ul li:nth-child(7){
	margin-right:0px;
    margin-left: 25%;
}
	
}


@media (max-width:1200px){
	.adArea ul{
	margin-top:0px;
}

}

@media (max-width:1023px){
.newsArea ul li .Txt .Area {
    float: none;
    width: 100%;
	clear: both;
	padding-top:30px;
}
}

@media (max-width: 900px){
	.aboutArea .Area {
    width: 100%;
}
.adArea{
	width:100%;
}
	.adArea ul {
    margin-top: 80px;
}
}


@media(max-width:767px){
	.featureArea {
    padding: 20px 0px 20px;
}
.featureArea2 {
	padding:0 0 20px;
}
.aboutArea {
    padding: 80px 0;
}
	.newsArea {
    padding: 0px 0 50px;
}
	
	.newsArea ul li {
    position: relative;
    /*padding: 50px 0 0 0;*/
    margin: 0 0 20px;
}
	.newsArea ul li .Img{
		position:relative;
		top:auto;
		width:100%;
}
.newsArea ul li .Txt{
	width:100%;
	    padding: 40px;
}
.newIcon {
    font-size: 12px;
    padding: 15px 12px 15px;
    margin: 0;
    letter-spacing: 2px;
}
}

@media(max-width:480px){
	
.adArea ul li h4 {
   font-size: 17px;
}
}



.featureArea .Img img {
  width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 350px;
}

@media (max-width: 1600px) {
.featureArea .Img img {
    height: 300px;
  }
}
@media (max-width: 1200px) {
.featureArea .Img img {
    height: 250px;
  }
}
@media (max-width: 768px) {
.featureArea .Img img {
    height: 300px;
  }
}
@media (max-width: 480px) {
.featureArea .Img img {
    height: 250px;
  }
}