/* 全局样式重置 */
/* 全局样式重置，但避免影响Bootstrap核心功能 */
body {
	margin: 0;
	padding: 0;
	font-family: "Microsoft YaHei", "Segoe UI", Tahoma, Geneva, Verdana,
		sans-serif;
	line-height: 1.6;
	color: #333;
}

/* 为自定义元素添加box-sizing，避免影响Bootstrap */
.custom-element, .custom-wrapper {
	box-sizing: border-box;
}

/* 导航栏样式 */
.navbar {
	transition: all 0.3s ease;
	padding-top: 15px;
	padding-bottom: 15px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Logo大小设置 */
.navbar-brand img {
	height: 56px;
	width: auto;
	object-fit: contain;
}

/* 导航栏菜单项大幅右移 */
#navbarNav {
	margin-left: 280px;
}

/* 增加导航项间距 */
.nav-item {
	margin-left: 30px !important;
	margin-right: 30px !important;
}

/* 确保覆盖Bootstrap的mx-3类 */
.nav-item.mx-3 {
	margin-left: 30px !important;
	margin-right: 30px !important;
}

/* 关于我们冒泡弹窗样式 */
#aboutUsContainer {
	position: relative;
}

/* 为关于我们按钮添加微妙的悬停效果，与弹窗动画协调 */
#aboutUsBtn {
	transition: all 0.3s ease;
}

#aboutUsContainer:hover #aboutUsBtn {
	transform: translateY(-2px); /* 轻微上移，提示交互 */
}

/* 为了确保鼠标移入弹窗区域时弹窗不消失，我们需要在弹窗显示时也保持父元素的hover状态 */
#aboutUsContainer:hover .about-us-dropdown,
.about-us-dropdown:hover {
	visibility: visible;
	transform: translateY(0);
	opacity: 1;
	max-height: 500px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Footer样式 */
footer {
	padding-top: 100px !important;
	padding-bottom: 100px !important;
}

.about-us-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 5px;
	background-color: white;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* 初始更淡的阴影 */
	padding: 20px 10px;
	width: 112px;
	font-size: 14px;
	visibility: hidden;
	z-index: 1000;
	/* 从上到下拉出的动画效果 */
	transform: translateY(-8px); /* 减小初始位移，让动画更自然 */
	opacity: 0;
	/* 统一使用更自然的缓动函数，确保所有属性同步变化 */
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
			opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
			max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
			visibility 0s ease 0.4s, 
			box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	max-height: 0;
	overflow: hidden;
}

/* 修复hover时的可见性和过渡效果 */
#aboutUsContainer:hover .about-us-dropdown {
	visibility: visible;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
			opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
			max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
			visibility 0s ease 0s, 
			box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 弹窗内容样式 */
.dropdown-content {
	display: flex;
	flex-direction: column;
}

/* 弹窗按钮样式 */
.dropdown-item {
	background: none;
	border: none;
	text-align: center;
	padding: 12px 20px;
	cursor: pointer;
	color: #151619;
	font-size: 14px;
	transition: all 0.3s ease;
}

/* 弹窗按钮hover效果 */
.dropdown-item:hover {
	color: #DB0018;
	background-color: #FEEFF0;
	font-size: 14px;
}

/* 移动端手拉琴效果 */
@media (max-width: 768px) {
	.about-us-dropdown {
		/* 重置桌面端动画 */
		transform: translateY(0);
		opacity: 1;
		transition: max-height 0.5s ease;
	}
	
	.about-us-dropdown.show {
		/* 保持手拉琴效果 */
		transform: translateY(0);
		opacity: 1;
	}
}

/* 弹窗按钮hover效果 */
.dropdown-item:hover {
	background-color: #f5f5f5;
	color: #DB0018;
}

/* 导航栏链接样式 */
.navbar-nav .nav-link {
	color: #151619;
	font-size: 16px;
	font-weight: 500;
	position: relative;
	padding: 20px 0;
	transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: #DB0018;
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #DB0018;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
	width: 100%;
}

/* 导航栏当前页面活跃状态样式 */
.navbar-nav .nav-link.active {
	color: #DB0018;
}

.navbar-nav .nav-link.active::after {
	width: 100%;
}

/* 轮播 Banner 样式 */
#bannerCarousel {
	position: relative;
  margin-top: -100px;
}

/* Banner容器样式 */
.banner-container {
	min-height: 100vh; /* 使用视口高度代替固定高度 */	
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
	overflow: hidden;
}

/* Banner图片样式 */
.banner-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center; /* 确保图片顶部总是对齐容器顶部 */
	z-index: 1;
}

/* Banner内容遮罩 */
.banner-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
	z-index: 2;
}

/* Banner内容样式 */
.banner-content {
	position: relative;
	z-index: 3;
}

.banner-content div {
	font-size: 82px;
	margin-bottom: 0;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
	font-size: 38px;
	font-weight: normal;
	max-width: 1000px;
	margin: 56px auto 0;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* 轮播指示器样式 */
.carousel-indicators {
	bottom: 30px;
	z-index: 10;
}

.carousel-indicators [data-bs-target] {
	width: 80px;
	height: 8px;
	border-radius: 0;
	background-color: rgba(255, 255, 255, 0.4);
	opacity: 1;
	margin: 0 8px;
	border: none;
}

.carousel-indicators .active {
	background-color: #DB0018;
	width: 80px;
	height: 8px;
}

/* 轮播控制按钮样式 - 隐藏 */
.carousel-control-prev,
.carousel-control-next {
	display: none;
}

/* 通用区块标题样式 */
.section-title {
	font-size: 62px;
	color: #333;
	/* margin-bottom: 20px; */
	position: relative;
	display: inline-block;
	padding-bottom: 12px;
}

/* .section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: #007bff;
} */

.section-subtitle {
	font-size: 34px;
	color: #fff;
	margin-bottom: 40px;
}

/* 公司业务样式 */
#services {
	background-color: #fff;
	padding-top: 80px;
	padding-bottom: 164px;
}

/* 标题样式 */
#services .section-title {
	font-size: 62px;
	color: #151619;
	margin-bottom: 0;
}

/* 副标题样式 */
#services .section-subtitle {
	font-size: 34px;
	color: #939496;
	margin-top: 20px;
	margin-bottom: 85px;
}

/* 服务项容器 - 宫格布局 */
#services .row {
	gap: 0;
}

.service-item {
	background-color: white;
	border-radius: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	margin: 10px 16px;
}

.service-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* 图片容器大小 */
.service-image {
	width: 380px;
	height: 240px;
	overflow: hidden;
	display: block;
	margin: 0 auto;
}

/* 图片大小 */
.service-image img {
	width: 380px;
	height: 240px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
	transform: scale(1.1);
}

.service-title {
	padding: 0 20px;
	margin-top: 40px;
	margin-bottom: 14px;
	text-align: center;
	font-size: 26px;
	color: #151619;
}

.service-subTitle {
	text-align: center;
	color: #686B70;
	font-size: 16px;
	padding-bottom: 20px;
}

/* MORE按钮样式 */
#services .text-center {
	margin-top: 50px !important;
}

#services .mt-10 {
	display: flex;
  justify-content: center;
}

/* 媒体查询 - 分辨率兼容 */
@media (max-width: 1200px) {
	.service-image,
	.service-image img {
		width: 100%;
		height: auto;
		max-width: 380px;
		max-height: 240px;
	}
}

@media (max-width: 992px) {
	#services .section-title {
		font-size: 52px;
	}
	#services .section-subtitle {
		font-size: 28px;
	}
	.service-image,
	.service-image img {
		max-width: 100%;
	}
	.service-item {
		margin: 10px 10px;
	}
}

@media (max-width: 768px) {
	#services .section-title {
		font-size: 42px;
	}
	#services .section-subtitle {
		font-size: 24px;
	}
	.service-item {
		margin: 10px 5px;
	}
}

@media (max-width: 576px) {
	#services .section-title {
		font-size: 36px;
	}
	#services .section-subtitle {
		font-size: 20px;
	}
	.service-image {
		height: 180px;
	}
	#services {
		padding-bottom: 100px;
	}
	.service-item {
		margin: 10px 0;
	}
}

/* 自定义按钮样式 - 使用自定义类名避免与Bootstrap冲突 */
.custom-btn-primary {
  background-color: #111928;
	border: none;
	padding: 0;
	font-size: 22px;
	font-weight: 600;
	border-radius: 4px;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
	color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 68px;
  border-radius: 40px;
}

.custom-btn-primary:hover {
	background-color: #DB0018;
	transform: translateY(-3px);
	box-shadow: 0 8px 16px rgba(230, 57, 70, 0.3);
	color: white;
}

.custom-btn-hover-effect {
	position: relative;
	overflow: hidden;
}

.custom-btn-hover-effect::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: all 0.6s ease;
}

.more-icon {
  background-color: none !important;
  width: 30px;
  height: 30px;
  margin-left: 11px;
}

.custom-btn-hover-effect:hover::before {
	left: 100%;
}

/* 公司成绩样式 */
#achievements {
	background: #141519;
	padding-top: 80px;
	padding-bottom: 80px;
}

#achievements .section-title {
	color: white;
	font-size: 62px;
	margin-bottom: 0;
}

#achievements .section-subtitle {
	color: white;
	font-size: 34px;
	margin-top: 20px;
	margin-bottom: 60px;
}

/* #achievements .section-title::after {
	background-color: #e63946;
} */

.section-white {
  color: #FFFFFF !important;
}

.achievement-item {
	text-align: center;
	padding: 30px 20px;
}

.achievement-number {
	font-size: 56px;
	font-weight: 700;
	color: white;
}

.achievement-number span {
	font-size: 32px;
	font-weight: 500;
}

.achievement-text {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* 荣誉证书样式 */
#certificates {
	background-color: white;
	padding-top: 102px;
	padding-bottom: 98px;
	position: relative;
	width: 100%;
}

#certificates .section-title {
	color: #151619;
	font-size: 62px;
	margin-bottom: 0;
}

#certificates .section-subtitle {
	font-size: 34px;
	color: #939496;
	margin-top: 20px;
	margin-bottom: 85px;
}

/* 轮播容器设置为全屏宽度 */
#certificatesCarousel {
	position: relative;
	width: 100%;
	/* 开启自动轮播 */
	--bs-carousel-interval: 3000; /* 自动轮播间隔3秒 */
	--bs-carousel-transition: transform 0.8s ease-in-out; /* 轮播过渡更顺滑 */
}

/* 确保轮播图内容不会导致横向滚动 */
body {
	overflow-x: hidden;
}

/* 隐藏轮播指示器 */
#certificatesCarousel .carousel-indicators {
	display: none;
}

/* 轮播控制按钮样式 */
#certificatesCarousel .carousel-control-prev,
#certificatesCarousel .carousel-control-next {
	pointer-events: auto;
	background-color: rgba(0, 0, 0, 0.5);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

#certificatesCarousel .carousel-control-prev {
	left: 20px;
}

#certificatesCarousel .carousel-control-next {
	right: 20px;
}

/* 轮播控制按钮图标 */
#certificatesCarousel .carousel-control-prev-icon,
#certificatesCarousel .carousel-control-next-icon {
	display: block;
	background-size: 20px 20px;
}

/* 荣誉证书下方查看更多按钮样式增强 */
#certificates .text-center.mt-10 {
	margin-top: 80px !important;
	margin-bottom: 0;
  display: flex;
  justify-content: center;
}

/* 确保证书项在轮播中正确布局 */
#certificatesCarousel .carousel-inner {
	display: block;
}

#certificatesCarousel .carousel-item {
	width: 100%;
	display: none;
	transition: transform 0.8s ease-in-out; /* 过渡动画更顺滑 */
}

#certificatesCarousel .carousel-item.active {
	display: block;
}

.certificate-item {
	background-color: transparent;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
	transition: none;
	text-align: center;
	padding: 0;
	margin: 0 25px;
}

.certificate-item:hover {
	transform: none;
	box-shadow: none;
}

.certificate-item img {
	width: 380px;
	height: 270px;
	max-width: 100%;
	object-fit: contain;
	padding: 0;
}

.certificate-name {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 26px;
	padding: 30px 0 0 0;
	font-size: 26px;
	font-weight: normal;
	color: #111928;
	margin: 0;
}

/* 确保证书图片底部文字为"资质证书" */
.certificate-name::after {
	content: "资质证书";
}

/* 移除证书图片底部的实际文字 */
.certificate-name span {
	display: none;
}

/* 媒体查询 - 确保在小屏幕上的显示效果 */
@media (max-width: 1200px) {
	.certificate-item {
		margin: 0 15px;
	}
	.certificate-item img {
		width: 320px;
		height: 220px;
	}
	/* 调整轮播控制按钮尺寸 */
	#certificatesCarousel .carousel-control-prev,
	#certificatesCarousel .carousel-control-next {
		width: 45px;
		height: 45px;
	}
	#certificatesCarousel .carousel-control-prev-icon,
	#certificatesCarousel .carousel-control-next-icon {
		background-size: 18px 18px;
	}
}

@media (max-width: 992px) {
	.certificate-item {
		margin: 0 10px;
	}
	.certificate-item img {
		width: 280px;
		height: 200px;
	}
	#certificates .section-subtitle {
		font-size: 28px;
		margin-bottom: 60px;
	}
	/* 进一步调整轮播控制按钮 */
	#certificatesCarousel .carousel-control-prev,
	#certificatesCarousel .carousel-control-next {
		width: 40px;
		height: 40px;
		left: 10px;
		right: 10px;
	}
	#certificatesCarousel .carousel-control-prev-icon,
	#certificatesCarousel .carousel-control-next-icon {
		background-size: 16px 16px;
	}
	/* 调整轮播指示器 */
	#certificatesCarousel .carousel-indicators [data-bs-target] {
		width: 10px;
		height: 10px;
		margin: 0 6px;
	}
}

@media (max-width: 768px) {
	.certificate-item {
		margin: 0 5px;
	}
	.certificate-item img {
		width: 220px;
		height: 160px;
	}
	#certificates .section-subtitle {
		font-size: 24px;
		margin-bottom: 40px;
	}
	/* 小屏幕轮播控制按钮调整 */
	#certificatesCarousel .carousel-control-prev,
	#certificatesCarousel .carousel-control-next {
		width: 35px;
		height: 35px;
	}
	#certificatesCarousel .carousel-control-prev-icon,
	#certificatesCarousel .carousel-control-next-icon {
		background-size: 14px 14px;
	}
	/* 小屏幕轮播指示器调整 */
	#certificatesCarousel .carousel-indicators {
		bottom: -30px;
	}
	#certificatesCarousel .carousel-indicators [data-bs-target] {
		width: 8px;
		height: 8px;
		margin: 0 4px;
	}
}

@media (max-width: 576px) {
	#certificates {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.certificate-item {
		margin: 0;
	}
	.certificate-item img {
		width: 180px;
		height: 130px;
	}
	#certificates .section-subtitle {
		font-size: 20px;
		margin-bottom: 30px;
	}
	#certificates .text-center.mt-10 {
		margin-top: 50px !important;
	}
	/* 超小屏幕轮播控制元素调整 */
	#certificatesCarousel .carousel-control-prev,
	#certificatesCarousel .carousel-control-next {
		width: 30px;
		height: 30px;
		left: 5px;
		right: 5px;
	}
	#certificatesCarousel .carousel-control-prev-icon,
	#certificatesCarousel .carousel-control-next-icon {
		background-size: 12px 12px;
	}
	/* 超小屏幕轮播指示器调整 */
	#certificatesCarousel .carousel-indicators {
		bottom: -25px;
	}
}

/* 页脚样式 - 手写兼容样式，移除Bootstrap依赖 */
footer {
	background: #141519;
	padding-top: 60px;
	padding-bottom: 30px;
	width: 100vw;
	margin: 0;
	overflow-x: hidden;
}

/* 移除Bootstrap容器限制，使用自定义容器，并添加左右内边距 */
footer > .container {
	width: 100%;
	max-width: none;
	box-sizing: border-box;
}

/* 使用Flexbox布局实现100vw横向排列，每项长度由内部元素决定 */
footer .row {
	display: flex !important;
	flex-direction: row;
	justify-content: center;
	gap: 180px;
	margin: 0 !important;
	width: 100%;
	padding: 0;
}

/* 页脚列样式 - 长度由内部元素决定 */
footer .col-md-3 {
	flex: 0 0 auto;
	width: auto;
	max-width: none;
	padding: 0 !important;
	display: flex;
	align-items: flex-start;
}

/* 统一的列内容容器 - 默认上下居中对齐 */
.footer-column-content {
	padding: 10px 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: auto;
}

/* 联系方式和关注品牌监测平台 - 上下对齐，左右靠左对齐 */
.col-md-3:nth-child(3) .footer-column-content,
.col-md-3:nth-child(4) .footer-column-content,
.col-md-3:nth-child(5) .footer-column-content {
	align-items: flex-start;
	text-align: left;
}

/* 页脚标题 - 统一标题样式 */
.footer-title {
	font-size: 20px;
	font-weight: 500;
	color: #ffffff;
	text-align: center;
  height: 60px;
}

.footer-title-diff {
  text-align: left !important;
}

/* 链接列表 - 关于我们和业务介绍 */
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	text-align: center;
}

.about-us-links, .business-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

/* 链接点击动画 */
.footer-link-item {
	color: #b0b0b0;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
	position: relative;
	padding: 2px 0;
	line-height: 1.4;
}

.footer-link-item::before {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #ff6b6b;
	transition: width 0.3s ease;
}

.footer-link-item:hover {
	color: #ffffff;
	transform: translateX(5px);
}

.footer-link-item:hover::before {
	width: 100%;
}

/* 联系我们 */
.contact-info {
	margin-top: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

/* 确保联系地址与联系方式电话元素持平对齐 */
.contact-phone,
.contact-address {
	margin-top: 0;
	padding-top: 0;
}

.contact-content {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	width: 100%;
	flex-wrap: wrap;
	box-sizing: border-box;
	max-width: 100%;
}

.contact-phone,
.contact-address {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.contact-phone p,
.contact-address p {
	color: #b0b0b0;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 3px;
}

.contact-phone img,
.contact-address img {
	width: 24px;
  height: 24px;
  margin-bottom: 13px;
}

.contact-group,
.contact-item,
.contact-icon,
.contact-text {
	display: none;
}

/* 二维码容器 */
.qrcode-container {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 0;
	width: 100%;
}

.qrcode-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.qrcode-image {
	width: 80px;
	height: 80px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	padding: 5px;
	background-color: white;
	border-radius: 4px;
	object-fit: cover;
}

.qrcode-text {
	color: #ffffff;
	font-size: 14px;
	margin-top: 14px;
	text-align: center;
}

/* 页脚底部 */
/* footer .border-top {
  width: 100%;
	border-color: rgba(255, 255, 255, 0.1) !important;
	margin-top: 40px !important;
	padding-top: 25px !important;
}

footer .border-top p {
	color: #808080;
	font-size: 13px;
	text-align: center;
	margin-bottom: 0;
	line-height: 1.5;
} */
.footer_bottom {
  width: 100%;
  height: 98px;
  background: #333538;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFFFFF;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.banner-content h1 {
		font-size: 40px;
	}

	.section-title {
		font-size: 28px;
	}

	.achievement-number {
		font-size: 40px;
	}
}

@media (max-width: 992px) {
	.navbar-nav {
		background-color: white;
		border-radius: 8px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
		padding: 15px 0;
		margin-top: 15px;
	}

	.navbar-nav .nav-item {
		margin: 0;
		text-align: center;
	}

	.navbar-nav .nav-link {
		padding: 10px 15px;
	}

	.banner-content h1 {
		font-size: 36px;
	}

	.banner-content p {
		font-size: 18px;
	}

	.service-image {
		height: 180px;
	}
	
	/* More按钮适配 */
	.custom-btn-primary {
		width: 180px;
		height: 58px;
		font-size: 18px;
	}
	
	.more-icon {
		width: 24px;
		height: 24px;
		margin-left: 8px;
	}
}

@media (max-width: 768px) {
	/* .banner-container {
		height: 80vh;
		min-height: 500px;
	} */

	.banner-content h1 {
		font-size: 30px;
	}

	.banner-content p {
		font-size: 16px;
	}

	.section-title {
		font-size: 24px;
	}

	.section-subtitle {
		font-size: 16px;
	}

	.achievement-number {
		font-size: 36px;
	}

	.certificate-item img {
		height: 200px;
	}
	
	/* More按钮适配 */
	.custom-btn-primary {
		width: 160px;
		height: 50px;
		font-size: 16px;
	}
	
	.more-icon {
		width: 20px;
		height: 20px;
		margin-left: 6px;
	}
}

@media (max-width: 576px) {
	/* .banner-container {
		height: 60vh;
		min-height: 400px;
	} */

	.banner-content h1 {
		font-size: 24px;
	}

	.banner-content p {
		font-size: 14px;
	}

	.carousel-indicators {
		bottom: 15px;
	}
	
	/* More按钮适配 */
	.custom-btn-primary {
		width: 140px;
		height: 45px;
		font-size: 14px;
	}
	
	.more-icon {
		width: 18px;
		height: 18px;
		margin-left: 5px;
	}

	.carousel-indicators [data-bs-target] {
		width: 10px;
		height: 10px;
		margin: 0 5px;
	}

	.carousel-control-prev,
	.carousel-control-next {
		width: 40px;
		height: 40px;
	}

	.carousel-control-prev-icon,
	.carousel-control-next-icon {
		width: 20px;
		height: 20px;
	}

	.service-image {
		height: 150px;
	}

	.achievement-number {
		font-size: 32px;
	}

	.certificate-item img {
		height: 180px;
	}
}
