@charset "utf-8";
.foot-media>div:hover>span>img {
        transform:scale(1.2);
}
* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-weight: normal;
	outline: none;
}

@font-face {
	font-family: 'sySongBold';
	src:
		url('./Source_Han_Sans_SC_Bold.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: syh-r;
	src:
		url('../fonts/SourceHanSansCN-Regular.otf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: syh-m;
	src:
		url('../fonts/SourceHanSansCN-Medium.otf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: syh-b;
	src:
		url('../fonts/SourceHanSansCN-Bold.otf');
	font-weight: normal;
	font-style: normal;
}

html,
body {
	color: #333;
	font-family: syh-r, "微软雅黑";
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: left;
}

html {
	/* font-size: 100px; */
	font-size: 5.2083333333333333vw;
}

body {
	font-size: 0.16rem;
}

.index::-webkit-scrollbar,
html::-webkit-scrollbar {
	width: 4px;
	height: 8px;
	background-color: #F5F5F5;
}

.index::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: #E2E2E2;
}

.index::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #333;
}

/* rem */

/* @media screen and (min-width:2000px) {
	html {
		font-size: 110px !important;
	}
}

@media screen and (max-width:1940px) {
	html {
		font-size: 100px !important;
	}
}

@media screen and (max-width:1800px) {
	html {
		font-size: 95px !important;
	}
}

@media screen and (max-width:1600px) {
	html {
		font-size: 90px !important;
	}
}

@media screen and (max-width:1400px) {
	html {
		font-size: 90px !important;
	}
}

@media screen and (max-width:1200px) {
	html {
		font-size: 85px !important;
	}
} */


@media screen and (max-width:1024px) {
	html {
		font-size: 85px !important;
	}
}

/*
@media screen and (max-width:900px) {
	html {
		font-size: 85px !important;
	}
}

@media screen and (max-width:640px) {
	html {
		font-size: 80px !important;
	}
}

@media screen and (max-width:480px) {
	html {
		font-size: 80px !important;
	}
}

@media screen and (max-width:375px) {
	html {
		font-size: 75px !important;
	}
}

@media screen and (max-width:360px) {
	html {
		font-size: 70px !important;
	}
}

@media screen and (max-width:350px) {
	html {
		font-size: 65px !important;
	}
} */

/* rem */

li {
	list-style: none;
}

a {
	text-decoration: none;
	color: #333;
}

a:hover {
	color: #0005FF;
}

img,
input {
	border: 0;
	outline: none;
}

body .clear {
	clear: both;
	height: 0 !important;
	width: 0 !important;
	border: none !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
}

.clearfix:after {
	content: "";
	clear: both;
	display: block;
	overflow: hidden;
	font-size: 0;
	height: 0;
}

.clearfix {
	zoom: 1;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.wp {
	width: 16rem;
	max-width: 94%;
	margin: 0 auto;
}

.pic {
	padding-top: 75%;
	position: relative;
	overflow: hidden;
}

.pic::before {
	position: absolute;
	top: 0;
	left: -90%;
	z-index: 2;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	opacity: .25;
	pointer-events: none;
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 53) 50%, rgba(255, 255, 255, 0) 70%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 53) 50%, rgba(255, 255, 255, 0) 70%);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
	z-index: 3;
}

.pic img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 100%;
	height: 100%;
	transition: all 1s;
	object-fit: cover;
}

.pich:hover .pic img {
	width: 110%;
	height: 110%;
}

.pich:hover .pic:before {
	-webkit-animation: shine 1s;
	animation: shine 1s
}

@-webkit-keyframes shine {
	100% {
		left: 125%
	}
}

@keyframes shine {
	100% {
		left: 125%
	}
}

.pic div.a {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 100%;
	height: 100%;
	transition: all .8s;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.pich:hover .pic div.a {
	width: 110%;
	height: 110%;
}

@keyframes icon-yh {
	0% {
		transform: rotateZ(0);
	}

	10% {
		transform: rotateZ(10deg);
	}

	20% {
		transform: rotateZ(0);
	}

	30% {
		transform: rotateZ(-10deg);
	}

	40% {
		transform: rotateZ(0);
	}

	50% {
		transform: rotateZ(10deg);
	}

	60% {
		transform: rotateZ(0);
	}

	70% {
		transform: rotateZ(-10deg);
	}

	80% {
		transform: rotateZ(0);
	}

	90% {
		transform: rotateZ(10deg);
	}

	100% {
		transform: rotateZ(0);
	}
}

@keyframes jello {

	from,
	11.1%,
	to {
		-webkit-transform: none;
		-moz-transform: none;
		transform: none
	}

	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		-moz-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}

	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		-moz-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg)
	}

	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		-moz-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}

	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		-moz-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}

	66.6% {
		-webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
		-moz-transform: skewX(-.78125deg) skewY(-.78125deg);
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}

	77.7% {
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
		-moz-transform: skewX(0.390625deg) skewY(0.390625deg);
		transform: skewX(0.390625deg) skewY(0.390625deg)
	}

	88.8% {
		-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
		-moz-transform: skewX(-.1953125deg) skewY(-.1953125deg);
		transform: skewX(-.1953125deg) skewY(-.1953125deg)
	}
}

.wap {
	display: none !important;
}

/*search*/
.search {
	width: 3.44rem;
	height: 0.46rem;
	border-radius: 0.28rem;
	background: #F7F7F7;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.5s;
}

.search:hover {
	background: rgba(4, 88, 200, 0.05);
}

input,
button {
	border: none;
	outline: none;
}

.search .text {
	flex: 1;
	min-width: 0;
	padding-left: 0.16rem;
	padding-right: 0;
	height: 0.46rem;
	line-height: 0.46rem;
	font-size: 0.16rem;
	background: none;
	color: #333;
}

.search .button {
	width: 0.7rem;
	height: 0.46rem;
	cursor: pointer;
	font-size: 0;
	background: url(../images/fdj.png) no-repeat center;
	background-size: 0.25rem auto;
}

input::-webkit-input-placeholder {
	color: #999;
}

input::-moz-input-placeholder {
	color: #999;
}

input::-ms-input-placeholder {
	color: #999;
}

/*头部*/
.pc {
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 99991;
	background: #fff;
	padding: 0.17rem 0 0.21rem 0;
	transition: all 0.7s ease-out 0s;
}

.pc.fixed {
	/* transform: none;
	opacity: 1;
	visibility: visible; */
}

.pc.fixed .head-t {
	/* padding-top: 0;
	background-color: #9B0C14; */
}

.head-c {
	display: flex;
	align-content: center;
	justify-content: space-between;
	position: relative;
	z-index: 998;
	transition: all 0.5s;
}

.head-r {
	position: relative;
	display: flex;
	align-items: center;
}


.logo {
	width: 4.93rem;
}

.logo a {
	display: block;
	font-size: 0;
}

.logo img {
	display: block;
	max-width: 100%;
}

.foot-media {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.foot-media>div {
	position: relative;
	cursor: pointer;
	margin-left: 0.26rem;
}

.foot-media>div:hover div {
	display: block;
}

.foot-media>div>span {
	display: block;
	width: 0.46rem;
	height: 0.46rem;
	line-height: 0.46rem;
	background: #F7F7F7;
	border-radius: 50%;
	text-align: center;
	position: relative;
	font-size: 0;
	transition: all 0.5s;
}

.foot-media>div>span>img {
	display: inline-block;
	width: 100%;
	/* height: 1rem; */
	vertical-align: middle;
	/* max-width: 0.32rem; */
	/* max-height: 0.6rem; */
	transition: all 0.5s;
}

.foot-media>div:hover>span>img {
	/*transform:scale(0.8);*/
}

.foot-media>div>span>svg path {
	/* fill: #0458C8; */
	transition: all 0.5s;
}

.foot-media>div:first-child>span>svg path {
	fill: #00C800;
}

.foot-media>div:nth-child(2)>span>svg path {
	fill: #111;
}

.foot-media>div:nth-child(3)>span>svg path {
	fill: #FF2742;
}

.foot-media>div:hover>span {
	background: #fff;
}

.foot-media>div:hover>span {
	/*background: #0005FF;*/
}

.foot-media>div:hover>span>svg path {
	fill: #fff;
}

.foot-media>div>div {
	position: absolute;
	left: 50%;
	top: 120%;
	transform: translateX(-50%);
	width: 1.4rem;
	padding: 0.1rem;
	background: #fff;
	box-shadow: 0px 0.04rem 0.1rem 0px rgba(4, 88, 200, 0.3);
	z-index: 9;
	display: none;
}

.foot-media>div>div::after {
	content: '';
	position: absolute;
	top: -5px;
	left: 50%;
	transform: translateX(-50%);
	border-top: 5px solid #fff;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
}

.foot-media>div>div img {
	display: block;
	width: 100%;
}

.foot-media>div>img {
	display: block;
	margin: 0 auto;
}

.navA {
	width: 0.46rem;
	height: 0.46rem;
	line-height: 0.46rem;
	font-size: 0;
	background: #0005FF;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	margin-left: 0.45rem;
	position: relative;
}

.navA::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -0.2rem;
	height: 0.37rem;
	border-left: 1px solid #D8D8D8;
	z-index: -1;
}

.navA img {
	width: 0.2rem;
	height: 0.2rem;
	vertical-align: middle;
}

.navA .a-menu,
.navA .b-menu {
	display: inline-block;
}

.navA .a-close,
.navA .b-close {
	display: none;
}

.navAcon {
	position: absolute;
	top: 0;
	left: 100%;
	z-index: 1;
	background: linear-gradient(180deg, #EBF3FF 0%, #FFFFFF 100%);
	box-shadow: 0px 0.04rem 0.1rem 0px rgba(3, 81, 186, 0.3);
	padding: 0.15rem 0 0.3rem 0;
	visibility: hidden;
	opacity: 0;
	transform: translateX(0.2rem);
	transition: all 0.5s;
}

.head-r.on .navAcon {
	visibility: visible;
	opacity: 1;
	z-index: 999;
	transform: none;
}

/* .navAcon::before {
	content: '';
	position: absolute;
	top: 0.18rem;
	left: 100%;
	border-left: 0.08rem solid #9B0C14;
	border-top: 0.08rem solid transparent;
	border-bottom: 0.08rem solid transparent;
} */

.navAcon ul {
	max-height: 6rem;
	overflow-y: auto;
}

.navAcon ul::-webkit-scrollbar {
	width: 3px;
	height: 8px;
}

.navAcon ul::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: #E2E2E2;
}

.navAcon ul::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #333;
}

.navAcon ul li {
	padding: 0 0.1rem;
	position: relative;
}

.navAcon ul li::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 0;
	border-top: 1px solid #0005FF;
	transition: all 0.5s;
}

.navAcon ul li:hover::after {
	width: 0.2rem;
}

.navAcon ul li a {
	display: block;
	width: 1.3rem;
	font-size: 0.2rem;
	font-weight: 400;
	border-bottom: 1px dashed rgba(158, 158, 158, 0.4);
	padding: 0.15rem 0.13rem;
	transition: all 0.5s;
}


/* nav */
.nav {
	height: 100%;
}

.nav>ul {
	font-size: 0;
	height: 100%;
	display: flex;
	align-items: center;
}

.nav>ul>li {
	position: relative;
	height: 100%;
	transition: all 0.5s;
}

.nav>ul>li>a {
	display: flex;
	align-items: center;
	height: 100%;
	width: 0.55rem;
	font-size: 0.18rem;
	padding: 0 0.15rem;
	text-align: center;
	position: relative;
	transition: all 0.5s;
}

.nav>ul>li>a::after {
	/* content: ""; */
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	border-bottom: 0.02rem solid #fff;
	transform: scaleX(0);
	transition: all 0.3s;
}

.nav>ul>li.on>a::after,
.nav>ul>li:hover>a::after,
.nav>ul>li.active>a::after {
	transform: none;
}

.nav>ul>li.active>a {
	background: #EDEDED;
	color: #9B0C14;
}

.nav>ul>li:hover>a {
	background: #EDEDED;
	color: #9B0C14;
}

.nav>ul>li>div {
	position: absolute;
	top: 100%;
	z-index: 9999;
	overflow: hidden;
	line-height: normal;
	width: 100%;
	left: 0;
	background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
	background: #fff;
	box-shadow: 0 0.04rem 0.08rem 0 rgba(0, 0, 0, 0.12);
	opacity: 0;
	transform: scaleY(0);
	transform-origin: top;
	visibility: hidden;
	transition: all 0.5s;
	z-index: -9;
}

.nav>ul>li>div>ul {
	overflow: hidden;
	padding: 0.1rem 0;
}

.nav>ul>li>div>ul>li a {
	display: block;
	font-size: 0.16rem;
	line-height: 0.26rem;
	padding: 0.1rem;
	color: #333;
	transition: all 0.3s;
}

.nav>ul>li>div>ul>li:hover a {
	color: #fff;
	background: #025EA6;
}

.nav>ul>li:hover>div {
	opacity: 1;
	transform: none;
	visibility: visible;
	z-index: 9;
}


/*底部*/

.foot {
	color: #E1E9FF;
	position: relative;
}

.foot a {
	color: #E1E9FF;
	transition: all 0.5s;
}

.foot a:hover {
	color: rgba(255, 255, 255, 1);
}

.foot-t {
	position: relative;
	z-index: 2;
}

.foot-logo {
	width: 4.93rem;
	max-width: 100%;
}

.foot-logo a,
.foot-logo img {
	display: block;
	max-width: 100%;
}

.foot-rb {
	width: 2.5rem;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.foot-rb ul {
	padding: 0.16rem 0;
}

.foot-rb li {
	position: relative;
	z-index: 1;
}

.foot-rb li a {
	display: block;
}

.foot-rb li a .pic {
	padding-top: 140.15%;
	background: #fff;
}

.foot-rb li a .pic .a {
	opacity: 0.3;
}

.foot-rb li.swiper-slide-active {
	z-index: 2;
}

.foot-rb li.swiper-slide-active a {
	transform: scale(1.2);
}

.foot-rb li.swiper-slide-active a .pic .a {
	opacity: 1;
}


.foot-b {
	position: relative;
	z-index: 1;
	margin-top: 0.34rem;
	padding: 0.35rem 0.5rem 0.3rem 0.5rem;
}

.foot-b::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: calc((100vw - 16rem)/2 + 100%);
	background: linear-gradient(270deg, #34F3FD 0%, #0005FF 100%);
	z-index: -1;
}

.foot-b::before {
	content: '';
	position: absolute;
	top: 0.6rem;
	bottom: 0;
	left: -0.6rem;
	width: calc((100vw - 16rem)/2 + 100%);
	background: #F0F1FF;
	z-index: -1;
}

.link ul {
	display: flex;
}

.link ul li a {
	display: block;
	font-size: 0.18rem;
	line-height: 0.2rem;
	text-align: center;
	position: relative;
}

.link ul li+li {
	margin-left: 0.4rem;
}

.link ul li+li a::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -0.2rem;
	height: 0.1rem;
	border-left: 1px solid #99B9E4;
}

.foot-dz {
	margin-top: 0.28rem;
}

.foot-dz p {
	font-size: 0.18rem;
	line-height: 0.36rem;
}















@media screen and (max-width:1600px) {}

@media screen and (max-width:1500px) {}

@media screen and (max-width:1400px) {}

@media screen and (max-width:1300px) {}

@media screen and (max-width:1200px) {}

@media screen and (max-width:1100px) {}

@media screen and (max-width:1024px) {

	.wp {
		width: auto;
		max-width: inherit;
		padding-left: 0.2rem !important;
		padding-right: 0.2rem !important;
	}

	body {
		padding-top: 60px !important;
	}

	.pc {
		display: none !important;
	}

	.m-top {
		max-width: 19.2rem;
		margin: 0 auto;
		position: fixed;
		right: 20px;
		top: 18px;
		width: 25px;
		height: 25px;
		z-index: 9999;
	}

	.wap {
		display: block !important;
	}

	.wap-menu {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 99999;
		font-size: 0;
	}

	.wap-menu img {
		height: 25px;
	}

	.close-menu {
		display: none;
		position: absolute;
		right: 0;
		top: 0;
	}

	.m-head {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		background: #fff;
		z-index: 999;
		padding: 10px 20px;
	}

	.m-head.on {
		box-shadow: 0 0 0.1rem rgba(0, 0, 0, .1);
	}

	.m-logo {
		font-size: 0;
	}

	.m-logo a {
		font-size: 0;
		line-height: 40px;
		display: block;
	}

	.m-logo img {
		max-height: 40px;
		max-width: 80%;
		vertical-align: middle;
	}

	.m-tlink {
		font-size: 12px;
		padding: 10px 15px 0 15px;
		color: rgba(255, 255, 255, 0.5);
	}

	.m-tlink a {
		font-size: 12px;
		margin: 0 10px 0 0;
		color: #fff;
		display: inline-block;
		line-height: 24px;
		/*background: #fff;*/
		line-height: 24px;
		border-radius: 5px;
	}

	.m-tlink a img {
		vertical-align: -2px;
		padding-right: 5px;
		height: 14px;
	}

	.m-search {
		margin: 0 15px;
		padding-right: 50px;
		padding-left: 10px;
		padding-top: 5px;
		padding-bottom: 5px;
		position: relative;
		line-height: 35px;
		/* background: #fff; */
		margin-top: 15px;
		margin-bottom: 15px;
		border: 1px solid #fff;
	}

	.m-search input[type="text"] {
		display: block;
		width: 100%;
		line-height: 25px;
		background: none;
		color: #fff;
		font-size: 12px;
	}

	.m-search input[type="text"]::placeholder {
		color: #fff;
	}

	.m-search input[type="image"] {
		position: absolute;
		right: 10px;
		top: 10px;
		height: 15px;
	}

	.m-nav {
		position: fixed;
		top: 60px;
		right: -100%;
		bottom: 0;
		z-index: 999;
		background: #0458C8;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		overflow-y: scroll;
		width: 100%;
		max-width: 375px;
	}

	.m-nav .top-r {
		color: #fff;
		padding-left: 15px;
	}

	.m-nav ul {
		padding: 0 15px;
		/* border-top: 1px solid rgba(255, 255, 255, 0.2); */
	}

	.m-nav ul li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		position: relative;
	}

	.m-nav ul li>span.on {
		transform: rotateZ(90deg);
	}

	.m-nav ul li ul {
		display: none;
	}

	.m-nav ul li ul li {
		border: none;
	}

	.m-nav>ul>li a {
		display: block;
		font-size: 14px;
		line-height: 20px;
		padding: 15px 0;
		position: relative;
		color: #fff;
	}

	.m-nav>ul>li ul li a {
		padding: 10px 0;
	}

	.m-nav>ul>li>span {
		position: absolute;
		width: 20px;
		height: 20px;
		background: url(../images/m-nav_down.png) no-repeat;
		background-size: 14px 14px;
		background-position: center center;
		right: 0;
		top: 15px;
		cursor: pointer;
		display: block;
		color: #fff;
		transition: all 0.3s;
	}

	.foot-b::after {
		width: calc(100% + 0.2rem);
	}

	.foot-b::before {
		top: 0.3rem;
		left: -0.2rem;
		width: calc(100% + 0.2rem);
	}

	.link ul li a {
		font-size: 0.16rem;
	}

	.foot-dz p {
		font-size: 0.16rem;
		line-height: 0.3rem;
	}
}

@media screen and (max-width:920px) {
	.foot-rb {
		position: static;
	}

	.foot-logo {
		width: 3.08rem;
		margin: 0 auto;
	}

	.foot-rb {
		margin: 0 auto;
		margin-top: 0.24rem;
	}

	.foot-b {
		margin-top: 0.24rem;
		padding: 0.2rem 0 0.2rem 0.2rem;
	}

	.foot-dz {
		margin-top: 0.2rem;
	}


}

@media screen and (max-width:640px) {}

@media screen and (max-width:480px) {}

@media screen and (max-width:375px) {}

@media screen and (max-width:320px) {}