@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	-webkit-tap-highlight-color: transparent;
	tap-highlight-color: transparent; 
}

/* ============================================
   响应式显示控制：PC端和移动端页面切换
   ============================================ */
/* PC端默认显示，移动端隐藏 */
.PC_page {
	display: block;
}
.DM_page {
	display: none;
}

/* 移动端显示PC端隐藏（通过媒体查询控制） */
@media screen and (max-width: 768px) {
	.PC_page {
		display: none;
	}
	.DM_page {
		display: block;
	}
}

html {
	font-size: 100px;
	width: 100%;
	height: 100%;
}

body {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
	font-size: 12px;
	font-family: Arial, "微软雅黑";
	color: #212121;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
}

.meet_text::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

.meet_text::-webkit-scrollbar-track,
::-webkit-scrollbar-corner {
	background: rgba(255, 255, 255, 0.4);
	border-radius: 10px;
}

.meet_text::-webkit-scrollbar-thumb {
	-webkit-border-radius: 8px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.9);
}

.meet_text::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255, 255, 255, 0.9);
}

:before,
:after {
	font-family: 'iconfont';
}

.ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.iconfont {
	font-family: 'iconfont';
}

/* 浮动 清除浮动 */
.fl {
	float: left;
}

.fr {
	float: right;
}

.cf:after {
	display: block;
	content: "";
	height: 0;
	visibility: hidden;
	clear: both;
}

.cf {
	zoom: 1;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

a {
	color: #212121;
	text-decoration: none;
	outline: none;
}

a:active {
	outline: none;
}

a:link,
a:visited {
	text-decoration: none;
	outline: none;
}

a:hover {
	text-decoration: none;
	color: #0048B4;
	outline: none;
}

li {
	list-style: outside none;
	list-style-type: none;
}

h1 {
	font-size: 16px;
}

h2,
h3,
h4,
h5 {
	font-size: 14px;
}

h5 {
	font-size: 12px;
}

textarea,
input {
	background: transparent;
	font-size: 12px;
	font-family: Arial, "微软雅黑";
	color: #888;
	outline: none;
	border: 0;
}

em {
	font-style: normal;
}

img {
	vertical-align: middle;
	max-width: 100%;
	border: 0;
	object-fit: cover;
}

/* 左侧导航容器（统一过渡属性） */
.left-nav {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	transition: all 0.3s ease-in-out;
}

/* 导航列表（flex垂直布局，确保同步收缩） */
.nav-list {
	background: #C40311;
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	width: 160px;
	border-radius: 0px 10px 10px 0px;
}

/* 导航项 */
.nav-item {
	width: 150px;
	height: 46px;
	padding-left: 34px;
	color: #fff;
	font-size: 16px;
	text-align: left;
	line-height: 46px;
	cursor: pointer;
	overflow: hidden;
	white-space: nowrap;
	border-bottom: 1px solid;
	border-image: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%,#FFFFFF 50%,rgba(255, 255, 255, 0) 100%) 1;
}
.nav-item .icon{
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 10px;
	margin-top: -2px;
	vertical-align: middle;
}
.nav-item:nth-child(1) .icon {
	background: url(P1_icon.png) no-repeat;
	background-size: 16px 32px;
}
.nav-item:nth-child(2) .icon {
	background: url(P2_icon.png) no-repeat;
	background-size: 16px 32px;
}
.nav-item:nth-child(3) .icon {
	background: url(P3_icon.png) no-repeat;
	background-size: 16px 32px;
}
.nav-item:nth-child(4) .icon {
	background: url(P4_icon.png) no-repeat;
	background-size: 16px 32px;
}
.nav-item:nth-child(5) .icon {
	background: url(P5_icon.png) no-repeat;
	background-size: 16px 32px;
}
.nav-item:nth-child(6) .icon {
	background: url(P6_icon.png) no-repeat;
	background-size: 16px 32px;
}
.nav-item:nth-child(7) .icon {
	background: url(P7_icon.png) no-repeat;
	background-size: 16px 32px;
}
.nav-item:nth-child(8) .icon {
	background: url(P8_icon.png) no-repeat;
	background-size: 16px 32px;
}
.nav-item:nth-child(9) .icon {
	background: url(P9_icon.png) no-repeat;
	background-size: 16px 32px;
}
.nav-item:nth-child(10) .icon {
	background: url(P10_icon.png) no-repeat;
	background-size: 16px 32px;
}
.nav-item:nth-child(11) .icon {
	background: url(P11_icon.png) no-repeat;
	background-size: 16px 32px;
}

.nav-item:nth-child(1).active .icon,
.nav-item:nth-child(2).active .icon,
.nav-item:nth-child(3).active .icon,
.nav-item:nth-child(4).active .icon,
.nav-item:nth-child(5).active .icon,
.nav-item:nth-child(6).active .icon,
.nav-item:nth-child(7).active .icon,
.nav-item:nth-child(8).active .icon,
.nav-item:nth-child(9).active .icon,
.nav-item:nth-child(10).active .icon,
.nav-item:nth-child(11).active .icon{
    background-position: 0 -16px; 
}

.nav-item.active {
	background: #FFFFFF;
	font-weight: bold;
	color: #C40311;
	border-radius: 0px 20px 20px 0px;
}

/* 切换按钮所在li */
.nav-toggle-li {
	width: 100%;
}

/* 收起/展开按钮（同步过渡） */
.nav-toggle {
	width: 100%;
	height: 50px;
	background: #C40311;
	color: #fff;
	text-align: center;
	line-height: 50px;
	cursor: pointer;
	font-size: 18px;
	background: url(left.png) no-repeat;
	background-position: 66px 14px;
}

/* 导航收起状态 */
.left-nav.collapsed .nav-list {
	width: 50px;
}
.collapsed .nav-toggle{
	background: url(rigth.png) no-repeat;
	background-position: 12px 14px;
}

/* 底部翻页 */
.bottom-nav {
	position: absolute !important;
	left: 50% !important;
	bottom: 2% !important;
	transform: translateX(-50%) !important;
	z-index: 9 !important;
}
.bottom-nav-box{
	width: 112px !important;
	height: 56px !important;
	display: flex !important;
	background: rgba(0, 0, 0, 0.3) !important;
	border-radius: 12px !important;
	align-items: center !important;
}
.bottom-nav-box .prve,
.bottom-nav-box .next{
	display: inline-block !important;
	width: 56px !important;
	height: 56px !important;
	background: url(left_gray.png) no-repeat;
	background-position: 10px 10px;
	cursor:pointer !important;
}
.bottom-nav-box .next{
	background: url(rigth_white.png) no-repeat;
	background-position: 7px 10px;
}
.splitLine{
	width: 2px !important;
	height: 24px !important;
	background: rgba(255, 255, 255, 0.4) !important;
}


/* Swiper容器（已修改为水平滚动） */
.vertical-swiper {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
	position:relative;
}

.vertical-swiper::-webkit-scrollbar {
	display: none;
}

/* 滑动区域（修改为水平滚动适配） */
.swiper-slide {
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	overflow-x: auto;
	overflow-y: auto;
	flex-shrink: 0;
}

/* 滑动区域内容 */
.slide-content {
	position: relative;
	width: 1200px;
	height: 1000px;
	margin: 0px auto;
	font-size: 36px;
	color: #fff;
	padding: 20px 0px;
	text-align: center;
}
/* 视觉舞台：固定设计尺寸，按比例整体缩放居中 */
.slide-stage {
	position: absolute;
	left: 0;
	top: 0;
	width: 1920px;
	height: 1080px;
	transform-origin: 0 0;
	transform: scale(1);
}

.P7_slide{
	padding: 0px;
}

/* 各屏背景图 */
.swiper-slide:nth-child(1) {
	background-image: url(bg1.jpg);
}

.swiper-slide:nth-child(2) {
	background-image: url(bg2.jpg);
}

.swiper-slide:nth-child(3) {
	background-image: url(bg3.jpg);
}

.swiper-slide:nth-child(4) {
	background-image: url(bg4.jpg);
}

.swiper-slide:nth-child(5) {
	background-image: url(bg5.jpg);
}

.swiper-slide:nth-child(6) {
	background-image: url(bg6.jpg);
}

.swiper-slide:nth-child(7) {
	background-image: url(bg7.jpg);
}

.swiper-slide:nth-child(8) {
	background-image: url(bg8.jpg);
}

.swiper-slide:nth-child(9) {
	background-image: url(bg9.jpg);
}

.swiper-slide:nth-child(10) {
	background-image: url(bg10.jpg);
}

.swiper-slide:nth-child(11) {
	background-color:#FFF8F8;
}

/* 第二页 */
.P2_icon{
	background: url(bg2_icon.png) no-repeat;
	background-size: 614px 614px;
	background-position: center bottom;
	position: absolute;
	width: 614px;
	height: 614px;
	top: 180px;
	right: -200px;
}

.P2_header_BG{
	position: absolute;
	top: 0px;
	left: 50%;
	margin-left: -960px;
	width: 1920px;
	height: 335px;
	background: url(bg2_head.png) no-repeat;
	background-size: 100% 335px;
	background-position: center bottom;
}

.P2_header_box{
	width: 1200px;
    margin: 0px auto;
    position: relative;
}

.P2_title{
	font-size: 40px;
	font-weight: bold;
	text-align: left;
	margin-top: 10%;
}

.P2_switch {
	margin-top: 8%;
	text-align: left;
}
.P2_switch span {
	cursor: pointer;
	margin-right: 20px;
	padding-bottom: 6px;
	font-size: 24px;
}
.P2_switch span.active {
	color: #FFFFFF;
	font-weight: bold;
	border-bottom: 2px solid #FFFFFF;
}
.P2_box1 {
	margin-top: 30%;
	display: block;
}
.P2_box2 {
	margin-top: 30%;
	display: none;
}

.P2_box1_btn{
	position: relative;
	width: 170px;
	height: 50px;
	border-radius: 8px;
	font-size: 20px;
	line-height: 50px;
	background-color: #C40311;
	cursor: pointer;
	padding-right: 20px;
	margin-top: 20%;
}
.P2_box1_btn a {
	color: #FFFFFF;
}
.P2_box1_btn:before{
	content: "";
	position: absolute;
	top: 12px;
	right: 20px;
	width: 25px;
	height: 25px;
	background: url(jinru.png) no-repeat;
}

.P2_box1_rigth{
	position: relative;
	width: 600px;
	height: 600px;
}
.P2_box1_rigth span{
	width: 650px;
	height: 430px;
	position: absolute;
	right: 0px;
	top: -120px;
	background: url(p2_img0.png) no-repeat;
	background-size: 650px 430px;
}

.P2_box2_rigth{
	position: relative;
	width: 250px;
	height: 600px;
}
.P2_box2_rigth span{
	width: 250px;
	height: 520px;
	position: absolute;
	right: 0px;
	top: -180px;
	background: url(p2_img1.png) no-repeat;
	background-size: 250px 520px;
}

.P2_box1_left p,.P2_box2_left p{
	color: #333333;
	text-align: left;
}
.P2_box1_left p:nth-child(1),.P2_box2_left p:nth-child(1){
	font-size: 40px;
	font-weight: bold;
}
.P2_box1_left p:nth-child(2),.P2_box2_left p:nth-child(2){
	font-size: 20px;
	margin-top: 30px;
}
.eachARcode{
	margin-top: 4%;
	width: 160px;
	height: 160px;
	background-size: 160px 160px;
	margin-right: 20px;
	border-radius: 12px;
	box-shadow: 0 0px 20px rgb(0 0 0 / 6%);
}
.eachARcode:nth-child(1) {
	background-image: url(p2_app.png);
}
.eachARcode:nth-child(2) {
	background-image: url(p2_wx.png);
}
.eachARcode:nth-child(3) {
	background-image: url(p2_zfb.png);
}
.eachARcode:nth-child(4) {
	background-image: url(p2_bd.png);
}
.eachARcode:nth-child(5) {
	background-image: url(p2_kyy.png);
}
.eachARcode:nth-child(1):hover {
	background-image: url(p2_app_code.png);
}
.eachARcode:nth-child(2):hover {
	background-image: url(p2_wx_code.png);
}
.eachARcode:nth-child(3):hover {
	background-image: url(p2_zfb_code.png);
}
.eachARcode:nth-child(4):hover {
	background-image: url(p2_bd_code.png);
}
.eachARcode:nth-child(5):hover {
	background-image: url(p2_kyy_code.png);
}

/* 第三页 */
.P3_title{
	font-size: 34px;
	font-weight: bold;
	text-align: center;
	margin-top: 5%;
	color: #333333;
}
.P3_desc{
	font-size: 20px;
	color: #333333;	
	text-align: center;
	margin-top: 4%;
}

/* 第三页 页签与内容切换 */
.P3_switch {
	display: flex;
	justify-content: space-between;
	width: 320px;
	height: 50px;
	margin: 0px auto;
	margin-top: 4%;
	margin-bottom: 6%;
	padding: 5px;
	text-align: left;
	background-color: #F5E5D3;
	border-radius: 12px;
}
.P3_switch span {
	display: inline-block;
	width: 150px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	color: #666666;
	cursor: pointer;
	padding-bottom: 6px;
	font-size: 20px;
	border-radius: 12px;
}
.P3_switch span.active {
	color: #9A5700;
	font-weight: bold;
	background: #FFFFFF;
}

.P3_box1{
	display: block;
}
.P3_box2{
	display: none;
}

.P3_box1_left span{
	display: inline-block;
	width: 450px;
	height: 410px;
	background: url(p3_img4.png) no-repeat;
	background-size: 450px 410px;
}
.P3_box2_left span{
	display: inline-block;
	width: 450px;
	height: 410px;
	background: url(p3_img5.png) no-repeat;
	background-size: 450px 410px;
}

.P3_box1_middle,.P3_box2_middle{
	display: flex;
	justify-content: space-around;
	position: relative;
	width: 420px;
	height: 410px;
	background: url(lineBox.png) no-repeat;
	background-size: 420px 410px;
	margin: 0px 60px;
	padding: 24px;
}
.P3_box1_middle:before,.P3_box2_middle:before{
	content: "";
	position: absolute;
	left: -60px;
	top: 200px;
	width: 60px;
	height: 6px;
	background: url(line.png) no-repeat;
	background-size: 60px 6px;
}

.P3_box1_middle span,.P3_box2_middle span{
	display: inline-block;
	width: 165px;
	height: 360px;
	box-shadow: 0 0px 20px rgb(0 0 0 / 6%);
}
/* 个人 */
.P3_box1_middle span:nth-child(1){
	background: url(p3_img2.png) no-repeat;
	background-size: 165px 360px;
}
.P3_box1_middle span:nth-child(2){
	background: url(p3_img3.png) no-repeat;
	background-size: 165px 360px;
}
/* 法人 */
.P3_box2_middle span:nth-child(1){
	background: url(p3_img1.png) no-repeat;
	background-size: 165px 360px;
}
.P3_box2_middle span:nth-child(2){
	background: url(p3_img3.png) no-repeat;
	background-size: 165px 360px;
}

.P3_box1_rigth,.P3_box2_rigth{
	width: 180px;
}
.P3_box1_rigth .p3_pointLine,.P3_box2_rigth .p3_pointLine{
	position: relative;
	display: flex;
	flex-direction: column;
}
.P3_box1_rigth .p3_pointLine:before,.P3_box2_rigth .p3_pointLine:before{
	content: "";
	width: 14px;
	height: 88px;
	position: absolute;
	top: 0px;
	left: -20px;
	background: url(point_line.png) no-repeat;
	background-size: 14px 88px;
}
.P3_box1_rigth .p3_pointLine .p3_point,.P3_box2_rigth .p3_pointLine .p3_point{
	display: inline-block;
	width: 100%;
	min-height: 20px;
	line-height: 20px;
	color: #C40311;
	font-size: 14px;
	text-align: left;
}
.P3_box1_rigth .p3_pointLine .p3_line,.P3_box2_rigth .p3_pointLine .p3_line{
	display: inline-block;
	width: 100%;
	min-height: 90px;
	margin-top: 10px;
	color: #333333;
	font-size: 18px;
	text-align: left;
}

.P3_box1_rigth .p3_centerBtn,.P3_box2_rigth .p3_centerBtn{
  background: rgba(255, 184, 184, 0.15);
  padding: 12px;
  width: 200px;
  font-size: 16px;
  line-height: 24px;
  margin-left: -20px;
  border-radius: 8px;
  text-align: left;
}

.P3_box1_rigth .p3_centerBtn p,.P3_box2_rigth .p3_centerBtn p{
  color: #333;
}

.P3_box1_rigth .p3_centerBtn a,.P3_box2_rigth .p3_centerBtn a{
  color: #C40311;
  padding-left: 20px;
  background: url(p3_centerBtn_icon.png) no-repeat left;
}

/* 第四屏（最终优化版） */
.P4_title{
	font-size: 34px;
	font-weight: bold;
	text-align: center;
	margin-top: 5%;
	color: #333333;
}
.P4_desc{
	font-size: 20px;
	color: #333333;	
	text-align: center;
	margin-top: 4%;
}

/* P4 Swiper 容器：居中+固定高度 */
.swiper-slide{
	cursor: pointer;
	user-select: none;
}

.p4_swiper_container {
	width: 100%;
	overflow: hidden;
	position: relative;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 50px;
	height: 700px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* P4 Swiper 父容器：确保slide垂直居中 */
.p4_swiper.swiper-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* P4 单个slide：固定尺寸+图片完整显示 */
.p4_swiper .swiper-slide {
	display: block;
	position: relative;
	box-sizing: border-box;
	z-index: 1;
	transition: transform 0.3s ease, z-index 0.3s ease;
	width: 300px !important;
	height: 500px !important;
	min-width: 300px;
	margin: 0 10px;
	border-radius: 4px;
}

.p4_swiper .swiper-slide .swiper_slide_img {
	transition: transform 0.3s ease, z-index 0.3s ease;
	width: 300px;
	height: 500px;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	/* box-shadow: 0 8px 24px rgba(0, 147, 206, 0.2); */
}

/* 中间激活slide：放大突出+层级最高 */
.p4_swiper_container .swiper-slide-active {
	transform: scale(1.1) !important;
	z-index: 20 !important;
	margin: 0 20px !important;
}

/* 各slide背景图 */
.p4_swiper .swiper-slide{
	background-image: none;
}
.p4_swiper .swiper-slide:nth-child(1) .swiper_slide_img{
	background-image: url(p4_img1.jpg);
}
.p4_swiper .swiper-slide:nth-child(2) .swiper_slide_img{
	background-image: url(P4_img2.jpg);
}
.p4_swiper .swiper-slide:nth-child(3) .swiper_slide_img{
	background-image: url(P4_img3.png);
}
.p4_swiper .swiper-slide:nth-child(4) .swiper_slide_img{
	background-image: url(P4_img4.jpg);
}
.p4_swiper .swiper-slide:nth-child(5) .swiper_slide_img{
	background-image: url(P4_img5.jpg);
}

/* 第五屏 */

.P5_container {
	margin-top: 10%;
	width: 100%;
	padding: 0 40px;
}

.P5_left {
	float: left;
	width: 50%;
	padding-right: 40px;
	box-sizing: border-box;
}

.P5_right {
	float: right;
    width: 370px;
    padding-left: 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.P5_title {
    width: 100%;
    height: 60px;
    line-height: 40px;
    font-size: 34px;
    color: #333333;
    font-weight: bold;
    text-align: left;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #C40311;
}

.P5_desc {
	font-size: 20px;
	color: #333333;
	line-height: 2;
	margin-bottom: 30px;
	text-align: left;
	max-width: 100%;
}

.P5_features {
	margin-bottom: 40px;
	text-align: left;
}

.P5_feature_item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.P5_check {
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url(gou.png);
	background-size: 24px 24px;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 10px;
}

.P5_feature_text {
	font-size: 18px;
	color: #C40311;
	font-weight: 600;
	text-align: left;
	flex: 1;
}

.P5_buttons {
	display: flex;
	margin-bottom: 40px;
	gap: 30px;
}

.P5_btn {
	display: inline-block;
	width: 170px;
	/* height: 50px; */
	font-size: 20px;
	border-radius: 8px;
	padding-right: 45px;
	border: 2px solid #C40311;
	position: relative;
	line-height: 50px;
}

.P5_btn_personal {
	color: #FFFFFF;
	background-color: #C40311;	
}
.P5_btn_personal:hover {
    color: #FFFFFF;
}
.P5_btn_personal::before {
    content: '';
    position: absolute;
    right: 25px;
    top: 20px;
    width: 25px;
    height: 14px;
    color: #FFFFFF;
    background: url(jinru.png) no-repeat;
    background-size: 25px 50px;
    background-position: 0px -7px;
}

.P5_btn_legal {
	color: #C40311;
}
.P5_btn_legal:hover {
    color: #C40311;
}
.P5_btn_legal::before {
	content: '';
    position: absolute;
    right: 25px;
    top: 20px;
    width: 25px;
    height: 14px;
    color: #FFFFFF;
    background: url(jinru.png) no-repeat;
    background-size: 25px 50px;
    background-position: 0px -31px;
}


.P5_img_container {
	position: relative;
	width: 100%;
	max-width: 650px;
	height: 450px;
}

.P5_img_main {
	position: absolute;
	width: 550px;
	height: 520px;
	background-image: url(p5_img1.png);
	background-size: 550px 520px;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 2;
}

.P5_img_inset {
	position: absolute;
	top: 140px;
	left: 154px;
	width: 550px;
	height: 520px;
	background-image: url(p5_img2.png);
	background-size: 550px 520px;;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 3;
	transition: background-image 1s ease-in-out;	
}

.P5_img_label {
	position: absolute;
	left: 480px;
	bottom: 290px;
	width: 260px;
	height: 140px;
	background-image: url(p5_GR&FR.png);
	background-size: 260px 140px;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 4;
}
.P5_img_line{
	position: absolute;
    left: 432px;
    bottom: 366px;
    width: 80px;
    height: 40px;
    background-image: url(p5_line.png);
    background-size: 80px 40px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 4;
}


/* 第六屏 */
.P6_title{
	font-size: 34px;
	font-weight: bold;
	text-align: center;
	margin-top: 5%;
	color: #333333;
}
.P6_desc{
	font-size: 20px;
	color: #333333;	
	text-align: center;
	margin-top: 4%;
}

.P6_switch {
	display: flex;
	justify-content: space-between;
	width: 350px;
	height: 50px;
	margin: 0px auto;
	margin-top: 2%;
	margin-bottom: 2%;
	padding: 5px;
	text-align: left;
	background-color: #FFDEE2;
	border-radius: 12px;
}
.P6_switch span {
	display: inline-block;
	width: 170px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	color: #C40311;
	cursor: pointer;
	padding-bottom: 6px;
	font-size: 16px;
	border-radius: 8px;
}
.P6_switch span.active {
	color: #FFFFFF;
	font-weight: bold;
	background: #C40311;
}

.P6_box1{
	display: block;
}
.P6_box2{
	display: none;
}

.p6-image-container {
	position: relative;
	width: 1200px;
	height: 560px;
	margin: 0px auto;
	overflow: hidden;
}

.p6-image-item {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.5s ease; /* 平滑过渡动画 */
	height: 500px; /* 固定高度 */
	border-radius: 4px;
	box-shadow: 0 0px 20px rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	font-weight: bold;
	border-radius: 8px;
	overflow: hidden;
}

/* 固定颜色和尺寸：从左到右依次增大10% */
.p6-image-item:nth-child(1) {
	z-index: 1; /* 层级最低 */
}
.p6-image-item:nth-child(2) {
	z-index: 2; /* 覆盖左侧 */
}
.p6-image-item:nth-child(3) {
	z-index: 3; /* 覆盖更左侧 */
}
.p6-image-item:nth-child(4) {
	z-index: 4; /* 层级最高 */
}

.P6_box1 .p6_img1{
	width: 450px;
	height: 360px;
	background: url(p6_df_img1.png) no-repeat;
}
.P6_box1 .p6_img2{
	width: 520px;
	height: 420px;
	background: url(p6_df_img2.png) no-repeat;
}
.P6_box1 .p6_img3{
	width: 580px;
	height: 470px;
	background: url(p6_df_img3.png) no-repeat;
}
.P6_box1 .p6_img4{
	width: 650px;
	height: 520px;
	background: url(p6_df_img4.png) no-repeat;
}

.P6_box2 .p6_img1{
	width: 450px;
	height: 360px;
	background: url(p6_bw_img1.png) no-repeat;
}
.P6_box2 .p6_img2{
	width: 520px;
	height: 420px;
	background: url(p6_bw_img2.png) no-repeat;
}
.P6_box2 .p6_img3{
	width: 580px;
	height: 470px;
	background: url(p6_bw_img3.png) no-repeat;
}
.P6_box2 .p6_img4{
	width: 650px;
	height: 520px;
	background: url(p6_bw_img4.png) no-repeat;
}


/* 第七屏 */
.P7_left {
    width: 700px;
}

.P7_right {
    width: 450px;
	margin-top: 30%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.P7_title {
    width: 100%;
    height: 60px;
    line-height: 40px;
    font-size: 34px;
    color: #333333;
    font-weight: bold;
    text-align: left;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #C40311;
}

.P7_desc {
    font-size: 20px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
    max-width: 100%;
}
.redFont{
	color: #C40311;
}

.P7_buttons{
	width: 100%;
	display: flex;
	justify-content: left;
}

.P7_btn {
	display: inline-block;
	width: 170px;
	height: 50px;
	font-size: 20px;
	border-radius: 8px;
	padding-right: 45px;
	border: 2px solid #C40311;
	position: relative;
	line-height: 50px;
}

.P7_btn_personal {
	color: #FFFFFF;
	background-color: #C40311;	
}
.P7_btn_personal:hover {
    color: #FFFFFF;
}
.P7_btn_personal::before {
    content: '';
    position: absolute;
    right: 25px;
    top: 20px;
    width: 25px;
    height: 14px;
    color: #FFFFFF;
    background: url(jinru.png) no-repeat;
    background-size: 25px 50px;
    background-position: 0px -7px;
}
.P7_left{
	width: 700px;
	height: 100%;
}
.P7_img_container{
	position: relative;
	height: 900px;
	display: flex;
	justify-content: flex-start;
	overflow: hidden;
}
.P7_img_container::before{
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
	width: 700px;
	height: 80px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 100%);
}
.P7_img_container::after{
	content: '';
	position: absolute;
	left: 0px;
	bottom: 0px;
	z-index: 1;
	width: 700px;
	height: 80px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 1) 100%);
}
.P7_img_zt1{
	width: 324px;
	height: 1190px;
	background: url(p7_img1.png) no-repeat;
	background-size: 324px 1190px;
	transition: transform 0s ease;
	transform: translateY(40px);
}
.P7_img_zt2{
	width: 324px;
	height: 1190px;
	background: url(p7_img2.png) no-repeat;
	background-size: 324px 1190px;
	transition: transform 0s ease;
	transform: translateY(-320px);
}


/* 第八屏 */
.P8_container{
	display: flex;
	justify-content: flex-start;
	width: 1200px;
	height: 100%;
	margin: 0px auto;
	margin-top: 10%;
}
.P8_box{
	width: 580px;
	height: 100%;
}
.P8_title{
	font-size: 34px;
	color: #333333;
	font-weight: bold;
	text-align: left;
	margin-bottom: 20px;
}
.P8_desc{
	font-size: 22px;
	color: #333333;
	line-height: 1.6;
	margin-bottom: 30px;
	text-align: left;
	max-width: 100%;
}

.P8_icons{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	margin-top: 30%;
}
.P8_icons1{
	display: none;
	width: 550px;
	height: 90px;
	background: url(p8_img1.png) no-repeat;
	background-size: 550px 90px;
	transition: opacity 0.5s ease;
	opacity: 0;
}
.P8_icons2{
	display: none;
	width: 640px;
	height: 90px;
	background: url(p8_img2.png) no-repeat;
	background-size: 640px 90px;
	transition: opacity 0.5s ease;
	opacity: 0;
	margin-top: 20px;
}

/* 第9屏 */
.P9_container{
	display: flex;
	justify-content: space-between;
	width: 1200px;
	height: 100%;
	margin: 0px auto;
	margin-top: 10%;
}

.P9_left{
	width: 420px;
}
.P9_title{
	font-size: 34px;
	color: #333333;
	font-weight: bold;
	text-align: left;
}
.P9_desc{
	font-size: 22px;
	color: #333333;
	line-height: 1.6;
	margin-top: 10%;
	text-align: left;
	max-width: 100%;
}
.P9_buttons{
	margin-top: 10%;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.P9_btn{
	position: relative;
	display: inline-block;
	width: 200px;
	color: #FFFFFF;
	background-color: #C40311;
	height: 50px;
	font-size: 20px;
	border-radius: 8px;
	padding-left: 30px;
	position: relative;
	line-height: 50px;
}
.P9_btn:hover{
	color: #FFFFFF;
}

.P9_btn_personal::before{
	content: '';
	position: absolute;
	left: 20px;
	top: 9px;
	width: 32px;
	height: 32px;
	color: #FFFFFF;
	background: url(P9_gr.png) no-repeat;
	background-size: 32px 32px;
}
.P9_btn_legal::before{
	content: '';
	position: absolute;
	left: 20px;
	top: 9px;
	width: 32px;
	height: 32px;
	color: #FFFFFF;
	background: url(P9_fr.png) no-repeat;
	background-size: 32px 32px;
}

.P9_BG_ICON{
	position: absolute;
	left: 0px;
	top: 420px;
	width: 420px;
	height: 420px;
	background: url(p9_img3.png) no-repeat;
	background-size: 420px 420px;
}



.P9_right {
	width: 550px;
	height: 670px;
}

.P9_img_container{
	position: relative;
	height: 100%;
}
.P9_img1,.P9_img2{
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.P9_img1{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 640px;
	height: 670px;
	border-radius: 8px;
	background: url(p9_img2.png) no-repeat;
	background-size: 640px 670px;
}
.P9_img2{
	display: none;
	position: absolute;
	left: 120px;
    bottom: 100px;
	width: 510px;
	height: 560px;
	border-radius: 8px;
	background: url(p9_img1.png) no-repeat;
	background-size: 510px 560px;
}

/* 第10屏 */

.P10_container{
	margin-top: 5%;
}
.P10_title{
	font-size: 34px;
    font-weight: bold;
    text-align: center;
    margin-top: 5%;
    color: #333333;
}
.P10_left{
	width: 780px;
	height: 600px;
}
.P10_img_container{
	width: 730px;
	height: 600px;
	margin: 0px auto;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.P10_img_tsjy{
	width: 730px;
	height: 600px;
	background: url(P10_img_tsjy.png) no-repeat;
	background-size: 730px 600px;
}
.P10_img_hcp{
	display: none;
	width: 730px;
	height: 600px;
	background: url(P10_img_hcp.png) no-repeat;
	background-size: 730px 600px;
}


.P10_right{
	width: 330px;
}

.P10_switchs{
	width: 330px;
	height: 60px;
	display: flex;
	justify-content: flex-start;
}
.P10_switchs span{
	height: 60px;
	line-height: 60px;
	font-size: 24px;
	color: #999999;
	cursor: pointer;
}
.P10_switchs span:nth-child(1){
	margin-right: 30px;
}
.P10_switchs .active{
	font-weight: bold;
	color: #C40311;
	border-bottom: 2px solid #C40311;
}

.P10_tsjy_box,.P10_hcp_box{
	width: 330px;

}

.P10_desc{
	font-size: 22px;
	color: #333333;
	text-align: left;
	margin-top: 30px;
}

.P10_buttons {
	display: flex;
	margin-top: 30px;
}

.P10_btn {
	display: inline-block;
	width: 170px;
	height: 50px;
	font-size: 20px;
	border-radius: 8px;
	padding-right: 45px;
	border: 2px solid #C40311;
	position: relative;
	line-height: 50px;
}

.P10_btn_personal {
	color: #FFFFFF;
	background-color: #C40311;	
}
.P10_btn_personal:hover {
    color: #FFFFFF;
}
.P10_btn_personal::before {
    content: '';
    position: absolute;
    right: 25px;
    top: 20px;
    width: 25px;
    height: 14px;
    color: #FFFFFF;
    background: url(jinru.png) no-repeat;
    background-size: 25px 50px;
    background-position: 0px -7px;
}

/* 第11屏 标题 */
.P11_title{
	position: absolute;
	top: 15%;
	left: 50%;
	margin-left: -960px;
	width: 1920px;
	height: 450px;
	background: url(p11BG.png) no-repeat;
	background-size: 100% 438px; 
	background-position: center bottom;
}
.P11_title_container{
	width: 1200px;
	margin: 0px auto;
	position: relative;
}

.P11_title_right{
	position: absolute;
	right: 0px;
	top: -120px;
	width: 470px;
	height: 570px;
	background: url(p11_phone_wx.png) no-repeat;
	background-size: 470px 570px;
}

.P11_title_text{
	width: 340px;
	font-size: 34px;
	color: #FFFFFF;
	font-weight: bold;
	text-align: left;
	margin-top: 20%;
}
.P11_title_desc{
	width: 340px;
	font-size: 22px;
	color: #FFFFFF;
	margin-top: 4%;
	text-align: left;
}
.P11_title_code{
	width: 340px;
	height: 180px;
	margin-top: 20%;
	background: url(p11_code_wx.png) no-repeat;
	background-size: 340px 180px;
}

.P11_eachChannl_container{
	width: 1200px;
	height: 180px;
	display: flex;
	justify-content: space-between;
	margin-top: 10%;
}
.P11_eachChannl{
	width: 170px;
	height: 170px;
	padding-top: 120px;
	border-radius: 40px;
	color: #333333;
	font-size: 18px;
  font-weight: 600;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.P11_eachChannl:nth-child(1){
	background: url(p11_icon_wx.png) no-repeat #FFFFFF;
	background-size: 70px 70px;
	background-position: 50px 25px;
}
.P11_eachChannl:nth-child(2){
	background: url(p11_icon_zfb.png) no-repeat #FFFFFF;
	background-size: 70px 70px;
	background-position: 50px 25px;
}
.P11_eachChannl:nth-child(3){
	background: url(p11_icon_bd.png) no-repeat #FFFFFF;
	background-size: 70px 70px;
	background-position: 50px 25px;
}
.P11_eachChannl:nth-child(4){
	background: url(p11_icon_tt.png) no-repeat #FFFFFF;
	background-size: 70px 70px;
	background-position: 50px 25px;
}
.P11_eachChannl:nth-child(5){
	background: url(p11_icon_dy.png) no-repeat #FFFFFF;
	background-size: 70px 70px;
	background-position: 50px 25px;
}
.P11_eachChannl:nth-child(6){
	background: url(p11_icon_ks.png) no-repeat #FFFFFF;
	background-size: 70px 70px;
	background-position: 50px 25px;
}

.P11_eachChannl_container .active{	
	border: 1px solid #C40311;
	box-shadow: 0px 0px 20px rgba(202, 3, 17, 0.5);
}

.P11_bottom_text{
  width: 1200px;
  height: 24px;
  position: absolute;
  bottom: -50px;
  font-size: 18px;
  line-height: 24px;
  color: #999;
}

.emailTxt{
	width: 1200px;
	margin-top: 20px;
}

.emailTxt p{
	color: #ccc;
	font-size: 18px;
	line-height: 42px;
}

/* ============================================
   移动端适配样式（DM_前缀的类）
   ============================================ */

/* 移动端viewport设置（需要在HTML中添加meta标签） */
@media screen and (max-width: 768px) {
	/* 移动端基础样式重置 */
	html {
		font-size: 50px; /* 移动端基础字体大小，用于rem单位计算 */
	}
	
	/* 移动端Swiper容器 - 垂直滚动 */
	.DM_vertical-swiper {
		width: 100%;
		height: 100vh;
		overflow: hidden;
		position: relative;
	}
	
	/* 移动端滑动区域 - 每屏高度等于视口高度 */
	.DM_vertical-swiper>.swiper-slide {
		width: 100%;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: 50% 50%;
		overflow: hidden;
		flex-shrink: 0;
		padding-top: 0.88rem;
	}
	
	/* 移动端滑动区域内容 */
	.DM_slide-content {
		position: relative;
		width: 100%;
		max-width: 100%;
		height: 100vh;
		margin: 0;
		font-size: 0.32rem; /* 16px at 50px base */
		color: #fff;
		padding: 0.6rem; /* 20px 15px */
		text-align: center;
		overflow-y: auto;
		box-sizing: border-box;
	}
	
	/* 移动端顶部横向导航 - 吸顶效果 */
	.DM_top-nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		background: #FFFFFF;
		z-index: 999;
		height: 0.88rem; /* 44px */
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		box-sizing: border-box;
	}
	
	.DM_top-nav::-webkit-scrollbar {
		display: none;
	}
	
	.DM_nav-list {
		display: flex;
		flex-direction: row;
		width: 19rem;
		height: 100%;
		padding: 0;
		margin: 0;
		white-space: nowrap;
		align-items: center;
	}
	
	.DM_nav-item {
		display: inline-block;
		min-width: 1.4rem; /* 70px */
		margin: 0 0.15rem; /* 0 7.5px */
		height: 0.88rem; /* 44px */
		line-height: 0.88rem;
		font-size: 0.28rem; /* 14px */
		text-align: center;
		cursor: pointer;
		flex-shrink: 0;
		white-space: nowrap;
	}
	
	.DM_nav-item .DM_icon {
		display: none; /* 移动端隐藏图标，只显示文字 */
	}
	
	.DM_nav-item.active {
		font-weight: bold;
		color: #C40311;
		border-bottom: 1px solid #C40311;
	}
	
	/* 移动端各屏背景图 - 复用PC端的背景，后续可根据需要替换 */
	.DM_vertical-swiper .swiper-slide:nth-child(1) {
		background-image: url(DM_P1_BG.jpg);
	}
	.DM_vertical-swiper .swiper-slide:nth-child(2) {
		background: #FDFAF7;
	}
	.DM_vertical-swiper .swiper-slide:nth-child(3) {
		background: #FDFAF7;
		position: relative;
	}
	.DM_vertical-swiper .DM_P3_slide::after{
		content: '';
		position: absolute;
		left: 0px;
		bottom: 0px;
		z-index: 1;
		width: 100%;
		height: 80px;
		background: url(P3_DM_BG.png) no-repeat;
		background-size: 100% 80px;
	}
	.DM_vertical-swiper .swiper-slide:nth-child(4) {
		background: url(P4_DM_BG.png) no-repeat #EEF5FF;
		background-size: 100% 40%;
		background-position: bottom center;
	}
	.DM_vertical-swiper .swiper-slide:nth-child(5) {
		background: #FDFAF7;
	}
	.DM_vertical-swiper .swiper-slide:nth-child(6) {
		background: #FDFAF7;
	}
	.DM_vertical-swiper .swiper-slide:nth-child(7) {
		background: url(P7_DM_BG.png) no-repeat #EEF5FF;
		background-size: 100% 60%;
		background-position: bottom center;
	}
	.DM_vertical-swiper .swiper-slide:nth-child(8) {
		background: #FAF9FF
	}
	.DM_vertical-swiper .swiper-slide:nth-child(9) {
		background: url(P4_DM_BG.png) no-repeat #EEF5FF;
		background-size: 100% 40%;
		background-position: bottom center;
	}
	.DM_vertical-swiper .swiper-slide:nth-child(10) {
		background: #FDFAF7;
	}
	.DM_vertical-swiper .swiper-slide:nth-child(11) {
		background-image: url(P11_DM_BG.jpg);
	}
	
	/* 
	 * 注意：以下为移动端各屏的基础样式模板
	 * 1. 字体大小（使用rem单位，基于50px基准）
	 * 2. 间距（使用rem单位）
	 * 3. 图片路径（替换为移动端专用图片）
	 * 4. 布局方式（可能需要改为垂直布局）
	 */
	
	/* 移动端第一屏 样式 */
	.DM_swipeAlert{
		/* position: absolute;
		bottom: .6rem; 
		left: 0;
		right: 0; */
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin-top: 10rem;
	}
	.DM_swipeAlert span:nth-child(1){
		display: inline-block;
		background: url(DM_P1_Btn.png) no-repeat;
		background-size: 0.64rem 0.64rem;
		width: 0.64rem;
		height: 0.64rem;
	}
	.DM_swipeAlert span:nth-child(2){
		margin-top: 0.1rem;
		font-size: 0.28rem; 
		color: #fff;
	}
	

	/* 移动端第二屏样式示例 */
	.DM_P2_title {
		font-size: 0.54rem;
		font-weight: bold;
		text-align: left;
		margin-top: 0.8rem;
		color: #333;
	}
	
	.DM_P2_switch {
		display: flex;
		justify-content: center;
		margin-top: 0.3rem;
		background: #FDDEE1;
		border-radius: 1rem;
	}
	
	.DM_P2_switch span {
		width: 50%;
		padding: 0.2rem 0.4rem;
		font-size: 0.32rem;
		cursor: pointer;
		color: #C40311;
	}
	
	.DM_P2_switch span.active {
		background: #C40311;
		color: #FFFFFF;
		border-radius: 1rem;
	}
	
	.DM_P2_box1,.DM_P2_box2 {
		width: 100%;
		margin-top: 0.3rem;
	}
	
	.DM_P2_box1_left {
		width: 100%;
		height: 60vh;
		text-align: center;
		position: relative;
	}
	
	.DM_P2_box1_left p {
		color: #333;
		text-align: center;
		margin-bottom: 0.3rem;
	}
	
	.DM_P2_box1_left p:nth-child(1) {
		font-size: 0.36rem;
		font-weight: bold;
	}
	
	.DM_P2_box1_left p:nth-child(2) {
		font-size: 0.26rem; 
		line-height: 1.6;
		color: #666;
		margin-bottom: 0;
	}
	
	.DM_P2_box1_left p:nth-child(3) {
		font-size: 0.28rem;
		line-height: 1.6;
	}
	
	.DM_P2_box1_right {
		width: 100%;
		text-align: center;
		margin-top: 0.6rem;
	}
	
	.DM_P2_box1_right span {
		display: inline-block;
		width: 5.2rem; /* 260px */
		height: 3.44rem; /* 172px */
		background: url(placeholder_p2_img0.png) no-repeat;
		background-size: 100% 100%;
	}
	
	.DM_P2_box2_left {
		width: 100%;
		text-align: center;
		margin-bottom: 0.6rem;
	}
	
	.DM_P2_box2_left p {
		color: #333;
		text-align: center;
		margin-bottom: 0.3rem;
	}
	
	.DM_P2_box2_left p:nth-child(1) {
		font-size: 0.36rem;
		font-weight: bold;
	}
	
	.DM_P2_box2_left p:nth-child(2) {
		font-size: 0.26rem;
		color: #666;
	}
	
	.DM_P2_box2_right {
		width: 100%;
		text-align: center;
		margin-top: 0.6rem;
	}
	
	.DM_P2_box2_right span {
		display: inline-block;
		width: 2rem; /* 100px */
		height: 4.16rem; /* 208px */
		background: url(placeholder_p2_img1.png) no-repeat;
		background-size: 100% 100%;
	}

	.DM_P2_box1_img {
		width: 100%;
		max-width: 9rem; 
		height: auto;
		min-height: 4.5rem;
		aspect-ratio: 3 / 2;
		background: url(P2_PC_img1.png) no-repeat;
		background-size: 100% 100%;
		background-position: center;
		margin: 0rem auto;
	}
	.DM_P2_box1_btn {
		display: inline-block;
        width: 100%;
        height: 1rem;
        border-radius: 0.16rem;
        font-size: 0.4rem;
        line-height: 1rem;
        background-color: #C40311;
        cursor: pointer;
        position: absolute;
        bottom: 0rem;
        left: 0rem;
        text-align: center;
	}
	.DM_P2_box1_btn a{
		display: flex;
        width: 100%;
        height: 100%;
        color: #FFFFFF;
        flex-direction: row;
        justify-content: center;
        align-items: center;
	}
	.DM_P2_arrow {
		display: inline-block;
		width: 0.5rem; /* 25px */
		height: 0.5rem; /* 25px */
		margin-left: 0.2rem;
		background: url(P2_PC_arror.png) no-repeat;
		background-size: 100% 100%;
	}
	.DM_P2_box2_imgs{
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-end;
	}
	.DM_P2_box2_img1{
		width: 3.5rem;
		min-height: 4.5rem;
		background: url(P2_DM_img1.png) no-repeat;
		background-position: center;
		background-size: 100% 100%;
	}
	.DM_P2_box2_img2 {
		width: 3rem;
		height: 3rem;
		background: url(P2_DM_ARcode1.png) no-repeat;
		background-position: center;
		background-size: 100% 100%;
	}
	.DM_P2_box2_list{
		margin-top: 0.3rem;
	}

	.DM_P2_box2_list ul{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
	.DM_P2_eachARcode{
		width: 18%;
	}
	.DM_P2_eachARcode .DM_P2_eachARcode_img{
		width: 100%;
        height: auto;
        background-size: 100% 100%;
		aspect-ratio: 1 / 1;
        cursor: pointer;
	}
	.DM_P2_eachARcode:nth-child(1) .DM_P2_eachARcode_img{
		background-image: url(P2_DM_ICON1.png);
	}
	.DM_P2_eachARcode:nth-child(2) .DM_P2_eachARcode_img{
		background-image: url(P2_DM_ICON2.png);
	}
	.DM_P2_eachARcode:nth-child(3) .DM_P2_eachARcode_img{
		background-image: url(P2_DM_ICON3.png);
	}
	.DM_P2_eachARcode:nth-child(4) .DM_P2_eachARcode_img{
		background-image: url(P2_DM_ICON4.png);
	}
	.DM_P2_eachARcode:nth-child(5) .DM_P2_eachARcode_img{
		background-image: url(P2_DM_ICON5.png);
	}
	.DM_P2_eachARcode:nth-child(1).active .DM_P2_eachARcode_img{
		background-image: url(P2_DM_ICON_active1.png);
	}
	.DM_P2_eachARcode:nth-child(2).active .DM_P2_eachARcode_img{
		background-image: url(P2_DM_ICON_active2.png);
	}
	.DM_P2_eachARcode:nth-child(3).active .DM_P2_eachARcode_img{
		background-image: url(P2_DM_ICON_active3.png);
	}
	.DM_P2_eachARcode:nth-child(4).active .DM_P2_eachARcode_img{
		background-image: url(P2_DM_ICON_active4.png);
	}
	.DM_P2_eachARcode:nth-child(5).active .DM_P2_eachARcode_img{
		background-image: url(P2_DM_ICON_active5.png);
	}
	.DM_P2_eachARcode .DM_P2_eachARcode_text{
		font-size: 0.28rem;
		color: #333;
	}
	/* 移动端红色文字 */
	.DM_redFont {
		color: #C40311;
	}
	
	.DM_P3_title{
		font-size: 0.54rem; /* 32px */
		font-weight: bold;
		text-align: left;
		margin-top: 0.8rem;
		color: #333;
	}
	.DM_P3_desc{
		font-size: 0.28rem;
        color: #666;
		text-align: left;
		margin-top: 0.3rem;
	}
	.DM_P3_switch{
		display: flex;
		justify-content: center;
		margin-top: 0.3rem;
		background: #FDDEE1;
		border-radius: 1rem;
	}
	.DM_P3_switch span {
		width: 50%;
		padding: 0.2rem 0.4rem;
		font-size: 0.32rem; /* 16px */
		cursor: pointer;
		color: #C40311;
	}
	.DM_P3_switch span.active {
		background: #C40311;
		color: #FFFFFF;
		border-radius: 1rem;
	}
	.DM_P3_box1,.DM_P3_box2{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		margin: 0.4rem auto;
	}
	.DM_P3_box1_left,.DM_P3_box1_rigth,.DM_P3_box2_left,.DM_P3_box2_rigth{
		width: 50%;
	}
	.DM_P3_box1_img1{
		width: 90%;
		max-width: 6rem; 
		height: auto;
		min-height: 5rem;
		aspect-ratio: 1 / 2;
		background: url(P3_DM_img1.png) no-repeat;
		background-size: 100% 100%;
		background-position: center;
		box-shadow: 7.12px 7.12px 35.61px 0px rgba(68, 0, 0, 0.1);
	}

	.DM_P3_box1_img3{
		width: 90%;
		max-width: 6rem; 
		height: auto;
		min-height: 5rem;
		aspect-ratio: 1 / 2;
		background: url(P3_DM_img3.png) no-repeat;
		background-size: 100% 100%;
		background-position: center;
		box-shadow: 7.12px 7.12px 35.61px 0px rgba(68, 0, 0, 0.1);
	}
	.DM_P3_box1_link{
		width: 90%;
		max-width: 6rem; 
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		background: rgba(255, 184, 184, 0.15);
		padding: 0.1rem;
        margin-top: 0.3rem;
	}
	.DM_P3_box1_link span:nth-child(1){
		display: inline-block;
		font-size: 0.28rem; 
		color: #666;
	}
	.DM_P3_box1_link span:nth-child(2){
		margin-top: 0.1rem;
		display: inline-block;
		font-size: 0.27rem;
		color: #C40311;
		padding-left: 0.3rem;
		position: relative;
	}
	.DM_P3_box1_link span:nth-child(2):before{
		content: '';
		display: inline-block;
		position: absolute;
		left: 0rem;
		top: 0.05rem;
		width: 0.28rem;
		height: 0.28rem;
		background: url(P3_DM_hand.png) no-repeat;
		background-size: 100% 100%;
	}

	.DM_p3_pointLine{
		display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
		margin-bottom: 0.3rem;
	}
	.DM_p3_point{
		display: inline-block;
		font-size: 0.28rem;
		font-weight: bold;
		color: #C40311;
	}
	.DM_p3_line{
		margin-top: 0.1rem;
		display: inline-block;
		font-size: 0.28rem;
		color: #666;
		text-align: left;
	}

	.DM_P3_box2_img1{
		width: 90%;
		max-width: 6rem; 
		height: auto;
		min-height: 5rem;
		aspect-ratio: 1 / 2;
		background: url(P3_DM_img2.png) no-repeat;
		background-size: 100% 100%;
		background-position: center;
		box-shadow: 7.12px 7.12px 35.61px 0px rgba(68, 0, 0, 0.1);
	}


	/* 移动端第四屏：电子证照Swiper容器 - 高度为屏幕的50% */
	.DM_P4_title{
		font-size: 0.54rem;
		font-weight: bold;
		text-align: left;
		margin-top: 0.8rem;
		color: #333;
	}
	.DM_P4_desc{
		font-size: 0.28rem;
        color: #666;
		text-align: left;
		margin-top: 0.3rem;
	}

	.DM_p4_swiper_container {
		width: 100%;
		overflow: hidden;
		position: relative;
		margin: 0 auto;
		height: 40vh; 
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 0.4rem;
	}
	
	/* 移动端第四屏：Swiper slide - 高度适配容器，清除背景图继承 */
	.DM_p4_swiper_container .swiper-slide {
		height: 100% !important;
		display: flex;
		align-items: center;
		justify-content: center;
		background-image: none !important;
	}
	
	/* 移动端第四屏：Swiper slide 图片 - 高度适配 */
	.DM_p4_swiper_container .DM_swiper_slide_img {
		width: 100%;
		height: 100%;
		background-position: center center !important;
		background-repeat: no-repeat !important;
		background-size: contain !important;
	}
	
	/* 移动端第四屏：各slide背景图设置（参照PC版本） */
	.DM_p4_swiper_container .swiper-slide:nth-child(1),
	.DM_p4_swiper_container .swiper-slide:nth-child(2),
	.DM_p4_swiper_container .swiper-slide:nth-child(3),
	.DM_p4_swiper_container .swiper-slide:nth-child(4),
	.DM_p4_swiper_container .swiper-slide:nth-child(5){
		background-color: rgba(0,0,0,0) !important;
	}
	.DM_p4_swiper_container .swiper-slide:nth-child(1) .DM_swiper_slide_img {
		background-image: url(p4_img1.jpg);
	}
	.DM_p4_swiper_container .swiper-slide:nth-child(2) .DM_swiper_slide_img {
		background-image: url(P4_img2.jpg);
	}
	.DM_p4_swiper_container .swiper-slide:nth-child(3) .DM_swiper_slide_img {
		background-image: url(P4_img3.png);
	}
	.DM_p4_swiper_container .swiper-slide:nth-child(4) .DM_swiper_slide_img {
		background-image: url(P4_img4.jpg);
	}
	.DM_p4_swiper_container .swiper-slide:nth-child(5) .DM_swiper_slide_img {
		background-image: url(P4_img5.jpg);
	}
	
	.DM_P5_title{
		font-size: 0.54rem;
		font-weight: bold;
		text-align: left;
		margin-top: 0.8rem;
		color: #333;
	}
	.DM_P5_desc{
		font-size: 0.28rem;
        color: #666;
		text-align: left;
		margin-top: 0.3rem;
	}
	.DM_P5_check{
		background: url(gou.png) no-repeat;
		background-size: 0.4rem 0.4rem;
		width: 0.4rem;
		height: 0.4rem;
		display: inline-block;
		margin-right: 0.2rem;
	}
	.DM_P5_feature_item{
        font-size: 0.28rem;
        color: #C40311;
        text-align: left;
        margin-top: 0.3rem;
        display: flex;
        align-content: center;
        justify-content: flex-start;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
	}
	.DM_P5_img{
		width: 100%;
		max-width: 8rem; 
		height: auto;
		min-height: 6rem;
		aspect-ratio: 1 / 1;
		background: url(P5_DM_img.jpg) no-repeat;
		background-size: 100% 100%;
		background-position: center;
		margin: 0.2rem auto;
	}


	.DM_P6_title{
		font-size: 0.54rem;
		font-weight: bold;
		text-align: left;
		margin-top: 0.8rem;
		color: #333;
	}
	.DM_P6_desc{
        width: 100%;
        font-size: 0.28rem;
        color: #666;
        text-align: left;
        margin-top: 0.3rem;
	}
	.DM_P6_switch{
		display: flex;
		justify-content: center;
		margin-top: 0.3rem;
		background: #FDDEE1;
		border-radius: 1rem;
	}
	.DM_P6_switch span {
		width: 50%;
		padding: 0.2rem;
		font-size: 0.32rem;
		cursor: pointer;
		color: #C40311;
	}
	.DM_P6_switch span.active {
		background: #C40311;
		color: #FFFFFF;
		border-radius: 1rem;
	}
	.DM_P6_box1{
		max-width: 8rem;
		min-height: 10rem;
		margin: 0.4rem auto;
		position: relative;
	}
	.DM_p6-image-left{
		position: absolute;
		left: 0%;
		top: 0%;
		min-height: 7.5rem;
		z-index: 2;
		display: flex;
		align-items: center;
		justify-content: center;
		aspect-ratio: 1 / 2;
		box-shadow: 7.12px 7.12px 35.61px 0px rgba(68, 0, 0, 0.1);
		transition: left 0.5s ease, right 0.5s ease, top 0.5s ease, min-height 0.5s ease;
	}
	.DM_p6-image-right{
		position: absolute;
		right: 0%;
		top: 1rem;
		min-height: 5.5rem;
		z-index: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		aspect-ratio: 1 / 2;
		box-shadow: 7.12px 7.12px 35.61px 0px rgba(68, 0, 0, 0.1);
		transition: left 0.5s ease, right 0.5s ease, top 0.5s ease, min-height 0.5s ease;
	}
	.DM_p6_img1{
		width: 100%;
		height: 100%;
		background: url(P6_DM_img1.png) no-repeat;
		background-size: 100% 100%;
		background-position: center;
		aspect-ratio: 1 / 2;
	}
	.DM_p6_img2{
		width: 100%;
		height: 100%;
		background: url(P6_DM_img2.png) no-repeat;
		background-size: 100% 100%;
		background-position: center;
		aspect-ratio: 1 / 2;
	}



	.DM_P7_title{
		font-size: 0.54rem;
		font-weight: bold;
		text-align: left;
		margin-top: 0.8rem;
		color: #333;
	}
	.DM_P7_desc{
        width: 100%;
        font-size: 0.28rem;
        color: #666;
        text-align: left;
        margin-top: 0.3rem;
	}
	.DM_P7_imgBox{
		width: 100%;
		height: 9.9rem;
		overflow: hidden;
		margin: 0.4rem auto;
	}
	.DM_P7_img{
		width: 100%;
        min-width: 6rem;
        max-width: 8rem;
        height: 12rem;
        aspect-ratio: 0.51 / 1;
        background: url(P7_DM_img.png) no-repeat;
        background-size: 100% 100%;
        background-position: center;
		margin: 0 auto;
	}


	.DM_P8_title{
		font-size: 0.54rem;
		font-weight: bold;
		text-align: left;
		margin-top: 0.8rem;
		color: #333;
	}
	.DM_P8_desc{
        width: 100%;
        font-size: 0.28rem;
        color: #666;
        text-align: left;
        margin-top: 0.3rem;
	}
	.DM_P8_icons_box{
		max-width: 8rem;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
		margin: 0.4rem auto;
	}
	.DM_P8_icons1{
		width: 100%;
		max-width: 8rem; 
		height: auto;
		max-height: 1.3rem;
		aspect-ratio: 34 / 5;
		background: url(p8_img2.png) no-repeat;
		background-size: 100% 100%;
		background-position: center;
	}
	.DM_P8_icons2{
		width: 100%;
		max-width: 8rem; 
		height: auto;
		max-height: 1.3rem;
		aspect-ratio: 34 / 5;
		background: url(p8_img1.png) no-repeat;
		background-size: 100% 100%;
		background-position: center;
	}

	.DM_P8_imgs_box{
		width: 100%;
	}
	.DM_P8_img1{
		width: 100%;
		max-width: 10rem; 
		height: auto;
		max-height: 10rem;
		aspect-ratio: 1 / 1;
		background: url(P8_DM_img1.png) no-repeat;
		background-size: 100% 100%;
		background-position: center;
		margin: 0 auto;
		position: relative;
	}
	.DM_P8_img1::after{
		content: '';
		position: absolute;
		left: 35%;
        top: 56%;
		width: 12.5%;
		height: 12.5%;
		background: url(P8_DM_hand.gif) no-repeat;
		background-size: 100% 100%;
		background-position: center;
		opacity: 0;
	}
	.DM_P8_img1.show-hand::after{
		opacity: 1;
	}
	.DM_P8_img2{
		width: 100%;
		max-width: 10rem; 
		height: auto;
		max-height: 10rem;
		aspect-ratio: 1 / 1;
		background: url(P8_DM_img2.png) no-repeat;
		background-size: 100% 100%;
		background-position: center;
		margin: 0 auto;
	}



	.DM_P9_title{
		font-size: 0.54rem;
		font-weight: bold;
		text-align: left;
		margin-top: 0.8rem;
		color: #333;
	}
	.DM_P9_desc{
        width: 100%;
        font-size: 0.28rem;
        color: #666;
        text-align: left;
        margin-top: 0.3rem;
	}
	.DM_P9_box{
		max-width: 9rem;
        min-width: 6rem;
		min-height: 7.5rem;
		margin: 0.2rem auto;
		position: relative;
	}
	.DM_p9-image-left{
		position: absolute;
		left: 0.6rem;
		bottom: 0;
		min-height: 7rem;
		z-index: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		aspect-ratio: 1 / 2;
		box-shadow: -9.05px 9.05px 22.62px 0px rgba(68, 0, 0, 0.1);

	}
	.DM_p9-image-right{
		position: absolute;
		right: 0;
		bottom: 0;
		min-height: 7.5rem;
		z-index: 2;
		display: flex;
		align-items: center;
		justify-content: center;
		aspect-ratio: 1 / 2;
		box-shadow: -9.05px 9.05px 22.62px 0px rgba(68, 0, 0, 0.1);
	}
	.DM_p9_img1{
		width: 100%;
		height: 100%;
		background: url(P9_DM_img1.png) no-repeat;
		background-size: 100% 100%;
		background-position: center;
		aspect-ratio: 1 / 2;
	}
	.DM_p9_img2{
		width: 100%;
		height: 100%;
		background: url(P9_DM_img2.png) no-repeat;
		background-size: 100% 100%;
		background-position: center;
		aspect-ratio: 1 / 2;
	}


	.DM_P10_title{
		font-size: 0.54rem;
		font-weight: bold;
		text-align: left;
		margin-top: 0.8rem;
		color: #333;
	}
	.DM_P10_desc{
        width: 100%;
        font-size: 0.28rem;
        color: #666;
        text-align: left;
        margin-top: 0.3rem;
	}
	.DM_P10_switchs{
		display: flex;
		justify-content: center;
		margin-top: 0.3rem;
		background: #FDDEE1;
		border-radius: 1rem;
	}
	.DM_P10_switchs span {
		width: 50%;
		padding: 0.2rem 0.4rem;
		font-size: 0.32rem;
		cursor: pointer;
		color: #C40311;
	}
	.DM_P10_switchs span.active {
		background: #C40311;
		color: #FFFFFF;
		border-radius: 1rem;
	}

	.DM_P10_img1{
		width: 100%;
		max-width: 8rem; 
		height: auto;
		min-height: 6rem;
		aspect-ratio: 1 / 1.2;
		background: url(P10_DM_img1.png) no-repeat;
		background-size: 100% 100%;
		background-position: center;
		margin: 0.4rem auto;
	}
	.DM_P10_img2{
		width: 100%;
		max-width: 4rem; 
		height: auto;
		min-height: 4rem;
		aspect-ratio: 1 / 1.8;
		background: url(P10_DM_img2.png) no-repeat;
		background-size: 100% 100%;
		background-position: center;
		margin: 0.4rem auto;
	}



	.DM_P11_title{
		font-size: 0.54rem;
		font-weight: bold;
		text-align: left;
		padding-top: 0.8rem;
		color: #FFF;
	}
	.DM_P11_title_desc{
    width: 100%;
    font-size: 0.28rem;
    color: #FFF;
    text-align: left;
    margin-top: 0.3rem;
	}
	.DM_P11_eachChannl_box{
		width: 100%;
		height: 2.1rem;
		margin-top: 0.3rem;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch; /* 移动端优化滚动 */
		scrollbar-width: none; /* Firefox */
		-ms-overflow-style: none; /* IE 10+ */
	}
	/* 移动端隐藏滚动条 */
	.DM_P11_eachChannl_box::-webkit-scrollbar {
		display: none;
	}
	.DM_P11_eachChannl_container{
		width: 13.5rem;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.DM_P11_eachChannl{
		width: 1.8rem;
		height: 1.8rem;
		margin-right: 0.3rem;
		position: relative;
	}
	.DM_P11_eachChannl_container .active:after{
		content: '';
		position: absolute;
		left: 0.8rem;
        bottom: -0.1rem;
		width: 0.2rem;
		height: 0.2rem;
		background: url(P11_DM_arror.png) no-repeat;
		background-size: 100% 100%;
	}
	.DM_P11_eachChannl:nth-child(1){
		background: url(P11_DM_ICON1.png) no-repeat;
		background-size: 100% 100%;
	}
	.DM_P11_eachChannl:nth-child(2){
		background: url(P11_DM_ICON2.png) no-repeat;
		background-size: 100% 100%;
	}
	.DM_P11_eachChannl:nth-child(3){
		background: url(P11_DM_ICON3.png) no-repeat;
		background-size: 100% 100%;
	}
	.DM_P11_eachChannl:nth-child(4){
		background: url(P11_DM_ICON4.png) no-repeat;
		background-size: 100% 100%;
	}
	.DM_P11_eachChannl:nth-child(5){
		background: url(P11_DM_ICON5.png) no-repeat;
		background-size: 100% 100%;
	}
	.DM_P11_eachChannl:nth-child(6){
		background: url(P11_DM_ICON6.png) no-repeat;
		background-size: 100% 100%;
		margin-right: 0;
	}	
	.DM_P11_phone_img{
		position: relative;
		width: 6rem;
		height: auto;
		min-height: 5rem;
		margin: 0.6rem auto;
		aspect-ratio: 1.5 / 1;
	}
	.DM_P11_phone_img::before{
		content: '';
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: 3%;
		z-index: 1;
		width: 5.3rem;
		height: auto;
		aspect-ratio: 1.5 / 1;
		background: url(P11_DM_img1.png) no-repeat;
		background-size: 5.3rem auto;
		background-position: center;
	}
	.DM_P11_phone_img::after{
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: 0;
		width: 6rem;
		height: 3.5rem;
		border-radius: 0.4rem;
		border: 0.01rem solid #FFF;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%,rgba(255, 255, 255, 0.6) 100%);
	}
	.DM_P11_bottom_text{
        	font-size: .28rem;
        	text-align: center;
        	color: #ffc6c6;
	}

	.DM_swipeAlert_bottom {
		margin-top: 0.5rem !important;
	}

	/* 二维码遮罩层 */
	.qrcode-mask {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.7);
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 9999;
	}

	.qrcode-image {
		display: block;
		width: 6rem;
		height: 6rem;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
	}
}