/*common start*/
body,
div,
ul,
li,
a,
img,
p,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
span,
input,
button,
textarea,
dl,
dt {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	border: 0;
	list-style: none;
	font-family: normal;
	font-weight: normal;
}

body {
	font-size: 14px;
	color: #111;
	overflow-x: hidden;
}

a img {
	border: 0;
}

em {
	font-style: normal;
}

body.head_on {
	overflow: hidden;
}

a {
	text-decoration: none;
	color: #333;
	transition: all .3s;
}

* {
	box-sizing: border-box;
}

input,
select,
textarea {
	outline: none;
}

.clear {
	margin: 0;
	padding: 0;
	font-size: 0;
	clear: both;
}

.wapper {
	width: 100%;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
}

@media only screen and (min-width: 1400px) {
	.wapper {
		width: 1400px;
		margin: 0 auto;
	}
}

:root {
	--primary-color: #2a62ac;
	--font-color: #666;
	--main-white: #fff;
}





/* 轮播图通用 */
.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.swiper-slide img {
	width: 100%;
}

.overflow1 {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	width: 100%;
	display: block;
}

.overflow2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.overflow3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}


/* 导航 */
.headerbox {
	width: 100%;
	margin: 0 auto;
	background-color: #0f0f1e;
	height: 80px;
}

.headerbox.active {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
}

.headerbox .header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

.headerbox .header .menu ul {
	display: flex;
	align-items: center;
}

.headerbox .header .menu ul li {
	position: relative;
	margin: 0 5px;
}

.headerbox .header .menu ul li a {
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	padding: 15px 25px;
	color: #fff;
	display: flex;
	position: relative;
	text-decoration: none;
	transition: all 0.2s;
}

.headerbox .header .menu>ul>li.curr>a:after {
	content: "";
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	position: absolute;
	background-color: #ea8935;
	width: 40px;
	height: 2px;
}

.headerbox .header .menu ul li .sub_menu {
	min-width: 200%;
	position: absolute;
	top: 140%;

	left: 0%;
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	background: #001a2d;
	transition: all 400ms ease;
	border-radius: 10px;
}

.headerbox .header .menu ul li:hover>dl {
	opacity: 1;
	visibility: visible;
	top: 100%;
}

.headerbox .header .menu ul li dd {
	position: relative;
	display: block;
	text-align: center;
	transition: all 400ms ease;
}

.headerbox .header .menu dl dd>.three_menu {
	min-width: 100%;
	position: absolute;
	left: 100%;
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	background: #001a2d;
	transition: all 400ms ease;
	border-radius: 10px;
	overflow: hidden;
}

.headerbox .header .menu dl dd:hover>.three_menu {
	opacity: 1;
	visibility: visible;
	top: 0px;
}

.headerbox .header .menu ul li dl dd a {
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: #c6c6c6 !important;
	text-align: left;
	display: block;
	padding: 15px 25px 15px 25px;
	position: relative;
	text-decoration: none;
	outline: none;
	text-align: center;
	text-transform: none;
	transition: all 400ms ease;
}

.headerbox .header .menu ul li dl dd:hover {
	background-color: #3e2361;
	border-radius: 10px;
}

.headerbox .header .menu ul li dl dd:hover>a {
	color: #fff !important;
}

.language {
	position: relative;
}

.language .lan_tab {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #322c33;
	background-color: #f7f7f8;
	padding: 4px 16px;
	border-radius: 30px;
	height: 38px;
	line-height: 38px;
	cursor: pointer;
}

.language .lan_tab span {
	padding: 0 2px;
	font-weight: 700;
}

.language .lan_tab i {
	font-size: 20px;
}

.language .lan_tab.open i {
	transform: rotate(180deg);
}

.language .lan_box {
	display: none;
	background-color: #fff;
	border-radius: 10px;
	position: absolute;
	left: 0;
	top: 120%;
	z-index: 99;
	width: 100%;
	overflow: hidden;
}

.language .lan_box.open {
	display: block;
}

.language .lan_box ul li {
	padding: 10px 14px;
	line-height: 24px;
	font-size: 16px;
}

.language .lan_box ul li a {
	color: #322c33;
}

.language .lan_box ul li:hover {
	background-color: #3e2361;
}

.language .lan_box ul li:hover a {
	color: #f7f7f8;
}


/*mMenu*/
.m_header {
	width: 100%;
}

.sp_header {
	height: 70px;
	background: #0f0f1e;
	position: fixed;
	z-index: 999;
	width: 100%;
	display: none;
	top: 0;
	align-items: center;
	justify-content: space-between;
}

.sp_logo {
	float: left;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 10px;
}

.sp_logo img {
	margin: auto;
	max-height: 50px;
}

.h_right {
	display: flex;
	align-items: center;
}

.sp_nav {
	width: 50px;
	float: right;
	position: relative;
	cursor: pointer;
	height: 30px;
}

/* 横杠 */
.sp_nav span {
	display: block;
	background: #fff;
	width: 30px;
	height: 3px;
	position: absolute;
	left: 10px;
	transition: all ease 0.35s
}

.sp_nav span:nth-of-type(1) {
	top: 0px
}

.sp_nav span:nth-of-type(2) {
	top: 10px
}

.sp_nav span:nth-of-type(3) {
	top: 20px
}

.sp_nav_se span:nth-of-type(1) {
	top: 10px;
	transform: rotate(45deg)
}

.sp_nav_se span:nth-of-type(2) {
	width: 0
}

.sp_nav_se span:nth-of-type(3) {
	top: 10px;
	transform: rotate(-45deg)
}

.sjj_nav {
	position: fixed;
	z-index: 9999;
	background: var(--main-white);
	width: 100%;
	height: calc(100% - 70px);
	font-size: 14px;
	line-height: 40px;
	top: 70px;
	left: 0;
	overflow: auto;
	overflow-x: hidden;
	transition: top ease 0.35s;
	display: none;
	transition: all ease 0.35s
}

.nav_show {
	display: block;
}

.sjj_nav ul li i {
	position: absolute;
	top: 5px;
	right: 0px;
	height: 30px;
	padding: 0px 7px 0 7px;
}

.sjj_nav ul li i svg {
	transform: rotate(-90deg);
	transition: all ease 0.35s
}

.sjj_nav ul li .sjj_nav_i_se svg {
	transform: rotate(0deg)
}

.sjj_nav ul li {
	border-bottom: 1px dashed #ddd;
	;
	position: relative;
	line-height: 45px;
	font-size: 16px
}

.sjj_nav>ul>li:last-child {
	border-bottom: 1px dashed #ddd;
}

.sjj_nav ul li ul {
	display: none
}

.sjj_nav ul li a {
	color: var(--font-color);
	width: 100%;
	padding: 0 20px;
	display: block;
	box-sizing: border-box;
}

.sjj_nav ul li a:hover {
	color: #000000;
}

.sjj_nav ul li ul li a {
	color: var(--font-color);
	display: block;
	text-align: left;
}

.sjj_nav ul li i svg {
	width: 25px;
	height: 25px;
	fill: var(--main-white);
}

.sjj_nav ul li .sjj_nav_i_se svg {
	fill: var(--main-white)
}

.sjj_nav ul li ul li>ul {
	margin-left: 10px
}

.sjj_nav ul li ul li {
	border-top: none;
}

.sjj_nav ul li ul li a {
	padding: 0 30px;
}





@keyframes shake {
	0% {
		transform: translateX(0);
	}

	2% {
		transform: translateX(-5px);
	}

	4% {
		transform: translateX(5px);
	}

	6% {
		transform: translateX(-5px);
	}

	8% {
		transform: translateX(5px);
	}

	10% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(0);
	}
}


/* bannerbox */
.bannerbox {
	width: 100%;
	margin: 0 auto;
	background-color: #0f0f1e;
}

.banner {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	height: 600px;
	align-items: flex-start;
}

.banner .textbox {
	width: 35%;
	padding-left: 14%;
	padding-top: 5%;
}

.banner .imgbox {
	position: relative;
	width: 60%;
	font-size: 0;
	height: 100%;
}

.banner .imgbox .bb {
	width: 100%;
	position: absolute;
	max-width: 100%;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	z-index: 1;
}

.banner .imgbox .icon {
	position: absolute;
	max-width: 70%;
	left: -13%;
	bottom: 17px;
	width: auto;
	z-index: 2;
	animation: shake 5s ease-in-out infinite;
}

.banner .imgbox .love {
	position: absolute;
	right: 40%;
	top: 30%;
	width: 50px;
	z-index: 2;
	animation: shake 5s ease-in-out infinite;
}

.banner .imgbox .trophy {
	position: absolute;
	left: 15%;
	top: 45%;
	width: 60px;
	z-index: 2;
	animation: shake 5s ease-in-out infinite;
}



.banner .textbox h1 {
	font-size: 3.5rem;
	font-weight: bold;
	color: #ea8935;
	margin-bottom: 10px
}

.banner .textbox h3 {
	font-size: 25px;
	color: #fff;
}






.pd50 {
	padding: 50px 0;
}

/* footer */

/* 通用内页 */
.inbannerbox {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.insidebox {
	width: 100%;
	margin: 0 auto;
}

.insidebox .inside {
	width: 100%;
	box-sizing: border-box;
}

@-webkit-keyframes StrongTitleAnime {
	0% {
		top: 28px
	}

	to {
		top: 38px
	}
}

@keyframes StrongTitleAnime {
	0% {
		top: 28px
	}

	to {
		top: 38px
	}
}

@keyframes StrongTitleAnime1 {
	0% {
		top: 80%
	}

	to {
		top: 83%
	}
}



.blod {
	font-weight: bold;
}

.main_title {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	display: inline-block;
	margin-bottom: 50px;
}

.main_title h1 {
	display: inline-block;
	font-size: 36px;
	color: #333;
	position: relative;
	-webkit-box-reflect: below 0 -webkit-linear-gradient(transparent, transparent 20%, rgba(255, 255, 255, .3));
}

/* .main_title h3{display: block;font-size:36px;transform: rotate(180deg); background: -webkit-linear-gradient(#333, #fff);background: linear-gradient(#333, #fff);-webkit-background-clip: text;background-clip: text;color: transparent;} */
.main_title img {
	animation: StrongTitleAnime 1s infinite alternate;
	position: absolute;
}

.main_title .img1 {
	left: -50px;
	top: 30px;
}

.main_title .img2 {
	right: -80px;
	top: 30px;
}


.rightcon {
	position: fixed;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
}

.rightcon ul li {
	margin-bottom: 10px;
}

.rightcon ul li a {
	display: block;
}

.rightcon ul li .ewm_tc {
	position: relative;
}

/* .rightcon ul li .ewm_tc img {
	max-width: 100px;
	width: auto !important;
} */

.right_icon {
	width: 50px;
}

.rightcon ul li .ewm_tc .r_ewm {
	position: absolute;
	right: 120%;
	top: 0;
	width: 150px;
	padding: 10px;
	opacity: 0;
	visibility: hidden;
	text-align: center;
	box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.25);
	background-color: #fff;
}

/* .rightcon ul li .ewm_tc .r_ewm .sanjiao{width: 20px;height: 20px;background-color: #fff;box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.25);position: absolute;right: -10px;top: 20px;content: "";display: block;transform: rotate(45deg);z-index: -1;} */
.rightcon ul li .ewm_tc .r_ewm img {
	width: 100%;
}

.rightcon ul li .ewm_tc .r_ewm p {
	font-size: 14px;
	color: #333;
}

.rightcon ul li .ewm_tc:hover .r_ewm {
	opacity: 1;
	visibility: visible;
}








/* ================首页样式================ */
.index1box {
	width: 100%;
	margin: 0 auto;
	padding-bottom: 20px;
	padding-top: 20px;
}

.index1box .swiper-slide {
	background-color: transparent;
	display: flex;
	align-items: center;
	height: 40px;
}

.index1box .swiper-slide img {
	height: auto;
	width: auto;
	max-width: 100%;
}

.index2box {
	width: 100%;
	margin: 0 auto;
}

.index2 {
	width: 100%;
	margin: 0 auto;
}

.index2_content {
	width: 100%;
	margin: 0 auto;
	position: relative;
	margin-top: 50px;
}

.index2_content .left_img {
	position: absolute;
	left: 0%;
	max-width: 100%;
	width: auto;
	animation: StrongTitleAnime 1s infinite alternate;
	top: 0;
	width: 70px;
}

.index2_content .right_img {
	position: absolute;
	right: 0%;
	max-width: 100%;
	width: auto;
	animation: StrongTitleAnime1 1s infinite alternate;
	top: 80%;
	width: 70px;
}

.index2_content ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 94%;
	margin: 0 auto
}

.index2_content ul li {
	width: 49.5%;
	box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.15);
	padding: 30px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	min-height: 200px;
}

.index2_content ul li:nth-child(1) {
	border-bottom-left-radius: 50px;
	border-top-right-radius: 50px;
}

.index2_content ul li:nth-child(2) {
	border-top-left-radius: 50px;
	border-bottom-right-radius: 50px;
}

.index2_content ul li:nth-child(3) {
	border-top-left-radius: 50px;
	border-bottom-right-radius: 50px;
}

.index2_content ul li:nth-child(4) {
	border-bottom-left-radius: 50px;
	border-top-right-radius: 50px;
}

.index2_content .icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 100%;
	width: auto;
}

.index2_content ul li .num {
	padding-right: 20px;
	border-right: 1px solid #efefef;
	font-size: 4.5rem;
	font-weight: bold;
	color: #f27d0a;
	order: 0;
}

.index2_content ul li:nth-child(2n) .num {
	order: 1;
	border-right: 0px solid #efefef;
	border-left: 1px solid #efefef;
	padding-right: 0;
	padding-left: 20px;
}

.index2_content ul li:nth-child(2n) .textbox {
	order: 0;
}

.index2_content ul li .textbox {
	padding-left: 20px;
	order: 1;
}

.index2_content ul li .textbox h3 {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.index2_content ul li .textbox h3 img {
	max-width: 100%;
	width: 40px;
	margin-right: 10px;
}

.index2_content ul li .textbox h3 span {
	font-size: 1.8rem;
	color: #f27d0a;
	font-weight: bold;
}

.index2_content ul li .textbox p {
	font-size: 16px;
	color: #333;
}



.index4box {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.index4 {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.index4box .i4_img1 {
	position: absolute;
	left: 15%;
	max-width: 100%;
	width: auto;
	animation: StrongTitleAnime 1s infinite alternate;
	top: 0;
	width: 70px;
}

.index4_content {
	width: 100%;
	margin: 0 auto;
	position: relative;
	margin-top: 80px;
}

.index4_content .i4_img2 {
	position: absolute;
	left: 50%;
	top: -30px;
	max-width: 100%;
	width: auto;
	transform: translateX(-50%);
	z-index: 2;
}

.index4_content ul {
	display: flex;
	flex-wrap: wrap;
}

.index4_content ul li {
	width: 23.5%;
	margin-right: 2%;
}

.index4_content ul li:nth-child(4n) {
	margin-right: 0;
}

.index4_content ul li .li_inner {
	width: 100%;
	position: relative;
	background-color: #fff;
	box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.25);
	padding: 30px;
	border-radius: 20px;
	min-height: 200px;
}

.index4_content ul li .li_inner .num {
	position: absolute;
	left: 50%;
	top: -40px;
	transform: translateX(-50%);
	width: 80px;
	height: 100px;
	background-repeat: no-repeat;
	background-size: cover;
	line-height: 70px;
	text-align: center;
}

.index4_content ul li .li_inner .num span {
	font-size: 30px;
	color: #fff;
	font-weight: bold;
}

.index4_content ul li .li_inner .textbox {
	margin-top: 40px;
	text-align: center;
}

.index4_content ul li .li_inner .textbox h3 {
	font-size: 1.5rem;
	color: #ea8935;
	font-weight: bold;
	margin-bottom: 8px;
}

.index4_content ul li .li_inner .textbox p {
	font-size: 1rem;
	color: #333;
}


.index5box {
	width: 100%;
	margin: 0 auto;
	position: relative;
	border-bottom: 5px solid #fae3d6;
}

.index5box .line {
	width: 100%;
}

.index5 {
	padding-top: 50px;
}

.index5_content {
	width: 100%;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.index5_content .i5_img {
	position: absolute;
	right: 0%;
	top: 0;
	max-width: 100%;
	width: auto;
	animation: StrongTitleAnime 1s infinite alternate;
	position: absolute;
	width: 60px;
}

.index5_content .hd .prev,
.index5_content .hd .next {
	cursor: pointer;
	position: absolute;
}

.index5_content .hd .prev {
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
}

.index5_content .hd .next {
	right: 30px;
	top: 50%;
	transform: translateY(-50%) rotate(-180deg);
}

.index5_content .bd {
	max-width: 80%;
	margin: 0 auto;
	overflow: hidden;
}

.index5_content .bd ul {
	overflow: hidden;
	zoom: 1;
	padding: 80px 0 !important;
}

.index5_content .bd ul li {
	float: left;
	text-align: center;
	width: calc(25% - 60px);
	margin: 0 30px;
}

.index5_content .slide_inner {
	width: 100%;
}

.index5_content .slide_inner .imgbox {
	width: 100%;
	font-size: 0;
	position: relative;
	overflow: hidden;
	transition: all 0.5s;
	border-radius: 20px;
}

.index5_content .slide_inner:hover .imgbox {
	transform: translateY(-20px);
}

.index5_content .slide_inner .imgbox img {
	width: 100%;
}

.index5_content .slide_inner .textbox {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0, 0.7);
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
}

.index5_content .slide_inner:hover .textbox {
	opacity: 1;
	visibility: visible;
}

.index5_content .slide_inner .textbox .tc_btn {
	display: inline-block;
	background-color: #fff;
	font-size: 14px;
	color: #333;
	padding: 10px 15px;
	border-radius: 5px;
}

.tcbox {
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .1);
	z-index: 999;
	pointer-events: none;
	opacity: 0;
	transition: .3s;
}

.tcbox.open {
	pointer-events: auto;
	opacity: 1;
}

.tc_content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 20px;
	background: #fff;
	border-radius: 10px;
}

.tc_content .close {
	position: absolute;
	right: 10px;
	top: 10px;
	padding: 10px;
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: 4px;
	color: #666;
}

.tc_content h3 {
	text-align: center;
	margin: 0 0 20px;
	line-height: 1;
	color: #333;
	font-weight: bold;
}

.tc_desc {
	display: flex;
	align-items: center;
	justify-content: center;
}

.tc_desc iframe {
	display: block;
	border: none;
	width: 100%;
}

.index5_btn {
	width: 100%;
	text-align: center;
	margin-top: 50px;
}

.index5_btn div {
	display: inline-block;
	width: 222px;
	height: 52px;
	line-height: 52px;
	color: #fff;
	font-size: 18px;
	border-radius: 50px;
	letter-spacing: 1px;
	background: linear-gradient(#ffb26f, #f27d0a);
	cursor: pointer;
}






.index6box {
	width: 100%;
	margin: 0 auto;
}

.index6 {
	width: 100%;
	margin: 0 auto;
}

.index6 .index6_top {
	width: 100%;
	margin: 0 auto;
	max-width: 60%;
}

.index6 .index6_top h1 {
	font-size: 40px;
	color: #333;
	margin-bottom: 30px;
	text-align: center;
}

.index6 .index6_top .i6_form {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.index6 .index6_top .i6_form .text {
	width: 35%;
	background-color: #fae3d6;
	height: 52px;
	line-height: 52px;
	color: #fff;
	font-size: 16px;
	padding: 0 15px;
	border-radius: 50px;
}

.index6 .index6_top .i6_form .text::placeholder {
	color: #fff;
}

.index6 .index6_top .i6_form .i6_btn {
	width: 25%;
	background: linear-gradient(#ffb26f, #f27d0a);
	color: #fff;
	height: 52px;
	border-radius: 50px;
	line-height: 52px;
	padding: 0 15px;
	font-size: 16px;
	max-width: 150px;
}

.index6 .index6_bot {
	width: 100%;
	margin: 0 auto;
	max-width: 60%;
	display: flex;
	justify-content: space-between;
}

.index6 .index6_bot .i6_ewm {
	width: 30%;
	text-align: center;
}

.index6 .index6_bot .i6_ewm img {
	max-width: 100%;
	width: auto;
}

.index6 .index6_bot .i6_ewm p {
	font-size: 0.9rem;
	color: #6c6c6c;
	margin-top: 10px;
}

.index6 .index6_bot .i6_desc {
	width: 65%;
	margin-top: 30px;
}

.index6 .index6_bot .i6_QQ {
	height: 300px;
	width: 100%;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
}

.index6 .index6_bot .i6_QQ h3 {
	text-align: left;
	font-size: 18px;
	color: #6c6c6c;
	margin-bottom: 20px;
}

.index6 .index6_bot .i6_QQ p {
	display: block;
	font-size: 1.1rem;
	margin: 20px 0;
}

.index6 .index6_bot .i6_QQ span {
	font-size: 16px;
	margin-bottom: 12px;
	white-space: nowrap;
}


/* 媒体查询：当屏幕宽度小于或等于980px时应用以下样式 */
@media only screen and (max-width: 980px) {
	.headerbox {
		display: none;
	}

	.sp_header {
		display: flex;
	}

	.bannerbox {
		margin-top: 70px;
	}

	.banner {
		height: 450px;
	}

	.banner .textbox {
		width: 100%;
		max-width: 90%;
		margin: 0 auto;
		height: 50%;
		padding: 5% 0;
	}

	.banner .imgbox {
		position: relative;
		width: 100%;
		font-size: 0;
		height: 50%;
	}

	.banner .imgbox .love {
		top: -30%;
		width: 35px;
		right: 45%;
	}

	.banner .imgbox .trophy {
		top: -5%;
		width: 40px;
		left: 18%;
	}

	.banner .textbox h1 {
		font-size: 40px;
	}

	.banner .textbox h3 {
		font-size: 20px;
	}

	.main_title h1 {
		font-size: 20px;
	}

	.main_title h3 {
		font-size: 20px;
	}

	.main_title .img1 {
		left: -40px;
		top: 30px;
		width: 25px;
	}

	.main_title .img2 {
		right: -38px;
		top: 30px;
		width: 40px;
	}


	.i3_left_content {
		width: 100%;
		margin-top: 1vw;
	}

	.i3_left_content ul li .li_inner {
		font-weight: 500;
		margin-bottom: calc(min(60px, 6vw) * 0.8);
		box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.25);
		height: min(60px, 6vw);
		line-height: min(60px, 6vw);
		padding: 0px min(30px, 2.5vw);
		display: inline-block;
		border-radius: min(15px, 1.5vw);
		font-size: min(20px, 2vw);
		color: #333;
		white-space: normal;
	}

	.i3_left_content ul li span {
		width: min(25px, 2.5vw);
		height: min(25px, 2.5vw);
		background-color: #ea8935;
		border-radius: 50%;
		color: #fff;
		display: inline-block;
		margin-right: min(4px, 0.4vw);
		line-height: min(25px, 2.5vw);
		text-align: center;
		font-size: min(20px, 2vw);
		white-space: nowrap;
	}




	.rightcon {
		display: none;
	}

	.index2_content .left_img {
		left: 0%;
		width: 40px;
	}

	.index2_content .right_img {
		right: 0%;
		width: 40px;
	}

	.index2_content ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.index2_content ul li {
		width: 100%;
		border-radius: 30px !important;
	}

	.index2_content .icon {
		display: none;
	}

	.index2_content ul li .num {
		font-size: 35px;
		order: 0 !important;
	}

	.index2_content ul li .textbox {
		order: 1 !important;
	}

	.index2_content ul li .textbox h3 img {
		width: 25px;
	}

	.index2_content ul li .textbox h3 span {
		font-size: 20px;
	}

	.index2_content ul li .textbox p {
		font-size: 14px;
	}

	.index2_content ul li:nth-child(2n) .num {
		order: 1;
		border-left: 1px solid #efefef;
		border-right: 0;
		padding-right: 0;
		padding-left: 20px;
	}

	.index2_content ul li:nth-child(2n) .textbox {
		order: 0;
		padding-left: 0;
		padding-right: 20px;
	}

	.index3_right img {
		width: 100%;
	}



	.index4box .i4_img1 {
		position: absolute;
		right: 5%;
		width: 40px;
		left: auto;
	}


	.index4_content .i4_img2 {
		display: none;
	}

	.index4_content ul li {
		width: 49%;
		margin-right: 2%;
		margin-bottom: 70px;
	}

	.index4_content ul li:nth-child(2n) {
		margin-right: 0;
	}

	.index4_content ul li .li_inner .num {
		top: -20px;
		width: 40px;
		height: 60px;
	}

	.index4_content ul li .li_inner .textbox h3 {
		font-size: 18px;
	}

	.index4_content ul li .li_inner .textbox p {
		font-size: 14px;
	}

	.index5_content .i5_img {
		display: none;
	}


	.index5_content .hd .prev img,
	.index5_content .hd .next img {
		width: 25px;
	}

	.index5_content .bd ul li {
		width: 100%;
		margin: 0 8px;
	}

	.index6 .index6_top {
		max-width: 90%;
	}

	.index6 .index6_top h1 {
		font-size: 30px;
	}

	.index6 .index6_bot {
		max-width: 90%;
	}

	.index6 .index6_bot .i6_ewm {
		width: 48%;
	}

	.index6 .index6_bot .i6_ewm p {
		font-size: 14px;
	}

	.index6 .index6_bot .i6_desc {
		width: 48%;
	}

	.index6 .index6_bot .i6_desc h3 {
		font-size: 14px;
	}

	.index6 .index6_bot .i6_desc p span {
		display: block;
		margin-bottom: 10px;
	}

	.tc_content {
		width: 80%;
	}

	.tc_content iframe {
		width: 100% !important;
	}

	.index3box {
		width: 100%;
		margin: 0 auto;
		display: flex;
		justify-content: center;
	}

	.index3_left {
		width: 70%;
		padding-left: 10%;
	}

	.index3_right {
		width: 30%;
		font-size: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-right: 10%;
	}

	.index3_right img {
		width: 33vw;
	}

	.index3_left .main_title {
		text-align: left;
		margin-right: 4vw;
		height: auto;
	}

	.index3_left .main_title h1 {
		display: block;
		font-size: 3vw !important;
		font-weight: bold;
		width: 100%;
		margin-top: 1.5vw;
	}

	.index3_left .main_title h3 {
		text-align: left;
		display: inline-block;
		width: 100%;
		font-size: 3vw;
	}

	.i3_left_content {
		width: 100%;
		margin-top: 3vw;
	}

	.i3_left_content ul li .li_inner {
		font-weight: 500;
		margin-bottom: 3vw;
		box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.25);
		height: 4.3vw;
		line-height: 4.3vw;
		padding: 0px 1vw;
		display: inline-block;
		border-radius: 15px;
		font-size: 1.2rem;
		color: #333;
		width: 26vw;
	}

	.i3_left_content ul li span {
		width: 2vw;
		height: 2vw;
		background-color: #ea8935;
		border-radius: 50%;
		color: #fff;
		display: inline-block;
		margin-right: 0.5vw;
		line-height: 2vw;
		text-align: center;
		font-size: 1.3vw;
	}
}



@media only screen and (min-width: 980px) {
	.banner {
		height: 600px;
	}

	.index3box {
		width: 1300px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
	}

	.index3_left {
		width: 30%;
		margin-left: 10px;
	}

	.index3_right {
		width: 30%;
		font-size: 0;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.index3_right img {
		width: 680px;
	}

	.index3_left .main_title {
		text-align: left;
		margin-right: 15px;
		height: auto;
	}

	.index3_left .main_title h1 {
		font-size: 2.8rem;
		font-weight: bold;
		margin-top: 20px;
		white-space: nowrap;
		margin-bottom: 30px;
	}

	.index3_left .main_title h3 {
		text-align: left;
		display: inline-block;
		width: 100%;
		font-size: 60px;
	}

	.i3_left_content {
		width: 100%;
		margin-top: 10px;
	}

	.i3_left_content ul li .li_inner {
		font-weight: 500;
		margin-bottom: 30px;
		box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.25);
		height: 100px;
		line-height: 100px;
		padding: 0px 30px;
		display: flex;
		align-items: center;
		border-radius: 15px;
		font-size: 1.2rem;
		;
		color: #333;
		width: 550px;
	}

	.i3_left_content ul li span {
		width: 50px;
		height: 50px;
		background-color: #ea8935;
		border-radius: 50%;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-right: 10px;
		font-size: 25px;
	}


}

.footer-beian {
	text-align: center;
	font: 12px "";
	margin-bottom: 20px;
}

@media only screen and (max-width: 680px) {}



.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	z-index: 1000;
	height: 100vh;
	display: none;
}

.overlay .view {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}


.popup {
	position: relative;
	width: 360px;
	height: 640px;
	aspect-ratio: 9 / 16;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	padding: 15px;
}

.popup-close {
	position: absolute;
	top: -25px;
	right: -30px;
	background-color: #f44336;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 34px;
	height: 34px;
	font-size: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	padding: 0;
}

.popup-close:hover {
	background-color: #e53935;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
	transform: scale(1.1);
}

.popup-close:active {
	background-color: #d32f2f;
	transform: scale(1);
}


.popup iframe {
	width: 100%;
	height: 100%;
	border: none;
	overflow: hidden;
}



.index5_content .slide_inner .textbox .tc_btn {
	display: inline-block;
	background-color: #fff;
	color: #333;
	font-size: 15px;
	padding: 12px 20px;
	border-radius: 10px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.index5_content .slide_inner .textbox .tc_btn:hover {
	background-color: #4CAF50;
	color: #fff;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}

.index5_content .slide_inner .textbox .tc_btn:active {
	background-color: #45a049;
	transform: translateY(0);
}
/* 黑色遮罩背景 */
.qcode_tc {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	justify-content: center;
	align-items: center;
	z-index: 1000;
	height: 100vh;
	display: none;
  }
  
  /* 二维码弹窗容器 */
  .qcode_box {
	position: relative;
	background-color: #fff;
	padding: 20px;
	border-radius: 8px; /* 圆角 */
	text-align: center;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	max-width: 300px;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  }
  
  /* 二维码图片 */
  .qcode_box img {
	max-width: 100%;
	height: auto;
	margin-bottom: 15px;
  }
  
  /* 弹窗文字 */
  .qcode_box p {
	font-size: 16px;
	color: #333;
	margin: 0;
  }

  /* 整个滚动条 */
::-webkit-scrollbar {
	width: 8px; /* 设置滚动条的宽度 */
	height: 8px; /* 如果是水平滚动条，设置高度 */
  }
  
  /* 滚动条轨道 */
  ::-webkit-scrollbar-track {
	background-color: #f1f1f1; /* 轨道的背景颜色 */
	border-radius: 10px; /* 轨道的圆角 */
  }
  
  /* 滚动条滑块（即滑动的部分） */
  ::-webkit-scrollbar-thumb {
	background-color: #888; /* 滑块的颜色 */
	border-radius: 10px; /* 滑块的圆角 */
	border: 2px solid #f1f1f1; /* 给滑块添加边框，使其看起来更美观 */
  }
  
  /* 滚动条滑块悬停时的样式 */
  ::-webkit-scrollbar-thumb:hover {
	background-color: #555; /* 悬停时滑块的颜色 */
  }