  /* ====================== 中间主体 ====================== */
        .main-wrap{
            max-width:1260px;
            margin:0 auto;
            padding:45px 30px;
        }
        .scroll-item{
            transition: all 0.7s ease-out;
          padding-top:20px;
        }

        /* 业务简介 */
        .section-title{
            text-align:center;
            font-size:28px;
            color:#222;
            margin-bottom:22px;
          font-weight:bold;
        }
        .biz-desc{
            font-size:16px;
            color:#444;
            line-height:1.75;
            text-indent:2em;
            margin-bottom:14px;
        }


        /* 核心服务业务 三卡片 */
   .core-service-row{
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap:26px;
    margin:50px 0;
    align-items: stretch;
}
.core-service-row > a{
    display:flex;
}
.core-card{
    background:#fff;
    border-radius:8px;
    box-shadow:0 2px 12px #00000014;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    width:100%;
    height:100%;
  cursor: pointer;
}
.core-card:hover{
    transform: scale(1.04);
    box-shadow:0 6px 20px rgba(0,85,204,0.18);
}
.core-card__img{
    height:190px; /* 父容器固定高度 */
    background:linear-gradient(140deg,#003b96,#0074ee);
    position:relative;
    flex-shrink:0;
    overflow:hidden; /* 超出部分隐藏兜底 */
}
.core-card__img img {
    /* 核心改动 */
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display:block;
}
.core-card__body{
    padding:18px 20px;
    font-size:14px;
    line-height:1.72;
    flex:1;
}
.core-card__body h4{
    font-size:16px;
    margin-bottom:8px;
    font-weight: bold;
}
.core-card__body p{
    font-size:15px;
}

        /* ========== 全屏背景区域：适配对象&特色优势 ========== */
        .bg-section{
            width:100%;
            /* 修改这里为你的背景图片路径 */
           /* background-image:url("/{ms:global.style/}/picture/comm_img01.png");*/
            background-size:cover;
            background-position:center center;
            background-repeat:no-repeat;
            padding:60px 0;
        }
        .bg-section-inner{
            max-width:1260px;
            margin:0 auto;
            padding:0 30px;
        }
        .two-col-wrap{
            display:grid;
            grid-template-columns: 1fr 1fr;
            gap:60px;
        }
        .col-block h4{
            text-align:center;
            font-size:16px;
            margin-bottom:16px;
        }
        .col-block ul{
            list-style:none;
            font-size:14px;
            line-height:1.95;
            padding-left:25%;
        }
        .col-block li::before{
            content:"●";
            color:#0044aa;
            margin-right:6px;
        }
.col-block li{
          font-size:15px;
        }


        /* 5个申报模式卡片 */
        .mode-row{
            display:grid;
            grid-template-columns: repeat(5,1fr);
            gap:14px;
            margin:55px 0;
        }
        .mode-card{
            border:1px solid #e1e4eb;
            border-radius:6px;
            overflow:hidden;
            position:relative;
            z-index:1;
           /** transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;**/
        }
        .mode-card:hover{
            transform: scale(1.04);
            z-index:10;
            background-color:#f0f6ff;
            box-shadow:0 6px 20px rgba(0,85,204,0.18);
        }
        .mode-card__head{
            background:#3d5a80;
            color:#fff;
            text-align:center;
            padding:10px 6px;
        }
        .mode-card__head.active{
            background:#0052dd;
        }
        .mode-card__title{
            font-size:14px;
        }
        .mode-card__num{
            font-size:26px;
            font-weight:bold;
            margin-top:4px;
        }
        .mode-card__body{
            padding:12px 10px;
            font-size:14px;
            line-height:1.6;
            color:#333;
        }
/* ========== 服务办理流程：使用图片作为六边形序号 ========== */
		        .service-flow-wrap{
		            margin:60px 0;
		        }
		        .service-flow-row{
		            display: grid;
		            grid-template-columns: repeat(4,1fr);
		            gap:24px;
		        }
		        .service-flow-card{
		            background:#ffffff;
		            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
		            border-radius:8px;
		            padding:20px 20px 24px 20px;
		            position:relative;
		        }
		        .flow-hex-img{
		            width:48px;
		            height:54px;
		            display:block;
		            margin:0 auto 12px auto; /* 块级、水平居中，下方留出距离标题 */
		        }
		        .flow-card-content{
		            margin-top:0;
		        }
		        .flow-card-content h4{
		            font-size:15px;
		            color:#111;
		            margin-bottom:10px;
					text-align: center;
                    font-weight:bold;
		        }
		        .flow-card-content p{
		            font-size:14px;
		            line-height:1.65;
		            color:#444;
		        }


        /* ==========合作流程========== */
        /* 合作流程 */
.flow-area {
	margin: 65px 0;
}

.flow-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	overflow-x: auto;
	padding: 20px 10px;
}

/* 适配小屏幕：PC居中，移动端左对齐横向滚动 */
@media (max-width: 1200px) {
	.flow-container {
		justify-content: flex-start;
	}
}

/* 单个步骤项：图标 + 文字（兼容 commPage.html 实际使用的 .flow-step 结构） */
.flow-container .flow-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1 0 auto;
	min-width: 96px;
	max-width: 120px;
}
.flow-circle {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #0052dd;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 8px;
	flex-shrink: 0;
}
.flow-text {
	font-size: 13px;
	color: #333;
	text-align: center;
	line-height: 1.3;
}

/* 单个步骤项：图标 + 文字 */
.flow-step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-width: 100px;
	max-width: 120px;
}

/* 图标容器：无边框，图片完全填满 */
.flow-step-icon {
	width: 70px;
	height: 70px;
	border: none;  /* 移除边框 */
	border-radius: 50%; /* 保留圆形裁切，图片填满圆形 */
	background-color: #ffffff;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%; /* 图片完全填满div */
	margin-bottom: 10px;
}

/* 步骤文字 */
.flow-step-text {
	font-size: 14px;
	color: #333;
	text-align: center;
	line-height: 1.2;
}

/* 箭头 */
.flow-arrow {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	background: url("/{ms:global.style/}/picture/comm_img04.png") no-repeat center;
	background-size: contain;
}
        /* 合作伙伴 */
        .partner-area{
            margin:65px 0 0 30px;
        }
        .partner-grid{
            display:grid;
            grid-template-columns: repeat(3,1fr);
            gap:22px;
        }
        .partner-item{
            border:1px solid #d6dce8;
            border-radius:6px;
            padding:16px;
            text-align:center;
        }
        .partner-img{
            width:100%;
            height:80px;
            background:#f5f7fa;
            border-radius:4px;
            margin-bottom:12px;
            display:flex;
            align-items:center;
            justify-content:center;
            color:#999;
        }
.partner-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* 按比例填满父盒子，裁剪多余部分，不变形 */
    /* 如果想要图片完整全部显示（会留空白），替换为 object-fit:contain; */
}
        .partner-name{
            font-size:14px;
            color:#333;
            line-height:1.5;
        }