main {
	width: 100%;
}

.heading {
	font-family: Alibaba PuHuiTi;
	font-weight: 500;
	font-size: 36px;
	color: #313540;
	line-height: 42px;
	text-align: center;
	font-style: normal;
	text-transform: none;
}

div {
	box-sizing: border-box;
}

.module1 {
	height: 550px;
	background-image: url(../img/care/banner-bg.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	position: relative;
}

.module1-title {
	position: absolute;
	top: 126px;
	left: 37%;
	z-index: 9;
	transform: translate(-50%);
}

.module1-title .btns {
	/* display: flex; */
	margin-top: 30px;
}

.module1-title .btn-item1 {
	width: 200px;
	height: 60px;
	border-radius: 40px;
	cursor: pointer;
	margin-right: 20px;
	background: linear-gradient(338deg, #258DFF 0%, #67B0FF 100%);
	border: 2px solid #FFFFFF;
	font-weight: bold;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 55px;
	text-align: center;
	transition: all 0.3s ease;
	/* 所有属性渐进过渡，时长0.3秒 */
	box-shadow: 0 4px 12px rgba(37, 141, 255, 0.15);
	/* 初始轻微阴影 */
}

/* btn-item1 hover 效果 */
.module1-title .btn-item1:hover {
	background: linear-gradient(338deg, #1A7DFF 0%, #55A3FF 100%);
	/* 渐变加深 */
	transform: translateY(-3px);
	/* 轻微上浮 */
	box-shadow: 0 8px 16px rgba(37, 141, 255, 0.25);
	/* 阴影增强 */
	border-color: #f0f9ff;
	/* 边框色微调，更协调 */
}

.module1-title h1 {
	font-family: Alibaba PuHuiTi;
	font-weight: 600;
	font-size: 48px;
	color: #313540;
	line-height: 56px;
	text-align: left;
	font-style: normal;
	text-transform: none;
}

.module1-title h1 span {
	font-size: 28px;
}

.module1-title p {
	width: 790px;
	margin-top: 26px;
	font-weight: 400;
	font-size: 18px;
	color: #51617C;
	line-height: 30px;
	text-align: left;
	font-style: normal;
	text-transform: none;
}

.module1 .img {
	position: absolute;
	top: 43px;
	left: 80%;
	transform: translate(-50%);
}

.module1 .img img {
	width: 395px;
	height: 395px;
	float: right;
}

.module2 {
	background: #fff;
	padding: 67px 20px 40px;
	/* 上下内边距，左右留边距避免贴边 */
	height: auto;
	/* 取消固定高度，自适应内容 */
	max-width: 1400px;
	/* 限制最大宽度，避免过宽时布局错乱 */
	margin: 0 auto;
	/* 水平居中 */
}

/* 标题样式优化（补充，使标题更协调） */
.module2 .heading {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	text-align: center;
	margin: 0 0 30px;
	/* 底部留间距，与卡片区分 */
}

.module2-card {
	display: flex;
	flex-direction: row;
	justify-content: center;
	/* 水平居中布局（比space-between更协调） */
	flex-wrap: wrap;
	/* 自动换行，避免横向溢出 */
	gap: 20px;
	/* 卡片之间的间距（替代margin-right，更均匀） */
	margin: 0 auto 30px;
	/* 上下间距，水平居中 */
	width: 100%;
	/* 占满父容器宽度 */
}

.module2-card-item {
	position: relative;
	cursor: pointer;
	width: calc(25% - 15px);
	/* 4列布局，减去gap间距 */
	min-width: 200px;
	/* 最小宽度，避免过窄时文字挤压 */
}

/* 确保图片自适应容器，不溢出 */
.module2-card-item img {
	display: block;
	width: 100%;
	height: auto;
	/* 保持图片比例 */
	object-fit: cover;
	/* 防止图片变形 */
}

.module2-card-item .module2-card-font {
	position: absolute;
	font-size: 18px;
	z-index: 10;
	color: #fff;
	transition: all 0.3s ease;
	text-align: center;
	left: 50%;
	transform: translateX(-50%);
}

/* 原始文字定位 - 默认居中显示 */
.module2-card-item .original-text {
	top: 43%;
	opacity: 1;
	width: 90%;
	/* 留少量边距，避免文字贴边 */
	line-height: 1.3;
	/* 多行文字换行后间距协调 */
}

/* hover文字定位（默认隐藏，位于原始文字下方） */
.module2-card-item .hover-text {
	top: calc(43% + 24px);
	opacity: 0;
	padding: 4px 16px;
	border-radius: 20px;
	border: 1px solid #fff;
	font-size: 16px;
	width: auto;
	white-space: nowrap;
}

/* hover状态 - 同时显示两个文字，向上顶起效果 */
.module2-card-item:hover .original-text {
	top: 35%;
	/* 调整顶起幅度，避免文字溢出图片 */
	opacity: 1;
}

.module2-card-item:hover .hover-text {
	top: 55%;
	/* 调整垂直位置，确保在图片内 */
	opacity: 1;
	transform: translateX(-50%) translateY(-50%);
}

/* 响应式调整：屏幕变窄时自动减少列数 */
@media (max-width: 1200px) {
	.module2-card-item {
		width: calc(33.333% - 15px);
		/* 3列布局 */
	}
}

@media (max-width: 900px) {
	.module2-card-item {
		width: calc(50% - 15px);
		/* 2列布局 */
	}
}

@media (max-width: 600px) {
	.module2-card-item {
		width: 100%;
		/* 1列布局 */
		max-width: 300px;
		/* 限制最大宽度，避免过宽 */
	}
}






/* 专属客服遮罩层样式 */
/* 遮罩层样式 */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	padding: 20px;
	box-sizing: border-box;
}

.modal-container {
	position: relative;
	width: 20%;
}

.modal-main-img {
	height: auto;
	border-radius: 12px;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
	border: 2px solid rgba(255, 255, 255, 0.1);
	/* 主图宽度继承容器，确保与容器一致 */
	width: 100%;
	/* 主图z-index默认，确保悬浮图能覆盖 */
	position: relative;
	z-index: 1;
}

/* 新增悬浮图片样式 */
.modal-float-img {
	position: absolute;
	top: 50%;
	left: 50%;
	/* 居中定位 */
	transform: translate(-50%, -50%);
	/* 宽度控制：根据需求调整，这里设为容器的40% */
	width: 40%;
	height: auto;
	/* z-index高于主图，确保浮在上层 */
	z-index: 10;
	/* 优化样式：添加阴影和圆角 */
	border-radius: 8px;
	/* box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); */
	border: 2px solid #fff;
	/* 可选：添加轻微缩放动画，提升视觉效果 */
	transition: transform 0.3s ease;
}

.modal-close {
	position: absolute;
	top: -35px;
	right: -30px;
	color: #fff;
	font-size: 26px;
	cursor: pointer;
	width: 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	transition: all 0.3s ease;
	backdrop-filter: blur(2px);
	z-index: 20;
}

.modal-close:hover {
	background-color: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}




/* @media screen and (max-width: 1440px) {

	.module1 .img,
	.module1 .module1-title,
	.module2-card,
	.module3-card,
	.module4-content,
	.module5-content,
	.module6-content {
		min-width: 1180px;
	}

	.module2-card {
		min-width: 1180px;
	}

	.module3-card-title .line {
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media screen and (min-width: 1441px) {

	.module1 .module1-title,
	.module1 .img {
		min-width: 1440px;
	}

	.module2-card,
	.module4-content,
	.module5-content,
	.module6-content {
		width: 1440px;
	}

	.module3-card {
		max-width: 1560px;
		min-width: 1440px;
	}
} */