@charset "utf-8";
.top {
	position: relative;
	z-index: 1;
}
.banner-swiper {
	height: 100vh;
	width: 100%;
}
.banner-swiper .banner-slide {
	display: flex;
	justify-content: center;
	flex-direction: column;
	overflow: hidden;
}
.banner-swiper .banner-background {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: 1s 2.5s;
    transform: perspective(1000px) translate3d(0, 0, 100px);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.banner-swiper .swiper-slide.swiper-slide-active .banner-background {
	transition: 5s 0s;
    transform: perspective(1000px) translate3d(0, 0, 0px);
}
.banner-bg-ss {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.1);
}
.banner-text {
	z-index: 10;
	position: absolute;
	right: 10%;
	bottom: 25%;
}
.banner-text h1 {
	font-size: 36px;
	color: #fff;
}
.banner-text h2 {
    margin-top: 1rem;
    color: #fff;
    font-size: 20px;
}
.banner-text * {
    transition-delay: transform 2s, opacity 0s;
    transition-duration: 2s;
    transform: translate3d(0, 80px, 0);
    opacity: 0;
}
.swiper-slide.banner-slide.swiper-slide-active .banner-text * {
    transform: translate3d(0, 0px, 0);
    opacity: 1;
}
.swiper-slide.banner-slide.swiper-slide-active .banner-text *:nth-child(1) {
    transition-delay: 0.5s;
}
.swiper-slide.banner-slide.swiper-slide-active .banner-text *:nth-child(2) {
    transition-delay: 0.7s;
}
.banner-swiper .swiper-pagination .swiper-pagination-bullet-active {
	background: #987e45;
}
.Scroll-tip {
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100px;
    color: #fff;
    text-align: center;
}
.Tipss {
    text-transform: uppercase;
    font-size: 0.825rem;
}
.Tipss span {
    display: block;
}
.tip_anim {
    display: inline-block;
    margin: 0.75rem 0;
    height: 30px;
}
.tip_anim span {
    display: inline-block;
    width: 1px;
    height: 100%;
    background: #fff;
    animation-name: scrollTip;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.82, 0.24, 0.25, 1);
}
@keyframes scrollTip {
  0% {
    transform: scale(1, 0);
    transform-origin: top;
  }
  49% {
    transform: scale(1, 1);
    transform-origin: top;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: bottom;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: bottom;
  }
}


.index-about {
	background-image: url(../../images/image1.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}
.index-about .index-about-wrapper {
	display: flex;
	justify-content: space-between;
}
.index-about .about-text {
	width: 45%;
}
.index-about .about-image {
	width: 48%;
}
.about-text .hd {
	margin: 30px 0;
}
.about-text .hd .title {
	color: #c99a5e;
	font-size: 32px;
	font-weight: bold;
}
.about-text .hd .sub-title {
	color: #999;
	font-size: 16px;
	margin-left: 30px;
}
.about-text .bd {
	font-size: 16px;
	line-height: 2;
}
.about-text a.more {
	width: 120px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	border-radius: 18px;
	font-size: 16px;
	color: #c99a5e;
	border: 1px solid #c99a5e;
}
.about-text a.more:hover {
	color: #fff;
	background-color: #c99a5e;
}

.index-product {
	background: url(../../images/image2.jpg) no-repeat center center;
	background-size: cover;
	padding: 100px 0 50px;
}
.index-product .module-title {
	text-align: center;
}
.index-product .product-list {
	margin-top: 30px;
}
.index-product .product-list ul {
	display: flex;
	flex-wrap: wrap;
}
.product-list li {
	width: 48.5%;
	margin-bottom: 3%;
	overflow: hidden;
}
.product-list li:nth-child(even) {
	margin-left: 3%;
}
.product-list li .img {
	overflow: hidden;
}
.product-list li img {
	width: 100%;
	transition: all 1s;
}
.product-list li:hover img {
	transform: scale(1.1);
}
.product-list li .text {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	background-color: #fff;
	color: #c99a5e;
	font-size: 16px;
	position: relative;
	transition: all	0.6s;
}
.product-list li .text span {
	position: relative;
	z-index: 2;
}
.product-list li .text span:before {
	position: absolute;
	left: -50px;
	top: 50%;
	content: " ";
	width: 30px;
	height: 1px;
	background-color: #c99a5e;
	transition: all	0.6s;
}
.product-list li .text span:after {
	position: absolute;
	right: -50px;
	top: 50%;
	content: " ";
	width: 30px;
	height: 1px;
	background-color: #c99a5e;
	transition: all	0.6s;
}
.product-list li .text i {
	position: absolute;
	left: 0;
	display: inline-block;
	width: 0;
	height: 100%;
	background-color: #c99a5e;
	transition: width	0.6s;
}
.product-list li:hover .text i {
	width: 100%;
}
.product-list li:hover .text {
	color: #fff;
}
.product-list li:hover .text span:before, .product-list li:hover .text span:after {
	background-color: #fff;
}

.index-space .space-slide {
	display: flex;
	justify-content: space-between;
}
.index-space .space-text {
	width: 28%;
}
.index-space .space-text .module-title {
	margin: 50px 0 30px;
}
.index-space .space-text .line {
	width: 20px;
	height: 1px;
	background-color: #c99a5e;
	display: inline-block;
}
.index-space .space-text h3 {
	font-size: 24px;
	color: #333;
	line-height: 1;
	margin: 40px 0 30px;
}
.index-space .space-text .desc {
	color: #999;
	line-height: 1.8;
}
.index-space .space-text a.more {
	width: 120px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	border-radius: 18px;
	font-size: 15px;
	color: #c99a5e;
	border: 1px solid #c99a5e;
}
.index-space .space-text a.more:hover {
	color: #fff;
	background-color: #c99a5e;
}
.index-space .space-image {
	width: 65%;
}
.index-space .space-image img {
	width: 100%;
}

.index-space .space-text a {
	width: 120px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	border-radius: 18px;
	font-size: 15px;
	color: #c99a5e;
	border: 1px solid #c99a5e;
}
.index-space .space-text a:hover {
	color: #fff;
	background-color: #c99a5e;
}
.space-swiper .swiper-pagination {
	position: absolute;
	right: 0;
	left: auto;
	width: 65%;
}
.space-swiper .swiper-pagination .swiper-pagination-bullet-active {
	background: #987e45;
}
.space-swiper .swiper-arrow {
	width: 180px;
	height: 18px;
	position: absolute;
	left: 0;
	bottom: 0;
}
.space-swiper .swiper-button-prev:after, .space-swiper .swiper-button-next:after {
	font-size: 20px;
	color: #000;
}

.index-news .module-title {
	text-align: center;
}
.index-news .module-cate {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 30px auto 40px;
}
.index-news .module-cate li {
	width: 10%;
	text-align: center;
}
.index-news .module-cate li a {
	padding-bottom: 10px;
	border-bottom: 2px solid #fff;
	color: #999;
	font-size: 16px;
}
.index-news .module-cate li a:hover, .index-news .module-cate li a.cur {
	border-bottom-color: #c99a5e;
	color: #c99a5e;
}
.index-news .news-list {
	display: flex;
	justify-content: space-between;
}
.index-news .news-item {
	width: 30%;
}
.index-news .news-item .news-img {
	display: block;
	overflow: hidden;
	background-color: #000;
}
.index-news .news-item img {
	width: 100%;
	opacity: 0.5;
}
.index-news .news-item:hover img {
	opacity: 1;
}
.index-news .news-item .title {
	margin: 15px 0;
	font-size: 18px;
}
.index-news .news-item .desc {
	line-height: 1.5;
	margin-top: 15px;
	color: #666;
}
.index-news .news-item:hover .title a {
	color: #c99a5e;
}
.index-news .news-item span {
	color: #999;
	background: url(../../images/time.png) no-repeat left center;
	padding-left: 20px;
}
.index-news .news-more {
	margin-top: 50px;
}
.index-news .news-more a {
  	width: 120px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	border-radius: 18px;
	font-size: 15px;
	color: #c99a5e;
	border: 1px solid #c99a5e;
	margin: 0 auto;
}
.index-news .news-more a:hover {
	color: #fff;
	background-color: #c99a5e;
}
























@media screen and (max-width: 1600px){
}

@media screen and (max-width: 1366px){
	.about-text .hd {
		margin: 20px 0;
	}
	.about-text .hd .title {
		color: #c99a5e;
		font-size: 28px;
		font-weight: bold;
	}
	.about-text .hd .sub-title {
		color: #999;
		font-size: 16px;
		margin-left: 30px;
	}
	.about-text .bd {
		font-size: 14px;
		line-height: 1.8;
	}
	.about-text a.more {
		font-size: 14px;
		margin-top: 30px;
	}
	.space-swiper .swiper-arrow {
		display: none;
	}
}

@media screen and (max-width: 1200px){
	.index-space .space-text .module-title, .index-space .space-text .line {
		display: none;
	}
}