/* =========================================================================
   tjc-home.css —— 首页样式（子主题，去 Elementor 版）
   仅首页加载。品牌色：#ff5e14 橙 / #001d67 藏蓝 / #4f6078 次要字 / #e6ebf2 线。
   逐节实现，先 Hero。
   ========================================================================= */

:root {
	--tjc-primary: #ff5e14;
	--tjc-primary-accessible: #c2410c;
	--tjc-primary-dark: #9f2f05;
	--tjc-navy: #001d67;
	--tjc-ink: #001d67;
	--tjc-muted: #4f6078;
	--tjc-line: #e6ebf2;
}

.tjc-home { overflow-x: clip; }

/* 首页整体加宽，显大气（覆盖主题 .container 的 1140/1200 限宽） */
.tjc-home .container { max-width: 1500px; }

/* 通用按钮（首页版；与文章页 .tjc-btn 同名不同文件，这里自带定义） */
.tjc-home .tjc-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 14px 30px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	border-radius: 8px;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all .18s ease;
}
.tjc-home .tjc-btn-primary { background: var(--tjc-primary-accessible); color: #fff; border-color: var(--tjc-primary-accessible); }
.tjc-home .tjc-btn-primary:hover { background: var(--tjc-primary-dark); border-color: var(--tjc-primary-dark); color: #fff; transform: translateY(-2px); }
.tjc-home .tjc-btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.tjc-home .tjc-btn-ghost:hover { background: #fff; color: var(--tjc-navy); border-color: #fff; }

/* =========================================================================
   1) Hero 首屏
   ========================================================================= */
.tjc-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.tjc-hero-bg {
	position: absolute;
	inset: 0;
	background: #001d67;
	transform: scale(1.02);
}
.tjc-hero-bg-image { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.tjc-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(0,29,103,.82) 0%, rgba(0,29,103,.55) 45%, rgba(0,29,103,.15) 100%);
}
.tjc-hero .container { position: relative; z-index: 2; }
.tjc-hero-inner { max-width: 820px; padding: 60px 0; color: #fff; }
.tjc-hero-eyebrow {
	display: inline-block;
	margin-bottom: 24px;
	padding: 9px 18px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #fff;
	background: var(--tjc-primary-accessible);
	border-radius: 6px;
}
.tjc-hero-title {
	font-size: 78px;
	line-height: 1.06;
	font-weight: 800;
	color: #fff;
	margin: 0 0 26px;
}
.tjc-hero-sub {
	font-size: 22px;
	line-height: 1.65;
	color: rgba(255,255,255,.9);
	margin: 0 0 40px;
}
.tjc-hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }
.tjc-hero-btns .tjc-btn { padding: 18px 42px; font-size: 18px; }

/* 响应式 */
@media (max-width: 1199px) {
	.tjc-hero-title { font-size: 64px; }
}
@media (max-width: 991px) {
	.tjc-hero { min-height: 88vh; }
	.tjc-hero-title { font-size: 52px; }
	.tjc-hero-sub { font-size: 19px; }
}
@media (max-width: 575px) {
	.tjc-hero { min-height: 82vh; }
	.tjc-hero-title { font-size: 38px; }
	.tjc-hero-sub { font-size: 16.5px; }
	.tjc-hero-inner { padding: 40px 0; }
	.tjc-home .tjc-btn { padding: 14px 26px; font-size: 15px; }
}

/* =========================================================================
   2) 信任条 / 数据 counter
   ========================================================================= */
.tjc-stats {
	background: var(--tjc-navy);
	padding: 50px 0;
}
.tjc-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.tjc-stat {
	text-align: center;
	color: #fff;
	position: relative;
}
.tjc-stat:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 12%;
	right: -15px;
	height: 76%;
	width: 1px;
	background: rgba(255,255,255,.15);
}
.tjc-stat-icon {
	display: block;
	font-size: 30px;
	color: var(--tjc-primary-accessible);
	margin-bottom: 12px;
}
.tjc-stat-num {
	display: block;
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
	color: #fff;
	margin-bottom: 8px;
}
.tjc-stat-label {
	display: block;
	font-size: 14.5px;
	color: rgba(255,255,255,.72);
}

@media (max-width: 767px) {
	.tjc-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
	.tjc-stat:nth-child(2)::after { display: none; } /* 两列时中间那条竖线去掉 */
	.tjc-stat-num { font-size: 34px; }
}
@media (max-width: 575px) {
	.tjc-stat::after { display: none !important; }
}

/* =========================================================================
   通用区块小组件（多节复用）
   ========================================================================= */
.tjc-eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--tjc-primary-accessible);
}
.tjc-section-title {
	font-size: 40px;
	line-height: 1.18;
	font-weight: 800;
	color: var(--tjc-ink);
	margin: 0 0 18px;
}
@media (max-width: 575px) {
	.tjc-section-title { font-size: 28px; }
}

/* =========================================================================
   3) Who we are / What we do
   ========================================================================= */
.tjc-about { padding: 80px 0; background: #fff; }
.tjc-about-grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 50px;
	align-items: center;
}
.tjc-about-lead {
	font-size: 16.5px;
	line-height: 1.8;
	color: var(--tjc-muted);
	margin: 0 0 26px;
}
.tjc-about-points { list-style: none; margin: 0 0 30px; padding: 0; }
.tjc-about-points li {
	display: flex;
	gap: 16px;
	padding: 16px 0;
	border-top: 1px solid var(--tjc-line);
}
.tjc-about-points li:last-child { border-bottom: 1px solid var(--tjc-line); }
.tjc-about-ico {
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--tjc-primary);
	background: rgba(255, 94, 20, .1);
	border-radius: 10px;
}
.tjc-about-points h3 { font-size: 17px; color: var(--tjc-ink); margin: 2px 0 5px; }
.tjc-about-points p { font-size: 14.5px; line-height: 1.7; color: var(--tjc-muted); margin: 0; }
.tjc-about-media img {
	width: 100%;
	height: auto;
	border-radius: 14px;
	box-shadow: 0 20px 50px rgba(16, 42, 82, .16);
	display: block;
}

@media (max-width: 767px) {
	.tjc-about { padding: 56px 0; }
	.tjc-about-grid { grid-template-columns: 1fr; gap: 34px; }
	.tjc-about-media { order: -1; } /* 手机上图在上 */
}

/* =========================================================================
   居中区块头部（多节复用）
   ========================================================================= */
.tjc-section-head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.tjc-section-head .tjc-section-title { margin-bottom: 14px; }
.tjc-section-desc { font-size: 16px; line-height: 1.75; color: var(--tjc-muted); margin: 0; }

/* =========================================================================
   4) 服务：左大图 + 右服务列表
   ========================================================================= */
.tjc-services { padding: 80px 0; background: var(--tjc-bg-soft, #f5f8fc); }
.tjc-services-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 44px;
	align-items: stretch;
}

/* 左：实景大图 + 角标 */
.tjc-services-media { position: relative; border-radius: 16px; overflow: hidden; min-height: 100%; }
.tjc-services-media img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	display: block;
}
.tjc-services-media-badge {
	position: absolute;
	left: 24px;
	bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: rgba(0, 29, 103, .9);
	border-radius: 12px;
	color: #fff;
	backdrop-filter: blur(2px);
}
.tjc-media-badge-num { font-size: 34px; font-weight: 800; line-height: 1; color: #fff; }
.tjc-media-badge-num span { color: var(--tjc-primary); }
.tjc-media-badge-label { font-size: 13.5px; line-height: 1.35; color: rgba(255,255,255,.82); max-width: 150px; }

/* 右：服务列表 */
.tjc-services-list { display: flex; flex-direction: column; gap: 12px; }
.tjc-service-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--tjc-line);
	border-radius: 12px;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(16, 42, 82, .05);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tjc-service-item:hover {
	transform: translateX(4px);
	box-shadow: 0 12px 28px rgba(16, 42, 82, .12);
	border-color: transparent;
}
.tjc-service-ico {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 23px;
	color: var(--tjc-primary);
	background: rgba(255, 94, 20, .1);
	border-radius: 12px;
	transition: all .18s ease;
}
.tjc-service-item:hover .tjc-service-ico { background: var(--tjc-primary); color: #fff; }
.tjc-service-body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.tjc-service-name { font-size: 17px; font-weight: 700; color: var(--tjc-ink); }
.tjc-service-text { font-size: 13.5px; line-height: 1.5; color: var(--tjc-muted); }
.tjc-service-arrow {
	flex: 0 0 auto;
	font-size: 15px;
	color: #c2ccda;
	transition: color .18s ease, transform .18s ease;
}
.tjc-service-item:hover .tjc-service-arrow { color: var(--tjc-primary); transform: translateX(3px); }

@media (max-width: 991px) {
	.tjc-services-split { grid-template-columns: 1fr; gap: 30px; }
	.tjc-services-media img { min-height: 300px; }
}
@media (max-width: 575px) {
	.tjc-services { padding: 56px 0; }
	.tjc-service-text { display: none; } /* 手机上只留标题，更紧凑 */
	.tjc-service-item { padding: 15px 16px; gap: 13px; }
}

/* =========================================================================
   5) 行业方案：左大图 + 右图标网格
   ========================================================================= */
.tjc-industries { padding: 80px 0; background: #fff; }
.tjc-industries-split {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 44px;
	align-items: stretch;
}
.tjc-industries-media { border-radius: 16px; overflow: hidden; }
.tjc-industries-media img {
	width: 100%;
	height: 100%;
	min-height: 440px;
	object-fit: cover;
	display: block;
}
.tjc-industries-content { display: flex; flex-direction: column; justify-content: center; }
.tjc-head-left { text-align: left; max-width: none; margin: 0 0 24px; }

.tjc-industries-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.tjc-industry {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	padding: 22px 14px;
	background: var(--tjc-bg-soft, #f5f8fc);
	border: 1px solid var(--tjc-line);
	border-radius: 12px;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.tjc-industry:hover {
	transform: translateY(-4px);
	background: #fff;
	box-shadow: 0 14px 30px rgba(16, 42, 82, .12);
}
.tjc-industry-icon {
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--tjc-primary);
	background: rgba(255, 94, 20, .1);
	border-radius: 12px;
	transition: all .18s ease;
}
.tjc-industry:hover .tjc-industry-icon { background: var(--tjc-primary); color: #fff; }
.tjc-industry-name { font-size: 14px; font-weight: 600; color: var(--tjc-ink); line-height: 1.3; }

@media (max-width: 991px) {
	.tjc-industries-split { grid-template-columns: 1fr; gap: 30px; }
	.tjc-industries-media img { min-height: 260px; }
}
@media (max-width: 767px) {
	.tjc-industries { padding: 56px 0; }
}
@media (max-width: 420px) {
	.tjc-industries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================================
   7) 客户评价
   ========================================================================= */
.tjc-testimonials { padding: 80px 0; background: var(--tjc-bg-soft, #f5f8fc); }
.tjc-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.tjc-testimonial {
	background: #fff;
	border: 1px solid var(--tjc-line);
	border-radius: 14px;
	padding: 30px 28px;
	box-shadow: 0 6px 24px rgba(16, 42, 82, .06);
	display: flex;
	flex-direction: column;
}
.tjc-testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; color: #ffb400; font-size: 15px; }
.tjc-testimonial-quote {
	font-size: 15px;
	line-height: 1.75;
	color: #33455f;
	margin: 0 0 22px;
	flex: 1 1 auto;
}
.tjc-testimonial-quote::before { content: "\201C"; color: var(--tjc-primary); font-weight: 700; }
.tjc-testimonial-quote::after { content: "\201D"; color: var(--tjc-primary); font-weight: 700; }
.tjc-testimonial-author { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--tjc-line); }
.tjc-testimonial-avatar {
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	font-weight: 700;
	color: #fff;
	background: var(--tjc-navy);
	border-radius: 50%;
	overflow: hidden;
}
.tjc-testimonial-avatar.tjc-has-img { background: none; }
.tjc-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.tjc-testimonial-meta { display: flex; flex-direction: column; }
.tjc-testimonial-name { font-size: 15.5px; font-weight: 700; color: var(--tjc-ink); }
.tjc-testimonial-role { font-size: 13px; color: var(--tjc-muted); }

@media (max-width: 991px) {
	.tjc-testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 575px) {
	.tjc-testimonials { padding: 56px 0; }
}

/* =========================================================================
   8) News 最新文章
   ========================================================================= */
.tjc-news { padding: 80px 0; background: #fff; }
.tjc-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.tjc-news-card {
	background: #fff;
	border: 1px solid var(--tjc-line);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(16, 42, 82, .06);
	transition: transform .2s ease, box-shadow .2s ease;
}
.tjc-news-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(16, 42, 82, .14); }
.tjc-news-thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--tjc-bg-soft, #f5f8fc); }
.tjc-news-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.tjc-news-card:hover .tjc-news-thumb img { transform: scale(1.05); }
.tjc-news-thumb-ph {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	color: #c2ccda;
}
.tjc-news-body { padding: 22px 24px 24px; }
.tjc-news-cat {
	display: inline-block;
	margin-bottom: 12px;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--tjc-primary-accessible);
	background: rgba(255, 94, 20, .1);
	border-radius: 6px;
}
.tjc-news-cat:hover { background: var(--tjc-primary-accessible); color: #fff; }
.tjc-news-title { font-size: 18px; line-height: 1.4; margin: 0 0 12px; }
.tjc-news-title a { color: var(--tjc-ink); }
.tjc-news-title a:hover { color: var(--tjc-primary-accessible); }
.tjc-news-date { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--tjc-muted); }
.tjc-news-date i { color: var(--tjc-primary); }
.tjc-news-more { text-align: center; margin-top: 44px; }
.tjc-home .tjc-btn-ghost-dark { background: transparent; color: var(--tjc-navy); border-color: var(--tjc-line); }
.tjc-home .tjc-btn-ghost-dark:hover { background: var(--tjc-navy); color: #fff; border-color: var(--tjc-navy); }

@media (max-width: 991px) {
	.tjc-news-grid { grid-template-columns: 1fr 1fr; }
	.tjc-news-grid .tjc-news-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 575px) {
	.tjc-news { padding: 56px 0; }
	.tjc-news-grid { grid-template-columns: 1fr; }
	.tjc-news-grid .tjc-news-card:last-child { grid-column: auto; }
}

/* =========================================================================
   9) 询价 CTA 行动条
   ========================================================================= */
.tjc-cta-band { position: relative; padding: 100px 0; overflow: hidden; }
.tjc-cta-band-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.tjc-cta-band-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,29,103,.94), rgba(0,29,103,.8)); }
.tjc-cta-band .container { position: relative; z-index: 2; }
.tjc-cta-band-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
}
.tjc-cta-band-title { font-size: 44px; font-weight: 800; color: #fff; margin: 0 0 14px; line-height: 1.15; }
.tjc-cta-band-sub { font-size: 18.5px; line-height: 1.6; color: rgba(255,255,255,.85); margin: 0; max-width: 640px; }
.tjc-cta-band-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.tjc-cta-band-actions .tjc-btn { padding: 17px 38px; font-size: 17px; }
.tjc-cta-band-contacts { display: flex; flex-wrap: wrap; gap: 10px; }
.tjc-cta-contact {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 8px;
	transition: all .15s ease;
}
.tjc-cta-contact:hover { background: #fff; color: var(--tjc-navy); border-color: #fff; }
.tjc-cta-contact i { font-size: 15px; }

@media (max-width: 767px) {
	.tjc-cta-band { padding: 50px 0; }
	.tjc-cta-band-title { font-size: 26px; }
	.tjc-cta-band-actions { align-items: stretch; width: 100%; }
	.tjc-cta-band-actions .tjc-btn { justify-content: center; }
}

/* =========================================================================
   10) 客户 & 协会 Logo 墙
   ========================================================================= */
.tjc-logos { padding: 78px 0; background: var(--tjc-bg-soft, #f5f8fc); }
.tjc-logos-clients {
	max-width: 1120px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--tjc-line);
	border-radius: 16px;
	padding: 40px 44px;
	box-shadow: 0 6px 24px rgba(16, 42, 82, .06);
}
.tjc-logos-clients img {
	width: 100%;
	height: auto;
	display: block;
}

.tjc-why {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 48px;
	padding-top: 46px;
	border-top: 1px solid var(--tjc-line);
}
.tjc-why-item { display: flex; gap: 15px; align-items: flex-start; }
.tjc-why-icon {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 23px;
	color: var(--tjc-primary);
	background: rgba(255, 94, 20, .1);
	border-radius: 12px;
}
.tjc-why-text h3 { font-size: 17px; color: var(--tjc-ink); margin: 4px 0 6px; }
.tjc-why-text p { font-size: 14px; line-height: 1.65; color: var(--tjc-muted); margin: 0; }

@media (max-width: 991px) {
	.tjc-why { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
}
@media (max-width: 575px) {
	.tjc-logos { padding: 52px 0; }
	.tjc-logos-clients { padding: 20px; }
	.tjc-why { grid-template-columns: 1fr; gap: 22px; }
}







