/* 根变量，设计稿基准 */
:root {
	--design-width: 1920;
	--design-height: 980;
	--base-font-size: 16px;
}

/* HTML根元素的响应式字体大小 */
html {
	font-size: var(--base-font-size);
}

/* 1920px以上屏幕，固定根字体大小 */
@media (min-width: 1920px) {
	html {
		font-size: 16px;
	}
}

/* 1920px以下屏幕，按比例缩放字体大小 */
@media (max-width: 1919px) {
	html {
		font-size: calc(100vw / var(--design-width) * var(--base-font-size) * var(--design-width) / 16);
	}
}

/*导航*/

.he-top {
	/*background: #E0E0E0;*/
	padding: 5px;
}

.he-top p {
	font-size: 0.8em;
	color: #8c8787;
}

.he-top a {
	font-size: 0.8em;
	color: #8c8787;
	padding: 0 10px;
}
.nav>li {
	height: 100px;
	line-height: 100px;
	padding: 20px 28px;
}
.nav>li:hover {
	background-color: #ffe283;
}
.nav>li:hover {
	background-color: #ffe283;
}
.nav>li.active {
	background-color: #ffe283;
}

.nav>li>a {
	padding: 23px 20px;
	display: block;
	position: relative;
	text-align: center;
}
.nav>li>a.active {
	background-color: #ffe283;
}



.navbar-default .navbar-nav>li>a:hover {
}

nav li a:hover:after {
	width: 30%;
	height: 4px;
	background: #000;
	content: "";
	display: block;
	position: absolute;
	top: 75%;
	left: 35%;
}
header {
	background: #fece2e;
	height: 100px;
	position: relative;
    z-index: 2;
}

.navbar-nav>li>a.active {
	color: #000;
	background-color: transparent;
}

.navbar-brand img {
	height: 66px;
	margin: 17px 0;
}

nav a.active:after {
	width: 30%;
	height: 4px;
	background: #000;
	content: "";
	display: block;
	position: absolute;
	top: 75%;
	left: 35%;
}
.pin span{
	color: #F0AD4E;
}

/*首页-1*/

/* Service整体容器 */
.service {
	/*padding: 100px 0; !* 设计稿上下边距100px *!*/
	position: relative;
	overflow: hidden;
	background-color: #f5f7fa; /* 添加默认背景色 */
}

@media (max-width: 1919px) {
	.service {
		padding: calc(100 / 1920 * 100vw) 0; /* 响应式padding */
	}
}

/* 背景层 - 显示背景图片 */
.service-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/index-back.png'); /* 背景图片路径 */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 1; /* 设置为完全显示 */
	z-index: 1;
}

/* 内容包装器 */
.service-content-wrapper {
	position: relative;
	z-index: 2;
	max-width: 1446px; /* 684 + 762 = 1446px */
	margin: 0 auto;
}

@media (max-width: 1919px) {
	.service-content-wrapper {
		max-width: calc(1446 / 1920 * 100vw); /* 响应式宽度 */
	}
}

/* 主要内容容器 */
.service-content {
	display: flex;
	align-items: center;
	border-radius: 16px;
	overflow: hidden;
	width: 100%;
}

/* 左侧文字区域 - 最大宽度684px */
.service-text {
	flex: 0 0 auto;
	width: 684px;
	max-width: 684px;
	padding: 310px 0 268px; /* 设计稿内边距，右侧留空 */
}

@media (max-width: 1919px) {
	.service-text {
		width: calc(684 / 1920 * 100vw);
		max-width: calc(684 / 1920 * 100vw);
		/*padding: calc(80 / 1920 * 100vw) calc(60 / 1920 * 100vw) calc(80 / 1920 * 100vw) 0;*/
	}
}

/* 主标题 */
.service-title {
	width: 100%;
	font-size: 36px; /* 设计稿字体大小 */
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 52px; /* 增加下边距 */
	/*line-height: 1.3;*/
}

@media (max-width: 1919px) {
	.service-title {
		font-size: calc(42 / 1920 * 100vw);
		margin-bottom: calc(32 / 1920 * 100vw);
	}
}

@media (max-width: 768px) {
	.service-title {
		font-size: 32px;
	}
}

/* 描述段落 */
.service-description {
	/*margin-bottom: 40px; !* 设计稿下边距 *!*/
}

@media (max-width: 1919px) {
	.service-description {
		/*margin-bottom: calc(40 / 1920 * 100vw);*/
	}
}

.service-description p {
	font-size: 24px; /* 设计稿字体大小 */
	color: #3D3D3D;
	line-height: 40px; /* 增加行高 */
	margin-bottom: 40px;
}

@media (max-width: 1919px) {
	.service-description p {
		font-size: calc(18 / 1920 * 100vw);
		margin-bottom: calc(40 / 1920 * 100vw);
	}
}

/* 链接样式 */
.service-link {
	display: block;
	color: #0d75f5;
	font-size: 18px; /* 设计稿字体大小 */
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
	padding-top: 20px;
}

.service-link:hover {
	color: #0a5dc2;
	/*border-bottom: 2px solid #0a5dc2;*/
	text-decoration: none;
}

@media (max-width: 1919px) {
	.service-link {
		font-size: calc(18 / 1920 * 100vw);
		padding-bottom: calc(4 / 1920 * 100vw);
	}
}

/* 右侧图片区域 - 固定宽度762px */
.service-image {
	margin-top: -100px;
	flex: 0 0 auto;
	width: 762px;
	/*overflow: hidden;*/
}

@media (max-width: 1919px) {
	.service-image {
		width: calc(762 / 1920 * 100vw);
		height: calc(700 / 1920 * 100vw);
	}
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.5s ease;
}

/*.service-image:hover img {*/
/*	transform: scale(1.03);*/
/*}*/

/* 响应式调整 */
@media (max-width: 1445px) {
	.service-content-wrapper {
		max-width: 95%;
	}
}

@media (max-width: 1200px) {
	.service-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.service-text {
		width: 100%;
		max-width: 100%;
		padding: 60px 40px 40px;
	}

	.service-image {
		width: 100%;
		height: 500px;
		margin-top: 20px;
	}

	.service-title {
		font-size: 36px;
	}

	.service-description p {
		font-size: 17px;
	}
}

@media (max-width: 768px) {
	.service-text {
		padding: 40px 30px 30px;
	}

	.service-image {
		height: 400px;
	}

	.service-title {
		font-size: 28px;
	}

	.service-description p {
		font-size: 16px;
	}
}

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

	.service-text {
		padding: 30px 20px 20px;
	}

	.service-image {
		height: 300px;
	}

	.service-title {
		font-size: 24px;
	}

	.service-link {
		font-size: 16px;
	}
}

/* 确保背景图片在移动端也正常显示 */
@media (max-width: 768px) {
	.service-background {
		background-attachment: scroll; /* 移动端取消固定背景 */
	}
}

/* 添加一个备用背景，以防图片加载失败 */
.service:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);*/
	z-index: 0;
}

.service-background {
	z-index: 1; /* 确保背景图片在备用背景之上 */
}

/* ================================================
   联系我们部分样式
   ================================================ */

/* 联系我们整体容器 */
.contact-us {
	position: relative;
	min-height: 800px; /* 设计稿最小高度 */
	overflow: hidden;
}

@media (max-width: 1919px) {
	.contact-us {
		min-height: calc(800 / 1920 * 100vw);
	}
}

/* 背景容器 */
.contact-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* 上半部分背景 - 带半透黑色遮罩的图片 */
.contact-bg-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background-image: url('../images/contact-bg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.contact-bg-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6); /* 半透黑色遮罩层 */
	z-index: 2;
}

/* 下半部分背景 - 白色 */
.contact-bg-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background-color: white;
	z-index: 1;
}

/* 内容容器 */
.contact-container {
	position: relative;
	z-index: 3;
	max-width: 1440px; /* 设计稿宽度 */
	margin: 0 auto;
	padding: 100px 40px;
}

@media (max-width: 1919px) {
	.contact-container {
		max-width: 75%; /* 1440/1920≈75% */
		padding: calc(100 / 1920 * 100vw) calc(40 / 1920 * 100vw);
	}
}

/* 标题 */
.contact-title {
	text-align: center;
	font-size: 48px; /* 设计稿字体大小 */
	font-weight: 700;
	color: white;
	margin-bottom: 80px;
	position: relative;
	z-index: 4;
}

@media (max-width: 1919px) {
	.contact-title {
		font-size: calc(48 / 1920 * 100vw);
		margin-bottom: calc(80 / 1920 * 100vw);
	}
}

@media (max-width: 768px) {
	.contact-title {
		font-size: 36px;
		margin-bottom: 60px;
	}
}

/* 白色盒子 */
.contact-box {
	background-color: white;
	border-radius: 20px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
	padding: 60px;
	display: flex;
	gap: 80px;
	position: relative;
	z-index: 4;
	margin-top: -40px; /* 让盒子跨过两个背景 */
}

@media (max-width: 1919px) {
	.contact-box {
		border-radius: calc(20 / 1920 * 100vw);
		box-shadow: 0 calc(25 / 1920 * 100vw) calc(50 / 1920 * 100vw) rgba(0, 0, 0, 0.15);
		padding: calc(60 / 1920 * 100vw);
		gap: calc(80 / 1920 * 100vw);
		margin-top: calc(-40 / 1920 * 100vw);
	}
}

/* 左侧联系信息 */
.contact-info {
	flex: 1;
	min-width: 300px;
}

.contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 50px;
	padding-bottom: 50px;
	/*border-bottom: 1px solid #f0f0f0;*/
}

.contact-list li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

@media (max-width: 1919px) {
	.contact-list li {
		margin-bottom: calc(50 / 1920 * 100vw);
		padding-bottom: calc(50 / 1920 * 100vw);
	}
}

/* 图标样式 */
.contact-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 30px;
}

.contact-icon img {
	width: 28px;
	height: 28px;
	color: white;
}

@media (max-width: 1919px) {
	.contact-icon {
		width: calc(60 / 1920 * 100vw);
		height: calc(60 / 1920 * 100vw);
		margin-right: calc(30 / 1920 * 100vw);
	}

	.contact-icon img {
		width: calc(28 / 1920 * 100vw);
		height: calc(28 / 1920 * 100vw);
	}
}

/* 联系内容 */
.contact-content h3 {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
}

.contact-content p {
	font-size: 18px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 1919px) {
	.contact-content h3 {
		font-size: calc(24 / 1920 * 100vw);
		margin-bottom: calc(12 / 1920 * 100vw);
	}

	.contact-content p {
		font-size: calc(18 / 1920 * 100vw);
	}
}

/* 右侧图片区域 */
.contact-images {
	flex: 1;
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

@media (max-width: 1919px) {
	.contact-images {
		gap: calc(30 / 1920 * 100vw);
	}
}

.image-item {
	flex: 1;
	text-align: center;
}

.image-item img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 20px;
	transition: transform 0.3s ease;
}

.image-item img:hover {
	transform: translateY(-5px);
}

@media (max-width: 1919px) {
	.image-item img {
		height: calc(220 / 1920 * 100vw);
		border-radius: calc(12 / 1920 * 100vw);
		margin-bottom: calc(20 / 1920 * 100vw);
	}
}

/* 图片来源文字 */
.image-source {
	font-size: 14px;
	color: #999;
	margin: 0;
	font-style: italic;
}

@media (max-width: 1919px) {
	.image-source {
		font-size: calc(14 / 1920 * 100vw);
	}
}

/* 响应式调整 */
@media (max-width: 1200px) {
	.contact-box {
		flex-direction: column;
		gap: 60px;
	}

	.contact-images {
		width: 100%;
	}

	.contact-list li {
		margin-bottom: 40px;
		padding-bottom: 40px;
	}
}

@media (max-width: 768px) {
	.contact-container {
		padding: 80px 20px;
	}

	.contact-box {
		padding: 40px 30px;
		margin-top: -30px;
	}

	.contact-title {
		font-size: 32px;
		margin-bottom: 60px;
	}

	.contact-images {
		flex-direction: column;
		gap: 30px;
	}

	.image-item img {
		height: 200px;
	}

	.contact-list li {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.contact-icon {
		width: 50px;
		height: 50px;
		margin-right: 20px;
	}

	.contact-icon img {
		width: 24px;
		height: 24px;
	}

	.contact-content h3 {
		font-size: 20px;
	}

	.contact-content p {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.contact-container {
		padding: 60px 15px;
	}

	.contact-box {
		padding: 30px 20px;
		margin-top: -20px;
	}

	.contact-title {
		font-size: 28px;
		margin-bottom: 50px;
	}

	.contact-list li {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact-icon {
		margin-right: 0;
		margin-bottom: 20px;
	}

	.image-item img {
		height: 180px;
	}
}

.contact-text {
	font-size: 28px;
	width: 100%;
	text-align: center;
	line-height: 40px;
	margin: 60px auto 0;
	color: #3D3D3D;
}




/*页脚*/

.footera {
	/*background-image: url(../images/b.jpg);*/
	/* background-size: 100% 100%;*/
	background-color: #000000;
	border-top-width: 2px;
	border-top-style: solid;
	position: relative;
	line-height: 112px;
}

.footera-article {
	margin: 0 auto;
	width: 65%;
	display: flex;
	justify-content: space-between;
	text-align: center;
}

.footera-logo img {
	height: 72px;
	margin: 18px 0 22px;
}

.footera-sg {
	text-align: center;
	color: #e0dbda;
}

.footera-sgp {
	padding-top: 25px;
	padding-bottom: 25px;
	font-size: 1.25rem;
}

.footera_p {
	font-size: 1rem;
	padding-bottom: 30px
}

.footera_p a {
	color: #fff;
	font-size: 1rem;
}


/*关于我们单页*/

.ban img {
	width: 100%;
}

.auto {
	padding-top: 4%;
}

.auto img {
	width: 100%;
}

.pic-tit {
	position: relative;
	height: 45px;
	margin-bottom: 50px;
	z-index: 20;
}

.pic-tit em {
	color: #ff8800;
}

.pic-tit em.f-normal {
	color: #000;
}

.pic-tit .s-font {
	font-size: 0.8em;
	color: #999999;
	text-indent: 0;
	text-align: center;
}

.pic-tit h2,
.pic-tit em {
	font-size: 1.5em;
	text-align: center;
}

.v-line {
	position: absolute;
	top: 13px;
	width: 100%;
	z-index: 0;
	border-bottom: #e9e9e9 solid 1px;
}

.ab-tit {
	margin-left: -71px;
	position: absolute;
	top: -5px;
	left: 50%;
	background: #FFF;
	border: #FFF solid 6px;
	z-index: 5;
}

.ab-txt-right {
	text-align: right;
	font-size: 1.4em;
}

.ab-txt-right span {
	display: block;
	font-size: 0.6em;
	color: #C1C1C1;
}

.ab-wen {
	text-indent: 1.9em;
	margin-top: 20px;
	line-height: 1.8em;
}

.list-img {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.list-img-tit {
	width: 100%;
	position: absolute;
	top: 56.25%;
	z-index: 5;
}

.list-img-tit h2 {
	color: #FF8800;
	font-size: 1.7em;
	margin-bottom: 20px;
}

.list-img-tit p,
.list-img-tit h2 {
	text-align: center;
}

.ab-cul {
	padding: 0 40px;
}

.ab-cul .col-md-2 {
	padding: 0;
	margin-right: 11%;
}

.ab-cul .col-md-2:last-child {
	margin: 0;
}


/*服务单页*/
/* ================================================
   定制化培养服务流程部分样式 - 1920px固定比例缩放
   ================================================ */

/* 整体容器 */
.customization-process {
	padding: 100px 0;
	background-color: #fff;
	position: relative;
	overflow: hidden;
	width: 1920px; /* 固定设计稿宽度 */
	margin: 0 auto;
	box-sizing: border-box;
	transform-origin: center top; /* 缩放基准点为顶部中心 */
}

/* 添加缩放容器 */
.customization-process-wrapper {
	width: 1920px;
	margin: 0 auto;
	position: relative;
}

/* 标题区域 */
.process-header {
	text-align: center;
	margin-bottom: 80px;
}

.process-title {
	font-size: 48px;
	font-weight: 700;
	color: #3D3D3D;
	margin-bottom: 20px;
}

/* 装饰部分 */
.process-decoration {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.decoration-img {
	width: 60px;
	height: 14px;
	margin: 23px auto 28px;
}

/* 时间线容器 */
.process-timeline {
	position: relative;
	width: 1516px;
	height: 800px; /* 固定高度 */
	margin: 0 auto;
	padding: 0;
}

/* 水平时间线 */
.timeline-line {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 4px;
	background-color: #ffd95f;
	transform: translateY(-50%);
	z-index: 1;
}

/* 步骤容器 */
.process-step {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}

/* 步骤标记容器 */
.step-marker {
	position: relative;
	width: 76px;
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.step-marker:hover {
	transform: scale(1.1);
}

/* 步骤圆环 */
.step-ring {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid;
	z-index: 1;
}

/* 步骤数字 */
.step-number {
	position: relative;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	font-weight: 700;
	z-index: 2;
}

/* 连接线（从圆环到卡片） */
.step-connector {
	position: absolute;
	width: 2px;
	z-index: 1;
}

/* 步骤卡片 */
.step-card {
	position: absolute;
	width: 500px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
	display: flex;
	z-index: 3;
}

/* 卡片左右部分 */
.step-card-left,
.step-card-right {
	flex: 1;
	min-height: 200px;
	display: flex;
	align-items: center;
}

.step-card-left {
	text-align: center;
	padding: 44px 10px;
}

.step-card-right {
	padding: 44px 10px;
}

.step-card-content {
	text-align: center;
	width: 100%;
}

.step-card-content h3 {
	font-size: 22px;
	width: 100%;
	font-weight: 700;
	margin-bottom: 12px;
}

.step-card-content p {
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

/* 步骤01 - 蓝色，卡片在上方 */
.step-01 {
	left: 317px; /* (1516 - (3*294))/2 = 317px */
}

.step-01 .step-number {
	background-color: #4aa8ff;
	color: white;
}

.step-01 .step-ring {
	border-color: #4aa8ff;
	background-color: rgba(59, 130, 246, 0);
}

.step-01 .step-card-left {
	background-color: #4aa8ff;
	color: white;
}

.step-01 .step-card-right {
	background-color: white;
	color: #333;
}

.step-01 .step-connector {
	background-color: #4aa8ff;
	height: 120px;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
}

.step-01 .step-card {
	bottom: calc(100% + 120px);
	left: 50%;
	transform: translateX(-50%);
}

/* 步骤02 - 黄色，卡片在下方 */
.step-02 {
	left: 611px; /* 317 + 294 = 611px */
}

.step-02 .step-number {
	background-color: #fece2f;
	color: #1f2937;
}

.step-02 .step-ring {
	border-color: #fece2f;
	background-color: rgba(251, 191, 36, 0);
}

.step-02 .step-card-left {
	background-color: #fece2f;
	color: #1f2937;
}

.step-02 .step-card-right {
	background-color: white;
	color: #333;
}

.step-02 .step-connector {
	background-color: #fece2f;
	height: 120px;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
}

.step-02 .step-card {
	top: calc(100% + 120px);
	left: 50%;
	transform: translateX(-50%);
}

/* 步骤03 - 绿色，卡片在上方 */
.step-03 {
	left: 905px; /* 317 + 2*294 = 905px */
}

.step-03 .step-number {
	background-color: #8cc63f;
	color: #1f2937;
}

.step-03 .step-ring {
	border-color: #8cc63f;
	background-color: rgba(16, 185, 129, 0);
}

.step-03 .step-card-left {
	background-color: #8cc63f;
	color: #1f2937;
}

.step-03 .step-card-right {
	background-color: white;
	color: #333;
}

.step-03 .step-connector {
	background-color: #8cc63f;
	height: 120px;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
}

.step-03 .step-card {
	bottom: calc(100% + 120px);
	left: 50%;
	transform: translateX(-50%);
}

/* 步骤04 - 紫色，卡片在下方 */
.step-04 {
	left: 1199px; /* 317 + 3*294 = 1199px */
}

.step-04 .step-number {
	background-color: #9053f9;
	color: white;
}

.step-04 .step-ring {
	border-color: #9053f9;
	background-color: rgba(139, 92, 246, 0);
}

.step-04 .step-card-left {
	background-color: #9053f9;
	color: white;
}

.step-04 .step-card-right {
	background-color: white;
	color: #333;
}

.step-04 .step-connector {
	background-color: #9053f9;
	height: 120px;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
}

.step-04 .step-card {
	top: calc(100% + 120px);
	left: 50%;
	transform: translateX(-50%);
}

/* ================================================
   等比例缩放控制
   ================================================ */

/* 主缩放容器 */
body {
	overflow-x: auto; /* 允许横向滚动 */
	min-width: 320px; /* 最小宽度 */
}

/* 缩放控制脚本的备用CSS */
.scale-container {
	transform-origin: center top;
	transition: transform 0.3s ease;
}


/* 在小屏幕上显示垂直布局 */
@media (max-width: 1200px) {
	.customization-process {
		transform: none;
		width: 100%;
		padding: 80px 20px;
		box-sizing: border-box;
	}

	.process-timeline {
		width: 100%;
		height: auto;
		position: relative;
	}

	.timeline-line {
		top: 0;
		bottom: 0;
		left: 50%;
		width: 4px;
		height: 100%;
		transform: translateX(-50%);
	}

	.process-step {
		position: relative;
		top: auto;
		left: auto !important;
		transform: none;
		margin-bottom: 120px;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.step-marker {
		order: 1;
	}

	.step-connector {
		order: 2;
		position: relative;
		height: 40px !important;
		width: 2px;
		margin: 10px 0;
		top: auto !important;
		left: auto !important;
		transform: none !important;
	}

	.step-card {
		order: 3;
		position: relative;
		top: auto !important;
		bottom: auto !important;
		left: auto !important;
		transform: none !important;
		width: 90%;
		max-width: 500px;
		margin: 20px auto 0;
	}

	.process-step:last-child {
		margin-bottom: 0;
	}
}

/* 平板端适配 */
@media (max-width: 768px) {
	.customization-process {
		padding: 60px 15px;
	}

	.process-title {
		font-size: 36px;
	}

	.decoration-img {
		width: 45px;
		height: 10px;
	}

	.step-card {
		flex-direction: column;
	}

	.step-card-left,
	.step-card-right {
		padding: 30px 15px;
		min-height: auto;
	}
}

/* 手机端适配 */
@media (max-width: 480px) {
	.customization-process {
		padding: 50px 10px;
	}

	.process-title {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.decoration-img {
		width: 35px;
		height: 8px;
		margin: 15px auto 20px;
	}

	.step-card {
		width: 95%;
	}

	.step-card-content h3 {
		font-size: 18px;
	}

	.step-card-content p {
		font-size: 14px;
		line-height: 1.5;
	}

	.step-marker {
		width: 60px;
		height: 60px;
	}

	.step-number {
		width: 46px;
		height: 46px;
		font-size: 28px;
	}
}

/* ================================================
   三层盒子叠放设计部分样式
   ================================================ */

/* 整体容器 */
.layered-design {
	padding: 100px 0;
	background-color: #FAFAFA;
	position: relative;
}

@media (max-width: 1919px) {
	.layered-design {
		padding: calc(100 / 1920 * 100vw) 0;
	}
}

/* 标题区域 */
.design-header {
	text-align: center;
	margin-bottom: 80px;
}

@media (max-width: 1919px) {
	.design-header {
		margin-bottom: calc(80 / 1920 * 100vw);
	}
}

.design-title {
	font-size: 48px; /* 设计稿字体大小 */
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 20px;
}

@media (max-width: 1919px) {
	.design-title {
		font-size: calc(48 / 1920 * 100vw);
		margin-bottom: calc(20 / 1920 * 100vw);
	}
}

/* 设计包装器 */
.design-wrapper {
	position: relative;
	max-width: 1440px; /* 178 + 602 + 602 = 1382px，留出间距 */
	margin: 0 auto;
	height: 700px; /* 以最高的盒子为准 */
}

@media (max-width: 1919px) {
	.design-wrapper {
		max-width: 75%; /* 1440/1920≈75% */
		height: calc(700 / 1920 * 100vw);
	}
}

/* 底层白色宽矮卡片 */
.base-card {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1200px;
	height: 500px;
	background-color: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	z-index: 1;
}

@media (max-width: 1919px) {
	.base-card {
		width: calc(1200 / 1920 * 100vw);
		height: calc(500 / 1920 * 100vw);
		border-radius: calc(20 / 1920 * 100vw);
		box-shadow: 0 calc(20 / 1920 * 100vw) calc(60 / 1920 * 100vw) rgba(0, 0, 0, 0.1);
	}
}

/* 上层细高黑色卡片 */
.top-card {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1382px; /* 178 + 602 + 602 = 1382px */
	height: 700px;
	background-color: transparent;
	display: flex;
	z-index: 2;
}

@media (max-width: 1919px) {
	.top-card {
		width: calc(1382 / 1920 * 100vw);
		height: calc(700 / 1920 * 100vw);
	}
}

/* 左侧白色盒子 */
.left-box {
	width: 178px;
	height: 600px;
	background-color: white;
	border-radius: 16px 0 0 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	margin-top: 50px; /* 让左侧盒子向下偏移，与中间盒子顶部对齐 */
}

@media (max-width: 1919px) {
	.left-box {
		width: calc(178 / 1920 * 100vw);
		height: calc(600 / 1920 * 100vw);
		border-radius: calc(16 / 1920 * 100vw) 0 0 calc(16 / 1920 * 100vw);
		box-shadow: 0 calc(10 / 1920 * 100vw) calc(30 / 1920 * 100vw) rgba(0, 0, 0, 0.08);
		padding: calc(40 / 1920 * 100vw) calc(20 / 1920 * 100vw);
		margin-top: calc(50 / 1920 * 100vw);
	}
}

.left-item {
	font-size: 28px;
	font-weight: 800;
	color: #333;
	text-align: center;
	margin: 40px 0;
	position: relative;
}

/*.left-item:not(:last-child)::after {*/
/*	content: '';*/
/*	position: absolute;*/
/*	bottom: -20px;*/
/*	left: 50%;*/
/*	transform: translateX(-50%);*/
/*	width: 40px;*/
/*	height: 2px;*/
/*	background-color: #e5e7eb;*/
/*}*/

@media (max-width: 1919px) {
	.left-item {
		font-size: calc(28 / 1920 * 100vw);
		margin: calc(40 / 1920 * 100vw) 0;
	}

	.left-item:not(:last-child)::after {
		bottom: calc(-20 / 1920 * 100vw);
		width: calc(40 / 1920 * 100vw);
		height: calc(2 / 1920 * 100vw);
	}
}

/* 中间黑色盒子 */
.middle-box {
	width: 602px;
	height: 700px;
	background-color: #2f2f2f;
	border-radius: 16px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
	/*margin-left: 20px;*/
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.middle-button img {
	width: 100%;
}

@media (max-width: 1919px) {
	.middle-box {
		width: calc(602 / 1920 * 100vw);
		height: calc(700 / 1920 * 100vw);
		border-radius: calc(16 / 1920 * 100vw);
		box-shadow: 0 calc(15 / 1920 * 100vw) calc(40 / 1920 * 100vw) rgba(0, 0, 0, 0.2);
		/*margin-left: calc(20 / 1920 * 100vw);*/
	}
}

/* 黄色按钮 */
.middle-button.yellow-button {
	background-color: #fbbf24;
	width: 280px;
	height: 64px;
	line-height: 64px;
	color: #1a1a1a;
	border: none;
	border-radius: 30px;
	padding: 0 35px;
	font-size: 20px;
	font-weight: 700;
	margin: 32px auto 1px;
	display: inline-block;
	cursor: default;
	box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

@media (max-width: 1919px) {
	.middle-button.yellow-button {
		border-radius: calc(30 / 1920 * 100vw);
		width: calc(280 / 1920 * 100vw);
		height: calc(64 / 1920 * 100vw);
		line-height: calc(64 / 1920 * 100vw);
		padding: calc(0 / 1920 * 100vw) calc(35 / 1920 * 100vw);
		font-size: calc(20 / 1920 * 100vw);
		margin: calc(32 / 1920 * 100vw) auto calc(1 / 1920 * 100vw);
		box-shadow: 0 calc(5 / 1920 * 100vw) calc(15 / 1920 * 100vw) rgba(251, 191, 36, 0.3);
	}
}

/* 中间内容区域 */
.middle-content {
	flex: 1;
	padding: 0 50px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (max-width: 1919px) {
	.middle-content {
		padding: 0 calc(50 / 1920 * 100vw) calc(20 / 1920 * 100vw);
	}
}

/* 内容项 */
.content-item {
	padding: 38px 0;
}
.right-content>.content-item  {
	padding: 26px 0;
}

.content-item h3 {
	font-size: 24px;
	font-weight: 700;
	color: white;
	margin-bottom: 12px;
}

.content-item p {
	font-size: 18px;
	line-height: 32px;
	color: #fff;
	margin: 0;
}

@media (max-width: 1919px) {
	.content-item {
		padding: calc(35 / 1920 * 100vw) 0;
	}

	.content-item h3 {
		font-size: calc(24 / 1920 * 100vw);
		margin-bottom: calc(12 / 1920 * 100vw);
	}

	.content-item p {
		font-size: calc(16 / 1920 * 100vw);
	}
}

/* 分割线 */
.divider-line {
	height: 2px;
	background: repeating-linear-gradient(
			to right,
			transparent,
			transparent 10px,
			rgba(255, 255, 255, 0.3) 10px,
			rgba(255, 255, 255, 0.3) 20px
	);
	margin: 2px 0;
	z-index: 1;
}

/* 右侧白色盒子 */
.right-box {
	width: 602px;
	height: 600px;
	background-color: white;
	border-radius: 0 16px 16px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	/*margin-left: 20px;*/
	margin-top: 50px; /* 与左侧盒子对齐 */
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

@media (max-width: 1919px) {
	.right-box {
		width: calc(602 / 1920 * 100vw);
		height: calc(600 / 1920 * 100vw);
		border-radius: 0 calc(16 / 1920 * 100vw) calc(16 / 1920 * 100vw) 0;
		box-shadow: 0 calc(10 / 1920 * 100vw) calc(30 / 1920 * 100vw) rgba(0, 0, 0, 0.08);
		/*margin-left: calc(20 / 1920 * 100vw);*/
		margin-top: calc(50 / 1920 * 100vw);
	}
}

/* 黑色按钮 */
.right-button.black-button {
	background-color: #1a1a1a;
	color: white;
	border: none;
	border-radius: 30px;
	padding: 15px 40px;
	font-size: 20px;
	font-weight: 700;
	margin: 40px auto 1px;
	display: inline-block;
	cursor: default;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1919px) {
	.right-button.black-button {
		border-radius: calc(30 / 1920 * 100vw);
		padding: calc(15 / 1920 * 100vw) calc(40 / 1920 * 100vw);
		font-size: calc(20 / 1920 * 100vw);
		margin: calc(40 / 1920 * 100vw) auto calc(1 / 1920 * 100vw);
		box-shadow: 0 calc(5 / 1920 * 100vw) calc(15 / 1920 * 100vw) rgba(0, 0, 0, 0.2);
	}
}

/* 右侧内容区域 */
.right-content {
	flex: 1;
	padding: 0 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (max-width: 1919px) {
	.right-content {
		padding: 0 calc(36 / 1920 * 100vw);
	}
}

/* 右侧内容项样式覆盖 */
.right-content .content-item h3 {
	color: #1a1a1a;
}

.right-content .content-item p {
	color: #666;
}

.right-content .divider-line {
	background: repeating-linear-gradient(
			to right,
			transparent,
			transparent 10px,
			rgba(0, 0, 0, 0.2) 10px,
			rgba(0, 0, 0, 0.2) 20px
	);
}

/* 响应式调整 */
@media (max-width: 1400px) {
	.design-wrapper {
		max-width: 90%;
	}
}

@media (max-width: 1200px) {
	.design-wrapper {
		height: auto;
		padding-bottom: 60px;
	}

	.base-card {
		display: none; /* 在小屏幕上隐藏底层卡片 */
	}

	.top-card {
		position: relative;
		flex-direction: column;
		width: 100%;
		height: auto;
		margin: 0 auto;
	}

	.left-box,
	.middle-box,
	.right-box {
		width: 100%;
		height: auto;
		margin: 0 0 30px 0;
		border-radius: 16px;
	}

	.left-box {
		height: auto;
		padding: 30px 20px;
		flex-direction: row;
		justify-content: space-around;
	}

	.left-item {
		margin: 0 20px;
	}

	.left-item:not(:last-child)::after {
		display: none;
	}

	.middle-content,
	.right-content {
		padding: 30px;
	}

	.content-item {
		padding: 25px 0;
	}
}

@media (max-width: 768px) {
	.design-header {
		margin-bottom: 50px;
	}

	.design-title {
		font-size: 36px;
	}

	.left-item {
		font-size: 22px;
	}

	.middle-button.yellow-button,
	.right-button.black-button {
		padding: 12px 30px;
		font-size: 18px;
	}

	.content-item h3 {
		font-size: 20px;
	}

	.content-item p {
		font-size: 15px;
	}

	.middle-content,
	.right-content {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.layered-design {
		padding: 60px 0;
	}

	.design-header {
		margin-bottom: 40px;
	}

	.design-title {
		font-size: 28px;
	}

	.left-box {
		flex-direction: column;
	}

	.left-item {
		margin: 15px 0;
	}

	.middle-button.yellow-button,
	.right-button.black-button {
		padding: 10px 25px;
		font-size: 16px;
		margin: 30px auto 20px;
	}

	.content-item h3 {
		font-size: 18px;
	}

	.content-item p {
		font-size: 14px;
	}
}

/* ================================================
   产品和服务部分样式
   ================================================ */

/* 整体容器 */
.products-services {
	padding: 100px 0;
	background-color: #fff;
	position: relative;
}

@media (max-width: 1919px) {
	.products-services {
		padding: calc(100 / 1920 * 100vw) 0;
	}
}

/* 标题区域 */
.section-header {
	text-align: center;
	margin-bottom: 80px;
}

@media (max-width: 1919px) {
	.section-header {
		margin-bottom: calc(80 / 1920 * 100vw);
	}
}

.section-title {
	font-size: 48px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

/*.section-title::after {*/
/*	content: '';*/
/*	position: absolute;*/
/*	bottom: -10px;*/
/*	left: 50%;*/
/*	transform: translateX(-50%);*/
/*	width: 80px;*/
/*	height: 4px;*/
/*	background-color: #fbbf24;*/
/*	border-radius: 2px;*/
/*}*/

@media (max-width: 1919px) {
	.section-title {
		font-size: calc(48 / 1920 * 100vw);
		margin-bottom: calc(20 / 1920 * 100vw);
	}

	.section-title::after {
		bottom: calc(-10 / 1920 * 100vw);
		width: calc(80 / 1920 * 100vw);
		height: calc(4 / 1920 * 100vw);
		border-radius: calc(2 / 1920 * 100vw);
	}
}

/* 产品包装器 */
.products-wrapper {
	max-width: 1440px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 80px;
}

@media (max-width: 1919px) {
	.products-wrapper {
		max-width: calc(1440 / 1920 * 100vw);
		gap: calc(40 / 1920 * 100vw);
		margin-bottom: calc(80 / 1920 * 100vw);
	}
}

/* 产品卡片 */
.product-card {
	width: 460px;
	height: 650px;
	background-color: white;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1919px) {
	.product-card {
		width: calc(460 / 1920 * 100vw);
		height: calc(650 / 1920 * 100vw);
		border-radius: calc(20 / 1920 * 100vw);
		box-shadow: 0 calc(20 / 1920 * 100vw) calc(40 / 1920 * 100vw) rgba(0, 0, 0, 0.1);
	}

	.product-card:hover {
		transform: translateY(calc(-10 / 1920 * 100vw));
		box-shadow: 0 calc(30 / 1920 * 100vw) calc(60 / 1920 * 100vw) rgba(0, 0, 0, 0.15);
	}
}

/* 产品图片区域 */
.product-image {
	width: 100%;
	height: 290px;
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

@media (max-width: 1919px) {
	.product-image {
		height: calc(290 / 1920 * 100vw);
	}
}

/* 产品内容区域 */
.product-content {
	padding: 40px 38px;
	height: calc(100% - 290px);
	/*display: flex;*/
	/*flex-direction: column;*/
	align-items: center;
	justify-content: center;
	text-align: center;
}

@media (max-width: 1919px) {
	.product-content {
		padding: calc(40 / 1920 * 100vw) calc(38 / 1920 * 100vw);
		height: calc(100% - calc(290 / 1920 * 100vw));
	}
}

/* 产品标题 */
.product-title {
	font-size: 28px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.3;
}

@media (max-width: 1919px) {
	.product-title {
		font-size: calc(28 / 1920 * 100vw);
		margin-bottom: calc(20 / 1920 * 100vw);
	}
}

/* 产品描述 */
.product-desc {
	font-size: 22px;
	color: #3D3D3D;
	line-height: 44px;
	margin: 0;
}

@media (max-width: 1919px) {
	.product-desc {
		font-size: calc(22 / 1920 * 100vw);
	}
}

/* 按钮包装器 */
.action-button-wrapper {
	text-align: center;
}

/* 黄色按钮样式 */
.action-button.yellow-button {
	display: inline-block;
	background-color: #fbbf24;
	color: #1a1a1a;
	border: none;
	border-radius: 50px;
	padding: 18px 60px;
	font-size: 22px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.action-button.yellow-button:hover {
	background-color: #f59e0b;
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(251, 191, 36, 0.4);
	color: #1a1a1a;
	text-decoration: none;
}

.action-button.yellow-button:active {
	transform: translateY(0);
}

.action-button.yellow-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.action-button.yellow-button:hover::before {
	left: 100%;
}

@media (max-width: 1919px) {
	.action-button.yellow-button {
		border-radius: calc(50 / 1920 * 100vw);
		padding: calc(18 / 1920 * 100vw) calc(60 / 1920 * 100vw);
		font-size: calc(22 / 1920 * 100vw);
		box-shadow: 0 calc(10 / 1920 * 100vw) calc(25 / 1920 * 100vw) rgba(251, 191, 36, 0.3);
	}

	.action-button.yellow-button:hover {
		transform: translateY(calc(-3 / 1920 * 100vw));
		box-shadow: 0 calc(15 / 1920 * 100vw) calc(30 / 1920 * 100vw) rgba(251, 191, 36, 0.4);
	}
}

/* 响应式调整 */
@media (max-width: 1400px) {
	.products-wrapper {
		max-width: 95%;
	}
}

@media (max-width: 1200px) {
	.products-wrapper {
		flex-wrap: wrap;
		gap: 30px;
	}

	.product-card {
		width: 400px;
		height: 600px;
	}

	.product-image {
		height: 250px;
	}

	.product-content {
		height: calc(100% - 250px);
	}
}

@media (max-width: 992px) {
	.products-wrapper {
		gap: 25px;
	}

	.product-card {
		width: 350px;
		height: 550px;
	}

	.product-image {
		height: 230px;
	}

	.product-content {
		height: calc(100% - 230px);
		padding: 30px;
	}

	.product-title {
		font-size: 24px;
	}

	.product-desc {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.section-header {
		margin-bottom: 60px;
	}

	.section-title {
		font-size: 36px;
	}

	.products-wrapper {
		flex-direction: column;
		align-items: center;
		gap: 30px;
		margin-bottom: 60px;
	}

	.product-card {
		width: 100%;
		max-width: 500px;
		height: auto;
		min-height: 550px;
	}

	.product-image {
		height: 280px;
	}

	.product-content {
		height: auto;
		min-height: 260px;
		padding: 35px;
	}

	.action-button.yellow-button {
		padding: 16px 50px;
		font-size: 20px;
	}
}

@media (max-width: 576px) {
	.products-services {
		padding: 80px 0;
	}

	.section-header {
		margin-bottom: 50px;
	}

	.section-title {
		font-size: 32px;
	}

	.product-card {
		max-width: 100%;
		min-height: 500px;
	}

	.product-image {
		height: 220px;
	}

	.product-content {
		padding: 30px 25px;
		min-height: 280px;
	}

	.product-title {
		font-size: 22px;
		margin-bottom: 15px;
	}

	.product-desc {
		font-size: 15px;
	}

	.action-button.yellow-button {
		padding: 14px 45px;
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.products-services {
		padding: 60px 0;
	}

	.section-header {
		margin-bottom: 40px;
	}

	.section-title {
		font-size: 28px;
	}

	.product-card {
		min-height: 480px;
	}

	.product-image {
		height: 200px;
	}

	.product-content {
		padding: 25px 20px;
		min-height: 280px;
	}

	.product-title {
		font-size: 20px;
	}

	.product-desc {
		font-size: 14px;
	}

	.action-button.yellow-button {
		padding: 12px 40px;
		font-size: 16px;
	}
}

/* ================================================
   Offer战绩统计部分样式
   ================================================ */

/* 整体容器 */
.offer-stats {
	position: relative;
	width: 100%;
	height: 600px; /* 设计稿高度 */
	background-image: url('../images/timer_bg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

@media (max-width: 1919px) {
	.offer-stats {
		height: calc(600 / 1920 * 100vw);
	}
}

/* 背景遮罩层 */
.stats-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5); /* 透明白色遮罩 */
	z-index: 1;
}

/* 内容容器 */
.container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
	height: 100%;
}

/* 标题部分 */
.stats-header {
	text-align: center;
	margin-bottom: 80px;
}

@media (max-width: 1919px) {
	.stats-header {
		margin-bottom: calc(80 / 1920 * 100vw);
	}
}

.stats-title {
	font-size: 48px;
	font-weight: 700;
	color: #3D3D3D;
	margin:90px auto 120px;
}



@media (max-width: 1919px) {
	.stats-title {
		font-size: calc(48 / 1920 * 100vw);
		margin: calc(90 / 1920 * 100vw) auto calc(120 / 1920 * 100vw);
	}
}

.stats-subtitle {
	font-size: 24px;
	color: #666;
	margin: 0;
}

@media (max-width: 1919px) {
	.stats-subtitle {
		font-size: calc(24 / 1920 * 100vw);
	}
}

/* 统计数据容器 */
.stats-container {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
}

@media (max-width: 1919px) {
	.stats-container {
		gap: calc(40 / 1920 * 100vw);
	}
}

/* 单个统计项 */
.stats-item {
	flex: 1;
	flex-direction: column;
	min-width: 220px;
	max-width: 280px;
	text-align: center;
	background-color: transparent; /* 无背景色 */
	border: none; /* 无边框 */
}

/* 数字包装器 */
.stats-number-wrapper {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
}

@media (max-width: 1919px) {
	.stats-number-wrapper {
		margin-bottom: calc(20 / 1920 * 100vw);
	}
}

/* 数字样式 */
.stats-number {
	display: flex;
	align-items: baseline;
	justify-content: center;
	font-size: 96px;
	font-weight: 700;
	color: #333333;
	line-height: 44px; /* 设计稿行高 */
	margin: 0;
	position: relative;
}

@media (max-width: 1919px) {
	.stats-number {
		font-size: calc(96 / 1920 * 100vw);
		line-height: calc(44 / 1920 * 100vw);
	}
}

/* 数字各部分 */
.number-prefix,
.number-dot,
.number-suffix {
	display: inline-block;
}

.number-dot {
	margin: 0 2px;
}

/* 单位样式 */
.number-unit {
	position: absolute;
	right: -50px;
	bottom: 16px;
	font-size: 20px;
	color: #333;
	font-weight: 400;
}

@media (max-width: 1919px) {
	.number-unit {
		right: calc(-50 / 1920 * 100vw);
		bottom: calc(16 / 1920 * 100vw);
		font-size: calc(20 / 1920 * 100vw);
	}
}

/* 数字说明文字 */
.stats-text {
	font-size: 24px;
	font-weight: 700;
	color: #333333;
	line-height: 44px; /* 设计稿行高 */
	margin: 22px 0 0;
}

@media (max-width: 1919px) {
	.stats-text {
		font-size: calc(24 / 1920 * 100vw);
		line-height: calc(44 / 1920 * 100vw);
		margin: calc(22 / 1920 * 100vw) 0 0;
	}
}

/* 数字动画效果 */
.animate-number {
	opacity: 0;
	transform: translateY(30px);
	animation: numberReveal 1.5s ease-out forwards;
}

.animate-number:nth-child(1) {
	animation-delay: 0.2s;
}

.animate-number:nth-child(2) {
	animation-delay: 0.4s;
}

.animate-number:nth-child(3) {
	animation-delay: 0.6s;
}

.animate-number:nth-child(4) {
	animation-delay: 0.8s;
}

@keyframes numberReveal {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	50% {
		opacity: 0.5;
		transform: translateY(15px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 数字滚动动画 - 可选效果 */
@keyframes countUp {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.8);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* 每个数字单独设置颜色（可选） */
.stats-item:nth-child(1) .stats-number { color: #333; } /* 蓝色 */
.stats-item:nth-child(2) .stats-number { color: #333; } /* 黄色 */
.stats-item:nth-child(3) .stats-number { color: #333; } /* 绿色 */
.stats-item:nth-child(4) .stats-number { color: #333; } /* 紫色 */

/* 响应式调整 */
@media (max-width: 1200px) {
	.stats-container {
		gap: 30px;
	}

	.stats-item {
		min-width: 200px;
	}

	.stats-number {
		font-size: 80px;
	}

	.stats-text {
		font-size: 22px;
	}
}

@media (max-width: 992px) {
	.stats-container {
		gap: 25px;
	}

	.stats-item {
		min-width: 180px;
		max-width: 200px;
	}

	.stats-number {
		font-size: 70px;
	}

	.number-unit {
		font-size: 18px;
		right: -40px;
	}

	.stats-text {
		font-size: 20px;
	}
}

@media (max-width: 768px) {
	.offer-stats {
		height: auto;
		padding: 80px 0;
	}

	.stats-header {
		margin-bottom: 60px;
	}

	.stats-title {
		font-size: 36px;
	}

	.stats-subtitle {
		font-size: 20px;
	}

	.stats-container {
		flex-wrap: wrap;
		justify-content: center;
		gap: 40px;
	}

	.stats-item {
		flex: 0 0 calc(50% - 20px);
		min-width: 160px;
		max-width: 180px;
		margin-bottom: 20px;
	}

	.stats-number {
		font-size: 65px;
	}

	.stats-text {
		font-size: 18px;
	}
}

@media (max-width: 576px) {
	.offer-stats {
		padding: 60px 0;
	}

	.stats-header {
		margin-bottom: 50px;
	}

	.stats-title {
		font-size: 32px;
	}

	.stats-subtitle {
		font-size: 18px;
	}

	.stats-item {
		flex: 0 0 100%;
		max-width: 220px;
		margin-bottom: 30px;
	}

	.stats-number {
		font-size: 60px;
	}

	.stats-text {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.offer-stats {
		padding: 50px 0;
	}

	.stats-header {
		margin-bottom: 40px;
	}

	.stats-title {
		font-size: 28px;
	}

	.stats-subtitle {
		font-size: 16px;
	}

	.stats-number {
		font-size: 56px;
	}

	.stats-text {
		font-size: 16px;
	}
}

/* ================================================
   图片与统计数字部分样式
   ================================================ */

/* 整体容器 */
.stats-section {
	position: relative;
	background-color: #fff;
}

/* 图片容器 */
.stats-image-container {
	width: 100%;
	overflow: hidden;
	position: relative;
	height: 700px; /* 设计稿图片高度 */
}

@media (max-width: 1919px) {
	.stats-image-container {
		height: calc(700 / 1920 * 100vw);
	}
}

/* 图片包装器 */
.stats-image-wrapper {
	max-width: 1500px; /* 设计稿图片宽度 */
	margin: 0 auto;
	height: 100%;
	position: relative;
}

@media (max-width: 1919px) {
	.stats-image-wrapper {
		max-width: calc(1500 / 1920 * 100vw);
	}
}

/* 图片样式 */
.stats-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* 统计数字区域 */
.stats-numbers {
	max-width: 1440px;
	margin: 0 auto;
	padding: 1px 1px 80px;
	text-align: center;
}

@media (max-width: 1919px) {
	.stats-numbers {
		max-width: 75%; /* 1440/1920≈75% */
		padding: calc(1 / 1920 * 100vw) calc(1 / 1920 * 100vw) calc(80 / 1920 * 100vw);
	}
}

/* 标题 */
.stats-title {
	font-size: 48px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 20px;
}

@media (max-width: 1919px) {
	.stats-title {
		font-size: calc(48 / 1920 * 100vw);
		margin-bottom: calc(20 / 1920 * 100vw);
	}
}

/* 副标题 */
.stats-subtitle {
	font-size: 20px;
	color: #666;
	margin-bottom: 60px;
}

@media (max-width: 1919px) {
	.stats-subtitle {
		font-size: calc(20 / 1920 * 100vw);
		margin-bottom: calc(60 / 1920 * 100vw);
	}
}

/* 统计网格 */
.stats-grid {
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 30px;
	max-width: 1440px;
	margin: 0 auto;
}

@media (max-width: 1919px) {
	.stats-grid {
		gap: calc(30 / 1920 * 100vw);
	}
}

/* 统计盒子 */
.stat-box {
	width: 180px;
	height: 100px;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

/*.stat-box:hover {*/
/*	transform: translateY(-5px);*/
/*	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);*/
/*}*/

.stat-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	/*background: linear-gradient(90deg, #3b82f6, #8b5cf6);*/
	opacity: 0;
	transition: opacity 0.3s ease;
}

.stat-box:hover::before {
	opacity: 1;
}

@media (max-width: 1919px) {
	.stat-box {
		width: calc(180 / 1920 * 100vw);
		height: calc(100 / 1920 * 100vw);
		border-radius: calc(12 / 1920 * 100vw);
		box-shadow: 0 calc(10 / 1920 * 100vw) calc(30 / 1920 * 100vw) rgba(0, 0, 0, 0.08);
	}

	/*.stat-box:hover {*/
	/*	transform: translateY(calc(-5 / 1920 * 100vw));*/
	/*	box-shadow: 0 calc(15 / 1920 * 100vw) calc(40 / 1920 * 100vw) rgba(0, 0, 0, 0.12);*/
	/*}*/

	.stat-box::before {
		height: calc(4 / 1920 * 100vw);
	}
}

/* 统计数字 */
.stat-number {
	font-size: 32px;
	font-weight: 700;
	color: #333333;
	margin-bottom: 8px;
	line-height: 1;
}

@media (max-width: 1919px) {
	.stat-number {
		font-size: calc(32 / 1920 * 100vw);
		margin-bottom: calc(8 / 1920 * 100vw);
	}
}

/* 国家名称 */
.stat-country {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	line-height: 1;
}

@media (max-width: 1919px) {
	.stat-country {
		font-size: calc(20 / 1920 * 100vw);
	}
}

/* 为每个盒子添加不同的颜色渐变 */
.stat-box:nth-child(1) .stat-number { color: #333; }
/*.stat-box:nth-child(1)::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }*/

.stat-box:nth-child(2) .stat-number { color: #333; }
/*.stat-box:nth-child(2)::before { background: linear-gradient(90deg, #fbbf24, #fcd34d); }*/

.stat-box:nth-child(3) .stat-number { color: #333; }
/*.stat-box:nth-child(3)::before { background: linear-gradient(90deg, #10b981, #34d399); }*/

.stat-box:nth-child(4) .stat-number { color: #333; }
/*.stat-box:nth-child(4)::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }*/

.stat-box:nth-child(5) .stat-number { color: #333; }
/*.stat-box:nth-child(5)::before { background: linear-gradient(90deg, #ef4444, #f87171); }*/

.stat-box:nth-child(6) .stat-number { color: #333; }
/*.stat-box:nth-child(6)::before { background: linear-gradient(90deg, #06b6d4, #22d3ee); }*/

.stat-box:nth-child(7) .stat-number { color: #333; }
/*.stat-box:nth-child(7)::before { background: linear-gradient(90deg, #f97316, #fb923c); }*/

/* 响应式调整 */
@media (max-width: 1400px) {
	.stats-numbers {
		max-width: 90%;
	}
}

@media (max-width: 1200px) {
	.stats-grid {
		gap: 25px;
	}

	.stat-box {
		width: 160px;
		height: 90px;
	}

	.stat-number {
		font-size: 28px;
	}

	.stat-country {
		font-size: 18px;
	}
}

@media (max-width: 992px) {
	.stats-image-container {
		height: 350px;
	}

	.stats-numbers {
		padding: 60px 30px;
	}

	.stats-title {
		font-size: 40px;
	}

	.stats-subtitle {
		font-size: 18px;
		margin-bottom: 50px;
	}

	.stats-grid {
		gap: 20px;
	}

	.stat-box {
		width: 140px;
		height: 80px;
	}

	.stat-number {
		font-size: 24px;
	}

	.stat-country {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.stats-image-container {
		height: 300px;
	}

	.stats-numbers {
		padding: 50px 20px;
	}

	.stats-title {
		font-size: 36px;
	}

	.stats-subtitle {
		font-size: 17px;
		margin-bottom: 40px;
	}

	.stats-grid {
		gap: 15px;
		justify-content: space-around;
	}

	.stat-box {
		width: 120px;
		height: 70px;
		margin-bottom: 10px;
	}

	.stat-number {
		font-size: 22px;
	}

	.stat-country {
		font-size: 15px;
	}
}

@media (max-width: 576px) {
	.stats-image-container {
		height: 250px;
	}

	.stats-numbers {
		padding: 40px 15px;
	}

	.stats-title {
		font-size: 32px;
	}

	.stats-subtitle {
		font-size: 16px;
		margin-bottom: 35px;
	}

	.stats-grid {
		gap: 12px;
	}

	.stat-box {
		width: 110px;
		height: 65px;
	}

	.stat-number {
		font-size: 20px;
	}

	.stat-country {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.stats-image-container {
		height: 200px;
	}

	.stats-numbers {
		padding: 35px 10px;
	}

	.stats-title {
		font-size: 28px;
	}

	.stats-subtitle {
		font-size: 15px;
		margin-bottom: 30px;
	}

	.stats-grid {
		gap: 10px;
	}

	.stat-box {
		width: 100px;
		height: 60px;
	}

	.stat-number {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.stat-country {
		font-size: 13px;
	}
}

/* ================================================
   学校与录取统计部分样式
   ================================================ */

/* 整体容器 */
.school-stats {
	padding: 100px 0;
	background-color: #fff;
}

@media (max-width: 1919px) {
	.school-stats {
		padding: calc(100 / 1920 * 100vw) 0;
	}
}

.container {
	max-width: 1516px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

@media (max-width: 1919px) {
	.container {
		max-width: calc(1516 / 1920 * 100vw);
		padding: 0 calc(20 / 1920 * 100vw);
	}
}

/* 标题部分 */
.stats-header {
	position: relative;
	margin-bottom: 60px;
}

@media (max-width: 1919px) {
	.stats-header {
		margin-bottom: calc(60 / 1920 * 100vw);
	}
}

.stats-main-title {
	font-size: 48px; /* 增大字体 */
	font-weight: 700;
	color: #1a1a1a;
	text-align: left;
	position: relative;
	z-index: 2;
	line-height: 1.2;
	margin-bottom: 10px; /* 增加底部间距 */
}

@media (max-width: 1919px) {
	.stats-main-title {
		font-size: calc(48 / 1920 * 100vw);
		margin-bottom: calc(10 / 1920 * 100vw);
	}
}

/* 灰色数字叠加层 */
.stats-number-overlay {
	position: absolute;
	left: 0;
	bottom: -20px;
	font-size: 120px; /* 增大字体 */
	font-weight: 900;
	color: rgba(229, 231, 235, 0.7); /* 增加透明度 */
	line-height: 0.8;
	z-index: 1;
}

@media (max-width: 1919px) {
	.stats-number-overlay {
		font-size: calc(120 / 1920 * 100vw);
		bottom: calc(-20 / 1920 * 100vw);
	}
}

/* 大盒子容器 */
.school-stats-grid-box {
	width: 1516px;
	/*height: 472px;*/
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

@media (max-width: 1919px) {
	.school-stats-grid-box {
		width: calc(1516 / 1920 * 100vw);
		height: calc(472 / 1920 * 100vw);
		gap: calc(20 / 1920 * 100vw);
	}
}

/* 每个小盒子 - 5列 */
.school-stats-item {
	flex: 0 0 calc(20% - 16px); /* 20%宽度，每行5个，减去gap */
	height: calc(33.33% - 13.33px); /* 3行，减去gap */
	display: flex;
	align-items: center;
	padding: 15px;
	border-radius: 12px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	background-color: white; /* 添加白色背景 */
	/*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); !* 添加轻微阴影 *!*/
	box-sizing: border-box; /* 确保padding包含在宽度内 */
}

.school-stats-item:hover {
	background-color: #f9fafb;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* 移除原来的分割线样式 */
.school-stats-item::after {
	display: none;
}

@media (max-width: 1919px) {
	.school-stats-item {
		flex: 0 0 calc(20% - calc(16 / 1920 * 100vw));
		height: calc(33.33% - calc(13.33 / 1920 * 100vw));
		padding: calc(15 / 1920 * 100vw);
		border-radius: calc(12 / 1920 * 100vw);
		box-shadow: 0 calc(4 / 1920 * 100vw) calc(12 / 1920 * 100vw) rgba(0, 0, 0, 0.05);
	}

	.school-stats-item:hover {
		transform: translateY(calc(-3 / 1920 * 100vw));
		box-shadow: 0 calc(10 / 1920 * 100vw) calc(20 / 1920 * 100vw) rgba(0, 0, 0, 0.08);
	}
}

/* 左侧图片区域 */
.item-left {
	flex-shrink: 0;
	width: 118px; /* 稍微减小宽度 */
	height: 118px; /* 稍微减小高度 */
	margin-right: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 59px;
	overflow: hidden;
}

.item-left img {
	width: 100%; /* 减小图片尺寸 */
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

@media (max-width: 1919px) {
	.item-left {
		width: calc(100 / 1920 * 100vw);
		height: calc(100 / 1920 * 100vw);
		margin-right: calc(20 / 1920 * 100vw);
		border-radius: calc(10 / 1920 * 100vw);
	}
}

/* 右侧内容区域 */
.item-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* 学校名称 */
.school-name {
	font-size: 20px; /* 稍微减小字体 */
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 12px; /* 减小间距 */
	line-height: 1.2;
	white-space: nowrap; /* 防止换行 */
	overflow: hidden;
	text-overflow: ellipsis; /* 超出显示省略号 */
}

@media (max-width: 1919px) {
	.school-name {
		font-size: calc(20 / 1920 * 100vw);
		margin-bottom: calc(12 / 1920 * 100vw);
	}
}

/* 录取信息 */
.offer-info {
	display: flex;
	align-items: baseline;
}

.offer-number {
	font-size: 32px; /* 减小字体 */
	font-weight: 800;
	color: #008E8C;
	margin-right: 6px; /* 减小间距 */
	line-height: 1;
}

@media (max-width: 1919px) {
	.offer-number {
		font-size: calc(32 / 1920 * 100vw);
		margin-right: calc(6 / 1920 * 100vw);
	}
}

.offer-text {
	font-size: 18px; /* 减小字体 */
	font-weight: 600;
	color: #666;
	line-height: 1;
}

@media (max-width: 1919px) {
	.offer-text {
		font-size: calc(18 / 1920 * 100vw);
	}
}

/* 为不同的学校添加不同的数字颜色 */
/* 注意：由于您有15个项目，这里只列出前15个 */
.school-stats-item:nth-child(1) .offer-number { color: #008E8C; }
.school-stats-item:nth-child(2) .offer-number { color: #008E8C; }
.school-stats-item:nth-child(3) .offer-number { color: #008E8C; }
.school-stats-item:nth-child(4) .offer-number { color: #008E8C; }
.school-stats-item:nth-child(5) .offer-number { color: #008E8C; }
.school-stats-item:nth-child(6) .offer-number { color: #008E8C; }
.school-stats-item:nth-child(7) .offer-number { color: #008E8C; }
.school-stats-item:nth-child(8) .offer-number { color: #008E8C; }
.school-stats-item:nth-child(9) .offer-number { color: #008E8C; }
.school-stats-item:nth-child(10) .offer-number { color: #008E8C; }
.school-stats-item:nth-child(11) .offer-number { color: #008E8C; }
.school-stats-item:nth-child(12) .offer-number { color: #008E8C; }
.school-stats-item:nth-child(13) .offer-number { color: #008E8C; }
.school-stats-item:nth-child(14) .offer-number { color: #008E8C; }
.school-stats-item:nth-child(15) .offer-number { color: #008E8C; }

/* 响应式调整 */
@media (max-width: 1400px) {
	.container {
		max-width: 100%;
	}

	.school-stats-grid-box {
		width: 100%;
	}
}

@media (max-width: 1200px) {
	.school-stats-grid-box {
		height: auto;
		min-height: 472px;
		gap: 15px;
	}

	.school-stats-item {
		flex: 0 0 calc(33.33% - 10px); /* 变为3列 */
		height: auto;
		min-height: 150px;
	}

	.stats-main-title {
		font-size: 40px;
	}

	.stats-number-overlay {
		font-size: 100px;
	}

	.item-left {
		width: 90px;
		height: 90px;
	}

	.school-name {
		font-size: 18px;
	}

	.offer-number {
		font-size: 28px;
	}

	.offer-text {
		font-size: 16px;
	}
}

@media (max-width: 992px) {
	.stats-header {
		margin-bottom: 50px;
	}

	.stats-main-title {
		font-size: 36px;
	}

	.stats-number-overlay {
		font-size: 80px;
		bottom: -20px;
	}

	.school-stats-grid-box {
		gap: 12px;
	}

	.school-stats-item {
		flex: 0 0 calc(50% - 6px); /* 变为2列 */
		min-height: 140px;
		padding: 12px;
	}

	.item-left {
		width: 80px;
		height: 80px;
		margin-right: 15px;
	}

	.school-name {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.offer-number {
		font-size: 26px;
	}

	.offer-text {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.school-stats {
		padding: 80px 0;
	}

	.stats-header {
		margin-bottom: 40px;
	}

	.stats-main-title {
		font-size: 32px;
	}

	.stats-number-overlay {
		font-size: 70px;
		bottom: -20px;
	}

	.school-stats-grid-box {
		gap: 10px;
	}

	.school-stats-item {
		flex: 0 0 100%; /* 变为1列 */
		min-height: 130px;
		padding: 15px;
	}

	.item-left {
		width: 70px;
		height: 70px;
		margin-right: 15px;
	}

	.school-name {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.offer-number {
		font-size: 24px;
	}

	.offer-text {
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	.school-stats {
		padding: 60px 0;
	}

	.stats-header {
		margin-bottom: 35px;
	}

	.stats-main-title {
		font-size: 28px;
	}

	.stats-number-overlay {
		font-size: 60px;
		bottom: -20px;
	}

	.school-stats-item {
		min-height: 120px;
		padding: 12px;
	}

	.item-left {
		width: 60px;
		height: 60px;
		margin-right: 12px;
	}

	.school-name {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.offer-number {
		font-size: 22px;
	}

	.offer-text {
		font-size: 14px;
	}
}

/* ================================================
   部分offer展示样式
   ================================================ */

/* 整体容器 */
.offer-img-stats {
	padding: 100px 0;
	background-color: #f8f9fa;
	position: relative;
	overflow: hidden;
}

@media (max-width: 1919px) {
	.offer-img-stats {
		padding: calc(100 / 1920 * 100vw) 0;
	}
}

/* 标题部分复用之前的样式 */
.stats-header {
	position: relative;
	margin-bottom: 60px;
}

@media (max-width: 1919px) {
	.stats-header {
		margin-bottom: calc(60 / 1920 * 100vw);
	}
}

.stats-main-title {
	font-size: 48px;
	font-weight: 700;
	color: #1a1a1a;
	text-align: left;
	position: relative;
	z-index: 2;
	line-height: 1.2;
}

@media (max-width: 1919px) {
	.stats-main-title {
		font-size: calc(48 / 1920 * 100vw);
	}
}

/* 灰色数字叠加层 */
.stats-number-overlay {
	position: absolute;
	left: 0;
	bottom: -20px;
	font-size: 120px;
	font-weight: 900;
	color: rgba(229, 231, 235, 0.7);
	line-height: 0.8;
	z-index: 1;
}

@media (max-width: 1919px) {
	.stats-number-overlay {
		font-size: calc(120 / 1920 * 100vw);
		bottom: calc(-20 / 1920 * 100vw);
	}
}

/* 图片展示容器 */
.offer-img-box {
	width: 1480px;
	height: 900px; /* 足够高度容纳所有图片 */
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1919px) {
	.offer-img-box {
		width: calc(1480 / 1920 * 100vw);
		height: calc(900 / 1920 * 100vw);
	}
}

/* 图片通用样式 */
.offer-image {
	position: absolute;
	border-radius: 8px;
	overflow: hidden;
	/*box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);*/
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
	top: 50%;
	transform: translateY(-50%);
}

.offer-image:hover {
	transform: translateY(-50%) scale(1.03);
	/*box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);*/
	z-index: 100 !important; /* 悬停时置顶 */
}

.offer-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.offer-image:hover img {
	transform: scale(1.05);
}

/* 底层图片（左右两侧，最外侧） */
.offer-image.layer-1 {
	z-index: 1;
	width: 420px; /* 稍小于中间层 */
	height: 607px; /* 稍小于中间层 */
}

@media (max-width: 1919px) {
	.offer-image.layer-1 {
		width: calc(420 / 1920 * 100vw);
		height: calc(607 / 1920 * 100vw);
	}
}

/* 底层左侧图片 */
.offer-image.layer-1.left {
	left: 0;
	top: 45%; /* 与中间层顶部对齐，稍微调整垂直位置 */
}

/* 底层右侧图片 */
.offer-image.layer-1.right {
	right: 0;
	top: 45%; /* 与中间层顶部对齐，稍微调整垂直位置 */
}

/* 中间层图片（左右两侧） */
.offer-image.layer-2 {
	z-index: 2;
	width: 480px;
	height: 694px;
}

@media (max-width: 1919px) {
	.offer-image.layer-2 {
		width: calc(480 / 1920 * 100vw);
		height: calc(694 / 1920 * 100vw);
	}
}

/* 中间层左侧图片 */
.offer-image.layer-2.left {
	left: 180px; /* 从左侧位置开始 */
}

/* 中间层右侧图片 */
.offer-image.layer-2.right {
	right: 180px; /* 从右侧位置开始 */
}

/* 顶层居中图片 */
.offer-image.layer-3 {
	z-index: 3;
	width: 553px;
	height: 799px;
	top: 48%; /* 偏上一点点显示 */
	left: 50%;
	transform: translate(-50%, -50%);
}

.offer-image.layer-3:hover {
	transform: translate(-50%, -50%) scale(1.03);
}

@media (max-width: 1919px) {
	.offer-image.layer-3 {
		width: calc(553 / 1920 * 100vw);
		height: calc(799 / 1920 * 100vw);
	}
}

/* 确保图片叠放顺序正确 */
.offer-image.layer-1.left {
	z-index: 1;
}

.offer-image.layer-1.right {
	z-index: 1;
}

.offer-image.layer-2.left {
	z-index: 2;
}

.offer-image.layer-2.right {
	z-index: 2;
}

.offer-image.layer-3 {
	z-index: 3;
}

/* 响应式调整 */
@media (max-width: 1600px) {
	.offer-img-box {
		width: 90%;
		height: auto;
		min-height: 700px;
	}

	.offer-image.layer-1.left {
		left: 5%;
	}

	.offer-image.layer-1.right {
		right: 5%;
	}

	.offer-image.layer-2.left {
		left: 15%;
	}

	.offer-image.layer-2.right {
		right: 15%;
	}
}

@media (max-width: 1200px) {
	.offer-img-box {
		height: 800px;
	}

	/* 调整图片尺寸和位置 */
	.offer-image.layer-1 {
		width: 280px;
		height: 405px;
	}

	.offer-image.layer-2 {
		width: 320px;
		height: 463px;
	}

	.offer-image.layer-3 {
		width: 368px;
		height: 533px;
	}

	.offer-image.layer-2.left {
		left: 10%;
	}

	.offer-image.layer-2.right {
		right: 10%;
	}

	.offer-image.layer-1.left {
		left: 0;
	}

	.offer-image.layer-1.right {
		right: 0;
	}
}

@media (max-width: 992px) {
	.offer-img-stats {
		padding: 80px 0;
	}

	.stats-header {
		margin-bottom: 50px;
	}

	.stats-main-title {
		font-size: 36px;
	}

	.stats-number-overlay {
		font-size: 90px;
	}

	.offer-img-box {
		height: 700px;
	}

	/* 调整叠放布局，垂直排列 */
	.offer-image {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		transform: none !important;
		margin: 0 auto 30px;
		display: block;
	}

	.offer-image.layer-1,
	.offer-image.layer-2,
	.offer-image.layer-3 {
		width: 80%;
		max-width: 400px;
		height: auto;
		aspect-ratio: 3/4;
		position: relative;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		transform: none !important;
	}

	.offer-image:hover {
		transform: scale(1.03) !important;
	}

	.offer-image.layer-3:hover {
		transform: scale(1.03) !important;
	}

	/* 隐藏部分图片，移动端只显示3张 */
	.offer-image.layer-1.left,
	.offer-image.layer-1.right {
		display: none;
	}
}

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

	.stats-header {
		margin-bottom: 40px;
	}

	.stats-main-title {
		font-size: 32px;
	}

	.stats-number-overlay {
		font-size: 70px;
		bottom: -20px;
	}

	.offer-img-box {
		height: 600px;
	}

	.offer-image.layer-2,
	.offer-image.layer-3 {
		width: 85%;
		max-width: 350px;
	}
}

@media (max-width: 576px) {
	.offer-img-stats {
		padding: 50px 0;
	}

	.stats-header {
		margin-bottom: 30px;
	}

	.stats-main-title {
		font-size: 28px;
	}

	.stats-number-overlay {
		font-size: 60px;
		bottom: -20px;
	}

	.offer-img-box {
		height: 500px;
	}

	.offer-image.layer-2,
	.offer-image.layer-3 {
		width: 90%;
		max-width: 300px;
	}
}

/* 图片占位样式（如果没有实际图片） */
/*.offer-image img {*/
/*	background-color: #f0f0f0;*/
/*	background-image: linear-gradient(45deg, #ddd 25%, transparent 25%, transparent 75%, #ddd 75%, #ddd),*/
/*	linear-gradient(45deg, #ddd 25%, transparent 25%, transparent 75%, #ddd 75%, #ddd);*/
/*	background-size: 20px 20px;*/
/*	background-position: 0 0, 10px 10px;*/
/*}*/

/*.offer-image img:before {*/
/*	content: "Offer展示";*/
/*	position: absolute;*/
/*	top: 50%;*/
/*	left: 50%;*/
/*	transform: translate(-50%, -50%);*/
/*	color: #999;*/
/*	font-size: 18px;*/
/*	font-weight: 600;*/
/*	z-index: 1;*/
/*}*/

@media (max-width: 1919px) {
	.offer-image img:before {
		font-size: calc(18 / 1920 * 100vw);
	}
}



/* 关于我们单页 */
.about-navbar {
	z-index: 100;
}
.about-banner {
	background-color: #0d75f5;
	position: relative;
}
.img-responsive {
	width: 120%;
	position: absolute;
	top: -60%;
	left: -45%;
	z-index: 1;
	overflow: hidden;
}

/* ================================================
   关于我们部分样式
   ================================================ */
.about-us-img {
	position: relative;
	width: 100%;
	z-index: 10;
}

/* 关注订阅下拉弹窗样式 */
.contact-a {
	position: relative;
}

/* 下拉弹窗容器 */
.contact-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	width: 220px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 1000;
	margin-top: 5px;
}

/* 鼠标悬停时显示下拉弹窗 */
.contact-a:hover .contact-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* 下拉内容区域 */
.contact-dropdown-content {
	padding: 20px;
}

/* 每个选项项 */
.contact-item {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	border-radius: 6px;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
	margin-bottom: 8px;
}

.contact-item:hover {
	background: #f8f9fa;
}

.contact-item:last-child {
	margin-bottom: 0;
}

/* 图标样式 */
.contact-item-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
}

.contact-item-icon img {
	width: 40px;
}

.contact-icon-wechat,
.contact-icon-official,
.contact-icon-app {
	font-size: 24px;
	color: #07c160;
}

.contact-icon-official {
	color: #44b549;
}

.contact-icon-app {
	color: #007aff;
}

/* 文字内容 */
.contact-item-text {
	flex: 1;
}

.contact-item-text h4 {
	margin: 0 0 5px 0;
	font-size: 16px;
	color: #333;
	font-weight: 600;
}

.contact-item-text p {
	margin: 0;
	font-size: 14px;
	color: #666;
}

/* 二维码容器 */
.contact-qrcode {
	position: absolute;
	left: -180px;
	top: 50%;
	transform: translateY(-50%);
	width: 160px;
	padding: 15px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1001;
	text-align: center;
}

/* 二维码三角形指示器 */
.contact-qrcode:before {
	content: '';
	position: absolute;
	top: 50%;
	right: -8px;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 8px;
	border-color: transparent transparent transparent white;
}

/* 鼠标悬停选项时显示对应的二维码 */
.contact-item:hover .contact-qrcode {
	opacity: 1;
	visibility: visible;
	left: -170px;
}

/* 二维码图片 */
.contact-qrcode img {
	width: 130px;
	height: 130px;
	display: block;
	margin: 0 auto 10px;
	border-radius: 4px;
}

.contact-qrcode p {
	margin: 0;
	font-size: 13px;
	color: #666;
	text-align: center;
}

/* 移动端适配 */
@media (max-width: 768px) {
	.contact-dropdown {
		width: 300px;
		right: 50%;
		transform: translateX(50%) translateY(10px);
	}

	.contact-a:hover .contact-dropdown {
		transform: translateX(50%) translateY(0);
	}

	.contact-qrcode {
		left: auto;
		right: -180px;
		top: 0;
		transform: none;
	}

	.contact-qrcode:before {
		right: auto;
		left: -8px;
		border-width: 8px 8px 8px 0;
		border-color: transparent white transparent transparent;
	}

	.contact-item:hover .contact-qrcode {
		left: auto;
		right: -170px;
	}
}

/* 确保下拉弹窗在导航栏上层 */
.navbar-nav > li {
	position: static;
}

.contact-a.active a {
	background-color: transparent !important;
}





/*页数*/

.page {
	width: 500px;
	padding: 40px 0;
	margin-left: auto;
	margin-right: auto;
	    text-align: center;
}

.page span,
.page a {
	display: inline-block;
	border: 1px solid #e4e4e4;
	height: 28px;
	line-height: 28px;
	padding: 0 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: 0 4px;
	text-decoration: none;
}

.page span,
.page a.active,
.page a:hover {
	color: #FFF;
	background: #F0AD4E;
}

.page a em {
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}

.page a.prev em {
	border-right: 8px solid #999;
	margin-right: 5px;
}

.page a.next em {
	border-left: 8px solid #999;
	margin-left: 5px;
}

.page a.prev:hover em {
	border-right-color: #FFF;
}

.page a.next:hover em {
	border-left-color: #FFF;
}




/*联系我们*/

.lx-dan li {
	margin-bottom: 20px;
}

.lx-dan img {
	width: 80%;
}

.pa {
	padding-top: 4%;
}

.con {
	border: 1px solid #CCCCCC;
	padding: 5px;
	width: 40%;
	margin: 0px 20px 40px 0;
}

textarea {
	border: 1px solid #CCCCCC;
	width: 83%;
	padding: 5px;
	height: 200px;
}

.submit {
	padding: 5px 50px;
	display: block;
	margin-top: 20px;
}


/*侧边栏*/

.slide {
	position: fixed;
	right: 0;
	top: 40%;
	z-index: 500;
}

.slide li {
	border-bottom: 1px solid #eae5e5;
}

.slide .ke {
	position: relative;
}

.slide .ke p {
	position: absolute;
	background: #f8f7ff;
	width: 150px;
	left: -198%;
	top: 0;
	text-align: center;
	padding: 26px 0;
	display: none;
}

@media only screen and (max-width:1200px) {
	.introduce {
		display: none;
	}
}

@media only screen and (max-width:930px) {
	.introduce {
		display: none;
	}
	.slide {
		display: none;
	}
	.new-l-h {
		display: none;
	}
}

@media only screen and (max-width:768px) {
	.he-top {
		display: none;
	}
	.introduce {
		display: none;
	}
	.slide {
		display: none;
	}
	.logo {
		width: 50%;
	}
	.logo img {
		width: 100%;
	}
	.about-container {
		padding: 0;
	}

	.tab li {
		width: 33.333%;
	}
	.tab li a {
		font-size: 1em;
	}
	.footera-article {
		width: 100%;
	}
	.ta-list {
		padding: 15px;
	}
	.ser-danx li.active:before {
		display: none;
	}
	.ser-danx li.active:after {
		display: none;
	}
	.page {
		width: 100%;
	}
	.newdan-r {
		margin: 0;
	}
}
@media only screen and (max-width:767px) {
	.con{
		width: 100%;
	}
	textarea {

    width: 100%;

}
.time{
	display: none;
}
.ad-nei p {
	display: none;
}

	}


/*移动端底部导航*/

.phonefooternav {
	position: fixed;
	bottom: 0;
	width: 100%;
	display: none;
	z-index: 99999;
}

.phonefooternav ul li {
	width: 25%;
	background: #494949;
	float: left;
	padding: 10px 0;
	border-right: 1px solid #666;
	list-style: none;
}

.phonefooternav ul li a {
	display: block;
	color: #fff;
	text-align: center;
}

.phonefooternav ul li a i {
	display: block;
	font-size: 20px;
	padding: 10px 0;
}

@media (max-width: 767px) {
	.phonefooternav {
		display: block;
	}
	.footera{
		display: none;
	}
}

@media (max-width: 480px) {
	.phonefooternav ul li {
		padding: 3px 0px;
	}
}
.about-banner {
	position: relative;
}

.about-banner .bottom-decoration {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	pointer-events: none;
}
