.footer {
	width: 100%;
	padding: 60px 0 0 0 !important;
}
.footer > div:nth-child(1) {
	padding: 20px 0;
	background-color: #e0e0e0;
}
.footer > div:nth-child(1) .layout-center {
	display: flex;
	justify-content: space-between;
}
.footer > div:nth-child(1) .select {
	position: relative;
	z-index: 1001;
	place-self: center;
}
.footer > div:nth-child(1) .select > div {
	margin: 0 auto;
	padding: 0 40px 0 16px;
	width: 220px;
	height: 40px;
	font-size: 16px;
	line-height: 40px;
	background-image: url('../image/arrow.png');
	background-repeat: no-repeat;
	background-position: center right 10px;
	background-size: 20px auto;
	background-color: #fff;
	border: 1px solid var(--color-border);
	cursor: pointer;
}
.footer > div:nth-child(1) .select > ul {
	overflow-y: auto;
	position: absolute;
	bottom: 40px;
	left: 0;
	z-index: 1000;
	width: 100%;
	max-height: 0px;
	background-color: #fff;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	transition: all 0.3s ease-in-out;
}
.footer > div:nth-child(1) .select > ul.checked {
	max-height: 300px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.footer > div:nth-child(1) .select > ul li a {
	display: block;
	padding: 10px 16px;
	cursor: pointer;
	color: var(--color-gray);
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.footer > div:nth-child(1) .select > ul li a:hover {
	background-color: #eee;
}
.footer > div:nth-child(1) .select > ul li:first-child a {
	margin-top: 20px;
}
.footer > div:nth-child(1) .select > ul li:last-child a {
	margin-bottom: 20px;
}
.footer > div:nth-child(2) {
	padding-top: 32px;
	background-color: #1e5eb0;
}
.footer > div:nth-child(2) .layout-center {
	display: grid;
	grid-template-columns: 1fr 2fr 2fr;
}
.footer > div:nth-child(2) .layout-center > div:nth-child(1) {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	height: 100%;
	border-right: 1px solid var(--color-border);
}
.footer > div:nth-child(2) .layout-center a {
	margin-bottom: 10px;
	line-height: 24px;
	color: #fff;
}
.footer > div:nth-child(2) .layout-center > div:nth-child(2) {
	padding: 0 20px;
}
.footer > div:nth-child(2) .layout-center > div:nth-child(2) p {
	margin-bottom: 10px;
	line-height: 24px;
	color: #fff;
}
.footer > div:nth-child(2) .layout-center > div:nth-child(3) {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-align: center;
}
.footer > div:nth-child(2) .layout-center > div:nth-child(3) i {
	display: block;
	height: 70px;
	background-size: 100% auto;
	background-repeat: no-repeat;
}
.footer > div:nth-child(2) .layout-center > div:nth-child(3) i a {
	display: block;
	width: 100%;
	height: 100%;
}
.footer > div:nth-child(2) .layout-center > div:nth-child(3) i:not(:first-child) {
	margin-left: 20px;
}
.footer > div:nth-child(2) .layout-center > div:nth-child(3) i:nth-child(1) {
	width: 60px;
	background-image: url('../image/dangzhengjiguan.png');
}
.footer > div:nth-child(2) .layout-center > div:nth-child(3) i:nth-child(2) {
	width: 110px;
	background-image: url('../image/zhaocuo.png');
}
.footer > div:nth-child(2) .layout-center > div:nth-child(3) i:nth-child(3) {
	width: 162px;
	background-image: url('../image/jvbao.png');
}
.footer > div:nth-child(3) {
	padding: 10px 0;
	background-color: #1e5eb0;
}
.footer > div:nth-child(3) .layout-center {
	color: white;
	display: flex;
	align-items: center;
}
.footer > div:nth-child(3) .layout-center i {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url('../image/jinghui.png');
	vertical-align: sub;
	margin-right: 4px;
}
.footer > div:nth-child(3) .layout-center > p {
	font-size: 14px;
	line-height: 20px;
}

.footer > div:nth-child(3) .layout-center > p:nth-child(1) {
	border-right: 1px solid var(--color-border);
}
.footer > div:nth-child(3) .layout-center > p:nth-child(2) {
	padding: 0 20px;
}
.footer > div:nth-child(3) .layout-center > p:first-child {
    padding: 0 28px;
	padding-left: 0 !important;
}
.footer > div:nth-child(3) .layout-center > p:last-child {
    padding: 0 20px;
	padding-right: 0 !important;
}
.footer > div:nth-child(3) .layout-center a {
	color: white;
}
@media screen and (max-width: 1200px) {
	.footer > div:nth-child(2) .layout-center {
		grid-template-columns: 3fr 7fr;
		grid-row-gap: 30px;
	}
	.footer > div:nth-child(2) .layout-center > div:nth-child(3) {
		grid-column-start: 1;
		grid-column-end: 3;
	}
	.footer > div:nth-child(3) .layout-center > p {
		padding: 0 10px;
	}
}
@media screen and (max-width: 992px) {
	.footer > div:nth-child(1) .select > div {
		width: 160px;
		height: 40px;
		line-height: 40px;
		font-size: 14px;
		background-size: 15px auto;
	}
	.footer > div:nth-child(1) .select > ul {
		font-size: 14px;
	}
	.footer > div:nth-child(1) .select > ul.checked {
		max-height: 200px;
	}
	.footer > div:nth-child(3) .layout-center {
		display: block;
	}
	.footer > div:nth-child(3) .layout-center > p {
		line-height: 30px;
		border: none !important;
	}
	.footer > div:nth-child(3) .layout-center > p:last-child {
		font-size: 12px;
	}
}
@media screen and (max-width: 768px) {
	.footer > div:nth-child(1) .layout-center {
		flex-wrap: wrap;
	}
	.footer > div:nth-child(1) .select {
		width: 50%;
	}
	.footer > div:nth-child(1) .select:nth-child(3),
	.footer > div:nth-child(1) .select:nth-child(4) {
		margin-top: 20px;
	}
	.footer > div:nth-child(2) .layout-center {
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 30px;
	}
	.footer > div:nth-child(2) .layout-center > div:nth-child(3) {
		grid-column-start: 0;
		grid-column-end: 1;
	}
	.footer > div:nth-child(2) .layout-center > div:nth-child(1) {
		grid-template-columns: repeat(5, 1fr);
		border: none;
	}
	.footer > div:nth-child(2) .layout-center > div:nth-child(2) {
		place-self: center;
	}
}
@media screen and (max-width: 700px) {
	.footer > div:nth-child(1) .select > ul li a {
		padding: 8px 16px;
	}
}
@media screen and (max-width: 400px) {
	.footer > div:nth-child(2) .layout-center > div:nth-child(3) i:nth-child(3) {
		width: 30px;
	}
	.footer > div:nth-child(2) .layout-center > div:nth-child(3) i:nth-child(3) {
		width: 80px;
	}
	.footer > div:nth-child(2) .layout-center > div:nth-child(3) i:nth-child(3) {
		width: 132px;
	}
}
