@charset "utf-8";

* {
	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: sys-r;
	src: url("../fonts/SOURCEHANSERIFCN-REGULAR.OTF");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: sys-b;
	src: url("../fonts/sySong.woff");
	font-weight: normal;
	font-style: normal;
}

html,
body {
	color: #333;
	font-family: "微软雅黑";
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: left;
}

html {
	font-size: 100px;
	font-size: 5.2083333333333vw;
}

body {
	font-size: 0.16rem;
	background: #F4F8FF;
}

.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: 1920px) {
	html {
		font-size: 100px !important;
	}
}

/* @media (max-width: 1920px) and (min-width: 1401px) {
	html {
		font-size: 100px !important;
	}
}

@media screen and (max-width: 1400px) {
	html {
		font-size: 90px !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;
}

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;
}

.line1 {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.line2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
}

.line3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
}

.wp {
	width: 14rem;
	max-width: 94%;
	margin: 0 auto;
}

.m-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.pic {
	padding-top: 75%;
	position: relative;
	overflow: hidden;
}

.pic img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 1s;
}

.pich:hover .pic img {
	transform: scale(1.1);
}

.pic::before {
	position: absolute;
	top: 0;
	left: -90%;
	z-index: 2;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	opacity: 0.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;
}

.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 0.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(-0.78125deg) skewY(-0.78125deg);
		-moz-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.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(-0.1953125deg) skewY(-0.1953125deg);
		-moz-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}

@keyframes play {
	0% {
		-webkit-transform: rotate(0deg)
	}

	100% {
		-webkit-transform: rotate(360deg)
	}
}

@keyframes play2 {
	0% {
		-webkit-transform: rotate(0deg)
	}

	100% {
		-webkit-transform: rotate(-360deg)
	}
}

em {
	font-style: normal;
	position: relative;
	background-image: linear-gradient(#fff, #fff);
	background-position: 0 100%;
	background-size: 0 1px;
	background-repeat: no-repeat;
	transition: background-size 0.5s;
}

a:hover em {
	color: #fff;
	font-weight: bold;
	background-size: 100% 1px;
}

.wap {
	display: none !important;
}

/*search*/

.search-con {
	display: block;
	margin-left: 0.24rem;
}

.search-con button {
	display: block;
	width: 0.53rem;
	height: 0.28rem;
	border-radius: 0.49rem;
	background: rgba(255, 255, 255, 0.08);
	cursor: pointer;
	font-size: 0;
	transition: all 0.5s;
}

.search-con button:hover {
	background: rgba(255, 255, 255, 0.2);
}

.search-con button img {
	vertical-align: middle;
	width: 0.11rem;
}

.search {
	width: 3.3rem;
	height: 0.5rem;
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.3);
	position: relative;
}

input,
button {
	border: none;
	outline: none;
}

.search .text {
	width: 3.3rem;
	padding-left: 0.15rem;
	padding-right: 0.8rem;
	height: 0.5rem;
	font-size: 0.14rem;
	background: none;
	color: #fff;
}

.search .button {
	width: 0.8rem;
	height: 0.5rem;
	background: url(../images/fdj2.png) no-repeat center;
	background-size: 0.2rem auto;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	text-align: center;
}

input::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
}

input::-moz-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
}

input::-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
}

/* 定位搜索框 */

.yc-search {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: none;
}

.yc-search-bg {
	position: fixed;
	z-index: 99998;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
}


/*头部*/
.head {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 9999;
	transition: all 0.8s;
}

.head_rgb.show {
	transform: translateY(-100%);
}

.head_rgb::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2.53rem;
	background: linear-gradient(180deg, #000000 0%, rgba(79, 79, 79, 0) 94%);
	z-index: -1;
}

.head::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0.7rem;
	background: #1853B9;
	z-index: -1;
}

.head_wit {
	transform: translateY(-100%);
}

.head_wit.show {
	transform: none;
}

.head_wit {
	transition: all 0.8s;
}

.head_wit::after {
	height: 1.18rem;
}

.head-c {
	display: flex;
	justify-content: space-between;
	width: 15rem;
}

.logo a {
	display: block;
	font-size: 0;
	width: 5.21rem;
	height: 1.34rem;
	background: url(../images/logo-bg.png) no-repeat;
	background-size: 100% 100%;
	margin-top: 0.04rem;
	padding-top: 0.35rem;
	margin-left: -0.63rem;
}

.logo a img {
	display: block;
	width: 2.76rem;
	margin: 0 auto;
}

.head-t {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0.21rem 0;
}

.head-r {
	flex: 1;
	min-width: 0;
}

.nav-r {}

.nav-r a {
	display: block;
	width: 0.26rem;
	height: 0.26rem;
	line-height: 0.26rem;
	border: 1px dashed #FFFFFF;
	border-radius: 50%;
	font-family: Arial;
	font-size: 0.12rem;
	color: #ffffff;
	text-align: center;
	transition: all 0.5s;
}

.nav-r a:hover {
	border: 1px solid #FFFFFF;
	background-color: #fff;
	color: #1853B9;
}

.nav-r .search-switch {
	opacity: 1;
}


.nav {
	width: 100%;
	float: right;
	position: relative;
	z-index: 1;
	margin-top: 0.15rem;
}

.nav>ul {
	display: flex;
	justify-content: flex-end;
}

.nav>ul>li {
	/* float: left; */
	margin-left: 0.3rem;
	position: relative;
}

.nav>ul>li:first-child {
	border-left: none;
	padding-left: 0;
}

.nav>ul>li>a {
	display: block;
	font-size: 0.2rem;
	font-weight: 600;
	color: #fff;
	text-align: center;
	line-height: 0.3rem;
	position: relative;
	padding-bottom: 0.05rem;
}

.nav>ul>li>a::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 100%;
	border-left: 0.02rem solid #fff;
	height: 0;
	transition: all 0.5s;
}

.nav>ul>li>a::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	border-bottom: 0.02rem solid #fff;
	width: 0;
	transition: all 0.5s;
}

.nav>ul>li.active>a::after {
	width: 100%;
}

.nav>ul>li:hover>a {
	color: #fff;
}

.nav>ul>li:hover>a::after {
	content: "";
	width: 100%;
}

.nav>ul>li:hover>a::before {
	height: 0.14rem;
}

.nav>ul>li:hover>div {
	transform: rotateX(0) translateX(-50%);
	z-index: 9;
}

.nav>ul>li>div {
	position: absolute;
	top: 100%;
	width: 2rem;
	left: 50%;
	transform: rotateX(90deg) translateX(-50%);
	z-index: -999;
	transition: all 0.5s;
	transform-origin: top;
}

.nav>ul>li>div>ul {
	overflow: hidden;
	position: relative;
	z-index: 9;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0px 0.04rem 0.1rem 0px rgba(0, 0, 0, 0.1);
	padding: 0.1rem;
	margin-top: 0.14rem;
}

.nav>ul>li>div>ul>li {
	font-family: "syh-m";
}

.nav>ul>li>div>ul>li a {
	display: block;
	font-size: 0.16rem;
	color: #333;
	line-height: 0.3rem;
	padding: 0.06rem 0;
	white-space: nowrap;
	text-align: center;
}

.nav>ul>li>div>ul>li a:hover {
	background: #1853B9;
	color: #fff;
	position: relative;
}

.head_wit .head-c {
	align-items: center;
}

.head_wit .head-cl {
	width: calc((100% - 5.21rem)/2);
}

.head_wit .head-cr {
	width: calc((100% - 5.21rem)/2);
	display: flex;
	align-items: center;
}

.head_wit .nav {
	display: flex;
	justify-content: space-between;
	margin-top: 0;
}

.head_wit .nav>ul {
	flex: 1;
	min-width: 0;
	justify-content: space-between;
	align-items: center;
}

.head_wit .nav>ul>li {
	margin-left: 0;
}

.head_wit .logo a {
	margin-left: 0;
}

.head_wit .head-t {
	padding: 0;
	margin-left: 0.3rem;
}

/* 导航新增 */
.yc-box {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 5.8rem;
	height: 100vh;
	z-index: 99999;
	background: url(../images/yc-boxbg.jpg) no-repeat center;
	background-size: cover;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	/* overflow-y: scroll; */
	display: none;
}

.yc-t {
	padding: 0.1rem 0.4rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	background: #164598;
	transition: all 0.5s;
}

.yc-t .yc-nav {
	margin-left: 0.5rem;
}

.yc-box.show .yc-t {
	padding: 0.34rem 0.4rem;
}

.yc-nav {
	width: 0.25rem;
	height: 0.25rem;
	margin-left: 0.25rem;
}

.yc-nav img {
	max-width: 100%;
	max-height: 100%;
	cursor: pointer;
}

.yc-b {
	display: flex;
	height: calc(100vh - 0.7rem);
}

.yc-b>div {
	width: 50%;
}

.yc-b .l ul {
	padding: 0.65rem 0.4rem;
}

.yc-b .l ul li a {
	display: block;
	font-size: 0;
	padding: 0.15rem 0;
	text-align: center;
}

.yc-b .l ul li a span {
	display: inline-block;
	font-family: Arial;
	font-size: 0.20rem;
	line-height: 0.32rem;
	color: #FFFFFF;
	position: relative;
}

.yc-b .l ul li a span::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	border-bottom: 1px solid #FFFFFF;
	transition: all 0.5s;
}

.yc-b .l ul li a:hover span::after {
	width: 100%;
}

.yc-b .r {
	border-left: 1px solid #456DB3;
}

.yc-b .r ul {
	padding: 0.38rem 0 0.3rem 0;
	display: flex;
	flex-wrap: wrap;
}

.yc-b .r ul li {
	width: 50%;
	margin-top: 0.27rem;
}

.yc-b .r ul li a {
	display: block;
}

.yc-b .r ul li a .icon {
	width: 0.8rem;
	height: 0.8rem;
	border: 1px dashed #FFFFFF;
	border-radius: 50%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all 0.5s;
}

.yc-b .r ul li a .icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transition: all 0.5s;
}

.yc-b .r ul li a:hover .icon {
	border: 1px solid #FFFFFF;
}

.yc-b .r ul li a:hover .icon::before {
	width: 100%;
	height: 100%;
}

.yc-b .r ul li a .icon img {
	display: block;
	max-width: 0.43rem;
	max-height: 0.42rem;
}

.yc-b .r ul li a h3 {
	text-align: center;
	font-size: 0.16rem;
	line-height: 0.2rem;
	text-align: center;
	color: #FFFFFF;
	margin-top: 0.24rem;
	padding: 0 0.2rem;
}










/*底部*/
.foot {
	background: url(../images/foot-bg.jpg) no-repeat center;
	background-size: cover;
	padding-top: 1px;
	padding-bottom: 0.54rem;
}

.foot a {
	color: #fff;
}

.link {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 0.14rem 0.2rem 0.13rem 0;
	position: relative;
	z-index: 1;
	margin-top: -0.5rem;
	margin-bottom: 0.6rem;
	position: relative;
	z-index: 1;
}

.link::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: -0.73rem;
	width: calc((100vw - 14rem)/2 + 100% + 0.73rem);
	background: url(../images/linkbg.png) no-repeat left center;
	background-size: 100% 100%;
	z-index: -1;
}

.link h3 {
	font-size: 0.16rem;
	font-weight: bold;
	color: #333333;
	margin-right: 0.3rem;
	margin-top: 0.08rem;
}

.link .tx {
	flex: 1;
	min-width: 0;
	padding-right: 20%;
	display: flex;
	flex-wrap: wrap;
}

.link .tx a {
	display: block;
	width: 13.666%;
	color: #333;
	font-size: 0.16rem;
	margin: 0.08rem;
	transition: all 0.5s;
}

.link .tx a:hover {
	color: #1A4EA7;
}

.foot-b {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.foot-logo a {
	display: block;
	width: 3.45rem;
	max-width: 100%;
}

.foot-logo a img {
	display: block;
	width: 100%;
}

.foot-dz p,
.foot-bq p {
	font-size: 0.16rem;
	line-height: 0.3rem;
	color: #FFFFFF;
	margin: 0.1rem 0;
}

.foot-dz {
	padding: 0 0.8rem;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 1600px) {}

@media screen and (max-width: 1450px) {}

@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: 100%;
		max-width: inherit;
		padding-left: 0.2rem !important;
		padding-right: 0.2rem !important;
	}

	body {
		padding-top: 60px !important;
	}

	.pc,
	.yc-t {
		display: none !important;
	}

	.banner .slick-slide a:before {
		display: none;
	}

	.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: #1853B9;
		z-index: 999;
		padding: 10px 20px;
	}

	.m-logo {
		font-size: 0;
	}

	.m-logo a {
		font-size: 0;
		line-height: 40px;
		display: block;
	}

	.m-logo img {
		max-height: 40px;
		max-width: 100%;
		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: #1853B9;
		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 {
		padding-top: 0.24rem;
		padding-bottom: 0.24rem;
	}

	.link {
		margin-top: 0;
		margin-bottom: 0.24rem;
		padding: 0.2rem;
		background: #fff;
		border-left: 0.03rem solid #A0211A;
	}

	.link::before {
		content: none;
	}

	.link::before {
		left: 0;
	}

	.link .tx {
		padding-right: 0;
	}

	.link .tx a {
		width: calc(16.666% - 0.16rem);
	}

	.foot-logo {
		margin: 0 auto;
		margin-bottom: 0.2rem;
	}

	.foot-dz {
		width: 100%;
		text-align: center;
		border-left: 0;
		border-right: 0;
		padding: 0;
	}

	.foot-bq {
		width: 100%;
		text-align: center;
	}

}

@media screen and (max-width: 768px) {
	.link .tx {
		flex: none;
		width: 100%;
	}

	.link h3 {
		margin-bottom: 0.15rem;
	}

	.link .tx a {
		width: calc(33.333% - 0.16rem);
	}
}

@media screen and (max-width: 640px) {}

@media screen and (max-width: 480px) {
	.link .tx a {
		width: calc(50% - 0.16rem);
	}
}

@media screen and (max-width: 375px) {}

@media screen and (max-width: 320px) {}