/*common start*/
body, div, ul, li, a, img, p, dl, dt, dd, h1, h2, h3, h4, span, input, button, textarea, dl, dt {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	border: 0;
	list-style: none;
	font-family: normal;
	font-weight: normal;
}

body {
	font-size: 14px;
	color: #111;
	overflow-x: hidden;
}

a img {
	border: 0;
}

em {
	font-style: normal;
}

body.head_on {
	overflow: hidden;
}

a {
	text-decoration: none;
	color: #333;
	transition: all .3s;
}

* {
	box-sizing: border-box;
}

input, select, textarea {
	outline: none;
}

.clear {
	margin: 0;
	padding: 0;
	font-size: 0;
	clear: both;
}

.wapper {
	width: 100%;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
}

@media only screen and (min-width: 1200px) {
	.wapper {
		width: 1200px;
		margin: 0 auto;
	}

	.footer_bot {
		text-align: center;
		margin: 0 auto;
		color: #fff
	}
}

:root {
	--primary-color: #692a4d;
	--font-color: #666;
	--main-white: #fff;
}





/* ÃƒÆ’Ã‚Â¨Ãƒâ€šÃ‚Â½Ãƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢Ãƒâ€šÃ‚Â­ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂºÃƒâ€šÃ‚Â¾ÃƒÆ’Ã‚Â©ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒâ€šÃ‚Â¨ */
.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

	.swiper-slide img {
		width: 100%;
	}

.inner h1 {
	font-size: 25px;
	font-weight: bold;
	color: #692a4d;
}

.overflow1 {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	width: 100%;
	display: block;
}

.overflow2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.overflow3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}


/* ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â¯Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã‚Â¨Ãƒâ€¹Ã¢â‚¬Â Ãƒâ€šÃ‚Âª */
.headerbox {
	width: 100%;
	margin: 0 auto;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	background: #ffffff;
	/*box-shadow: 0px 3px 3px #b8bbba;*/
}

	.headerbox.active {
		background-color: #fff;
	}

	.headerbox .header {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

		.headerbox .header .menu ul li {
			position: relative;
			display: inline-block;
			padding: 25px 25px;
		}

			.headerbox .header .menu ul li a {
				font-weight: normal;
				font-size: 18px;
				line-height: 1;
				padding: 10px 0;
				color: #1a1a1a;
				display: flex;
				position: relative;
				text-decoration: none;
			}

		.headerbox .header .menu > ul > li:hover > a, .headerbox .header .menu > ul > li.curr > a {
			color: #692a4d;
			border-bottom: 1px solid #692a4d;
		}

		.headerbox .header .menu ul li .sub_menu {
			min-width: 200%;
			position: absolute;
			top: 140%;
			left: -50%;
			z-index: 10;
			visibility: hidden;
			opacity: 0;
			background: white;
			transition: all 400ms ease;
		}

		.headerbox .header .menu ul li:hover > dl {
			opacity: 1;
			visibility: visible;
			top: 100%;
		}

		.headerbox .header .menu ul li dd {
			position: relative;
			display: block;
			text-align: center;
			transition: all 400ms ease;
		}

		.headerbox .header .menu dl dd > .three_menu {
			min-width: 100%;
			position: absolute;
			left: 100%;
			z-index: 10;
			visibility: hidden;
			opacity: 0;
			background: white;
			transition: all 400ms ease;
		}

		.headerbox .header .menu dl dd:hover > .three_menu {
			opacity: 1;
			visibility: visible;
			top: 0px;
		}

		.headerbox .header .menu ul li dl dd a {
			font-size: 16px;
			line-height: 20px;
			font-weight: 500;
			color: #333;
			text-align: left;
			display: block;
			padding: 15px 25px 15px 25px;
			position: relative;
			text-decoration: none;
			outline: none;
			text-align: center;
			text-transform: none;
			transition: all 400ms ease;
			border-bottom: 1px solid #f4f4f4;
		}

		.headerbox .header .menu ul li dl dd:hover {
			background-color: var(--primary-color);
		}

			.headerbox .header .menu ul li dl dd:hover > a {
				color: #fff;
			}





/*mMenu*/
.m_header {
	width: 100%;
}

.sp_header {
	height: 70px;
	overflow: hidden;
	background: var(--main-white);
	position: fixed;
	z-index: 999;
	width: 100%;
	display: none;
	top: 0;
}

.sp_logo {
	float: left;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 10px;
}

	.sp_logo img {
		margin: auto;
		max-height: 50px;
	}

.sp_nav {
	width: 50px;
	float: right;
	position: relative;
	cursor: pointer;
	height: 30px;
	margin-top: 25px
}
	/* ÃƒÆ’Ã‚Â¦Ãƒâ€šÃ‚Â¨Ãƒâ€šÃ‚ÂªÃƒÆ’Ã‚Â¦Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚Â  */
	.sp_nav
	span {
		display: block;
		background: #000000;
		width: 30px;
		height: 3px;
		position: absolute;
		left: 10px;
		transition: all ease 0.35s
	}

		.sp_nav span:nth-of-type(1) {
			top: 0px
		}

		.sp_nav span:nth-of-type(2) {
			top: 10px
		}

		.sp_nav span:nth-of-type(3) {
			top: 20px
		}

.sp_nav_se span:nth-of-type(1) {
	top: 10px;
	transform: rotate(45deg)
}

.sp_nav_se span:nth-of-type(2) {
	width: 0
}

.sp_nav_se span:nth-of-type(3) {
	top: 10px;
	transform: rotate(-45deg)
}

.sjj_nav {
	position: fixed;
	z-index: 9999;
	background: var(--main-white);
	width: 100%;
	height: calc(100% - 70px);
	font-size: 14px;
	line-height: 40px;
	top: 70px;
	left: 0;
	overflow: auto;
	overflow-x: hidden;
	transition: top ease 0.35s;
	display: none;
	transition: all ease 0.35s
}

.nav_show {
	display: block;
}

.sjj_nav ul li i {
	position: absolute;
	top: 5px;
	right: 0px;
	height: 30px;
	padding: 0px 7px 0 7px;
}

	.sjj_nav ul li i svg {
		transform: rotate(-90deg);
		transition: all ease 0.35s
	}

.sjj_nav ul li .sjj_nav_i_se svg {
	transform: rotate(0deg)
}

.sjj_nav ul li {
	border-bottom: 1px dashed #ddd;
	;
	position: relative;
	line-height: 45px;
	font-size: 16px
}

.sjj_nav > ul > li:last-child {
	border-bottom: 1px dashed #ddd;
}

.sjj_nav ul li ul {
	display: none
}

.sjj_nav ul li a {
	color: var(--font-color);
	width: 100%;
	padding: 0 20px;
	display: block;
	box-sizing: border-box;
}

	.sjj_nav ul li a:hover {
		color: #000000;
	}

.sjj_nav ul li ul li a {
	color: var(--font-color);
	display: block;
	text-align: left;
}

.sjj_nav ul li i svg {
	width: 25px;
	height: 25px;
	fill: var(--main-white);
}

.sjj_nav ul li .sjj_nav_i_se svg {
	fill: var(--main-white)
}

.sjj_nav ul li ul li > ul {
	margin-left: 10px
}

.sjj_nav ul li ul li {
	border-top: none;
}

	.sjj_nav ul li ul li a {
		padding: 0 30px;
	}








/* bannerbox */
/* .bannerbox{
	width: 100%;
}
.bannerbox .mySwiper1{
	width: 100%;
}
.bannerbox .mySwiper1 .swiper-slide a{
	display: block;
	font-size: 0;
	width: 100%;
}
.bannerbox .mySwiper1 .swiper-slide a img{
	width: 100%;
}

.bannerbox .mySwiper1 .prev_btn{
	font-size: 20px;
	position: absolute;
	top: 50%;
	z-index: 9;
	left: 0;
	line-height: 50px;
	height: 50px;
	width: 30px;
	text-align: center;
	margin-top: -25px;
	vertical-align: middle;
	cursor: pointer;
	color: white;
	background: rgba(0,0,0,.1);
}
.bannerbox .mySwiper1 .next_btn{
	font-size: 20px;
	position: absolute;
	top: 50%;
	z-index: 9;
	right: 0;
	line-height: 50px;
	height: 50px;
	width: 30px;
	text-align: center;
	margin-top: -25px;
	vertical-align: middle;
	cursor: pointer;
	color: white;
	background: rgba(0,0,0,.1);
}

.bannerbox .mySwiper1 .swiper-pagination-bullet {
	font-size: 0px;
	width: 14px;
    height: 14px;
    overflow: hidden;
    -webkit-transition: border-color 350ms ease;
    -moz-transition: border-color 350ms ease;
    -o-transition: border-color 350ms ease;
    -ms-transition: border-color 350ms ease;
    transition: border-color 350ms ease;
    transition: border-color 350ms ease;
    background-color: rgba(0,0,0,0.2);
}
.bannerbox .mySwiper1 .swiper-pagination-bullet-active{
	background: var(--primary-color);
    width: 28px;
    border-radius: 20px;
} */
.bannerbox {
	width: 100%;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-size: cover;
	height: 700px;
	background-position: 50% 50%;
	margin-top: 90px;
}

	.bannerbox .wapper {
		height: 100%;
	}

.banner {
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
}

	.banner .textbox {
		width: 641px;
		height: 431px;
		background-image: none;
		background-color: #fff;
	}

		.banner .textbox .inner {
			padding: 54px 37px;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: flex-start;
			height: 100%;
		}

			.banner .textbox .inner h1 {
				font-size: 36px;
				color: #692a4d;
				font-weight: bold;
			}

			.banner .textbox .inner p {
				font-size: 16px;
				color: rgba(0, 0, 0, .6);
				margin-top: 20px;
				line-height: 2em;
				font-family: å®‹ä½“;
			}

			.banner .textbox .inner .btn {
				display: inline-block;
				color: #fee8f4;
				background-color: #692a4d;
				text-transform: uppercase;
				font-weight: 700;
				margin-top: 20px;
				padding: 10px 30px;
				font-size: 14px;
			}




.pd50 {
	padding: 15px 0;
}
/* footer */
.footerbox {
	width: 100%;
	margin: 0 auto;
	background-color: #333;
}

.footer {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
	justify-content: space-between;
}

.footer_left {
	width: 30%;
}

.f_menu {
	width: 54%;
	padding-left: 20px;
}

	.f_menu .desc {
		font-size: 16px;
		color: #fff;
	}

		.f_menu .desc p {
			margin-bottom: 8px;
		}

.f_logo {
	width: 100%;
	font-size: 0;
	margin-bottom: 30px;
}

	.f_logo img {
		max-width: 100%;
		width: auto;
	}

.ewmbox {
	width: 10%;
	font-size: 0;
	margin: 0 auto;
}

.fl_content .desc {
	width: 63%;
}

.ewmbox img {
	width: 100px;
	margin: 0 auto;
	display: block;
	max-width: 100%;
}

.ewmbox p {
	font-size: 14px;
	color: #fff;
	margin-top: 8px;
}

.desc p {
	font-size: 14px;
	color: #fff;
	line-height: 30px;
}


.f_menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

	.f_menu ul li {
	}

		.f_menu ul li h3 {
			font-size: 14px;
			color: #fff;
			padding-bottom: 10px;
			position: relative;
			margin-bottom: 10px;
		}

			.f_menu ul li h3:after {
				width: 40px;
				height: 2px;
				/*background-color: #3fb74b;*/
				position: absolute;
				left: 0;
				bottom: 0;
				content: "";
			}

		.f_menu ul li dl dd a {
			font-size: 14px;
			color: #fff;
			line-height: 30px;
		}





/* ÃƒÆ’Ã‚Â©ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒâ€šÃ‚Â¨ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â¡Ãƒâ€šÃ‚Âµ */
.inbannerbox {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.insidebox {
	width: 100%;
	margin: 0 auto;
}

	.insidebox .inside {
		width: 100%;
		box-sizing: border-box;
	}



.main_title {
	width: 100%;
	margin: 0 auto;
	padding-bottom: 10px;
	margin-bottom: 30px;
	text-align: center;
	position: relative;
}

	.main_title:after {
		position: absolute;
		left: 50%;
		bottom: 0;
		height: 3px;
		background-color: #692a4d;
		content: "";
		width: 60px;
		transform: translateX(-50%);
	}

	.main_title h1 {
		font-size: 28px;
		color: #692a4d;
		font-weight: bold;
	}


.out_top {
	position: fixed;
	right: 10px;
	bottom: 20px;
	width: 45px;
	height: 45px;
	background-color: #390099;
	font-size: 30px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	border-radius: 50%;
}
/* ================ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã‚Â¦Ãƒâ€šÃ‚Â Ãƒâ€šÃ‚Â·ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â¼Ãƒâ€šÃ‚Â===================== */
.index1box {
	width: 100%;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 180px 0;
}

.index1 {
	width: 100%;
	margin: 0 auto;
}

.i1_video {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	/* margin-bottom: 30px; */
}

	.i1_video video {
		max-width: 70%;
		width: auto;
	}

.index1 .textbox {
	width: 100%;
	margin: 0 auto;
	max-width: 60%;
	text-align: center;
}

	.index1 .textbox h3 {
		font-size: 28px;
		color: #fee8f4;
		margin-bottom: 20px;
	}

	.index1 .textbox p {
		font-size: 14px;
		color: #f4f4f4;
	}


.index2box {
	width: 100%;
	margin: 0 auto;
}

.index2 {
	width: 100%;
	margin: 0 auto;
}

.index2_content {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.index2_left {
	width: 49.5%;
}

	.index2_left .item {
		width: 100%;
		margin-bottom: 10px;
	}

		.index2_left .item .imgbox {
			width: 100%;
			font-size: 0;
		}

			.index2_left .item .imgbox img {
				width: 100%;
			}

	.index2_left .item2 {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 10px;
	}

		.index2_left .item2 .imgbox {
			width: 30%;
			font-size: 0;
		}

			.index2_left .item2 .imgbox img {
				width: 100%;
			}

		.index2_left .item2 .textbox {
			width: 65%;
		}

			.index2_left .item2 .textbox h3 {
				font-size: 20px;
				color: #692a4d;
				margin-bottom: 8px;
				font-weight: bold;
			}

			.index2_left .item2 .textbox p {
				font-size: 15px;
				color: rgba(0, 0, 0, .6);
				line-height: 28px;
				font-family: å®‹ä½“;
			}



.index3box {
	width: 100%;
	margin: 0 auto;
}

.index3 {
	width: 100%;
	margin: 0 auto;
}

.index3_content {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.index3_prev {
	font-size: 30px;
	position: absolute;
	top: 50%;
	z-index: 9;
	left: 0;
	height: 45px;
	width: 45px;
	border-radius: 50%;
	transform: translateY(-50%);
	vertical-align: middle;
	cursor: pointer;
	color: white;
	background: rgba(0,0,0,.5);
	display: flex;
	align-items: center;
	justify-content: center;
}

.index3_next {
	font-size: 30px;
	position: absolute;
	top: 50%;
	z-index: 9;
	right: 0;
	height: 45px;
	width: 45px;
	border-radius: 50%;
	transform: translateY(-50%);
	vertical-align: middle;
	cursor: pointer;
	color: white;
	background: rgba(0,0,0,.5);
	display: flex;
	align-items: center;
	justify-content: center;
}

.index3_swiper .swiper-slide a {
	display: block;
	width: 100%;
	position: relative;
	font-size: 0;
}

	.index3_swiper .swiper-slide a img {
		height: 300px;
		object-fit: contain;
		width: 100%;
	}

	.index3_swiper .swiper-slide a:after {
		position: absolute;
		content: "";
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgb(0, 0, 0,0.3);
		z-index: 2;
		opacity: 0;
		transition: all 0.3s;
	}

	.index3_swiper .swiper-slide a:hover:after {
		opacity: 1;
	}

.index3_next.swiper-button-disabled, .index3_prev.swiper-button-disabled {
	opacity: 0;
	cursor: auto;
	pointer-events: none;
}

.height {
	/*height: 90px;*/
}
/*  */
.productbox {
	width: 100%;
	margin: 0 auto;
}

.product {
	width: 100%;
	margin: 0 auto;
}

.product_content {
	width: 100%;
	margin: 0 auto;
}

.product_tab {
	width: 100%;
	margin: 0 auto;
}

	.product_tab ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

		.product_tab ul li {
			padding: 5px 15px;
			border: 1px solid #1a1a1a;
			font-size: 16px;
			color: #1a1a1a;
			margin-right: 20px;
			margin-bottom: 10px;
		}


.product_box {
	width: 100%;
	margin: 0 auto;
	margin-top: 30px;
}

	.product_box ul li {
		width: 100%;
		margin-bottom: 20px;
	}

		.product_box ul li a {
			display: flex;
			align-items: center;
			justify-content: space-between;
			background-color: #f6f6f6;
			padding: 20px;
			flex-wrap: wrap;
		}

			.product_box ul li a .imgbox {
				width: 25%;
				font-size: 0;
			}

				.product_box ul li a .imgbox img {
					width: 100%;
				}

			.product_box ul li a .textbox {
				width: 70%;
			}

				.product_box ul li a .textbox h3 {
					font-size: 20px;
					color: #666;
					margin-bottom: 10px;
				}

				.product_box ul li a .textbox .desc {
					width: 100%;
				}

					.product_box ul li a .textbox .desc p {
						font-size: 16px;
						color: #666;
						line-height: 30px;
					}

					.product_box ul li a .textbox .desc span {
						font-weight: bold;
					}


/*  */
.controlbox {
	width: 100%;
	margin: 0 auto;
}

.control {
	width: 100%;
	margin: 0 auto;
}

.control_content {
	width: 100%;
	margin: 0 auto;
}

	.control_content ul li {
		width: 100%;
		margin-bottom: 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}

		.control_content ul li .textbox {
			width: 50%;
			text-align: center;
		}

		.control_content ul li .imgbox {
			width: 50%;
			font-size: 0;
		}

			.control_content ul li .imgbox img {
				width: 100%;
				height: 500px;
				object-fit: cover;
			}

		.control_content ul li .textbox h3 {
			font-size: 24px;
			color: #692a4d;
			margin-bottom: 10px;
		}

		.control_content ul li .textbox p {
			font-size: 16px;
			color: #000;
			line-height: 2em;
			padding: 30PX;
			text-align: left;
		}

		.control_content ul li:nth-child(2n) .textbox {
			order: 1;
		}

		.control_content ul li:nth-child(2n) .imgbox {
			order: 0;
		}


/*  */
.newsbox {
	width: 100%;
	margin: 0 auto;
}

.news {
	width: 100%;
	margin: 0 auto;
}

.news_content {
	width: 100%;
	margin: 0 auto;
}

	.news_content ul li {
		width: 100%;
		display: flex;
		align-items: center;
		padding: 10px;
		margin: 15px 0;
		background: #fff;
		justify-content: space-between;
		flex-wrap: wrap;
	}

		.news_content ul li .date {
			width: 15%;
			height: 105px;
			overflow: hidden;
			background: #f6f6f6;
			text-align: center;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
		}

			.news_content ul li .date .year {
				font-size: 38px;
				color: #444;
				font-weight: bold;
			}

			.news_content ul li .date .day {
				font-size: 16px;
				color: #444;
			}

		.news_content ul li .textbox {
			width: 60%;
			margin-left: 45px;
			padding-right: 30px;
			border-right: 1px solid #e7e7e7;
		}

		.news_content ul li .more {
			width: 116px;
			height: 34px;
			line-height: 34px;
			text-align: center;
			background: #f2f6f9;
			border-radius: 50px;
			margin-top: 37px;
			font-size: 14px;
			color: #898d90;
			margin-right: 35px;
		}

		.news_content ul li:hover {
			box-shadow: 0 0 20px #dddddd;
		}

			.news_content ul li:hover .more {
				background: #00955b;
				color: #fff;
			}



/*  */
.centerbanner {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.center_swiper {
	width: 100%;
}

	.center_swiper .swiper-slide {
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 600px;
	}

		.center_swiper .swiper-slide .textbox {
			text-align: center;
		}

			.center_swiper .swiper-slide .textbox h1 {
				font-size: 30px;
				color: #fff;
				font-weight: bold;
				margin-bottom: 8px;
			}

			.center_swiper .swiper-slide .textbox p {
				font-size: 12px;
				color: #fff;
			}


.center_next, .center_prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 50px;
	color: #fff;
	z-index: 9;
}

.center_next {
	right: 10px;
}

.center_prev {
	left: 10px;
}

.center_pagination .swiper-pagination-bullet {
	width: 20px;
	height: 3px;
	background-color: #999;
	opacity: 1;
	border-radius: 0;
}

.center_pagination .swiper-pagination-bullet-active {
	background-color: #fff;
}


.center1box {
	width: 100%;
	margin: 0 auto;
}

.center1 {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.center1_left {
	width: 49%;
}

.center1_right {
	width: 49%;
	margin-top: 39px;
}

.center1_left h1 {
	font-size: 25px;
	color: #692a4d;
	margin-bottom: 10px;
	font-weight: bold;
}

.center1_left .imgbox {
	width: 100%;
	font-size: 0;
}

	.center1_left .imgbox img {
		width: 100%;
	}

.center1_right .item {
	width: 100%;
	margin-bottom: 20px;
}

	.center1_right .item h3 {
		font-size: 20px;
		color: #692a4d;
		margin-bottom: 20px;
		font-weight: bold;
	}

	.center1_right .item p {
		font-size: 15px;
		color: rgba(0, 0, 0, .6);
		line-height: 2em;
		font-family: å®‹ä½“;
	}

.center1_right .more {
	font-size: 16px;
	color: #692a4d;
	text-decoration: underline;
}



.center2box {
	width: 100%;
	margin: 0 auto;
}

.center2 {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.center2_left {
	width: 49%;
	margin-top: 40px;
}

.center2_right {
	width: 49%;
}

	.center2_right h1 {
		font-size: 25px;
		color: #692a4d;
		margin-bottom: 10px;
		font-weight: bold;
	}

	.center2_right .imgbox {
		width: 100%;
		font-size: 0;
	}

		.center2_right .imgbox img {
			width: 100%;
		}

.center2_left .item {
	width: 100%;
	margin-bottom: 20px;
}

	.center2_left .item h3 {
		font-size: 20px;
		color: #692a4d;
		margin-bottom: 20px;
		font-weight: bold;
	}

	.center2_left .item p {
		font-size: 15px;
		color: rgba(0, 0, 0, .6);
		line-height: 2em;
		font-family: å®‹ä½“;
	}

.center2_left .more {
	font-size: 16px;
	color: #692a4d;
	text-decoration: underline;
}



/*  */
.contact1box {
	width: 100%;
	margin: 0 auto;
}

.contact1 {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contact1_left {
	width: 49%;
}

.contact1_right {
	width: 49%;
	font-size: 0;
}

.contact2_left {
	order: 1;
}

.contact2_right {
	order: 0;
}

.contact1_right img {
	width: 100%;
}

.contact1_left h1 {
	font-size: 25px;
	color: #692a4d;
	font-weight: bold;
	margin-bottom: 15px;
}

.contact_desc {
	width: 100%;
	margin-bottom: 30px;
}

	.contact_desc p {
		font-size: 14px;
		color: #692a4d;
		line-height: 30px;
	}

.contact_form {
	width: 100%;
}

	.contact_form ul li {
		width: 100%;
		margin-bottom: 10px;
	}

		.contact_form ul li .c_input {
			width: 100%;
			border: 1px solid #692a4d;
			height: 35px;
			line-height: 35px;
			padding: 10px;
			color: #692a4d;
		}

		.contact_form ul li textarea {
			border: 1px solid #692a4d;
			width: 100%;
			line-height: 30px;
			padding: 10px;
			color: #692a4d;
		}

		.contact_form ul li .c_btn {
			font-size: 16px;
			color: #fff;
			background-color: #692a4d;
			width: 15%;
			height: 37px;
			line-height: 37px;
			text-align: center;
			border-radius: 5px;
		}

		.contact_form ul li .c_input::placeholder {
			color: #692a4d;
		}

		.contact_form ul li textarea::placeholder {
			color: #692a4d;
		}



/*  */
.detail_content {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 40px;
}

.detail_left {
	width: 38%;
}

.detail_right {
	width: 60%;
}

div.zoomDiv {
	z-index: 999;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 200px;
	height: 200px;
	background: #ffffff;
	border: 1px solid #CCCCCC;
	display: none;
	text-align: center;
	overflow: hidden;
}

div.zoomMask {
	position: absolute;
	background: url(../images/mask.png) repeat scroll 0 0 transparent;
	cursor: move;
	z-index: 1;
}

.m1_galleryTop {
	border: 1px solid #eee;
	margin-bottom: 10px;
}

.detail_left .swiper {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.detail_left .swiper-slide {
	background-size: cover;
	background-position: center;
}

.detail_left .swiper_box {
	height: 80%;
	width: 100%;
}

.detail_left .swiper_tab {
	height: 20%;
	box-sizing: border-box;
	padding: 10px 0;
}

	.detail_left .swiper_tab .swiper-slide {
		width: 25%;
		opacity: 0.4;
	}

	.detail_left .swiper_tab .swiper-slide-thumb-active {
		opacity: 1;
	}

.detail_left .swiper-slide img {
	display: block;
	width: 100%;
	object-fit: cover;
}

.swiper_tab .swiper-slide img {
	border: 1px solid #ddd;
}

.tab {
	position: relative;
}

.tab_prev {
	position: absolute;
	top: 50%;
	z-index: 9;
	left: 0px;
	cursor: pointer;
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	background: none;
	font-size: 40px;
	color: #111;
	box-sizing: border-box;
	align-items: center;
	opacity: 1;
	transition: all .3s;
}

.tab_next {
	position: absolute;
	top: 50%;
	z-index: 9;
	right: 0px;
	cursor: pointer;
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	background: none;
	font-size: 40px;
	color: #111;
	box-sizing: border-box;
	align-items: center;
	opacity: 1;
	transition: all .3s;
}

.swiper_tab {
	max-width: 90%;
}

.tab_next.swiper-button-disabled, .tab_prev.swiper-button-disabled {
	opacity: 0.5;
}


.detail_right h1 {
	font-weight: bold;
	font-size: 24px;
	border-bottom: #ccc 1px dashed;
	padding-bottom: 15px;
	color: #000;
	margin-bottom: 10px;
}

.detail_desc p {
	font-size: 16px;
	color: #525355;
	margin-bottom: 10px;
	display: block;
}

	.detail_desc p span {
		font-weight: bold;
	}

.detail_else {
	width: 100%;
	margin: 0 auto;
	margin-top: 30px;
}

	.detail_else .title {
		width: 100%;
		background: #049456;
		height: 44px;
		line-height: 44px;
		color: #fff;
		text-align: center;
		font-size: 22px;
	}

	.detail_else .desc {
		font-size: 16px;
		color: #525355;
		padding: 20px;
	}


.next {
	text-align: center;
	padding-top: 20px;
	font-size: 16px;
	color: #525355;
	font-weight: bold;
	display: block;
	border-top: 1px solid #525355;
}




@media only screen and (max-width: 1400px) {
	.headerbox .header .menu ul li {
		padding: 25px 5px;
	}
}



@media only screen and (max-width: 980px) {
	.headerbox {
		display: none;
	}

	.sp_header {
		display: block;
	}

	.bannerbox {
		margin-top: 70px;
	}

	.inbannerbox {
		margin-top: 70px;
	}

	.pd50 {
		padding: 25px 0;
	}

	.height {
		height: 0px;
	}

	.banner .textbox {
		width: 99%;
		height: 52%;
	}

		.banner .textbox .inner h1 {
			font-size: 30px;
		}

	.index2_left {
		width: 100%;
		margin-bottom: 10px;
	}

	.footer_left {
		width: 100%;
	}
	.f_logo{margin-bottom: 0;}
.footer{margin-bottom: 0;}
	.f_menu {
		width: 100%;
		display: none;
	}
	.ewmbox{display: none;}

		.f_menu ul li {
			width: 100%;
			margin-bottom: 20px;
		}
		.footer_bot{text-align: center;}
		.footer_bot p{color: #fff;}
		.footer_bot p span{color: #fff;}

	.news_content ul li .date {
		width: 40%;
		margin-bottom: 20px;
	}

	.news_content ul li .textbox {
		margin-left: 0;
		width: 100%;
		border-right: 0;
	}

	.center_swiper .swiper-slide .textbox {
		max-width: 80%;
	}

	.detail_left {
		width: 100%;
		margin-bottom: 20px;
	}

	.detail_right {
		width: 100%;
	}
}


@media only screen and (max-width: 680px) {
	.banner .textbox .inner {
		padding: 20px;
	}

		.banner .textbox .inner h1 {
			font-size: 25px;
		}

		.banner .textbox .inner p {
			font-size: 14px;
		}

	.product_box ul li a .imgbox {
		width: 100%;
		margin-bottom: 10px;
	}

	.product_box ul li a .textbox {
		width: 100%;
	}

	.control_content ul li .textbox {
		width: 100%;
		order: 0 !important;
		margin-bottom: 20px;
	}

		.control_content ul li .textbox h3 {
			font-size: 18px;
		}

		.control_content ul li .textbox p {
			font-size: 14px;
		}

	.control_content ul li .imgbox {
		width: 100%;
		order: 1 !important;
	}

	.center1_left {
		width: 100%;
		margin-bottom: 20px;
	}

	.center1_right {
		width: 100%;
	}

	.center2_left {
		width: 100%;
		order: 1;
	}

	.center2_right {
		width: 100%;
		order: 0;
		margin-bottom: 20px;
	}

	.contact1_left {
		width: 100%;
		margin-bottom: 20px;
	}

	.contact1_right {
		width: 100%;
	}

	.contact2_left {
		order: 0;
	}

	.contact2_right {
		order: 1;
	}
}
