* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter-Regular','Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background-color: rgba(247, 247, 247, 1);
            color: #444;
            line-height: 1.5;
        }
.table-content img{display:block;}
        /* 主色调 */
        :root {
            --primary-dark: #20477c;
            --text-dark: #444;
            --bg-light: #f7f7f7;
            --border-light: #dee2e6;
        }

        /* 头部区域 */
        .top-bar {
            background-color: white;
            padding: 12px 0;
        }
        .logo-area img {
            max-height: 98px;
            width: auto;
        }
		.tag span{overflow:hidden;float:left;margin-right:15px;}
		.tag .book,.tag .site{color:#20477c;}
		.tag .book:before{content:"";height:15px;width:15px;display:inline-block;background:url(../images/boot1.png) left top no-repeat;float:left;margin-right:5px;margin-top:6px;}
		.tag .site:before{content:"";height:15px;width:15px;display:inline-block;background:url(../images/site1.png) left top no-repeat;float:left;margin-right:5px;margin-top:6px;}
        /* 右侧工具区 */
        .header-tools {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .search-form {
            display: flex;
            align-items: center;
            background: #f1f3f5;
            border-radius: 30px;
            padding: 5px 15px;
        }
        .search-form input {
            border: none;
            background: transparent;
            outline: none;
            width: 160px;
            font-size: 0.9rem;
        }
        .search-form button {
            background: none;
            border: none;
            color: #20477c;
            cursor: pointer;
        }
        .lang-dropdown .dropdown-toggle {
            background-color: #f1f3f5;
            border: none;
            color: #20477c;
            padding: 6px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
        }
        .lang-dropdown .dropdown-toggle::after {
            margin-left: 6px;
        }
        /* 导航栏 (桌面) */
        .navbar-main {
            background-color: white;
        }
		.navbar-nav>li{display:inline-block;}
        .navbar-nav>li>a {
			display:block;
            color: #444;
            font-weight: 400;
            padding: 1.2rem 1.3rem;
			text-decoration:none;
        }
       
        .navbar-nav>li:hover>a:after{position:absolute;bottom:0px;content:"";height:4px;width:36%;border-radius:3px;background:#20477c;left:32%;}
        .sub-menu {
            border-radius: 0px;
            border: none;
			padding:0px;
			display:none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
			background:#fff;width:250%;
        }
		.sub-menu li{list-style:none;}
		.sub-menu a{display:block;
            color: #444;padding: 1.2rem 1.3rem;
            font-weight: 400;text-decoration:none;}
		.navbar-nav li{position:relative;}
		li.current-menu-item>a{font-weight:500;}
		.nav>li.current-menu-item>a:after,.current-menu-parent>a:after,.nav>.current-post-ancestor>a:after{position:absolute;bottom:0px;content:"";height:4px;width:36%;border-radius:3px;background:#20477c;left:32%;}
		.sub-menu .current-menu-parent a:after{display:none;}
		li:hover .sub-menu{display:block;position:absolute;top:3.8rem;left:0px;z-index:99;}
		.navbar-nav li ul li{line-height:2;}
		.navbar-nav li ul li a{padding:0.4rem 1.3rem;}
		.navbar-nav li ul li:hover{background:#0d6efd;color:#fff;}
		.navbar-nav li ul li:hover a{color:#fff;}
        /* 移动端侧滑菜单  (默认隐藏) */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: -280px;
            width: 280px;
            height: 100%;
            background-color: white;
            z-index: 1050;
            transition: left 0.3s ease;
            box-shadow: 2px 0 12px rgba(0,0,0,0.15);
            overflow-y: auto;
            padding: 20px;
        }
        .mobile-menu-overlay.show {
            left: 0;
        }
        .menu-close-btn {
            text-align: right;
            margin-bottom: 20px;
        }
        .menu-close-btn button {
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #20477c;
        }
        .mobile-nav-list {
            list-style: none;
            padding: 0;
        }
        .mobile-nav-list li {
            border-bottom: 1px solid #eee;
			line-height:2;
        }
        .mobile-nav-list a {
            display: block;
            padding: 0px 0;
            color: #444;
            text-decoration: none;
            font-weight: 500;
        }
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        .mobile-submenu {
            list-style: none;
            padding-left: 20px;
            display: none;
        }
        .mobile-submenu.show {
            display: block;
        }
        .mobile-submenu li a {
            font-size: 0.9rem;
            padding: 2px 0;
            color: #666;
        }
        /* 覆盖 bootstrap 桌面 navbar-toggler 只在移动/平板显示 */
        .navbar-toggler {
            border: none;
            outline: none;
        }
        @media (max-width: 991.98px) {
            .desktop-nav {
                display: none !important;
            }
            .mobile-nav-trigger {
                display: block !important;
            }
        }
        @media (min-width: 992px) {
            .mobile-nav-trigger {
                display: none !important;
            }
            .mobile-menu-overlay {
                display: none;
            }
        }
        /* 内容区域 */
        .main-content {
            padding: 40px 0;
        }
		.main-content .container{background:#fff;padding:2rem;}
        .title-section {
            text-align: right;
            margin-bottom: 20px;
        }
        .title-section h1 {
            font-size: 1.8rem;
            font-weight: 600;
            color: rgba(51, 51, 51, 1);
			text-align:left;
            margin-bottom: 10px;
        }
        .action-links {
            text-align: right;
            margin-top: 5px;
            margin-bottom: 25px;
			clear:both;
        }
        .action-links a {
            text-decoration: none;
            color: rgba(102, 102, 102, 1);
            font-weight: 500;
            margin-left: 20px;
        }
		.action-links a:nth-child(2) {
		    background-color: rgba(32, 71, 124, 1);
    border-radius: 8px;
    position: relative;
    color:#fff;
	padding:1rem 2rem;	
	}
        .action-links a i {
            margin-right: 6px;
        }
        /* 表格容器 支持滚动 */
        .table-wrapper {
            background: rgba(230, 230, 230, 1);
			padding:1.5rem;
            margin-top:2rem;
        }
		 .table-wrapper .table-content{background:#fff;padding:2.5rem;}
		 .table-wrapper h2{text-align:center;color:rgba(32, 71, 124, 1);font-size:1.5rem;}
		 .table-wrapper p{text-align:center;font-size:0.8rem;color:rgba(153, 153, 153, 1);}
		 
        .agent-table {
            width: 100%;
            margin-bottom: 0;
            background-color: white;
            border-collapse: collapse;
			display:block;
			border:1px solid rgba(32, 71, 124, 0.12);
			overflow-x:scroll;
			
        }
        .agent-table th {
            background-color: #20477c;
            color: white;
            padding: 14px 12px;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
        }
        .agent-table td {
            padding: 12px;
            border-bottom: 1px solid #e9ecef;
            color: #444;
          
        }
		td span{background:rgba(233, 239, 245, 1);border-radius:0.4rem;padding:0.4rem 1.5rem;}
		td span img{margin-right:.3rem;}
		td span.part{background: #F5F0E9;color:#7C5620;}
        .agent-table tr:hover {
            background-color: #f1f5f9;
        }
        /* 底部区域 */
        footer {
            background: #fff;
            padding-top: 40px;
        }
		.footer-logo{text-align:center;}
		.footer-logo img{max-width:80%;}
        .partner-logos img {
			max-width:280px;
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0px;
            margin: 30px 0;
        }
        .partner-logos img {
        }
        @media (max-width: 768px) {
            .partner-logos img {
                max-width: 100px;
            }
			.table-wrapper,.main-content .container,.table-wrapper .table-content{padding:1rem;overflow-x:scroll;}
			.t20{margin-top:2rem;display:inline-block;}
			.partner-logos{display:block;width:100%;overflow:hidden;}
			.partner-logos img{width:36%;margin:2% 7%;max-width:46%;float:left;}
        }
        /* 地图背景区块 (模拟) */
        .map-contact-section {
            background-image: url(../images/fbg.png);
            background-size: cover;
            background-position: center;
            padding: 40px 0;
            margin-top: 20px;
        }
        .contact-info-card {
            padding: 25px 30px;
            max-width: 400px;
        }
        .contact-info-card h5 {
            font-weight: 600;
            margin-bottom: 15px;
			font-size:1rem;
			line-height:1.8;
        }
        .contact-info-card p {
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
		.contact-info-card p span{min-width:8rem;display:inline-block;}
        @media (max-width: 768px) {
            .contact-info-card {
                max-width: 100%;
            }
            .title-section h1 {
                font-size: 1.8rem;text-align:center;margin:1rem 0px;overflow:hidden;
            }
        	.action-links{overflow:hidden;text-align:center;padding:1rem 0px;}
			.search-form,.lang-dropdown{display:none !important;}
			#mobileMenuBtn{position:absolute;top:1rem; right:1rem;z-index:999;}
		}

/*policy*/
.policy-banner {
            background: url('../images/policybg.png');
            background-size: cover;
            background-position:left top;
            min-height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-bottom: 1rem;
			margin-top:1rem;
        }
        .policy-banner h1 {
            font-size:2.2rem;
            font-weight: 700;
            letter-spacing: 2px;
            margin: 0;
            color: white;
            word-break: keep-all;
        }
		.pay-banner {
            background: url('../images/paybg.png');
            background-size: cover;
            background-position:left top;
            min-height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-bottom: 1rem;
			margin-top:1rem;
        }
        .pay-banner h1 {
            font-size:2.2rem;
            font-weight: 700;
            letter-spacing: 2px;
            margin: 0;
            color: white;
            word-break: keep-all;
        }
		.exerceo-banner {
            background: url('../images/exerceobg.png');
            background-size: cover;
            background-position:left top;
            min-height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-bottom: 1rem;
			margin-top:1rem;
        }
        .exerceo-banner h1 {
            font-size:2.2rem;
            font-weight: 700;
            letter-spacing: 2px;
            margin: 0;
            color: white;
            word-break: keep-all;
        }
		.procedure-banner {
            background: url('../images/policybg.png');
            background-size: cover;
            background-position:left top;
            min-height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-bottom: 0rem;
			margin-top:1rem;
        }
        .procedure-banner h1 {
            font-size:2.2rem;
            font-weight: 700;
            letter-spacing: 2px;
            margin: 0;
            color: white;
            word-break: keep-all;
        }
        @media (max-width: 768px) {
            .policy-banner {
                min-height: 220px;
            }
            .policy-banner h1 {
                font-size: 1.5rem;
                letter-spacing: 1px;
            }
			.procedure-banner {
                min-height: 220px;
            }
            .procedure-banner h1 {
                font-size: 1.5rem;
                letter-spacing: 1px;
            }
			.exerceo-banner {
                min-height: 220px;
            }
            .exerceo-banner h1 {
                font-size: 1.5rem;
                letter-spacing: 1px;
            }
			.pay-banner {
                min-height: 220px;
            }
            .pay-banner h1 {
                font-size: 1.5rem;
                letter-spacing: 1px;
            }
        }

        /* 图文卡片：白色背景，左侧1/5小图，右侧标题+ul简介 */
        .policy-card {
            background: white;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
            height: 100%;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 1.5rem;
        }
        .policy-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
        }
        .policy-img {
            flex: 0 0 20%;
            max-width: 20%;
			height:100%;
			overflow:hidden;
			
        }
        .policy-img img {
            height: 100%;
			object-fit: cover;
			object-position: center; 
        }
        .policy-content {
            flex: 1;
			max-width:75%;
        }
        .policy-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #444;
            margin-bottom: 0.6rem;
        }
        .policy-intro {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
		.policy-content {padding:1rem;}
		.policy-content p{max-width:100%;
  overflow-wrap: break-word;
  word-wrap: break-word;}
  .policy-content ul{}
        .policy-content li {
            font-size: 0.92rem;
            color: #4a5568;
            margin-bottom: 0.45rem;
            gap: 8px;
        }
		.policy-content li p{padding-left:1rem;margin-bottom:0px;margin-top:0px;}
		
		.policy-content a{color:#20477C;font-size:14px;text-decoration:none;}
		.policy-content a img{margin-left:0.5rem;}
        .policy-intro li i {
            color: #20477c;
            width: 18px;
            font-size: 0.8rem;
            margin-top: 4px;
        }

        /* 分页样式 (居中) */
        .pagination-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 3rem;
            margin-bottom: 2rem;
        }
        .pagination {
            gap: 8px;
        }
        .page-item .page-link {
            color: #20477c;
            padding: 0.3rem 0.8rem;
            font-weight: 500;
			border:0px;
			background:none;
        }
        .page-item.active .page-link {
            background-color: #20477c;
            color: white;
        }
        .page-link:hover {
            background-color: #e9ecef;
            color: #0b2a4a;
        }

        /* 手机端适配：每行一块，图片100%宽度，标题和简介在下 */
        @media (max-width: 767.98px) {
            .policy-card {
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem;
                gap: 1rem;
            }
            .policy-img {
                flex: auto;
                max-width: 100%;
                width: 100%;
            }
            .policy-img img {
                width: 100%;
            }
            .policy-title {
                font-size: 1.2rem;
                margin-top: 0;
            }
            .policy-intro li {
                font-size: 0.85rem;
            }
			.policy-content{max-width:100%;}
        }

        /* 平板设备微调 */
        @media (min-width: 768px) and (max-width: 991.98px) {
            .policy-card {
                padding: 1.2rem;
                gap: 1rem;
            }
            .policy-title {
                font-size: 1.25rem;
            }
        }

        .section-margin {
            margin-top: 0px;
            margin-bottom: 0px;
        }
        .row-gap-custom {
            row-gap: 1rem;
        }

/*procedure*/
 /* 仅定义内容区样式，不干扰头部底部 */
        .procedure-page {
            padding: 2rem 0 3rem;
            background-color: #fff;
        }
        /* 小导航: 1行4个，下横线激活样式 */
        .procedure-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            border-bottom: 1px solid #e9ecef;
            margin-bottom: 2rem;
        }
        .tab-item {
            padding: 0.75rem 1.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: rgba(102, 102, 102, 1);
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
            white-space: nowrap;
        }
        .tab-item.active {
            color: #4a6fa0;
        }
        .tab-item.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #4a6fa0;
            border-radius: 2px;
        }
        .tab-item:hover:not(.active) {
            color: #4a6fa0;
            background-color: rgba(74, 111, 160, 0.05);
        }
        /* 内容面板 */
        .tab-pane {
            display: none;
            animation: fadeIn 0.25s ease;
        }
        .tab-pane.active-pane {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(6px);}
            to { opacity: 1; transform: translateY(0);}
        }
        /* 小图标 + 右侧标题下描述 */
        .icon-title-section {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        .procedure-icon {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: start;
            justify-content: center;
            font-size: 28px;
            color: #4a6fa0;
        }
		.icon-text{flex:1;}
        .icon-text h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: rgba(51, 51, 51, 1);
            margin-bottom: 0.5rem;
        }
        .icon-text p {
            color: #999999;
            margin-bottom: 0;
            font-size: 1rem;
            line-height: 1.5;
        }
		.procedurecon{color:rgba(102, 102, 102, 1)}
		.procedurecon p b{color:rgba(51, 51, 51, 1);font-size:1.4rem;font-weight:400;}		
        /* 提示部分背景色 #f1f7ff */
        .info-highlight {
            background-color: #f1f7ff;
            border-radius: 20px;
            padding: 1.5rem;
            margin: 1.8rem 0;
            
        }
        .info-highlight p {
            margin-bottom: 0;
            color: rgba(119, 119, 119, 1);
            font-weight: 400;
        }
		.l56{margin-left:4.5rem;}
        /* 表格样式: 5行2列，表头背景#4a6fa0 */
        .custom-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        .custom-table th {
            background-color: #4a6fa0;
            color: white;
            padding: 12px 16px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
        }
        .custom-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #e2e8f0;
            color: rgba(102, 102, 102, 1);
            background-color: white;
        }
        .custom-table tr:last-child td {
            border-bottom: none;
        }
        /* 有序列表 li 前面序号颜色 #4a6fa0 */
        .procedure-list {
            list-style: none;
            padding-left: 0;
            margin-top: 1rem;
        }
        .procedure-list li {
            counter-increment: step-counter;
            margin-bottom: 0.9rem;
            display: flex;
            align-items: baseline;
            gap: 12px;
            color: rgba(102, 102, 102, 1);
            font-size: 0.98rem;
            line-height: 1.45;
        }
        
     
        /* 右侧小标题统一颜色 */
        .sub-title {
            color: rgba(51, 51, 51, 1);
            font-weight: 600;
            margin: 1.5rem 0 0.8rem 0;
            font-size: 1.2rem;
        }
        /* 响应式调整 */
        @media (max-width: 768px) {
            .tab-item {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }
            .icon-title-section {
                align-items: start;
            }
            .icon-text h3 {
                font-size: 1.4rem;
            }
            .custom-table th, .custom-table td {
                padding: 10px 12px;
            }
			.l56{margin-left:0px;}
        }
        @media (max-width: 576px) {
            .procedure-tabs {
                justify-content: space-between;
            }
            .tab-item {
                padding: 0.5rem 0.5rem;
                font-size: 0.75rem;
                text-align: center;
                flex: 1;
            }
        }
/*exerceo programes*/
/* 仅定义内容区样式，保证与头部底部完美融合，不影响全局 */
        .programmes-section {
            padding: 3rem 0 4rem;
        }
        /* 卡片样式: 上图下文，白色背景 */
        .program-card {
            background: #fff;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .program-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
        }
        /* 图片区域: 固定比例，保持美观 */
        .card-img-top {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            background-color: #eef2fa;
            transition: transform 0.4s ease;
        }
        .program-card:hover .card-img-top {
            transform: scale(1.02);
        }
        .card-body {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        /* 标题颜色 #333333 */
        .program-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }
		.program-title a{color: #333333;text-decoration:none;}
        /* 描述颜色 #666666 */
        .program-description {
            color: #666666;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1.25rem;
            flex: 1;
        }
		.othmorg{color:#467CC5;}
		.othmorg img{margin-right:0.5rem;}
        /* view more 链接样式 */
        .view-more-link {
            font-weight: 600;
            font-size: 0.9rem;
            color: #20477c;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s, color 0.2s;
            letter-spacing: 0.3px;
        }
        .view-more-link i {
            font-size: 0.8rem;
            transition: transform 0.2s;
        }
        .view-more-link:hover {
            color: #0f355c;
            gap: 10px;
        }
		.othma{color:#666;}
        .view-more-link:hover i {
            transform: translateX(3px);
        }
        /* 响应式调整: 平板/手机自适应一行3列 -> 平板2列 -> 手机1列 */
        @media (max-width: 991.98px) {
            .programmes-section {
                padding: 2rem 0;
            }
            .program-title {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 767.98px) {
            .card-body {
                padding: 1.2rem;
            }
            .program-title {
                font-size: 1.1rem;
            }
            .program-description {
                font-size: 0.88rem;
            }
        }
        /* 可选: 增加优雅间距 */
        .gutter-custom {
            row-gap: 2rem;
        }
/*payment*/
 .core-values-section {
            padding: 3rem 0 4rem;
            background-color: #ffffff;
        }
        /* 顶部介绍区域 */
        .section-header {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 2.5rem auto;
        }
        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 1rem;
        }
        .section-header p {
            font-size: 1.05rem;
            color: #555555;
            line-height: 1.5;
        }
        /* 左图右文卡片 (每一行独立，flex 保证左右结构) */
        .image-text-row {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2.5rem;
            background: #fff;
            border-radius: 20px;
            transition: all 0.2s ease;
        }
        .image-text-row .img-col {
            flex: 0 0 25%;
            max-width: 25%;
            overflow: hidden;
        }
        .image-text-row .img-col img {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        .image-text-row:hover .img-col img {
            transform: scale(1.02);
        }
        .image-text-row .text-col {
            flex: 1;
        }
        .image-text-row .text-col h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 0.75rem;
        }
        .image-text-row .text-col p {
            font-size: 0.98rem;
            color: #666666;
            line-height: 1.5;
            margin-bottom: 0;
        }
        /* 两行：左小图标，右标题+描述 (使用flex布局) */
        .icon-text-row {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            margin-bottom: 1.8rem;
            padding: 0.5rem 0;
            transition: all 0.2s;
        }
        .icon-col {
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            display: flex;
            align-items: start;
            justify-content: center;
            font-size: 1.8rem;
            color: #20477c;
        }
        .icon-text-content {
            flex: 1;
        }
        .icon-text-content h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 0.5rem;
        }
        .icon-text-content p {
            font-size: 0.93rem;
            color: #666666;
            margin-bottom: 0;
            line-height: 1.45;
        }
        /* 两个大区块之间的分割与间距 */
        .divider-light {
            margin: 2.5rem 0 2rem;
            border-top: 1px solid #eef2f5;
        }
        .sub-section-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 1.2rem;
            position: relative;
            display: inline-block;
        }
        .sub-section-title:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 56px;
            height: 3px;
            background-color: #20477c;
            border-radius: 4px;
        }
        /* 响应式: 平板与手机适配 */
        @media (max-width: 991.98px) {
            .image-text-row {
                flex-direction: column;
                gap: 1rem;
                margin-bottom: 2rem;
            }
            .image-text-row .img-col {
                flex: auto;
                max-width: 100%;
                width: 100%;
            }
            .image-text-row .text-col h3 {
                font-size: 1.35rem;
            }
            .section-header h2 {
                font-size: 1.9rem;
            }
            .icon-text-row {
                gap: 1rem;
            }
            .icon-col {
                width: 46px;
                height: 46px;
                font-size: 1.5rem;
            }
        }
        @media (max-width: 767.98px) {
            .core-values-section {
                padding: 2rem 0;
            }
            .section-header h2 {
                font-size: 1.65rem;
            }
            .section-header p {
                font-size: 0.95rem;
            }
            .image-text-row .text-col h3 {
                font-size: 1.25rem;
            }
            .icon-text-content h4 {
                font-size: 1.1rem;
            }
            .sub-section-title {
                font-size: 1.45rem;
            }
        }
        /* 增加左右布局行之间优雅呼吸 */
        .row-gap-custom {
            row-gap: 1rem;
        }
		tbody,thead{width:100%;}
		.learnmore{text-align:center;overflow:hidden;min-height:2rem;margin-bottom:2rem;padding:1rem 0px;}
		.learnmore a{background:#D3A562;color:#fff;text-decoration:none;border-radius:8px;padding:1rem 3rem;}
		.learnmorea{text-align:center;overflow:hidden;min-height:2rem;margin-bottom:2rem;padding:1rem 0px;margin-top:2rem;}
		.learnmorea a{background:#20477C;color:#fff;text-decoration:none;border-radius:8px;padding:1rem 3rem;}
		img{max-width:100%;}

/*facility*/
/* 仅定义内容区样式，完美适配已有头部底部 */
        .gallery-section {
            padding: 3rem 0 4rem;
            background-color: #ffffff;
        }
        /* 头部说明区域 */
        .section-header {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 2.8rem auto;
        }
        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 1rem;
            letter-spacing: -0.2px;
        }
        .section-header p {
            font-size: 1.05rem;
            color: #555555;
            line-height: 1.5;
            margin-bottom: 0;
        }
        /* 图片卡片容器 - 干净整洁 */
        .img-card {
            height: 100%;
			width:100%;
        }
        
        .img-card img {
            width: 100%;
            height: auto;
           
        }

        /* 响应式调整：手机一行2张 -> 一行1张或按栅格自适应，但题目要求一行3张，桌面保持3，平板可变为2，手机1 */
        @media (max-width: 991.98px) {
            .gallery-section {
                padding: 2rem 0;
            }
            .section-header h2 {
                font-size: 1.85rem;
            }
            .img-card img {
                max-height: 300px;
            }
			
			.mobile-nav-list li:hover .sub-menu{position:relative;width:96%;box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    background: #fff;padding-left:4%;top:0.5rem;}
	.mobile-nav-list li:hover .sub-menu li a{font-size:0.8rem;}
	.mobile-nav-list a{line-height:2.5;}
        }
        @media (max-width: 767.98px) {
            .section-header h2 {
                font-size: 1.6rem;
            }
            .section-header p {
                font-size: 0.95rem;
            }
            .img-card {
                padding: 0rem;
            }
            .img-card img {
                max-height: 250px;
            }
			.contact-info-card{padding:25px 0px;}
			.table-content{overflow-x:scroll;}
        }
        /* 平滑间距 */
       
        /* 可选：简约辅助装饰 */
        .img-card .logo-caption {
            display: none;
        }
		.counselling{padding:1rem;}
		.chubiao a{color:#333;line-height:2;text-decoration:none;}
		.chubiao  ul{padding:0rem 3rem;}