/* =========================================================================
   tjc-footer.css —— 代码版页脚（子主题，全站加载）
   品牌色：#ff5e14 橙 / #001d67 藏蓝 / #e6ebf2 线
   ========================================================================= */

.tjc-footer {
	background: #001d67;
	color: rgba(255, 255, 255, .78);
	font-size: 15px;
	line-height: 1.7;
}
.tjc-footer .container { max-width: 1360px; }

/* 上部 4 列 */
.tjc-footer-grid {
	display: grid;
	grid-template-columns: 1.7fr 1fr 1fr 1.5fr;
	gap: 40px;
	padding: 70px 0 54px;
}
.tjc-footer-title {
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 22px;
	position: relative;
	padding-bottom: 12px;
}
.tjc-footer-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 34px;
	height: 3px;
	background: #ff5e14;
	border-radius: 2px;
}

/* 公司简介列 */
.tjc-footer-logo { max-height: 46px; width: auto; margin-bottom: 20px; display: block; }
.tjc-footer-logo-text { display: block; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 18px; }
.tjc-footer-desc { margin: 0 0 22px; color: rgba(255, 255, 255, .7); }

/* 社交 */
.tjc-footer-social { display: flex; gap: 10px; }
.tjc-footer-social a {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #fff;
	background: rgba(255, 255, 255, .1);
	border-radius: 9px;
	transition: all .18s ease;
}
.tjc-footer-social a:hover { background: #ff5e14; transform: translateY(-3px); }

/* 链接菜单 */
.tjc-footer-menu { list-style: none; margin: 0; padding: 0; }
.tjc-footer-menu li { margin-bottom: 11px; }
.tjc-footer-menu a {
	color: rgba(255, 255, 255, .72);
	transition: color .15s ease, padding-left .15s ease;
}
.tjc-footer-menu a:hover { color: #fff; padding-left: 5px; }
.tjc-footer-hint { font-size: 13px; color: rgba(255, 255, 255, .4); margin: 0; }

/* 工作时间 */
.tjc-footer-hours-list { list-style: none; margin: 0; padding: 0; }
.tjc-footer-hours-list li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 0;
	border-bottom: 1px dashed rgba(255, 255, 255, .14);
}
.tjc-footer-hours-list li:last-child { border-bottom: none; }
.tjc-hours-day { color: rgba(255, 255, 255, .72); }
.tjc-hours-time { color: #fff; font-weight: 600; white-space: nowrap; }

/* 联系方式 */
.tjc-footer-contact-list { list-style: none; margin: 0 0 22px; padding: 0; }
.tjc-footer-contact-list li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; }
.tjc-footer-contact-list i { color: #ff5e14; font-size: 15px; margin-top: 4px; flex: 0 0 auto; }
.tjc-footer-contact-list a { color: rgba(255, 255, 255, .78); }
.tjc-footer-contact-list a:hover { color: #fff; }
.tjc-footer-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	background: #c2410c;
	border-radius: 8px;
	transition: all .18s ease;
}
.tjc-footer-cta:hover { background: #9f2f05; color: #fff; transform: translateY(-2px); }

/* 底部版权行 */
.tjc-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding: 22px 0;
}
.tjc-footer-copy { margin: 0; text-align: center; font-size: 14px; color: rgba(255, 255, 255, .6); }

/* 响应式 */
@media (max-width: 991px) {
	.tjc-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 30px; padding: 56px 0 44px; }
}
@media (max-width: 575px) {
	.tjc-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
