/*common start*/
.scroll::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 4px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 1px;
}

.scroll::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	border-radius: 10px;
	/*box-shadow:inset 0 0 2px #000;*/
	background: var(--primary-color);
}

.scroll::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	/*box-shadow:inset 0 0 2px #999;*/
	border-radius: 10px;
	background: #eee;
}

/*@font-face {
    font-family: 'SourceHanSansCN';
    src: url('../fonts/SourceHanSansCN-Light.eot');
    src: url('../fonts/SourceHanSansCN-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SourceHanSansCN-Light.woff2') format('woff2'),
        url('../fonts/SourceHanSansCN-Light.woff') format('woff'),
        url('../fonts/SourceHanSansCN-Light.ttf') format('truetype'),
        url('../fonts/SourceHanSansCN-Light.svg#SourceHanSansCN-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SourceHanSansCN';
    src: url('../fonts/SourceHanSansCN-Regular.eot');
    src: url('../fonts/SourceHanSansCN-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SourceHanSansCN-Regular.woff2') format('woff2'),
        url('../fonts/SourceHanSansCN-Regular.woff') format('woff'),
        url('../fonts/SourceHanSansCN-Regular.ttf') format('truetype'),
        url('../fonts/SourceHanSansCN-Regular.svg#SourceHanSansCN-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SourceHanSansCN';
    src: url('../fonts/SourceHanSansCN-Bold.eot');
    src: url('../fonts/SourceHanSansCN-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SourceHanSansCN-Bold.woff2') format('woff2'),
        url('../fonts/SourceHanSansCN-Bold.woff') format('woff'),
        url('../fonts/SourceHanSansCN-Bold.ttf') format('truetype'),
        url('../fonts/SourceHanSansCN-Bold.svg#SourceHanSansCN-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}*/

:root {
	--primary-color: #F65857;
	--secondary-color: #fa0ac4;
	--third-color: #25a4bb;
	--black000: #000;
	--black333: #333;
	--black666: #666;
	--black999: #999;
	--grayeee: #eee;
	--grayccc: #ccc;
	--grayaaa: #aaa;
	--grayf5: #f5f5f5;
	--white: #fff;
	--red: #f00;
	--black-opacity99: rgba(0, 0, 0, .99);
	--black-opacity90: rgba(0, 0, 0, .9);
	--black-opacity70: rgba(0, 0, 0, .7);
	--black-opacity50: rgba(0, 0, 0, .5);
	--black-opacity10: rgba(0, 0, 0, .1);
	--black-gradation90: linear-gradient(180deg, transparent, rgba(0, 0, 0, .9));
	--white-opacity99: rgba(255, 255, 255, .99);
	--white-opacity90: rgba(255, 255, 255, .9);
	--white-opacity90: rgba(255, 255, 255, .7);
	--white-opacity50: rgba(255, 255, 255, .5);
	--white-opacity10: rgba(255, 255, 255, .1);
	--white-gradation90: linear-gradient(180deg, transparent, rgba(255, 255, 255, .9));
}

body,
div,
ul,
li,
a,
img,
p,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
span,
strong,
input {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	border: 0;
	list-style: none;
	box-sizing: border-box;
}

body {
	font-size: 12px;
	/* font-family: 'SourceHanSansCN';*/
	font-family: Arial, 'Microsoft YaHei';
	color: #333;
	overflow-x: hidden;
	min-height: 101vh;
}

a {
	color: #666;
}

a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

p {
	/* line-height: 1.5em;
	padding: 5px 0; */
}

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

.wapper1 {
	width: 80%;
	margin: 0 auto;
	min-width: 100px;
}

.wapper2 {
	width: 80%;
	margin: 0 auto;
}

.wapper3 {
	width: 70%;
	margin: 0 auto;
}

input,
textarea,
select {
	outline: none;
	/* font-family: 'SourceHanSansCN';*/
	font-family: Arial, 'Microsoft YaHei';
	font-size: 14px;
	border-radius: 8px;
}

input,
input:link,
input:visited,
input:hover,
input:active,
input:focus {
	outline: none;
}

img {
	object-fit: cover;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
}

.xiangqing img {
	width: auto !important;
	height: auto !important;
	max-width: 100%;
}

@media(max-width:999px) {
	p {
		padding: 0;
	}

	.wapper1 {
		width: 90%;
		min-width: 0;
	}

	.wapper2 {
		width: 90%;
	}

	.wapper3 {
		width: 90%;
	}

	:root {
		--font48: 28px;
		--font36: 24px;
		--font32: 22px;
		--font24: 20px;
		--font20: 18px;
		--font18: 16px;
		--font16: 14px;
		--font14: 12px;
	}
}

/*common end*/


.html {
	opacity: 1;
	visibility: visible;
	transition: all 2s ease;
}

.html.onload {
	opacity: 0;
	visibility: hidden;
}

.loading_box {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	transition: all .5s ease;
}

.loading_box.removeload {
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
}

.loading_close1 {
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.loadingbg {
	width: 90%;
	max-width: 750px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.loading {
	text-align: center;
}

.loading_logo {
	width: 200px;
	height: 200px;
	position: relative;
	margin: 0 auto;
}

.loading_logo img {
	max-width: 50%;
	max-height: 50%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
}

.loading_logo:before {}

.loading_txt {
	font-size: 20px;
	line-height: 30px;
	margin-top: 55px;
	color: var(--primary-color);
}

.loadEffect {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.loadEffect div {
	width: 100%;
	height: 100%;
	position: absolute;
	-webkit-animation: load 2s linear infinite;
}

.loadEffect div span {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--primary-color);
	position: absolute;
	left: 50%;
	margin-top: -10px;
	margin-left: -10px;
}

@-webkit-keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
	}

	10% {
		-webkit-transform: rotate(45deg);
	}

	50% {
		opacity: 1;
		-webkit-transform: rotate(160deg);
	}

	62% {
		opacity: 0;
	}

	65% {
		opacity: 0;
		-webkit-transform: rotate(200deg);
	}

	90% {
		-webkit-transform: rotate(340deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}

}

.loadEffect div:nth-child(1) {
	-webkit-animation-delay: 0.2s;
}

.loadEffect div:nth-child(2) {
	-webkit-animation-delay: 0.4s;
}

.loadEffect div:nth-child(3) {
	-webkit-animation-delay: 0.6s;
}

.loadEffect div:nth-child(4) {
	-webkit-animation-delay: 0.8s;
}

@media(max-width:999px) {
	.loading_txt {
		font-size: 16px;
		line-height: 26px;
		margin-top: 35px;
	}
}


/*首页全屏*/
.index_swiper {
	position: relative;
}

.index_swiper>.swiper-container {
	height: 100vh;
}

.index_swiper>.swiper-container>.swiper-wrapper>.swiper-slide {
	height: 100vh;
}

.index_swiper>.swiper-container>.swiper-wrapper>.swiper-slide:last-child {
	/* height:auto !important;*/
}

.index_swiper>.swiper-pagination {
	position: absolute;
	left: 3.12vw;
	top: 50%;
	transform: translateY(-50%);
	z-index: 11;
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet {
	display: block;
	width: auto;
	height: auto;
	border-radius: 0;
	background: none;
	font-size: 14px;
	line-height: 34px;
	color: rgba(255, 255, 255, .7);
	padding-left: 1.56vw;
	position: relative;
	opacity: 1;
	outline: none;
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	color: #fff;
	opacity: 1;
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet:before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 100%;
	border: 1px solid #fff;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
	background: #fff;
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet:after {
	content: "";
	width: 3.12vw;
	height: 2px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(-100%, -50%);
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
	background: #fff;
}

.index_swiper>.swiper-pagination.active .swiper-pagination-bullet {
	color: #666;
}

.index_swiper>.swiper-pagination.active .swiper-pagination-bullet.swiper-pagination-bullet-active {
	color: var(--primary-color);
}

.index_swiper>.swiper-pagination.active .swiper-pagination-bullet:before {
	border-color: #D6D6D6;
}

.index_swiper>.swiper-pagination.active .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
	border-color: var(--primary-color);
	background: var(--primary-color);
}

.index_swiper>.swiper-pagination.active .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
	background: var(--primary-color);
}

@media(max-width:999px) {
	.index_swiper>.swiper-container {
		height: auto;
	}

	.index_swiper>.swiper-container>.swiper-wrapper {
		display: block;
	}

	.index_swiper>.swiper-container>.swiper-wrapper>.swiper-slide {
		height: auto;
	}
}



.m11_headbg {
	width: 100%;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	padding-left: 50px;
}

.m11_head {
	height: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.m11_head .logo {
	width: 400px;
	height: 80px;
	position: relative;
}

.m11_head .logo img {
	display: block;
	max-width: 100%;
	max-height: 90%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto 0;
}

.m11_head .rt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.h_search_btn {
	display: block;
	width: 20px;
	height: 20px;
	cursor: pointer;
	background: url(../images/top_search_btn2.png) center no-repeat;
	margin-left: 1.3vw;
}

.h_search_btn.active {
	background-image: url(../images/chahao2.png);
}

.h_search_box {
	width: 100%;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 99;
	display: none;
}

.h_search_close1 {}

.h_searchbg {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}

.h_search_close2 {}

.h_search {
	padding: 40px 0;
}

.h_search form {
	height: 60px;
	border: 1px solid #ccc;
	border-radius: 8px;
	overflow: hidden;
}

.h_search form #search_keywords2 {
	float: left;
	border: none;
	background: none;
	height: 60px;
	line-height: 60px;
	padding: 0 10px;
	width: calc(100% - 80px);
}

.h_search form #search2 {
	float: right;
	border: none;
	background: var(--primary-color) url(../images/ico_search1.png) center no-repeat;
	background-size: 50% auto;
	height: 60px;
	width: 60px;
	cursor: pointer;
	transition: all .3s ease;
	font-size: 0;
	color: transparent;
}

.h_search form #search2:hover {
	/* background-color: var(--secondary-color); */
}

/*menu*/
.m11_head .menu {
	height: 80px;
	line-height: 80px;
}

.m11_head .menu>ul {}

.m11_head .menu>ul>li {
	float: left;
	position: relative;
	padding: 0 1.3vw;
}

.m11_head .menu>ul>li>a {
	color: #333;
	display: block;
	font-size: 16px;
	font-weight: bold;
	position: relative;
}

.m11_head .menu>ul>li>a:hover,
.m11_head .menu>ul>li:hover>a,
.m11_head .menu>ul>li.hover>a {
	color: var(--primary-color);
	font-weight: normal;
}

.m11_head .menu>ul>li>a:before {
	content: "";
	width: 0;
	height: 2px;
	background: var(--primary-color);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: all .3s ease;
}

.m11_head .menu>ul>li>a:hover:before,
.m11_head .menu>ul>li:hover>a:before,
.m11_head .menu>ul>li.hover>a:before {
	width: 100%;
}

.m11_head .menu>ul>li>ul {
	width: fit-content;
	min-width: 120px;
	background: #fff;
	padding: 10px 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	border-radius: 10px;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: 5;
	display: none !important;
}

.m11_head .menu>ul>li>ul li {
	position: relative;
}

.m11_head .menu>ul>li>ul li a {
	color: #666;
	display: block;
	font-size: 14px;
	font-weight: normal;
	padding: 10px 5px;
	line-height: 1.5em;
	text-align: center;
	white-space: nowrap;
}

.m11_head .menu>ul>li>ul li a:hover,
.m11_head .menu>ul>li>ul li:hover>a {
	color: #fff;
	background: var(--primary-color);
}

.m11_head .menu>ul>li>ul li ul {
	width: 100%;
	background: #fff;
	padding: 10px 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	border-radius: 10px;
	position: absolute;
	top: 0;
	left: 100%;
	display: none;
}

.m11_head .menu>ul>li>ul li:hover>ul {
	display: block;
}

.m11_head_height {
	height: 80px;
}

.productdetail01bg.m11_insidebg {
	padding-top: 0px;
}

@media(max-width:1299px) {
	.m11_head .menu>ul>li {
		padding: 0 var(--20px);
	}

	.m11_head .menu>ul>li>a {
		font-size: 15px;
	}
}

@media(max-width:999px) {
	.m11_head_height {
		height: 60px;
	}

	.m11_headbg {}

	.m11_head {
		height: 60px;
	}

	.m11_head .logo {
		width: 76%;
		height: 60px;
	}

	.h_search {
		padding: 20px 0;
	}

	.h_search form {
		height: 40px;
	}

	.h_search form #search_keywords2 {
		height: 40px;
		line-height: 40px;
		padding: 0 10px;
		width: calc(100% - 60px);
	}

	.h_search form #search2 {
		height: 40px;
		width: 40px;
	}

	.m11_head .menu {
		display: none;
	}
}

/*nav*/
.m11_head .nav_open {
	width: 24px;
	height: 18px;
	cursor: pointer;
	display: none;
	position: relative;
	margin-left: 15px;
}

.m11_head .nav_open i,
.m11_head .nav_open:before,
.m11_head .nav_open:after {
	width: 24px;
	height: 2px;
	background: #999;
	position: absolute;
	left: 0;
	transition: all .3s ease;
}

.m11_head .nav_open i {
	top: 50%;
	transform: translate(0, -50%);
}

.m11_head .nav_open:before {
	content: "";
	top: 0;
}

.m11_head .nav_open:after {
	content: "";
	bottom: 0;
}

.m11_head .nav_open.active i {
	opacity: 0;
	visibility: hidden;
}

.m11_head .nav_open.active:before {
	transform: translateY(8px) rotate(45deg);
}

.m11_head .nav_open.active:after {
	transform: translateY(-8px) rotate(-45deg);
}

.m11_head .nav_box {
	width: 100%;
	height: calc(100% - 61px);
	border-top: 1px solid #ededed;
	position: fixed;
	left: 0;
	top: 60px;
	display: none;
}

.m11_head .nav_close1 {
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 998;
}

.m11_head .navbg {
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 999;
}

.m11_head .nav {
	position: relative;
}

.m11_head .nav_close2 {
	display: none;
}

.m11_head .nav_list {
	max-height: calc(100vh - 60px);
	overflow-y: auto;
}

.m11_head .nav_list ul {}

.m11_head .nav_list ul li {
	padding: 5px 5%;
}

.m11_head .nav_list>ul>li {
	border-bottom: 1px solid #ededed;
	padding: 10px 5%;
}

.m11_head .nav_list ul li span {
	display: block;
	position: relative;
}

.m11_head .nav_list ul li span a {
	display: inline-block;
	font-size: 12px;
	line-height: 22px;
	position: relative;
	z-index: 2;
}

.m11_head .nav_list>ul>li>span a {
	font-size: 14px;
	line-height: 24px;
	font-weight: normal;
}

.m11_head .nav_list ul li span i {
	width: 100%;
	height: 100%;
	background: url(../images/ico_down1.png) right center no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.m11_head .nav_list ul li ul {
	padding: 5px 0 0 0;
	display: none;
}

.m11_head .nav_list ul li.active>span>i {
	background-image: url(../images/ico_up1.png);
}

@media(max-width:999px) {
	.m11_head .nav_open {
		display: block;
	}
}


/*banner*/
.banner {
	position: relative;
	overflow: hidden;
}

.banner .swiper-container {}

.banner .swiper-slide {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.banner .swiper-slide.swiper-slide-active {
	z-index: 2;
}

.banner .swiper-slide img {
	display: block;
	width: 100%;
	height: 97vh;
	background: #f9f9f9;
}

.banner .swiper-slide .txtbg {
	width: 73%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}



.banner .swiper-slide .txt {
	color: #fff;
	text-align: left;
}

.banner .swiper-slide .txt .h2 {
	font-size: 2.8vw;
	line-height: 1.2em;
	font-weight: bold;
	margin-bottom: 1.04vw;
}

.banner .swiper-slide .txt .h3 {
	font-size: 1.18vw;
	line-height: 1.4em;
}

.banner .swiper-pagination {
	height: 10px;
	bottom: 20px;
}

.banner .swiper-pagination span {
	display: inline-block;
	vertical-align: top;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	margin: 0 8px;
	background: #fff;
	opacity: 1;
	transition: all .3s ease;
}

.banner .swiper-pagination span.swiper-pagination-bullet-active {
	width: 20px;
	background: #fff;
	opacity: 1;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
	width: 60px;
	height: 60px;
	margin-top: -30px;
	background-color: rgba(0, 0, 0, .5);
	background-size: 15px 30px;
	opacity: 0;
	transition: all .3s ease;
	border-radius: 8px;
}

.banner .swiper-button-prev {
	left: 5%;
	transform: translateX(-100%);
}

.banner .swiper-button-next {
	right: 5%;
	transform: translateX(100%);
}

.banner:hover .swiper-button-prev,
.banner:hover .swiper-button-next {
	opacity: .7;
	transform: translateX(0) !important;
}

.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
	opacity: 1;
}

@media(max-width:999px) {
	.banner .swiper-slide img {
		height: 50vw;
	}

	.banner .swiper-slide .txtbg {
		width: 90%;
	}

	.banner .swiper-slide .txt .h2 {
		font-size: 24px;
		line-height: 1.2em;
		margin-bottom: 5px;
	}

	.banner .swiper-slide .txt .h3 {
		font-size: 14px;
		line-height: 1.4em;
	}

	.banner .swiper-pagination {
		bottom: 10px;
	}

	.banner .swiper-button-prev,
	.banner .swiper-button-next {
		width: 40px;
		height: 40px;
		margin-top: -20px;
	}
}






.go_top {
	width: 50px;
	line-height: 50px;
	border-radius: 100%;
	text-align: center;
	color: #fff;
	background: rgba(0, 0, 0, .5) url(../images/ico_backtop.png) center no-repeat;
	position: fixed;
	z-index: 44;
	bottom: 10px;
	right: 10px;
	font-size: 0;
}

.go_top:hover {
	background-color: var(--primary-color);
	color: #fff;
}

.go_top i {}

@media(max-width:999px) {
	.go_top {
		display: none;
	}
}


/*客服*/
.m1_side_kefu_box {
	width: 70px;
	position: fixed;
	z-index: 44;
	right: 10px;
	bottom: 50px;
	display: none;
}

.m1_side_kefu {
	width: 70px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
	border-radius: 8px;
	position: relative;
	right: 0;
	transition: all .5s ease;
}

.m1_side_kefu.active {
	right: -80px;
}

.m1_side_kefu ul li {
	position: relative;
	padding: 0 10px;
}

.m1_side_kefu ul li>a {
	display: block;
	padding: 10px 0;
	position: relative;
	z-index: 2;
	border-top: 1px solid #f5f5f5;
	color: #999;
}

.m1_side_kefu ul li:nth-child(1)>a {
	border: none;
}

.m1_side_kefu ul li .ico {
	height: 28px;
	position: relative;
}

.m1_side_kefu ul li .ico img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
}

.m1_side_kefu ul li .ico .img2 {
	display: none;
}

.m1_side_kefu ul li:hover .ico .img1 {
	display: none;
}

.m1_side_kefu ul li:hover .ico .img2 {
	display: block;
}

.m1_side_kefu ul li .h2 {
	font-size: 12px;
	line-height: 1em;
	margin-top: 10px;
	text-align: center;
}

.m1_side_kefu ul li:hover .h2 {
	color: var(--primary-color);
}

.m1_side_kefu ul li .boxbg {
	width: fit-content;
	padding: 0 10px 0 0;
	position: absolute;
	top: 50%;
	right: 100%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: all .5s ease;
}

.m1_side_kefu ul li:hover .boxbg {
	transform: translate(0, -50%);
	opacity: 1;
	visibility: visible;
}

.m1_side_kefu ul li .box {
	width: fit-content;
	padding: 10px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	border-radius: 4px;
}

.m1_side_kefu ul li .box:before {
	content: "";
	border: 5px solid transparent;
	border-left: 5px solid #fff;
	position: absolute;
	top: 50%;
	margin-top: -5px;
	right: 0;
}

.m1_side_kefu ul li .box .h3 {
	white-space: nowrap;
	line-height: 30px;
	font-size: 20px;
	text-align: center;
	min-width: 150px;
}

.m1_side_kefu ul li .box .h3 img {
	vertical-align: top;
	height: 30px;
	width: 28px;
	object-fit: contain;
	margin-right: 5px;
}

.m1_side_kefu ul li .box .ewm {
	text-align: center;
}

.m1_side_kefu ul li .box .ewm .h4 {
	font-size: 16px;
	margin-bottom: 5px;
}

.m1_side_kefu ul li .box .ewm img {
	display: block;
	margin: 0 auto;
	width: 124px;
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.m1_side_kefu_btn {
	width: 28px;
	height: 28px;
	text-align: center;
	border-radius: 100%;
	background: #fff;
	color: #999;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	position: absolute;
	z-index: 66;
	bottom: -38px;
	right: 21px;
	cursor: pointer;
	transition: all .3s ease;
}

.m1_side_kefu_btn.active {
	transform: rotate(45deg);
}

.m1_side_kefu_btn i {
	display: block;
	width: 28px;
	height: 28px;
	background: url(../images/ico_btn1.png) center no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
}

.m1_side_kefu_btn.active {}

.m1_side_kefu_btn i.m1_side_kefu_open {
	display: none;
}

.m1_side_kefu_btn i.m1_side_kefu_close {}

.m1_side_kefu_btn.active i.m1_side_kefu_open {
	display: block;
}

.m1_side_kefu_btn.active i.m1_side_kefu_close {
	display: none;
}

@media(max-width:999px) {
	.m1_fheight {
		height: 70px;
	}

	.m1_side_kefu_box {
		width: 100%;
		right: 0;
		top: auto;
		bottom: 0;
		transform: translateY(0);
		display: block;
	}

	.m1_side_kefu {
		width: 100%;
		border-radius: 0;
	}

	.m1_side_kefu.active {
		right: 0 !important;
	}

	.m1_side_kefu ul li {
		margin-bottom: 0;
		float: left;
		width: 25%;
		padding: 0;
	}

	.m1_side_kefu ul li>a {
		border: none;
		border-left: 1px solid #f5f5f5;
	}

	.m1_side_kefu ul li .h2 {
		font-size: 12px;
		line-height: 1em;
		margin-top: 8px;
	}

	.m1_side_kefu ul li.gotop {
		display: block !important;
	}

	.m1_side_kefu ul li .boxbg {
		padding: 0 0 10px 0;
		top: auto;
		bottom: 100%;
		right: auto;
		left: 50%;
		transform: translate(-50%, -20%) !important;
	}

	.m1_side_kefu ul li:hover .boxbg {
		transform: translate(-50%, 0) !important;
	}

	.m1_side_kefu ul li .box:before {
		border: 5px solid transparent;
		border-top: 5px solid #fff;
		position: absolute;
		top: auto;
		bottom: 0;
		margin-top: 0;
		margin-left: -5px;
		right: auto;
		left: 50%;
	}

	.m1_side_kefu ul li .box1 {
		display: none !important;
	}

	.m1_side_kefu_btn {
		display: none;
	}
}

/*客服2*/
.m1_side_kefu2_box {
	width: 40px;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 44;
}

.m1_side_kefu2 {}

.m1_side_kefu2 ul li {
	width: 40px;
	margin: 1px 0;
	position: relative;
}

.m1_side_kefu2 ul li>a {
	display: block;
	text-align: center;
	background: var(--primary-color);
	color: #fff;
	opacity: .9;
}

.m1_side_kefu2 ul li>a:hover,
.m1_side_kefu2 ul li:hover>a {
	background: var(--primary-color);
	color: #fff;
	opacity: .9;
}

.m1_side_kefu2 ul li .ico {
	line-height: 40px;
	font-size: 20px;
}

.m1_side_kefu2 ul li .ico i {}

.m1_side_kefu2 ul li .boxbg {
	background: var(--primary-color);
	color: #fff;
	padding: 5px 10px;
	text-align: center;
	position: absolute;
	top: 50%;
	right: 100%;
	transform: translate(-10%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}

.m1_side_kefu2 ul li:hover .boxbg {
	transform: translate(0, -50%);
	opacity: .9;
	visibility: visible;
}

.m1_side_kefu2 ul li .box1 {}

.m1_side_kefu2 ul li .box1 .h3 {
	white-space: nowrap;
	line-height: 30px;
	font-size: 20px;
	text-align: center;
	min-width: 150px;
}

.m1_side_kefu2 ul li .box1 .h3 i {
	margin-right: 5px;
}

.m1_side_kefu2 ul li .box2 {
	padding: 5px 10px 10px 10px;
}

.m1_side_kefu2 ul li .box2 .h4 {
	font-size: 16px;
	margin-bottom: 5px;
}

.m1_side_kefu2 ul li .box2 img {
	display: block;
	width: 124px;
}

@media(max-width:999px) {
	.m1_side_kefu2_box {
		width: 30px;
		display: none;
	}

	.m1_side_kefu2 ul li {
		width: 30px;
	}

	.m1_side_kefu2 ul li .ico {
		line-height: 30px;
		font-size: 12px;
	}
}


.inbanner_box {
	position: relative;
}

.inbanner img {
	display: block;
	width: 100%;
	background: #f9f9f9;
}

.inbarbg {
	background-color: rgba(239, 241, 245, 1);
	padding-top: 15px;
	padding-bottom: 15px;
}

.inbar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.weizhi {
	font-size: 14px;
	line-height: 60px;
}

.inner_menu {
	font-size: 16px;
}

.inner_menu ul {
	line-height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.inner_menu ul li {
	margin-right: 25px;
}

.inner_menu ul li a {
	display: block;
	padding: 10px 35px;
	border-radius: 0px;
	border: 1px solid #eee;
	font-size: 16px;
	transition: all .5s ease;
	background: #fff;
	color: #333;
	line-height: 25px;
}

.inner_menu ul li.hover a,
.inner_menu ul li a:hover {
	background: var(--primary-color);
	color: #fff;
}

.inner_menu ul li ul {
	display: none;
}

.inbar .goback {}

.inbar .goback a {
	color: #999;
	font-size: 20px;
}

.inbar .goback a:hover {
	color: #333;
}

@media(max-width:999px) {
	.inbanner img {
		width: 100%;
		min-height: 0;
	}

	.inbar {
		height: 40px;
	}

	.weizhi {
		font-size: 12px;
		line-height: 40px;
	}

	.inner_menu {
		display: none;
	}

}

.m11_insidebg {
	padding: 60px 0 80px 0;
	min-height: 40vh;
}

.m11_inside {}

.m11_inside_lt {
	float: left;
	width: 300px;
	/* margin-top:-160px;*/
}

.m1_side_a {
	width: 300px;
	background: #fff;
	/* box-shadow: 0 0 15px rgba(0, 0, 0, .1); */
	border: 1px solid #eee;
	margin-bottom: 30px;
	position: relative;
	z-index: 11;
	border-radius: 10px;
	overflow: hidden;
}

.m1_side_a.active {
	/* position: fixed;
	top: 150px; */
}

.m1_side_a>ul {}

.m1_side_a.active>ul {
	max-height: calc(100vh - 100px);
	overflow-y: auto;
}

.m1_side_a h2 {
	font-size: 20px;
	line-height: 24px;
	padding: 26px 15px;
	font-weight: normal;
	background-image: linear-gradient(292deg, #F65857 0%, #cd3f3e 100%);
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
	letter-spacing: 2px;
	border-top-left-radius: 30px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}

.m1_side_a h2 strong {
	display: block;
	font-size: 24px;
	line-height: 28px;
}

.m1_side_a h2 span {
	display: block;
	margin-top: 6px;
	opacity: .7;
}

.m1_side_a ul li {}

.m1_side_a>ul>li:nth-child(1) {
	/* margin-bottom:10px; border:none;*/
	background-color: rgba(240, 240, 240, 1);
}

.m1_side_a>ul>li {
	border-bottom: 1px solid #eee;
}

.m1_side_a>ul>li:last-child {}

.m1_side_a ul li a {
	display: block;
	font-size: 16px;
	line-height: 60px;
	padding: 0px 40px 0px 35px;
	/* background: url(../images/ico_list1.png) left 10px center no-repeat; */
}

.m1_side_a ul li a:hover,
.m1_side_a ul li.hover>span a {
	color: var(--primary-color);
	/* background-color: var(--primary-color); */
	/* background-image: url(../images/ico_list1_hover2.png); */
}

.m1_side_a ul li.active>span a {}

.m1_side_a ul li span {
	display: block;
	position: relative;
}

.m1_side_a ul li span>i {
	width: 40px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	cursor: pointer;
	background: url(../images/ico_list3.png) center no-repeat;
}

.m1_side_a ul li.active>span>i {
	background-image: url(../images/ico_list3_hover.png);
}

.m1_side_a ul li.hover span>i {
	background-image: url(../images/ico_list4.png);
}

.m1_side_a ul li.hover.active>span>i {
	background-image: url(../images/ico_list4_hover.png);
}

.m1_side_a ul li ul {
	padding-left: 20px;
	padding-bottom: 10px;
	display: none;
}

.m1_side_a ul li ul li {}

.m1_side_a ul li ul li a {
	padding-top: 7px;
	padding-bottom: 7px;
}

.m1_side_c {
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, .1);
	border: 1px solid #eee;
	border-radius: 10px;
}

.m1_side_c.lfixed {
	position: fixed;
	left: 0;
	bottom: 0;
	background: #f5f5f5;
	z-index: 22;
	transform: translateX(0);
	transition: all .3s ease;
	border-radius: 0;
}

.m1_side_c.lfixed.hiden {
	transform: translateX(-240px);
}

.m1_side_c.lfixed.shown {
	transform: translateX(0px);
}

.inLt_contact_btn {
	position: absolute;
	top: 0;
	left: 100%;
	display: none;
}

.m1_side_c.lfixed .inLt_contact_btn {
	display: block;
}

.inLt_contact_btn span {
	display: block;
	text-align: center;
	font-size: 12px;
	line-height: 2em;
	padding: 10px 5px;
	width: 20px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
}

.inLt_contact_btn .inLt_contact_close {
	display: block;
}

.inLt_contact_btn .inLt_contact_open {
	display: none;
}

.m1_side_c.lfixed .inLt_contact_btn .inLt_contact_close {
	display: block;
}

.m1_side_c.lfixed .inLt_contact_btn .inLt_contact_open {
	display: none;
}

.m1_side_c.lfixed.hiden .inLt_contact_btn .inLt_contact_close {
	display: none;
}

.m1_side_c.lfixed.hiden .inLt_contact_btn .inLt_contact_open {
	display: block;
}

.m1_side_c.lfixed.shown .inLt_contact_btn .inLt_contact_close {
	display: block;
}

.m1_side_c.lfixed.shown .inLt_contact_btn .inLt_contact_open {
	display: none;
}

.inLt_contact {
	/* background:#f5f5f5; border-radius:8px; padding:20px 0 10px 0;*/
	width: 240px;
}

.inLt_contact .h2 {
	font-size: 18px;
	line-height: 20px;
	padding: 15px 0 15px 70px;
	background: #f5f5f5 url(../images/ico_phone2.png) left 5px center no-repeat;
	background-size: auto 60px;
	color: var(--primary-color);
	position: relative;
	margin-bottom: 15px;
	border-radius: 10px 10px 0 0;
}

.m1_side_c.lfixed .inLt_contact .h2 {
	border-bottom: 1px solid #ddd;
	border-radius: 0;
}

.inLt_contact .h2:before {
	/* content:""; width:100%; border-bottom:1px solid #eee; position:absolute; left:0; bottom:-10px;*/
}

.inLt_contact .h2 span {
	display: block;
	margin-bottom: 6px;
}

.inLt_contact .h2 strong {
	display: block;
	font-size: 22px;
	line-height: 24px;
}

.inLt_contact .h3 {
	font-size: 16px;
	line-height: 26px;
	font-weight: bold;
	padding: 0 10px;
}

.inLt_contact ul {
	padding: 5px 10px 10px 10px;
}

.inLt_contact ul li {
	font-size: 14px;
	line-height: 24px;
	margin: 5px 0;
}

.inLt_contact ul li span {}

.inLt_contact ul li i {
	display: inline-block;
	text-align: center;
	width: 14px;
	line-height: 24px;
	font-size: 14px;
	margin-right: 5px;
	color: var(--primary-color);
}

.inLt_contact ul li i.fa-mobile {
	font-size: 20px;
}

.m11_inside_rt {
	float: right;
	width: calc(100% - 330px);
}

@media(max-width:1699px) {

	.m1_side_c.lfixed {
		transform: translateX(-240px);
	}

	.m1_side_c.lfixed .inLt_contact_btn .inLt_contact_close {
		display: none;
	}

	.m1_side_c.lfixed .inLt_contact_btn .inLt_contact_open {
		display: block;
	}
}

@media(max-width:999px) {
	.m11_insidebg {
		padding: 30px 0 60px 0;
	}

	.m11_inside_lt {
		display: none;
	}

	.m11_inside_rt {
		float: right;
		width: 100%;
	}
}


.m11_news1 {}

.m11_news1_lt {
	float: left;
	width: calc(100% - 280px);
}

.m11_news1_rt {
	float: right;
	width: 240px;
}

.m1_side_b {
	margin-bottom: 30px;
	background: #fff;
	padding: 10px;
}

.m1_side_b .h1 {
	font-size: var(--font20);
	line-height: 24px;
	padding-left: 30px;
	position: relative;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}

.m1_side_b .h1 i {
	width: 24px;
	height: 24px;
	background: url(../images/ico_hot.png) center no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
}

.m1_side_b .list {
	margin-top: 20px;
}

.m1_side_b .list ul li {
	margin-bottom: 10px;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.m1_side_b .list ul li .nr_box {}

.m1_side_b .list ul li .imgbg {
	height: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(50%);
	transition: all .5s ease;
}

.m1_side_b .list ul li .img {
	padding-bottom: 38%;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.m1_side_b .list ul li .img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
}

.m1_side_b .list ul li .txtbg {}

.m1_side_b .list ul li .txt {}

.m1_side_b .list ul li .txt .h2 {
	font-size: var(--font14);
	line-height: 24px;
	height: 24px;
	padding: 0 0 0 30px;
	position: relative;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.m1_side_b .list ul li .txt .h2 em {
	width: 24px;
	height: 24px;
	line-height: 24px;
	border-radius: 0 8px 0 8px;
	text-align: center;
	color: #999;
	font-style: normal;
	position: absolute;
	left: 0;
	top: 0;
}

.m1_side_b .list ul li .txt .h2 span {}

.m1_side_b .list ul li.active .imgbg {
	height: auto;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.m1_side_b .list ul li.active .txtbg {
	width: 100%;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .9));
	position: absolute;
	bottom: 0;
	left: 0;
}

.m1_side_b .list ul li.active .txt .h2 {
	color: #fff;
}

.m1_side_b .list ul li:nth-child(1) .txt .h2 em {
	color: #FE2D46;
}

.m1_side_b .list ul li:nth-child(2) .txt .h2 em {
	color: #F60;
}

.m1_side_b .list ul li:nth-child(3) .txt .h2 em {
	color: #FAA90E;
}

.m1_side_b .list ul li.active .txt .h2 em {
	color: #fff;
}

.m1_side_b .list ul li.active:nth-child(1) .txt .h2 em {
	background: #FE2D46;
}

.m1_side_b .list ul li.active:nth-child(2) .txt .h2 em {
	background: #F60;
}

.m1_side_b .list ul li.active:nth-child(3) .txt .h2 em {
	background: #FAA90E;
}

@media(max-width:999px) {
	.m11_news1_lt {
		float: left;
		width: 100%;
	}

	.m11_news1_rt {
		float: right;
		width: 100%;
		display: none;
	}
}




/*地图*/
#allmap {
	width: 100%;
	height: 500px;
	background: #f9f9f9;
	border-radius: 10px;
}

@media(max-width:999px) {
	#allmap {
		width: 100%;
		height: 250px;
	}
}


/*详情*/
.m11_newsdetail {}

.m11_newsdetail .tit {
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	text-align: center;
}

.m11_newsdetail .tit .h2 {
	font-size: 24px;
	line-height: 1.4em;
}

.m11_newsdetail .tit .h3 {
	font-size: 14px;
	line-height: 1.4em;
	color: #999;
	margin-top: 5px;
}

.m11_newsdetail .tit .h3 span {
	display: inline-block;
	margin: 0 20px 0 0;
}

.m11_newsdetail .list1 {
	padding: 40px 0;
}

@media(max-width:999px) {
	.m11_newsdetail .tit .h2 {
		font-size: 20px;
		line-height: 1.4em;
	}

	.m11_newsdetail .tit .h3 {
		font-size: 12px;
		line-height: 1.4em;
		margin-top: 5px;
	}

	.m11_newsdetail .tit .h3 span {
		margin: 0 10px 0 0;
	}

	.m11_newsdetail .list1 {
		padding: 20px 0;
		margin: 20px 0 0 0;
	}
}


/*上一个下一个*/
.prev_next {
	font-size: 14px;
	line-height: 34px;
	padding: 15px 0;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.prev_next a {
	display: block;
	margin: 5px 0;
	max-width: 40%;
	height: 34px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

@media(max-width:999px) {
	.prev_next {
		font-size: 12px;
		line-height: 32px;
		padding: 15px 0;
		display: block;
	}

	.prev_next a {
		margin: 5px 0;
		max-width: 100%;
		height: 34px;
	}
}


/*.proDetail*/
.m11_proDetail {}

.m11_proDetail .list1 {
	margin-bottom: 2.08vw;
}

.m11_proDetail .list1 .lt {
	float: left;
	width: 40%;
}

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;
}

.m1_galleryTop .img {
	position: relative;
	padding-bottom: 100%;
	position: relative;
}

.m1_galleryTop .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
}

.m1_galleryThumbs {}

.m1_galleryThumbs .swiper-slide {}

.m1_galleryThumbs .swiper-slide .img {
	position: relative;
	padding-bottom: 100%;
	position: relative;
	border: 1px solid #eee;
	cursor: pointer;
}

.m1_galleryThumbs .swiper-slide .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
}

.m1_galleryThumbs .swiper-slide.swiper-slide-thumb-active .img {
	border-color: var(--primary-color);
}

.m11_proDetail .list1 .rt {
	float: right;
	width: 56%;
}

.m11_proDetail .list1 .rt .nr_box {}

.m11_proDetail .list1 .rt .h2 {
	font-size: 24px;
	line-height: 1.4em;
	margin-bottom: 10px;
	font-weight: bold;
}

.m11_proDetail .list1 .rt .h3 {
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 20px;
}

.m11_proDetail .list1 .rt .h4 {
	font-size: 16px;
	line-height: 1.6em;
	margin-bottom: 40px;
}

.m11_proDetail .phone {
	font-size: 1.04vw;
	line-height: 1em;
	margin-bottom: 1.6em;
	color: var(--primary-color);
	padding: 0 0 0 5.2vw;
	position: relative;
}

.m11_proDetail .phone i {
	text-align: center;
	width: 4.16vw;
	line-height: 5.2vw;
	font-size: 4.16vw;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.m11_proDetail .phone span {
	display: block;
	margin-bottom: .52vw;
}

.m11_proDetail .phone strong {
	display: block;
	font-size: 1.66vw;
	line-height: 1em;
}

.m11_prevnext2 {
	font-size: var(--font14);
	line-height: 2.5em;
	margin-bottom: 2.08vw;
}

.m11_prevnext2 ul li {
	float: left;
}

.m11_prevnext2 ul li:nth-child(2n) {
	float: right;
}

.m11_prevnext2 ul li a {
	display: block;
	border: 1px solid #eee;
	/* border-radius:40px;*/
	padding: 0 20px;
	min-width: 80px;
	text-align: center;
	background: #f5f5f5;
}

.m11_prevnext2 ul li a:hover {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: #fff;
}

.m11_proDetail .list2 {
	border: 1px solid #eee;
	margin-bottom: 2.08vw;
}

.m11_proDetail .list2 .hd {
	font-size: var(--font14);
	line-height: 3em;
	border-bottom: 1px solid #eee;
}

.m11_proDetail .list2 .hd ul li {
	display: inline-block;
	vertical-align: top;
	font-size: 18px;
	line-height: 3em;
	width: 200px;
	height: 54px;
}

.m11_proDetail .list2 .hd ul li a {
	display: block;
	padding: 0 10px;
	min-width: 100px;
	text-align: center;
	border-right: 1px solid #eee;
	border-bottom: none;
}

.m11_proDetail .list2 .hd ul li.on a {
	color: #fff;
	background: var(--primary-color);
}

.m11_proDetail .list2 .xiangqing {
	padding: 20px;
}

.m11_proDetail .list2 .xiangqing img {
	max-width: 100%;
}

.m11_pro_related {
	border: 1px solid #eee;
}

.m11_pro_related>.h2 {
	font-size: 34px;
	text-align: center;
	color: rgba(51, 51, 51, 1);
	max-width: 1500px;
	width: 94%;
	font-weight: bold;
}

.m11_pro_related>.h2 span {}

.m11_pro_related .index_product1 {
	padding: 20px 20px 0 20px;
}

.m11_pro_related .index_product1 ul li {
	width: calc((100% - 60px)/4);
}

.m11_pro_related .index_product1 ul li:nth-child(3n-2) {
	margin-left: 20px;
	clear: none;
}

.m11_pro_related .index_product1 ul li:nth-child(4n-3) {
	margin-left: 0;
	clear: left;
}

@media(max-width:999px) {
	.m11_proDetail .list1 {
		margin-bottom: 30px;
	}

	.m11_proDetail .list1 .lt {
		float: left;
		width: 100%;
		margin-bottom: 20px;
	}

	.m11_proDetail .list1 .rt {
		float: right;
		width: 100%;
	}

	.m11_proDetail .list1 .rt .h2 {
		font-size: 18px;
		line-height: 1.4em;
		margin-bottom: 0;
	}

	.m11_proDetail .list1 .rt .h3 {
		font-size: 16px;
		line-height: 1.4em;
		margin-bottom: 10px;
	}

	.m11_proDetail .list1 .rt .h4 {
		font-size: 14px;
		line-height: 1.6em;
		margin-bottom: 20px;
	}

	.m11_proDetail .phone {
		font-size: 14px;
		line-height: 1em;
		margin-bottom: 1.6em;
		padding: 15px 20px 15px 60px;
	}

	.m11_proDetail .phone i {
		width: 60px;
		line-height: 60px;
		font-size: 40px;
	}

	.m11_proDetail .phone span {
		margin-bottom: 5px;
	}

	.m11_proDetail .phone strong {
		font-size: 18px;
		line-height: 1em;
	}

	.m11_proDetail .list2 {
		margin-bottom: 30px;
	}

	.m11_proDetail .list2 .hd ul li a {
		min-width: 60px;
	}

	.m11_prevnext2 {
		margin-bottom: 30px;
	}

	.m11_pro_related .index_product1 ul li {
		width: calc((100% - 10px)/2);
	}

	.m11_pro_related .index_product1 ul li:nth-child(3n-2) {
		margin-left: 10px;
		clear: none;
	}

	.m11_pro_related .index_product1 ul li:nth-child(4n-3) {
		margin-left: 10px;
		clear: none;
	}

	.m11_pro_related .index_product1 ul li:nth-child(2n-1) {
		margin-left: 0;
		clear: left;
	}
}


/*搜索*/
.search_form {
	background: #f9f9f9;
	padding: 1.56vw;
	margin-bottom: 2.08vw;
	border-radius: 10px;
}

.search_form form {
	height: 2.6vw;
}

.search_form form #search_keywords {
	float: left;
	border: none;
	background: #fff;
	height: 2.6vw;
	line-height: 2.6vw;
	padding: 0 .5vw;
	width: calc(100% - 6.2vw);
}

.search_form form #search {
	float: right;
	border: none;
	width: 5.2vw;
	height: 2.6vw;
	line-height: 2.6vw;
	font-size: .84vw;
	background: var(--primary-color);
	color: #fff;
	cursor: pointer;
}

.search_form form #search:hover {
	opacity: .9;
}

@media(max-width:999px) {
	.search_form {
		padding: 10px;
		margin-bottom: 20px;
	}

	.search_form form {
		height: 40px;
	}

	.search_form form #search_keywords {
		height: 40px;
		line-height: 40px;
		padding: 0 10px;
		width: calc(100% - 80px);
	}

	.search_form form #search {
		width: 60px;
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
}




/*Add------------------------------------------------------------------------------*/

/*<!--弹窗2-->*/
.popup_tip2_box {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	background: rgba(0, 0, 0, .6);
	/* display: none;*/
}

.popup_tip2bg {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup_tip2 {
	width: 440px;
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 10000;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 1px 1px 50px rgba(0, 0, 0, .3);
}

.popup_tip2-body {
	width: 100%;
	height: calc(100% - 72px);
}

.zoomIn {
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.5, .5, .5);
		transform: scale3d(.5, .5, .5)
	}

	50% {
		opacity: 1
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.5, .5, .5);
		transform: scale3d(.5, .5, .5)
	}

	50% {
		opacity: 1
	}
}

@media(max-width:750px) {
	.popUpBox {
		width: 90%;
	}
}

.ts {
	padding: 20px 20px 20px 20px;
}

.ts .h2 {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 10px;
}

.ts .h3 {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 14px;
	display: inline-block;
	position: relative;
	padding-left: 30px;
}

.ts .h3 img {
	display: inline-block;
	vertical-align: top;
	width: 24px;
}

.ts .h3 i {
	width: 24px;
	height: 24px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
}

.success .ts i {
	background-image: url(../images/ico_success.png);
}

.error .ts i {
	background-image: url(../images/ico_error.png);
}

.warning .ts i {
	background-image: url(../images/ico_warning.png);
}

.ts .h3 span {}

.ts_btn {
	text-align: right;
	font-size: 12px;
	line-height: 32px;
}

.ts_btn a {
	display: inline-block;
	text-align: center;
	border-radius: 4px;
	width: 78px;
	border: 1px solid #1890ff;
	background: #1890ff;
	color: #fff;
	margin-left: 10px;
}

.ts_btn a:hover {
	border-color: #2e80e2;
	background: #2e80e2;
	color: #fff;
}

.ts_btn a.bg2 {
	border: 1px solid #ccc;
	background: #fff;
	color: #666;
}

.ts_btn a.bg2:hover {
	border-color: #1890ff;
	background: #fff;
	color: #1890ff;
}


/*提示框*/
.popup_tip_box {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
}

.popup_tip_close1 {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.popup_tipbg {
	min-width: 100px;
	max-width: 750px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.popup_tip {
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.popup_tip_close2 {
	display: none;
}

.popup_tip_txt {
	padding: 15px 20px;
	text-align: center;
	font-size: 14px;
	line-height: 24px;
}

.popup_tip_txt span {
	display: inline-block;
	padding-left: 30px;
	position: relative;
}

.popup_tip_txt span i {
	width: 24px;
	height: 24px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
}

.success .popup_tip_txt span {
	color: #4ebb23;
}

.error .popup_tip_txt span {
	color: #f34b51;
}

.warning .popup_tip_txt span {
	color: #f1b306;
}

.success .popup_tip_txt span i {
	background-image: url(../images/ico_success.png);
}

.error .popup_tip_txt span i {
	background-image: url(../images/ico_error.png);
}

.warning .popup_tip_txt span i {
	background-image: url(../images/ico_warning.png);
}

@-webkit-keyframes fadeInUp2 {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInUp2 {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInUp2 {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInUp2;
	animation-name: fadeInUp2
}

/*联系弹窗*/
.proContact1_box {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	display: none;
}

.proContact1_close1 {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.proContact1_bg {
	width: 90%;
	max-width: 700px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.proContact1_close2 {
	width: 20px;
	height: 20px;
	background: url(../images/chahao2.png) center no-repeat;
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 3;
	opacity: .9;
	transition: all .3s ease;
}

.proContact1_close2:hover {
	opacity: 1;
	transform: rotate(180deg)
}

.proContact1 {
	min-height: 260px;
	background: #fff;
	border-radius: 10px;
	position: relative;
	z-index: 2;
	padding-left: 235px;
	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;
}

.proContact1>img {
	width: 230px;
	position: absolute;
	bottom: 0;
	left: 5px;
}

.proContact1_con {
	font-size: 16px;
	line-height: 20px;
}

.proContact1_con ul li {
	float: left;
	width: 50%;
	margin: 10px 0;
	color: var(--primary-color);
	padding-left: 50px;
	min-height: 40px;
	box-sizing: border-box;
	position: relative;
}

.proContact1_con ul li:nth-child(1) {
	width: 100%;
	padding-left: 0;
}

.proContact1_con ul li i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 100%;
	background: var(--primary-color);
	color: #fff;
	font-size: 20px;
	position: absolute;
	left: 0;
	top: 0;
}

.proContact1_con ul li .h2 {
	font-size: 24px;
	line-height: 34px;
	font-weight: bold;
	color: var(--primary-color);
}

.proContact1_con ul li span {
	display: block;
	color: #333;
}

.proContact1_con ul li .h2 span {
	color: var(--primary-color);
}

@media(max-width:999px) {
	.proContact1 {
		min-height: 0;
		padding: 15px 5%;
	}

	.proContact1>img {
		width: 36%;
		bottom: auto;
		top: 0;
		left: 50%;
		transform: translate(-50%, -100%)
	}

	.proContact1_con {
		font-size: 14px;
		line-height: 18px;
	}

	.proContact1_con ul li {
		float: left;
		width: 100% !important;
		margin: 5px 0;
	}

	.proContact1_con ul li .h2 {
		font-size: 20px;
		line-height: 30px;
	}
}


/*留言咨询1*/
.tc_message_open1 {
	cursor: pointer;
	width: 60px;
	height: 60px;
	/* padding:10px;*/
	margin-top: -40px;
	border-radius: 100%;
	box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	background: var(--primary-color) url(../images/ico_zxly1.png) center no-repeat;
	background-size: 40px auto;
	color: #fff;
	font-size: 0;
	line-height: 20px;
	text-align: center;
	position: fixed;
	z-index: 44;
	left: 0;
	top: 50%;
	animation: btnAnimation 1s linear infinite 0s forwards;
	display: none !important;
}

.tc_message_box {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	display: none;
}

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

.tc_message_bg {
	width: 90%;
	max-width: 500px;
	background-image: linear-gradient(to bottom right, var(--primary-color), var(--third-color));
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.tc_message_close2 {
	width: 20px;
	height: 20px;
	background: url(../images/chahao.png) center no-repeat;
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
	transition: all .3s ease;
}

.tc_message_close2:hover {
	transform: rotate(180deg);
}

.tc_message {
	padding: 30px;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.tc_message_lt {
	width: 180px;
	font-size: 16px;
	line-height: 26px;
}

.tc_message_lt ul {}

.tc_message_lt ul li {}

.tc_message_lt ul li i {
	font-size: 20px;
	width: 16px;
	text-align: center;
	margin-right: 5px;
}

.tc_message_lt ul li i.fa-mobile {
	font-size: 24px;
}

.tc_message_lt ul li i.fa-envelope {
	font-size: 16px;
}

.tc_message_lt ul li .ewm {
	width: 150px;
	margin-top: 5px;
}

.tc_message_lt ul li .ewm img {
	display: block;
	margin: 0 auto;
	width: 100px;
	height: 100px;
	margin-bottom: 5px;
}

.tc_message_lt ul li .ewm span {
	display: block;
	background: #fff;
	color: var(--primary-color);
	font-size: 12px;
	line-height: 22px;
	text-align: center;
}

.tc_message_rt {
	width: calc(100% - 200px);
}

.tc_message .h2 {
	font-size: 20px;
	line-height: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}

.tc_message .message {}

.tc_message .message form {}

.tc_message .message ul li {
	margin-bottom: 10px;
}

.tc_message .message .input_text {
	border: 1px solid #ccc;
	background: #fff;
	height: 28px;
	line-height: 28px;
	padding: 0 10px;
	width: calc(100% - 22px);
	border-radius: 4px;
}

.tc_message .message textarea {
	border: 1px solid #ccc;
	background: #fff;
	height: 56px;
	line-height: 28px;
	padding: 0 10px;
	width: calc(100% - 22px);
	border-radius: 4px;
}

.tc_message .message .input_button {
	border: 1px solid #333;
	background: #333;
	color: #fff;
	height: 30px;
	line-height: 28px;
	width: 80%;
	border-radius: 50px;
	cursor: pointer;
	display: block;
	margin: 0 auto;
	font-size: 16px;
}

.tc_message .h3 {
	font-size: 12px;
	line-height: 24px;
	text-align: center;
}

.tc_message .h3 span {
	font-size: 16px;
	color: var(--primary-color);
}

@media(max-width:999px) {
	.tc_message {
		padding: 30px;
		display: block;
	}

	.tc_message_lt {
		width: 100%;
		font-size: 14px;
	}

	.tc_message_lt ul {
		position: relative;
	}

	.tc_message_lt ul li {
		margin-top: 8px;
	}

	.tc_message_lt ul li:last-child {
		position: absolute;
		top: 0;
		right: 10px;
		margin-top: 0;
	}

	.tc_message_lt ul li .ewm {
		width: 90px;
		margin-top: 0;
	}

	.tc_message_lt ul li .ewm img {
		width: 90px;
		height: 90px;
		margin-bottom: 0;
	}

	.tc_message_lt ul li .ewm span {
		display: none;
	}

	.tc_message_rt {
		width: 100%;
		padding: 20px 0 0 0;
	}
}

@keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}

/* Firefox */
@-moz-keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}

/* Safari and Chrome */
@-webkit-keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}

/* Opera */
@-o-keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}


/*询盘*/
.pinquiry1_box {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	display: none;
}

.pinquiry1_close1 {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.pinquiry1_bg {
	width: 600px;
	height: 700px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.pinquiry1_close2 {
	width: 53px;
	height: 53px;
	background: url(../images/chahao2.png) center no-repeat;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	opacity: .9;
	transition: all .3s ease;
}

.pinquiry1_close2:hover {
	opacity: 1;
	transform: rotate(180deg)
}

.pinquiry1 {
	background: #fff;
	height: 600px;
	padding: 60px 30px 40px 30px;
	transform: scale(0) translate(100%, 100%);
	transition: all .5s ease;
	z-index: 2;
	transform-origin: bottom right;
}

.pinquiry1.fadeInRight2 {
	transform: scale(1) translate(0, 0);
}

.pinquiry1 .h2 {
	font-size: var(--font20);
}

.pinquiry1 .tips1 {
	font-size: 12px;
	line-height: 22px;
	color: #999;
}

.pinquiry1 .h2 .tips1 {
	display: inline-block;
	margin-left: 10px;
}

.pinquiry1 font {
	color: var(--red);
}

.pinquiry1_con {
	font-size: var(--font16);
	line-height: 32px;
	margin-top: 35px;
}

.pinquiry1_con dl {
	padding-left: 120px;
	position: relative;
	margin-top: 20px;
}

.pinquiry1_con dl dt {
	position: absolute;
	left: 0;
	top: 0;
	color: #999;
}

.pinquiry1_con dl dd {
	min-height: 32px;
}

.pinquiry1_con .input_text {
	border: 1px solid #eee;
	background: #fff;
	border-radius: 4px;
	height: 30px;
	line-height: 30px;
	padding: 0 10px;
	width: calc(100% - 22px);
	max-width: 300px;
}

.pinquiry1_con textarea {
	border: 1px solid #eee;
	background: #fff;
	border-radius: 4px;
	height: 100px;
	line-height: 30px;
	padding: 0 10px;
	width: calc(100% - 22px);
}

.pinquiry1_con .input_button {
	display: block;
	width: 100px;
	line-height: 32px;
	border-radius: 4px;
	background: var(--primary-color);
	color: #fff;
}

.pinquiry1_con .input_button:hover {
	opacity: .9;
}

.pinquiry1_con .yzm {}

.pinquiry1_con .yzm .input_text {
	float: left;
}

.pinquiry1_con .yzm #sendcode {
	float: right;
	border: 1px solid var(--primary-color);
	background: var(--primary-color);
	color: #fff;
	height: 32px;
	line-height: 30px;
	border-radius: 4px;
	width: calc(100% - 332px);
}

.pinquiry1_con .yzm img {
	float: left;
	height: 32px;
	margin-left: 10px;
}

.pinquiry1_con #proName {
	max-height: 84px;
	overflow-y: auto;
}

.pinquiry1_con #proName span {
	display: inline-block;
	vertical-align: top;
	border: 1px solid #eee;
	background: #fff;
	border-radius: 4px;
	height: 30px;
	line-height: 30px;
	padding: 0 32px 0 10px;
	position: relative;
	margin: 0 10px 10px 0;
	overflow: hidden;
}

.pinquiry1_con #proName span i {
	width: 12px;
	height: 12px;
	line-height: 10px;
	text-align: center;
	font-size: 12px;
	font-style: normal;
	border: 1px solid #f5f5f5;
	color: #999;
	cursor: pointer;
	position: absolute;
	top: 9px;
	right: 9px;
}

.pinquiry1_con #proName span i:hover {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: #fff;
}

@media(max-width:999px) {
	.pinquiry1_bg {
		width: 100%;
		height: 100%;
	}

	.pinquiry1_close2 {
		width: 40px;
		height: 40px;
		/* background-size:contain;*/
	}

	.pinquiry1 {
		height: calc(100% - 80px);
		padding: 40px 20px;
	}

	.pinquiry1_con dl {
		padding-left: 80px;
	}

	.pinquiry1_con .input_text {
		max-width: 100%;
	}

	.pinquiry1_con .yzm .input_text {
		width: calc(100% - 112px);
	}

	.pinquiry1_con .yzm #sendcode {
		width: 80px;
	}
}


.shopptingcart_loading {
	width: 50%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	position: fixed;
	z-index: 9999;
	top: 0;
	right: 0;
	text-align: center;
	color: #fff;
	font-size: 20px;
	line-height: 2em;
}

.loadEffect2 {
	width: 80px;
	height: 80px;
	position: relative;
	margin: 0 auto;
	margin-top: 30vh;
}

.loadEffect2 span {
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	-webkit-animation: load 1.04s ease infinite;
}

@-webkit-keyframes load2 {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0.2;
	}
}

.loadEffect2 span:nth-child(1) {
	left: 0;
	top: 50%;
	margin-top: -8px;
	-webkit-animation-delay: 0.13s;
}

.loadEffect2 span:nth-child(2) {
	left: 10px;
	top: 10px;
	-webkit-animation-delay: 0.26s;
}

.loadEffect2 span:nth-child(3) {
	left: 50%;
	top: 0;
	margin-left: -8px;
	-webkit-animation-delay: 0.39s;
}

.loadEffect2 span:nth-child(4) {
	top: 10px;
	right: 10px;
	-webkit-animation-delay: 0.52s;
}

.loadEffect2 span:nth-child(5) {
	right: 0;
	top: 50%;
	margin-top: -8px;
	-webkit-animation-delay: 0.65s;
}

.loadEffect2 span:nth-child(6) {
	right: 10px;
	bottom: 10px;
	-webkit-animation-delay: 0.78s;
}

.loadEffect2 span:nth-child(7) {
	bottom: 0;
	left: 50%;
	margin-left: -8px;
	-webkit-animation-delay: 0.91s;
}

.loadEffect2 span:nth-child(8) {
	bottom: 10px;
	left: 10px;
	-webkit-animation-delay: 1.04s;
}


@keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}

/* Firefox */
@-moz-keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}

/* Safari and Chrome */
@-webkit-keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}

/* Opera */
@-o-keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}


/*购物车*/
.proShoppingcart_box .shopptingcart_open {
	font-size: 0;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	background: var(--primary-color) url(../images/ico_pbtn2.png) center no-repeat;
	background-size: 50% auto;
	position: fixed;
	top: 20%;
	right: 10%;
	cursor: pointer;
	z-index: 0;
	animation: btnAnimation 1s linear infinite 0s forwards;
}

.proShoppingcart_box .shopptingcart_open:hover {
	opacity: .9;
}

.tit_cart {}

.tit_cart .h2 {
	border-bottom: 1px solid #eee;
	font-size: 1.25vw;
	line-height: 1.5em;
}

.tit_cart .h2 span {
	display: inline-block;
	border-bottom: 2px solid var(--primary-color);
	color: var(--primary-color);
	padding-bottom: .26vw;
}

.shoppingcart_box {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;
	display: none;
}

.shoppingcart_close1 {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .1);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.shoppingcartbg {
	width: 50%;
	height: 100%;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	overflow-y: auto;
	transform: translateX(100%);
	transition: all .3s ease;
}

.shoppingcartbg.active {
	transform: translateX(0);
}

.shoppingcart_close2 {
	width: 20px;
	height: 20px;
	background: url(../images/chahao2.png) center no-repeat;
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 3;
	opacity: .9;
	transition: all .3s ease;
}

.shoppingcart_close2:hover {
	opacity: 1;
	transform: rotate(180deg)
}

.shoppingcart {
	padding: 1.56vw;
}

.shoppingcart_list {
	margin-top: 1.04vw;
	margin-bottom: 1.56vw;
}

.shoppingcart_list_top {
	background: #f9f9f9;
	border: 1px solid #eee;
	margin-bottom: .52vw;
}

.shoppingcart_list_top table {}

.shoppingcart_list_top table th {
	font-weight: normal;
	text-align: center;
	padding: .78vw .52vw;
	font-size: .84vw;
	line-height: 1.5em;
}

.shoppingcart_list_top .w1 {
	width: 40%;
	text-align: left;
}

.shoppingcart_list_top .w2 {
	width: 15%;
}

.shoppingcart_list_top .w3 {
	width: 15%;
	padding-left: 0;
	padding-right: 0;
}

.shoppingcart_list_top .w4 {
	width: 15%;
}

.shoppingcart_list_top .w5 {
	width: 15%;
}

.shoppingcart_list_mid {
	border: 1px solid #eee;
	border-bottom: none;
	margin-bottom: .52vw;
	max-height: calc(14.04vw + 10px);
	overflow-y: auto;
}

.shoppingcart_list_mid table {}

.shoppingcart_list_mid table td {
	text-align: center;
	padding: .78vw .52vw;
	font-size: .72vw;
	line-height: 2em;
	border-bottom: 1px solid #eee;
}

.shoppingcart_list_mid .w1 {
	width: 40%;
	text-align: left;
}

.shoppingcart_list_mid .w1 .cart_pro {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.shoppingcart_list_mid .w1 .img {
	width: 3.12vw;
	height: 3.12vw;
	border: 1px solid #eee;
	position: relative;
}

.shoppingcart_list_mid .w1 .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
}

.shoppingcart_list_mid .w1 .h2 {
	width: calc(100% - 3.5vw);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.shoppingcart_list_mid .w2 {
	width: 15%;
}

.shoppingcart_list_mid .w3 {
	width: 15%;
	padding-left: 0;
	padding-right: 0;
}

.shoppingcart_list_mid .w3 .pronum {
	height: 1.56vw;
}

.shoppingcart_list_mid .w3 .pronum a {
	width: calc(1.56vw - 2px);
	height: calc(1.56vw - 2px);
	line-height: calc(1.56vw - 2px);
}

.shoppingcart_list_mid .w3 .pronum input {
	width: 2.6vw;
	height: calc(1.56vw - 2px);
	line-height: calc(1.56vw - 2px);
}

.shoppingcart_list_mid .w4 {
	width: 15%;
	font-weight: bold;
}

.shoppingcart_list_mid .w5 {
	width: 15%;
}

.shoppingcart_list_btm {
	border: 1px solid #eee;
}

.shoppingcart_list_btm table {}

.shoppingcart_list_btm table td {
	padding: .78vw .52vw;
	font-size: .84vw;
	line-height: 1.5em;
}

.shoppingcart_list_btm .w1 {
	width: 40%;
}

.shoppingcart_list_btm .w2 {
	width: 60%;
	text-align: right;
}

.shoppingcart_list_btm .w2 strong {
	color: #e64347;
	font-size: 20px;
}

.shoppingcart_form {}

.shoppingcart_form .h2 {
	font-size: 1.25vw;
	line-height: 1.5em;
	margin-bottom: .26vw;
}

.shoppingcart_form .message {}

.shoppingcart_form .message form {}

.shoppingcart_form .message ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	flex-wrap: wrap;
}

.shoppingcart_form .message ul li {
	width: calc((100% - 15px)/2);
	margin-top: .52vw;
}

.shoppingcart_form .message ul li.li1 {
	width: 100%;
}

.shoppingcart_form .message .input_text {
	border: 1px solid #eee;
	background: #fff;
	height: 2.08vw;
	line-height: 2.08vw;
	padding: 0 10px;
	width: calc(100% - 22px);
}

.shoppingcart_form .message textarea {
	border: 1px solid #eee;
	background: #fff;
	height: 6.24vw;
	line-height: 2.08vw;
	padding: 0 10px;
	width: calc(100% - 22px);
}

.shoppingcart_form .message .yzm {
	height: calc(2.08vw + 2px);
}

.shoppingcart_form .message .yzm img {
	float: right;
	width: 100px;
	height: calc(2.08vw + 2px);
}

.shoppingcart_form .message .input_text1 {
	border: 1px solid #eee;
	background: #fff;
	height: 2.08vw;
	line-height: 2.08vw;
	padding: 0 10px;
	width: calc(100% - 125px);
	float: left;
}

.shoppingcart_form .message .yzm #sendcode {
	float: right;
	width: 100px;
	height: calc(2.08vw + 2px);
	background: var(--primary-color);
	color: #fff;
	cursor: pointer;
}

.shoppingcart_form .message .yzm #sendcode:hover {
	opacity: .9;
}

.shoppingcart_form .message .input_button {
	display: block;
	margin: 0 auto;
	border: none;
	width: 100%;
	height: calc(2.08vw + 2px);
	line-height: calc(2.08vw + 2px);
	background: var(--primary-color);
	color: #fff;
	cursor: pointer;
	font-size: 12px;
}

.shoppingcart_form .message .input_button:hover {
	opacity: .9;
}

.yzm input[disabled] {
	background: #999 !important;
	cursor: not-allowed !important;
}

.shoppingcart .success {
	text-align: center;
	margin-top: 20vh;
}

.shoppingcart .success .h1 {
	font-size: 1.25vw;
	line-height: 2em;
	margin-top: .52vw;
}

.shoppingcart .success .h2 {
	font-size: .84vw;
	line-height: 1.5em;
	color: #999;
}

.shoppingcart .success input {
	display: block;
	margin: 0 auto;
	border: none;
	width: 20%;
	height: calc(2.08vw + 2px);
	line-height: calc(2.08vw + 2px);
	background: var(--primary-color);
	color: #fff;
	cursor: pointer;
	border-radius: 4px;
	font-size: 14px;
	margin-top: 1.3vw;
}

.shoppingcart .success input:hover {
	opacity: .9;
}

@media(max-width:999px) {
	.shopptingcart_loading {
		width: 100%;
	}

	.tit_cart .h2 {
		font-size: 20px;
		line-height: 1.5em;
	}

	.tit_cart .h2 span {
		padding-bottom: 5px;
	}

	.shoppingcartbg {
		width: 100%;
		height: 100%;
	}

	.shoppingcart {
		padding: 15px;
	}

	.shoppingcart_list {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.shoppingcart_list_top {
		display: none;
	}

	.shoppingcart_list_mid {
		margin-bottom: 15px;
		max-height: 44vh;
	}

	.shoppingcart_list_mid table tr {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
		flex-wrap: wrap;
	}

	.shoppingcart_list_mid table td {
		padding: 10px 0;
		font-size: 12px;
		line-height: 24px;
		display: block;
	}

	.shoppingcart_list_mid .w1 {
		width: 100%;
		padding-left: 5px;
		padding-right: 5px;
		border: none;
		padding-bottom: 0;
	}

	.shoppingcart_list_mid .w1 .img {
		width: 40px;
		height: 40px;
	}

	.shoppingcart_list_mid .w1 .h2 {
		width: calc(100% - 45px);
		line-height: 16px;
	}

	.shoppingcart_list_mid .w2 {
		width: 24%;
	}

	.shoppingcart_list_mid .w3 {
		width: 28%;
	}

	.shoppingcart_list_mid .w3 .pronum {
		height: 24px;
		vertical-align: top;
	}

	.shoppingcart_list_mid .w3 .pronum a {
		width: 22px;
		height: 22px;
		line-height: 22px;
	}

	.shoppingcart_list_mid .w3 .pronum input {
		width: 44px;
		height: 22px;
		line-height: 22px;
	}

	.shoppingcart_list_mid .w4 {
		width: 24%;
	}

	.shoppingcart_list_mid .w5 {
		width: 24%;
	}

	.shoppingcart_list_btm table td {
		padding: 10px 5px;
		font-size: 12px;
		line-height: 1.5em;
	}

	.shoppingcart_list_btm .w2 strong {
		font-size: 20px;
	}

	.shoppingcart_form {}

	.shoppingcart_form .h2 {
		font-size: 20px;
		line-height: 1.5em;
		margin-bottom: 0;
	}

	.shoppingcart_form .message ul li {
		width: calc((100% - 10px)/2);
		margin-top: 10px;
	}

	.shoppingcart_form .message ul li.li1 {
		width: 100%;
	}

	.shoppingcart_form .message .input_text {
		height: 30px;
		line-height: 30px;
		padding: 0 10px;
		width: calc(100% - 22px);
	}

	.shoppingcart_form .message textarea {
		height: 60px;
		line-height: 30px;
		padding: 0 10px;
		width: calc(100% - 22px);
	}

	.shoppingcart_form .message .yzm {
		height: 32px;
	}

	.shoppingcart_form .message .yzm img {
		width: 100px;
		height: 32px;
	}

	.shoppingcart_form .message .input_text1 {
		height: 30px;
		line-height: 30px;
		padding: 0 10px;
		width: calc(100% - 95px);
	}

	.shoppingcart_form .message .yzm #sendcode {
		width: 68px;
		height: 32px;
		font-size: 12px;
	}

	.shoppingcart_form .message .input_button {
		height: 32px;
		line-height: 32px;
		font-size: 12px;
	}

	.shoppingcart .success {}

	.shoppingcart .success img {
		max-width: 80px;
	}

	.shoppingcart .success .h1 {
		font-size: 20px;
		line-height: 2em;
		margin-top: 10px;
	}

	.shoppingcart .success .h2 {
		font-size: 12px;
		line-height: 1.5em;
	}

	.shoppingcart .success input {
		width: 30%;
		height: 32px;
		line-height: 30px;
		font-size: 12px;
		margin-top: 25px;
	}
}


/*筛选*/
.screen_btn {
	position: fixed;
	top: 100px;
	right: calc(15% - 40px);
	z-index: 11;
	display: none;
}

.screen_btn a {
	display: block;
	width: 40px;
	height: 40px;
	background-color: var(--secondary-color);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px auto;
	background-image: url(../images/ico_screen.png);
}

.screen_close {
	font-size: 0;
	width: 40px;
	height: 40px;
	cursor: pointer;
	border-radius: 100%;
	background: url(../images/ico_btn1.png) center no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	right: calc(15% - 40px);
	z-index: 2;
	display: none;
}

.screen {}

.screen_box {
	width: 100%;
	font-size: 14px;
	line-height: 28px;
	background: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	border-radius: 4px;
	margin-bottom: 30px;
	position: relative;
	z-index: 22;
}

.screen_box>ul {
	position: relative;
	padding: 5px 15px 0 15px;
}

.screen_box>ul>li {
	position: relative;
	padding: 15px 0 5px 70px;
	position: relative;
	border-top: 1px solid #eee;
}

.screen_box>ul>li:first-child {
	border-top: none;
}

.screen_box>ul>li:nth-child(n+3) {
	display: none;
}

.screen_box.active>ul>li:nth-child(n+3) {
	display: block;
}

.screen_box>ul>li>span {
	display: block;
	font-size: 16px;
	line-height: 30px;
	position: absolute;
	left: 0;
	top: 15px;
}

.screen_box>ul>li .boxbg {
	/* height:35px;*/
	overflow: hidden;
	position: relative;
	/* padding-right:30px;*/
}

.screen_box>ul>li .boxbg.active {
	/* height:auto;*/
}

.screen_box .box_btn {
	display: none;
	padding-bottom: 15px;
}

.screen_box .box_btn i {
	display: block;
	margin: 0 auto;
	width: 30px;
	height: 30px;
	background: url(../images/ico_down1.png) center no-repeat;
	cursor: pointer;
}

.screen_box .box_btn i.i1 {}

.screen_box .box_btn i.i2 {
	background-image: url(../images/ico_list2.png);
	display: none;
}

.screen_box.active .box_btn i.i1 {
	display: none;
}

.screen_box.active .box_btn i.i2 {
	display: block;
}

.screen_box>ul>li .box {}

.screen_box>ul>li a {
	display: inline-block;
	padding: 0 15px;
	color: #999;
	border: 1px solid #f5f5f5;
	margin: 0 10px 10px 0;
	border-radius: 4px;
}

.screen_box>ul>li a:hover {
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.screen_box>ul>li a.hover {
	color: #fff;
	border-color: var(--primary-color);
	background: var(--primary-color);
}

.screen.tfixed .screen_box {
	position: fixed;
	top: 100px;
	left: 0;
	z-index: 33;
	transform: translateY(-100%);
	transition: all .3s ease;
	opacity: 0;
	visibility: hidden;
}

.screen.tfixed.shown .screen_box {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.screen.tfixed.hiden .screen_box {
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
}

.screen.tfixed .screen_box>ul {
	width: 70%;
	margin: 0 auto;
}

.screen.tfixed .screen_btn {
	display: block;
}

.screen.tfixed .screen_close {
	display: block;
}

/*.screen.active{ position:fixed; left:0; top:0; padding:0;}
.screen.active>ul{ width:70%; margin:0 auto;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: space-between;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: flex-start;
align-items: flex-start;}
.screen.active>ul>li{ width:100%; position:static; padding:0; border:none; cursor:pointer; text-align:center; }
.screen.active>ul>li>span{ position:relative; left:auto; top:auto; line-height:60px; display:inline-block;}
.screen.active>ul>li>span:after{ content:""; width:20px; height:100%; background:url(../images/ico_down1.png) center no-repeat; position:absolute; top:0; left:100%;}
.screen.active>ul>li:hover>span:after{ background-image:url(../images/ico_up1.png);}
.screen.active>ul>li .boxbg{ width:100%; background:#fff; box-shadow:0 0 5px rgba(0,0,0,.1); position:absolute; top:100%; left:0; display:none;}
.screen.active>ul>li:hover .boxbg{ display:block;}
.screen.active>ul>li .box{ width:70%; margin:0 auto; padding:20px 0;}*/
@media(max-width:1699px) {
	.screen_btn {
		right: calc(10% - 40px)
	}

	.screen_close {
		right: calc(10% - 40px)
	}

	.screen.tfixed .screen_box>ul {
		width: 80%;
	}

	/*.screen.active>ul{ width:80%;}
.screen.active>ul>li .box{ width:80%; }*/
}

@media(max-width:1279px) {
	.screen_btn {
		right: calc(5% - 40px)
	}

	.screen_close {
		right: calc(5% - 40px)
	}
}

@media(max-width:999px) {
	.screen_box {
		font-size: 12px;
		line-height: 24px;
		/* margin-top:35px;*/
		display: none;
	}

	.screen.tfixed .screen_box {
		top: 60px;
		display: block;
	}

	.screen_btn {
		right: 0
	}

	.screen_close {
		right: 0;
	}

	.screen_box>ul {
		max-height: calc(100vh - 120px);
		overflow-y: auto;
	}

	.screen_box>ul>li {
		/* margin-bottom:15px;*/
		padding-bottom: 10px;
		padding-left: 60px;
	}

	.screen_box>ul>li>span {
		font-size: 12px;
		line-height: 24px;
	}

	.screen_box>ul>li a {
		padding: 0 5px;
		margin: 0 5px 5px 0;
	}

	.screen.tfixed .screen_box>ul {
		width: 90%;
	}

	/*.screen.active>ul{ width:90%;}
.screen.active>ul>li .box{ width:90%; }*/
}







/*pro1*/
.index_product1 {}

.index_product1 ul li {
	float: left;
	width: calc((100% - 40px)/3);
	margin: 0 0 20px 20px;
	text-align: center;
	background: #fff;
}

.index_product1 ul li:nth-child(3n-2) {
	margin-left: 0;
	clear: left;
}

.index_product1 ul li .nr_box {
	border: 1px solid #eee;
	border-radius: 10px;
	overflow: hidden;
	transition: all .3s ease;
}

.index_product1 ul li:hover .nr_box {
	border-color: var(--primary-color);
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.index_product1 ul li .img {
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
	background: #f9f9f9;
}

.index_product1 ul li .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	transition: all .3s ease;
}

.index_product1 ul li:hover .img img {
	transform: scale(1.1);
}

.index_product1 ul li .txtbg {}

.index_product1 ul li .txt {
	padding: 15px 5%;
	color: #666;
}

.index_product1 ul li .txt .h2 {
	font-size: 18px;
	line-height: 1.5em;
	height: 1.5em;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.index_product1 ul li:hover .txt .h2 {
	color: var(--primary-color);
}

.index_product1 ul li .txt .h3 {
	display: none;
}

@media(max-width:999px) {
	.index_product1 ul li {
		float: left;
		width: calc((100% - 10px)/2);
		margin: 0 0 20px 10px;
	}

	.index_product1 ul li:nth-child(3n-2) {
		margin-left: 10px;
		clear: none;
	}

	.index_product1 ul li:nth-child(2n-1) {
		margin-left: 0;
		clear: left;
	}

	.index_product1 ul li .txt {
		padding: 10px 5%;
	}

	.index_product1 ul li .txt .h2 {
		font-size: 14px;
		line-height: 1.5em;
		height: 1.5em;
	}
}


/*news1*/
.index_news1 {
	padding: 40px 0;
	background: #f2f2f2;
}

.index_news1 ul li {
	float: left;
	width: calc((100% - 20px)/2);
	margin: 0 0 20px 20px;
	background: #fff;
}

.index_news1 ul li:nth-child(2n-1) {
	margin-left: 0;
	clear: left;
}

.index_news1 ul li .nr_box {
	border: 1px solid #f2f2f2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.index_news1 ul li .imgbg {
	width: 25%;
}

.index_news1 ul li .img {
	padding-bottom: 70%;
	position: relative;
	overflow: hidden;
}

.index_news1 ul li .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	transition: all .3s ease;
}

.index_news1 ul li:hover .img img {
	transform: scale(1.1);
}

.index_news1 ul li .txtbg {
	width: 75%;
}

.index_news1 ul li .txt {
	padding: 20px 20px;
	color: #666;
}

.index_news1 ul li .txt .h2 {
	font-size: .94vw;
	line-height: 1.5em;
	height: 1.5em;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.index_news1 ul li:hover .txt .h2 {
	color: var(--primary-color);
}

.index_news1 ul li .txt .h3 {
	font-size: .72vw;
	line-height: 1.5em;
	height: 3em;
	margin: 10px 0 0 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.index_news1 ul li .txt .time {
	font-size: 14px;
	line-height: 24px;
	color: #999;
	padding-left: 24px;
	position: relative;
	margin: 10px 0 0 0;
}

.index_news1 ul li .txt .time i {
	width: 20px;
	height: 24px;
	background: url(../images/ico_time.png) center no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}

@media(max-width:999px) {
	.index_news1 ul li {
		float: left;
		width: 100%;
		margin: 0 0 20px 0;
	}
}


/*news2*/
.index_news2 {
	padding: 40px 0;
}

.index_news2 ul li {
	float: left;
	width: calc((100% - 20px)/2);
	margin: 0 0 0 20px;
	border-bottom: 1px solid #ccc;
	padding: 20px 0;
}

.index_news2 ul li:nth-child(2n-1) {
	margin-left: 0;
	clear: left;
}

.index_news2 ul li .txt {}

.index_news2 ul li .txt .h2 {
	font-size: 16px;
	line-height: 26px;
	height: 26px;
	overflow: hidden;
	padding-left: 25px;
	position: relative;
}

.index_news2 ul li .txt .h2:before {
	content: "";
	width: 6px;
	height: 6px;
	background: #000;
	position: absolute;
	left: 0;
	top: 10px;
}

.index_news2 ul li .txt .h2 a {
	float: left;
	width: 70%;
	height: 26px;
	overflow: hidden;
	color: #333;
}

.index_news2 ul li:hover .txt .h2 a {
	color: var(--primary-color);
}

.index_news2 ul li .txt .h2 span {
	float: right;
	color: #999;
}

@media(max-width:999px) {
	.index_news2 ul li {
		float: left;
		width: 100%;
		margin: 0;
	}
}


/*news3*/
.index_news3 {
	padding: 40px 0;
}

.index_news3 ul li {
	float: left;
	width: calc((100% - 20px)/2);
	margin: 0 0 20px 20px;
}

.index_news3 ul li:nth-child(2n-1) {
	margin-left: 0;
	clear: left;
}

.index_news3 ul li .nr_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.index_news3 ul li .date {
	width: 80px;
	height: 80px;
	background: #f2f2f2;
	color: #999;
	text-align: center;
}

.index_news3 ul li .date strong {
	display: block;
	font-size: 36px;
	line-height: 36px;
	padding: 15px 0 2px 0;
}

.index_news3 ul li .date span {
	display: block;
	font-size: 12px;
	line-height: 12px;
}

.index_news3 ul li .txt {
	width: calc(100% - 100px);
	color: #666;
}

.index_news3 ul li .txt .h2 {
	font-size: .94vw;
	line-height: 1.5em;
	height: 1.5em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.index_news3 ul li .txt .h2 a {
	color: #333;
}

.index_news3 ul li:hover .txt .h2 a {
	color: var(--primary-color);
}

.index_news3 ul li .txt .h3 {
	font-size: .72vw;
	line-height: 1.5em;
	height: 3em;
	margin: 5px 0 0 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media(max-width:999px) {
	.index_news3 ul li {
		float: left;
		width: 100%;
		margin: 0 0 20px 0;
	}
}


/*footnav*/
.f_nav {
	padding: 0;
}

.f_nav>ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	flex-wrap: nowrap;
}

.f_nav ul li {
	flex-grow: 1;
	flex-shrink: 1;
	margin-bottom: 10px;
}

.f_nav ul li a {
	display: block;
	font-size: 14px;
	line-height: 24px;
}

.f_nav>ul>li>a {
	font-size: 18px;
	line-height: 26px;
	font-weight: normal;
	margin-bottom: 10px;
	color: #fff;
}



/*inner_news1*/
.inside_news1 {}

.inside_news1 ul li {
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}

.inside_news1 ul li .nr_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.inside_news1 ul li .imgbg {
	width: 25%;
}

.inside_news1 ul li .img {
	position: relative;
	padding-bottom: 70%;
	overflow: hidden;
	border-radius: 10px;
}

.inside_news1 ul li .img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	transition: all .3s ease;
	background: #f9f9f9;
}

.inside_news1 ul li:hover .img img {
	transform: scale(1.1);
}

.inside_news1 ul li .txtbg {
	width: 75%;
}

.inside_news1 ul li .txt {
	padding-left: 5%;
	color: #666;
}

.inside_news1 ul li .txt .h2 {
	font-size: 18px;
	line-height: 1.5em;
	color: #333;
	margin-bottom: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.inside_news1 ul li:hover .txt .h2 {
	color: var(--primary-color);
}

.inside_news1 ul li .txt .h3 {
	font-size: 14px;
	line-height: 1.5em;
	margin-bottom: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.inside_news1 ul li .txt .time {
	font-size: 14px;
	line-height: 24px;
	color: #999;
	padding-left: 24px;
	position: relative;
}

.inside_news1 ul li .txt .time i {
	width: 20px;
	height: 24px;
	background: url(../images/ico_time.png) center no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}

@media(max-width:999px) {
	.inside_news1 ul li .txt .h2 {
		font-size: 14px;
		line-height: 1.5em;
		height: auto;
		-webkit-line-clamp: 2;
		margin-bottom: 5px;
	}

	.inside_news1 ul li .txt .h3 {
		display: none;
	}
}



/*inner_news2*/
.inside_news2 {}

.inside_news2 ul li {
	float: left;
	width: calc((100% - 20px)/2);
	margin: 0 0 0 20px;
	border-bottom: 1px solid #ccc;
	padding: 20px 0;
}

.inside_news2 ul li:nth-child(2n-1) {
	margin-left: 0;
	clear: left;
}

.inside_news2 ul li .txt {}

.inside_news2 ul li .txt .h2 {
	font-size: 16px;
	line-height: 26px;
	height: 26px;
	overflow: hidden;
	padding-left: 25px;
	position: relative;
}

.inside_news2 ul li .txt .h2:before {
	content: "";
	width: 6px;
	height: 6px;
	background: #000;
	position: absolute;
	left: 0;
	top: 10px;
}

.inside_news2 ul li .txt .h2 a {
	float: left;
	width: 70%;
	height: 26px;
	overflow: hidden;
	color: #333;
}

.inside_news2 ul li:hover .txt .h2 a {
	color: var(--primary-color);
}

.inside_news2 ul li .txt .h2 span {
	float: right;
	color: #999;
}

@media(max-width:999px) {
	.inside_news2 ul li {
		float: left;
		width: 100%;
		margin: 0;
	}
}


/*inner_news3*/
.inside_news3 {}

.inside_news3 ul li {
	float: left;
	width: calc((100% - 20px)/2);
	margin: 0 0 20px 20px;
}

.inside_news3 ul li:nth-child(2n-1) {
	margin-left: 0;
	clear: left;
}

.inside_news3 ul li .nr_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.inside_news3 ul li .date {
	width: 80px;
	height: 80px;
	background: #f2f2f2;
	color: #999;
	text-align: center;
}

.inside_news3 ul li .date strong {
	display: block;
	font-size: 36px;
	line-height: 36px;
	padding: 15px 0 2px 0;
}

.inside_news3 ul li .date span {
	display: block;
	font-size: 12px;
	line-height: 12px;
}

.inside_news3 ul li .txt {
	width: calc(100% - 100px);
	color: #666;
}

.inside_news3 ul li .txt .h2 {
	font-size: .94vw;
	line-height: 1.5em;
	height: 1.5em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.inside_news3 ul li .txt .h2 a {
	color: #333;
}

.inside_news3 ul li:hover .txt .h2 a {
	color: var(--primary-color);
}

.inside_news3 ul li .txt .h3 {
	font-size: .72vw;
	line-height: 1.5em;
	height: 3em;
	margin: 5px 0 0 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media(max-width:999px) {
	.inside_news3 ul li {
		float: left;
		width: 100%;
		margin: 0 0 20px 0;
	}
}

/*inpic1*/
.inside_picList1 {}

.inside_picList1 ul li {
	float: left;
	width: calc((100% - 40px)/3);
	margin: 0 0 20px 20px;
	text-align: center;
	background: #f0f0f0;
	border-radius: 10px;
	overflow: hidden;
}

.inside_picList1 ul li:nth-child(3n-2) {
	margin-left: 0;
	clear: left;
}

.inside_picList1 ul li .nr_box {}

.inside_picList1 ul li .img {
	padding-bottom: 64%;
	position: relative;
	overflow: hidden;
}

.inside_picList1 ul li .img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	transition: all .3s ease;
	background: #f9f9f9;
}

.inside_picList1 ul li:hover .img img {
	transform: scale(1.1);
}

.inside_picList1 ul li .txtbg {
	position: relative;
}

.inside_picList1 ul li .txtbg:before {
	content: "";
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	position: absolute;
	left: 0;
	top: 0;
	transition: transform .38s cubic-bezier(.4, 0, .2, 1);
	transform: scaleY(0);
	transform-origin: 50% 100% 0;
}

.inside_picList1 ul li:hover .txtbg:before {
	transform: scaleY(1);
	transform-origin: 50% 0 0;
}

.inside_picList1 ul li .txt {
	padding: 15px 5%;
	color: #666;
	position: relative;
	z-index: 2;
}

.inside_picList1 ul li .txt .h2 {
	font-size: 14px;
	line-height: 1.5em;
	height: 1.5em;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.inside_picList1 ul li:hover .txt .h2 {
	color: #fff;
}

.inside_picList1 ul li .txt .h3 {
	display: none;
}

@media(max-width:999px) {
	.inside_picList1 ul li {
		float: left;
		width: calc((100% - 10px)/2);
		margin: 0 0 20px 10px;
	}

	.inside_picList1 ul li:nth-child(3n-2) {
		margin-left: 10px;
		clear: none;
	}

	.inside_picList1 ul li:nth-child(2n-1) {
		margin-left: 0;
		clear: left;
	}

	.inside_picList1 ul li .txt {
		padding: 15px 5%;
	}

	.inside_picList1 ul li .txt .h2 {
		font-size: 14px;
		line-height: 1.6em;
		height: 1.6em;
	}
}

/*inphoto1*/
.inside_photo1 {}

.inside_photo1 ul li {
	float: left;
	width: calc((100% - 60px)/4);
	margin: 0 0 20px 20px;
	text-align: center;
}

.inside_photo1 ul li:nth-child(4n-3) {
	margin-left: 0;
	clear: left;
}

.inside_photo1 ul li .nr_box {
	border: 1px solid #f2f2f2;
	border-radius: 10px;
	overflow: hidden;
	padding: 10px;
}

.inside_photo1 ul li .imgbg {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.inside_photo1 ul li .img {
	padding-bottom: 100%;
	position: relative;
	z-index: 1;
}

.inside_photo1 ul li .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	transition: all .3s ease;
	background: #f9f9f9;
}

.inside_photo1 ul li:hover .img img {
	transform: scale(1.1);
}

.inside_photo1 ul li .imgbg:before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .3);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}

.inside_photo1 ul li:hover .imgbg:before {
	opacity: 1;
	visibility: visible;
}

.inside_photo1 ul li i {
	width: 40px;
	height: 40px;
	background: url(../images/ico_search1.png) center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}

.inside_photo1 ul li:hover i {
	opacity: 1;
	visibility: visible;
}

.inside_photo1 ul li .txtbg {}

.inside_photo1 ul li .txt {
	margin-top: 10px;
	padding: 0 5%;
	color: #666;
}

.inside_photo1 ul li .txt .h2 {
	font-size: 14px;
	line-height: 1.5em;
	height: 1.5em;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.inside_photo1 ul li:hover .txt .h2 {
	color: var(--primary-color);
}

.inside_photo1 ul li .txt .h3 {
	display: none;
}

@media(max-width:999px) {
	.inside_photo1 ul li {
		float: left;
		width: calc((100% - 10px)/2);
		margin: 0 0 20px 10px;
	}

	.inside_photo1 ul li:nth-child(4n-3) {
		margin-left: 10px;
		clear: none;
	}

	.inside_photo1 ul li:nth-child(2n-1) {
		margin-left: 0;
		clear: left;
	}
}


/*inside_download1*/
.inside_download1 {}

.inside_download1 ul li {
	border-bottom: 1px dashed #ccc;
	padding: 20px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.inside_download1 ul li:nth-child(1) {
	padding-top: 0;
}

.inside_download1 ul li>i {
	text-align: center;
	line-height: 40px;
	font-size: 40px;
	width: 40px;
	text-align: center;
	color: var(--primary-color);
}

.inside_download1 ul li .txt {
	width: calc(100% - 200px);
	position: relative;
}

.inside_download1 ul li .txt .h2 {
	font-size: 16px;
	line-height: 26px;
	height: 26px;
	overflow: hidden;
}

.inside_download1 ul li .txt .h2 a {
	color: #333;
}

.inside_download1 ul li:hover .txt .h2 a {
	color: var(--primary-color);
}

.inside_download1 ul li .txt .h3 {
	font-size: 14px;
	line-height: 24px;
}

.inside_download1 ul li .txt .h3 span {
	display: inline-block;
	margin: 0 20px 0 0;
	color: #999;
}

.inside_download1 ul li .down_btn {}

.inside_download1 ul li .down_btn a {
	display: block;
	background: var(--primary-color);
	color: #fff;
	width: 120px;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	border-radius: 4px;
}

.inside_download1 ul li .down_btn a:hover {
	opacity: .9;
}

.inside_download1 ul li .down_btn a i {
	margin-right: 5px;
	vertical-align: middle;
}

@media(max-width:999px) {
	.inside_download1 ul li {
		padding: 20px 0;
		flex-wrap: wrap;
	}

	.inside_download1 ul li .txt {
		width: calc(100% - 60px);
	}

	.inside_download1 ul li .txt .h2 {
		font-size: 16px;
		line-height: 26px;
		height: 26px;
	}

	.inside_download1 ul li .txt .h3 {
		font-size: 14px;
		line-height: 24px;
	}

	.inside_download1 ul li .txt .h3 span {
		margin: 0 10px 0 0;
	}

	.inside_download1 ul li .down_btn {
		width: 100%;
		margin-top: 10px;
	}

	.inside_download1 ul li .down_btn a {
		width: 100%;
		line-height: 40px;
		font-size: 14px;
	}
}

/*inpro1*/
.inside_product1 {}

.inside_product1 ul li {
	float: left;
	width: calc((100% - 40px)/3);
	margin: 0 0 20px 20px;
	text-align: center;
}

.inside_product1 ul li:nth-child(3n-2) {
	margin-left: 0;
	clear: left;
}

.inside_product1 ul li .nr_box {
	border: 1px solid #f2f2f2;
	border-radius: 10px;
	overflow: hidden;
	padding: 10px;
}

.inside_product1 ul li:hover .nr_box {
	background: #f4f4f4;
}

.inside_product1 ul li .img {
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
}

.inside_product1 ul li .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	transition: all .3s ease;
}

.inside_product1 ul li:hover .img img {
	transform: scale(1.1);
}

.inside_product1 ul li .txtbg {}

.inside_product1 ul li .txt {
	margin-top: 10px;
	padding: 0 5%;
	color: #666;
}

.inside_product1 ul li .txt .h2 {
	font-size: 16px;
	line-height: 1.5em;
	height: 1.5em;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.inside_product1 ul li:hover .txt .h2 {
	color: var(--primary-color);
}

.inside_product1 ul li .txt .h3 {
	display: none;
}

@media(max-width:999px) {
	.inside_product1 ul li {
		float: left;
		width: 100%;
		margin: 0 0 20px 0;
	}

	.inside_product1 ul li .txt .h2 {
		font-size: 14px;
		line-height: 1.5em;
		height: 1.5em;
	}
}

/*innewsClass1*/
.itit1 {}

.itit1 .h2 {
	height: 20px;
	line-height: 20px;
	font-size: 20px;
}

.itit1 .h2 strong {
	float: left;
	font-weight: bold;
	border-left: 5px solid var(--primary-color);
	padding-left: 5px;
}

.itit1 .h2 a {
	float: right;
	font-size: 14px;
	color: var(--primary-color);
}

.inside_newsClass1 {}

.inside_newsClass1_box {
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}

.inside_newsClass1 .ilist {
	padding: 10px 10px 0 10px;
}

.inside_newsClass1 .ilist ul li {
	height: 40px;
	line-height: 40px;
	padding-left: 15px;
	position: relative;
}

.inside_newsClass1 .ilist ul li:before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background: #ccc;
	position: absolute;
	left: 0;
	top: 17px;
}

.inside_newsClass1 .ilist ul li a {
	float: left;
	width: 70%;
	height: 40px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	font-size: 16px;
}

.inside_newsClass1 .ilist ul li span {
	float: right;
	font-size: 14px;
	color: #999;
}

/*inproClass1*/
.imore1 {}

.imore1 span {
	display: inline-block;
	vertical-align: top;
	border: 1px solid #fff;
	height: 38px;
	line-height: 38px;
	padding: 0 20px;
	font-size: 14px;
}

.imore1 span:hover {
	background: #fff;
	color: #333;
}

.inside_proClass1 {}

.inside_proClass1 ul li {
	float: left;
	width: calc((100% - 40px)/3);
	margin: 0 0 20px 20px;
	text-align: center;
	background: #fff;
	position: relative;
}

.inside_proClass1 ul li:nth-child(3n-2) {
	margin-left: 0;
	clear: left;
}

.inside_proClass1 ul li .nr_box {
	border: 10px solid #eee;
}

.inside_proClass1 ul li .img {
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
}

.inside_proClass1 ul li .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	transition: all .3s ease;
}

.inside_proClass1 ul li:hover .img img {
	transform: scale(1.1);
}

.inside_proClass1 ul li .txtbg {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
	left: 0;
	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;
}

.inside_proClass1 ul li .txt {
	padding: 20px 5%;
	width: 90%;
	color: #fff;
}

.inside_proClass1 ul li .txt .h2 {
	font-size: 24px;
	line-height: 34px;
	height: 34px;
	overflow: hidden;
}

.inside_proClass1 ul li .txt .h3 {
	font-size: 14px;
	line-height: 24px;
	height: 48px;
	overflow: hidden;
	margin: 10px 0 0 0;
}

@media(max-width:999px) {
	.inside_proClass1 ul li {
		float: left;
		width: calc((100% - 20px)/2);
		margin: 0 0 20px 20px;
	}

	.inside_proClass1 ul li:nth-child(3n-2) {
		margin-left: 20px;
		clear: none;
	}

	.inside_proClass1 ul li:nth-child(2n-1) {
		margin-left: 0;
		clear: left;
	}
}


.m11_message1 {}

.m11_message1 .list1 {
	margin-top: 20px;
}

.m11_message1 .list1 img {
	display: block;
	width: 100%;
	background: #f9f9f9;
}

.m11_message1 .list2 {
	margin-top: 20px;
}

/*留言*/
.message1 {}

.message1 form {}

.message1 form ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	flex-wrap: wrap;
}

.message1 form ul li {
	width: 48%;
	margin: 0 0 20px 4%;
}

.message1 form ul li.li1 {
	width: 100%;
	margin-left: 0;
}

.message1 form ul li.li2 {
	text-align: right;
}

.message1 form ul li:nth-child(1),
.message1 form ul li:nth-child(3),
.message1 form ul li:nth-child(6) {
	margin-left: 0;
}

.message1 form .h3 {
	width: 100px;
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 5px;
}

.message1 form .h3 font {
	color: #f00;
}

.message1 form .input_text {
	border: 1px solid #eee;
	background: #fff;
	height: 40px;
	line-height: 40px;
	padding: 0 10px;
	width: calc(100% - 22px);
}

.message1 form textarea {
	border: 1px solid #eee;
	background: #fff;
	height: 120px;
	line-height: 40px;
	padding: 0 10px;
	width: calc(100% - 22px);
	display: block;
}

.message1 form .yzm {
	height: 42px;
}

.message1 form .input_text1 {
	border: 1px solid #eee;
	background: #fff;
	height: 40px;
	line-height: 40px;
	padding: 0 10px;
	width: calc(100% - 132px);
	float: left;
}

.message1 form #sendcode {
	border: 1px solid var(--primary-color);
	background: var(--primary-color);
	color: #fff;
	height: 42px;
	line-height: 40px;
	width: 100px;
	cursor: pointer;
	transition: all .3s ease;
	float: right;
}

.message1 form #sendcode:hover {
	opacity: .9;
}

.message1 form #sendcode[disabled] {
	background: #999;
}

.message1 form .input_button {
	border: 1px solid var(--primary-color);
	background: var(--primary-color);
	color: #fff;
	height: 42px;
	line-height: 40px;
	width: 50%;
	max-width: 200px;
	cursor: pointer;
	transition: all .3s ease;
	margin-top: 20px;
}

.message1 form .input_button:hover {
	border-color: var(--secondary-color);
	background: var(--secondary-color);
}

@media(max-width:999px) {
	.message1 form ul {
		display: block;
	}

	.message1 form ul li {
		width: 100%;
		margin: 0 0 10px 0;
	}

	.message1 form ul li.li2 {
		text-align: center;
	}

	.message1 form .h3 {
		font-size: 14px;
		line-height: 1.8em;
		margin-bottom: 0;
	}

	.message1 form .input_text {
		height: 38px;
		line-height: 38px;
		padding: 0 10px;
		width: calc(100% - 22px);
		font-size: 14px;
	}

	.message1 form textarea {
		height: 100px;
		line-height: 38px;
		padding: 0 10px;
		width: calc(100% - 22px);
		font-size: 14px;
	}

	.message1 form .yzm {
		height: 40px;
	}

	.message1 form .input_text1 {
		height: 38px;
		line-height: 38px;
		padding: 0 10px;
		width: calc(100% - 132px);
		font-size: 14px;
	}

	.message1 form #sendcode1 {
		height: 40px;
		line-height: 38px;
		width: 100px;
		font-size: 14px;
	}

	.message1 form .input_button {
		height: 40px;
		line-height: 38px;
		width: 100%;
		max-width: 100%;
		font-size: 14px;
		margin-top: 10px;
	}
}


/*联系*/
.inside_contact1 {
	font-size: .84vw;
	line-height: 1.56vw;
}

.inside_contact1 ul li {}

.inside_contact1 ul li h2 {
	font-size: 1.56vw;
	line-height: 1.5em;
}

.inside_contact1 ul li i {
	display: inline-block;
	text-align: center;
	width: 1.56vw;
	height: 1.56vw;
	line-height: 1.56vw;
	margin-right: 5px;
	color: var(--primary-color);
}

.inside_contact1 ul li span {
	display: inline-block;
	width: 4.2vw;
	text-justify: inter-ideograph;
	text-align: justify;
	-moz-text-align-last: justify;
	text-align-last: justify;
}



.m11_headbg .nav-tel {
	display: flex;
	align-items: center
}

.m11_headbg .nav-tel .tel-con {
	display: flex;
	align-items: center;
	padding: 0 20px
}

.m11_headbg .nav-tel .tel-con .tel-ico {
	height: 28px;
	width: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 5px
}

.m11_headbg .nav-tel .tel-con .tel-text {
	font-size: 20px;
	font-weight: normal;
	font-family: arial;
	color: #fff;
	line-height: 80px;
	font-weight: bold
}

.header.active .nav-tel .tel-con .tel-text {
	color: #333
}

.m11_headbg .nav-tel .tel-con .tel-ico svg {
	fill: #F65857
}

.header .nav-tel .tel-con .tel-text {
	color: #333
}

/* .header.active   .nav-tel .tel-con .tel-text {
        color: #333
    } */

.header.active .nav-tel .tel-con .tel-ico svg {
	fill: #F65857
}

.header.active .nav-tel .tel-con {}


.header .e_html-17 .nav-search {
	width: 80px;
	height: 80px;
	justify-content: center;
	display: flex;
	align-items: center;
	background: none;
	transition: all .5s ease
}

.header .e_html-17 .nav-search:hover {
	cursor: pointer
}

.header .e_html-17 .seabtn svg {
	fill: #fff
}

.header .e_html-17 .nav-search {
	background-image: linear-gradient(292deg, #F65857 0%, #cd3f3e 100%)
}

/* .header.active .e_html-17 .nav-search {
    background-image: linear-gradient( 292deg ,#F65857 0%,#cd3f3e 100%)
} */

.header.active .e_html-17 .seabtn svg {
	fill: #fff
}



.banner .swiper-slide .txt .p_summary {
	font-size: 16px;
	line-height: 45px;
	padding: 0px 25px;
	color: #fff;
	opacity: 0;
	transition: all 1s;
	transform: translate3d(0, 200%, 0);
	background-image: linear-gradient(292deg, #F65857 0%, #cd3f3e 100%);
	max-width: 150px;
	text-transform: Uppercase;
	transition: transform 1s ease 0.5s, opacity 1s ease 0.5s
}

.banner .swiper-slide .txt .p_summary {
	opacity: 1;
	-webkit-transition-delay: 2s;
	transition-delay: 1.3s;
	transform: translate3d(0, 0, 0)
}

.banner .swiper-slide .txt .summarybox:after {
	content: '';
	width: 2px;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	height: 0;
	background: #fec93a;
	transition: all 1s ease 2s;
	z-index: 1;
	display: none
}

.banner .swiper-slide .txt .summarybox:after {
	height: 100%;
	opacity: 1;
	left: 0;
	-webkit-transition-delay: 2s;
	transition-delay: 2s
}

.banner .swiper-slide .txt .summarybox {
	color: #fff;
	padding-left: 0px;
	position: relative;
	padding-top: 40px;
	padding-bottom: 50px
}


.index01bg .saj-content {
	width: 94%;
	margin: auto;
	position: relative;
	max-width: 1700px;
}

.index01bg .saj-index-content-tabs a {
	-webkit-transition: opacity .55s, -webkit-transform .55s;
	-moz-transition: all .5s ease 0s;
	transition: all .5s ease 0s;
	-ms-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
}

.index01bg .saj-index-content-tabs {
	position: relative;
}

.index01bg .saj-index-content-tabs .item {
	width: 33.33333%;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	z-index: 999;
}

.index01bg .saj-index-content-tabs .item.item1 {
	left: 0;
}

.index01bg .saj-index-content-tabs .item.item2 {
	left: 33.33333%;
}

.index01bg .saj-index-content-tabs .item.item3 {
	right: 0;
}

.index01bg .saj-index-content-tabs a {
	display: block;
	background: rgba(255, 255, 255, .8);
	padding: 4.5% 7%;
	overflow: hidden;
}

.index01bg .saj-index-content-tabs .top {
	overflow: hidden;
}

.index01bg .saj-index-content-tabs .top h3 {
	font-size: 20px;
	margin: 0;
	padding-bottom: 5px;
}

.index01bg .saj-index-content-tabs .top h5 {
	font-size: 14px;
	margin: 0;
	font-weight: normal;
	color: #9c9fa2;
}

.index01bg .saj-index-content-tabs .top i {
	display: block;
	width: 45px;
	height: 45px;
	position: absolute;
	right: 5%;
	top: 35px;
	border: 1px solid #999;
	border-radius: 100%;
	background: url("/images/right1.png") center no-repeat;
}

.index01bg .saj-index-content-tabs .bottom {
	height: 0px;
	overflow: hidden;
}

.index01bg .saj-index-content-tabs .bottom .line {
	width: 20px;
	height: 3px;
	background: #fff;
	margin: 20px 0;
}

.index01bg .saj-index-content-tabs .bottom .txt {
	color: #fff;
	font-size: 14px;
	line-height: 26px;
	opacity: .6;
}

.index01bg .saj-index-content-tabs a:hover {
	padding: 7%;
	background: #F65857;
}

.index01bg .saj-index-content-tabs a:hover .top h3 {
	color: #fff;
}

.index01bg .saj-index-content-tabs a:hover .top h5 {
	color: #fff;
	opacity: .4;
}

.index01bg .saj-index-content-tabs a:hover .top i {
	background: url("/images/right1.png") center no-repeat #fff;
	border: 1px solid #fff;
}

.index01bg .saj-index-content-tabs a:hover .bottom {
	height: 80px;
	overflow: hidden;
}

.index01bg .saj-index-content-tabs a::after {
	content: '';
	width: 1px;
	height: 100%;
	background: #bbbdbf;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.index01bg .saj-index-content-tabs .item:last-child a::after,
.index01bg .saj-index-content-tabs a:hover::after {
	display: none;
}

.index01bg * {
	transition: all .5s ease 0s !important;
}


.index02bg {
	min-height: 300px;
	display-radio: 1;
	padding-top: 2%;
	padding-bottom: 20px;
	max-width: 1600px;
	width: 92%;
	margin-left: auto;
	margin-right: auto
}

.index02bg .e_container-1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%
}

.index02bg .e_container-1>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.index02bg .e_text-2 {
	display-radio: 1;
	font_radio: 2;
	font-size: 36px;
	text-align: center;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
	font-weight: bold
}

.index02bg .e_text-3 {
	display-radio: 1;
	font_radio: 2;
	font-size: 16px;
	text-align: center;
	color: rgba(51, 51, 51, 1);
	line-height: 1.5;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 5px
}

.index02bg .e_line-4 {
	display-radio: 1;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: rgba(221, 221, 221, 1);
	margin-top: 30px;
	width: auto;
	max-width: none;
	height: 1px;
	margin-bottom: 30px;
	border: none;
	background: #ccc;
}

.index02bg .e_container-5 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 94%;
	display-radio: flex;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto
}

.index02bg .e_container-5>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.index02bg .e_container-6 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	justify-content: center
}

.index02bg .e_container-6>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.index02bg .e_image-7 {
	overflow: hidden;
	display-radio: 1;
	max-width: 55px
}

.index02bg .e_image-7 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.index02bg .e_scrollNumber-8 {
	height: 50px;
	line-height: 50px;
	font-size: 40px;
	display-radio: 1;
	font_radio: 2
}

.index02bg .e_text-9 {
	line-height: normal;
	display-radio: 1;
	font_radio: 2;
	font-size: 16px
}

.index02bg .e_scrollNumber-8 .p_num {
	display-radio: 1;
	font-size: 50px;
	font-family: Arial;
	color: #F65857
}

.index02bg .e_scrollNumber-8 .p_plus {
	display-radio: 1;
	font-size: 16px;
	font-family: Arial;
	color: rgba(85, 85, 85, 1)
}

.index02bg .e_container-6 .cbox-6-0 {
	align-self: center;
	flex: 0 0 auto
}

.index02bg .e_container-6 .cbox-6-1 {
	align-self: center;
	margin-left: 30px;
	flex: 0 0 auto
}

.index02bg .e_container-10 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	justify-content: center
}

.index02bg .e_container-10>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.index02bg .e_container-10 .cbox-10-0 {
	align-self: center;
	flex: 0 0 auto
}

.index02bg .e_container-10 .cbox-10-1 {
	margin-left: 30px;
	flex: 0 0 auto;
	align-self: center
}

.index02bg .e_scrollNumber-11 {
	height: 50px;
	line-height: 50px;
	font-size: 40px;
	display-radio: 1;
	font_radio: 2
}

.index02bg .e_scrollNumber-11 .p_num {
	display-radio: 1;
	font-size: 50px;
	font-family: Arial;
	color: #F65857
}

.index02bg .e_scrollNumber-11 .p_plus {
	display-radio: 1;
	font-size: 16px;
	font-family: Arial;
	color: rgba(85, 85, 85, 1)
}

.index02bg .e_text-12 {
	line-height: normal;
	display-radio: 1;
	font_radio: 2;
	font-size: 16px
}

.index02bg .e_image-13 {
	overflow: hidden;
	display-radio: 1;
	max-width: 60px
}

.index02bg .e_image-13 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.index02bg .e_container-14 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	justify-content: center
}

.index02bg .e_container-14>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.index02bg .e_container-14 .cbox-14-0 {
	align-self: center;
	flex: 0 0 auto
}

.index02bg .e_container-14 .cbox-14-1 {
	align-self: center;
	margin-left: 30px;
	flex: 0 0 auto
}

.index02bg .e_scrollNumber-15 {
	height: 50px;
	line-height: 50px;
	font-size: 40px;
	display-radio: 1;
	font_radio: 2
}

.index02bg .e_scrollNumber-15 .p_num {
	display-radio: 1;
	font-size: 50px;
	font-family: Arial;
	color: #F65857
}

.index02bg .e_scrollNumber-15 .p_plus {
	display-radio: 1;
	font-size: 16px;
	font-family: Arial;
	color: rgba(85, 85, 85, 1)
}

.index02bg .e_text-16 {
	line-height: normal;
	display-radio: 1;
	font_radio: 2;
	font-size: 16px
}

.index02bg .e_image-17 {
	overflow: hidden;
	display-radio: 1;
	max-width: 60px
}

.index02bg .e_image-17 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.index02bg .e_container-18 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	justify-content: center
}

.index02bg .e_container-18>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.index02bg .e_container-18 .cbox-18-0 {
	align-self: center;
	flex: 0 0 auto
}

.index02bg .e_container-18 .cbox-18-1 {
	align-self: center;
	margin-left: 30px;
	flex: 0 0 auto
}

.index02bg .e_scrollNumber-19 {
	height: 50px;
	line-height: 50px;
	font-size: 40px;
	display-radio: 1;
	font_radio: 2
}

.index02bg .e_scrollNumber-19 .p_num {
	display-radio: 1;
	font-size: 50px;
	font-family: Arial;
	color: #F65857
}

.index02bg .e_scrollNumber-19 .p_plus {
	display-radio: 1;
	font-size: 16px;
	font-family: Arial;
	color: rgba(85, 85, 85, 1)
}

.index02bg .e_text-20 {
	line-height: normal;
	display-radio: 1;
	font_radio: 2;
	font-size: 16px
}

.index02bg .e_image-21 {
	overflow: hidden;
	display-radio: 1;
	max-width: 60px
}

.index02bg .e_image-21 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}



.index03bg {
	min-height: 300px;
	display-radio: 1;
	padding-top: 30px;
	padding-bottom: 60px;
	background-fill-value: background-image;
	background-repeat: no-repeat;
	background-position: bottom center
}

.index03bg .e_loop-10 .p_list {
	display: flex;
	flex-wrap: wrap
}

.index03bg .e_loop-10 .p_loopitem {
	flex: 0 0 33.3%;
	position: relative
}

.index03bg .e_loop-10 .p_page {
	text-align: center
}

.index03bg .e_loop-10 .p_filter_wrapper {
	width: 100%
}

.index03bg .e_loop-10 .p_kv_wrapper {
	display: flex;
	flex-wrap: nowrap
}

.index03bg .e_loop-10 .p_filter_key {
	line-height: 40px;
	margin-right: 10px;
	font-weight: bold
}

.index03bg .e_loop-10 .p_v_item {
	display: inline-block;
	margin: 0 5px;
	line-height: 40px;
	cursor: pointer
}

.index03bg .e_loop-10 .p_active {
	color: blueviolet
}

.index03bg .e_loop-10 .p_result_item {
	position: relative;
	padding: 3px 20px 3px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-right: 10px
}

.index03bg .e_loop-10 .p_filter_close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 3px;
	font-style: normal;
	font-size: 16px;
	margin-top: -5px;
	cursor: pointer
}

.index03bg .e_loop-10 .multSelect {
	font-size: 14px;
	position: relative
}

.index03bg .e_loop-10 .multSelect .inputWrap {
	width: 100%;
	min-width: 100px;
	min-height: 40px;
	border: 1px solid #ccc;
	border-radius: 3px;
	position: relative;
	cursor: pointer
}

.index03bg .e_loop-10 .multSelect.is-invalid .inputWrap {
	border-color: #dc3545
}

.index03bg .e_loop-10 .multSelect ul {
	padding: 0 5px;
	margin: 0;
	padding-right: 35px
}

.index03bg .e_loop-10 .multSelect ul,
li {
	list-style: none
}

.index03bg .e_loop-10 .multSelect li {
	display: inline-block;
	background: #edf0f3;
	color: #92969c;
	padding: 3px 5px;
	margin: 5px 5px 5px 0;
	border-radius: 5px
}

.index03bg .e_loop-10 .multSelect .multSelect-option {
	width: 100%;
	border: 1px solid #ccc;
	border-top: 0;
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	height: 0;
	opacity: 0;
	z-index: 9;
	background: #fff
}

.index03bg .e_loop-10 .multSelect .multSelect-option>div {
	line-height: 35px;
	cursor: pointer;
	padding: 0 10px
}

.index03bg .e_loop-10 .multSelect .multSelect-option>div.selected {
	color: #409eff
}

.index03bg .e_loop-10 .multSelect .multSelect-option>div:hover {
	color: #409eff;
	background: #f3f6f9
}

.index03bg .e_loop-10 .multSelect .fa-close {
	font-style: normal;
	font-size: 12px;
	padding: 0 5px 0 7px
}

.index03bg .e_loop-10 .multSelect .inputWrap>.fa svg {
	fill: #666;
	width: 16px;
	height: 16px;
	position: absolute;
	right: 0;
	top: calc(50% - 8px)
}

.index03bg .e_loop-10 .multSelect .inputWrap>.fa-down svg {
	transform: rotate(-90deg)
}

.index03bg .e_loop-10 .multSelect .inputWrap>.fa-up svg {
	transform: rotate(90deg)
}

.index03bg .e_loop-10 .multSelect .placeholder {
	line-height: 40px;
	padding-left: 10px;
	color: #aaa;
	position: absolute;
	left: 0;
	top: 0
}

.index03bg .e_loop-10 .p_filter_select {
	width: 150px
}

.index03bg .e_loop-10 .p_normal_start,
.index03bg .e_loop-10 .p_date_start {
	display: inline;
	width: 100px
}

.index03bg .e_loop-10 .p_normal_end,
.index03bg .e_loop-10 .p_date_end {
	display: inline;
	width: 100px
}

.index03bg .e_loop-10 .p_split {
	margin: 0 5px
}

.index03bg .e_loop-10 .p_normal {
	margin-right: 16px
}

.index03bg .e_loop-10 {
	background_radio: 1;
	max-width: 1600px;
	margin-right: auto;
	padding-top: 0px;
	margin-top: 0px;
	margin-left: auto;
	display-radio: 1;
	width: 92%;
	padding-left: 0px
}

.index03bg .e_container-11 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 20px;
	transition-property: all;
	transition-radio: hover;
	background-color: rgba(255, 255, 255, 1);
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
	display-radio: flex;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(238, 238, 238, 1)
}

.index03bg .e_container-11>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.index03bg .e_container-11:hover .e_text-13 {
	color: #F65857
}

.index03bg .e_container-11:hover img {
	transform: scale(1.2);
	transition: all .6s
}

.index03bg .e_image-12 {
	overflow: hidden;
	margin-bottom: 10px
}

.index03bg .e_image-12 img {
	width: 100%;
	height: 250px;
	object-fit: contain;
	transition: all .6s
}

.index03bg .e_text-13 {
	font_radio: 2;
	font-size: 18px;
	color: rgba(51, 51, 51, 1);
	text-align: center;
	margin-bottom: 5px;
	font-weight: bold;
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	display-radio: -webkit-box;
	line-height: 1.5
}

.index03bg .e_button-16 {
	display: block;
	position: relative;
	overflow: hidden;
	text-align: center;
	box-sizing: border-box;
	width: 180px;
	line-height: 32px;
	padding: 8px;
	background_radio: 2;
	border_radio: 2;
	font_radio: 1;
	radius_radio: 1;
	margin-top: 20px;
	transition: all .5s ease;
	margin-bottom: 0px;
	background-image: linear-gradient(292deg, rgb(3 121 187) 0%, #1a90d4 100%);
	display-radio: block;
	border-style: solid;
	border-width: 1px;
	margin-left: auto;
	margin-right: auto;
	border-color: #1a90d4;
	border-radius: 5px;
}

.index03bg .e_button-16:hover {
	background-color: rgba(85, 85, 85, 1);
	border-style: solid;
	border-color: rgba(85, 85, 85, 1)
}

.index03bg .e_button-16 span {
	display: block;
	width: 100%;
	position: relative;
	z-index: 1;
	outline: 0;
	margin: 0px;
	overflow: hidden;
	font-size: 16px;
	color: #fff;
}

.index03bg .e_button-16::after {
	content: "";
	position: absolute;
	width: 0;
	height: 100%;
	transition: all .3s;
	z-index: 0;
	opacity: 0;
	top: 0;
	left: 0px
}

.index03bg .e_button-16:hover::after {
	opacity: 1
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 0px;
	left: 0;
	width: 100%
}

@media screen and (max-width: 768px) {
	.index03bg .e_loop-10 .p_loopitem {
		flex-grow: 0;
		flex-shrink: 0;
		flex-basis: calc(100% / 2)
	}

	.index03bg {
		display-radio: 1;
		padding-top: 20px;
		padding-bottom: 20px
	}

	.index03bg .e_container-11 {
		display-radio: 1;
		margin-left: 5px;
		margin-right: 5px;
		margin-bottom: 10
	}

	.index03bg .e_text-13 {
		display-radio: 1;
		font_radio: 2;
		font-size: 14px;
		color: #333333;
		line-height: 1.6
	}

	.index03bg .e_button-16 {
		background_radio: 1;
		border_radio: 1;
		font_radio: 1;
		radius_radio: 1;
		display-radio: 1;
		width: 150px
	}

	.index03bg .e_button-16 span {
		font-size: 14px
	}

	.index03bg .e_image-12 img {
		height: 115px
	}
}

@media screen and (min-width: 769px) {
	.index03bg .e_loop-10 .p_loopitem {
		flex-grow: 0;
		flex-shrink: 0;
		flex-basis: calc(100% / 4)
	}
}




.index04bg {
	min-height: 300px;
	display-radio: 1;
	background: #f2f2f2;
}

.index04bg .e_container-1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex
}

.index04bg .e_container-1>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.index04bg .e_container-3 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	padding-right: 12%;
	padding-left: 5%;
	max-width: none
}

.index04bg .e_container-3>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.index04bg .e_text-4 {
	line-height: normal;
	display-radio: 1;
	font_radio: 2;
	font-size: 32px;
	font-weight: bold;
	color: rgba(51, 51, 51, 1);
	margin-bottom: 30px;
	text-align: center;
}

.index04bg .e_container-1 .cbox-1-1 {
	align-self: center;
	padding: 80px 0;
}

.index04bg .e_button-7 {
	margin: 20px auto;
	display: block;
	position: relative;
	overflow: hidden;
	font-size: 16px;
	text-align: center;
	box-sizing: border-box;
	width: 180px;
	line-height: 32px;
	padding: 8px;
	background_radio: 2;
	border_radio: 2;
	font_radio: 1;
	radius_radio: 1;
	margin-top: 40px;
	transition: all .5s ease;
	margin-bottom: 0px;
	background-image: linear-gradient(292deg, rgb(3 121 187) 0%, #1a90d4 100%);
	display-radio: block;
	border-style: solid;
	border-width: 1px;
	border-color: #1a90d4;
	border-radius: 5px;
	border: none;
	font-size: 16px;
}

.index04bg .btn.focus {
	box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 0%)
}

.index04bg .e_button-7:hover {
	background-color: rgba(85, 85, 85, 1);
	border: none;

}

.index04bg .e_button-7 span {
	display: block;
	width: 100%;
	position: relative;
	z-index: 1;
	outline: 0;
	margin: 0px;
	overflow: hidden;
	color: #fff;
}

.index04bg .e_button-7::after {
	content: "";
	position: absolute;
	width: 0;
	height: 100%;
	transition: all .3s;
	z-index: 0;
	opacity: 0;
	top: 0;
	left: 0px
}

.index04bg .e_button-7:hover::after {
	opacity: 1
}

.index04bg .videoBox {
	position: fixed;
	background: rgb(0 0 0 / 80%);
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: all ease .3s;
	pointer-events: none;
	opacity: 0;
	z-index: 100;
	padding: 0 18px
}

.index04bg .videoBox.show {
	opacity: 1;
	pointer-events: auto
}

.index04bg .closeVideo {
	max-width: 150px;
	background: #fff;
	margin: 30px auto 0;
	border-radius: 55px;
	padding: 10px 30px;
	width: 100%;
	text-align: center;
	font-size: 15px;
	cursor: pointer;
	transition: all ease .3s
}

.index04bg .e_richText-19 {
	display-radio: 1;
	font_radio: 2;
	font-size: 16px;
	color: rgba(119, 119, 119, 1);
	margin-left: 0px
}

.index04bg .e_image-21 {
	overflow: hidden
}

.index04bg .e_image-21 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.6s
}

.index04bg .e_image-21 img:hover {
	transform: scale(1.1);
	transition: 0.6s
}

@media screen and (max-width: 768px) {
	.index04bg .e_container-1 {
		display-radio: 1;
		flex-direction: column
	}

	.index04bg .e_container-1 .cbox-1-0 {
		padding-bottom: 0px
	}

	.index04bg .e_container-3 {
		display-radio: 1;
		padding-left: 15px;
		padding-right: 15px;
		padding-top: 20px;
		padding-bottom: 40px
	}

	.index04bg .e_text-4 {
		display-radio: 1;
		font_radio: 2;
		font-size: 22px
	}

	.index04bg .e_button-7 {
		background_radio: 1;
		border_radio: 1;
		font_radio: 1;
		radius_radio: 1;
		display-radio: 1;
		width: 150px;
		margin-left: auto;
		margin-right: auto
	}

	.index04bg .e_richText-19 {
		font-size: 14px
	}
}



.index05bg {
	min-height: 0px;
	display-radio: 1;
	padding-top: 60px;
	margin-bottom: 20px;
	max-width: 1600px;
	width: 92%;
	margin-left: auto;
	margin-right: auto
}

.index05bg .e_container-1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%
}

.index05bg .e_container-1>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.index05bg .e_text-2 {
	display-radio: 1;
	font_radio: 2;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	font-size: 36px;
	text-align: center;
	line-height: 1.5;
	color: rgba(51, 51, 51, 1);
	font-weight: bold
}

.index05bg .e_text-3 {
	display-radio: 1;
	font_radio: 2;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	font-size: 16px;
	text-align: center;
	line-height: 1.5;
	color: rgba(85, 85, 85, 1);
	padding-top: 0px;
	margin-top: 5px;
	width: 94%
}

.index05bg .e_line-4 {
	display-radio: 1;
	/* border-top-style: solid;
	border-top-width: 1px; */
	/* border-top-color: rgba(221, 221, 221, 1); */
	height: 1px;
	margin-bottom: 15px;
	margin-top: 20px;
	background-color: rgba(221, 221, 221, 1);
	border: none;
}

@media screen and (max-width: 768px) {
	.index05bg {
		padding-top: 30px;
		display-radio: 1;
		margin-bottom: 0px
	}

	.index05bg .e_text-2 {
		display-radio: 1;
		font_radio: 2;
		font-size: 24px;
		color: #333333;
		line-height: 1.5
	}

	.index05bg .e_text-3 {
		display-radio: 1;
		font_radio: 2;
		font-size: 12px;
		color: #333333;
		line-height: 1.5;
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 5px
	}

	.index05bg .e_line-4 {
		display-radio: 1;
		margin-top: 10px;
		margin-bottom: 5px
	}
}


.index06bg {
	min-height: 300px;
	display-radio: 1
}

.index06bg .cf_wrap {
	padding: 0
}

.index06bg .fix:before {
	display: table;
	clear: both;
	content: ''
}

.index06bg .fix:after {
	display: table;
	clear: both;
	content: ''
}

.index06bg .cf_wrap .infor {
	text-align: center
}

.index06bg .cf_wrap .infor .tit {
	font-size: 36px;
	color: #000;
	line-height: 1;
	margin-bottom: 30px
}

.index06bg .cf_wrap .infor .con {
	font-size: 14px;
	color: #696969
}

.index06bg .cf_wrap .content {
	height: auto;
	width: 100%;
	overflow: hidden;
	margin-top: 0px
}

.index06bg .cf_wrap .content ul {
	width: 850px;
	height: 502px;
	margin: 0 auto;
	z-index: 2
}

.index06bg .cf_wrap .content li {
	width: 850px;
	height: 502px
}

.index06bg .cf_wrap .content li a {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	text-decoration: none;
	outline: 0
}

.index06bg .cf_wrap .content li .list_box {
	-webkit-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
	transform: scale(0.9);
	background: #ddd
}

.index06bg .imgZoom {
	overflow: hidden;
	-webkit-transform: rotate(0);
	transform: rotate(0)
}

.index06bg .imgZoom img {
	-moz-transition: all .8s ease 0s;
	-ms-transition: all .8s ease 0s;
	-o-transition: all .8s ease 0s;
	-webkit-transition: all .8s ease 0s;
	transition: all .8s ease 0s
}

.index06bg .imgZoom:hover img {
	-moz-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1)
}

.index06bg .cf_wrap .content li .list_box ._full {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.index06bg .cf_wrap .content li .list_box img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.index06bg .cf_wrap .content li.roundabout-in-focus .list_box {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}

.index06bg .cf_wrap .content li.roundabout-in-focus .list_box img {
	opacity: 1;
	filter: alpha(opacity=100)
}

.index06bg .cf_wrap .content .list_box {
	display: block;
	color: #fff;
	position: relative;
	border-radius: 15px
}

.index06bg .cf_wrap .content .list_text {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	visibility: hidden;
	opacity: 0
}

.index06bg .cf_wrap .content .list_text:after {
	content: '';
	width: 100%;
	height: 282px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0.5
}

.index06bg .cf_wrap .content .list_text .list_p {
	padding: 2% 4%;
	font-size: 22px;
	line-height: 38px;
	position: relative;
	z-index: 2;
	margin-bottom: 6px;
	text-align: center
}

.index06bg .cf_wrap .content .rect-59 {
	padding-bottom: 59%;
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	overflow: hidden
}

.index06bg .cf_wrap .content .list_hd {
	font-size: 18px
}

.index06bg .cf_wrap .content .roundabout-in-focus .list_text {
	visibility: visible;
	opacity: 1
}

.index06bg .cf_wrap .content .arr_btn {
	position: absolute;
	height: 455px;
	top: 20px;
	width: 150px;
	color: #fff;
	z-index: 300;
	text-align: center;
	writing-mode: tb-rl;
	line-height: 140px;
	font-family: Arial;
	font-size: 15px;
	letter-spacing: 2px;
	cursor: pointer;
	overflow: hidden
}

.index06bg .cf_wrap .content .arr_btn:after {
	content: "";
	width: 2px;
	height: 0;
	background: #fff;
	display: block;
	position: absolute;
	bottom: 0;
	left: 52%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease
}

.index06bg .cf_wrap .content .arr_btn:hover:after {
	height: 100px
}

.index06bg .cf_wrap .content .arr_btn.arr_btn_prev {
	right: 100%
}

.index06bg .cf_wrap .content .arr_btn.arr_btn_next {
	left: 100%
}

.index06bg .cf_wrap .content .arr_btn_box {
	padding: 30px 0;
	font-size: 13px;
	color: #3d3d3d;
	width: 748px;
	margin: 0 auto;
	display: none
}

.index06bg .cf_wrap .content .arr_btn_box .arr_btn02 {
	cursor: pointer
}

.index06bg .cf_wrap .content .arr_btn_box .border {
	width: 50px;
	height: 1px;
	background: #cfcfd0;
	margin-top: 50%;
	display: inline-block;
	margin: 0 6px;
	vertical-align: middle;
}

.index06bg .cf_wrap .content .arr_btn_box .arr_btn02:hover {
	color: #f08200
}

.index06bg .cf_wrap .content .arr_btn_box .arr_btn02_l:hover:after {
	background: #f08200
}

.index06bg .e_bannerB-1 {
	display-radio: 1;
	background_radio: 1;
	width: 94%;
	margin-left: auto;
	margin-right: auto
}

.index06bg .e_button-2 {
	display: block;
	position: relative;
	overflow: hidden;
	text-align: center;
	box-sizing: border-box;
	width: 180px;
	line-height: 32px;
	padding: 8px;
	background_radio: 2;
	border_radio: 2;
	font_radio: 1;
	radius_radio: 1;
	margin-top: 40px;
	transition: all .5s ease;
	margin-bottom: 0px;
	background-image: linear-gradient(292deg, rgb(3 121 187) 0%, #1a90d4 100%);
	display-radio: block;
	border-style: solid;
	border-width: 1px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 5px;
	border: none;
	font-size: 16px;
}

.index06bg .e_button-2:hover {
	background-color: rgba(85, 85, 85, 1);
	border-style: solid;
	border-color: rgba(85, 85, 85, 1)
}

.index06bg .e_button-2 span {
	display: block;
	width: 100%;
	position: relative;
	z-index: 1;
	outline: 0;
	margin: 0px;
	color: #fff;
	overflow: hidden
}

.index06bg .e_button-2::after {
	content: "";
	position: absolute;
	width: 0;
	height: 100%;
	transition: all .3s;
	z-index: 0;
	opacity: 0;
	top: 0;
	left: 0px
}

.index06bg .e_button-2:hover::after {
	opacity: 1
}

@media screen and (max-width: 768px) {
	.index06bg .cf_wrap .content {
		margin-top: 25px
	}

	.index06bg .cf_wrap .content ul {
		width: 320px;
		height: 189px
	}

	.index06bg .cf_wrap .content li {
		width: 320px;
		height: 189px
	}

	.index06bg .cf_wrap .content .list_text .list_p {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 5px
	}

	.index06bg .cf_wrap .content .arr_btn_box {
		padding: 20px 0 10px;
		display: block;
		width: auto;
		margin: 0 auto
	}

	.index06bg .arr_btn_box .l {
		float: left
	}

	.index06bg .arr_btn_box .r {
		float: right
	}

	.index06bg .e_button-2 {
		background_radio: 1;
		border_radio: 1;
		font_radio: 1;
		radius_radio: 1;
		width: 150px;
		display-radio: 1;
		margin-top: 20px
	}

	.index06bg .e_button-2 span {
		font-size: 14px
	}
}


.index07bg {
	min-height: 300px;
	display-radio: 1;
	margin-top: 70px
}

.index07bg .e_loop-1 .p_list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	max-width: 100%
}

.index07bg .e_loop-1 .p_loopitem {
	flex: 0 0 33.3%;
	position: relative
}

.index07bg .e_loop-1 .p_page {
	text-align: center
}

.index07bg .e_loop-1 .p_filter_wrapper {
	width: 100%;
	font-size: 13px
}

.index07bg .e_loop-1 .p_kv_wrapper {
	display: flex;
	flex-wrap: nowrap;
	line-height: 40px;
	margin: 15px 0
}

.index07bg .e_loop-1 .p_filter_key {
	width: 70px;
	overflow: hidden;
	margin-right: 10px;
	font-weight: bold;
	color: #333333;
	font-size: 12px
}

.index07bg .e_loop-1 .p_v_item {
	display: inline-block;
	padding: 0 3px;
	cursor: pointer;
	font-size: 13px;
	color: #555555;
	margin-right: 30px
}

.index07bg .e_loop-1 .p_active .p_fbutton {
	color: #fff;
	background-color: cornflowerblue
}

.index07bg .e_loop-1 .p_result_item {
	position: relative;
	padding: 3px 20px 3px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-right: 10px
}

.index07bg .e_loop-1 .p_filter_close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 3px;
	font-style: normal;
	font-size: 16px;
	margin-top: -5px;
	cursor: pointer
}

.index07bg .e_loop-1 .multSelect {
	font-size: 13px;
	position: relative
}

.index07bg .e_loop-1 .multSelect .inputWrap {
	width: 100%;
	min-width: 100px;
	min-height: 24px;
	border: 1px solid #DCDFE6;
	border-radius: 3px;
	position: relative;
	cursor: pointer;
	background: white
}

.index07bg .e_loop-1 .multSelect.is-invalid .inputWrap {
	border-color: #dc3545
}

.index07bg .e_loop-1 .multSelect ul {
	padding: 0 5px;
	margin: 0;
	padding-right: 35px
}

.index07bg .e_loop-1 .multSelect ul,
li {
	list-style: none
}

.index07bg .e_loop-1 .multSelect li {
	display: inline-block;
	background: #edf0f3;
	color: #92969c;
	padding: 0px 5px;
	margin: 1px 5px 1px 0;
	border-radius: 5px;
	line-height: 16px
}

.index07bg .e_loop-1 .multSelect .multSelect-option {
	width: 100%;
	border: 1px solid #DCDFE6;
	border-radius: 2px;
	border-top: 0;
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	height: 0;
	opacity: 0;
	z-index: 9;
	background: #fff
}

.index07bg .e_loop-1 .multSelect .multSelect-option>div {
	line-height: 24px;
	cursor: pointer;
	padding: 0 10px
}

.index07bg .e_loop-1 .multSelect .multSelect-option>div.selected {
	color: #409eff
}

.index07bg .e_loop-1 .multSelect .multSelect-option>div:hover {
	color: #409eff;
	background: #f3f6f9
}

.index07bg .e_loop-1 .multSelect .fa-close {
	font-style: normal;
	font-size: 12px;
	padding: 0 5px 0 7px
}

.index07bg .e_loop-1 .multSelect .inputWrap>.fa svg {
	fill: #666;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 0;
	top: calc(50% - 3px)
}

.index07bg .e_loop-1 .multSelect .inputWrap>.fa-down svg {
	transform: rotate(-90deg)
}

.index07bg .e_loop-1 .multSelect .inputWrap>.fa-up svg {
	transform: rotate(90deg)
}

.index07bg .e_loop-1 .multSelect .placeholder {
	line-height: 40px;
	padding-left: 10px;
	color: #aaa;
	position: absolute;
	left: 0;
	top: 0
}

.index07bg .e_loop-1 .p_normal_start {
	display: inline;
	width: 100px;
	height: 40px
}

.index07bg .e_loop-1 .p_date_start {
	display: inline;
	width: 105px;
	height: 40px
}

.index07bg .e_loop-1 .p_normal_end {
	display: inline;
	width: 100px;
	height: 40px;
	margin-right: 5px
}

.index07bg .e_loop-1 .p_date_end {
	display: inline;
	width: 105px;
	height: 40px;
	margin-right: 5px
}

.index07bg .e_loop-1 .p_split {
	margin: 0 5px
}

.index07bg .e_loop-1 .p_normal {
	margin-right: 16px
}

.index07bg .e_loop-1 .p_fbutton {
	background-color: #007bff;
	border: 1px solid #409EFF;
	text-decoration: none;
	color: white;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}

.index07bg .e_loop-1 .input-check,
.index07bg .e_loop-1 .input-radio {
	margin: 0 5px;
	vertical-align: text-top
}

.index07bg .e_loop-1 .position-left {
	display: flex
}

.index07bg .e_loop-1 .position-right {
	display: flex;
	flex-direction: row-reverse
}

.index07bg .e_loop-1 .position-bottom {
	display: flex;
	flex-direction: column-reverse
}

.index07bg .e_loop-1 .p_mbutton {
	border: 1px solid #409EFF;
	text-decoration: none;
	color: #409EFF;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}

.index07bg .e_loop-1 .p_mbutton:after {
	content: "";
	display: none;
	width: 16px;
	height: 16px;
	background-color: #409eff;
	-webkit-transform: skewY(-45deg);
	transform: skewY(360deg);
	position: absolute;
	bottom: 0px;
	right: 0;
	z-index: 1
}

.index07bg .e_loop-1 .p_mbutton::before {
	content: "";
	display: none;
	width: 6px;
	height: 9px;
	border-right: #ffffff solid 2px;
	border-bottom: #ffffff solid 2px;
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
	position: absolute;
	bottom: 5px;
	right: 4px;
	z-index: 2
}

.index07bg .e_loop-1 .p_active .p_mbutton::before {
	display: block
}

.index07bg .e_loop-1 .p_active .p_mbutton::after {
	display: block
}

.index07bg .e_loop-1 .p_input_match {
	width: 100px;
	height: 40px;
	padding: 10px;
	border: 1px solid #ced4da;
	border-radius: 3px
}

.index07bg .e_loop-1 .p_filter_result {
	display: inline-block
}

.index07bg .e_loop-1 .p_contclear {
	cursor: pointer
}

.index07bg .e_loop-1 .swiper-container {
	padding-bottom: 30px
}

.index07bg .e_loop-1 {
	display-radio: 1;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	max-width: none
}

.index07bg .e_image-2 {
	overflow: hidden
}

.index07bg .e_image-2 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: unset
}

.index07bg .e_container-3 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	padding-top: 20px;
	padding-left: 8%;
	padding-right: 8%;
	padding-bottom: 20px;
	background-color: rgba(240, 130, 0, 0);
	position: absolute;
	left: 0;
	z-index: 2;
	bottom: 40%;
	top: auto;
	right: auto;
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px
}

.index07bg .e_container-3>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.index07bg .e_text-4 {
	display-radio: 1;
	font_radio: 2;
	color: rgba(255, 255, 255, 1);
	font-size: 24px;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 10px;
	text-align: center
}

.index07bg .e_text-4 a {

	color: rgba(255, 255, 255, 1);

}

.index07bg .e_text-6 {
	display-radio: 1;
	font_radio: 2;
	font-size: 16px;
	color: rgba(255, 255, 255, 1);
	line-height: 1.5;
	text-align: center
}

@media screen and (max-width: 768px) {
	.index07bg .e_loop-1 .p_loopitem {
		flex: 0 0 100%;
		position: relative;
		margin-bottom: 15px
	}

	.index07bg .e_container-3 {
		width: 100%;
		border-top-right-radius: 0;
		display-radio: 1;
		padding-left: 20px;
		padding-top: 20px;
		padding-bottom: 20px;
		padding-right: 20px;
		bottom: 20%
	}

	.index07bg .e_text-4 {
		display-radio: 1;
		font_radio: 2;
		font-size: 18px;
		color: rgba(255, 255, 255, 1);
		line-height: 1.5;
		margin-bottom: 5px
	}

	.index07bg .e_loop-1 .p_loopitem:after {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 1;
		transition: all .5s ease
	}

	.index07bg .e_loop-1 .p_loopitem.cur:after {
		background: rgba(0, 0, 0, 0.2)
	}

	.index07bg .e_loop-1 .p_loopitem .e_container-3 {
		background-color: rgba(240, 130, 0, 0);
		transition: all .5s ease
	}

	.index07bg .e_loop-1 .p_loopitem.cur .e_container-3 {
		background-color: rgba(240, 130, 0, 0)
	}

	.index07bg {
		display-radio: 1;
		margin-top: 40px
	}

	.index07bg .e_text-6 {
		display-radio: -webkit-box;
		font_radio: 2;
		font-size: 14px;
		color: rgba(255, 255, 255, 1);
		line-height: 1.5;
		-webkit-line-clamp: 2;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden
	}
}

@media screen and (min-width: 769px) {
	.index07bg .e_loop-1 .p_loopitem {
		flex: 0 0 auto;
		flex-grow: 0;
		width: 25%;
		flex-shrink: 0;
		flex-basis: unset;
		transition: all .5s ease
	}

	.index07bg .e_loop-1 .p_loopitem:after {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 1;
		transition: all .5s ease
	}

	.index07bg .e_loop-1 .p_loopitem .e_container-3 {
		background-color: rgba(240, 130, 0, 0);
		transition: all .5s ease
	}

	.index07bg .e_image-2 img {
		width: 100%;
		height: 540px;
		object-fit: cover
	}

	.index07bg .e_loop-1 .p_loopitem.cur {
		width: 50%
	}

	.index07bg .e_loop-1 .p_loopitem.cur:after {
		background: rgba(0, 0, 0, 0);
		visibility: hidden
	}

	.index07bg .e_loop-1 .p_loopitem.cur .e_container-3 {
		background-color: rgba(240, 130, 0, 0);
		bottom: 5%
	}
}





.index08bg {
	min-height: 300px;
	display-radio: 1;
	padding-top: 3%;
	padding-bottom: 3%;
	background: url(/images/bg8.jpg) no-repeat center top;
	margin-top: 0px;
}

.index08bg .e_container-4 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 92%;
	display-radio: flex;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px
}

.index08bg .e_container-4>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.index08bg .e_container-4 .cbox-4-1 {
	flex: 0 0 32%
}

.index08bg .e_container-4 .cbox-4-0 {
	margin-right: 3%
}

.index08bg .e_loop-5 .p_list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	max-width: 100%
}

.index08bg .e_loop-5 .p_loopitem {
	flex: 0 0 33.3%;
	position: relative
}

.index08bg .e_loop-5 .p_page {
	text-align: center
}

.index08bg .e_loop-5 .p_filter_wrapper {
	width: 100%;
	font-size: 13px
}

.index08bg .e_loop-5 .p_kv_wrapper {
	display: flex;
	flex-wrap: nowrap;
	line-height: 40px;
	margin: 15px 0
}

.index08bg .e_loop-5 .p_filter_key {
	width: 70px;
	overflow: hidden;
	margin-right: 10px;
	font-weight: bold;
	color: #333333;
	font-size: 12px
}

.index08bg .e_loop-5 .p_v_item {
	display: inline-block;
	padding: 0 3px;
	cursor: pointer;
	font-size: 13px;
	color: #555555;
	margin-right: 30px
}

.index08bg .e_loop-5 .p_active .p_fbutton {
	color: #fff;
	background-color: cornflowerblue
}

.index08bg .e_loop-5 .p_result_item {
	position: relative;
	padding: 3px 20px 3px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-right: 10px
}

.index08bg .e_loop-5 .p_filter_close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 3px;
	font-style: normal;
	font-size: 16px;
	margin-top: -5px;
	cursor: pointer
}

.index08bg .e_loop-5 .multSelect {
	font-size: 13px;
	position: relative
}

.index08bg .e_loop-5 .multSelect .inputWrap {
	width: 100%;
	min-width: 100px;
	min-height: 24px;
	border: 1px solid #DCDFE6;
	border-radius: 3px;
	position: relative;
	cursor: pointer;
	background: white
}

.index08bg .e_loop-5 .multSelect.is-invalid .inputWrap {
	border-color: #dc3545
}

.index08bg .e_loop-5 .multSelect ul {
	padding: 0 5px;
	margin: 0;
	padding-right: 35px
}

.index08bg .e_loop-5 .multSelect ul,
li {
	list-style: none
}

.index08bg .e_loop-5 .multSelect li {
	display: inline-block;
	background: #edf0f3;
	color: #92969c;
	padding: 0px 5px;
	margin: 1px 5px 1px 0;
	border-radius: 5px;
	line-height: 16px
}

.index08bg .e_loop-5 .multSelect .multSelect-option {
	width: 100%;
	border: 1px solid #DCDFE6;
	border-radius: 2px;
	border-top: 0;
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	height: 0;
	opacity: 0;
	z-index: 9;
	background: #fff
}

.index08bg .e_loop-5 .multSelect .multSelect-option>div {
	line-height: 24px;
	cursor: pointer;
	padding: 0 10px
}

.index08bg .e_loop-5 .multSelect .multSelect-option>div.selected {
	color: #409eff
}

.index08bg .e_loop-5 .multSelect .multSelect-option>div:hover {
	color: #409eff;
	background: #f3f6f9
}

.index08bg .e_loop-5 .multSelect .fa-close {
	font-style: normal;
	font-size: 12px;
	padding: 0 5px 0 7px
}

.index08bg .e_loop-5 .multSelect .inputWrap>.fa svg {
	fill: #666;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 0;
	top: calc(50% - 3px)
}

.index08bg .e_loop-5 .multSelect .inputWrap>.fa-down svg {
	transform: rotate(-90deg)
}

.index08bg .e_loop-5 .multSelect .inputWrap>.fa-up svg {
	transform: rotate(90deg)
}

.index08bg .e_loop-5 .multSelect .placeholder {
	line-height: 40px;
	padding-left: 10px;
	color: #aaa;
	position: absolute;
	left: 0;
	top: 0
}

.index08bg .e_loop-5 .p_normal_start {
	display: inline;
	width: 100px;
	height: 40px
}

.index08bg .e_loop-5 .p_date_start {
	display: inline;
	width: 105px;
	height: 40px
}

.index08bg .e_loop-5 .p_normal_end {
	display: inline;
	width: 100px;
	height: 40px;
	margin-right: 5px
}

.index08bg .e_loop-5 .p_date_end {
	display: inline;
	width: 105px;
	height: 40px;
	margin-right: 5px
}

.index08bg .e_loop-5 .p_split {
	margin: 0 5px
}

.index08bg .e_loop-5 .p_normal {
	margin-right: 16px
}

.index08bg .e_loop-5 .p_fbutton {
	background-color: #007bff;
	border: 1px solid #409EFF;
	text-decoration: none;
	color: white;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}

.index08bg .e_loop-5 .input-check,
.index08bg .e_loop-5 .input-radio {
	margin: 0 5px;
	vertical-align: text-top
}

.index08bg .e_loop-5 .position-left {
	display: flex
}

.index08bg .e_loop-5 .position-right {
	display: flex;
	flex-direction: row-reverse
}

.index08bg .e_loop-5 .position-bottom {
	display: flex;
	flex-direction: column-reverse
}

.index08bg .e_loop-5 .p_mbutton {
	border: 1px solid #409EFF;
	text-decoration: none;
	color: #409EFF;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}

.index08bg .e_loop-5 .p_mbutton:after {
	content: "";
	display: none;
	width: 16px;
	height: 16px;
	background-color: #409eff;
	-webkit-transform: skewY(-45deg);
	transform: skewY(360deg);
	position: absolute;
	bottom: 0px;
	right: 0;
	z-index: 1
}

.index08bg .e_loop-5 .p_mbutton::before {
	content: "";
	display: none;
	width: 6px;
	height: 9px;
	border-right: #ffffff solid 2px;
	border-bottom: #ffffff solid 2px;
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
	position: absolute;
	bottom: 5px;
	right: 4px;
	z-index: 2
}

.index08bg .e_loop-5 .p_active .p_mbutton::before {
	display: block
}

.index08bg .e_loop-5 .p_active .p_mbutton::after {
	display: block
}

.index08bg .e_loop-5 .p_input_match {
	width: 100px;
	height: 40px;
	padding: 10px;
	border: 1px solid #ced4da;
	border-radius: 3px
}

.index08bg .e_loop-5 .p_filter_result {
	display: inline-block
}

.index08bg .e_loop-5 .p_contclear {
	cursor: pointer
}

.index08bg .e_loop-5 .swiper-container {
	padding-bottom: 30px
}

.index08bg .e_timeFormat-6 {
	min-height: 20px;
	display-radio: 1;
	font_radio: 2;
	font-size: 14px;
	color: #F65857;
	line-height: 1.5;
	margin-bottom: 5px
}

.index08bg .e_text-7 {
	display-radio: -webkit-box;
	font_radio: 2;
	font-size: 14px;
	color: rgba(102, 102, 102, 1);
	line-height: 1.8;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.index08bg .e_text-8 {
	line-height: 1.5;
	display-radio: -webkit-box;
	font_radio: 2;
	font-size: 20px;
	color: rgba(0, 0, 0, 1);
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 10px;
	transition: all .5s ease
}

.index08bg .e_loop-5 .p_loopitem:hover .e_text-8 {
	color: #F65857
}

.index08bg .e_container-9 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	background-color: rgba(255, 255, 255, 1);
	padding-top: 7%;
	padding-right: 30px;
	padding-bottom: 7%;
	padding-left: 30px;
	margin-bottom: 30px;
	box-shadow: 0 23px 30px -5px rgb(0 0 0 / 5%);
	transition: all .5s ease
}

.index08bg .e_container-9:hover {
	box-shadow: 0 23px 30px -5px rgb(0 0 0 / 15%)
}

.index08bg .e_container-9>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.index08bg .e_loop-10 .p_list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	max-width: 100%
}

.index08bg .e_loop-10 .p_loopitem {
	flex: 0 0 33.3%;
	position: relative;
	box-shadow: 0 23px 30px -5px rgb(0 0 0 / 5%);
	transition: all .5s ease
}

.index08bg .e_loop-10 .p_loopitem:hover {
	box-shadow: 0 23px 30px -5px rgb(0 0 0 / 20%)
}

.index08bg .e_loop-10 .p_page {
	text-align: center
}

.index08bg .e_loop-10 .p_filter_wrapper {
	width: 100%;
	font-size: 13px
}

.index08bg .e_loop-10 .p_kv_wrapper {
	display: flex;
	flex-wrap: nowrap;
	line-height: 40px;
	margin: 15px 0
}

.index08bg .e_loop-10 .p_filter_key {
	width: 70px;
	overflow: hidden;
	margin-right: 10px;
	font-weight: bold;
	color: #333333;
	font-size: 12px
}

.index08bg .e_loop-10 .p_v_item {
	display: inline-block;
	padding: 0 3px;
	cursor: pointer;
	font-size: 13px;
	color: #555555;
	margin-right: 30px
}

.index08bg .e_loop-10 .p_active .p_fbutton {
	color: #fff;
	background-color: cornflowerblue
}

.index08bg .e_loop-10 .p_result_item {
	position: relative;
	padding: 3px 20px 3px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-right: 10px
}

.index08bg .e_loop-10 .p_filter_close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 3px;
	font-style: normal;
	font-size: 16px;
	margin-top: -5px;
	cursor: pointer
}

.index08bg .e_loop-10 .multSelect {
	font-size: 13px;
	position: relative
}

.index08bg .e_loop-10 .multSelect .inputWrap {
	width: 100%;
	min-width: 100px;
	min-height: 24px;
	border: 1px solid #DCDFE6;
	border-radius: 3px;
	position: relative;
	cursor: pointer;
	background: white
}

.index08bg .e_loop-10 .multSelect.is-invalid .inputWrap {
	border-color: #dc3545
}

.index08bg .e_loop-10 .multSelect ul {
	padding: 0 5px;
	margin: 0;
	padding-right: 35px
}

.index08bg .e_loop-10 .multSelect ul,
li {
	list-style: none
}

.index08bg .e_loop-10 .multSelect li {
	display: inline-block;
	background: #edf0f3;
	color: #92969c;
	padding: 0px 5px;
	margin: 1px 5px 1px 0;
	border-radius: 5px;
	line-height: 16px
}

.index08bg .e_loop-10 .multSelect .multSelect-option {
	width: 100%;
	border: 1px solid #DCDFE6;
	border-radius: 2px;
	border-top: 0;
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	height: 0;
	opacity: 0;
	z-index: 9;
	background: #fff
}

.index08bg .e_loop-10 .multSelect .multSelect-option>div {
	line-height: 24px;
	cursor: pointer;
	padding: 0 10px
}

.index08bg .e_loop-10 .multSelect .multSelect-option>div.selected {
	color: #409eff
}

.index08bg .e_loop-10 .multSelect .multSelect-option>div:hover {
	color: #409eff;
	background: #f3f6f9
}

.index08bg .e_loop-10 .multSelect .fa-close {
	font-style: normal;
	font-size: 12px;
	padding: 0 5px 0 7px
}

.index08bg .e_loop-10 .multSelect .inputWrap>.fa svg {
	fill: #666;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 0;
	top: calc(50% - 3px)
}

.index08bg .e_loop-10 .multSelect .inputWrap>.fa-down svg {
	transform: rotate(-90deg)
}

.index08bg .e_loop-10 .multSelect .inputWrap>.fa-up svg {
	transform: rotate(90deg)
}

.index08bg .e_loop-10 .multSelect .placeholder {
	line-height: 40px;
	padding-left: 10px;
	color: #aaa;
	position: absolute;
	left: 0;
	top: 0
}

.index08bg .e_loop-10 .p_normal_start {
	display: inline;
	width: 100px;
	height: 40px
}

.index08bg .e_loop-10 .p_date_start {
	display: inline;
	width: 105px;
	height: 40px
}

.index08bg .e_loop-10 .p_normal_end {
	display: inline;
	width: 100px;
	height: 40px;
	margin-right: 5px
}

.index08bg .e_loop-10 .p_date_end {
	display: inline;
	width: 105px;
	height: 40px;
	margin-right: 5px
}

.index08bg .e_loop-10 .p_split {
	margin: 0 5px
}

.index08bg .e_loop-10 .p_normal {
	margin-right: 16px
}

.index08bg .e_loop-10 .p_fbutton {
	background-color: #007bff;
	border: 1px solid #409EFF;
	text-decoration: none;
	color: white;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}

.index08bg .e_loop-10 .input-check,
.index08bg .e_loop-10 .input-radio {
	margin: 0 5px;
	vertical-align: text-top
}

.index08bg .e_loop-10 .position-left {
	display: flex
}

.index08bg .e_loop-10 .position-right {
	display: flex;
	flex-direction: row-reverse
}

.index08bg .e_loop-10 .position-bottom {
	display: flex;
	flex-direction: column-reverse
}

.index08bg .e_loop-10 .p_mbutton {
	border: 1px solid #409EFF;
	text-decoration: none;
	color: #409EFF;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}

.index08bg .e_loop-10 .p_mbutton:after {
	content: "";
	display: none;
	width: 16px;
	height: 16px;
	background-color: #409eff;
	-webkit-transform: skewY(-45deg);
	transform: skewY(360deg);
	position: absolute;
	bottom: 0px;
	right: 0;
	z-index: 1
}

.index08bg .e_loop-10 .p_mbutton::before {
	content: "";
	display: none;
	width: 6px;
	height: 9px;
	border-right: #ffffff solid 2px;
	border-bottom: #ffffff solid 2px;
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
	position: absolute;
	bottom: 5px;
	right: 4px;
	z-index: 2
}

.index08bg .e_loop-10 .p_active .p_mbutton::before {
	display: block
}

.index08bg .e_loop-10 .p_active .p_mbutton::after {
	display: block
}

.index08bg .e_loop-10 .p_input_match {
	width: 100px;
	height: 40px;
	padding: 10px;
	border: 1px solid #ced4da;
	border-radius: 3px
}

.index08bg .e_loop-10 .p_filter_result {
	display: inline-block
}

.index08bg .e_loop-10 .p_contclear {
	cursor: pointer
}

.index08bg .e_loop-10 .swiper-container {
	padding-bottom: 30px
}

.index08bg .e_image-11 {
	overflow: hidden
}

.index08bg .e_image-11 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all .5s ease
}

.index08bg .e_loop-10 .p_loopitem:hover .e_image-11 img {
	transform: scale(1.1)
}

.index08bg .e_container-12 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	background-color: rgba(255, 255, 255, 1);
	padding-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px
}

.index08bg .e_container-12>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.index08bg .e_text-13 {
	line-height: 1.5;
	display-radio: -webkit-box;
	font_radio: 2;
	font-size: 20px;
	color: rgba(0, 0, 0, 1);
	margin-bottom: 10px;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: all .5s ease
}

.index08bg .e_loop-10 .p_loopitem:hover .e_text-13 {
	color: #F65857
}

.index08bg .e_text-15 {
	display-radio: -webkit-box;
	font_radio: 2;
	font-size: 14px;
	color: rgba(102, 102, 102, 1);
	line-height: 1.8;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.index08bg .e_loop-10 .cbox-10:nth-child(odd) {
	margin-right: 4%
}

.index08bg .e_container-16 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 92%;
	display-radio: flex;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto
}

.index08bg .e_container-16>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.index08bg .e_text-17 {
	display-radio: 1;
	font_radio: 2;
	font-size: 36px;
	text-align: center;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
	color: rgba(51, 51, 51, 1)
}

.index08bg .e_text-18 {
	display-radio: 1;
	font_radio: 2;
	font-size: 16px;
	text-align: center;
	color: rgba(102, 102, 102, 1);
	line-height: 1.5;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 5px
}

@media screen and (max-width: 768px) {
	.index08bg .e_loop-5 .p_loopitem {
		flex-grow: 0;
		flex-shrink: 0;
		flex-basis: calc(100% / 1)
	}

	.index08bg .e_loop-10 .p_loopitem {
		flex-grow: 0;
		flex-shrink: 0;
		flex-basis: calc(100% / 1)
	}

	.index08bg {
		display-radio: 1;
		margin-top: 0px;
		padding-top: 20px;
		margin-bottom: 0px;
		padding-bottom: 30px
	}

	.index08bg .e_container-4 {
		display-radio: 1;
		flex-direction: column;
		margin-top: 20px
	}

	.index08bg .e_container-4 .cbox-4-0 {
		margin-right: 0px;
		margin-bottom: 30px
	}

	.index08bg .e_text-13 {
		display-radio: 1;
		font_radio: 2;
		font-size: 16px
	}

	.index08bg .e_text-15 {
		display-radio: 1;
		font_radio: 2;
		font-size: 12px
	}

	.index08bg .e_container-12 {
		display-radio: 1
	}

	.index08bg .e_loop-10 {
		display-radio: 1
	}

	.index08bg .e_image-11 {
		display-radio: 1
	}

	.index08bg .e_loop-10 .cbox-10:nth-child(odd) {
		margin-bottom: 30px
	}

	.index08bg .e_container-9 {
		display-radio: 1;
		padding-top: 5%;
		padding-bottom: 5%;
		padding-left: 20px;
		padding-right: 20px
	}

	.index08bg .e_loop-5 {
		display-radio: 1
	}

	.index08bg .e_text-8 {
		display-radio: 1;
		font_radio: 2;
		font-size: 16px
	}

	.index08bg .e_text-7 {
		display-radio: 1;
		font_radio: 2;
		font-size: 12px
	}

	.index08bg .e_text-17 {
		display-radio: 1;
		font_radio: 2;
		font-size: 24px
	}

	.index08bg .e_text-18 {
		display-radio: 1;
		font_radio: 2;
		font-size: 12px;
		padding-left: 20px;
		padding-right: 20px
	}
}

@media screen and (min-width: 769px) {
	.index08bg .e_loop-5 .p_loopitem {
		flex-grow: 0;
		flex-shrink: 0;
		flex-basis: calc(100% / 1)
	}

	.index08bg .e_loop-10 .p_loopitem {
		flex-grow: 0;
		flex-shrink: 0;
		flex-basis: calc(96% / 2)
	}
}



.footer {
	background-color: rgba(38, 38, 38, 1);
}

.footer .footer_container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 92%;
	transition-property: all;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 70px;
	padding-bottom: 50px;
	justify-content: space-between;
}

.footer .cbox-42-0 {
	flex: 0 0 280px;
}

.footer .cbox-42-2 {
	flex: 0 0 300px;
}

.footer .cbox-42-1 {
	width: calc(90% - 700px);
	padding-left: 3%;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	padding-right: 3%;
	margin-left: 3%;
	margin-right: 2%;
}

.footer .e_image-55 {
	overflow: hidden;
	display-radio: 1;
	max-width: 80%;
	margin: auto;
}

.footer .e_image-55 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}


.footer .e_text-56 {
	text-align: center;
	line-height: 1.5;
	display-radio: 1;
	font_radio: 2;
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
	margin-bottom: 20px
}

.footer .e_websiteShare-57 .p_share a {
	width: 30px;
	display: inline-block;
	margin-right: 10px
}

.footer .e_websiteShare-57 .p_share a img {
	width: 100%
}

.footer .e_credible-58 .img1 {
	width: 65px;
	height: 23px
}

.footer .e_credible-58 .img2 {
	width: 79px;
	height: 28px
}

.footer .e_credible-58 .img3 {
	width: 92px;
	height: 33px
}

.footer .e_credible-58 .img4 {
	width: 106px;
	height: 38px
}

.footer .e_credible-58 .img5 {
	width: 131px;
	height: 47px
}

.footer .e_websiteShare-57 {
	display-radio: 1;
	background_radio: 1;
	margin-bottom: 15px
}

.f_nav>ul>li {
	display: none;
}

.f_nav>ul>li:nth-child(2),
.f_nav>ul>li:nth-child(3),
.f_nav>ul>li:nth-child(5) {
	display: block;
}


.footer .e_text-45 {
	display-radio: 1;
	font_radio: 2;
	font-size: 20px;
	color: rgba(255, 255, 255, 1);
	line-height: 1.5;
	margin-bottom: 20px
}

.footer .e_richText-46,
.footer .e_richText-46 a {
	font_radio: 2;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 2
}

.footer .e_richText-46 a:hover {
	color: rgba(255, 255, 255, 1)
}


.inbannerbg {
	position: relative;
}

.inbannerbg .p_info .p_btitle {
	font-size: 36px;
	font-weight: bold;
}

.inbannerbg .p_info .p_summary {
	font-size: 20px;
	color: #fff;
	letter-spacing: 5px;
}

.inbannerbg .p_info .p_btitle a {
	color: #fff;
}

.inbannerbg .p_info {
	width: 50%;
	position: absolute;
	right: 50%;
	top: calc(50% + 30px);
	z-index: 9;
	/* display: flex
; */
	transform: translateX(50%) translateY(-50%);
	align-items: center;
	text-align: center;
	line-height: 2;
}


.about01bg {
	min-height: 300px;
	background-fill-value: background-color;
	width: auto;
	display-radio: 1
}

.about01bg .e_container-3 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	background-fill-value: background-image;
	max-width: none;
	display-radio: flex
}

.about01bg .e_container-3>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.about01bg .e_container-3 .p_item {
	background-fill-value: background-image;
	background-repeat: no-repeat;
	background-position: top center
}

.about01bg .e_container-6 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 92%;
	max-width: 1500px;
	background-fill-value: background-image;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0px;
	display-radio: flex
}

.about01bg .e_container-6>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.about01bg .e_container-6 .p_item {
	background-fill-value: background-image;
	background-image: url(https://omo-oss-image1.thefastimg.com/portal-saas/new2021110918274281731/cms/image/9d26757d-64f2-477b-82ea-ddac58240eea.png);
	margin-left: auto;
	margin-right: auto;
	max-width: 1600px;
	width: 90%;
	margin-bottom: 4%
}

.about01bg .e_container-6 .cbox-6-0 {
	margin-left: auto;
	margin-right: auto;
	/* flex: 0 0 55%; */
	align-self: center;
	margin-top: 5%
}

.about01bg .e_container-6:hover {
	margin-left: auto;
	margin-right: auto
}

.about01bg .e_container-7 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	/* max-width: 800px; */
	display-radio: flex
}

.about01bg .e_container-7>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.about01bg .e_container-7 .p_item:hover {
	width: auto;
	/* max-width: 800px */
}

.about01bg .e_text-8 {
	text-align: center;
	line-height: normal;
	font_radio: 2;
	color: #F65857;
	font-size: 46px;
	font-family: Arial;
	font-weight: normal;
	display-radio: 1
}

.about01bg .e_text-9 {
	text-align: center;
	line-height: normal;
	font_radio: 2;
	font-size: 30px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	margin-top: 10px;
	display-radio: 1
}

.about01bg .e_richText-10 {
	font_radio: 2;
	text-align: left;
	line-height: 2;
	color: rgba(102, 102, 102, 1);
	margin-top: 2%;
	display-radio: 1;
	font-size: 16px
}

.about01bg .e_image-12 {
	overflow: hidden;
	max-width: 720px;
	margin-right: 0px;
	margin-left: auto;
	margin-top: 10%;
	display-radio: 1
}

.about01bg .e_image-12 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.about01bg.response-animated .e_text-8 {
	animation-name: fadeInDown, none;
	animation-delay: 0.0s, 0.6s;
	animation-duration: 0.6s, 0.6s;
	animation-iteration-count: 1, 1
}

.about01bg.response-animated .e_text-9 {
	animation-name: fadeInDown, none;
	animation-delay: 0.0s, 0.7s;
	animation-duration: 0.7s, 0.6s;
	animation-iteration-count: 1, 1
}

.about01bg.response-animated .e_richText-10 {
	animation-name: fadeInDown, none;
	animation-delay: 0.0s, 0.8s;
	animation-duration: 0.8s, 0.6s;
	animation-iteration-count: 1, 1
}

.about01bg.response-animated .e_image-12 {
	animation-name: fadeInDown, none;
	animation-delay: 0.0s, 0.7s;
	animation-duration: 0.8s, 0.6s;
	animation-iteration-count: 1, 1
}

.about01bg.response-animated .e_container-6 {
	animation-name: none, none;
	animation-delay: 0.0s, 0.6s;
	animation-duration: 0.6s, 0.6s;
	animation-iteration-count: 1, 1
}

@media screen and (max-width: 768px) {
	.about01bg .e_container-6 {
		display-radio: 1;
		flex-direction: column
	}

	.about01bg {
		display-radio: 1
	}

	.about01bg .e_text-8 {
		font_radio: 2;
		display-radio: 1;
		font-size: 36px
	}

	.about01bg .e_text-9 {
		font_radio: 2;
		display-radio: 1;
		font-size: 30px
	}

	.about01bg .e_image-12 {
		display-radio: 1;
		margin-top: 20px
	}
}


.about02bg {
	min-height: 0px;
	background-fill-value: background-image;
	background-image: url(https://omo-oss-image1.thefastimg.com/portal-saas/new2021123022494904932/cms/image/9b33ae60-af4c-46fd-b36c-dda67a139aca.jpg);
	background-repeat: repeat;
	background-position: top center;
	display-radio: 1;
	padding-top: 4%;
	padding-bottom: 4%
}

.about02bg .e_container-1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
	display-radio: flex;
	width: 92%;
	padding-top: 0px
}

.about02bg .e_container-1 .p_item {
	flex: 1;
	max-width: 100%
}

.about02bg .e_container-5 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	padding-top: 30px;
	display-radio: flex
}

.about02bg .e_container-5 .p_item {
	flex: 1;
	max-width: 100%
}

.about02bg .e_container-6 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row
}

.about02bg .e_container-6 .p_item {
	flex: none;
	width: 33%;
	margin-bottom: 10px;
}

.about02bg .e_container-11 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	border-style: solid;
	border-width: 0px;
	border-color: rgba(255, 255, 255, 0.3);
	margin-right: 10px;
	padding-top: 40px;
	padding-left: 20px;
	padding-bottom: 40px;
	padding-right: 20px;
	/* background-color: rgba(255,103,16,1); */
	transition-property: all;
	transition-radio: hover;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
	display-radio: flex;
	min-height: 175px;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(255, 255, 255, 0.3);
}

.about02bg .e_container-6 .cbox-6-0:nth-child(1) .e_container-11 {
	background-color: #F65857;
}

.about02bg .e_container-11:hover {
	margin-top: -10px
}

.about02bg .e_container-11 .p_item {
	flex: 1;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto
}

.about02bg .e_container-11 .cbox-11-0 {
	flex: 0 0 22%;
	align-self: center
}

.about02bg .e_container-11 .cbox-11-1 {
	flex: 0 0 78%;
	align-self: center
}

.about02bg .e_image-12 {
	overflow: hidden;
	max-width: 50px;
	margin-right: auto;
	margin: 0px auto;
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1)
}

.about02bg .e_container-11:hover .e_image-12 {
	transform: rotate(0deg) rotateX(0) rotateY(180deg)
}

.about02bg .e_image-12 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.about02bg .e_text-13 {
	color: rgba(255, 255, 255, 1);
	font_radio: 2;
	margin-top: 0px;
	font-size: 22px;
	font-family: Microsoft YaHei;
	line-height: 1.5;
	font-weight: bold;
	display-radio: 1
}

.about02bg .e_text-14 {
	position: static;
	width: auto;
	max-width: none;
	min-width: 0px;
	height: auto;
	max-height: none;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	z-index: auto;
	font_radio: 2;
	font-size: 16px;
	font-family: Microsoft YaHei;
	color: rgba(255, 255, 255, 1);
	line-height: 1.5;
	display-radio: 1
}

.about02bg .e_container-23 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	margin-top: 15px
}

.about02bg .e_container-23 .p_item {
	flex: 1;
	max-width: 100%
}

.about02bg .e_text-36 {
	line-height: normal;
	font_radio: 2;
	font-size: 36px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	margin-top: 0px;
	color: rgba(255, 255, 255, 1);
	text-align: center;
	display-radio: 1
}

.about02bg .e_text-36:hover {
	color: rgba(255, 255, 255, 1)
}

.about02bg .e_text-37 {
	font_radio: 2;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: normal;
	margin-top: 15px;
	color: rgba(255, 255, 255, 1);
	text-align: center;
	margin-bottom: 20px;
	display-radio: 1
}

.about02bg .e_text-37:hover {
	color: rgba(255, 255, 255, 1);
	text-align: center
}

.about02bg .e_container-38 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(255, 255, 255, 0.3);
	margin-right: 10px;
	padding-top: 40px;
	padding-left: 20px;
	padding-bottom: 40px;
	padding-right: 20px;
	transition-property: all;
	transition-radio: hover;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
	display-radio: flex;
	min-height: 175px
}

.about02bg .e_container-38:hover {
	margin-top: -10px
}

.about02bg .e_container-38 .p_item {
	flex: 1;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto
}

.about02bg .e_container-38 .cbox-38-0 {
	flex: 0 0 22%;
	align-self: center
}

.about02bg .e_container-38 .cbox-38-1 {
	flex: 0 0 78%;
	align-self: center
}

.about02bg .e_text-39 {
	color: rgba(255, 255, 255, 1);
	font_radio: 2;
	margin-top: 0px;
	font-size: 22px;
	font-family: Microsoft YaHei;
	line-height: 1.5;
	font-weight: bold;
	display-radio: 1
}

.about02bg .e_text-40 {
	position: static;
	width: auto;
	max-width: none;
	min-width: 0px;
	height: auto;
	max-height: none;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	z-index: auto;
	font_radio: 2;
	font-size: 16px;
	font-family: Microsoft YaHei;
	color: rgba(255, 255, 255, 1);
	line-height: 1.5;
	display-radio: 1;
	min-height: 0px
}

.about02bg .e_image-41 {
	overflow: hidden;
	max-width: 50px;
	margin-right: auto;
	margin: 0px auto;
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
	filter: grayscale(1) brightness(10)
}

.about02bg .e_container-38:hover .e_image-41 {
	transform: rotate(0deg) rotateX(0) rotateY(180deg)
}

.about02bg .e_image-41 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.about02bg .e_container-42 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(255, 255, 255, 0.3);
	margin-right: 10px;
	padding-top: 40px;
	padding-left: 20px;
	padding-bottom: 40px;
	padding-right: 20px;
	transition-property: all;
	transition-radio: hover;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
	display-radio: flex;
	min-height: 175px
}

.about02bg .e_container-42:hover {
	margin-top: -10px
}

.about02bg .e_container-42 .p_item {
	flex: 1;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto
}

.about02bg .e_container-42 .cbox-42-0 {
	flex: 0 0 22%;
	align-self: center
}

.about02bg .e_container-42 .cbox-42-1 {
	flex: 0 0 78%;
	align-self: center
}

.about02bg .e_text-43 {
	color: rgba(255, 255, 255, 1);
	font_radio: 2;
	margin-top: 0px;
	font-size: 22px;
	font-family: Microsoft YaHei;
	line-height: 1.5;
	font-weight: bold;
	display-radio: 1
}

.about02bg .e_text-44 {
	position: static;
	width: auto;
	max-width: none;
	min-width: 0px;
	height: auto;
	max-height: none;
	min-height: 0px;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	z-index: auto;
	font_radio: 2;
	font-size: 16px;
	font-family: Microsoft YaHei;
	color: rgba(255, 255, 255, 1);
	line-height: 1.5;
	display-radio: 1
}

.about02bg .e_image-45 {
	overflow: hidden;
	max-width: 54px;
	margin-right: auto;
	margin: 0px auto;
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
	filter: grayscale(1) brightness(10)
}

.about02bg .e_container-42:hover .e_image-45 {
	transform: rotate(0deg) rotateX(0) rotateY(180deg)
}

.about02bg .e_image-45 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.about02bg .e_container-46 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(255, 255, 255, 0.3);
	margin-right: 10px;
	padding-top: 40px;
	padding-left: 20px;
	padding-bottom: 40px;
	padding-right: 20px;
	transition-property: all;
	transition-radio: hover;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
	display-radio: flex;
	min-height: 175px
}

.about02bg .e_container-46:hover {
	margin-top: -10px
}

.about02bg .e_container-46 .p_item {
	flex: 1;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto
}

.about02bg .e_container-46 .cbox-46-0 {
	flex: 0 0 22%;
	align-self: center
}

.about02bg .e_container-46 .cbox-46-1 {
	flex: 0 0 78%;
	align-self: center
}

.about02bg .e_text-47 {
	color: rgba(255, 255, 255, 1);
	font_radio: 2;
	margin-top: 0px;
	font-size: 22px;
	font-family: Microsoft YaHei;
	line-height: 1.5;
	font-weight: bold;
	display-radio: 1
}

.about02bg .e_text-48 {
	position: static;
	width: auto;
	max-width: none;
	min-width: 0px;
	height: auto;
	max-height: none;
	min-height: 0px;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	z-index: auto;
	font_radio: 2;
	font-size: 16px;
	font-family: Microsoft YaHei;
	color: rgba(255, 255, 255, 1);
	line-height: 1.5
}

.about02bg .e_image-49 {
	overflow: hidden;
	max-width: 50px;
	margin-right: auto;
	margin: 0px auto;
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
	filter: grayscale(1) brightness(10)
}

.about02bg .e_container-46:hover .e_image-49 {
	transform: rotate(0deg) rotateX(0) rotateY(180deg)
}

.about02bg .e_image-49 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.about02bg .e_container-50 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(255, 255, 255, 0.3);
	margin-right: 10px;
	padding-top: 40px;
	padding-left: 20px;
	padding-bottom: 40px;
	padding-right: 20px;
	transition-property: all;
	transition-radio: hover;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
	display-radio: flex;
	min-height: 175px
}

.about02bg .e_container-50:hover {
	margin-top: -10px
}

.about02bg .e_container-50 .p_item {
	flex: 1;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto
}

.about02bg .e_container-50 .cbox-50-0 {
	flex: 0 0 22%;
	align-self: center
}

.about02bg .e_container-50 .cbox-50-1 {
	flex: 0 0 78%;
	align-self: center
}

.about02bg .e_text-51 {
	color: rgba(255, 255, 255, 1);
	font_radio: 2;
	margin-top: 0px;
	font-size: 22px;
	font-family: Microsoft YaHei;
	line-height: 1.5;
	font-weight: bold;
	display-radio: 1
}

.about02bg .e_text-52 {
	position: static;
	width: auto;
	max-width: none;
	min-width: 0px;
	height: auto;
	max-height: none;
	min-height: 0px;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	z-index: auto;
	font_radio: 2;
	font-size: 16px;
	font-family: Microsoft YaHei;
	color: rgba(255, 255, 255, 1);
	line-height: 1.5
}

.about02bg .e_image-53 {
	overflow: hidden;
	max-width: 50px;
	margin-right: auto;
	margin: 0px auto;
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
	filter: grayscale(1) brightness(10)
}

.about02bg .e_container-50:hover .e_image-53 {
	transform: rotate(0deg) rotateX(0) rotateY(180deg)
}

.about02bg .e_image-53 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.about02bg .e_container-54 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(255, 255, 255, 0.3);
	margin-right: 10px;
	padding-top: 40px;
	padding-left: 20px;
	padding-bottom: 40px;
	padding-right: 20px;
	transition-property: all;
	transition-radio: hover;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
	display-radio: flex;
	min-height: 175px
}

.about02bg .e_container-54:hover {
	margin-top: -10px
}

.about02bg .e_container-54 .p_item {
	flex: 1;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto
}

.about02bg .e_container-54 .cbox-54-0 {
	flex: 0 0 22%;
	align-self: center
}

.about02bg .e_container-54 .cbox-54-1 {
	flex: 0 0 78%;
	align-self: center
}

.about02bg .e_text-55 {
	color: rgba(255, 255, 255, 1);
	font_radio: 2;
	margin-top: 0px;
	font-size: 22px;
	font-family: Microsoft YaHei;
	line-height: 1.5;
	font-weight: bold;
	display-radio: 1
}

.about02bg .e_text-56 {
	position: static;
	width: auto;
	max-width: none;
	min-width: 0px;
	height: auto;
	max-height: none;
	min-height: 0px;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	z-index: auto;
	font_radio: 2;
	font-size: 16px;
	font-family: Microsoft YaHei;
	color: rgba(255, 255, 255, 1);
	line-height: 1.5;
	display-radio: 1
}

.about02bg .e_image-57 {
	overflow: hidden;
	max-width: 50px;
	margin-right: auto;
	margin: 0px auto;
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
	filter: grayscale(1) brightness(10)
}

.about02bg .e_container-54:hover .e_image-57 {
	transform: rotate(0deg) rotateX(0) rotateY(180deg)
}

.about02bg .e_image-57 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

@media screen and (max-width: 768px) {
	.about02bg .e_container-1 {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		max-width: 1740px;
		margin-left: auto;
		margin-right: auto;
		padding-top: 75px !important;
		padding-bottom: 80px !important;
		padding-left: 20px;
		padding-right: 20px
	}

	.about02bg .e_container-6 {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column
	}

	.about02bg .e_container-6 .cbox-6-0 {
		margin-bottom: 15px
	}

	.about02bg .e_container-6 .cbox-6-1 {
		margin-bottom: 15px
	}

	.about02bg .e_container-6 .cbox-6-2 {
		margin-bottom: 0px
	}

	.about02bg .e_container-11 {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		border-style: solid;
		border-width: 0px;
		border-color: rgba(204, 204, 204, 1);
		margin-right: 0px;
		padding-top: 15px;
		padding-left: 15px;
		padding-bottom: 15px;
		padding-right: 15px;
		margin-left: 0px;
		background-color: rgba(0, 104, 183, 1);
		display-radio: flex
	}

	.about02bg .e_container-23 {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		margin-top: 15px
	}

	.about02bg .e_container-23 .cbox-23-0 {
		margin-bottom: 0px
	}

	.about02bg .e_container-23 .cbox-23-1 {
		margin-bottom: 0px
	}

	.about02bg .e_text-36 {
		font_radio: 2;
		font-size: 30px;
		color: rgba(255, 255, 255, 1);
		line-height: 1;
		font-family: Microsoft YaHei;
		margin-top: 0px;
		display-radio: 1
	}

	.about02bg .e_text-36:hover {
		color: rgba(255, 255, 255, 1)
	}

	.about02bg .e_text-37 {
		font_radio: 2;
		font-size: 18px;
		color: rgba(255, 255, 255, 1);
		line-height: 1;
		font-family: Microsoft YaHei;
		margin-top: 15px;
		display-radio: 1
	}

	.about02bg .e_text-37:hover {
		color: rgba(255, 255, 255, 1)
	}

	.about02bg .e_text-37 .p_item {
		margin-top: 0px
	}

	.about02bg .e_text-13 {
		font_radio: 2;
		font-size: 20px;
		color: rgba(255, 255, 255, 1);
		line-height: 1;
		font-family: Arial
	}

	.about02bg .e_container-38 {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		border-style: solid;
		border-width: 1px;
		border-color: rgba(255, 255, 255, 0.2);
		margin-right: 0px;
		padding-top: 15px;
		padding-left: 15px;
		padding-bottom: 15px;
		padding-right: 15px;
		margin-left: 0px;
		background-color: rgba(201, 21, 30, 0)
	}

	.about02bg .e_text-39 {
		font_radio: 2;
		font-size: 20px;
		color: rgba(255, 255, 255, 1);
		line-height: 1;
		font-family: Arial
	}

	.about02bg .e_container-42 {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		border-style: solid;
		border-width: 1px;
		border-color: rgba(255, 255, 255, 0.2);
		margin-right: 0px;
		padding-top: 15px;
		padding-left: 15px;
		padding-bottom: 15px;
		padding-right: 15px;
		margin-left: 0px;
		background-color: rgba(201, 21, 30, 0)
	}

	.about02bg .e_text-43 {
		font_radio: 2;
		font-size: 20px;
		color: rgba(255, 255, 255, 1);
		line-height: 1;
		font-family: Arial
	}

	.about02bg .e_container-46 {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		border-style: solid;
		border-width: 1px;
		border-color: rgba(255, 255, 255, 0.2);
		margin-right: 0px;
		padding-top: 15px;
		padding-left: 15px;
		padding-bottom: 15px;
		padding-right: 15px;
		margin-left: 0px;
		background-color: rgba(201, 21, 30, 0)
	}

	.about02bg .e_text-47 {
		font_radio: 2;
		font-size: 20px;
		color: rgba(255, 255, 255, 1);
		line-height: 1;
		font-family: Arial
	}

	.about02bg .e_container-50 {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		border-style: solid;
		border-width: 1px;
		border-color: rgba(255, 255, 255, 0.2);
		margin-right: 0px;
		padding-top: 15px;
		padding-left: 15px;
		padding-bottom: 15px;
		padding-right: 15px;
		margin-left: 0px;
		background-color: rgba(201, 21, 30, 0)
	}

	.about02bg .e_text-51 {
		font_radio: 2;
		font-size: 20px;
		color: rgba(255, 255, 255, 1);
		line-height: 1;
		font-family: Arial
	}

	.about02bg .e_container-54 {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		border-style: solid;
		border-width: 1px;
		border-color: rgba(255, 255, 255, 0.2);
		margin-right: 0px;
		padding-top: 15px;
		padding-left: 15px;
		padding-bottom: 15px;
		padding-right: 15px;
		margin-left: 0px;
		background-color: rgba(201, 21, 30, 0)
	}

	.about02bg .e_text-55 {
		font_radio: 2;
		font-size: 20px;
		color: rgba(255, 255, 255, 1);
		line-height: 1;
		font-family: Arial
	}

	.about02bg .e_text-40 {
		font_radio: 1
	}

	.about02bg .e_text-14 {
		font_radio: 2
	}

	.about02bg .e_text-13:hover {
		color: rgba(255, 255, 255, 1)
	}

	.about02bg .e_text-39:hover {
		color: rgba(255, 255, 255, 1)
	}

	.about02bg .e_text-43:hover {
		color: rgba(255, 255, 255, 1)
	}

	.about02bg .e_text-47:hover {
		color: rgba(255, 255, 255, 1)
	}

	.about02bg .e_text-51:hover {
		color: rgba(255, 255, 255, 1)
	}

	.about02bg .e_text-55:hover {
		color: rgba(255, 255, 255, 1)
	}

	.about02bg .e_image-57 {
		overflow: hidden;
		max-width: 40px !important;
		margin-right: auto;
		margin: 0px auto
	}

	.about02bg .e_image-53 {
		overflow: hidden;
		max-width: 40px !important;
		margin-right: auto;
		margin: 0px auto
	}

	.about02bg .e_image-49 {
		overflow: hidden;
		max-width: 40px !important;
		margin-right: auto;
		margin: 0px auto
	}

	.about02bg .e_image-45 {
		overflow: hidden;
		max-width: 43px !important;
		margin-right: auto;
		margin: 0px auto
	}

	.about02bg .e_image-41 {
		overflow: hidden;
		max-width: 40px !important;
		margin-right: auto;
		margin: 0px auto
	}

	.about02bg .e_image-12 {
		overflow: hidden;
		max-width: 40px !important;
		margin-right: auto;
		margin: 0px auto
	}

	.about02bg {
		display-radio: 1
	}
}


.about03bg {
	min-height: 0px;
	padding-top: 50px;
	padding-bottom: 50px;
	display-radio: 1
}

.about03bg .e_container-1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 92%;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
	padding-right: 0px;
	display-radio: flex;
	padding-top: 0px;
	margin-top: 20px;
	padding-left: 0px
}

.about03bg .e_container-1>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.about03bg .s_title.response-transition,
.about03bg .s_line.response-transition {
	transform: translateY(0px);
	opacity: 1
}

.about03bg .noAni .s_title,
.about03bg .noAni .s_line {
	transform: translateY(0px);
	opacity: 1
}

.about03bg .e_loop-14 .p_list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	max-width: 100%
}

.about03bg .e_loop-14 .p_loopitem {
	flex: 0 0 33.3%;
	position: relative
}

.about03bg .e_loop-14 .p_page {
	text-align: center
}

.about03bg .e_loop-14 .p_filter_wrapper {
	width: 100%;
	font-size: 13px
}

.about03bg .e_loop-14 .p_kv_wrapper {
	display: flex;
	flex-wrap: nowrap;
	line-height: 40px;
	margin: 15px 0
}

.about03bg .e_loop-14 .p_filter_key {
	width: 70px;
	overflow: hidden;
	margin-right: 10px;
	font-weight: bold;
	color: #333333;
	font-size: 12px
}

.about03bg .e_loop-14 .p_v_item {
	display: inline-block;
	padding: 0 3px;
	cursor: pointer;
	font-size: 13px;
	color: #555555;
	margin-right: 30px
}

.about03bg .e_loop-14 .p_active .p_fbutton {
	color: #fff;
	background-color: cornflowerblue
}

.about03bg .e_loop-14 .p_result_item {
	position: relative;
	padding: 3px 20px 3px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-right: 10px
}

.about03bg .e_loop-14 .p_filter_close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 3px;
	font-style: normal;
	font-size: 16px;
	margin-top: -5px;
	cursor: pointer
}

.about03bg .e_loop-14 .multSelect {
	font-size: 13px;
	position: relative
}

.about03bg .e_loop-14 .multSelect .inputWrap {
	width: 100%;
	min-width: 100px;
	min-height: 24px;
	border: 1px solid #DCDFE6;
	border-radius: 3px;
	position: relative;
	cursor: pointer;
	background: white
}

.about03bg .e_loop-14 .multSelect.is-invalid .inputWrap {
	border-color: #dc3545
}

.about03bg .e_loop-14 .multSelect ul {
	padding: 0 5px;
	margin: 0;
	padding-right: 35px
}

.about03bg .e_loop-14 .multSelect ul,
li {
	list-style: none
}

.about03bg .e_loop-14 .multSelect li {
	display: inline-block;
	background: #edf0f3;
	color: #92969c;
	padding: 0px 5px;
	margin: 1px 5px 1px 0;
	border-radius: 5px;
	line-height: 16px
}

.about03bg .e_loop-14 .multSelect .multSelect-option {
	width: 100%;
	border: 1px solid #DCDFE6;
	border-radius: 2px;
	border-top: 0;
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	height: 0;
	opacity: 0;
	z-index: 9;
	background: #fff
}

.about03bg .e_loop-14 .multSelect .multSelect-option>div {
	line-height: 24px;
	cursor: pointer;
	padding: 0 10px
}

.about03bg .e_loop-14 .multSelect .multSelect-option>div.selected {
	color: #409eff
}

.about03bg .e_loop-14 .multSelect .multSelect-option>div:hover {
	color: #409eff;
	background: #f3f6f9
}

.about03bg .e_loop-14 .multSelect .fa-close {
	font-style: normal;
	font-size: 12px;
	padding: 0 5px 0 7px
}

.about03bg .e_loop-14 .multSelect .inputWrap>.fa svg {
	fill: #666;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 0;
	top: calc(50% - 3px)
}

.about03bg .e_loop-14 .multSelect .inputWrap>.fa-down svg {
	transform: rotate(-90deg)
}

.about03bg .e_loop-14 .multSelect .inputWrap>.fa-up svg {
	transform: rotate(90deg)
}

.about03bg .e_loop-14 .multSelect .placeholder {
	line-height: 40px;
	padding-left: 10px;
	color: #aaa;
	position: absolute;
	left: 0;
	top: 0
}

.about03bg .e_loop-14 .p_normal_start {
	display: inline;
	width: 60px;
	height: 22px
}

.about03bg .e_loop-14 .p_date_start {
	display: inline;
	width: 105px;
	height: 22px
}

.about03bg .e_loop-14 .p_normal_end {
	display: inline;
	width: 60px;
	height: 22px;
	margin-right: 5px
}

.about03bg .e_loop-14 .p_date_end {
	display: inline;
	width: 105px;
	height: 22px;
	margin-right: 5px
}

.about03bg .e_loop-14 .p_split {
	margin: 0 5px
}

.about03bg .e_loop-14 .p_normal {
	margin-right: 16px
}

.about03bg .e_loop-14 .p_fbutton {
	background-color: #007bff;
	border: 1px solid #409EFF;
	text-decoration: none;
	color: white;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}

.about03bg .e_loop-14 .input-check,
.about03bg .e_loop-14 .input-radio {
	margin: 0 5px;
	vertical-align: text-top
}

.about03bg .e_loop-14 .position-left {
	display: flex
}

.about03bg .e_loop-14 .position-right {
	display: flex;
	flex-direction: row-reverse
}

.about03bg .e_loop-14 .position-bottom {
	display: flex;
	flex-direction: column-reverse
}

.about03bg .e_loop-14 .p_mbutton {
	border: 1px solid #409EFF;
	text-decoration: none;
	color: #409EFF;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}

.about03bg .e_loop-14 .p_mbutton:after {
	content: "";
	display: none;
	width: 16px;
	height: 16px;
	background-color: #409eff;
	-webkit-transform: skewY(-45deg);
	transform: skewY(360deg);
	position: absolute;
	bottom: 0px;
	right: 0;
	z-index: 1
}

.about03bg .e_loop-14 .p_mbutton::before {
	content: "";
	display: none;
	width: 6px;
	height: 9px;
	border-right: #ffffff solid 2px;
	border-bottom: #ffffff solid 2px;
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
	position: absolute;
	bottom: 5px;
	right: 4px;
	z-index: 2
}

.about03bg .e_loop-14 .p_active .p_mbutton::before {
	display: block
}

.about03bg .e_loop-14 .p_active .p_mbutton::after {
	display: block
}

.about03bg .e_loop-14 {
	margin-top: 20px;
	display-radio: 1
}

.about03bg .e_container-15 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: 10px;
	margin-right: 10px;
	width: auto;
	margin-bottom: 20px;
	padding-top: 15px;
	background-color: rgba(245, 245, 245, 1);
	height: calc(100% - 20px);
	transition: all ease .5s;
	display-radio: flex;
	padding-bottom: 45px
}

.about03bg .e_image-16::after {
	content: '+';
	position: absolute;
	left: 50%;
	top: 60%;
	transform: translate(-50%, -50%);
	z-index: 10;
	color: #fff;
	height: 50px;
	width: 50px;
	border-radius: 100%;
	border: 2px solid #fff;
	text-align: center;
	line-height: 40px;
	font-size: 24px;
	vertical-align: middle;
	transition: all ease .35s;
	opacity: 0;
	pointer-events: none
}

.about03bg .p_item:hover>.e_image-16::after {
	opacity: 1;
	top: 50%
}

.about03bg .e_container-15>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 230px
}

.about03bg .e_image-16 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity ease .3s, transform 300ms cubic-bezier(.2, 0, .1, 1)
}

.about03bg .e_image-16 {
	max-height: none;
	height: 100%;
	width: 100%;
	background: rgb(0 0 0 / 0%);
	transition: all ease .5s;
	display-radio: 1;
	background-color: rgb(0 0 0 / 0%)
}

.about03bg .p_item:hover>.e_image-16 {}

.about03bg .lightense-wrap {
	height: 100%
}

.about03bg .e_html-17 {
	min-height: 0px;
	display-radio: 1;
	background_radio: 1
}


.about03bg .e_text-19 {
	line-height: 1.5;
	font_radio: 2;
	display-radio: 1;
	text-align: center;
	font-size: 16px;
	margin-top: 10px
}


.honor01bg {
	min-height: 0px;
	padding-top: 50px;
	padding-bottom: 50px;
	display-radio: 1
}

.honor01bg .e_container-1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 92%;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
	padding-right: 0px;
	display-radio: flex;
	padding-top: 0px;
	margin-top: 20px;
	padding-left: 0px
}

.honor01bg .e_container-1>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.honor01bg .s_title.response-transition,
.honor01bg .s_line.response-transition {
	transform: translateY(0px);
	opacity: 1
}

.honor01bg .noAni .s_title,
.honor01bg .noAni .s_line {
	transform: translateY(0px);
	opacity: 1
}

.honor01bg .e_loop-14 .p_list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	max-width: 100%
}

.honor01bg .e_loop-14 .p_loopitem {
	flex: 0 0 33.3%;
	position: relative
}

.honor01bg .e_loop-14 .p_page {
	text-align: center
}

.honor01bg .e_loop-14 .p_filter_wrapper {
	width: 100%;
	font-size: 13px
}

.honor01bg .e_loop-14 .p_kv_wrapper {
	display: flex;
	flex-wrap: nowrap;
	line-height: 40px;
	margin: 15px 0
}

.honor01bg .e_loop-14 .p_filter_key {
	width: 70px;
	overflow: hidden;
	margin-right: 10px;
	font-weight: bold;
	color: #333333;
	font-size: 12px
}

.honor01bg .e_loop-14 .p_v_item {
	display: inline-block;
	padding: 0 3px;
	cursor: pointer;
	font-size: 13px;
	color: #555555;
	margin-right: 30px
}

.honor01bg .e_loop-14 .p_active .p_fbutton {
	color: #fff;
	background-color: cornflowerblue
}

.honor01bg .e_loop-14 .p_result_item {
	position: relative;
	padding: 3px 20px 3px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-right: 10px
}

.honor01bg .e_loop-14 .p_filter_close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 3px;
	font-style: normal;
	font-size: 16px;
	margin-top: -5px;
	cursor: pointer
}

.honor01bg .e_loop-14 .multSelect {
	font-size: 13px;
	position: relative
}

.honor01bg .e_loop-14 .multSelect .inputWrap {
	width: 100%;
	min-width: 100px;
	min-height: 24px;
	border: 1px solid #DCDFE6;
	border-radius: 3px;
	position: relative;
	cursor: pointer;
	background: white
}

.honor01bg .e_loop-14 .multSelect.is-invalid .inputWrap {
	border-color: #dc3545
}

.honor01bg .e_loop-14 .multSelect ul {
	padding: 0 5px;
	margin: 0;
	padding-right: 35px
}

.honor01bg .e_loop-14 .multSelect ul,
li {
	list-style: none
}

.honor01bg .e_loop-14 .multSelect li {
	display: inline-block;
	background: #edf0f3;
	color: #92969c;
	padding: 0px 5px;
	margin: 1px 5px 1px 0;
	border-radius: 5px;
	line-height: 16px
}

.honor01bg .e_loop-14 .multSelect .multSelect-option {
	width: 100%;
	border: 1px solid #DCDFE6;
	border-radius: 2px;
	border-top: 0;
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	height: 0;
	opacity: 0;
	z-index: 9;
	background: #fff
}

.honor01bg .e_loop-14 .multSelect .multSelect-option>div {
	line-height: 24px;
	cursor: pointer;
	padding: 0 10px
}

.honor01bg .e_loop-14 .multSelect .multSelect-option>div.selected {
	color: #409eff
}

.honor01bg .e_loop-14 .multSelect .multSelect-option>div:hover {
	color: #409eff;
	background: #f3f6f9
}

.honor01bg .e_loop-14 .multSelect .fa-close {
	font-style: normal;
	font-size: 12px;
	padding: 0 5px 0 7px
}

.honor01bg .e_loop-14 .multSelect .inputWrap>.fa svg {
	fill: #666;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 0;
	top: calc(50% - 3px)
}

.honor01bg .e_loop-14 .multSelect .inputWrap>.fa-down svg {
	transform: rotate(-90deg)
}

.honor01bg .e_loop-14 .multSelect .inputWrap>.fa-up svg {
	transform: rotate(90deg)
}

.honor01bg .e_loop-14 .multSelect .placeholder {
	line-height: 40px;
	padding-left: 10px;
	color: #aaa;
	position: absolute;
	left: 0;
	top: 0
}

.honor01bg .e_loop-14 .p_normal_start {
	display: inline;
	width: 60px;
	height: 22px
}

.honor01bg .e_loop-14 .p_date_start {
	display: inline;
	width: 105px;
	height: 22px
}

.honor01bg .e_loop-14 .p_normal_end {
	display: inline;
	width: 60px;
	height: 22px;
	margin-right: 5px
}

.honor01bg .e_loop-14 .p_date_end {
	display: inline;
	width: 105px;
	height: 22px;
	margin-right: 5px
}

.honor01bg .e_loop-14 .p_split {
	margin: 0 5px
}

.honor01bg .e_loop-14 .p_normal {
	margin-right: 16px
}

.honor01bg .e_loop-14 .p_fbutton {
	background-color: #007bff;
	border: 1px solid #409EFF;
	text-decoration: none;
	color: white;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}

.honor01bg .e_loop-14 .input-check,
.honor01bg .e_loop-14 .input-radio {
	margin: 0 5px;
	vertical-align: text-top
}

.honor01bg .e_loop-14 .position-left {
	display: flex
}

.honor01bg .e_loop-14 .position-right {
	display: flex;
	flex-direction: row-reverse
}

.honor01bg .e_loop-14 .position-bottom {
	display: flex;
	flex-direction: column-reverse
}

.honor01bg .e_loop-14 .p_mbutton {
	border: 1px solid #409EFF;
	text-decoration: none;
	color: #409EFF;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}

.honor01bg .e_loop-14 .p_mbutton:after {
	content: "";
	display: none;
	width: 16px;
	height: 16px;
	background-color: #409eff;
	-webkit-transform: skewY(-45deg);
	transform: skewY(360deg);
	position: absolute;
	bottom: 0px;
	right: 0;
	z-index: 1
}

.honor01bg .e_loop-14 .p_mbutton::before {
	content: "";
	display: none;
	width: 6px;
	height: 9px;
	border-right: #ffffff solid 2px;
	border-bottom: #ffffff solid 2px;
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
	position: absolute;
	bottom: 5px;
	right: 4px;
	z-index: 2
}

.honor01bg .e_loop-14 .p_active .p_mbutton::before {
	display: block
}

.honor01bg .e_loop-14 .p_active .p_mbutton::after {
	display: block
}

.honor01bg .e_loop-14 {
	margin-top: 20px;
	display-radio: 1
}

.honor01bg .e_container-15 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: 10px;
	margin-right: 10px;
	width: auto;
	margin-bottom: 20px;
	padding-top: 15px;
	background-color: rgba(245, 245, 245, 1);
	height: calc(100% - 20px);
	transition: all ease .5s;
	display-radio: flex;
	padding-bottom: 45px
}

.honor01bg .e_image-16::after {
	content: '+';
	position: absolute;
	left: 50%;
	top: 60%;
	transform: translate(-50%, -50%);
	z-index: 10;
	color: #fff;
	height: 50px;
	width: 50px;
	border-radius: 100%;
	border: 2px solid #fff;
	text-align: center;
	line-height: 40px;
	font-size: 24px;
	vertical-align: middle;
	transition: all ease .35s;
	opacity: 0;
	pointer-events: none
}

.honor01bg .p_item:hover>.e_image-16::after {
	opacity: 1;
	top: 50%
}

.honor01bg .e_container-15>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 230px
}

.honor01bg .e_image-16 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity ease .3s, transform 300ms cubic-bezier(.2, 0, .1, 1)
}

.honor01bg .e_image-16 {
	max-height: none;
	height: 100%;
	width: 100%;
	background: rgb(0 0 0 / 0%);
	transition: all ease .5s;
	display-radio: 1;
	background-color: rgb(0 0 0 / 0%)
}

.honor01bg .p_item:hover>.e_image-16 {}

.honor01bg .lightense-wrap {
	height: 100%
}

.honor01bg .e_html-17 {
	min-height: 0px;
	display-radio: 1;
	background_radio: 1
}

.honor01bg .e_text-18 {
	line-height: normal;
	font_radio: 2;
	font-size: 36px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	margin-top: 0px;
	color: rgba(51, 51, 51, 1);
	text-align: center;
	display-radio: 1;
}

.honor01bg .e_text-19,
.device01bg .e_text-19 {
	line-height: 1.5;
	font_radio: 2;
	display-radio: 1;
	text-align: center;
	font-size: 16px;
	margin-top: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;

}

.product01bg {
	background-color: rgba(240, 240, 240, 1);
}


.product01bg .e_container-4 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	background-image: linear-gradient(292deg, #F65857 0%, #cd3f3e 100%);
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 40px;
	padding-right: 25px;
	border-top-left-radius: 30px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	margin-top: 40px
}

.product01bg .e_container-4>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.product01bg .e_text-5 {
	line-height: 1.5;
	display-radio: 1;
	font_radio: 2;
	font-size: 28px;
	color: rgba(255, 255, 255, 1);
	font-weight: normal
}

.product01bg .e_container-6 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	background-color: rgba(255, 255, 255, 1);
	padding-top: 20px;
	padding-left: 25px;
	padding-bottom: 30px;
	padding-right: 25px
}

.product01bg .e_container-6>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.product01bg .e_richText-7 {
	font_radio: 2;
	font-size: 16px;
	color: rgba(85, 85, 85, 1);
	line-height: 2;
	display-radio: 1
}

.product01bg .e_richText-7 a:hover {
	color: #f08200
}

@media screen and (max-width: 768px) {
	#c_grid-1646729949913>.p_gridbox>.p_gridCell:nth-child(1n + 1) {
		width: 100% !important;
		margin-left: 0% !important;
		margin-right: 0% !important;
		margin-top: 0rem !important;
		margin-bottom: 0rem !important;
		clear: left
	}

	.product01bg .e_categoryB-3 {
		background: none;
		max-width: none;
		display: flex;
		justify-content: flex-end
	}

	.product01bg .e_categoryB-3 .p_c_tree {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 100%;
		height: 100vh;
		width: 70%;
		transition: all ease .5s;
		background: #fff;
		z-index: 999;
		max-height: 1080px
	}

	.product01bg .e_categoryB-3 .deep-1 {
		height: 100%;
		overflow-y: auto;
		overflow-x: hidden;
		padding-top: 60px
	}

	.product01bg .e_categoryB-3 .p_c_mbtn {
		display: block;
		border: 0;
		width: 100%;
		background: #F65857;
		padding: 15px 15px;
		border-radius: 2px;
		font-size: 16px;
		color: #fff;
		outline: none
	}

	.product01bg .e_categoryB-3 .p_c_mput {
		display: block;
		line-height: 50px;
		background: rgb(0 0 0 / 70%);
		position: fixed;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		max-height: 1080px;
		height: 100vh;
		width: 100%;
		cursor: pointer;
		transition: all ease .5s;
		opacity: 0;
		visibility: hidden;
		z-index: 999
	}

	.product01bg .e_categoryB-3 .p_c_mput:hover {
		background: rgb(0 0 0 / 80%)
	}

	.product01bg .e_categoryB-3 .deep a {
		padding-right: 15px;
		width: 100%
	}

	.product01bg .e_categoryB-3 .deep {
		color: #666
	}

	.product01bg .e_categoryB-3 .deep-2 {
		display: none;
		position: static;
		width: 100%
	}

	.product01bg .e_categoryB-3 .deep-3 {
		display: none;
		position: static;
		width: 100%;
		background: #dfdfdf
	}

	.product01bg .e_categoryB-3 .p_c_title3 {
		border-bottom: 1px solid #d5d5d5
	}

	.product01bg .e_categoryB-3.design_nomput .p_c_mput {
		display: none
	}
}


.product01bg .m11_inside_rt {
	min-height: 300px
}

.product01bg .m11_inside_rt .e_loop-1 .p_list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	max-width: 100%
}

.product01bg .m11_inside_rt .e_loop-1 .p_loopitem {
	flex: 0 0 33.3%;
	position: relative
}

.product01bg .m11_inside_rt .e_loop-1 .p_page {
	text-align: center;
	display-radio: 1;
	margin-top: 30px
}

.product01bg .m11_inside_rt .e_loop-1 .p_filter_wrapper {
	width: 100%;
	font-size: 13px
}

.product01bg .m11_inside_rt .e_loop-1 .p_kv_wrapper {
	display: flex;
	flex-wrap: nowrap;
	line-height: 24px;
	margin: 15px 0
}

.product01bg .m11_inside_rt .e_loop-1 .p_filter_key {
	width: 70px;
	overflow: hidden;
	margin-right: 10px;
	font-weight: bold;
	color: #333333;
	font-size: 12px
}

.product01bg .m11_inside_rt .e_loop-1 .p_v_item {
	display: inline-block;
	padding: 0 3px;
	cursor: pointer;
	font-size: 13px;
	color: #555555;
	margin-right: 30px
}

.product01bg .m11_inside_rt .e_loop-1 .p_active {
	color: #fff;
	background-color: #f08200;
	border-radius: 2px
}

.product01bg .m11_inside_rt .e_loop-1 .p_result_item {
	position: relative;
	padding: 3px 20px 3px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-right: 10px
}

.product01bg .m11_inside_rt .e_loop-1 .p_filter_close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 3px;
	font-style: normal;
	font-size: 16px;
	margin-top: -5px;
	cursor: pointer
}

.product01bg .m11_inside_rt .e_loop-1 .multSelect {
	font-size: 13px;
	position: relative
}

.product01bg .m11_inside_rt .e_loop-1 .multSelect .inputWrap {
	width: 100%;
	min-width: 100px;
	min-height: 24px;
	border: 1px solid #DCDFE6;
	border-radius: 3px;
	position: relative;
	cursor: pointer;
	background: white
}

.product01bg .m11_inside_rt .e_loop-1 .multSelect.is-invalid .inputWrap {
	border-color: #dc3545
}

.product01bg .m11_inside_rt .e_loop-1 .multSelect ul {
	padding: 0 5px;
	margin: 0;
	padding-right: 35px
}

.product01bg .m11_inside_rt .e_loop-1 .multSelect ul,
li {
	list-style: none
}

.product01bg .m11_inside_rt .e_loop-1 .multSelect li {
	display: inline-block;
	background: #edf0f3;
	color: #92969c;
	padding: 0px 5px;
	margin: 1px 5px 1px 0;
	border-radius: 5px;
	line-height: 16px
}

.product01bg .m11_inside_rt .e_loop-1 .multSelect .multSelect-option {
	width: 100%;
	border: 1px solid #DCDFE6;
	border-radius: 2px;
	border-top: 0;
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	height: 0;
	opacity: 0;
	z-index: 9;
	background: #fff
}

.product01bg .m11_inside_rt .e_loop-1 .multSelect .multSelect-option>div {
	line-height: 24px;
	cursor: pointer;
	padding: 0 10px
}

.product01bg .m11_inside_rt .e_loop-1 .multSelect .multSelect-option>div.selected {
	color: #f08200
}

.product01bg .m11_inside_rt .e_loop-1 .multSelect .multSelect-option>div:hover {
	color: #f08200;
	background: #f3f6f9
}

.product01bg .m11_inside_rt .e_loop-1 .multSelect .fa-close {
	font-style: normal;
	font-size: 12px;
	padding: 0 5px 0 7px
}

.product01bg .m11_inside_rt .e_loop-1 .multSelect .inputWrap>.fa svg {
	fill: #666;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 0;
	top: calc(50% - 3px)
}

.product01bg .m11_inside_rt .e_loop-1 .multSelect .inputWrap>.fa-down svg {
	transform: rotate(-90deg)
}

.product01bg .m11_inside_rt .e_loop-1 .multSelect .inputWrap>.fa-up svg {
	transform: rotate(90deg)
}

.product01bg .m11_inside_rt .e_loop-1 .multSelect .placeholder {
	line-height: 40px;
	padding-left: 10px;
	color: #aaa;
	position: absolute;
	left: 0;
	top: 0
}

.product01bg .m11_inside_rt .e_loop-1 .p_filter_select {
	width: 110px;
	height: 24px;
	padding: 0;
	border: 1px solid #DCDFE6
}

.product01bg .m11_inside_rt .e_loop-1 .p_normal_start {
	display: inline;
	width: 60px;
	height: 22px
}

.product01bg .m11_inside_rt .e_loop-1 .p_date_start {
	display: inline;
	width: 105px;
	height: 22px
}

.product01bg .m11_inside_rt .e_loop-1 .p_normal_end {
	display: inline;
	width: 60px;
	height: 22px;
	margin-right: 5px
}

.product01bg .m11_inside_rt .e_loop-1 .p_date_end {
	display: inline;
	width: 105px;
	height: 22px;
	margin-right: 5px
}

.product01bg .m11_inside_rt .e_loop-1 .p_split {
	margin: 0 5px
}

.product01bg .m11_inside_rt .e_loop-1 .p_normal {
	margin-right: 16px
}

.product01bg .m11_inside_rt .e_loop-1 {
	background_radio: 1;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	max-width: none;
	display-radio: 1;
	background-color: rgba(255, 255, 255, 0)
}

.product01bg .m11_inside_rt .e_loop-1 .p_loopitem:hover .e_image-3 img {
	transform: scale(1)
}

.product01bg .m11_inside_rt .e_container-2 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: auto;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(229, 229, 229, 1);
	display-radio: flex;
	background-color: rgba(255, 255, 255, 1)
}

.product01bg .m11_inside_rt .e_container-2>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.product01bg .m11_inside_rt .e_container-2:hover .e_text-4 {
	color: #F65857
}

.product01bg .m11_inside_rt .e_image-3 {
	overflow: hidden
}

.product01bg .m11_inside_rt .e_image-3 img {
	width: 100%;
	height: 315px;
	object-fit: contain;
	transform: scale(0.95);
	transition: all .5s ease
}

.product01bg .m11_inside_rt .e_text-4 {
	line-height: 2;
	font_radio: 2;
	font-size: 16px;
	color: rgba(51, 51, 51, 1);
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
	font-weight: bold;
	display-radio: -webkit-box;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.product01bg .m11_inside_rt .e_line-5 {
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: rgba(229, 229, 229, 1);
	margin-bottom: 0px;
	margin-top: 10px;
	padding-bottom: 10px;
	padding-top: 0px;
	min-height: 0px;
	max-height: none;
	height: auto
}

.product01bg .m11_inside_rt .e_richText-6 {
	font_radio: 2;
	font-size: 14px;
	font-family: Microsoft YaHei;
	color: rgba(102, 102, 102, 1);
	line-height: 1.8;
	margin-top: 0px;
	margin-bottom: 10px;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	display-radio: -webkit-box;
	padding-left: 0px;
	margin-left: 10px;
	margin-right: 10px
}

.product01bg .m11_inside_rt .e_container-7 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: calc(100% - 20px);
	display-radio: flex;
	background-color: rgba(255, 255, 255, 1);
	margin-bottom: 20px;
	border-top-left-radius: 20px;
	margin-left: 10px;
	margin-right: 10px;
	justify-content: space-between
}

.product01bg .m11_inside_rt .e_container-7>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.product01bg .m11_inside_rt .e_text-8 {
	line-height: 2.8;
	display-radio: 1;
	font_radio: 2;
	font-size: 22px;
	text-align: left;
	font-weight: bold;
	padding-left: 25px;
	padding-right: 25px;
	background-color: #F65857;
	color: rgba(255, 255, 255, 1);
	border-top-left-radius: 20px
}

.product01bg .m11_inside_rt .e_container-7 .cbox-7-1 {
	align-self: center;
	flex: 0 0 auto
}

.product01bg .m11_inside_rt .e_breadcrumb-9 .p_breadcrumbItem {
	position: relative
}

.product01bg .m11_inside_rt .e_breadcrumb-9 .icon {
	width: 12px;
	height: 12px
}

.product01bg .m11_inside_rt .e_breadcrumb-9 .p_breadcrumbItem:not(:first-child) {
	padding: 0 3px 0 15px
}

.product01bg .m11_inside_rt .e_breadcrumb-9 .p_breadcrumbItem:not(:first-child)::before {
	content: '>';
	position: absolute;
	left: 3px;
	color: #999
}

.product01bg .m11_inside_rt .e_breadcrumb-9 .p_breadcrumb {
	display: flex
}

.product01bg .m11_inside_rt .e_breadcrumb-9 .p_showTitle {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 5px;
	border: 1px solid transparent
}

.product01bg .m11_inside_rt .e_breadcrumb-9 .siblings::after {
	content: '>';
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	transform: rotateZ(90deg);
	cursor: pointer;
	color: #ccc
}

.product01bg .m11_inside_rt .e_breadcrumb-9 .siblings.active {
	border: 1px solid #dee2e6
}

.product01bg .m11_inside_rt .e_breadcrumb-9 .siblings.active::after {
	transform: rotateZ(-90deg)
}

.product01bg .m11_inside_rt .e_breadcrumb-9 .p_slide {
	position: absolute;
	left: 18px;
	min-width: 100%;
	padding: 5px;
	display: none;
	z-index: 999
}

.product01bg .m11_inside_rt .e_breadcrumb-9 .p_sibling {
	display: block;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.product01bg .m11_inside_rt .e_breadcrumb-9 {
	background_radio: 2;
	background-color: rgba(255, 255, 255, 0);
	display-radio: 1;
	margin-right: 20px
}

.product01bg .m11_inside_rt .e_container-7 .cbox-7-0 {
	flex: 0 0 auto;
	align-self: center
}

@media screen and (max-width: 768px) {
	.product01bg .m11_inside_rt .e_loop-1 .p_loopitem {
		flex-grow: 0;
		flex-shrink: 0;
		flex-basis: calc(100% / 1)
	}

	.product01bg .m11_inside_rt .e_container-2 {
		margin-left: 0px;
		margin-right: 0px;
		margin-top: 10px;
		margin-bottom: 10px;
		padding: 15px
	}

	.product01bg .m11_inside_rt .e_container-7 {
		display: none
	}

	.product01bg .m11_inside_rt .e_line-5 {
		display: none
	}

	.product01bg .m11_inside_rt .e_richText-6 {
		display: none
	}
}

@media screen and (min-width: 769px) {
	.product01bg .m11_inside_rt .e_loop-1 .p_loopitem {
		flex-grow: 0;
		flex-shrink: 0;
		flex-basis: calc(100% / 3)
	}

	#c_grid-1646729993185>.p_gridbox>.p_gridCell:nth-child(1) {
		width: 300px !important;
		margin-left: 0% !important;
		margin-right: 30px !important;
		margin-top: 0rem !important;
		margin-bottom: 0rem !important;
		clear: left !important
	}

	#c_grid-1646729993185>.p_gridbox>.p_gridCell:nth-child(2) {
		width: calc(100% - 330px) !important;
		margin-left: 0% !important;
		margin-right: 0px !important;
		margin-top: 0rem !important;
		margin-bottom: 0rem !important;
		clear: inherit !important
	}

	.product01bg .m11_inside_rt .e_line-5 {
		display: none
	}

	.product01bg .m11_inside_rt .e_richText-6 {
		display: none
	}
}


.productdetail01bg .m11_proDetail .list1,
.productdetail01bg .m11_proDetail .list2 {
	background-color: #fff;
	padding-top: 50px;
	padding-left: 50px;
	padding-bottom: 50px;
	padding-right: 50px;
}


.prodetail02bg {
	min-height: 0px;
	padding-top: 30px;
	padding-bottom: 20px;
	padding-left: 0px;
	padding-right: 0px;
	display-radio: 1;
	background-color: rgba(240, 240, 240, 1);
	margin-top: 0px
}

.prodetail02bg .e_container-15 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 50px;
	background-color: rgba(255, 255, 255, 1);
	padding-top: 40px;
	padding-bottom: 30px;
	padding-left: 40px;
	padding-right: 40px;
	display-radio: flex
}

.prodetail02bg .e_container-15>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.prodetail02bg .e_form-26 {
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	padding-right: 0px;
	padding-left: 0px;
	padding-top: 0px;
	margin-top: 20px
}

.prodetail02bg .e_input-27 .p_phoneCode {
	width: 90px;
	margin-right: 10px
}

.prodetail02bg .e_input-28 .p_phoneCode {
	width: 90px;
	margin-right: 10px
}

.prodetail02bg .e_input-29 .p_phoneCode {
	width: 90px;
	margin-right: 10px
}

.prodetail02bg .e_input-29 {
	bg-radio: 1;
	border-radio: 1;
	font-radio: 2;
	max-width: 96%
}

.prodetail02bg .e_input-29 .s_label {
	font-radio: 2
}

.prodetail02bg .e_input-29 .s_input {
	font-radio: 1
}

.prodetail02bg .e_textarea-30 .p_required {
	vertical-align: middle;
	font-size: 1.4em;
	line-height: 100%;
	position: relative;
	font-weight: bold;
	top: 0.15em;
	padding-left: 5px
}

.prodetail02bg .e_formBtn-31 {
	display: block;
	position: relative;
	overflow: hidden;
	text-align: center;
	box-sizing: border-box;
	border-radius: 4px;
	padding: 8px;
	margin-left: auto;
	background_radio: 2;
	border_radio: 1;
	font_radio: 2;
	font-size: 14px;
	font-family: Microsoft YaHei;
	background-color: #F65857;
	padding-top: 12px;
	padding-bottom: 12px;
	height: auto;
	radius_radio: 1;
	margin-top: 20px;
	margin-bottom: 40px;
	margin-right: auto;
	display-radio: block;
	width: auto;
	color: #fff;
}

.prodetail02bg .e_formBtn-31 span {
	display: block;
	width: 100%;
	position: relative;
	z-index: 1;
	outline: 0;
	margin: 0px;
	overflow: hidden
}

.prodetail02bg .e_formBtn-31::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	transition: all .3s;
	z-index: 0;
	opacity: 0;
	top: 0;
	left: 0px
}

.prodetail02bg .e_formBtn-31:hover::after {
	opacity: 1
}

.prodetail02bg .e_formBtn-31:before {
	content: "";
	position: absolute;
	display: block;
	transition: all .6s;
	width: 100%;
	height: 0;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	padding-top: 100%;
	transform: translateX(-50%) translateY(-50%)
}

.prodetail02bg .e_container-32 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%
}

.prodetail02bg .e_container-32>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.prodetail02bg .e_input-33 .p_phoneCode {
	width: 90px;
	margin-right: 10px
}

.prodetail02bg .e_input-33 {
	bg-radio: 1;
	border-radio: 1;
	font-radio: 2;
	max-width: 96%
}

.prodetail02bg .e_input-33 .s_label {
	font-radio: 2
}

.prodetail02bg .e_input-33 .s_input {
	font-radio: 1
}

.prodetail02bg .e_input-28 {
	max-width: 96%
}

.prodetail02bg .e_input-27 {
	max-width: 96%;
	display-radio: 1
}


.prodetail02bg .e_text-34 {
	line-height: normal;
	font_radio: 2;
	font-size: 34px;
	text-align: center;
	color: rgba(51, 51, 51, 1);
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
	display-radio: 1;
	font-weight: bold;
	width: auto;
	padding-bottom: 10px
}

.prodetail02bg .e_formBtn-31:hover {
	background-color: rgba(233, 90, 8, 1)
}

@media screen and (max-width: 768px) {
	.prodetail02bg .e_text-34 {
		font_radio: 2;
		font-size: 30px;
		display-radio: 1
	}

	.prodetail02bg {
		display-radio: 1;
		margin-top: 0px;
		padding-top: 0px
	}

	.prodetail02bg .e_container-32 {
		display-radio: 1;
		flex-direction: column
	}
}

.form-control {
	display: block;
	width: 100%;
	height: calc(1.5em + 0.75rem + 15px);
	padding: 0.375rem 0.8rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fbfbfb;
	background-clip: padding-box;
	border: 2px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	box-shadow: none !important;
}

.alert,
.form-group {
	margin-bottom: 20px;
}


.productdetail01bg .m11_inside_rt .e_container-22 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	padding-bottom: 15px;
	margin-bottom: 25px;
	border-bottom-style: solid;
	border-bottom-width: 2px;
	border-bottom-color: rgba(51, 51, 51, 1)
}

.productdetail01bg .m11_inside_rt .e_container-22>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.productdetail01bg .m11_inside_rt .e_container-23 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%
}

.productdetail01bg .m11_inside_rt .e_container-23>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.productdetail01bg .m11_inside_rt .e_text-24 {
	line-height: 2.5;
	display-radio: 1;
	font_radio: 2;
	font-size: 14px;
	color: rgba(136, 136, 136, 1);
	font-weight: bold
}

.productdetail01bg .m11_inside_rt .e_loop_sub-25 {
	display: flex;
	flex-wrap: wrap
}

.productdetail01bg .m11_inside_rt .e_loop_sub-25 .p_loopItem {
	position: relative;
	flex: 0 0 33.3%
}

.productdetail01bg .m11_inside_rt .e_text-26 {
	line-height: 1.5;
	display-radio: 1;
	font_radio: 2;
	font-size: 14px;
	color: #F65857
}

.productdetail01bg .m11_inside_rt .e_container-23 .cbox-23-0 {
	flex: 0 0 auto;
	align-self: center
}

.productdetail01bg .m11_inside_rt .e_container-23 .cbox-23-1 {
	align-self: center
}

.productdetail01bg .m11_inside_rt .e_container-27 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	display-radio: flex;
	padding-top: 3%;
	padding-bottom: 3%;
	margin-top: 3%;
	margin-bottom: 5%;
	border-top-style: dashed;
	border-top-width: 1px;
	border-top-color: rgba(221, 221, 221, 1);
	border-bottom-style: dashed;
	border-bottom-width: 1px;
	border-bottom-color: rgba(221, 221, 221, 1)
}

.productdetail01bg .m11_inside_rt .e_container-27>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.productdetail01bg .m11_inside_rt .e_text-30 {
	line-height: 1.5;
	display-radio: 1;
	font_radio: 2;
	font-size: 18px;
	font-weight: bold
}

.productdetail01bg .m11_inside_rt .e_text-31 {
	line-height: normal;
	display-radio: 1;
	font_radio: 2;
	font-size: 26px;
	font-weight: normal;
	font-family: Impact;
	color: #F65857
}

.productdetail01bg .m11_inside_rt .e_container-27 .cbox-27-0 {
	align-self: center;
	margin-right: 5px;
	flex: 0 0 auto
}

.productdetail01bg .m11_inside_rt .e_container-27 .cbox-27-1 {
	align-self: center;
	margin-right: 5px;
	flex: 0 0 auto
}

.productdetail01bg .m11_inside_rt .e_container-27 .cbox-27-2 {
	align-self: center;
	flex: 0 0 auto
}

.productdetail01bg .m11_inside_rt .e_html-33 {
	display-radio: 1;
	background_radio: 1;
	min-height: 0px
}

.productdetail01bg .m11_inside_rt .e_container-34 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%
}

.productdetail01bg .m11_inside_rt .e_container-34>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.productdetail01bg .m11_inside_rt .e_button-36 {
	display: flex;
	position: relative;
	overflow: hidden;
	text-align: center;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 160px;
	padding: 10px 8px;
	background_radio: 2;
	border_radio: 2;
	font_radio: 1;
	radius_radio: 1;
	display-radio: flex;
	max-height: none;
	height: auto;
	background-color: #F65857;
	border-style: solid;
	border-width: 1px;
	border-color: #F65857
}

.productdetail01bg .m11_inside_rt .cp_xj_icon {
	fill: #fff;
	margin-right: 5px
}

.productdetail01bg .m11_inside_rt .e_button-36 span {
	display: block;
	width: auto;
	position: relative;
	z-index: 1;
	font-size: 16px;
	outline: 0;
	font-weight: bold;
	margin: 0px;
	overflow: hidden;
	color: #fff;
}

.productdetail01bg .m11_inside_rt .e_button-36::after {
	content: "";
	position: absolute;
	width: 0;
	height: 100%;
	transition: all .3s;
	z-index: 0;
	opacity: 0;
	top: 0;
	left: 0px
}

.productdetail01bg .m11_inside_rt .e_button-36:hover::after {
	opacity: 1
}

.productdetail01bg .m11_inside_rt .e_button-36:hover {
	background-color: #e95a08;
	border-style: solid;
	border-color: #e95a08
}

.productdetail01bg .m11_inside_rt .e_button-37 {
	display: flex;
	position: relative;
	overflow: hidden;
	text-align: center;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 160px;
	padding: 10px 8px;
	background_radio: 2;
	border_radio: 2;
	font_radio: 1;
	radius_radio: 1;
	display-radio: flex;
	max-height: none;
	height: auto;
	background-color: rgba(85, 85, 85, 1);
	border-style: solid;
	border-width: 1px;
	border-color: rgba(85, 85, 85, 1)
}

.productdetail01bg .m11_inside_rt .e_button-37 span {
	display: block;
	width: auto;
	position: relative;
	z-index: 1;
	font-size: 16px;
	outline: 0;
	font-weight: bold;
	margin: 0px;
	overflow: hidden;
	color: #fff;
}

.productdetail01bg .m11_inside_rt .e_button-37::after {
	content: "";
	position: absolute;
	width: 0;
	height: 100%;
	transition: all .3s;
	z-index: 0;
	opacity: 0;
	top: 0;
	left: 0px
}

.productdetail01bg .m11_inside_rt .e_button-37:hover::after {
	opacity: 1
}

.productdetail01bg .m11_inside_rt .e_button-37:hover {
	background-color: rgba(51, 51, 51, 1);
	border-style: solid;
	border-color: rgba(51, 51, 51, 1)
}

.productdetail01bg .m11_inside_rt .e_container-34 .cbox-34-0 {
	margin-right: 3%;
	flex: 0 0 auto
}

.productdetail01bg .m11_inside_rt .e_container-34 .cbox-34-1 {
	flex: 0 0 auto
}

.productdetail01bg .m11_inside_rt .btn:focus {
	box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 0%)
}

.productdetail01bg .m11_inside_rt .e_container-38 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	display-radio: flex;
	background-color: rgba(255, 255, 255, 1);
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top: 0px;
	margin-right: 0px;
	width: auto
}

.productdetail01bg .m11_inside_rt .e_container-38>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.productdetail01bg .m11_inside_rt .e_text-4 {
	font-size: 30px;
	text-align: left;
}

.productdetail01bg .m11_inside_rt .e_text-26 a,
.productdetail01bg .m11_inside_rt .e_text-31 a {
	color: #F65857;
}



.device01bg {
	min-height: 0px;
	padding-top: 50px;
	padding-bottom: 50px;
	display-radio: 1
}

.device01bg .e_container-1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 92%;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
	padding-right: 0px;
	display-radio: flex;
	padding-top: 0px;
	margin-top: 20px;
	padding-left: 0px
}

.device01bg .e_container-1>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.device01bg .s_title.response-transition,
.device01bg .s_line.response-transition {
	transform: translateY(0px);
	opacity: 1
}

.device01bg .noAni .s_title,
.device01bg .noAni .s_line {
	transform: translateY(0px);
	opacity: 1
}

.device01bg .e_loop-14 .p_list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	max-width: 100%
}

.device01bg .e_loop-14 .p_loopitem {
	flex: 0 0 33.3%;
	position: relative
}

.device01bg .e_loop-14 .p_page {
	text-align: center
}

.device01bg .e_loop-14 .p_filter_wrapper {
	width: 100%;
	font-size: 13px
}

.device01bg .e_loop-14 .p_kv_wrapper {
	display: flex;
	flex-wrap: nowrap;
	line-height: 40px;
	margin: 15px 0
}

.device01bg .e_loop-14 .p_filter_key {
	width: 70px;
	overflow: hidden;
	margin-right: 10px;
	font-weight: bold;
	color: #333333;
	font-size: 12px
}

.device01bg .e_loop-14 .p_v_item {
	display: inline-block;
	padding: 0 3px;
	cursor: pointer;
	font-size: 13px;
	color: #555555;
	margin-right: 30px
}

.device01bg .e_loop-14 .p_active .p_fbutton {
	color: #fff;
	background-color: cornflowerblue
}

.device01bg .e_loop-14 .p_result_item {
	position: relative;
	padding: 3px 20px 3px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-right: 10px
}

.device01bg .e_loop-14 .p_filter_close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 3px;
	font-style: normal;
	font-size: 16px;
	margin-top: -5px;
	cursor: pointer
}

.device01bg .e_loop-14 .multSelect {
	font-size: 13px;
	position: relative
}

.device01bg .e_loop-14 .multSelect .inputWrap {
	width: 100%;
	min-width: 100px;
	min-height: 24px;
	border: 1px solid #DCDFE6;
	border-radius: 3px;
	position: relative;
	cursor: pointer;
	background: white
}

.device01bg .e_loop-14 .multSelect.is-invalid .inputWrap {
	border-color: #dc3545
}

.device01bg .e_loop-14 .multSelect ul {
	padding: 0 5px;
	margin: 0;
	padding-right: 35px
}

.device01bg .e_loop-14 .multSelect ul,
li {
	list-style: none
}

.device01bg .e_loop-14 .multSelect li {
	display: inline-block;
	background: #edf0f3;
	color: #92969c;
	padding: 0px 5px;
	margin: 1px 5px 1px 0;
	border-radius: 5px;
	line-height: 16px
}

.device01bg .e_loop-14 .multSelect .multSelect-option {
	width: 100%;
	border: 1px solid #DCDFE6;
	border-radius: 2px;
	border-top: 0;
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	height: 0;
	opacity: 0;
	z-index: 9;
	background: #fff
}

.device01bg .e_loop-14 .multSelect .multSelect-option>div {
	line-height: 24px;
	cursor: pointer;
	padding: 0 10px
}

.device01bg .e_loop-14 .multSelect .multSelect-option>div.selected {
	color: #409eff
}

.device01bg .e_loop-14 .multSelect .multSelect-option>div:hover {
	color: #409eff;
	background: #f3f6f9
}

.device01bg .e_loop-14 .multSelect .fa-close {
	font-style: normal;
	font-size: 12px;
	padding: 0 5px 0 7px
}

.device01bg .e_loop-14 .multSelect .inputWrap>.fa svg {
	fill: #666;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 0;
	top: calc(50% - 3px)
}

.device01bg .e_loop-14 .multSelect .inputWrap>.fa-down svg {
	transform: rotate(-90deg)
}

.device01bg .e_loop-14 .multSelect .inputWrap>.fa-up svg {
	transform: rotate(90deg)
}

.device01bg .e_loop-14 .multSelect .placeholder {
	line-height: 40px;
	padding-left: 10px;
	color: #aaa;
	position: absolute;
	left: 0;
	top: 0
}

.device01bg .e_loop-14 .p_normal_start {
	display: inline;
	width: 60px;
	height: 22px
}

.device01bg .e_loop-14 .p_date_start {
	display: inline;
	width: 105px;
	height: 22px
}

.device01bg .e_loop-14 .p_normal_end {
	display: inline;
	width: 60px;
	height: 22px;
	margin-right: 5px
}

.device01bg .e_loop-14 .p_date_end {
	display: inline;
	width: 105px;
	height: 22px;
	margin-right: 5px
}

.device01bg .e_loop-14 .p_split {
	margin: 0 5px
}

.device01bg .e_loop-14 .p_normal {
	margin-right: 16px
}

.device01bg .e_loop-14 .p_fbutton {
	background-color: #007bff;
	border: 1px solid #409EFF;
	text-decoration: none;
	color: white;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}

.device01bg .e_loop-14 .input-check,
.device01bg .e_loop-14 .input-radio {
	margin: 0 5px;
	vertical-align: text-top
}

.device01bg .e_loop-14 .position-left {
	display: flex
}

.device01bg .e_loop-14 .position-right {
	display: flex;
	flex-direction: row-reverse
}

.device01bg .e_loop-14 .position-bottom {
	display: flex;
	flex-direction: column-reverse
}

.device01bg .e_loop-14 .p_mbutton {
	border: 1px solid #409EFF;
	text-decoration: none;
	color: #409EFF;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}

.device01bg .e_loop-14 .p_mbutton:after {
	content: "";
	display: none;
	width: 16px;
	height: 16px;
	background-color: #409eff;
	-webkit-transform: skewY(-45deg);
	transform: skewY(360deg);
	position: absolute;
	bottom: 0px;
	right: 0;
	z-index: 1
}

.device01bg .e_loop-14 .p_mbutton::before {
	content: "";
	display: none;
	width: 6px;
	height: 9px;
	border-right: #ffffff solid 2px;
	border-bottom: #ffffff solid 2px;
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
	position: absolute;
	bottom: 5px;
	right: 4px;
	z-index: 2
}

.device01bg .e_loop-14 .p_active .p_mbutton::before {
	display: block
}

.device01bg .e_loop-14 .p_active .p_mbutton::after {
	display: block
}

.device01bg .e_loop-14 {
	margin-top: 20px;
	display-radio: 1
}

.device01bg .e_container-15 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: 10px;
	margin-right: 10px;
	width: auto;
	margin-bottom: 20px;
	padding-top: 15px;
	background-color: rgba(245, 245, 245, 1);
	height: calc(100% - 20px);
	transition: all ease .5s;
	display-radio: flex;
	padding-bottom: 45px
}

.device01bg .e_image-16::after {
	content: '+';
	position: absolute;
	left: 50%;
	top: 60%;
	transform: translate(-50%, -50%);
	z-index: 10;
	color: #fff;
	height: 50px;
	width: 50px;
	border-radius: 100%;
	border: 2px solid #fff;
	text-align: center;
	line-height: 40px;
	font-size: 24px;
	vertical-align: middle;
	transition: all ease .35s;
	opacity: 0;
	pointer-events: none
}

.device01bg .p_item:hover>.e_image-16::after {
	opacity: 1;
	top: 50%
}

.device01bg .e_container-15>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 230px
}

.device01bg .e_image-16 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity ease .3s, transform 300ms cubic-bezier(.2, 0, .1, 1)
}

.device01bg .e_image-16 {
	max-height: none;
	height: 100%;
	width: 100%;
	background: rgb(0 0 0 / 0%);
	transition: all ease .5s;
	display-radio: 1;
	background-color: rgb(0 0 0 / 0%)
}

.device01bg .p_item:hover>.e_image-16 {}

.device01bg .lightense-wrap {
	height: 100%
}

.device01bg .e_html-17 {
	min-height: 0px;
	display-radio: 1;
	background_radio: 1
}

.device01bg .e_text-18 {
	line-height: normal;
	font_radio: 2;
	font-size: 36px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	margin-top: 0px;
	color: rgba(51, 51, 51, 1);
	text-align: center;
	display-radio: 1;
}



.news01bg {
	min-height: 300px;
	padding-top: 2%;
	padding-bottom: 3%;
	background-color: rgba(255, 255, 255, 1);
	display-radio: 1
}

.news01bg .e_loop-1 .p_list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	/*解决无缝滚动在循环体多列展示问题  */
	max-width: 100%
		/* 解决无缝滚动在循环体多列展示问题 */
}

.news01bg .e_loop-1 .p_loopitem {
	flex: 0 0 33.3%;
	position: relative
}

.news01bg .e_loop-1 .p_page {
	text-align: center
}

.news01bg .e_loop-1 .p_filter_wrapper {
	width: 100%;
	font-size: 13px
}

.news01bg .e_loop-1 .p_kv_wrapper {
	display: flex;
	flex-wrap: nowrap;
	line-height: 40px;
	margin: 15px 0
}

.news01bg .e_loop-1 .p_filter_key {
	/* min-width:80px;
 */
	width: 70px;
	overflow: hidden;
	margin-right: 10px;
	font-weight: bold;
	color: #333333;
	font-size: 12px
}

.news01bg .e_loop-1 .p_v_item {
	display: inline-block;
	padding: 0 3px;
	cursor: pointer;
	font-size: 13px;
	color: #555555;
	margin-right: 30px
}

.news01bg .e_loop-1 .p_active .p_fbutton {
	color: #fff;
	background-color: cornflowerblue
		/* border-radius:2px;
 */
}

.news01bg .e_loop-1 .p_result_item {
	position: relative;
	padding: 3px 20px 3px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-right: 10px
}

.news01bg .e_loop-1 .p_filter_close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 3px;
	font-style: normal;
	font-size: 16px;
	margin-top: -5px;
	cursor: pointer
}

.news01bg .e_loop-1 .p_s_option {}

.news01bg .e_loop-1 .multSelect {
	font-size: 13px;
	position: relative
}

.news01bg .e_loop-1 .multSelect .inputWrap {
	width: 100%;
	min-width: 100px;
	min-height: 24px;
	border: 1px solid #DCDFE6;
	border-radius: 3px;
	position: relative;
	cursor: pointer;
	background: white
}

.news01bg .e_loop-1 .multSelect.is-invalid .inputWrap {
	border-color: #dc3545
}

.news01bg .e_loop-1 .multSelect ul {
	padding: 0 5px;
	margin: 0;
	padding-right: 35px
}

.news01bg .e_loop-1 .multSelect ul,
li {
	list-style: none
}

.news01bg .e_loop-1 .multSelect li {
	display: inline-block;
	background: #edf0f3;
	color: #92969c;
	padding: 0px 5px;
	margin: 1px 5px 1px 0;
	border-radius: 5px;
	line-height: 16px
}

.news01bg .e_loop-1 .multSelect .multSelect-option {
	width: 100%;
	border: 1px solid #DCDFE6;
	border-radius: 2px;
	border-top: 0;
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	height: 0;
	opacity: 0;
	z-index: 9;
	background: #fff
}

.news01bg .e_loop-1 .multSelect .multSelect-option>div {
	line-height: 24px;
	cursor: pointer;
	padding: 0 10px
}

.news01bg .e_loop-1 .multSelect .multSelect-option>div.selected {
	color: #409eff
}

.news01bg .e_loop-1 .multSelect .multSelect-option>div:hover {
	color: #409eff;
	background: #f3f6f9
}

.news01bg .e_loop-1 .multSelect .fa-close {
	font-style: normal;
	font-size: 12px;
	padding: 0 5px 0 7px
}

.news01bg .e_loop-1 .multSelect .inputWrap>.fa svg {
	fill: #666;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 0;
	top: calc(50% - 3px)
}

.news01bg .e_loop-1 .multSelect .inputWrap>.fa-down svg {
	transform: rotate(-90deg)
}

.news01bg .e_loop-1 .multSelect .inputWrap>.fa-up svg {
	transform: rotate(90deg)
}

.news01bg .e_loop-1 .multSelect .placeholder {
	line-height: 40px;
	padding-left: 10px;
	color: #aaa;
	position: absolute;
	left: 0;
	top: 0
}

/* .news01bg .e_loop-1 .p_filter_close::before {
	content: "\2716";
}
*/
/* .news01bg .e_loop-1 .p_filter_select {
	width: 110px;
	height: 24px;
	padding: 0;
	border: 1px solid #DCDFE6;
}
*/
.news01bg .e_loop-1 .p_normal_start {
	display: inline;
	width: 60px;
	height: 22px
}

.news01bg .e_loop-1 .p_date_start {
	display: inline;
	width: 105px;
	height: 22px
}

.news01bg .e_loop-1 .p_normal_end {
	display: inline;
	width: 60px;
	height: 22px;
	margin-right: 5px
}

.news01bg .e_loop-1 .p_date_end {
	display: inline;
	width: 105px;
	height: 22px;
	margin-right: 5px
}

.news01bg .e_loop-1 .p_split {
	margin: 0 5px
}

.news01bg .e_loop-1 .p_normal {
	margin-right: 16px
}

.news01bg .e_loop-1 .p_fbutton {
	background-color: #007bff;
	border: 1px solid #409EFF;
	text-decoration: none;
	color: white;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}

.news01bg .e_loop-1 .input-check,
.news01bg .e_loop-1 .input-radio {
	margin: 0 5px;
	vertical-align: text-top
}

.news01bg .e_loop-1 .position-left {
	display: flex
}

.news01bg .e_loop-1 .position-right {
	display: flex;
	flex-direction: row-reverse
}

.news01bg .e_loop-1 .position-top {
	/* display:flex;
 */
}

.news01bg .e_loop-1 .position-bottom {
	display: flex;
	flex-direction: column-reverse
}

.news01bg .e_loop-1 .p_mbutton {
	border: 1px solid #409EFF;
	text-decoration: none;
	color: #409EFF;
	font-size: 14px;
	text-align: center;
	padding: 10px 25px;
	position: relative;
	overflow: hidden
}

.news01bg .e_loop-1 .p_mbutton:after {
	content: "";
	display: none;
	width: 16px;
	height: 16px;
	background-color: #409eff;
	-webkit-transform: skewY(-45deg);
	transform: skewY(360deg);
	position: absolute;
	bottom: 0px;
	right: 0;
	z-index: 1
}

.news01bg .e_loop-1 .p_mbutton::before {
	content: "";
	display: none;
	width: 6px;
	height: 9px;
	border-right: #ffffff solid 2px;
	border-bottom: #ffffff solid 2px;
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
	position: absolute;
	bottom: 5px;
	right: 4px;
	z-index: 2
}

.news01bg .e_loop-1 .p_active .p_mbutton::before {
	display: block
}

.news01bg .e_loop-1 .p_active .p_mbutton::after {
	display: block
}

.news01bg .e_loop-1 {
	width: 92%;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
	display-radio: 1
}

.news01bg .e_container-2 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	padding-top: 0px;
	margin-bottom: 25px;
	align-items: center;
	background-color: rgba(242, 242, 242, 1);
	transition: all .5s ease;
	margin-top: 25px
}

.news01bg .e_container-2:hover {
	box-shadow: 0 23px 90px -5px rgb(29 56 72 / 17%);
	background: #fff
}

.news01bg .e_container-2:hover .e_image-3 img {
	transform: scale(1.1)
}

.news01bg .e_container-2:hover .e_text-11 {
	color: #F65857
}

.news01bg .e_container-2:hover .e_timeFormat-10 {
	color: #F65857
}

.news01bg .e_container-2:hover .e_timeFormat-9 {
	color: #F65857
}

.news01bg .e_container-2:hover .e_text-8 {
	color: #F65857
}

.news01bg .e_container-2:hover .e_timeFormat-6 {
	color: #F65857
}

.news01bg .e_container-2 .p_item {
	flex: 1;
	max-width: 100%
}

.news01bg .e_container-2 .cbox-2-0 {
	flex: 0 0 26%;
	margin-top: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	margin-bottom: 0px;
	align-items: center
}

.news01bg .e_container-2 .cbox-2-1 {
	flex: 0 0 74%
}

.e_container-7:hover .news01bg .e_image-3 img {
	transform: scale(1.1)
}

.news01bg .e_image-3 {
	overflow: hidden;
	display-radio: 1;
	height: 40
}

.news01bg .e_image-3 a {
	display: block;
	width: 100%;
	padding-bottom: 65%;
	position: relative;
	height: 0;
	overflow: hidden
}

.news01bg .e_image-3 img {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	transform: scale(1);
	transition: all .5s ease
}

.news01bg .e_container-4 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	padding-top: 5%;
	padding-left: 5%;
	padding-bottom: 5%;
	padding-right: 5%;
	justify-content: space-between
}

.news01bg .e_container-4 .p_item {
	flex: 1;
	max-width: 100%
}

.news01bg .e_container-4 .cbox-4-0 {
	padding-left: 20px;
	padding-right: 20px;
	flex: 0 0 74%
}

.news01bg .e_container-4 .cbox-4-1 {
	flex: 0 0 auto
}

.news01bg .e_container-5 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%
}

.news01bg .e_container-5>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.e_container-7:hover .news01bg .e_timeFormat-6 {
	color: #004ba5
}

.news01bg .e_timeFormat-6 {
	min-height: 20px;
	font_radio: 2;
	padding-left: 0px;
	font-size: 56px;
	color: rgba(102, 102, 102, 1);
	line-height: 1.2;
	transition: all .5s ease;
	font-family: Impact;
	text-align: center
}

.news01bg .e_container-7 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%
}

.news01bg .e_container-7>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.e_container-7:hover .news01bg .e_text-8 {
	color: #F65857
}

.news01bg .e_text-8 {
	line-height: 1.6;
	font_radio: 2;
	transition: all .5s ease;
	font-size: 18px;
	font-family: Arial;
	color: rgba(102, 102, 102, 1);
	font-weight: bold;
	padding-left: 5px;
	padding-right: 5px
}

.e_container-7:hover .news01bg .e_timeFormat-9 {
	color: #F65857
}

.news01bg .e_timeFormat-9 {
	min-height: 20px;
	font_radio: 2;
	padding-left: 0px;
	font-size: 16px;
	color: rgba(102, 102, 102, 1);
	line-height: 1.6;
	transition: all .5s ease;
	font-family: Arial;
	font-weight: bold
}

.news01bg .e_loop-1 .p_loopitem {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: calc(100% / 1);
}

.news01bg .e_text-11 {
	color: rgba(51, 51, 51, 1);
	padding-bottom: 15px;
	padding-top: 15px;
	margin-top: 0px;
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	font_radio: 2;
	line-height: 1;
	transition: all .2s ease;
}

.news01bg .e_text-12 {
	font_radio: 2;
	font-size: 14px;
	color: rgba(112, 112, 112, 1);
	line-height: 1.6;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news01bg .e_timeFormat-10 {
	min-height: 20px;
	font_radio: 2;
	padding-left: 0px;
	font-size: 16px;
	color: rgba(102, 102, 102, 1);
	line-height: 1.6;
	transition: all .5s ease;
	font-family: Arial;
	font-weight: bold;
}


.service01bg {
	min-height: 300px;
	display-radio: 1;
	padding-top: 3%;
	padding-bottom: 3%
}

.service01bg .e_container-1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	max-width: 1300px;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	display-radio: flex
}

.service01bg .e_container-1 .p_item {
	flex: 1;
	max-width: 100%
}

.service01bg .e_container-4 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	padding-top: 0px;
	margin-top: 0px;
	display-radio: flex
}

.service01bg .e_container-4 .p_item {
	flex: 1;
	max-width: 100%
}

.service01bg .e_image-5 {
	overflow: hidden;
	display-radio: 1
}

.service01bg .e_image-5 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.service01bg .e_container-6 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	background-color: #F65857;
	margin-top: 0px;
	padding-left: 80px;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-right: 80px;
	display-radio: flex;
	margin-left: auto;
	margin-right: -150px
}

.service01bg .e_container-6 .p_item {
	flex: 1;
	max-width: 100%
}

.service01bg .e_text-7 {
	font_radio: 2;
	font-size: 30px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: rgba(255, 255, 255, 1);
	line-height: 1.8;
	display-radio: 1
}

.service01bg .e_text-8 {
	font_radio: 2;
	font-size: 22px;
	font-family: Microsoft YaHei;
	color: rgba(255, 255, 255, 1);
	font-weight: bold;
	line-height: 1.8
}

.service01bg .e_line-9 {
	border-top-style: solid;
	border-top-width: 5px;
	border-top-color: rgba(255, 255, 255, 1);
	max-width: 30px;
	margin-left: 0px;
	display-radio: 1;
	height: auto
}

.service01bg .e_text-10 {
	position: static;
	width: auto;
	max-width: none;
	min-width: 0px;
	height: auto;
	max-height: none;
	min-height: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	z-index: auto;
	font_radio: 2;
	font-size: 16px;
	font-family: Microsoft YaHei;
	color: rgba(255, 255, 255, 1);
	line-height: 2;
	display-radio: 1
}

.service01bg .e_container-4 .cbox-4-1 {
	align-self: center;
	flex: 0 0 58%
}

.service01bg .e_container-4 .cbox-4-0 {
	align-self: center;
	z-index: 1
}

@media screen and (max-width: 768px) {
	.service01bg .e_container-4 {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		padding-top: 0px;
		margin-top: 40px
	}

	.service01bg .e_container-6 {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		margin-left: auto;
		margin-top: 0px;
		padding-left: 25px;
		padding-top: 25px;
		padding-right: 25px;
		background-color: rgba(1, 58, 117, 1);
		padding-bottom: 25px;
		display-radio: flex;
		margin-right: auto
	}

	.service01bg .e_container-6 .cbox-6-0 {
		padding-right: 0px;
		margin-right: 0px;
		margin-left: 0px;
		padding-left: 0px
	}

	.service01bg .e_text-7 {
		font_radio: 1;
		display-radio: 1
	}

	.service01bg .e_text-8 {
		font_radio: 2;
		display-radio: 1;
		font-size: 20px
	}
}



.message01bg {
	min-height: 0px;
	background-color: rgba(239, 241, 245, 1);
	padding-top: 15px;
	padding-bottom: 15px;
	display-radio: 1
}

.message01bg .e_container-1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 92%;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
	display-radio: flex
}

.message01bg .e_container-1>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.message01bg .e_breadcrumb-2 .p_breadcrumbItem {
	position: relative
}

.message01bg .e_breadcrumb-2 .icon {
	width: 12px;
	height: 12px
}

.message01bg .e_breadcrumb-2 .p_breadcrumbItem:not(:first-child) {
	padding: 0 3px 0 15px
}

.message01bg .e_breadcrumb-2 .p_breadcrumbItem:not(:first-child)::before {
	content: '>';
	position: absolute;
	left: 3px;
	color: #999
}

.message01bg .e_breadcrumb-2 .p_breadcrumb {
	display: flex
}

.message01bg .e_breadcrumb-2 .p_showTitle {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 5px;
	border: 1px solid transparent
}

.message01bg .e_breadcrumb-2 .siblings::after {
	content: '>';
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	transform: rotateZ(90deg);
	cursor: pointer;
	color: #ccc
}

.message01bg .e_breadcrumb-2 .siblings.active {
	border: 1px solid #dee2e6
}

.message01bg .e_breadcrumb-2 .siblings.active::after {
	transform: rotateZ(-90deg)
}

.message01bg .e_breadcrumb-2 .p_slide {
	position: absolute;
	left: 18px;
	min-width: 100%;
	padding: 5px;
	display: none;
	z-index: 999
}

.message01bg .e_breadcrumb-2 .p_sibling {
	display: block;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.message01bg .e_breadcrumb-2 {
	background_radio: 2;
	background-color: rgba(255, 255, 255, 0)
}

.message01bg .e_loop-3 .p_list {
	display: flex;
	flex-wrap: wrap
}

.message01bg .e_loop-3 .p_loopitem {
	flex: 0 0 33.3%;
	position: relative
}

.message01bg .e_loop-3 .p_page {
	text-align: center
}

.message01bg .e_loop-3 .p_filter_wrapper {
	width: 100%
}

.message01bg .e_loop-3 .p_kv_wrapper {
	display: flex;
	flex-wrap: nowrap
}

.message01bg .e_loop-3 .p_filter_key {
	line-height: 40px;
	margin-right: 10px;
	font-weight: bold
}

.message01bg .e_loop-3 .p_v_item {
	display: inline-block;
	margin: 0 5px;
	line-height: 40px;
	cursor: pointer
}

.message01bg .e_loop-3 .p_active {
	color: blueviolet
}

.message01bg .e_loop-3 .p_result_item {
	position: relative;
	padding: 3px 20px 3px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-right: 10px
}

.message01bg .e_loop-3 .p_filter_close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 3px;
	font-style: normal;
	font-size: 16px;
	margin-top: -5px;
	cursor: pointer
}

.message01bg .e_loop-3 .multSelect {
	font-size: 14px;
	position: relative
}

.message01bg .e_loop-3 .multSelect .inputWrap {
	width: 100%;
	min-width: 100px;
	min-height: 40px;
	border: 1px solid #ccc;
	border-radius: 3px;
	position: relative;
	cursor: pointer
}

.message01bg .e_loop-3 .multSelect.is-invalid .inputWrap {
	border-color: #dc3545
}

.message01bg .e_loop-3 .multSelect ul {
	padding: 0 5px;
	margin: 0;
	padding-right: 35px
}

.message01bg .e_loop-3 .multSelect ul,
li {
	list-style: none
}

.message01bg .e_loop-3 .multSelect li {
	display: inline-block;
	background: #edf0f3;
	color: #92969c;
	padding: 3px 5px;
	margin: 5px 5px 5px 0;
	border-radius: 5px
}

.message01bg .e_loop-3 .multSelect .multSelect-option {
	width: 100%;
	border: 1px solid #ccc;
	border-top: 0;
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	height: 0;
	opacity: 0;
	z-index: 9;
	background: #fff
}

.message01bg .e_loop-3 .multSelect .multSelect-option>div {
	line-height: 35px;
	cursor: pointer;
	padding: 0 10px
}

.message01bg .e_loop-3 .multSelect .multSelect-option>div.selected {
	color: #409eff
}

.message01bg .e_loop-3 .multSelect .multSelect-option>div:hover {
	color: #409eff;
	background: #f3f6f9
}

.message01bg .e_loop-3 .multSelect .fa-close {
	font-style: normal;
	font-size: 12px;
	padding: 0 5px 0 7px
}

.message01bg .e_loop-3 .multSelect .inputWrap>.fa svg {
	fill: #666;
	width: 16px;
	height: 16px;
	position: absolute;
	right: 0;
	top: calc(50% - 8px)
}

.message01bg .e_loop-3 .multSelect .inputWrap>.fa-down svg {
	transform: rotate(-90deg)
}

.message01bg .e_loop-3 .multSelect .inputWrap>.fa-up svg {
	transform: rotate(90deg)
}

.message01bg .e_loop-3 .multSelect .placeholder {
	line-height: 40px;
	padding-left: 10px;
	color: #aaa;
	position: absolute;
	left: 0;
	top: 0
}

.message01bg .e_loop-3 .p_filter_select {
	width: 150px
}

.message01bg .e_loop-3 .p_normal_start,
.message01bg .e_loop-3 .p_date_start {
	display: inline;
	width: 100px
}

.message01bg .e_loop-3 .p_normal_end,
.message01bg .e_loop-3 .p_date_end {
	display: inline;
	width: 100px
}

.message01bg .e_loop-3 .p_split {
	margin: 0 5px
}

.message01bg .e_loop-3 .p_normal {
	margin-right: 16px
}

.message01bg .e_loop-3 {
	background_radio: 1;
	margin-left: auto;
	margin-right: auto;
	transition-property: all;
	max-width: none;
	display-radio: 1
}

.message01bg .e_loop-3 .cbox-3:nth-child(odd) {
	flex: 0 0 auto
}

.message01bg .e_loop-3 .cbox-3:nth-child(even) {
	flex: 0 0 auto;
	align-items: center
}

.message01bg .e_text-4 {
	line-height: normal;
	font_radio: 2
}

.message01bg .e_text-4 a {
	display: block;
	padding: 10px 35px;
	background: #fff;
	border-radius: 0px;
	border: 1px solid #eee;
	font-size: 16px;
	transition: all .5s ease
}

.message01bg .e_text-4 a:hover {
	background: #F65857;
	color: #fff
}

.message01bg .e_text-4 a.on {
	background: #F65857;
	color: #fff
}

.message01bg .e_container-1 .cbox-1-1 {
	flex: 0 0 auto;
	align-self: center
}

@media screen and (max-width: 768px) {
	.message01bg .e_container-1 .cbox-1-1 {
		display: none
	}

	.message01bg {
		padding-top: 10px;
		padding-bottom: 5px
	}

	.message01bg .e_loop-3 .p_loopitem {
		position: static;
		display: inline-block;
		width: auto;
		margin: 0 5px;
		vertical-align: top
	}

	.message01bg .e_loop-3 .p_loopitem:first-child {
		margin-left: 20px
	}

	.message01bg .e_loop-3 .p_loopitem:last-child {
		margin-right: 20px
	}

	.message01bg .e_loop-3 .p_list {
		font-size: 0;
		display: inline-block;
		margin: 0 auto;
		padding: 0px;
		text-align: center;
		width: 100%;
		overflow-x: auto;
		flex-wrap: nowrap;
		justify-content: center;
		overflow-y: hidden;
		white-space: nowrap
	}

	.message01bg .e_text-4 a {
		font-size: 14px;
		text-align: center;
		padding: 10px 20px
	}
}

@media screen and (min-width: 769px) {
	.message01bg .e_loop-3 .p_loopitem {
		flex-grow: 0;
		flex-shrink: 0;
		flex: 0 0 auto;
		margin-right: 25px
	}
}

.message02bg {
	min-height: 0px;
	padding-top: 3%;
	padding-bottom: 3%;
	padding-left: 0px;
	padding-right: 0px;
	display-radio: 1;
	background-color: rgba(255, 255, 255, 1);
	margin-top: 0px;
}

.message02bg .e_container-15 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0px;
	background-color: rgba(255, 255, 255, 1);
	padding-top: 10px;
	padding-bottom: 0px;
	padding-left: 40px;
	padding-right: 40px;
	display-radio: flex;
	margin-top: 0px;
}

.message02bg .e_container-15>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%;
}

.message02bg .e_container-32 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
}

.message02bg .e_container-32>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%;
}

.message02bg .e_input-27 {
	max-width: 96%;
	display-radio: 1;
}

.message02bg .e_input-28 {
	max-width: 96%;
}

.message02bg .e_text-34 {
	line-height: normal;
	font_radio: 2;
	font-size: 34px;
	text-align: center;
	color: rgba(51, 51, 51, 1);
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
	display-radio: 1;
	font-weight: bold;
	width: auto;
	padding-bottom: 10px;
}

.message02bg .e_formBtn-31 {
	display: block;
	position: relative;
	overflow: hidden;
	text-align: center;
	box-sizing: border-box;
	border-radius: 4px;
	padding: 8px;
	margin-left: auto;
	background_radio: 2;
	border_radio: 1;
	font_radio: 2;
	font-size: 14px;
	font-family: Microsoft YaHei;
	background-color: #F65857;
	padding-top: 12px;
	padding-bottom: 12px;
	height: auto;
	radius_radio: 1;
	margin-top: 20px;
	margin-bottom: 40px;
	margin-right: auto;
	display-radio: block;
	width: auto;
}

.message02bg .e_formBtn-31 span {
	display: block;
	width: 100%;
	position: relative;
	z-index: 1;
	outline: 0;
	margin: 0px;
	overflow: hidden;
	color: #fff;
}

.message02bg .e_form-26 {
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	padding-right: 0px;
	padding-left: 0px;
	padding-top: 0px;
	margin-top: 20px;
}



.contact01bg .e_container-1>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.contact01bg .e_breadcrumb-2 .p_breadcrumbItem {
	position: relative
}

.contact01bg .e_breadcrumb-2 .icon {
	width: 12px;
	height: 12px
}

.contact01bg .e_breadcrumb-2 .p_breadcrumbItem:not(:first-child) {
	padding: 0 3px 0 15px
}

.contact01bg .e_breadcrumb-2 .p_breadcrumbItem:not(:first-child)::before {
	content: '>';
	position: absolute;
	left: 3px;
	color: #999
}

.contact01bg .e_breadcrumb-2 .p_breadcrumb {
	display: flex
}

.contact01bg .e_breadcrumb-2 .p_showTitle {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 5px;
	border: 1px solid transparent
}

.contact01bg .e_breadcrumb-2 .siblings::after {
	content: '>';
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	transform: rotateZ(90deg);
	cursor: pointer;
	color: #ccc
}

.contact01bg .e_breadcrumb-2 .siblings.active {
	border: 1px solid #dee2e6
}

.contact01bg .e_breadcrumb-2 .siblings.active::after {
	transform: rotateZ(-90deg)
}

.contact01bg .e_breadcrumb-2 .p_slide {
	position: absolute;
	left: 18px;
	min-width: 100%;
	padding: 5px;
	display: none;
	z-index: 999
}

.contact01bg .e_breadcrumb-2 .p_sibling {
	display: block;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.contact01bg .e_breadcrumb-2 {
	background_radio: 2;
	background-color: rgba(255, 255, 255, 0)
}

.contact01bg .e_loop-3 .p_list {
	display: flex;
	flex-wrap: wrap
}

.contact01bg .e_loop-3 .p_loopitem {
	flex: 0 0 33.3%;
	position: relative
}

.contact01bg .e_loop-3 .p_page {
	text-align: center
}

.contact01bg .e_loop-3 .p_filter_wrapper {
	width: 100%
}

.contact01bg .e_loop-3 .p_kv_wrapper {
	display: flex;
	flex-wrap: nowrap
}

.contact01bg .e_loop-3 .p_filter_key {
	line-height: 40px;
	margin-right: 10px;
	font-weight: bold
}

.contact01bg .e_loop-3 .p_v_item {
	display: inline-block;
	margin: 0 5px;
	line-height: 40px;
	cursor: pointer
}

.contact01bg .e_loop-3 .p_active {
	color: blueviolet
}

.contact01bg .e_loop-3 .p_result_item {
	position: relative;
	padding: 3px 20px 3px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-right: 10px
}

.contact01bg .e_loop-3 .p_filter_close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 3px;
	font-style: normal;
	font-size: 16px;
	margin-top: -5px;
	cursor: pointer
}

.contact01bg .e_loop-3 .multSelect {
	font-size: 14px;
	position: relative
}

.contact01bg .e_loop-3 .multSelect .inputWrap {
	width: 100%;
	min-width: 100px;
	min-height: 40px;
	border: 1px solid #ccc;
	border-radius: 3px;
	position: relative;
	cursor: pointer
}

.contact01bg .e_loop-3 .multSelect.is-invalid .inputWrap {
	border-color: #dc3545
}

.contact01bg .e_loop-3 .multSelect ul {
	padding: 0 5px;
	margin: 0;
	padding-right: 35px
}

.contact01bg .e_loop-3 .multSelect ul,
li {
	list-style: none
}

.contact01bg .e_loop-3 .multSelect li {
	display: inline-block;
	background: #edf0f3;
	color: #92969c;
	padding: 3px 5px;
	margin: 5px 5px 5px 0;
	border-radius: 5px
}

.contact01bg .e_loop-3 .multSelect .multSelect-option {
	width: 100%;
	border: 1px solid #ccc;
	border-top: 0;
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	height: 0;
	opacity: 0;
	z-index: 9;
	background: #fff
}

.contact01bg .e_loop-3 .multSelect .multSelect-option>div {
	line-height: 35px;
	cursor: pointer;
	padding: 0 10px
}

.contact01bg .e_loop-3 .multSelect .multSelect-option>div.selected {
	color: #409eff
}

.contact01bg .e_loop-3 .multSelect .multSelect-option>div:hover {
	color: #409eff;
	background: #f3f6f9
}

.contact01bg .e_loop-3 .multSelect .fa-close {
	font-style: normal;
	font-size: 12px;
	padding: 0 5px 0 7px
}

.contact01bg .e_loop-3 .multSelect .inputWrap>.fa svg {
	fill: #666;
	width: 16px;
	height: 16px;
	position: absolute;
	right: 0;
	top: calc(50% - 8px)
}

.contact01bg .e_loop-3 .multSelect .inputWrap>.fa-down svg {
	transform: rotate(-90deg)
}

.contact01bg .e_loop-3 .multSelect .inputWrap>.fa-up svg {
	transform: rotate(90deg)
}

.contact01bg .e_loop-3 .multSelect .placeholder {
	line-height: 40px;
	padding-left: 10px;
	color: #aaa;
	position: absolute;
	left: 0;
	top: 0
}

.contact01bg .e_loop-3 .p_filter_select {
	width: 150px
}

.contact01bg .e_loop-3 .p_normal_start,
.contact01bg .e_loop-3 .p_date_start {
	display: inline;
	width: 100px
}

.contact01bg .e_loop-3 .p_normal_end,
.contact01bg .e_loop-3 .p_date_end {
	display: inline;
	width: 100px
}

.contact01bg .e_loop-3 .p_split {
	margin: 0 5px
}

.contact01bg .e_loop-3 .p_normal {
	margin-right: 16px
}

.contact01bg .e_loop-3 {
	background_radio: 1;
	margin-left: auto;
	margin-right: auto;
	transition-property: all;
	max-width: none;
	display-radio: 1
}

.contact01bg .e_loop-3 .cbox-3:nth-child(odd) {
	flex: 0 0 auto
}

.contact01bg .e_loop-3 .cbox-3:nth-child(even) {
	flex: 0 0 auto;
	align-items: center
}

.contact01bg .e_text-4 {
	line-height: normal;
	font_radio: 2
}

.contact01bg .e_text-4 a {
	display: block;
	padding: 10px 35px;
	background: #fff;
	border-radius: 0px;
	border: 1px solid #eee;
	font-size: 16px;
	transition: all .5s ease
}

.contact01bg .e_text-4 a:hover {
	background: #F65857;
	color: #fff
}

.contact01bg .e_text-4 a.on {
	background: #F65857;
	color: #fff
}

.contact01bg .e_container-1 .cbox-1-1 {
	flex: 0 0 auto;
	align-self: center
}

@media screen and (max-width: 768px) {
	.contact01bg .e_container-1 .cbox-1-1 {
		display: none
	}

	.contact01bg {
		padding-top: 10px;
		padding-bottom: 5px
	}

	.contact01bg .e_loop-3 .p_loopitem {
		position: static;
		display: inline-block;
		width: auto;
		margin: 0 5px;
		vertical-align: top
	}

	.contact01bg .e_loop-3 .p_loopitem:first-child {
		margin-left: 20px
	}

	.contact01bg .e_loop-3 .p_loopitem:last-child {
		margin-right: 20px
	}

	.contact01bg .e_loop-3 .p_list {
		font-size: 0;
		display: inline-block;
		margin: 0 auto;
		padding: 0px;
		text-align: center;
		width: 100%;
		overflow-x: auto;
		flex-wrap: nowrap;
		justify-content: center;
		overflow-y: hidden;
		white-space: nowrap
	}

	.contact01bg .e_text-4 a {
		font-size: 14px;
		text-align: center;
		padding: 10px 20px
	}
}

@media screen and (min-width: 769px) {
	.contact01bg .e_loop-3 .p_loopitem {
		flex-grow: 0;
		flex-shrink: 0;
		flex: 0 0 auto;
		margin-right: 25px
	}
}


.contact01bg {
	min-height: 0px;
	display-radio: 1;
	margin-top: 0px;
	/* padding-top: 3%;
    padding-bottom: 3% */
}

.contact01bg .e_container-1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 92%;
	display-radio: flex;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
	background-color: #F65857;
	background-image: url(/images/white1.png)
}

.contact01bg .e_container-1>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.contact01bg .e_container-1 .p_item {
	display-radio: 1
}

.contact01bg .p_item {
	display-radio: 1
}

.contact01bg .e_container-1 .cbox-1-0 {
	flex: 0 0 40%;
	align-self: center
}

.contact01bg .e_html-3 {
	min-height: 300px;
	background_radio: 1;
	display-radio: 1
}

.contact01bg .e_text-4 {
	line-height: normal;
	font_radio: 2;
	font-size: 30px;
	text-align: left;
	color: rgba(255, 255, 255, 1);
	font-weight: bold;
	display-radio: 1
}

.contact01bg .e_container-5 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 80%;
	display-radio: flex;
	margin-left: auto;
	margin-right: auto
}

.contact01bg .e_container-5>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.contact01bg .e_text-6 {
	line-height: normal;
	font_radio: 2;
	margin-top: 10px;
	margin-bottom: 20px;
	font-size: 24px;
	color: rgba(255, 255, 255, 1);
	display-radio: 1
}

.contact01bg .e_richText-7 {
	font_radio: 2;
	font-size: 18px;
	font-weight: normal;
	color: rgba(51, 51, 51, 1);
	line-height: 1.8;
	display-radio: 1;
	margin-left: 0px
}

.contact01bg .e_container-1 .cbox-1-1 {
	align-self: center
}

.about03bg .e_text-18 {
	line-height: normal;
	font_radio: 2;
	font-size: 36px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	margin-top: 0px;
	color: rgba(51, 51, 51, 1);
	text-align: center;
	display-radio: 1;
}

.yingyong01 {
	width: 92%;
	margin: auto;
	max-width: 1600px;
}

.yingyong01 .u-list {
	display: flex;
	flex-wrap: wrap;
}

.yingyong01 .u-list .item {
	padding: 10px 10px;
	width: calc(25% - 0px);
	display: inline-block;
	vertical-align: top;
	border-radius: 6px;
	overflow: hidden;
	transition: all .4s ease-out;
}
.device01bg .yingyong01 .u-list .item {
	padding: 10px 10px;
	width: calc(33% - 0px);
	display: inline-block;
	vertical-align: top;
	border-radius: 6px;
	overflow: hidden;
	transition: all .4s ease-out;
}
.yingyong01 .u-list .item .news_list_item_inner {
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0);
	background-color: rgba(255, 255, 255, 1);
	display: block;
	padding-left: 0;
	padding-right: 0;
	padding-top: 5%;
	padding-bottom: 5%;
	box-sizing: border-box;
}

.yingyong01 .u-list .item .news_list_item_inner .news_list_img_box {
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
}

.yingyong01 .u-list .item .news_list_item_inner .news_list_img_box .news_list_img {
	padding-top: 84%;
	transition: all .36s ease;
	position: relative;
}

.yingyong01 .u-list .item .news_list_item_inner .news_list_img_box .news_list_img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	    transition: transform .36s ease, -webkit-transform .36s ease;
}
.yingyong01 .u-list .item:hover .news_list_img img {
	transform: scale(1.08);
}

.yingyong01 .u-list .item .news_list_item_inner .news_list_item_content {
	padding-left: 5%;
	padding-right: 5%;
	width: 100%;
}

.yingyong01 .u-list .item .news_list_item_inner .news_list_item_content .news_list_item_title {
	margin-top: 20px;
	font-size: 16px;
	font-family: 微软雅黑;
	color: rgb(51, 51, 51);
	font-style: normal;
	font-weight: normal;
	text-align: left;
	text-decoration: none;
}

.yingyong01 .u-list .item .news_list_item_inner .news_list_item_content .news_list_item_ext_line {
	margin-top: 20px;
}

.yingyong01 .u-list .item .news_list_item_inner .news_list_item_content .news_list_item_ext_line .news_list_item_group {
	display: inline-block;
	width: calc(100% - 40px);
	line-height: 1;
	margin-top: -12px;
}

.yingyong01 .u-list .item .news_list_item_inner .news_list_item_content .news_list_item_ext_line .news_list_item_group .news_list_item_group_item {
	display: inline-block;
	position: relative;
	height: 26px;
	line-height: 24px;
	max-width: 100%;
	padding: 0 8px;
	border: 1px solid #e5e5e5;
	margin-top: 12px;
	margin-right: 15px;
	border-radius: 5px;
	color: #999;
	font-size: 12px;
	word-break: keep-all;
	overflow: hidden;
	z-index: 2;
}
.yingyong01 .u-list .item:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.yingyong01 .u-list .item .news_list_item_inner .news_list_item_content .news_list_item_ext_line .news_list_item_arrow_link {
	max-width: 100%;
	float: right;
	display: block;
	position: relative;
	width: 40px;
	height: 28px;
	overflow: hidden;
}

.yingyong01 .u-list .item .news_list_item_inner .news_list_item_content .news_list_item_ext_line .news_list_item_arrow_link:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	width: 30px;
	height: 28px;
	background: url(/images/vbg01.png) -23px -324px;
	-webkit-transition: all .36s ease;
	transition: all .36s ease;
}

.yingyong01 .u-list .item .news_list_item_inner .news_list_item_content .news_list_item_ext_line .news_list_item_arrow_link:after {
	content: "";
	display: inline-block;
	position: absolute;
	left: -30px;
	top: 0;
	width: 30px;
	height: 28px;
	background: url(/images/vbg01.png) -23px -324px;
	-webkit-transition: all .36s ease;
	transition: all .36s ease;
	opacity: 0;
}

.yingyong01 .u-list .item:hover .news_list_item_arrow_link:after {
	left: 0 !important;
	opacity: 1 !important;
}


.yingyong01 .u-list .item:hover .news_list_item_arrow_link:before {
    left: 30px !important;
    opacity: 0 !important;
}

@media screen and (max-width: 1630px) {
	.m11_headbg .nav-tel {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.contact01bg .e_container-1 {
		display-radio: 1;
		flex-direction: column;
		padding-top: 40px;
		padding-bottom: 30px
	}

	.contact01bg .e_html-3 {
		display: none
	}
}

@media screen and (max-width: 999px) {

	.m11_headbg .nav-tel,
	.h_search,
	.index01bg .saj-content,
	.banner .swiper-slide .txt .summarybox,
	.footer .cbox-42-0,
	.footer .cbox-42-1,
	.contact01bg .inbar .p_item,
	.message01bg .inbar .p_item,
	.inbannerbg .p_info .p_summary {
		display: none;
	}

	.about02bg .e_container-6 .p_item,.yingyong01 {
		width: 100%;
	}

	.footer .footer_container {
		width: 100%;
		text-align: center;
		justify-content: center;
		padding-top: 40px;
	}

	.m11_headbg {
		padding-left: 20px;
		padding-right: 20px;
	}

	.banner .swiper-slide .txtbg {
		/* top: 68%; */
	}

	.index02bg .e_text-2 {
		font-size: 24px;
		margin-top: 20px;
	}

	.index02bg .e_text-3 {
		font-size: 12px;
	}

	.index02bg .e_scrollNumber-8 .p_num,
	.about03bg .e_text-18,
	.honor01bg .e_text-18,
	.device01bg .e_text-18 {
		font-size: 30px;
	}

	.index02bg .e_container-5>.p_item,
	.about03bg .e_loop-14 .p_loopitem,
	.honor01bg .e_loop-14 .p_loopitem,
	.device01bg .e_loop-14 .p_loopitem {
		flex: 0 0 50%;
	}

	.productdetail01bg .m11_proDetail .list1,
	.productdetail01bg .m11_proDetail .list2 {
		background-color: #fff;
		padding-top: 30px;
		padding-left: 30px;
		padding-bottom: 30px;
		padding-right: 30px;
	}

	.productdetail01bg .m11_inside_rt .e_loop_sub-25 .p_loopItem,
	.news01bg .e_container-2 .cbox-2-0,
	.news01bg .e_container-2 .cbox-2-1 {
		flex: 0 0 100%;
	}

	.productdetail01bg .m11_inside_rt .e_button-36,
	.productdetail01bg .m11_inside_rt .e_button-37 {
		width: 132px;
	}

	.m11_proDetail .list2 .hd ul li {
		width: 160px;
		height: 40px;
	}

	.m11_proDetail .list2 .hd ul li a {
		line-height: 40px;
	}

	.product01bg {
		padding-bottom: 30px;
	}

	.news01bg .e_text-11 {
		font-size: 16px;
	}

	.news01bg .e_timeFormat-6 {
		font-size: 40px;
	}

	.news01bg .e_container-4 .cbox-4-0 {
		padding-left: 0px;
	}

	.inbannerbg .p_info .p_btitle {
		font-size: 20px;
		font-weight: bold;
	}

	.inbannerbg .p_info {
		width: 50%;
		position: absolute;
		right: 50%;
		top: calc(50% + 5px);
	}
	.yingyong01 .u-list .item {
    padding: 10px 10px;
    width: calc(50% - 0px);
	}
}