@charset "UTF-8";

/* Data analytics landing (/dsj/) */

body.bosofts-dsj {
	background: var(--color-page, #f0f4fc);
	color: var(--color-text, #1a1a2e);
}

body.bosofts-dsj #41 .a_top a {
	color: var(--color-primary, #165dff);
	font-weight: 600;
}

.dsj-main {
	display: block;
}

.dsj-hero {
	background: linear-gradient(135deg, #0f4c81 0%, #165dff 55%, #4080ff 100%);
	color: #fff;
	padding: 56px 16px 48px;
	text-align: center;
}

.dsj-hero__inner {
	max-width: 880px;
	margin: 0 auto;
}

.dsj-hero h1 {
	margin: 0 0 20px;
	font-size: clamp(26px, 4vw, 36px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.02em;
}

.dsj-hero__lead {
	margin: 0 auto 28px;
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.92);
	max-width: 760px;
}

.dsj-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.dsj-hero__btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}

.dsj-hero__btn--primary {
	background: #fff;
	color: var(--color-primary, #165dff);
}

.dsj-hero__btn--primary:hover {
	background: #eef2ff;
	transform: translateY(-1px);
}

.dsj-hero__btn--ghost {
	border: 1px solid rgba(255, 255, 255, 0.65);
	color: #fff;
}

.dsj-hero__btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
}

.dsj-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 16px;
	box-sizing: border-box;
}

.dsj-section--alt {
	background: #fff;
	border-top: 1px solid var(--color-border, #e8ecf4);
	border-bottom: 1px solid var(--color-border, #e8ecf4);
}

.dsj-section__title {
	margin: 0 0 12px;
	font-size: 24px;
	font-weight: 700;
	color: var(--color-text, #1a1a2e);
	text-align: center;
}

.dsj-section__title .dsj-accent {
	color: var(--color-primary, #165dff);
}

.dsj-section__intro {
	margin: 0 auto 32px;
	max-width: 720px;
	text-align: center;
	font-size: 15px;
	line-height: 1.75;
	color: var(--color-muted, #5a6578);
}

.dsj-services-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.dsj-service-card {
	background: #fff;
	border: 1px solid var(--color-border, #e8ecf4);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-card, 0 8px 32px rgba(22, 93, 255, 0.08));
	display: flex;
	flex-direction: column;
}

.dsj-service-card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	display: block;
}

.dsj-service-card__body {
	padding: 16px 16px 18px;
	flex: 1;
}

.dsj-service-card h3 {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 600;
	color: var(--color-text, #1a1a2e);
	text-align: center;
}

.dsj-service-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--color-muted, #5a6578);
}

.dsj-insights {
	background: var(--color-page, #f0f4fc);
}

.dsj-insight-tabs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 24px;
}

.dsj-insight-tab {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding: 14px;
	border: 2px solid transparent;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 2px 8px rgba(22, 93, 255, 0.06);
}

.dsj-insight-tab:hover {
	border-color: var(--color-primary-light, #4080ff);
}

.dsj-insight-tab.is-active {
	border-color: var(--color-primary, #165dff);
	box-shadow: 0 6px 20px rgba(22, 93, 255, 0.15);
}

.dsj-insight-tab img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 8px;
}

.dsj-insight-tab span {
	font-size: 13px;
	line-height: 1.45;
	font-weight: 600;
	color: var(--color-text, #1a1a2e);
}

.dsj-insight-panel {
	display: none;
	grid-template-columns: 280px 1fr;
	gap: 28px;
	align-items: start;
	padding: 28px;
	background: #fff;
	border-radius: 12px;
	border: 1px solid var(--color-border, #e8ecf4);
	box-shadow: var(--shadow-card, 0 8px 32px rgba(22, 93, 255, 0.08));
}

.dsj-insight-panel.is-active {
	display: grid;
}

.dsj-insight-panel img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

.dsj-insight-panel h3 {
	margin: 0 0 14px;
	font-size: 20px;
	font-weight: 700;
	color: var(--color-primary, #165dff);
	line-height: 1.35;
}

.dsj-insight-panel p {
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: var(--color-muted, #5a6578);
}

.dsj-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.dsj-faq-card {
	background: var(--color-page, #f0f4fc);
	border: 1px solid var(--color-border, #e8ecf4);
	border-radius: 12px;
	overflow: hidden;
}

.dsj-faq-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

.dsj-faq-card__body {
	padding: 18px 20px 22px;
}

.dsj-faq-card h3 {
	margin: 0 0 12px;
	font-size: 17px;
	font-weight: 600;
	color: var(--color-text, #1a1a2e);
}

.dsj-faq-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: var(--color-muted, #5a6578);
}

/* Footer — same layout as homepage */
body.bosofts-dsj .bosofts-footer {
	position: relative;
	z-index: 1;
	padding: 56px 16px 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: #1a1a2e;
	color: #e0e0e0;
	overflow: hidden;
}

body.bosofts-dsj .bosofts-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(126, 184, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(126, 184, 255, 0.06) 1px, transparent 1px);
	background-size: 48px 48px;
	opacity: 0.85;
}

body.bosofts-dsj .bosofts-footer .ftw {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--content-width, 1200px);
	margin: 0 auto;
	box-sizing: border-box;
}

body.bosofts-dsj .bosofts-footer #ftbox {
	margin-bottom: 30px;
	background: transparent;
	border-bottom: none;
	width: 100%;
}

body.bosofts-dsj .bosofts-footer #ftbox2 {
	background: transparent;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	margin-top: 30px;
	width: 100%;
}

body.bosofts-dsj .bosofts-footer #ft {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: 40px 48px;
	align-items: start;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	float: none;
}

body.bosofts-dsj .bosofts-footer #ft dl.f_1 {
	float: none;
	width: auto;
	margin: 0;
	padding: 0;
}

body.bosofts-dsj .bosofts-footer .dl1,
body.bosofts-dsj .bosofts-footer .dl2,
body.bosofts-dsj .bosofts-footer .dl3 {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

body.bosofts-dsj .bosofts-footer .dl2 {
	justify-self: start;
	align-items: flex-start;
}

body.bosofts-dsj .bosofts-footer .dl1 {
	justify-self: center;
}

body.bosofts-dsj .bosofts-footer .dl3 {
	justify-self: end;
	align-items: flex-end;
}

body.bosofts-dsj .bosofts-footer .end_1,
body.bosofts-dsj .bosofts-footer .end_2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 15px;
	float: none;
	margin: 0;
	background: none;
}

body.bosofts-dsj .bosofts-footer .end_2 {
	align-items: flex-start;
	text-align: left;
}

body.bosofts-dsj .bosofts-footer .dl3 ._link_1 {
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	gap: 8px;
	float: none;
}

body.bosofts-dsj .bosofts-footer .dl3 {
	text-align: right;
}

body.bosofts-dsj .bosofts-footer .dl3 ._link::after {
	left: auto;
	right: 0;
}

body.bosofts-dsj .bosofts-footer ._link {
	font-size: 18px;
	font-weight: 600;
	color: #7eb8ff;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
	padding: 0;
	background: none;
	line-height: 1.4;
}

body.bosofts-dsj .bosofts-footer ._link::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 40px;
	height: 2px;
	background: #7eb8ff;
}

body.bosofts-dsj .bosofts-footer .lianxi_1 {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	margin: 15px 0;
	line-height: 1.2;
	padding: 0;
	text-indent: 0;
	height: auto;
}

body.bosofts-dsj .bosofts-footer .shouqian,
body.bosofts-dsj .bosofts-footer .shouqian span {
	color: #b0b0b0;
	font-size: 14px;
	line-height: 2;
	margin: 8px 0;
}

body.bosofts-dsj .bosofts-footer .wechat-qrcode {
	margin-top: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}

body.bosofts-dsj .bosofts-footer .wechat-qrcode img {
	display: block;
	width: 160px;
	height: 160px;
	max-width: 100%;
	object-fit: contain;
	border-radius: 12px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	padding: 10px;
	background: rgba(255, 255, 255, 0.08);
	box-sizing: border-box;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

body.bosofts-dsj .bosofts-footer .wechat-qrcode img:hover {
	border-color: var(--color-primary-light, #4080ff);
	transform: scale(1.05);
}

body.bosofts-dsj .bosofts-footer .footqq a {
	color: #b0b0b0;
	text-decoration: none;
}

body.bosofts-dsj .bosofts-footer .footqq a:hover {
	color: #7eb8ff;
}

body.bosofts-dsj .bosofts-footer #ftbox2 .box {
	max-width: none;
	text-align: center;
	height: auto;
	line-height: 1.8;
}

body.bosofts-dsj .bosofts-footer #ftbox2 .box p {
	color: #a0a0a0;
	font-size: 14px;
	margin: 0;
}

body.bosofts-dsj .bosofts-footer .footer-company-link,
body.bosofts-dsj .bosofts-footer #ftbox2 .beian-link {
	color: #a1a0a0;
	text-decoration: none;
}

body.bosofts-dsj .bosofts-footer .footer-company-link:hover,
body.bosofts-dsj .bosofts-footer #ftbox2 .beian-link:hover {
	color: #7eb8ff;
}

body.bosofts-dsj .bosofts-footer .footer-slogan {
	margin-top: 12px;
	font-size: 13px;
	color: #888;
}

body.bosofts-dsj .bosofts-footer .cpn_name {
	display: none;
}

/* Legacy footer logo only (do not hide WeChat QR inside .wechat-qrcode) */
body.bosofts-dsj .bosofts-footer dt.end_1 > img[src*="end_1.png"] {
	display: none;
}

@media (max-width: 1024px) {
	.dsj-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dsj-insight-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dsj-insight-panel.is-active {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.dsj-section {
		padding: 36px 16px;
	}

	.dsj-services-grid,
	.dsj-faq-grid {
		grid-template-columns: 1fr;
	}

	.dsj-insight-tabs {
		grid-template-columns: 1fr;
	}

	body.bosofts-dsj .bosofts-footer #ft {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	body.bosofts-dsj .bosofts-footer .dl2,
	body.bosofts-dsj .bosofts-footer .dl3,
	body.bosofts-dsj .bosofts-footer .dl3 ._link_1 {
		align-items: center;
		text-align: center;
		justify-self: center;
	}
}
