/* 北京中道成科技 — 全站页脚 */
:root {
	--footer-primary: #08616d;
	--footer-primary-dark: #054a54;
	--footer-gold: #c9a84c;
	--footer-text: rgba(255, 255, 255, 0.82);
	--footer-text-dim: rgba(255, 255, 255, 0.6);
}

.site-footer {
	margin-top: 0 !important;
	background: linear-gradient(180deg, var(--footer-primary-dark) 0%, #043840 100%);
	color: var(--footer-text);
}
.site-footer-main {
	padding: 48px 0 36px;
}
.site-footer .footer-brand h4 {
	color: #fff;
	font-size: 1.285rem;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: 1px;
}
.site-footer .footer-slogan {
	color: var(--footer-gold);
	font-size: 0.929rem;
	letter-spacing: 3px;
	margin-bottom: 20px;
}
.site-footer .footer-info {
	list-style: none;
	padding: 0;
	margin: 0;
}
.site-footer .footer-info li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
	font-size: 0.929rem;
	line-height: 1.7;
	color: var(--footer-text);
}
.site-footer .footer-info li i {
	flex-shrink: 0;
	width: 20px;
	color: var(--footer-gold);
	margin-right: 10px;
	margin-top: 4px;
}
.site-footer .footer-info a {
	color: var(--footer-text);
	transition: color 0.3s;
}
.site-footer .footer-info a:hover {
	color: var(--footer-gold);
	text-decoration: none;
}
.site-footer .footer-info .footer-address-link {
	border-bottom: 1px dashed rgba(201, 168, 76, 0.45);
}
.site-footer .footer-info .footer-address-link:hover {
	border-bottom-color: var(--footer-gold);
}

/* 二维码 */
.site-footer .footer-qr {
	text-align: center;
	margin-bottom: 20px;
}
.site-footer .footer-qr .qr-box {
	display: inline-block;
	background: #fff;
	padding: 8px;
	border-radius: 6px;
	margin-bottom: 10px;
}
.site-footer .footer-qr .qr-box img {
	width: 100px;
	height: 100px;
	display: block;
}
.site-footer .footer-qr .qr-label {
	font-size: 0.786rem;
	color: var(--footer-text-dim);
	margin: 0;
}

/* 版权栏 */
.site-footer-copy {
	background: rgba(0, 0, 0, 0.2);
	padding: 16px 0;
	text-align: center;
	font-size: 0.857rem;
	color: var(--footer-text-dim);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* 移动端底部占位 */
.site-footer-spacer {
	height: 0;
}
@media only screen and (max-width: 767px) {
	.site-footer-main {
		padding: 36px 0 24px;
	}
	.site-footer .footer-qr .qr-box img {
		width: 88px;
		height: 88px;
	}
	.site-footer-spacer {
		height: 56px;
	}
}

/* 在线客服浮窗 */
.site-online {
	position: fixed;
	bottom: 120px;
	right: 16px;
	width: 56px;
	z-index: 999;
}
.site-online dl {
	background: var(--footer-primary);
	border-radius: 6px;
	padding: 10px 6px;
	margin-bottom: 8px;
	position: relative;
	box-shadow: 0 4px 16px rgba(8, 97, 109, 0.3);
	transition: background 0.3s, transform 0.3s;
	overflow: hidden;
}
.site-online dl:hover {
	background: var(--footer-primary-dark);
	transform: translateY(-2px);
}
.site-online dl dd {
	color: #fff;
	text-align: center;
	font-size: 11px;
	cursor: pointer;
	margin: 0;
	padding: 0;
	line-height: 1.4;
}
.site-online dl dd i {
	font-size: 22px;
	display: block;
	margin-bottom: 2px;
}
.site-online dl dt {
	position: absolute;
	top: 0;
	right: 62px;
	background: #fff;
	border: none;
	border-radius: 8px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	display: none;
	padding: 14px 16px;
	font-weight: normal;
	width: 200px;
}
.site-online dl dt h3 {
	display: block;
	font-size: 14px;
	color: var(--footer-primary-dark);
	border-bottom: 1px solid #e8eef0;
	padding-bottom: 8px;
	margin-bottom: 10px;
	font-weight: 600;
}
.site-online dl dt h3 i {
	margin-right: 6px;
	color: #07c160;
}
.site-online dl dt h3 .remove {
	float: right;
	cursor: pointer;
	color: #9aa8b4;
	font-size: 14px;
}
.site-online dl dt h3 .remove:hover {
	color: var(--footer-primary);
}
.site-online dl dt p {
	margin: 0;
}
.site-online dl dt img {
	border-radius: 4px;
}
.site-online .scroll-top {
	background: var(--footer-gold) !important;
}
.site-online .scroll-top:hover {
	background: #dfc06a !important;
}
.site-online .scroll-top dd {
	color: var(--footer-primary-dark);
	font-weight: 600;
}
