@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: 'sySong';
	src:
		url('../fonts/sySong.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'syS-heavy';
	src:
		url('../fonts/SOURCEHANSERIFCN-HEAVY.OTF');
}

@font-face {
	font-family: 'syS-regular';
	src:
		url('../fonts/SOURCEHANSERIFCN-REGULAR.OTF');
}

@font-face {
	font-family: 'syS-medium';
	src:
		url('../fonts/SOURCEHANSERIFCN-MEDIUM.OTF');
}

@font-face {
	font-family:'Microsoft Yahei',sans-serif;
	src:
		url('../fonts/SOURCEHANSERIFCN-SEMIBOLD.OTF');
}

html,
body {
	color: #333;
	font-family: 'Microsoft Yahei',sans-serif;
	margin-left: auto !important;
	margin-right: auto !important;
}

html {
	font-size: 100px;
}

body {
	font-size: 0.16rem;
	background-color: #f2f7fb;
}

.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: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;
}

.wp {
	width: 16rem;
	max-width: 94%;
	margin: 0 auto;
}

.pic {
	padding-top: 75%;
	position: relative;
	overflow: hidden;
}

.pic::before,
.bg_img::before {
	position: absolute;
	top: 0;
	left: -90%;
	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: 1;
}

.pic img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease-out;
}

.pic img:hover {
	transform: scale(1.1);
}

a:hover .pic:before,
a:hover .bg_img:before {
	-webkit-animation: shine 1s;
	animation: shine 1s
}

.bg_img {
	position: relative;
	overflow: hidden;
}

.bg_img .a {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all 0.5s ease-out;
}

.bg_img:hover .a {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

@-webkit-keyframes shine {
	100% {
		left: 125%
	}
}

@keyframes shine {
	100% {
		left: 125%
	}
}

@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-con {
	display: block;
	font-size: 0;
	position: relative;
	margin-left: 0.4rem;
}

.search-con button {
	width: 0.43rem;
	height: 0.43rem;
	text-align: center;
	background: none;
	border: 1px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	font-size: 0;
}

.search-con button img {
	vertical-align: middle;
	width: 0.18rem;
	height: 0.18rem;
	transition: all 0.5s;
}

.search-con button:hover img {
	transform: scale(1.05);
}

.search {
	width: 500px;
	height: 50px;
	background: #fff;
	position: absolute;
	right: 0;
	top: 24px;
	z-index: 1;
	display: none;
}

input,
button {
	border: none;
	outline: none;
}

.search .text {
	width: 500px;
	padding-left: 15px;
	padding-right: 95px;
	height: 50px;
	font-size: 14px;
	background: none;
	color: #333;
}

.search .button {
	width: 80px;
	height: 50px;
	background: #03419e url(../images/fdj.png) no-repeat center;
	background-size: 15px 15px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	text-align: center;
}

input::-webkit-input-placeholder {
	color: #999;
}

input::-moz-input-placeholder {
	color: #999;
}

input::-ms-input-placeholder {
	color: #999;
}

/* 定位搜索框 */

.yc-search {
	line-height: 40px;
	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, .8);
}

.search {
	display: block;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: 99999;

}

/*头部*/
.pc {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 99991;
	height: 1.2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.7s ease-out 0s;
}

/* .scrollDown .pc {
	top: -1.2rem;
} */

.pc.show {
	transform: translateY(-100%);
	opacity: 0;
}

.pc.on {
	background: #03419e;
}

.head {
	height: 100%;
	position: relative;
	z-index: 999;
	transition: all 0.5s;
	align-items: center;
}

.pc.on .head {
	padding: 0.1rem 0;
}

.logo {
	width: 3.17rem;
}

.logo a {
	display: block;
	font-size: 0;
}

.logo img {
	display: block;
	max-width: 100%;
}

.head-r {
	flex: 1;
	min-width: 0;
	margin-left: 10.125%;
	display: flex;
	flex-direction: column;
}

.head-t {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.head-en {
	display: flex;
	align-items: center;
}

.head-en a {
	display: block;
	font-size: 0.14rem;
	color: #FFFFFF;
	line-height: 1;
	border-left: 1px solid #fff;
	padding: 0 0.14rem;
	transition: all 0.5s;
}

.head-en a:last-child {
	padding-right: 0;
}

.head-en a:first-child {
	border-left: 0;
	padding-left: 0;
}

.head-en a:hover {
	opacity: 0.7;
}

.head-d {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 0.15rem;
}

/* nav */
.nav {
	flex: 1;
	min-width: 0;
	line-height: 0.43rem;
}

.nav>ul {
	font-size: 0;
	text-align: right;
}

.nav>ul>li {
	display: inline-block;
	text-align: center;
	position: relative;
}

.nav>ul>li:first-child {
	margin-left: 0;
}

.nav>ul>li>a {
	display: block;
	font-size: 0.18rem;
	color: #fff;
	position: relative;
}

.nav>ul>li>a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.24rem;
	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 {
	font-weight: bold;
	color: #fff;
}

.nav>ul>li:hover>a {
	font-weight: bold;
	color: #fff;
}

.nav>ul>li>div {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(0.3rem);
	width: 100%;
	min-width: 2.4rem;
	z-index: 9999;
	line-height: normal;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s;
}

.nav>ul>li>div>ul {
	overflow: hidden;
	background: rgba(255,255,255,.85);
	box-shadow: 0 3px 30px rgba(0,0,0,.08);
	padding: 0.1rem 0;
	margin-top: 0.24rem;
}

.nav>ul>li>div>ul>li a {
	display: block;
	font-size: 0.16rem;
	line-height: 0.34rem;
	padding: 0.05rem 0.1rem;
	color: #333;
	transition: all 0.3s;
}

.nav>ul>li>div>ul>li:hover a {
	color: #fff;
	background: #03419e;
}

.nav>ul>li:hover>div {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}


/*底部*/

.foot {
	background: url(../images/foot-bg.jpg) no-repeat center;
	background-size: cover;
	color: #fff;
	position: relative;
	margin-top: 1.1rem;
	padding-top: 1px;
}

.foot::before {
	content: '';
	position: absolute;
	top: -1.09rem;
	left: 50%;
	transform: translateX(-50%);
	width: 8.36rem;
	height: 1.09rem;
	background: url(../images/foot-tbg.png) no-repeat;
	background-size: 100% 100%;
}

.foot a {
	color: #fff;
}

.foot a:hover {
	color: rgba(255, 255, 255, 0.7);
}

.foot-logo {
	display: block;
	width: 3.17rem;
	margin: 0 auto;
	max-width: 100%;
	margin-top: -0.19rem;
	position: relative;
	z-index: 1;
}

.foot-t {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 0.36rem 0;
}

.foot-nav {
	flex: 1;
	min-width: 0;
}

.foot-nav ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.foot-nav ul li {
	margin-right: 0.35rem;
}

.foot-nav ul li a {
	display: block;
	font-size: 0.18rem;
	padding: 0.1rem 0;
}

.link {
	display: flex;
	align-items: center;
}

.link>div>p {
	line-height: 0.46rem;
	padding-right: 0.2rem;
	color: #fff;
	text-align: left;
	font-size: 0.16rem;
	background: url(../images/link-icon-down.png) no-repeat;
	background-position: right center;
	background-size: 0.14rem auto;
}

.link>div {
	width: 1.96rem;
	position: relative;
	padding: 0 0.15rem;
	background-color: rgba(255, 255, 255, 0.1);
	margin-left: 0.2rem;
}

.link>div:first-child {
	/* margin-left: 0; */
}

.link>div:hover div {
	display: block;
}

.link>div div {
	position: absolute;
	bottom: 100%;
	background: #fff;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	left: 0;
	right: 0;
	max-height: 2.7rem;
	overflow-y: auto;
	z-index: 9;
	display: none;
}

.link>div div::-webkit-scrollbar {
	width: 3px;
}

.link>div div::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: #e5e5e5;
}

.link>div div::-webkit-scrollbar-track {
	border-radius: 5px;
	background: #03419e;
}

.link>div div a {
	display: block;
	color: #333;
	line-height: 0.26rem;
	font-size: 0.15rem;
	padding: 0.05rem 0.1rem;
}

.link>div div a:hover {
	background: #03419e;
	color: #fff;
}

.foot-c {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.62rem;
	padding-bottom: 0.69rem;
}

.foot-dz ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.foot-dz ul li {
	display: flex;
	align-items: center;
	margin-left: 0.4rem;
	min-width: 2.2rem;
}

.foot-dz ul li:first-child {
	margin-left: 0;
}

.foot-dz ul li .icon1 {
	width: 0.76rem;
	height: 0.76rem;
	background: url(../images/foot-dzbg.png) no-repeat;
	background-size: 100% 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 0.15rem;
}

.foot-dz ul li .icon1 img {
	display: block;
	max-width: 0.28rem;
	max-height: 0.26rem;
}

.foot-dz ul li .tx {
	flex: 1;
	min-width: 0;
max-width: 3rem;
}

.foot-dz ul li .tx h3 {
	font-size: 0.2rem;
}

.foot-dz ul li .tx p {
	font-family: 'syS-regular';
	font-size: 0.18rem;
	margin-top: 0.1rem;
}

.foot-media {
	width: 3.4rem;
	display: flex;
	align-items: center;
}

.foot-media>div {
	position: relative;
	cursor: pointer;
	margin-left: 0.3rem;
}

.foot-media>div:first-child {
	margin-left: 0.2rem;
}

.foot-media>div:hover div {
	display: block;
}

.foot-media>div>span {
	display: block;
	width: 0.46rem;
	height: 0.46rem;
	line-height: 0.46rem;
	background-color: #fff;
	border-radius: 50%;
	text-align: center;
	position: relative;
	font-size: 0;
	transition: all 0.4s;
}

.foot-media>div>span>svg {
	display: inline-block;
	height: auto;
	vertical-align: middle;
	max-width: 0.24rem;
	max-height: 0.2rem;
}

.foot-media>div>span>svg path {
	transition: all 0.4s;
}

.foot-media>div:hover>span {
	background: #a81b00;
}

.foot-media>div:hover>span>svg path {
	fill: #fff;
}

.foot-media>div>div {
	position: absolute;
	left: 140%;
	top: 50%;
	transform: translateY(-50%);
	width: 1.16rem;
	padding: 0.07rem;
	background: #fff;
	box-shadow: 0px 0.03rem 0.07rem 0px rgba(0, 0, 0, 0.35);
	border-radius: 0.03rem;
	z-index: 9;
	display: none;
}

.foot-media>div>div::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -5px;
	border-right: 5px solid #fff;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}

.foot-media>div>div img {
	display: block;
	width: 100%;
}

.foot-media>div>img {
	display: block;
	margin: 0 auto;
}

.foot-bq {
	text-align: center;
	font-family: "微软雅黑";
	font-size: 0.16rem;
	line-height: 0.26rem;
	color: rgba(255, 255, 255, 0.6);
	padding: 0.22rem 0.1rem;
	background: url(../images/foot-bq.jpg) no-repeat center;
	background-size: cover;
}

.foot-bq a {
	display: inline-block;
	color: rgba(255, 255, 255, 0.6);
}

.foot-bq img {
	vertical-align: middle;
	margin-right: 0.1rem;
	width: 0.18rem;
	height: 0.23rem;
}



@media screen and (max-width:1600px) {
	.wp {
		width: auto;
		max-width: inherit;
		padding-left: 0.2rem;
		padding-right: 0.2rem;
	}

	.pc.on .head {
		padding: 0.1rem 0.2rem;
	}
}

@media screen and (max-width:1500px) {}

@media screen and (max-width:1400px) {
	.foot-dz ul li {
		min-width: auto;
	}
}

@media screen and (max-width:1300px) {

.foot-dz ul li {
    width: 48%;
    margin-bottom: 0.2rem;
    margin-right: 2%;
    min-width: auto;
   margin-left: auto;
	}
}

@media screen and (max-width:1200px) {
	.head-r {
		margin-left: 5%;
	}

}

@media screen and (max-width:1100px) {}

@media screen and (max-width:1024px) {
	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: #03419e;
		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;
		color: #fff;
		display: inline-block;
		line-height: 24px;
		margin: 0 12px;
		/*background: #fff;*/
		border-radius: 5px;
	}

	.m-tlink a:first-child {
		margin-left: 0;
	}

	.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-radius: 5px;
		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: #03419e;
		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: 15px;
		line-height: 20px;
		padding: 15px 0;
		position: relative;
		color: #fff;
	}

	.m-nav>ul>li ul li a {
		font-size: 14px;
		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 {
		margin-top: 0.8rem;
	}

	.foot::before {
		width: 5.6rem;
		height: 0.73rem;
		top: -0.73rem;
	}
	.foot-c {
		flex-wrap: wrap;
		padding-top: 0.3rem;
		padding-bottom: 0.3rem;
	}

	.foot-dz {
		width: 100%;
	}

	.foot-dz ul li {
	 
	}

	.foot-dz ul li .icon1 {
		width: 0.6rem;
		height: 0.6rem;
	}

	.foot-media {
		width: auto;
		margin: 0 auto;
		margin-top: 0.3rem;
	}

	.foot-media>div>div {
		top: auto;
		bottom: 140%;
		left: 50%;
		transform: translate(-50%, 0);
		width: 1rem;
	}

	.foot-media>div>div::before {
		top: auto;
		transform: translate(-50%, 0);
		left: inherit;
		bottom: -5px;
		border-top: 5px solid #fff;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-bottom: 0;
	}
}

@media screen and (max-width:768px) {
	.foot {
		margin-top: 0;
		padding-top: 0.3rem;
	}

	.foot::before {
		display: none;
	}

	.foot-logo {
		margin-top: 0;
	}

	.foot-t {
		padding: 0.3rem 0;
	}

	.foot-nav {
		flex: none;
		width: 100%;
	}

	.link {
		width: 100%;
		margin-top: 0.2rem;
		justify-content: space-between;
	}

	.link>div {
		width: 48%;
		margin-left: 0;
	}
.foot-dz ul li .tx {
    max-width: 2rem;
}

}

@media screen and (max-width:640px) {
	.foot-dz ul li {
		width: 100%;
		margin-left: 0 !important;
		margin-top: 0.2rem;
	}

	.foot-dz ul li:first-child {
		margin-top: 0;
	}
.foot-dz ul li .tx {
    max-width: 100%;
}
}

@media screen and (max-width:480px) {


}

@media screen and (max-width:375px) {}

@media screen and (max-width:320px) {}