:root {
	--bg: #0b2952;
	--bg-2: #0f2f62;
	--bg-3: #0d274f;
	--text: #e9f2ff;
	--muted: #a9b8d3;
	--brand: #ffb74d;
	--brand-2: #ffd180;
	--navColor: #fff;
	--card: #0f203c99;
	--glass: rgba(255, 255, 255, 0.08);
	--shadow: 0 10px 30px rgba(0,0,0,.25);
	--navPadding: 10rem;
	--navImgWidth:7.5rem;
	--navFootSize:0.9rem;
	--navGap:2.5rem;
	--aboutBoxWidth: 1100px;	
	--aboutBoxHeight: 500px;
	--aboutBoxHeightP:500px;
	--aboutBoxRightBigFont:28px;
	--aboutBoxRightContentFont:14px;
	--aboutBoxRightBigiconFont:30px;
	--aboutRightListHeight:110px;
	--aboutRightIcon:80px;
	--thereBtnMargin:30px;

}

* { box-sizing: border-box; }
html, body { height: 100%; }
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
	color: var(--text);
	background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 40%, var(--bg-3) 100%);
	line-height: 1.6;
}

.container {
	width: min(1200px, 92%);
	margin: 0 auto;
	
}

/* 页脚使用更宽的容器 */
.site-footer .container {
	width: min(1400px, 95%);
}

/* Hero Section with Header - 已合并到下方统一样式 */
.hero-section {
	position: relative;
	height: 100vh;
	min-height: 520px;
	width: 100%;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	/* background: url('background1.jpg') center/cover; */
}
.hero-carousel {
	position: absolute;
	inset: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.carousel-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
	opacity: 1;
}



/* 轮播图控制区域 */
.carousel-controls {
	position: absolute;
	bottom: 15vh;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 20px;
	z-index: 1;
}

/* 轮播图进度条 */
.carousel-progress {
	width: 16rem;
	position: relative;
	z-index: 1;
}

.progress-bar {
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
	overflow: hidden;
	/* margin-bottom: 8px; */
}

.progress-fill {
	height: 100%;
	background: var(--brand);
	border-radius: 2px;
	transition: width 0.3s ease;
	position: relative;
}

.progress-fill::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	/* width: 2px; */
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 1px;
}


.carousel-prev,
.carousel-next {
	width: 35px;
	height: 35px;
	border: none;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	pointer-events: auto;
}

.carousel-prev:hover,
.carousel-next:hover {
	transform: scale(1.1);
}

.carousel-prev:active,
.carousel-next:active {
	transform: scale(0.95);
}

.carousel-prev img,
.carousel-next img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.carousel-progress {
		/* bottom: 20px; */
		width: 160px;
		z-index: 1;
	}
	
	.progress-bar {
		height: 3px;
	}
	
	.carousel-nav {
		padding: 0 15px;
	}
	
	.carousel-prev,
	.carousel-next {
		width: 40px;
		height: 40px;
	}
	
	.carousel-prev svg,
	.carousel-next svg {
		width: 16px;
		height: 16px;
	}
}

@media (max-width: 480px) {
	.carousel-progress {
		/* bottom: 15px; */
		width: 120px;
		z-index: 1;
	}
	
	.progress-bar {
		height: 2px;
	}
	
	.carousel-nav {
		padding: 0 10px;
	}
	
	.carousel-prev,
	.carousel-next {
		width: 35px;
		height: 35px;
	}
	
	.carousel-prev svg,
	.carousel-next svg {
		width: 14px;
		height: 14px;
	}
}

/* Header */
.site-header {
	position: relative;
	z-index: 10;
}
  .navNav{
  	position: fixed;
  	top: 0;
  	left: 0;
  	width: 100%;
  	z-index: 99999;
  }
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.9rem var(--navPadding); 
}

/* 三栏布局 */
.header-left {
	/* flex: 1; */
	/* max-width: 12.5rem; */
}

.header-center {
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	
}

.header-right {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 40px;
	margin-right: 20px;
}

.header-inner .nav {
	display: flex;
	align-items: center;
	gap: var(--navGap);
	position: relative;
}

/* Logo */
.logo-container {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
	z-index: 20;
}

.logo-icon {
	width: 2rem;
	height: 2rem;
	border: 2px solid #fff;
	border-radius: 50%;
	background: #fff;
	position: relative;
	flex-shrink: 0;
}

.logo-image {
	width: var(--navImgWidth);
	height: auto;
	flex-shrink: 0;
	object-fit: contain;
}
@media (max-width:1920px) {
:root{
 --navPadding: 15rem;
 --navImgWidth:7.5rem;
 --navFootSize:0.9rem;
 --navGap:2.5rem;
}
}
@media (max-width: 1679px) {
:root{
 --navPadding: 10rem;
 --navImgWidth:7.5rem;
  --navFootSize:0.9rem;
--navGap:2.5rem;
}
}
@media (max-width: 1439px) {
:root{
 --navPadding: 8rem;
 --navImgWidth:6.5rem;
  --navFootSize:0.8rem;
  --navGap:2rem;
}
}
@media (max-width: 1279px) {
:root{
 --navPadding: 5rem;
 --navImgWidth:6rem;
--navFootSize:0.8rem;
 --navGap:1.5rem;

}
}
@media (max-width: 1199px) {
:root{
--navPadding: 2rem;
 --navImgWidth:6rem;
   --navFootSize:0.8rem;
--navGap:1rem;
}
}
@media (max-width: 959px) {
:root{
 --navPadding: 2rem;
 --navImgWidth:6rem;
 --navFootSize:0.8rem;
 --navGap:1rem;
}
.header-center{
	display: none;
}
}

@media (max-width: 768px) {
	
}
@media (max-width: 480px) {
:root{
	--navPadding: 1rem;
 --navImgWidth:2rem;
}
	.logo-container {
		gap: 12px;
	}
	
	.logo-icon {
		width: 40px;
		height: 40px;
	}
	
	/* 修复header-inner在手机端的宽度问题 */
	.header-inner {
		padding: 0.9rem 15px !important;
		box-sizing: border-box;
		width: 100%;
		max-width: 100vw;
		overflow: hidden;
	}

}

.logo-icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
	height: 24px;
	background: #0b2952;
	border-radius: 3px;
	box-shadow: 0 0 0 2px #0b2952;
}

.logo-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
	height: 16px;
	background: #0b2952;
	border-radius: 2px;
}


.nav { 
	display: none; 
	/* gap: 3rem;  */
	position: relative;
	z-index: 15;
}
.nav a { 
	color: var(--text); 
	text-decoration: none; 
	opacity: .9; 
	position: relative;
	transition: all 0.3s ease;
	padding: 0.8rem 0;
	/* width: 2rem; */
	font-size: var(--navFootSize);
}
.nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 4px;
	border-radius: 10px;
	background: linear-gradient(90deg, rgba(227, 174, 41, 1) 0%, rgba(255, 208, 0, 1) 100%);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}
.nav a:hover { 
	opacity: 1; 
	
}
.nav a:hover::after {
	width: 2rem;
}
.header-right .nav a.active::after {
	width: 2rem !important;
}
.header-right .nav a.active {
	opacity: 1;
	color: var(--navColor);
	font-weight: bold;
}
.cta { color: #081426; background: var(--brand); padding: 8px 14px; border-radius: 999px; text-decoration: none; font-weight: 600; }

@media (min-width: 960px){
	.nav{ display: flex; }
	
	/* 桌面端隐藏移动端菜单 */
	.mobile-menu-toggle,
	.mobile-nav-menu,
	.mobile-nav-overlay {
		display: none;
	}
}





/* Hero */
.hero { 
	position: relative; 
	/* height: calc(100vh - 80px);  */
	height: 100vh;
	min-height: 520px; 
	display: grid; 
	place-items: center; 
	text-align: center; 
	z-index: 5;
}

@media (max-width: 768px) {
	.hero-section {
		min-height: 420px;
	}
	.hero {
		min-height: 420px;
	}
}

@media (max-width: 480px) {
	.hero-section {
		min-height: 320px;
	}
	.hero {
		min-height: 320px;
	}
}
.hero-content { position: relative; z-index: 1;
	letter-spacing:3px;
 }
.hero h1{ margin: 0 0 10px; font-size: clamp(35px, 7vw, 60px); color: #fff; }
.hero p{ margin: 0 0 24px; color: #fff; 
	font-size: clamp(30px, 3.5vw, 55px);  
}
.hero-actions{ display: inline-flex; gap: 12px; margin-top: 10vh;}
.btn{ display:inline-block; text-decoration:none; padding:12px 20px; border-radius:999px; font-size: 16px; font-weight: 500; }

@media (max-width: 480px) {
	.hero-actions {
		flex-direction: column;
		gap: 16px;
	}
	
	.btn {
		padding: 14px 24px;
		font-size: 16px;
	}
}
.btn.primary{ 
	background: linear-gradient(90deg, rgba(245, 232, 156, 1) 0%, rgba(179, 131, 36, 1) 100%); color:#fff; font-weight:700; transition: all 0.3s ease; 
	display: flex;
	align-items: center;
	font-size: 0.8rem;
}
.btn.primary:hover { background: linear-gradient(90deg, rgba(245, 232, 156, 1) 0%, rgba(179, 131, 36, 1) 100%); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(231, 210, 40, 0.3); }
.btn.primary svg { transition: transform 0.3s ease; }
.btn.primary:hover svg { transform: translateX(4px); }
.btn.ghost{ background: transparent; color: var(--text); border-color: rgba(255,255,255,.3); }
.btn.small{ padding:10px 16px; font-size:14px; }
.hero-scroll{ position:absolute; bottom:20px; left:50%; transform:translateX(-50%); font-size:12px; letter-spacing:.4em; opacity:.7 }

/* Sections */
.section{ padding: 15vh 0 15vh 0; display: flex;justify-content: center;}
.section.dark{ background: radial-gradient(80% 120% at 50% 0%, rgba(255,255,255,.04), rgba(255,255,255,0) 60%) }
.homeAbout{
	background: url('background2.jpg');
	height: 100vh;
	width: 100vw;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.aboutBox{
	/* background-color: #fff; */
	width: var(--aboutBoxWidth);
	height: var(--aboutBoxHeight);
	position: relative;
	border-radius: 20px;
	/* background: url('homeTwo.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center; */
	z-index: 1;
	/* 在右上角创建凹进去的直径100px的半圆效果 */
	/* -webkit-mask: radial-gradient(circle 50px at top 0px right 100px, transparent 50px, white 50px);
	mask: radial-gradient(circle 50px at top 0px right 100px, transparent 50px, white 50px) */
}
.boxx{
	width: 100%;
	height: 108%;
	/* height: 100%; */
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.aboutC{
width: 50%;
height: 100%;
/* background-color: red; */
position: absolute;
top: 0;
z-index: 1;
left: 0;
width: 100%;
height: 100%;
}
.about-bg{

}
.about-icon {
	position: absolute;
	right: 7.8%;
	top: -9%;
	width: var(--aboutRightIcon);
	height: var(--aboutRightIcon);
}
.about-left{
/* about */
position: absolute;
left: 0;
top: 0;
width: 50%;
z-index: 2;
/* background-color: red; */
/* background: url('about.png');
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center; */
}
.about-left-bg{
	height: var(--aboutBoxHeight);
	width: 135%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.about-right{
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	z-index: 2;
}
.about-right-box{
	margin: 6% 10%;
}
.about-right-header{
background: url('twoTex.png');
background-size: 100% 100%;
height: 70px;
width: 65%;
display: flex;
align-items: flex-end;
}
.about-right-box h3{
	color: #000;
	margin: 5px;
}
.about-right-header .tt{
	color: #000;
	font-weight: bold;
	/* font-size: clamp(20px, 4vw, var(--aboutBoxRightBigFont)); */
	font-size: var(--aboutBoxRightBigFont);
}
.about-right-text{
	color: rgba(128, 128, 128, 1);
	/* font-size: clamp(6px, 1vw, var(--aboutBoxRightContentFont)); */
	/* line-height: 2; */
	font-size: var(--aboutBoxRightContentFont);
}
.homeRightList{
	display: flex;
	align-items: center;
	border-radius: 15px;
	
	margin: 20px 0;
}
.homeRightList-header{
	width: 33%;
	height: var(--aboutBoxHeightP);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: rgba(16, 65, 142, 1);
	font-weight: bold;
	position: relative;
	background-color: rgba(247, 247, 247, 1);
}
.homeRightList-header-t::after{
	position: absolute;
	right: 20%;
	top: 20%;
	content: '+';
	/* font-size: clamp(5px, 2vw, var(--aboutBoxRightContentFont)); */
	font-size: var(--aboutBoxRightContentFont);
} 
.homeRightList-header-t::before{
	position: absolute;
	right: 2%;
	bottom: 15%;
	content: '';
	width: 25%;
	height: 25%;
	background: url('./aboutRightc.png');
	background-size: contain;
	background-repeat: no-repeat;

}
.homeRightList-header:hover{
	color: #fff;
	background: linear-gradient(90deg, rgba(32, 133, 200, 1) 0%, rgba(16, 65, 142, 1) 100%);
}
.homeRightList-header:hover .homeRightList-header-c{
	color: #fff;
}

.homeRightList-header-t{
	/* font-size: clamp(35px, 5vw, var(--aboutBoxRightBigFont)); */
	font-size: var(--aboutBoxRightBigFont);
}
.homeRightList-header-t span{
	/* font-size: clamp(15px, 3vw, var(--aboutBoxRightContentFont)); */
	font-size: var(--aboutBoxRightContentFont);
}
.homeRightList-header-c{
	color: #000;
	font-size: clamp(5px, 2vw, 12px);
}
.about-right-liao{
	width: 30%;
	display: flex;
	justify-content: center;
}
.xianshi{
	background-color: #fff;
}
.boxWT{
	width: var(--aboutBoxWidth);
}
/* Prefooter CTA */
.prefooter-cta { position: relative; overflow: hidden; }
.prefooter-cta .prefooter-bg { position: absolute; inset: 0; background: url('background6.jpg') center/cover; }
.prefooter-cta::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.25); z-index: 0; }
/* Bottom accent: single gradient gold line */
.prefooter-cta::before { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, #f6e7b2 0%, #e0b25a 35%, #d89a3a 50%, #e0b25a 65%, #f6e7b2 100%); z-index: 1; }
.prefooter-cta .prefooter-inner { position: relative; z-index: 2; text-align: center; padding: 48px 0;display: flex;flex-direction:column; justify-content: center;
    align-items: center; }
.prefooter-cta .prefooter-title { margin: 0 0 12px; font-size: clamp(28px, 5vw, 42px); color: #fff; }
.prefooter-cta .prefooter-desc { margin: 0 0 20px; color: #fff; opacity: .9; font-size: clamp(14px, 2.2vw, 18px); }

/* Partners Section Background */
#partners {
	background: url('background5.jpg') center/cover !important;
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

#partners::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('background5.jpg') center/cover;
	filter: blur(3px);
	z-index: -1;
}

#partners::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(100, 150, 255, 0.15);
	z-index: -1;
}
.section-title{ margin: 0 0 25px; font-size: clamp(26px, 4.2vw, 38px); text-align: center; color: #fff; }

@media (max-width: 768px) {
	.section {
		padding: 60px 0 0 0;
	}
}

@media (max-width: 480px) {
	.section {
		padding: 40px 0 0 0;
	}
}
.grid.two{ display:grid; grid-template-columns: 1fr; gap: 0;position: relative; }
@media (min-width: 960px){ .grid.two{ grid-template-columns: 0.9fr 1.1fr; gap: 0; } }

.card{ background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 20px; box-shadow: var(--shadow); }
.card h2, .card h3 { color: #fff; font-size: clamp(20px, 3vw, 24px); }
.card p { color: #fff; font-size: clamp(16px, 2.2vw, 18px); line-height: 1.6; }
.shadow{ box-shadow: var(--shadow); }
.glass{ background: var(--glass); }

.media{ 
	min-height: 260px; 
	background: url('about.png') ;
	background-repeat: no-repeat; 
	background-size: cover;
	/* border-radius: 16px 0 0 16px; */
	border-right: none;
}


/* About Section */
.about {
	background: url('background2.jpg') center/cover;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

/* About Section Header */
.about-header {
	position: relative;
	margin-bottom: 20px;
}

.about-bg-text {
	position: absolute;
	top: -20px;
	left: 0;
	font-size: clamp(48px, 8vw, 120px);
	font-weight: 300;
	color: rgba(0, 0, 0, 0.1); /* 调整透明度到0.1，使文字更加淡雅 */
	z-index: 1; /* 改为正数，确保文字不被遮挡 */
	letter-spacing: 2px;
	line-height: 1;
}

.about-header h2 {
	position: relative;
	z-index: 2; /* 确保标题显示在背景文字之上 */
	margin: 0;
	margin-left: 20px; /* 增加标题左边距 */
}

/* About Section Logo */
.about-content {
	position: relative;
	/* border-radius: 0 16px 16px 16px; */
	border-left: none;
	padding: 40px 50px;
	display: flex;
	flex-direction: column;
	align-items: flex-start; /* 添加这行，让子元素左对齐而不是拉伸 */
	overflow: visible; /* 允许图标显示在容器外部 */
}

.about-content::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: var(--card);
	border: 1px solid rgba(255,255,255,.06);
	border-left: none;
	/* border-radius: 0 16px 16px 16px; */
	/* 使用clip-path创建半圆形缺口 */
	clip-path: polygon(
		0% 0%,
		100% 0%,
		100% 100%,
		0% 100%,
		0% 0%,
		calc(100% - 80px) 0%,
		calc(100% - 60px) 40px,
		calc(100% - 60px) 80px,
		calc(100% - 80px) 120px,
		100% 120px,
		100% 100%
	);
	z-index: -1;
}



.about-white::after {
	background: #fff !important;
	border: 1px solid rgba(0,0,0,.1) !important;
}

.about-logo {
	position: absolute;
	top: -35px;
	right: 40px;
	width: 80px;
	height: 80px;
	z-index: 100;
}

.about-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 50%;
	/* 金色金属质感效果 */
	background: linear-gradient(145deg,#e7d282, #e7d282);
	box-shadow: 
		0 4px 15px rgba(255, 215, 0, 0.3),
		inset 0 2px 4px rgba(255, 255, 255, 0.4),
		inset 0 -2px 4px rgba(0, 0, 0, 0.2);
	border: 3px solid rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
	/* 底部透明效果 - 创建底部半圆形缺口 */
	clip-path: polygon(
		0% 0%,
		100% 0%,
		100% 100%,
		0% 100%,
		0% 0%,
		25% 0%,
		25% 25%,
		0% 25%
	);
}

.about-logo:hover img {
	transform: scale(1.05);
	box-shadow: 
		0 6px 20px rgba(255, 215, 0, 0.4),
		inset 0 1px 3px rgba(255, 255, 255, 0.5),
		inset 0 -1px 3px rgba(0, 0, 0, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
	.media {
		border-radius: 16px 16px 0 0;
		border-right: 1px solid rgba(255,255,255,.06);
		border-bottom: none;
	}
	
	.about-content {
		/* border-radius: 0 0 16px 16px; */
		border-left: 1px solid rgba(255,255,255,.06);
		border-top: none;
		padding: 30px 35px;
		align-items: flex-start; /* 确保在移动端也左对齐 */
		overflow: visible; /* 允许图标显示在容器外部 */
	}
	
	/* 移动端文字左边距调整 */
	.about-content p {
		margin-left: 15px;
	}
	
	.about-header h2 {
		margin-left: 15px;
	}
	
	.about-content::after {
		border-left: 1px solid rgba(255,255,255,.06);
		border-top: none;
		/* border-radius: 0 0 16px 16px; */
		clip-path: polygon(
			0% 0%,
			100% 0%,
			100% 100%,
			0% 100%,
			0% 0%,
			calc(100% - 60px) 0%,
			calc(100% - 45px) 30px,
			calc(100% - 45px) 60px,
			calc(100% - 60px) 90px,
			100% 90px,
			100% 100%
		);
	}
	
	.about-white::after {
		border-left: 1px solid rgba(0,0,0,.1) !important;
	}
	
	.about-logo {
		width: 60px;
		height: 60px;
		top: -25px;
		right: 30px;
		z-index: 100;
	}
	
	.about-logo img {
		/* 移动端底部透明效果 - 创建底部半圆形缺口 */
		clip-path: polygon(
			0% 0%,
			100% 0%,
			100% 100%,
			0% 100%,
			0% 0%,
			25% 0%,
			25% 25%,
			0% 25%
		);
	}
}

@media (max-width: 480px) {
	.media {
		border-radius: 16px 16px 0 0;
		border-right: 1px solid rgba(255,255,255,.06);
		border-bottom: none;
	}
	
	.about-content {
		/* border-radius: 0 0 16px 16px; */
		border-left: 1px solid rgba(255,255,255,.06);
		border-top: none;
		padding: 25px 25px;
		align-items: flex-start; /* 确保在小屏幕也左对齐 */
		overflow: visible; /* 允许图标显示在容器外部 */
	}
	
	.hero-button {
		padding: 12px 24px;
		font-size: 16px;
	}
	
	/* 小屏幕文字左边距调整 */
	.about-content p {
		margin-left: 10px;
	}
	
	.about-header h2 {
		margin-left: 10px;
	}
	
	.about-content::after {
		border-left: 1px solid rgba(255,255,255,.06);
		border-top: none;
		/* border-radius: 0 0 16px 16px; */
		clip-path: polygon(
			0% 0%,
			100% 0%,
			100% 100%,
			0% 100%,
			0% 0%,
			calc(100% - 50px) 0%,
			calc(100% - 37px) 25px,
			calc(100% - 37px) 50px,
			calc(100% - 50px) 75px,
			100% 75px,
			100% 100%
		);
	}
	
	.about-white::after {
		border-left: 1px solid rgba(0,0,0,.1) !important;
	}
	
	.about-logo {
		width: 50px;
		height: 50px;
		top: -20px;
		right: 25px;
		z-index: 100;
	}
	
	.about-logo img {
		/* 小屏幕底部透明效果 - 创建底部半圆形缺口 */
		clip-path: polygon(
			0% 0%,
			100% 0%,
			100% 100%,
			0% 100%,
			0% 0%,
			25% 0%,
			25% 25%,
			0% 25%
		);
	}
}

.about-content p{ 
	color: #fff; 
	margin-top: 0; 
	 
	font-size: clamp(16px, 2.2vw, 18px); 
	line-height: 1.6; 
}

/* 调整按钮和统计数字的布局 */
.about-content .btn {
	margin-top: 8px; /* 添加小的顶部边距，与统计数字区域保持适当距离 */
	display: inline-block !important;
}

/* 强制设置按钮宽度为内容自适应 */
.about-content .btn.primary {
	display: inline-block !important;
	width: auto !important;
	max-width: none !important;
	flex: none !important;
	box-sizing: content-box !important;
}

/* 使用更具体的选择器来确保优先级 */
.about-content a.btn.primary {
	display: inline-block !important;
	width: auto !important;
	max-width: none !important;
	flex: none !important;
	box-sizing: content-box !important;
}

/* 最强优先级选择器 - 覆盖所有可能的样式 */
.about-content a.btn.primary[href="#solution"] {
	display: inline-block !important;
	width: auto !important;
	max-width: none !important;
	flex: none !important;
	box-sizing: content-box !important;
	position: relative !important;
}

/* 白色背景样式 */
.about-white {
	background: #fff !important;
}

.about-white .about-header h2 {
	color: #000 !important;
}

.about-white .about-bg-text {
	color: rgba(0, 0, 0, 0.1) !important; /* 调整透明度到0.1，使文字更加淡雅 */
}

.about-white p {
	color: #000 !important;
}

.stats{ 
	display: flex; 
	justify-content: space-around;
	align-items: center;
	margin: 20px 0;
	background: #f8f9fa;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	width: 100%;
}
.stat{ 
	background: transparent; 
	padding: 15px 10px;
	border-radius: 0;
	text-align: center;
	position: relative;
	flex: 1;
	max-width: 200px;
}
.stat:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 50%;
	background: #d0d0d0;
	opacity: 0.6;
}
.stat b{ 
	font-size: 42px; 
	display: block; 
	color: #1e7abf; 
	font-weight: 700; 
	margin-bottom: 8px; 
	position: relative; 
	line-height: 1.1;
}
.stat sup{ 
	font-size: 14px; 
	color: #1e7abf; 
	font-weight: 600;
	margin-left: 8px;
	vertical-align: super;
}
.stat .unit {
	font-size: 14px;
	color: #1e7abf;
	font-weight: 600;
	position: absolute;
	bottom: 5px;
    right: 30px;
	line-height: 1;
}
.stat span{ 
	font-size: 14px; 
	color: #1e7abf; 
	opacity: 0.85; 
	font-weight: 500; 
	display: block;
	line-height: 1.3;
}

/* Swiper */
.mt-24{ margin-top: 24px; }
.slide-visual{ height: 320px; border-radius: 16px; background: url('.talent-large/public/img/dataV_1.png') center/cover; }

@media (max-width: 768px) {
	.slide-visual {
		height: 240px;
	}
}

@media (max-width: 480px) {
	.slide-visual {
		height: 200px;
	}
}
.slide-visual.alt{ background-image: url('.talent-large/public/img/dataV_2.png'); }
.slide-visual.dataV3{ background-image: url('.talent-large/public/img/dataV_3.png'); }
.slide-visual.dataV4{ background-image: url('.talent-large/public/img/dataV_4.png'); }
.swiper-pagination-bullet{ background: #fff; opacity:.4 }
.swiper-pagination-bullet-active{ background: var(--brand); opacity:1 }

/* Steps */
.steps{ display:grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 14px; }
@media (min-width: 720px){ .steps{ grid-template-columns: repeat(5,1fr); } }
.step{ background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 16px; text-align:center; }
.step span{ display:block; font-weight:700; color: var(--brand); font-size: 24px; }
.step p { color: #fff; font-size: 16px; margin: 8px 0 0 0; }

/* Partners */
.partners-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	align-items: center;
}

.partners-left {
	text-align: center;
}

.partners-number {
	font-size: clamp(60px, 12vw, 120px);
	font-weight: 700;
	background: linear-gradient(233.67deg, rgba(255, 255, 255, 1) 0%, rgba(255, 239, 209, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 20px;
	position: relative;
}

.partners-number sup {
	position: absolute;
	top: 20px;
	right: 90px;
	font-size: 0.2em;
	background: linear-gradient(233.67deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transform: translate(50%, -50%);
}

.partners-text {
	font-size: clamp(20px, 3vw, 28px);
	color: #fff;
	font-weight: 500;
	line-height: 1.3;
}

.partners-right {
	display: flex;
	justify-content: center;
}

.logo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 0;
	width: 100%;
	max-width: 800px;
}

.logo-item {
	width: 100%;
	height: 100%;
	min-height: 140px;
	display: grid;
	place-items: center;
	border-radius: 0;
	transition: all 0.3s ease;
	cursor: pointer;
	overflow: hidden;
	padding: 10px;
}

.logo-item:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.logo-placeholder {
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	opacity: 0.9;
}

.logo-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.logo-item:hover .logo-img {
	opacity: 1;
}

@media (max-width: 768px) {
	.partners-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	
	.partners-number {
		font-size: clamp(50px, 15vw, 80px);
		background: linear-gradient(233.67deg, rgba(255, 255, 255, 1) 0%, rgba(255, 239, 209, 1) 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}
	
	.partners-text {
		font-size: clamp(18px, 4vw, 24px);
	}
	
	.logo-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.partners-content {
		gap: 30px;
	}
	
	.partners-number {
		font-size: clamp(40px, 18vw, 60px);
		background: linear-gradient(233.67deg, rgba(255, 255, 255, 1) 0%, rgba(255, 239, 209, 1) 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}
	
	.partners-text {
		font-size: clamp(16px, 5vw, 20px);
	}
	
	.logo-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(6, 1fr);
		gap: 0;
		max-width: 400px;
	}
	
	.logo-item {
		width: 100%;
		height: 100%;
		min-height: 100px;
	}
	
	.logo-placeholder {
		font-size: 10px;
	}
}

/* Certs */
.certs{ display:flex; gap: 12px; overflow-x:auto; padding-bottom: 8px; }
.cert{ min-width: 160px; height: 220px; border-radius: 12px; background: linear-gradient(180deg,#f6f9ff,#e8eef9); box-shadow: var(--shadow) }

/* Tech Strength */
#tech-strength {
	background-image: url('jiangbei.jpg') !important;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	position: relative;
	min-height: 100vh;
	z-index: 1;
}

#tech-strength::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('jiangbei.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

.tech-strength-header {
	position: relative;
	text-align: center;
	margin-bottom: 40px;
}

/* Tech Strength Tabs */
.tech-tabs {
	display: flex;
	justify-content: center;
	gap: 0;
	margin-bottom: 0;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 12px 12px 0 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	backdrop-filter: blur(10px);
}

/* 技术实力模块的tab按钮区域样式 - 确保背景半透明 */
#tech-strength .tech-tabs {
	background: rgba(255, 255, 255, 0.7) !important;
	backdrop-filter: blur(10px) !important;
}

.tab-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 24px;
	background: transparent;
	border: none;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 500;
	flex: 1;
	position: relative;
}

.tab-btn:last-child {
	border-right: none;
}

.tab-btn:hover {
	background: #f0f0f0;
	color: #333;
}

.tab-btn.active {
	background: linear-gradient(90deg, #ffd700, #ffb347);
	color: #000;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.tab-btn.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #000;
}

.tab-icon {
	font-size: 18px;
}

/* Tab Content */
.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

/* 第一个tab内容与tabs连接 */
.tab-content:first-of-type {
	border-radius: 0 0 12px 12px;
	/* background: rgba(255, 255, 255, 0.7); */
	/* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
	margin-top: 0;
	/* backdrop-filter: blur(10px); */
}

/* 技术实力模块的tab内容样式 - 确保背景图可见 */
#tech-strength .tab-content {
	background: transparent !important;
	box-shadow: none !important;
}

#tech-strength .tab-content:first-of-type {
	background: rgba(255, 255, 255, 0.7) !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.tech-strength-bg-text {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-size: clamp(48px, 8vw, 120px);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.1);
	z-index: -1;
	letter-spacing: 2px;
}

.certificates-showcase {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 40px 0;
	min-height: 400px;
}

.cert-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all 0.3s ease;
}

.cert-nav:hover {
	transform: translateY(-50%) scale(1.1);
}

.cert-nav-left {
	left: 20px;
}

.cert-nav-right {
	right: 20px;
}

.certificates-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	perspective: 1000px;
}

.certificate {
	background: linear-gradient(135deg, #e8f4fd, #d1e9fb);
	border: 2px solid rgba(255, 255, 255, 0.8);
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.cert-content {
	padding: 20px;
	text-align: center;
	color: #0b2952;
	font-size: 12px;
	line-height: 1.4;
}

.cert-header {
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 10px;
}

.cert-title {
	font-weight: 500;
	margin-bottom: 12px;
	font-size: 9px;
}

.cert-seal {
	width: 24px;
	height: 24px;
	background: #d32f2f;
	border-radius: 50%;
	margin: 0 auto 8px;
	position: relative;
}

.cert-seal::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
}

.cert-qr {
	width: 20px;
	height: 20px;
	background: #000;
	margin: 0 auto;
	border-radius: 4px;
	position: relative;
}

.cert-qr::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 2px;
}

/* 证书图片样式 */
.cert-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.cert-image:hover {
	transform: scale(1.02);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Certificate sizes and positions */
.cert-center {
	width: 280px;
	height: 380px;
	transform: scale(1) rotateY(0deg);
	z-index: 5;
}

.cert-left-1 {
	width: 200px;
	height: 270px;
	transform: scale(0.7) rotateY(-15deg) translateX(20px);
	z-index: 3;
}

.cert-left-2 {
	width: 160px;
	height: 220px;
	transform: scale(0.57) rotateY(-25deg) translateX(40px);
	z-index: 2;
}

.cert-right-1 {
	width: 200px;
	height: 270px;
	transform: scale(0.7) rotateY(15deg) translateX(-20px);
	z-index: 3;
}

.cert-right-2 {
	width: 160px;
	height: 220px;
	transform: scale(0.57) rotateY(25deg) translateX(-40px);
	z-index: 2;
}

/* Hover effects */
.certificate:hover {
	transform: scale(1.05) rotateY(0deg);
	z-index: 10;
}

.cert-left-1:hover {
	transform: scale(0.75) rotateY(-10deg) translateX(15px);
}

.cert-left-2:hover {
	transform: scale(0.62) rotateY(-20deg) translateX(30px);
}

.cert-right-1:hover {
	transform: scale(0.75) rotateY(10deg) translateX(-15px);
}

.cert-right-2:hover {
	transform: scale(0.62) rotateY(20deg) translateX(-30px);
}

.tech-strength-cta {
	text-align: center;
	margin-top: 40px;
}

.tech-strength-cta .btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	font-size: 16px;
}

/* 确保about section中的按钮不受影响 - 使用更高优先级的选择器 */
.about-content .btn.primary {
	display: inline-block !important;
	width: auto !important;
	max-width: none !important;
}

/* 在所有设备上都确保about section按钮的样式 */
@media (max-width: 768px) {
	.about-content .btn.primary,
	.about-content a.btn.primary,
	.about-content a.btn.primary[href="#solution"] {
		display: inline-block !important;
		width: auto !important;
		max-width: none !important;
		flex: none !important;
		box-sizing: content-box !important;
	}
}

@media (max-width: 480px) {
	.about-content .btn.primary,
	.about-content a.btn.primary,
	.about-content a.btn.primary[href="#solution"] {
		display: inline-block !important;
		width: auto !important;
		max-width: none !important;
		flex: none !important;
		box-sizing: content-box !important;
	}
}

.tech-strength-cta .btn svg {
	transition: transform 0.3s ease;
}

.tech-strength-cta .btn:hover svg {
	transform: translateX(4px);
}

/* 所有tab页都使用相同的证书样式，无需额外的样式定义 */

/* Responsive adjustments */
@media (max-width: 768px) {
	.tech-tabs {
		flex-direction: column;
		gap: 0;
	}
	
	.tab-btn {
		border-right: none;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		padding: 12px 20px;
	}
	
	.tab-btn:last-child {
		border-bottom: none;
	}
	
	/* 所有tab页都使用相同的证书样式，响应式设计已包含在证书样式中 */
	
	.certificates-container {
		gap: 15px;
	}
	
	.cert-center {
		width: 220px;
		height: 300px;
	}
	
	.cert-left-1, .cert-right-1 {
		width: 160px;
		height: 220px;
		transform: scale(0.6) rotateY(0deg) translateX(0);
	}
	
	.cert-left-2, .cert-right-2 {
		display: none;
	}
	
	.cert-nav {
		width: 40px;
		height: 40px;
	}
	
	.cert-nav-left {
		left: 10px;
	}
	
	.cert-nav-right {
		right: 10px;
	}
}

/* News */
.news-grid{ display:grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 960px){ .news-grid{ grid-template-columns: repeat(3,1fr); } }
.news-card{ background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 18px; }
.news-card h3{ margin: 0 0 8px; color: #fff; font-size: 20px; }
.news-card p{ color: #fff; margin:0 0 10px; font-size: 16px; line-height: 1.6; }
.news-card .more{ color: var(--brand-2); text-decoration:none }

/* 新的新闻布局样式 */
.news-layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 30px;
	align-items: start;
}

.news-left {
	display: flex;
	flex-direction: row;
	gap: 20px;
	/* 改为横向排列 */
	align-items: stretch;
	/* 横向排列 */
	justify-content: space-between;
	/* 确保子元素横向排列 */
	width: 100%;
}

/* 强制确保左侧大块横向排列 */
.news-left > .news-block.large {
	display: block !important;
	width: calc(50% - 10px) !important;
	margin-bottom: 0 !important;
	position: relative !important;
	top: 0 !important;
	left: 0 !important;
	float: none !important;
	clear: none !important;
}

.news-left > .news-block.large:last-child {
	margin-bottom: 0 !important;
}

.news-right {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.news-block {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 16px;
	padding: 24px;
	transition: all 0.3s ease;
}

.news-block:hover {
	background: rgba(255,255,255,.08);
	border-color: rgba(255,255,255,.12);
	transform: translateY(-2px);
}

/* 为左侧大块添加特殊的横向样式 */
.news-left .news-block.large {
	border-left: 4px solid var(--brand-2);
	position: relative;
	/* 强制横向排列 */
	display: block !important;
	width: calc(50% - 10px) !important;
	margin-bottom: 0 !important;
	/* 确保横向排列 */
	position: relative;
	top: 0;
	left: 0;
}

.news-left .news-block.large:last-child {
	margin-bottom: 0 !important;
}

.news-left .news-block.large::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--brand-2);
	border-radius: 2px 0 0 2px;
}

.news-block.large {
	padding: 30px;
	/* 确保横向块状展示 */
	min-height: 400px;
	box-sizing: border-box;
}

.news-block.large h3 {
	margin: 0 0 16px 0;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
}

.news-block.large p {
	color: #fff;
	margin: 0 0 20px 0;
	font-size: 16px;
	line-height: 1.7;
	opacity: 0.9;
}

.news-block.large .more {
	color: var(--brand-2);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	transition: all 0.3s ease;
}

.news-block.large .more:hover {
	color: var(--brand);
	text-decoration: underline;
}

.news-block.small {
	padding: 20px;
}

.news-block.small h4 {
	margin: 0 0 12px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}

.news-block.small p {
	color: #fff;
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	opacity: 0.85;
}

/* News Tabs */
.news-tabs {
	display: flex;
	justify-content: center;
	gap: 0;
	margin-bottom: 30px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.news-tab-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 24px;
	background: transparent;
	border: none;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 500;
	flex: 1;
	position: relative;
}

.news-tab-btn:last-child {
	border-right: none;
}

.news-tab-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.news-tab-btn.active {
	background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
	color: #ffd700;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.news-tab-btn.active::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #ffd700;
}

/* News Tab Content */
.news-tab-content {
	display: none;
}

.news-tab-content.active {
	display: block;
}

/* News CTA Button */
.news-cta {
	text-align: center;
	margin-top: 40px;
}

.news-cta .btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	font-size: 16px;
	transition: all 0.3s ease;
}

.news-cta .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(231, 210, 40, 0.3);
}

.news-cta .btn svg {
	transition: transform 0.3s ease;
}

.news-cta .btn:hover svg {
	transform: translateX(4px);
}

/* 响应式设计 */
@media (max-width: 768px) {
	.news-tabs {
		flex-direction: column;
		gap: 0;
	}
	
	.news-tab-btn {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		padding: 12px 20px;
	}
	
	.news-tab-btn:last-child {
		border-bottom: none;
	}
	
	.news-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	
	.news-card {
		padding: 16px;
	}
	
	.news-card h3 {
		font-size: 18px;
	}
	
	.news-card p {
		font-size: 14px;
	}
	
	/* 移动端新闻布局调整 */
	.news-layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.news-left {
		gap: 15px;
		/* 移动端改为竖型展示 */
		flex-direction: column;
	}
	
	.news-right {
		gap: 12px;
	}
	
	.news-block.large {
		padding: 24px;
		/* 移动端竖型块状展示 */
		min-height: 180px;
		/* 确保移动端也是竖型排列 */
		display: block !important;
		width: 100% !important;
		margin-bottom: 15px !important;
		/* 强制竖型排列 */
		position: relative !important;
		top: 0 !important;
		left: 0 !important;
		float: none !important;
		clear: both !important;
	}
	
	.news-block.large:last-child {
		margin-bottom: 0 !important;
	}
	
	.news-block.large h3 {
		font-size: 20px;
		margin-bottom: 12px;
	}
	
	.news-block.large p {
		font-size: 15px;
		margin-bottom: 16px;
	}
	
	.news-block.small {
		padding: 18px;
	}
	
	.news-block.small h4 {
		font-size: 16px;
		margin-bottom: 10px;
	}
	
	.news-block.small p {
		font-size: 13px;
	}
	
	/* 移动端新闻CTA按钮调整 */
	.news-cta {
		margin-top: 30px;
	}
	
	.news-cta .btn {
		padding: 12px 24px;
		font-size: 15px;
	}
}

/* Footer */
.site-footer{ 
	background: url('background7.jpg');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	border-top:1px solid rgba(255,255,255,.06);  
}
.footer-inner{ display:grid; grid-template-columns: 1fr; gap: 30px; padding: 36px 0; }
@media (min-width: 960px){ .footer-inner{ grid-template-columns: 1fr 2fr 1fr; gap: 40px; } }

/* Footer Left - Logo and Contact */
.footer-left {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer-logo .logo-image {
	width: 120px;
	height: auto;
	border-radius: 8px;
	flex-shrink: 0;
	object-fit: contain;
}



.contact-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 20px;
}

.hotline-label {
	color: #fff;
	font-size: 14px;
	opacity: 0.8;
}

.hotline-number {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	font-family: 'Courier New', monospace;
}

/* Footer Columns */
.footer-cols{ display:grid; grid-template-columns: repeat(2,1fr); gap: 30px; }
@media (min-width: 768px){ .footer-cols{ grid-template-columns: repeat(4,1fr); gap: 35px; } }
@media (min-width: 1200px){ .footer-cols{ grid-template-columns: repeat(7,1fr); gap: 40px; } }

/* Footer Right - QR Code */
.footer-right {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.contact-icons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.contact-icon {
	width: 32px;
	height: 32px;
	object-fit: contain;
	transition: opacity 0.3s ease;
}

.contact-icon:hover {
	opacity: 0.8;
}

.qrcode-text {
	color: #fff;
	font-size: 12px;
	text-align: center;
	opacity: 0.8;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 24px 0;
	}
	
	.footer-cols {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.footer-left {
		align-items: center;
		text-align: center;
	}
	
	.footer-right,
	.contact-icons {
		order: -1;
	}
}

@media (max-width: 480px) {
	.footer-inner {
		gap: 25px;
		padding: 20px 0;
	}
	
	.footer-cols {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.footer-logo .logo-image {
		width: 80px;
		height: auto;
	}
	

	
	.hotline-number {
		font-size: 20px;
	}
}
.col h4{ margin: 0 0 6px; color: #fff; font-size: 14px; white-space: nowrap; }
.col a{ display:block; color: #fff; text-decoration:none; margin: 6px 0; font-size: 12px; opacity: 0.9; white-space: nowrap; }
.col a:hover { opacity: 1; }
.qrcode{ width: 90px; height: 90px; background: #fff url('') center/cover; border-radius: 8px; }
.copyright{ padding: 10px 0 24px; border-top: 1px solid rgba(255,255,255,.06); text-align:center; color: #fff; font-size: 16px; opacity: 0.8; }

/* Utilities */
img{ max-width: 100%; display: block; border-radius: 12px; }

/* Mobile Optimizations */
@media (max-width: 768px) {
	/* 隐藏桌面端导航 */
	.header-right {
		display: none;
	}
	
	/* 调整header布局 */
	.header-inner {
		justify-content: space-between;
	}
	
	.header-center {
		flex: 1;
		display: flex;
		justify-content: center;
	}
	
	/* 汉堡菜单图标样式 */
	.mobile-menu-toggle {
		display: flex !important;
		flex-direction: column;
		justify-content: space-around;
		width: 30px;
		height: 30px;
		background: rgba(255, 255, 255, 0.1);
		border: 1px solid rgba(255, 255, 255, 0.3);
		border-radius: 4px;
		cursor: pointer;
		padding: 5px;
		z-index: 1001;
		position: relative;
		flex-shrink: 0;
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	.mobile-menu-toggle span {
		width: 100%;
		height: 3px;
		background-color: #ffffff;
		border-radius: 2px;
		transition: all 0.3s ease;
		transform-origin: center;
		display: block;
	}
	
	/* 汉堡菜单动画效果 */
	.mobile-menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}
	
	.mobile-menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}
	
	.mobile-menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}
	
	/* 移动端导航菜单 */
	.mobile-nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		z-index: 1000;
		transition: right 0.3s ease;
		padding-top: 80px;
		box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
	}
	
	.mobile-nav-menu.active {
		right: 0;
	}
	
	.mobile-nav {
		display: flex;
		flex-direction: column;
		padding: 20px;
	}
	
	.mobile-nav a {
		color: #333;
		text-decoration: none;
		padding: 15px 20px;
		font-size: 16px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease;
		position: relative;
	}
	
	.mobile-nav a:last-child {
		border-bottom: none;
	}
	
	.mobile-nav a:hover,
	.mobile-nav a.active {
		color: #e4b027;
		background: rgba(228, 176, 39, 0.1);
		padding-left: 30px;
	}
	
	.mobile-nav a::before {
		content: '';
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 0;
		height: 2px;
		background: linear-gradient(90deg, rgba(227, 174, 41, 1) 0%, rgba(255, 208, 0, 1) 100%);
		transition: width 0.3s ease;
	}
	
	.mobile-nav a:hover::before,
	.mobile-nav a.active::before {
		width: 4px;
	}
	
	/* 移动端遮罩层 */
	.mobile-nav-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}
	
	.mobile-nav-overlay.active {
		opacity: 1;
		visibility: visible;
	}
	
	/* Improve touch targets */
	.nav a, .cta {
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	/* 移动端统计数字样式调整 */
	.stats {
		padding: 6px;
	}
	
	.stat {
		padding: 8px 16px;
		min-width: 70px;
	}
	
	.stat b {
		font-size: 24px;
	}
	
	.stat .unit {
		font-size: 12px;
	}
	
	.stat span {
		font-size: 14px;
	}
	
	.btn {
		min-height: 44px;
	}
	
	/* Better spacing for mobile */
	.container {
		width: 94%;
	}
	
	/* Optimize text readability */
	body {
		font-size: 16px;
		line-height: 1.5;
	}
}

@media (max-width: 480px) {
	/* Further optimize for small screens */
	.container {
		width: 100%;
		padding: 0 15px;
	}
	
	/* 小屏幕统计数字样式调整 */
	.stats {
		padding: 4px;
	}
	
	.stat {
		padding: 6px 12px;
		min-width: 60px;
	}
	
	.stat b {
		font-size: 22px;
	}
	
	.stat .unit {
		font-size: 11px;
	}
	
	.stat span {
		font-size: 13px;
	}
	
	/* Ensure buttons are large enough for touch */
	.btn {
		min-height: 48px;
		font-size: 16px;
	}
	
	/* Optimize card padding */
	.card {
		padding: 16px;
	}
}

/* Solution Section Styles */
.solution {
	position: relative;
	background: url('background3.jpg') center/cover !important;
	background-attachment: fixed;
	padding-bottom: 0;
	/* height: 100vh; */
	min-width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.solution::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('background3.jpg') center/cover;
	background-attachment: fixed;
	filter: blur(5px);
	z-index: -1;
}

.solution .container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.solution-header {
	position: relative;
	text-align: center;
	margin-bottom: 60px;
	color: #fff;
}

.solution-bg-text {
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	font-size: clamp(60px, 10vw, 80px);
	font-weight: 500;
	color: rgba(207, 207, 207, 0.38);
	z-index: 1;
	letter-spacing: 4px;
	line-height: 1;
	position: relative;
}
.solutionHeaderBox{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.solutionHeaderBox::after{
	content: '';
	position: absolute;
	right: -15px;
	top: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 3px solid rgba(232, 186, 144, 1);
}

.solution-header h2 {
	position: relative;
	z-index: 2;
	margin: 0 0 16px 0;
	color: #fff;
}

.solution-description {
	position: relative;
	z-index: 2;
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: clamp(12px, 2vw, 18px);
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
}

.solution-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: center;
	/* margin-bottom: 60px; */
	background: #fff;
	border: 2px solid rgba(255, 255, 255, 0.8);
	border-radius: 20px;
	/* padding: 40px 40px 80px 40px; */
	padding: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	
	position: relative;
}
.solution-item{
	background: url('./coremofang.png');
	background-repeat: no-repeat;
	background-position: right center;
	width: 100%;
	height: 35vh;
	background-size: contain;
}
.solution-main{
	margin: 20px;
	/* height: 200px; */
}
.solution-main p{
	font-size: 14px;
	color: rgba(128, 128, 128, 1);
	width: 55%;
	margin-bottom: var(--thereBtnMargin);
}
.solution-main h3 {
	color: #000;
	/* font-size: clamp(24px, 4vw, 32px); */
	margin: 0 0 20px 0;
	font-weight: 600;
}

/* .solution-main p {
	color: #0b2952;
	font-size: clamp(16px, 2.2vw, 18px);
	line-height: 1.6;
	margin: 0 0 30px 0;
	opacity: 0.8;
} */

.solution-main .btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	/* padding: 14px 28px; */
	font-size: 11px;
}

.solution-diagram {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 300px;
	background: #0a2a71;
	border-radius: 16px;
	padding: 20px;
}

.diagram-image {
	max-width: 80%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.diagram-image:hover {
	transform: scale(1.02);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.solution-products {
	display: flex;
	justify-content: center;
	gap: 0;
	flex-wrap: nowrap;
	 border-radius: 0;
	overflow: hidden;
	border-top: rgba(255, 255, 255, 0.6) solid 0.1px;
	/* margin-top: 40px; */
	width: 100%;
	position: relative;
}

.product-tab {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 0;
	background: transparent;
	border: none;
	
	color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 500;
	flex: 1;
	position: relative;
	text-decoration: none;
}
.product-text{
	border-right: 0.1px solid rgba(255, 255, 255, 0.6);
	width: 100%;
	display: flex;
	justify-content: center;
}


.product-tab:last-child {
	border-right: none;
}

.product-tab:last-child .product-text {
	border-right: none;
}

.product-tab:hover {
background: rgba(255, 208, 0, 0.6);
	color: #fff;
}
.thereImg{
	width: 20%;
	height: 80px;
	margin-top: 20px;
}
/* .solution-products::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url('./thereIC.png');
	background-repeat: no-repeat;
	background-size: contain;
} */

.product-tab:hover::after {
	content: '';
	position: absolute;
	right: 12px;
	width: 30px;
	height: 30px;
	background: url('./whitelogo.png') center/contain no-repeat;
	opacity: 0.5;
	transition: all 0.3s ease;
}

.product-tab:hover .product-text::after {
	content: '>';
	display: inline-block;
	margin-left: 4px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	transition: all 0.3s ease;
}

.product-tab.active {
	background: linear-gradient(90deg, #ffd700, #ffb347);
	color: #000;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.product-tab.active::after {
	content: '→';
	position: absolute;
	right: 12px;
	font-size: 16px;
	font-weight: bold;
	color: #000;
}

.product-icon {
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 600;
	color: #fff;
	margin-right: 8px;
}

/* Responsive Design for Solution Section */
@media (max-width: 768px) {
	.solution-content {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 30px 30px 40px 30px;
	}
	
	.solution-diagram {
		display: none; /* 手机模式下隐藏solution-diagram */
	}
	
	.thereImg {
		display: none; /* 手机模式下隐藏thereImg */
	}
	
	.solution-products {
		gap: 0;
		margin-top: 30px;
		flex-direction: column; /* 改为竖向排列 */
	}
	
	.product-tab {
		padding: 12px 16px;
		font-size: 13px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* 添加底部边框分隔 */
	}
	
	.product-tab:last-child {
		border-bottom: none; /* 最后一个不显示底部边框 */
	}
	
	.product-tab:hover::after,
	.product-tab.active::after {
		right: 8px;
		width: 18px;
		height: 18px;
	}
	
	.product-tab:hover .product-text::after {
		font-size: 14px;
		margin-left: 3px;
	}
}

@media (max-width: 480px) {
	.solution-header {
		margin-bottom: 40px;
	}
	
	.solution-bg-text {
		top: -30px;
		font-size: clamp(40px, 12vw, 80px);
	}
	
	.solution-content {
		gap: 30px;
		margin-bottom: 40px;
		padding: 25px 25px 40px 25px;
	}
	
	.solution-diagram {
		display: none; /* 小屏幕下也隐藏solution-diagram */
	}
	
	.thereImg {
		display: none; /* 小屏幕下也隐藏thereImg */
	}
	
	.solution-products {
		gap: 0;
		margin-top: 25px;
		flex-direction: column; /* 小屏幕下也改为竖向排列 */
	}
	
	.product-tab {
		padding: 10px 12px;
		font-size: 12px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* 添加底部边框分隔 */
	}
	
	.product-tab:last-child {
		border-bottom: none; /* 最后一个不显示底部边框 */
	}
	
	.product-tab:hover::after,
	.product-tab.active::after {
		right: 6px;
		width: 16px;
		height: 16px;
	}
	
	.product-tab:hover .product-text::after {
		font-size: 12px;
		margin-left: 2px;
	}
	
	.product-icon {
		width: 18px;
		height: 18px;
		font-size: 9px;
	}
}

/* Business Model Section Styles */
.business-model {
	position: relative;
	background:  url('background4.png') center/cover;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.business-header {
	position: relative;
	text-align: center;
	margin-bottom: 60px;
}

.business-bg-text {
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	font-size: clamp(60px, 10vw, 80px);
	font-weight: 500;
	color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	letter-spacing: 4px;
	line-height: 1;
	position: relative;
}


.business-header .section-title {
	position: relative;
	z-index: 2;
	margin: 0 0 24px;
	color: #000;
	font-size: clamp(26px, 4.2vw, 38px);
}

.business-tabs {
	display: flex;
	justify-content: center;
	gap: 0;
	margin-bottom: 0;
	/* background: #fff; */
	/* border-radius: 12px 12px 0 0; */
	box-shadow: none;
	overflow: hidden;
}

.tab-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 24px;
	background: transparent;
	border: none;
	/* border-right: 1px solid rgba(0, 0, 0, 0.1); */
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 500;
	flex: 1;
	position: relative;
	text-decoration: none;
}

.tab-item:last-child {
	border-right: none;
}

.tab-item:hover{
	/* background: #f5f5f5; */
}
/* .tab-item:hover span {
	color: rgba(185, 122, 59, 1);
} */
.tab-item.active{
	color: rgba(185, 122, 59, 1);
}
.tab-item.active::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, rgba(245, 232, 156, 1) 0%, rgba(179, 131, 36, 1) 100%), rgba(185, 122, 59, 1);
	/* background: linear-gradient(90deg, #ffd700, #ffb347); */
	
	/* box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); */
}

.tab-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: rgba(229, 229, 229, 1);
}

.tab-icon {
	width: 24px;
	height: 24px;
	background: transparent;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
	color: #333;
	overflow: hidden;
}

.tab-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 50%;
	display: none; /* 默认不显示图片 */
}

.tab-item.active .tab-icon img {
	display: block; /* 只有选中的标签页才显示图片 */
}

.tab-item.active .tab-icon {
	background: transparent;
}

.tab-item.active span {
	color: rgba(185, 122, 59, 1);
}

.business-content {
	position: relative;
	margin-top: 0;
}

.tab-content {
	display: none;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	/* background: #fff; */
	border-radius: 0 0 20px 20px;
	padding: 40px;
	/* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
}

.tab-content.active {
	display: grid;
}

.content-left {
	position: relative;
}

.content-image {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 20px;
}

.content-image img {
	width: 100%;
	height: 300px;
	/* object-fit: cover; */
	transition: all 0.3s ease;
}

.image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: #fff;
	padding: 20px;
	text-align: center;
}

.image-overlay h3 {
	margin: 0 0 8px 0;
	font-size: 20px;
	font-weight: 600;
}

.image-overlay p {
	margin: 0;
	font-size: 12px;
	opacity: 0.9;
	letter-spacing: 1px;
}

/* 圆形Logo样式 */
.circular-logo {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s ease;
}

.circular-logo:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.circular-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 50%;
}

.content-progress {
	display: flex;
	align-items: center;
	gap: 15px;
}

.progress-text {
	font-size: 14px;
	font-weight: 600;
	color: #666;
	min-width: 40px;
}

.progress-bar {
	flex: 1;
	height: 3px;
	background: rgba(230, 230, 230, 1);
	border-radius: 3px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: var(--brand);
	border-radius: 3px;
	transition: width 0.3s ease;
}

.nav-arrows {
	display: flex;
	gap: 8px;
}

.nav-arrow {
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 50%;
	background: #f0f0f0;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 16px;
	font-weight: bold;
}

.nav-arrow:hover {
	background: #1e7abf;
	color: #fff;
}

.content-right{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-evenly;
	height: 100%;
}
.contentSt{
	width: 100%;
	height: 2px;
	background-color: rgba(230, 230, 230, 1);
	/* margin-bottom: 0px; */
}
.content-right h4 {
	color: #000;
	font-size: 18px;
	margin: 0 0 20px 0;
	font-weight: 600;
}

.content-right p {
	color: rgba(128, 128, 128, 1);
	font-size: 12px;
	line-height: 1.6;
	margin: 0 0 30px 0;
}

.content-right .btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	/* padding: 14px 28px; */
	font-size: 12px;
}

/* Responsive Design for Business Model */
@media (max-width: 768px) {
	.business-tabs {
		flex-direction: column;
		gap: 0;
	}
	
	.tab-item {
		border-right: none;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		padding: 12px 20px;
	}
	
	.tab-item:last-child {
		border-bottom: none;
	}
	
	.tab-content {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 30px;
	}
	
	.content-image img {
		height: 250px;
	}
	
	.business-bg-text {
		top: -30px;
		font-size: clamp(40px, 12vw, 80px);
	}
}

@media (max-width: 480px) {
	.business-header {
		margin-bottom: 40px;
	}
	
	.business-bg-text {
		top: -20px;
		font-size: clamp(30px, 15vw, 60px);
	}
	
	.tab-content {
		padding: 25px;
	}
	
	.content-image img {
		height: 200px;
	}
	
	.content-progress {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	.progress-bar {
		width: 100%;
	}
}

/* Search Icon */
.search-container {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.search-icon {
	width: 2rem;
	height: 2rem;
	background-color: #fff;
	/* border: 2px solid #fff; */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.search-icon:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: scale(1.05);
}

.search-icon svg {
	width: 1.2rem;
	height: 1.2rem;
	color: rgba(128, 128, 128, 1);
}


