.foot {
	position: relative;
	width: 100%;
	background: #509398;
	padding: 12px 0;
	overflow: hidden;
}

.foot-shell {
	position: relative;
	width: 100%;
}

.foot-info {
	position: relative;
	width: 84%;
	max-width: 1680px;
	height: 126px;
	margin: 0px auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.foot-logo {
	position: relative;
	width: 46%;
	height: 100%;
	display: flex;
	align-items: center;
}

.foot-logo-img {
	display: block;
	width: min(100%, 640px);
	height: 82px;
	object-fit: contain;
	object-position: left center;
}

.foot-content {
	position: relative;
	width: calc(54% - 36px);
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 28px;
	padding-left: 36px;
	border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.foot-content-message,
.foot-content-address {
	position: relative;
	flex: 1;
}

.foot-content-message-title,
.foot-content-address-title {
	position: relative;
	width: 100%;
	padding-left: 12px;
	font-family: PingFang SC, PingFang SC;
	font-weight: 500;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.92);
	line-height: 18px;
	font-style: normal;
	text-transform: none;
	margin-bottom: 10px;
}

.foot-content-message-title::before,
.foot-content-address-title::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	width: 4px;
	height: 14px;
	background: rgba(255, 255, 255, 0.9);
}

.foot-content-message-list,
.foot-content-address-list {
	position: relative;
	width: 100%;
}

.foot-content-message-item,
.foot-content-address-item {
	position: relative;
	width: 100%;
	font-family: PingFang SC, PingFang SC;
	font-weight: 400;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.82);
	line-height: 19px;
	text-align: left;
	font-style: normal;
	text-transform: none;
	margin-bottom: 4px;
}

.foot-content-message-item:last-child,
.foot-content-address-item :last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 900px) {
	.foot {
		padding: 16px 0;
	}

	.foot-info {
		width: 90%;
		height: auto;
		flex-direction: column;
		align-items: flex-start;
	}

	.foot-logo {
		width: 100%;
		height: auto;
		border-right: none;
		padding-bottom: 12px;
		margin-bottom: 14px;
	}

	.foot-logo-img {
		width: 100%;
		max-width: 560px;
		height: 68px;
	}

	.foot-content {
		width: 100%;
		padding-left: 0;
		gap: 18px;
		flex-direction: column;
		align-items: flex-start;
		border-left: none;
	}
}
