/*common start*/
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;
}

body {
	font-size: 12px;
	color: #666;
	background: #0d0d0d;
	font-family: Arial;
}

	body.head_on {
		overflow: hidden
	}

a {
	color: #666;
	transition: 0.3s;
}

	a:hover {
		color: #f60;
		text-decoration: none;
		cursor: pointer;
	}

p {
	line-height: 1.8em;
	padding: 5px 0;
}

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

.wapper {
	width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
	--main-color: #c4db6a;
	--brand: #c4db6a;
	--brand-rgb: 196,219,106;
	--main-color-000: #000;
	--main-color-333: #333333;
	--main-color-888: #888888;
	--main-transition: all ease 0.4s;
	--main-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	--main-bg: linear-gradient(to right,#185fad 0,#109B04 100%);
}


.header {
	position: relative;
	z-index: 999;
	width: 100%;
	background: rgb(13 13 13 / 80%);
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.headList {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 65px;
}

	.headList .logo {
		display: block;
		line-height: 1;
	}

		.headList .logo img {
			max-height: 45px;
			width: auto;
		}

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

	.menu ul li {
		float: left;
		position: relative;
	}

		.menu ul li dl {
			background: #fff;
			width: 100%;
			position: absolute;
			left: 50%;
			top: 65px;
			box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
			display: none;
			z-index: 9;
			transform: translateX(-50%);
			min-width: 150px;
		}

			.menu ul li dl dd {
				line-height: 40px;
				border-bottom: #ddd dotted 1px;
				position: relative;
			}

				.menu ul li dl dd a {
					font-size: 14px;
					color: #333;
					display: block;
				}

					.menu ul li dl dd a:hover {
						color: #f60;
					}

	.menu a {
		font-size: 12px;
		color: rgba(255,255,255,0.65);
		display: block;
		text-align: center;
		padding: 0 20px;
		font-weight: bold;
	}

		.menu a:hover {
			color: #c4db6a;
		}

a.menu_hover {
	color: #fff;
}

.menu ul li dl dd dl {
	top: 0;
	left: 100%;
	transform: none;
	display: none;
}

.menu ul li dl dd:hover dl {
	display: block;
}

.hBtn {
}

	.hBtn a {
		font-size: 18px;
		color: rgba(255,255,255,0.65);
	}

		.hBtn a:hover {
			color: #fff;
		}

.language {
	position: relative;
	margin-left: 25px;
}

	.language dt {
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 14px;
		color: #000;
		cursor: pointer;
		width: 100px;
		border-radius: 30px;
		background: #fff;
		border: 1px solid #eee;
	}

	.language i {
		padding-left: 20px;
	}

	.language dd {
		position: absolute;
		top: 40px;
		right: 0;
		width: 120px;
		background: #fff;
		display: none;
		box-shadow: var(--main-shadow);
		border-radius: 10px;
		overflow: hidden;
	}

	.language ul li {
		line-height: 40px;
		text-align: center;
	}

		.language ul li a {
			display: block;
			padding: 0 10px;
			font-size: 14px;
			color: #000;
		}

			.language ul li a img {
				width: auto;
				height: 15px;
				margin-right: 5px;
				vertical-align: middle;
			}

			.language ul li a:hover {
				background: #000;
				color: #fff;
			}

		.language ul li.on a {
			color: var(--main-color);
		}
/*.language:hover dd{display: block;}*/


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

.sp_header1 {
	height: 70px;
	background: #fff;
	position: fixed;
	z-index: 9999;
	width: 100%;
	display: none;
	top: 0;
}

	.sp_header1 .language {
		float: right;
		height: 70px;
		margin-right: 12px;
		display: flex;
		align-items: center;
	}

		.sp_header1 .language dd {
			top: 70px;
		}

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

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

.sp_nav1 {
	width: 50px;
	float: right;
	position: relative;
	cursor: pointer;
	height: 30px;
	margin-top: 25px
}

	.sp_nav1 span {
		display: block;
		background: #0188FB;
		width: 30px;
		height: 2px;
		position: absolute;
		left: 10px;
		transition: all ease 0.35s
	}

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

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

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

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

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

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

.sjj_nav1 {
	position: fixed;
	z-index: 999;
	background: #fff;
	width: 100%;
	height: calc(100% - 70px);
	font-size: 14px;
	line-height: 40px;
	top: -100%;
	left: 0;
	overflow: auto;
	overflow-x: hidden;
	transition: top ease 0.35s;
	display: none;
}

.nav_show1 {
	top: 70px;
}

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

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

.sjj_nav1 ul li .sjj_nav_i_se1 svg {
	transform: rotate(0deg)
}

.sjj_nav1 ul li {
	border-top: 1px #e4e8eb solid;
	position: relative;
	line-height: 45px;
	font-size: 16px
}

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

.sjj_nav1 ul li ul {
	display: none
}

.sjj_nav1 ul li a {
	color: #333;
	width: 100%;
	padding: 0 20px;
	display: block;
	box-sizing: border-box;
}

	.sjj_nav1 ul li a:hover {
		color: #0188FB;
	}

.sjj_nav1 ul li ul li a {
	color: #333;
	display: block;
	text-align: left;
}

.sjj_nav1 ul li i svg {
	width: 25px;
	height: 25px;
	fill: #333;
}

.sjj_nav1 ul li .sjj_nav_i_se svg {
	fill: #333
}

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

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

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

/*mSearch*/
.mSearch {
	position: relative;
	width: calc(100% - 20px);
	height: 35px;
	overflow: hidden;
	margin: 20px 10px;
}

	.mSearch input {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		padding: 0 60px 0 10px;
		box-sizing: border-box;
		border: 1px solid #ccc;
		border-radius: 25px;
		background: none;
		outline: none;
	}

	.mSearch button {
		background-image: linear-gradient(to right,#01b2ac 0,#004ea2 100%);
		width: 60px;
		height: 35px;
		position: absolute;
		top: 0;
		right: 0;
		border-radius: 0 25px 25px 0;
		color: #fff;
		font-size: 14px;
		border: none;
	}

/*swiper*/
.swiper-container {
	width: 100%;
	overflow: hidden;
}

.swiper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

	.swiper .swiper-slide {
		background: #fff;
		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 .swiper-slide img {
			display: block;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

	.swiper .swiper-button-next:after, .swiper .swiper-button-prev:after {
		font-size: 30px;
	}

/*common*/
.disFlex {
	flex-wrap: wrap;
	display: -webkit-box; /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box; /* Firefox 17- */
	display: -webkit-flex; /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex; /* Firefox 18+ */
	display: -ms-flexbox; /* IE 10 */
	display: flex;
}

.jusBet {
	justify-content: space-between;
}

.jusCet {
	justify-content: center;
}

.jusEnd {
	justify-content: flex-end;
}

.aliTop {
	align-items: flex-start;
}

.aliCet {
	align-items: center;
}

.aliBtm {
	align-items: flex-end;
}

.img {
	font-size: 0px;
	overflow: hidden;
}

img {
	transition: 0.5s;
}

.f_left {
	float: left;
}

.f_right {
	float: right;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
	overflow: hidden;
}

.clearfix {
	*zoom: 1;
}

.bgfff {
	background: #fff !important;
}

.fff {
	color: #fff !important;
}

em {
	font-style: normal;
}

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

.pt140 {
	padding-top: 140px;
}

.pb140 {
	padding-bottom: 140px;
}

.pt120 {
	padding-top: 120px;
}

.pb120 {
	padding-bottom: 120px;
}

.pt100 {
	padding-top: 100px;
}

.pb100 {
	padding-bottom: 100px;
}

.pt80 {
	padding-top: 80px;
}

.pb80 {
	padding-bottom: 80px;
}

.pt60 {
	padding-top: 60px;
}

.pb60 {
	padding-bottom: 60px;
}

.pt50 {
	padding-top: 50px;
}

.pb50 {
	padding-bottom: 50px;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mt35 {
	margin-top: 35px;
}

.mt50 {
	margin-top: 50px;
}

.mt60 {
	margin-top: 60px;
}

.mt70 {
	margin-top: 70px;
}

.mt80 {
	margin-top: 80px;
}

.textCet {
	text-align: center;
}

.textRight {
	text-align: right;
}

.pc_show {
}

.m_show {
	display: none;
}

.iTitCn {
}

.iTitEn {
	font-size: 12px;
	color: var(--main-color);
	opacity: 0.9;
	text-transform: capitalize;
}

.iTit {
	font-size: 36px;
	color: #fff;
	font-weight: bold;
}

.iTxt {
	font-size: 18px;
	color: #ffffff66;
}

.iLine i {
}

.hidden {
	overflow: hidden;
}

.comBg {
	background-size: cover;
	background-repeat: no-repeat;
}

.iVideo {
	width: 100%;
}

	.iVideo video {
		width: 100%;
	}

.iImg {
	width: 100%;
}

	.iImg img {
		width: 100%;
	}

.iTop {
	width: 100%;
}

	.iTop .iTit {
		margin: 10px 0;
	}

	.iTop .txt {
		font-size: 14px;
		color: #ffffff4c;
	}

		.iTop .txt span {
			display: block;
			width: 35%;
		}

		.iTop .txt i {
			width: 100%;
			flex: 1;
			height: 1px;
			background: #fff;
			opacity: 0.1;
			margin-left: 10px;
			display: block;
			margin-top: 10px;
		}


/*-------------------------------------------*/

/*banner*/
.banner {
	width: 100%;
}

.bannerSwiper .swiper-pagination-bullet {
	opacity: 1;
	background: #fff;
	transition: width ease 0.35s;
	border-radius: 20px;
}

.bannerSwiper .swiper-pagination-bullet-active {
	background: var(--main-color);
	width: 20px;
}

.bannerSwiper .swiper-button-next:after, .bannerSwiper .swiper-button-prev:after {
	color: #fff;
}

.index1 {
	padding: 12vw 0;
	position: relative;
	background: radial-gradient(circle at 72% 30%, rgb(196 219 106 / 15%) 0%, transparent 25%);
}

.i1Warp {
	width: 100%;
}

	.i1Warp .left {
		width: 48%;
	}

	.i1Warp .right {
		width: 48%;
	}

	.i1Warp .box {
		width: 100%;
	}

		.i1Warp .box .icon {
			width: 80px;
			height: 80px;
			border-radius: 12px;
			display: flex;
			justify-content: center;
			align-items: center;
			background: rgba(var(--brand-rgb),.08);
			border: 1px solid rgba(var(--brand-rgb),.15);
			box-shadow: 0 0 15px rgba(var(--brand-rgb),.12);
		}

			.i1Warp .box .icon img {
				width: auto; /* height: auto; */
				max-width: 100%; /* max-height: 100%; */
				max-height: 53px;
			}

		.i1Warp .box .info {
			flex: 1;
			padding-left: 20px;
		}

			.i1Warp .box .info strong {
				font-size: 48px;
				color: #fff;
				font-weight: bold;
				display: block;
				line-height: 1;
			}

			.i1Warp .box .info span {
				font-size: 16px;
				color: var(--main-color);
				display: block;
				margin-top: 3px;
			}

	.i1Warp .iTxt {
		margin-top: 40px;
		max-width: 448px;
	}

.i1Tag {
	margin-top: 40px;
}

	.i1Tag span {
		display: inline-block;
		padding: 8px 16px;
		margin-right: 12px;
		font-size: 12px;
		color: #ffffff80;
		border-radius: 30px;
		border: 1px solid hsla(0,0%,100%,.08);
		background: hsla(0,0%,100%,.04);
	}

		.i1Tag span img {
			width: 15px;
			margin-right: 5px;
			vertical-align: middle;
		}

.i1Down {
	margin-top: 60px;
}

	.i1Down a {
		font-size: 12px;
		color: #ffffff33;
		font-weight: bold;
		letter-spacing: 2px;
	}

		.i1Down a i {
			padding-right: 3px;
		}

		.i1Down a:hover {
			color: var(--main-color);
		}

.i1Box {
	width: 100%;
	max-width: 448px;
	margin-left: auto;
	position: relative;
	padding: 32px;
	border: 1px solid hsla(0,0%,100%,.08);
	background: rgba(26,26,26,.8);
	backdrop-filter: blur(20px);
	border-radius: 20px;
}

	.i1Box .t1 {
		font-size: 12px;
		color: var(--main-color);
	}

		.i1Box .t1 i {
			display: inline-block;
			margin-right: 5px;
		}

			.i1Box .t1 i img {
				width: 16px;
				vertical-align: middle;
			}

	.i1Box .tit {
		font-size: 24px;
		color: #fff;
		font-weight: bold;
		margin-top: 10px;
	}

	.i1Box .txt {
		font-size: 14px;
		color: hsla(0,0%,100%,.3);
		margin-top: 10px;
	}

	.i1Box .line {
		width: 100%;
		height: 1px;
		background: linear-gradient(90deg,rgba(var(--brand-rgb),.2),hsla(0,0%,100%,.06),rgba(var(--brand-rgb),.2));
		margin: 20px 0;
	}

.iForm {
	width: 100%;
}

	.iForm .t2 {
		font-size: 12px;
		color: hsla(0,0%,100%,.3);
		margin-bottom: 10px;
	}

	.iForm .input {
		margin-bottom: 15px;
	}

		.iForm .input input {
			width: 100%;
			height: 56px;
			border: 1px solid hsla(0,0%,100%,.08);
			border-radius: 10px;
			padding: 0 10px;
			text-align: center;
			outline: none;
			font-size: 16px;
			background: #222422;
			color: #fff;
		}

			.iForm .input input:focus {
				border-color: var(--main-color);
			}

	.iForm .btn {
		width: 100%;
	}

		.iForm .btn button {
			width: 100%;
			height: 48px;
			border: none;
			border-radius: 10px;
			color: #000;
			font-size: 15px;
			text-transform: uppercase;
			background: #8e9c59;
			opacity: 0.6;
			font-weight: bold;
		}

			.iForm .btn button.on {
				opacity: 1;
			}

	.iForm .tag {
		margin-top: 30px;
		font-size: 12px;
		color: #ffffff33;
		text-transform: uppercase
	}

		.iForm .tag span {
		}

		.iForm .tag img {
			width: 14px;
			vertical-align: middle;
			margin-right: 5px;
			opacity: 0.3;
		}

.index2 {
	width: 100%;
	background: rgba(var(--brand-rgb),.02);
	border-top: 1px solid rgba(var(--brand-rgb),.1);
	border-bottom: 1px solid rgba(var(--brand-rgb),.1);
}

.i2List {
	width: 100%;
}

	.i2List ul li {
		width: 25%;
		padding: 20px;
		border-right: 1px solid rgba(var(--brand-rgb),.1);
	}

		.i2List ul li:last-child {
			border: none;
		}

	.i2List .part {
		display: block;
		width: 100%;
		text-align: center;
	}

		.i2List .part .tit {
			font-size: 20px;
			font-weight: bold;
			color: var(--main-color);
		}

		.i2List .part .txt {
			font-size: 12px;
			color: #ffffff4c;
			margin-top: 10px;
			text-transform: uppercase;
		}

.index3 {
	width: 100%;
	padding: 6vw 0;
}

.i3Top {
	margin-top: 50px;
	margin-bottom: 35px;
}

	.i3Top .left {
		font-size: 12px;
		color: #ffffff66;
	}

.search1 {
	position: relative;
	width: 300px;
}

	.search1 input {
		width: 100%;
		height: 42px;
		border: 1px solid hsla(0,0%,100%,.1);
		background: rgba(26,26,26,.8);
		backdrop-filter: blur(20px);
		border-radius: 8px;
		padding: 0 50px 0 10px;
		outline: none;
		color: #fff;
	}

		.search1 input:focus {
			border-color: #999;
		}

	.search1 button {
		position: absolute;
		top: 0;
		right: 0;
		width: 42px;
		height: 42px;
		border: none;
		background: transparent;
		color: #fff;
		font-size: 16px;
		opacity: 0.8;
	}

.i3List {
	width: 100%;
}

	.i3List > ul {
		margin-left: -10px;
		margin-right: -10px;
	}

		.i3List > ul > li {
			width: 25%;
			padding: 0 10px;
			margin-bottom: 20px;
		}

.i3Part {
	width: 100%;
	height: 100%;
	position: relative;
	border-radius: 8px;
	border: 1px solid hsla(0,0%,100%,.1);
	transition: 0.3s;
	cursor: pointer;
	overflow: hidden;
	border-top-width: 1px;
	border-top-style: solid;
	background: rgba(26,26,26,.8);
}

	.i3Part .img {
		width: 100%;
		height: 30.5vw;
		position: relative;
	}

		.i3Part .img:after {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			content: "";
		}

		.i3Part .img img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		.i3Part .img video {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

	.i3Part .tag {
		position: absolute;
		left: 15px;
		top: 15px;
		display: inline-block;
		padding: 3px 6px;
		background: rgba(0,0,0,0.6);
		font-size: 13px;
		color: #fff;
		border-radius: 5px;
		display: flex;
		align-items: center;
	}

		.i3Part .tag i {
			display: block;
			width: 8px;
			height: 8px;
			border-radius: 50%;
			margin-right: 5px;
		}

	.i3Part .desc {
		width: 100%;
		padding: 20px;
	}

	.i3Part .tit {
		font-size: 16px;
		color: #fff;
	}

	.i3Part:hover {
		transform: translateY(-3px);
	}

.iTc {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.86);
	z-index: 9999;
	display: none;
}

.iTcBox {
	width: 100%;
	height: 100%;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.iTcWarp {
	position: relative;
	width: 100%;
	max-width: 670px;
	position: relative;
	border-radius: 10px;
	border: 1px solid hsla(0,0%,100%,.1);
	display: flex;
	justify-content: space-between;
	height: 460px;
	background: rgba(26,26,26,.8);
}

.iTcClose {
	position: absolute;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	color: #fff;
	font-size: 16px;
	top: -15px;
	right: -15px;
	text-align: center;
	line-height: 34px;
	cursor: pointer;
}

.iTcWarp .left {
	width: 240px;
	height: 100%;
}

.iTcWarp .right {
	width: calc(100% - 240px);
	height: 100%;
}

.iTcWarp .img {
	width: 100%;
	height: 100%;
	position: relative;
}

	.iTcWarp .img:after {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		content: "";
	}

	.iTcWarp .img img,
	.iTcWarp .img video {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.iTcWarp .tag {
	position: absolute;
	left: 15px;
	top: 15px;
	display: inline-block;
	padding: 3px 6px;
	background: rgba(0,0,0,0.6);
	font-size: 13px;
	color: #fff;
	border-radius: 5px;
	display: flex;
	align-items: center;
	z-index: 2;
}

	.iTcWarp .tag i {
		display: block;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		margin-right: 5px;
		background: rgb(232, 93, 4);
	}

.i3Info {
	width: 100%;
	padding: 30px;
	height: 100%;
	overflow: auto;
}

	.i3Info .t1 {
		font-size: 12px;
		color: #ffffff4c;
		text-transform: uppercase;
	}

	.i3Info .tit {
		font-size: 24px;
		color: #fff;
		font-weight: bold;
		margin: 20px 0;
	}

	.i3Info .tab_tit {
		font-size: 12px;
		color: #ffffff4c;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

		.i3Info .tab_tit span {
		}

		.i3Info .tab_tit i {
			width: 100%;
			height: 1px;
			background: #fff;
			opacity: 0.2;
			flex: 1;
			display: block;
			margin-left: 5px;
		}

	.i3Info .tab_list {
		width: 100%;
		margin: 15px 0;
	}

		.i3Info .tab_list ul {
			justify-content: space-between;
		}

			.i3Info .tab_list ul li {
				width: calc(50% - 3px);
				margin-bottom: 6px;
				background: hsla(0,0%,100%,.03);
				padding: 8px 12px;
				border: 1px solid rgba(255,255,255,0.1);
				border-radius: 5px;
				font-size: 12px;
				color: #ffffff4c;
				display: flex;
				justify-content: space-between;
				background: rgba(26,26,26,.8);
				align-items: center;
			}

		.i3Info .tab_list span {
		}

		.i3Info .tab_list em {
			color: rgb(37, 99, 235);
			font-size: 12px;
		}

	.i3Info .btm {
		margin-top: 20px;
		text-align: center;
		font-size: 12px;
		color: #666;
	}

		.i3Info .btm i {
			margin-right: 5px;
		}

		.i3Info .btm span {
		}

.footer {
	width: 100%;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright {
	padding: 20px 0;
	font-size: 12px;
	color: #ffffff33;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.fWarp {
	padding: 50px 0;
	font-size: 12px;
	color: #ffffff33;
}

	.fWarp .item {
		width: 30%;
	}

.fLogo {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #fffffff99;
	font-weight: bold;
}

	.fLogo img {
		width: auto;
		max-height: 35px;
	}

.fTit {
	margin-bottom: 20px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
}

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

.fInfo i img {
	width: 14px;
	margin-right: 6px;
	vertical-align: middle;
	opacity: 0.3;
}


/*error*/

.search_detail {
	padding: 100px 0;
}

.search_box {
	width: 100%;
	max-width: 672px;
	border: 1px solid hsla(0,0%,100%,.1);
	background: rgba(26,26,26,.8);
	border-radius: 18px;
	padding: 30px;
	margin: 0 auto;
	margin-bottom: 20px;
}

	.search_box .icon {
		width: 56px;
		height: 56px;
		margin: 0 auto;
		border-radius: 10px;
		background: rgba(239,68,68,.1);
		display: flex;
		justify-content: center;
		align-items: center;
	}

		.search_box .icon img,
		.search_box .icon svg {
			width: 23px;
			color: rgb(248 113 113/var(--tw-text-opacity,1));
		}

	.search_box .tip {
		text-align: center;
		font-size: 12px;
		margin: 10px 0;
	}

	.search_box .tit {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		color: #fff;
		margin: 10px 0;
	}

	.search_box .txt {
		text-align: center;
		font-size: 14px;
		color: hsla(0,0%,100%,.4);
	}

	.search_box .info {
		margin-top: 20px;
	}

		.search_box .info .item {
			margin-top: 6px;
		}

		.search_box .info .box {
			border: 1px solid hsla(0,0%,100%,.1);
			background: hsla(0,0%,100%,.03);
			border-radius: 8px;
			padding: 12px;
			display: flex;
			justify-content: space-between;
			align-items: center;
			font-size: 14px;
			color: #ffffff4c;
		}

			.search_box .info .box span {
			}

			.search_box .info .box em {
				color: rgb(248 113 113/var(--tw-text-opacity,1));
			}

.search_btn {
	width: 100%;
	max-width: 672px;
	margin-bottom: 20px;
	border: 1px solid hsla(0,0%,100%,.1);
	background: rgba(26,26,26,.8);
	border-radius: 18px;
	padding: 12px;
	text-align: center;
	font-size: 14px;
	color: #ffffff99;
	margin: 0 auto;
	display: block;
}

	.search_btn:hover {
		color: #fff;
		border: 1px solid rgba(var(--brand-rgb),.3);
	}

.search_box2 {
	width: 100%;
	max-width: 672px;
	border: 1px solid hsla(0,0%,100%,.1);
	background: rgba(26,26,26,.8);
	border-radius: 18px;
	padding: 30px;
	margin: 0 auto;
	margin-bottom: 20px;
}

	.search_box2 .i3Info {
		padding: 0;
	}

.search_tip {
	width: 100%;
	max-width: 672px;
	border: 1px solid hsla(0,0%,100%,.1);
	background: rgba(26,26,26,.8);
	border-radius: 18px;
	padding: 20px;
	margin: 0 auto;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

	.search_tip .icon {
		width: 50px;
		height: 50px;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-right: 20px;
		border-radius: 12px;
		color: var(--main-color);
		font-size: 20px;
		background: rgba(var(--brand-rgb),.1);
	}

	.search_tip .info {
		flex: 1;
	}

		.search_tip .info strong {
			font-size: 20px;
			color: #fff;
			font-weight: bold;
			display: block;
		}

		.search_tip .info span {
			font-size: 14px;
			color: #666;
			margin-top: 10px;
		}

.inside {
	padding: 100px 0;
	min-height: 600px;
}

	.inside img {
		max-width: 100%;
	}





@media only screen and (max-width: 1400px) {
	.wapper {
		width: 100%;
	}
}

@media only screen and (max-width: 980px) {
	/*.header{ display:none}*/
	.wapper {
		max-width: 780px;
	}

	.sp_header1 {
		display: block;
	}

	.sjj_nav1 {
		display: block;
	}

	.index1 {
		padding: 60px 0;
	}

	.i1Warp .left {
		width: 100%;
		margin-bottom: 35px;
	}

	.i1Warp .right {
		width: 100%;
	}

	.i1Warp .box .info strong {
		font-size: 24px;
	}

	.i1Warp .box .info span {
		font-size: 14px;
	}

	.iTxt {
		font-size: 14px;
	}

	.i1Tag span {
		margin-right: 10px;
		margin-bottom: 10px;
	}

		.i1Tag span:last-child {
			margin-right: 0;
		}

	.i1Box {
		margin: 0 auto;
	}

	.i2List ul li {
		width: 50%;
	}

		.i2List ul li:nth-child(1),
		.i2List ul li:nth-child(2) {
			border-bottom: 1px solid rgba(var(--brand-rgb),.1);
		}

		.i2List ul li:nth-child(2) {
			border-right: none;
		}

	.iTop .txt {
		font-size: 12px;
	}

		.iTop .txt span {
			width: 55%;
		}

	.index3 {
		padding: 60px 0;
	}

	.search1 {
		width: 260px;
	}

	.i3List > ul > li {
		width: 50%;
		padding: 0 5px;
		margin-bottom: 10px;
	}

	.i3Part .desc {
		padding: 12px;
	}

	.iTcWarp .left {
		width: 180px;
	}

	.iTcWarp .right {
		width: calc(100% - 180px);
	}

	.i3Info {
		padding: 20px;
	}

		.i3Info .tab_list ul li {
			width: 100%;
		}

	.fWarp .item {
		width: 100%;
		padding: 10px 0;
	}

	.i3Part .img {
		height: 300px;
	}

	.i3Info .tit {
		font-size: 20px;
	}
}
