main {
	width: 100%;
}

.itemWith {
	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;
}

.heading2 {
	color: #51617C;
	font-size: 24px;
	margin-top: 30px;
}

div {
	box-sizing: border-box;
}

.module-promotion {
	/* height: 1000px; */
	background-color: #F5F7FA;
	position: relative;
	margin: 0px auto 100px;
	padding: 80px 60px;
}


.module-promotion .promotion-card {
	margin: 90px auto 0;
	width: 100%;
	max-width: 1560px;
}

.module-promotion .promotion-card .title {
	color: #313540;
	font-size: 20px;
	font-weight: 550;
	margin: 30px 0px;
}

.module-promotion .promotion-card .card-item1 {
	display: flex;
	justify-content: space-around;
	width: 100%;
}

.module-promotion .promotion-card .card-item2 {
	display: flex;
	justify-content: space-around;
	width: 100%;
	gap: 40px;
}

.module-promotion .promotion-card .btn {
	width: 200px;
	height: 60px;
	border-radius: 40px;
	cursor: pointer;
	background: linear-gradient(338deg, #258DFF 0%, #67B0FF 100%);
	border: 2px solid #FFFFFF;
	font-weight: bold;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 55px;
	position: absolute;
	left: 45%;
	bottom: 50px;
	text-align: center;
}

.module-video {
	height: 500px;
	background-image: url(../img/business/model-video-bg.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	margin: 80px 0px 30px 0;
}

.module-video .video-card {
	display: block;
	margin: 0 auto;
	font-size: 16px;
	text-align: center;
	cursor: pointer;
}

.module-video .video-card .title {
	color: #FFFFFF;
	margin-top: 12px;
}

 /* 视频默认隐藏样式 */
        .module-video .video-card #videoPlayer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }

        /* 播放状态：显示视频，隐藏封面元素 */
        .module-video .video-card.playing img,
        .module-video .video-card.playing .title {
            display: none;
        }

        .module-video .video-card.playing #videoPlayer {
            display: block;
        }

        /* 新增：遮罩层样式 */
        .video-mask {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.8); /* 半透明黑色遮罩 */
            display: none; /* 默认隐藏 */
            justify-content: center;
            align-items: center;
            z-index: 999; /* 遮罩层置顶 */
        }

        /* 遮罩层显示状态 */
        .video-mask.show {
            display: flex;
        }

        /* 遮罩层内的视频容器 */
        .mask-video-wrap {
            width: 500px;
            height: 400px;
            position: relative;
        }

        /* 关闭按钮（可选） */
        .video-close-btn {
            position: absolute;
            top: -40px;
            right: 0;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #fff;
            color: #000;
            text-align: center;
            line-height: 36px;
            cursor: pointer;
            font-size: 20px;
        }

.module1 {
	height: 502px;
	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: 50%;
	z-index: 1;
	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 .btn-item2 {
	width: 200px;
	height: 60px;
	border-radius: 40px;
	cursor: pointer;
	background: #fff;
	border: 2px solid #258DFF;
	font-weight: bold;
	font-size: 16px;
	color: #258DFF;
	margin-left: 20px;
	line-height: 55px;
	text-align: center;
	transition: all 0.3s ease;
	/* 所有属性渐进过渡 */
	box-shadow: 0 4px 12px rgba(37, 141, 255, 0.08);
	/* 初始轻微阴影 */
}

/* btn-item2 hover 效果 */
.module1-title .btn-item2:hover {
	background: #f5faff;
	/* 背景色轻微变蓝 */
	color: #1A7DFF;
	/* 文字色加深 */
	transform: translateY(-3px);
	/* 轻微上浮 */
	box-shadow: 0 8px 16px rgba(37, 141, 255, 0.18);
	/* 阴影增强 */
	border-color: #1A7DFF;
	/* 边框色加深 */
}

.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 {
	font-family: Alibaba PuHuiTi;
	width: 720px;
	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: 50%;
	transform: translate(-50%);
}

.module1 .img img {
	width: 395px;
	height: 395px;
	float: right;
}

.module2 {
	height: 577px;
	width: 100%;
	background-image: url(../img/business/module2-bg.png);
	background-repeat: no-repeat;
	background-size: 100% 577px;
	padding-top: 100px;
}

.module2-card {
	margin: 0 auto;
	max-width: 1560px;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	margin-top: 70px;
}

.module2-card .card-item {
	width: 33.333%;
	padding: 55px 35px 37px 25px;
	/* background-image: url(../img/business/module2-card1.png); */
	background-repeat: no-repeat;
	background-size: 100% 100%;
	box-shadow: 6px 8px 24px 0px rgba(0, 0, 0, 0.03);

}

.module2-card .card-item:nth-child(1) {
	background-image: url('../img/business/module2-card1.png');
}

.module2-card .card-item:nth-child(2) {
	background-image: url('../img/business/module2-card2.png');
}

.module2-card .card-item:nth-child(3) {
	background-image: url('../img/business/module2-card3.png');
}

.module2-card .card-item:nth-child(4) {
	background-image: url('../img/business/module2-card4.png');
}

.module2-card .card-item:first {
	margin-left: 0;
}

.module2-card .card-item:hover {
	transform: translateY(-20px);
	transition-duration: 300ms;
}


.module2-card .card-item p {
	font-family: Alibaba PuHuiTi;
	font-weight: bold;
	font-size: 20px;
	color: #313540;
	line-height: 24px;
	text-align: left;
	font-style: normal;
	text-transform: none;
	margin-bottom: 14px;
	padding-left: 21px;
}

.module2-card .card-item .card-item-inner {
	display: flex;
}

.module2-card .card-item .card-item-inner img {
	width: 84px;
	height: 84px;
	margin-left: 6px;
}

.module2-card .card-item .card-item-inner .text {
	flex: 1;
	font-family: Alibaba PuHuiTi;
	font-weight: 400;
	font-size: 16px;
	color: #51617C;
	line-height: 24px;
	text-align: left;
	font-style: normal;
	text-transform: none;
	padding-left: 21px;
	margin-top: 12px;
}

.module2-card .card-item .card-item-inner .text li {
	list-style: disc;
}

/* 第三模块 */
.module3 {
	height: 1030px;
	width: 100%;
	padding-top: 76px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

.module3-card {
	max-width: 1560px;
	position: relative;
	margin: 0 auto;
}

.module3-card .card-icon-left {
	width: 54px;
	height: 54px;
	/* position: absolute; */
	/* left: 0; */
}

.module3-card .card-icon-right {
	width: 54px;
	height: 54px;
	margin-left: 115px;
}

.module3-card .card-icon-right-center {
	width: 54px;
	height: 54px;
	margin-left: 40px;
}

.module3-card .card-fonts .item-fonts {
	text-align: left;
	font-size: 14px;
	margin-top: 10px;
	color: #51617C;
}

.module3-card .card-fonts {
	margin-left: 15px;
	width: 360px;
}

.module3-card .card-fonts .title {
	font-size: 19px;
	font-weight: bold;
	text-align: left;
}

.card-fonts-center {
	margin-left: 15px;
	width: 350px;
}

.module3-card .card-fonts-center .title {
	font-size: 19px;
	font-weight: bold;
	text-align: left;
}

.module3-card .card-left1 {
	background-image: url(../img/business/module3-left-1.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 540px;
	height: 158.25px;
	position: absolute;
	left: 43px;
	top: 110px;
	display: flex;
	align-items: center;
}

.module3-card .card-left1 .item {
	text-align: left;
	font-size: 14px;
	margin-top: 10px;
	color: #51617C;
}


.module3-card .card-left2 {
	background-image: url(../img/business/module3-left-2.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 450px;
	height: 158.25px;
	position: absolute;
	left: -10px;
	top: 310px;
	display: flex;
	align-items: center;
}

.module3-card .card-left2 .item {
	text-align: left;
	font-size: 14px;
	margin-top: 10px;
	color: #51617C;
}

.module3-card .card-left3 {
	background-image: url(../img/business/module3-left-3.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 540px;
	height: 158.25px;
	position: absolute;
	left: 35px;
	top: 510px;
	display: flex;
	align-items: center;
}

.module3-card .card-left3 .item {
	text-align: left;
	font-size: 14px;
	margin-top: 10px;
	color: #51617C;
}


.module3-card .card-right1 {
	background-image: url(../img/business/module3-right-1.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 540px;
	height: 158.25px;
	position: absolute;
	right: 40px;
	top: 110px;
	display: flex;
	align-items: center;
}

.module3-card .card-right1 .item {
	text-align: left;
	font-size: 14px;
	margin-top: 10px;
	color: #51617C;
}

.module3-card .card-right2 {
	background-image: url(../img/business/module3-right-2.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 460px;
	height: 158.25px;
	position: absolute;
	right: -20px;
	top: 310px;
	display: flex;
	align-items: center;
}

.module3-card .card-right2 .item {
	text-align: left;
	font-size: 14px;
	margin-top: 10px;
	color: #51617C;
}

.module3-card .card-right3 {
	background-image: url(../img/business/module3-right-3.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 540px;
	height: 158.25px;
	position: absolute;
	right: 30px;
	top: 510px;
	display: flex;
	align-items: center;
}

.module3-card .card-right3 .item {
	text-align: left;
	font-size: 14px;
	margin-top: 10px;
	color: #51617C;
}

.module3 .btn {
	width: 200px;
	height: 60px;
	border-radius: 40px;
	cursor: pointer;
	background: linear-gradient(338deg, #258DFF 0%, #67B0FF 100%);
	border: 2px solid #FFFFFF;
	font-weight: bold;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 55px;
	position: absolute;
	left: 45%;
	bottom: 90px;
	text-align: center;
}








.module4 {
	width: 100%;
	position: relative;
	padding: 70px 0;
	background: #F0F7FF;
	border-radius: 0px 0px 0px 0px;
	margin-bottom: 100px;
	text-align: center;
}

.module4-box1 {
	display: flex;
	justify-content: space-between;
	background-image: url('../img/business/module4-bag1.png');
	background-repeat: no-repeat;
	padding: 72px 150px;
	background-size: 100% 100%;
	position: relative;
	margin: 30px auto 70px auto;
	width: 1600px;
	height: 588px;
}

.module4-box1 .box-item {
	width: 50px;
	height: 440px;
	background: #cae6fe;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	box-sizing: border-box;
}

.module4-box1 .box-item-left {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	/* 垂直均匀分布 */
	align-items: flex-start;
	/* 改为靠左排列 */
	padding: 10px;
	box-sizing: border-box;
	height: 100%;
	/* 确保高度占满父容器 */

}

.module4-box1 .box-item-left .content {
	display: flex;
	margin-bottom: 12px;
}

.module4-box1 .box-item-left .content .content-item {
	text-align: left;
	margin-left: 12px;
}

.module4-box1 .box-item-left .content .content-item .fonts1 {
	color: #313540;
	font-size: 18px;
	display: block;
}

.module4-box1 .box-item-left .content .content-item .fonts2 {
	font-size: 14px;
	color: #51617C;
	display: block;
}

.module4-box1 .box-item-center {
	display: flex;
	justify-content: center;
}

.module4-box1 .box-item-center .left {
	display: flex;
	margin: 0 auto;
	gap: 75px;
	text-align: center;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: flex-start;
	/* padding: 10px; */
	box-sizing: border-box;
	height: 100%;
}

.module4-box1 .box-item-center .left .content {
	width: 100%;
}

.module4-box1 .box-item-center .left .content .title {
	font-size: 14px;
	margin-top: 5px;
	color: #51617C;
	display: block;
}


.module4-box1 .box-item-center .center {
	display: flex;
	flex-direction: column;
	gap: 93px;
	padding-left: 30px;
	padding-top: 20px;
	align-items: flex-start;
	box-sizing: border-box;
	height: 100%;
}

.module4-box1 .box-item-center .center .content {
	width: 100%;
}

.module4-box1 .box-item-center .center .content .title {
	font-size: 14px;
	margin-top: 5px;
	color: #51617C;
	display: block;
}

.module4-box1 .box-item-right {
	display: flex;
	justify-content: center;
}

.module4-box1 .box-item-right .content {
	display: flex;
	margin: 0 20px;
	text-align: center;
	flex-direction: column;
	justify-content: space-around;
	align-items: flex-start;
	/* padding: 10px; */
	box-sizing: border-box;
	height: 100%;
}

.module4-box1 .box-item-right .content .title {
	font-size: 14px;
	margin-top: 5px;
	color: #51617C;
	display: block;
}

.module4-box1 .box-item .item-fonts {
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-family: 'SimSun', serif;
	color: #313540;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 10px;
	line-height: 1.5;

}

.module4-box2 {
	width: 1520px;
	height: 496px;
	margin-top: 25px;
	position: relative;
	margin: 40px auto;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FFFFFF;
	box-shadow: 0px 0px 32px 0px rgba(37, 141, 255, 0.05);
	border-radius: 16px 16px 16px 16px;
	border: 2px solid #FFFFFF;
}

.module4-box2 .content {
	width: 180px;
}

.module4-box2 .box2-content-top {
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 80px;
	left: 90px;
	gap: 85px;
}

.module4-box2 .box2-content-top .content-title {
	display: block;
	color: #51617C;
	font-size: 16px;
}

.module4-box2 .box2-content-top .content-item {
	background-image: url(../img/business/model4-bag2-item.png);
	display: flex;
	width: 152px;
	height: 64px;
	margin-top: 20px;
	align-items: center;
	justify-content: center;
	/* text-align: center; */
	color: #fff;
	font-size: 20px;
}

.module4-box2 .box2-content-bottom {
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 295px;
	left: 260px;
	gap: 75px;
}

.module4-box2 .box2-content-bottom .content-title {
	display: block;
	color: #51617C;
	font-size: 16px;
}

.module4-box2 .box2-content-bottom .content-item {
	background-image: url(../img/business/model4-bag2-item.png);
	display: flex;
	width: 152px;
	height: 64px;
	margin-bottom: 20px;
	align-items: center;
	justify-content: center;
	/* text-align: center; */
	color: #fff;
	font-size: 20px;
}

.module5 {
	height: 530px;
	width: 100%;
	position: relative;
	text-align: center;
}

.module5 .module5-card {
	display: flex;
	padding: 60px 0;
	justify-content: center;

}

.module5 .module5-card .card-title1 {
	background-image: url('../img/business/model5-item1.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 300px;
	/* gap: 28px; */
	height: 64px;
	font-size: 20px;
	display: flex;
	/* margin-right: 20px; */
	align-items: center;
	color: #fff;
	justify-content: center;
}

.module5 .module5-card .card-title2 {
	background-image: url('../img/business/model5-item2.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 300px;
	/* gap: 28px; */
	height: 64px;
	font-size: 20px;
	display: flex;
	/* margin-right: 20px; */
	align-items: center;
	color: #fff;
	justify-content: center;
}

.module5 .module5-card .card-item {
	width: 260px;
	height: 178px;
	padding: 20px;
	font-weight: normal;
	font-size: 15px;
	color: #51617C;
	line-height: 26px;
	margin-top: 16px;
	margin-left: 15px;
	background: #ecf2fe;
}

.module6 {
	height: 1740px;
	width: 100%;
	padding: 40px 0px;
	position: relative;
	padding-top: 76px;
	background: #f0f7ff;
	border-radius: 0px 0px 0px 0px;
	text-align: center;
}

.module6 .module6-card {
	max-width: 1560px;
	height: 800px;
	margin: 60px 0;
	position: relative;
	margin: 60px auto;
	background-color: #fff;
}


.module6 .module6-card .center {
	font-size: 22px;
	color: #313540;
	font-weight: 550;
	margin: 0 10px;
}


.module6 .module6-card .right {
	color: #51617C;
	font-size: 16px;
}

.module6 .module6-card .card-title {
	padding-top: 60px;
}

.module6-card .content-1 {
	display: flex;
	justify-content: center;
	padding: 65px 104px;
}


.module6-card .content-1 .content-num {
	display: flex;
	justify-content: center;
}

.module6-card .content-1 .content-num .num {
	width: 32px;
	height: 32px;
	font-size: 18px;
	line-height: 32px;
	background: #437DF0;
	border-radius: 50%;
	color: #fff;
}

.content-1 .content-title {
	color: #51617C;
	font-size: 16px;
	margin-bottom: 20px;
	margin-top: 20px;
}


.module7 {
	width: 100%;
	padding: 420px 0px;
	position: relative;
	padding-top: 76px;
	background: #f0f7ff;
	border-radius: 0px 0px 0px 0px;
	text-align: center;
}

.module7 .module7-card {
	max-width: 1560px;
	margin: 60px auto;
	text-align: center;
}

.module7 .module7-card .card-top {
	padding: 0 150px;
}

.module7 .module7-card .card-top .img {
	position: relative;
	width: 100%;
	margin: 0 auto;
	display: flex;
}

.module7 .module7-card .card-bottom {
	margin: -370px auto;
	padding: 400px 90px 80px 160px;
	display: flex;
	background: #fff;
}

.module7 .module7-card .card-bottom .title {
	display: flex;
	justify-content: center;
}

.module7 .module7-card .card-bottom .title .num {
	width: 32px;
	height: 32px;
	line-height: 32px;
	background: #437DF0;
	border-radius: 50%;
	color: #fff;
}

.module7 .module7-card .card-bottom .item {
	color: #51617C;
	font-size: 16px;
	margin-bottom: 20px;
	margin-top: 20px;
}



.module8 {
	height: 1560px;
	width: 100%;
	padding: 60px 0px;
	position: relative;
	background: #f7f9fb;
	text-align: center;
}

.module8-card1 {
	max-width: 1560px;
	margin: 60px auto;
	display: flex;
	justify-content: center;
}

.module8-card1 .card1-content {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 0px auto;
}

.module8-card1 .card1-content .item {
	padding: 60px 40px;
	flex: 1;
	background: linear-gradient(180deg, rgba(239, 243, 248), rgba(160, 195, 239, 0.04) 31%, rgba(255, 255, 255));
	width: 740px;
	height: 690px;
	text-align: center;
}

.module8-card1 .card1-content .item .img {
	display: inline-block;
	margin: 0 auto;
}

.module8-card1 .card1-content .item .title {
	font-size: 20px;
	color: #313540;
	margin-top: 20px;
}

.module8-card1 .card1-content .item .fonts {
	font-size: 16px;
	color: #51617C;
	margin-top: 16px;
}

.module8-card2 {
	max-width: 1560px;
	padding: 0 30px;
	height: 458px;
	background-color: #fff;
	display: flex;
	margin: 60px auto;
	justify-content: space-around;
}

.module8-card2 .card2-content {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin: 60px auto;
}

.module9 {
	display: flex;
	padding: 80px 0;
	justify-content: center;
}

@media screen and (max-width: 1440px) {

	.module1 .img,
	.module1 .module1-title,
	/* .module5  */
	.module2-card,
	.module6-wrap {
		min-width: 1180px;
	}

	.module2-card .card-item {
		margin-left: 20px;
	}

	.module3-card .card-item,
	.module5-content-box2-left {
		margin-left: 50px;
	}

	.module5-content-box3 .module5-content-box2-left {
		margin-right: 50px;
	}
}









/* 下方可视区域遮罩层 */
/* 常驻底部黑色半透明遮罩样式 */
.permanent-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 75px;
	background-color: rgba(0, 0, 0, 0.6);
	/* 黑色+60%透明度 */
	display: flex;
	justify-content: center;
	align-items: flex-start;
	z-index: 998;
	box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	overflow: hidden;
}

.notice-content {
	display: flex;
	flex-direction: column;
	/* 整体纵向排列（上方横向区域 + 下方展开区域） */
	align-items: center;
	gap: 15px;
	max-width: 1200px;
	width: 100%;
	padding: 15px 20px;
	box-sizing: border-box;
	transition: all 0.3s ease;
}

/* 上方横向排列区域 */
.notice-top {
	display: flex;
	align-items: center;
	gap: 15px;
	width: 100%;
	justify-content: center;
	flex-wrap: nowrap;
	/* 强制横向排列，不换行 */
}

.notice-icon {
	width: 32px;
	height: 32px;
	background: url("/{ms:global.style/}img/business/notice-icon.png") no-repeat center;
	background-size: contain;
	filter: brightness(0) invert(1);
	/* 白色图标适配黑色背景 */
}

/* 方案图片样式 */
.plan-img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.notice-text {
	margin-left: 10px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	white-space: nowrap;
	/* 文字不换行 */
}

.notice-btn {
	padding: 8px 24px;
	background-color: #437df0;
	color: #fff;
	border-radius: 30px;
	font-size: 16px;
	margin-left: 20px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	outline: none;
	box-shadow: 0 3px 8px rgba(67, 125, 240, 0.4);
}

.notice-btn:hover {
	background-color: #3a72e0;
	transform: translateY(-2px);
	box-shadow: 0 5px 12px rgba(67, 125, 240, 0.5);
}

/* 取消图片样式 */
.cancel-img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	transition: all 0.3s ease;
	cursor: pointer;
}

.cancel-img:hover {
	transform: scale(1.1) rotate(10deg);
	filter: brightness(1.2);
}

/* 展开/收起按钮样式 */
.down-img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	transition: all 0.3s ease;
	cursor: pointer;
	filter: brightness(0) invert(1);
	/* 白色图标适配黑色背景 */
}

.down-img:hover {
	transform: scale(1.1) rotate(180deg);
	/* hover旋转效果 */
}

/* 下方展开区域：背景图 + 内容层 */
.expand-area {
	display: none;
	/* 默认隐藏 */
	width: 90%;
	height: 220px;
	position: relative;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
	overflow: hidden;
}

/* 背景图样式 */
.bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/* 内容层样式 */
.content-layer {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
	padding: 0 20px;
	box-sizing: border-box;
}

/* 左侧评分卡片样式 */
.score-card {
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	width: 200px;
}

.card-title {
	font-size: 14px;
	color: #333;
	margin-bottom: 10px;
}

.card-score {
	font-size: 18px;
	color: #333;
	font-weight: 500;
	margin-bottom: 15px;
}

.card-number {
	font-size: 36px;
	color: #437df0;
	font-weight: 700;
}

/* 中间分析图样式 */
.analyze-img {
	/* max-width: 300px; */
	max-height: 180px;
	object-fit: contain;
}

/* 右侧二维码区域样式 */
.qr-area {
	text-align: center;
}

.qr-title {
	font-size: 16px;
	color: #333;
	margin-bottom: 10px;
	font-weight: 500;
}

.qr-img {
	width: 120px;
	height: 120px;
	object-fit: contain;
	margin-bottom: 5px;
}

.qr-tel {
	font-size: 14px;
	color: #666;
	margin: 0;
}

/* 页面底部内边距，避免内容被遮罩层遮挡 */
body {
	padding-bottom: 75px !important;
	transition: padding-bottom 0.3s ease;
}








/* 遮罩层+服务方案信息 */
.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: 30%;
	/* 调整宽度以匹配设计 */
	max-width: 400px;
}

.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%;
	position: relative;
	z-index: 1;
	display: block;
	/* 确保图片显示 */
}

/* 表单区域样式（嵌入图片上层） */
.modal-form {
	position: absolute;
	top: 48%;
	/* 调整垂直位置 */
	left: 15%;
	/* 调整水平位置 */
	width: 70%;
	z-index: 2;
}

.modal-form h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #333;
}

.modal-form p {
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
}

.form-input {
	width: 100%;
	padding: 10px;
	height: 50px;
	margin-bottom: 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, 0.8);
	/* 半透明白色背景 */
}

.form-submit {
	width: 100%;
	padding: 10px;
	background-color: #437df0;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}

.form-submit:hover {
	background-color: #3a72e0;
}

.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);
}








/* .notice-btn:hover {
	background-color: #f0f5ff;
	transform: translateY(-2px);
} */

/* .notice-close {
	width: 24px;
	height: 24px;
	background: url("/{ms:global.style/}img/business/close-icon.png") no-repeat center;
	background-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.notice-close:hover {
	transform: rotate(90deg);
} */

/* 响应式调整 */
@media (max-width: 768px) {
	.permanent-notice {
		height: auto;
		padding: 15px 0;
		font-size: 15px;
	}

	.notice-content {
		flex-wrap: wrap;
		gap: 10px;
		text-align: center;
	}

	.notice-icon {
		margin: 0 auto;
	}

	.notice-btn {
		width: 100%;
		margin-top: 10px;
	}
}

/* 给页面主体添加顶部间距，避免被遮罩层遮挡 */
body {
	/* padding-top: 78px !important; */
}

@media (max-width: 768px) {
	body {
		padding-top: 100px !important;
		/* 移动端高度自适应，增加padding */
	}
}



@media screen and (min-width: 1441px) {

	.module1 .module1-title,
	.module1 .img {
		min-width: 1440px;
	}

	.module2-card,
	.module3-card,
	/* .module5, */
	.module6-wrap {
		width: 1440px;
		gap: 32px;
	}

	.module2-card .card-item {
		/* margin-left: 63px; */
	}

	.module3-card .card-item,
	.module5-content-box2-left {
		margin-left: 100px;
	}

	.module5-content-box3 .module5-content-box2-left {
		margin-right: 100px;
	}
}