﻿.aijun-footer {
	background: #0b1f3a;
	color: #cbd5e1;
	padding: 56px 0 26px;
	font-size: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: none;
	position: relative;
	width: 100vw;
	max-width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.aijun-foot-items {
	padding: 0;
	background: transparent;
}

.aijun-foot-items .foot-content {
	padding: 0;
	margin: 0;
}

.aijun-footer a {
	color: inherit;
	text-decoration: none;
}

.aijun-footer a:hover {
	color: #fff;
	text-decoration: none;
}

.aijun-footer-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 28px;
}

.aijun-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
}

.aijun-footer-title {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.4px;
}

.aijun-footer-text {
	line-height: 1.8;
	margin: 0;
}

.aijun-footer-links,
.aijun-footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.aijun-footer-links a {
	color: #cbd5e1;
	transition: color 0.2s ease;
}

.aijun-footer-links a:hover {
	color: #fff;
}

.aijun-footer-contact li {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 10px;
	align-items: start;
}

.aijun-footer-phone-wrap {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}

.aijun-footer .aijun-phone-action {
	border-color: rgba(255, 255, 255, 0.25);
	color: #fff;
}

.aijun-footer .aijun-phone-action:hover,
.aijun-footer .aijun-phone-action:focus {
	background: #fff;
	border-color: #fff;
	color: #1f2635;
}

.aijun-footer-contact .fa {
	color: #94a3b8;
	margin-top: 2px;
}

.aijun-footer-socials {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.aijun-footer-socials a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #cbd5e1;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.aijun-footer-socials a:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}

.aijun-footer-qr {
	display: inline-flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
}

.aijun-footer-qr img {
	width: 140px;
	height: 140px;
	object-fit: cover;
	border-radius: 6px;
	background: #fff;
	padding: 6px;
}

.aijun-footer-qr span {
	color: #94a3b8;
	font-size: 13px;
}

.aijun-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 32px;
	padding-top: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	color: #94a3b8;
	font-size: 13px;
}

.aijun-footer-icp {
	color: #94a3b8;
	text-decoration: none;
	transition: color 0.2s ease;
}

.aijun-footer-icp:hover {
	color: #e2e8f0;
}

@media (max-width: 960px) {
	.aijun-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.aijun-footer {
		padding: 42px 0 20px;
	}
	.aijun-footer-grid {
		grid-template-columns: 1fr;
	}
	.aijun-footer-inner {
		padding: 0 16px;
	}
	.aijun-footer-qr {
		align-items: center;
	}
	.aijun-footer-bottom {
		flex-direction: column;
	}
}

