main {
	position: relative;
}

main::before {
	content: '';
	width: 100%;
	height: 500px;
	background-color: #fff;
	position: absolute;
	top: -500px;
	left: 0;
	z-index: 0;
}

/*banner*/
.banner {
	width: 100%;
	position: relative;
	background-color: #fff;
	line-height: 0;
	z-index: 1;
}

.banner .slick-arrow {
	width: 40px;
	height: 40px;
	margin: auto;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 5;
	cursor: pointer;
}

.banner .slick-arrow i {
	font-size: 30px;
	line-height: 40px;
	color: #fff;
	opacity: 0.6;
}

.banner .slick-arrow:hover i {
	opacity: 1;
	-webkit-transition: opacity .3s ease-out;
	-o-transition: opacity .3s ease-out;
	transition: opacity .3s ease-out;
}

.banner .prev {
	left: 10px;
}

.banner .next {
	right: 10px;
}

.banner .slick-dots {
	width: 100%;
	padding: 10px;
	text-align: center;
	background-color: #fff;
}

.banner .slick-dots li {
	width: 20px;
	height: 40px;
	margin: 0 2px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	cursor: pointer;
}

.banner .slick-dots li span {
	width: 100%;
	height: 2px;
	background-color: #545454;
	display: block;
}

.banner .slick-dots .slick-active span {
	background-color: #6cac0f;
}

.banner__link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}

.banner__image {
	width: 100%;
	padding-bottom: 41.66667%;
	background-color: #252525;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.banner__image picture {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
	-webkit-filter: grayscale(1);
	        filter: grayscale(1);
	-webkit-transition: all 4s ease;
	-o-transition: all 4s ease;
	transition: all 4s ease;
	z-index: 1;
}

.banner__image img {
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	   object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.banner__image::after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: #252525;
	opacity: 0.3;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.banner__word {
	width: 100%;
	height: 100%;
	padding: 4% 5%;
	-ms-flex-line-pack: end;
	    align-content: flex-end;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.banner__word-box {
	width: 100%;
	position: relative;
}

.banner__title, .banner__text {
	-webkit-transition: all 0.8s cubic-bezier(0.32, 0.34, 0, 1.62);
	-o-transition: all 0.8s cubic-bezier(0.32, 0.34, 0, 1.62);
	transition: all 0.8s cubic-bezier(0.32, 0.34, 0, 1.62);
}

.banner__title {
	margin-bottom: 10px;
	padding: 10px 0;
	display: inline-block;
	letter-spacing: 0;
	font-size: 50px;
	font-size: 3.125rem;
	line-height: 3.75rem;
	color: #fff;
	opacity: 0;
	-webkit-transform: translateX(-50px);
	    -ms-transform: translateX(-50px);
	        transform: translateX(-50px);
}

.banner .slick-active .banner__image picture {
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	-webkit-filter: grayscale(0);
	        filter: grayscale(0);
}

.banner .slick-active .banner__word .banner__word-box .banner__title, .banner .slick-active .banner__word .banner__word-box .banner__text {
	opacity: 1;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}

.banner .slick-active .banner__word .banner__word-box .banner__title {
	-webkit-transition: all 0.5s cubic-bezier(0.32, 0.34, 0, 1.62) 0.5s;
	-o-transition: all 0.5s cubic-bezier(0.32, 0.34, 0, 1.62) 0.5s;
	transition: all 0.5s cubic-bezier(0.32, 0.34, 0, 1.62) 0.5s;
}

@media only screen and (max-width: 1280px) {
	.banner__word-box {
		padding: 0;
	}
	.banner__title {
		font-size: 40px;
		font-size: 2.5rem;
		line-height: 2.5rem;
		margin-bottom: 0px;
	}
}

@media only screen and (max-width: 768px) {
	.banner__title {
		font-size: 35px;
		font-size: 2.188rem;
		line-height: 3.75rem;
	}
}

@media only screen and (max-width: 480px) {
	.banner__title {
		font-size: 25px;
		font-size: 1.563rem;
		line-height: 2.5rem;
		font-weight: 700;
	}
}

/*banner---end*/
/*category*/
.category {
	width: 100%;
	padding-bottom: 50px;
	padding-top: 30px;
	background-color: #fff;
}

.category-word {
	height: 100%;
	padding-top: 30px;
	position: relative;
	z-index: 1;
}

.category-word::after {
	content: '';
	width: 72%;
	height: calc(100% - 60px);
	background-color: #ffeadb;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.category-word .more {
	margin-left: 15%;
}

.category-text {
	margin-bottom: 50px;
	padding: 0 15%;
}

.category__list {
	width: 100%;
	position: relative;
}

.category__list .slick-arrow {
	width: 60px;
	height: 60px;
	background-color: #90c31f;
	border-radius: 38px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: absolute;
	bottom: 25%;
	z-index: 3;
	cursor: pointer;
}

.category__list .slick-arrow i {
	color: #fff;
	font-size: 30px;
}

.category__list .category-list__next {
	left: -11.5%;
}

.category__list .category-list__prev {
	left: calc(-11.5% - 75px);
}

.category__item {
	width: 33.333%;
	padding-left: 15px;
	position: relative;
}

.category__item:hover .category__img img {
	-webkit-transform: scale(1.15);
	    -ms-transform: scale(1.15);
	        transform: scale(1.15);
}

.category__item:hover .category__cover {
	opacity: 1;
}

.category__item:hover .category__name::after {
	width: 22px;
}

.category__link {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}

.category__img {
	width: 100%;
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
}

.category__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	-webkit-transition: -webkit-transform 1.5s ease-out;
	transition: -webkit-transform 1.5s ease-out;
	-o-transition: transform 1.5s ease-out;
	transition: transform 1.5s ease-out;
	transition: transform 1.5s ease-out, -webkit-transform 1.5s ease-out;
}

.category__img .category__cover {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: rgba(41, 84, 0, 0.45);
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0;
	-webkit-transition: opacity .3s ease-out;
	-o-transition: opacity .3s ease-out;
	transition: opacity .3s ease-out;
}

.category__img .category__cover span {
	width: 60px;
	height: 60px;
	text-align: center;
	border-radius: 30px;
	border: 2px solid #fff;
	display: block;
	font-size: 15px;
	font-size: 0.938rem;
	line-height: 3.5rem;
}

.category__name {
	padding: 15px 5px 15px 35px;
	position: relative;
	font-size: 20px;
	font-size: 1.25rem;
	line-height: 1.875rem;
	font-weight: 700;
}

.category__name::before, .category__name::after {
	content: '';
	width: 22px;
	height: 2px;
	position: absolute;
	left: 0;
	top: 30px;
}

.category__name::before {
	width: 22px;
	background-color: #90c31f;
	z-index: 0;
}

.category__name::after {
	width: 0;
	background-color: #d9204c;
	z-index: 1;
	-webkit-transition: width .3s ease-out;
	-o-transition: width .3s ease-out;
	transition: width .3s ease-out;
}

@media only screen and (max-width: 1440px) {
	.category-word .more {
		margin-left: 8%;
	}
	.category-text {
		margin-bottom: 50px;
		padding: 0 8%;
	}
}

@media only screen and (max-width: 960px) {
	.category {
		margin-bottom: 0;
	}
	.category__item {
		padding: 0 8px;
	}
	.category-word {
		margin-bottom: 50px;
		padding-top: 0;
	}
	.category-word .more {
		margin-left: 30px;
	}
	.category-word::after {
		display: none;
	}
	.category-text {
		margin-bottom: 15px;
		padding: 0 30px;
	}
	.category__list {
		margin-bottom: 30px;
		padding-bottom: 80px;
	}
	.category__list .slick-arrow {
		bottom: 0;
	}
	.category__list .category-list__prev {
		left: calc(50% - 70px);
	}
	.category__list .category-list__next {
		left: calc(50% + 10px);
	}
}

@media only screen and (max-width: 480px) {
	.category__list {
		margin-bottom: 30px;
		padding-bottom: 50px;
	}
	.category__list .slick-arrow {
		width: 40px;
		height: 40px;
		bottom: 0;
	}
	.category__list .slick-arrow i {
		font-size: 25px;
	}
	.category__list .category-list__prev {
		left: calc(50% - 50px);
	}
}

/*about*/
.about {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.about__img {
	width: 100%;
	height: 685px;
	overflow: hidden;
}

.about__img img {
	width: 100%;
	height: 100vh;
	-o-object-fit: cover;
	   object-fit: cover;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}

.about__word {
	width: 100%;
	max-width: 960px;
	height: 100%;
	margin: 0 0 0 auto;
	padding: 20px 0 20px 10%;
	padding-left: 15%;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-line-pack: center;
	    align-content: center;
	background-image: -webkit-gradient(linear, right top, left top, color-stop(60%, rgba(60, 48, 40, 0.6)), to(rgba(60, 48, 40, 0)));
	background-image: -o-linear-gradient(right, rgba(60, 48, 40, 0.6) 60%, rgba(60, 48, 40, 0));
	background-image: linear-gradient(to left, rgba(60, 48, 40, 0.6) 60%, rgba(60, 48, 40, 0));
	color: #fff;
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	z-index: 2;
}

.about__text {
	width: 100%;
	padding-right: 70px;
	margin-bottom: 50px;
}

.about__more {
	padding-right: 70px;
}

.about__more .more {
	border-color: #fff;
	color: #fff;
}

@media only screen and (max-width: 768px) {
	.about__img {
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: -1;
	}
	.about__word {
		position: relative;
		padding: 50px 0 50px 40px;
		background-image: -webkit-gradient(linear, right top, left top, color-stop(60%, rgba(120, 55, 12, 0.6)), to(rgba(120, 55, 12, 0.6)));
		background-image: -o-linear-gradient(right, rgba(120, 55, 12, 0.6) 60%, rgba(120, 55, 12, 0.6));
		background-image: linear-gradient(to left, rgba(120, 55, 12, 0.6) 60%, rgba(120, 55, 12, 0.6));
	}
	.about__text {
		padding-right: 40px;
	}
	.about__more {
		padding-right: 40px;
	}
}

@media only screen and (max-width: 480px) {
	.about__word {
		padding: 50px 0 50px 20px;
	}
	.about__text {
		padding-right: 20px;
	}
	.about__more {
		padding-right: 20px;
	}
}
