﻿* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	color: #1e2b3c;
	background-color: #ffffff;
	line-height: 1.5;
	overflow-x: hidden;
}

/* CSS变量降级为固定值 + 变量备用 (IE忽略var，使用前面的值) */
:root {
	--deep-blue: #0a2f5a;
	--deep-blue-light: #1e4a7a;
	--gold: #c9a23d;
	--gold-light: #e0bc6e;
	--gray-bg: #f5f8fc;
	--text-dark: #1e2b3c;
	--text-light: #4f6f8f;
	--border-light: #e0e8f0;
	--white: #ffffff;
	--shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
}
a {
	text-decoration: none;
}
ul {
	list-style-type: none;
}
.clear {
	clear: both;
}
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.container_sign {
	max-width: 1280px;
	margin: 0 auto;
	padding: 15px;
	line-height: 2;
	font-size:1rem;
}
.container_sign img { max-width:100%;}
.container_sign p {margin-bottom:15px;}
.container_sign div { margin:15px 0px;}
.container_sign td { padding:5px; border-left: 1px solid #666; border-bottom:1px solid #666; text-align:center; }
.container_sign th { padding:5px; border-left: 1px solid #666; border-bottom:1px solid #666; text-align:center; background-color:#c8daf2; }
.container_sign td p, .content_news th p { text-indent:0em; margin-bottom:0px;}
.container_sign table { border-collapse:separate; border-spacing:0; width:100%; margin-bottom:18px; border-top: 1px solid #666; border-right:1px solid #666;}
.container_sign a { color:#ff0000;}

/* 导航栏 - 移除 sticky 导致IE不兼容，改为相对定位 + 固定顶栏效果用JS? 保留sticky，IE降级为static不影响主体 */
.navbar {
	background: #ffffff;
	background: var(--white);
	box-shadow: 0 4px 20px rgba(0,0,0,0.02);
	position: relative;  /* 原sticky不兼容改为relative，如需吸顶可用js模拟，保证布局不崩 */
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid #e0e8f0;
	border-bottom: 1px solid var(--border-light);
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1280px;
	margin: 0 auto;
	padding: 10px 0;
}

.logo {
	display: flex;
	flex-direction: column;
}
.logo h1 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #0a2f5a;
	color: var(--deep-blue);
	line-height: 1.2;
}
.logo span {
	font-size: 0.75rem;
	color: #4f6f8f;
	color: var(--text-light);
	letter-spacing: 1px;
}
.logo img { height:60px;}

.menu-toggle {
	display: none;
	background: none;
	border: 1px solid #e0e8f0;
	border: 1px solid var(--border-light);
	border-radius: 8px;
	padding: 10px 16px;
	font-size: 1.4rem;
	color: #0a2f5a;
	color: var(--deep-blue);
	cursor: pointer;
}

.nav-menu {
	display: flex;
	align-items: center;
	list-style: none;
	/* 移除gap，使用margin兼容IE */
}
.nav-menu > .nav-item {
	margin-left: 28px;
}
.nav-menu > .nav-item:first-child {
	margin-left: 0;
}

.nav-item {
	position: relative;
}

.nav-link {
	text-decoration: none;
	color: #1e2b3c;
	color: var(--text-dark);
	font-weight: 700;
	font-size: 1rem;
	padding: 8px 0;
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	transition: color 0.2s;
}
.nav-link i {
	font-size: 0.8rem;
	color: #c9a23d;
	color: var(--gold);
	transition: transform 0.2s;
	margin-left:8px;
}
.nav-link:hover {
	color: #0a2f5a;
	color: var(--deep-blue);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: -35%;
	background: #ffffff;
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	min-width: 128px;
	padding: 15px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.2s;
	border: 1px solid #e0e8f0;
	border: 1px solid var(--border-light);
	z-index: 100;
	list-style: none;
	text-align:center;
}
.nav-item:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.dropdown-menu li a {
	display: block;
	padding: 10px 20px;
	text-decoration: none;
	color: #1e2b3c;
	color: var(--text-dark);
	font-size: 0.95rem;
	transition: background 0.2s;
}
.dropdown-menu li a:hover {
	background: #f0f6ff;
	color: #0a2f5a;
	color: var(--deep-blue);
}

/* 移动端导航 */
@media (max-width: 1024px) {
	.menu-toggle {
		display: block;
	}
	.nav-menu {
		display: none;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		background: #ffffff;
		background: var(--white);
		padding: 0 24px 16px 24px;
		border-top: 1px solid #e0e8f0;
		border-top: 1px solid var(--border-light);
		gap: 0;
		position: absolute;
		top: 100%;
		left: 0;
		box-shadow: 0 20px 20px -10px rgba(0,0,0,0.1);
		max-height: 80vh;
		overflow-y: auto;
	}
	.nav-menu.active {
		display: flex;
	}
	.nav-menu > .nav-item {
		margin-left: 0;
		width: 100%;
		border-bottom: 1px solid #edf2f7;
	}
	.nav-link {
		justify-content: space-between;
		width: 100%;
		padding: 16px 0;
		font-size: 1.1rem;
	}
	.dropdown-menu {
		position: static;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		border: none;
		background: #f9fbfd;
		padding: 0 0 8px 16px;
		display: none;
		min-width: 100%;
	}
	.dropdown-menu.show {
		display: block;
	}
	.dropdown-menu li a {
		padding: 14px 20px;
		font-size: 1rem;
	}
	
	    .nav-item {
        position: relative;
        width: 100%;
        border-bottom: 1px solid #edf2f7;
    }
    
    /* 导航链接包装器 */
    .nav-link-wrapper {
        display: block;
        position: relative;
        width: 100%;
    }
    
    /* 一级菜单链接 - 占满宽度，可点击 */
    .nav-link-wrapper .nav-link {
        display: block;
        width: 100%;
        padding: 16px 40px 16px 0;  /* 右侧留出箭头空间 */
        font-size: 1.1rem;
        font-weight: 700;
        color: #1e2b3c;
        text-decoration: none;
        box-sizing: border-box;
    }
    
    /* 金色箭头 - 绝对定位到最右边 */
    .nav-link-wrapper .toggle-icon {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        cursor: pointer;
        color: #c9a23d;           /* 金色 */
        font-size: 1rem;
        transition: transform 0.3s;
        z-index: 10;
    }
    
    /* 箭头旋转效果 */
    .nav-link-wrapper .toggle-icon.rotated {
        transform: translateY(-50%) rotate(180deg);
    }
    
    /* 子菜单样式 */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        background: #f9fbfd;
        padding: 0 0 8px 20px;
        display: none;
        min-width: 100%;
        margin-top: 0;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-menu li a {
        display: block;
        padding: 12px 16px;
        font-size: 0.95rem;
        color: #4f6f8f;
        text-decoration: none;
    }
    
    .dropdown-menu li a:hover {
        background: #f0f6ff;
        color: #0a2f5a;
    }
    
    /* 没有下拉菜单的普通导航项 */
    .nav-item:not(.has-dropdown) .nav-link {
        display: block;
        padding: 16px 0;
    }
}

@media (max-width: 480px) {
	.logo h1 { font-size: 1.4rem; }
	.logo span { font-size: 0.65rem; }
	.nav-container { padding: 10px 16px; }
	.menu-toggle { padding: 8px 14px; font-size: 1.2rem; }
}

/* 轮播 Banner - 高度调整兼容 */
.carousel {
	position: relative;
	width: 100%;
	height: 80vh;
	min-height: 500px;
	overflow: hidden;
	background: #0a2f5a;
	background: var(--deep-blue);
}
.carousel-inner {
	position: relative;
	width: 100%;
	height: 100%;
}
.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
}
.carousel-slide.active {
	opacity: 1;
	z-index: 1;
}
.slide-content {
	max-width: 700px;
	padding: 0 20px;
	animation: slideUp 0.8s ease-out;
}
.slide-content h2 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 40px;
	line-height: 1.75;
	text-shadow:2px 2px 5px rgba(0, 0, 0, 0.5);
}
.slide-content .highlight { color: #c9a23d; color: var(--gold); }
.slide-content p { font-size: 1.25rem; opacity: 0.9; }
.btn {
	background: #c9a23d;
	background: var(--gold);
	color: #0a2f5a;
	color: var(--deep-blue);
	border: none;
	padding: 12px 32px;
	border-radius: 40px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	border: 1px solid transparent;
	text-decoration: none;
	display: inline-block;
	font-size: 1rem;
}
.btn-outline-light {
	background: transparent;
	border: 1px solid white;
	color: white;
	margin-left: 16px;
}
.btn-outline-light:hover {
	background: white;
	color: #0a2f5a;
	color: var(--deep-blue);
}
.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(255,255,255,0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 10;
	border: 1px solid rgba(255,255,255,0.3);
}
.carousel-arrow:hover { background: rgba(255,255,255,0.4); }
.carousel-arrow.left { left: 30px; }
.carousel-arrow.right { right: 30px; }
.carousel-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	z-index: 10;
}
.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin:0 5px;
	background: rgba(255,255,255,0.5);
	cursor: pointer;
}
.dot.active { background: #c9a23d; background: var(--gold); }
@keyframes slideUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
	.carousel { min-height: 250px; height: 20vh; }
	.slide-content h2 { font-size: 2.2rem; margin-bottom:15px; }
	.slide-content p { font-size: 1rem; margin-bottom: 20px; }
	.btn { padding: 10px 20px; font-size: 0.9rem; }
	.carousel-arrow { width: 40px; height: 40px; font-size: 1.2rem; }
	.carousel-arrow.left { left: 10px; }
	.carousel-arrow.right { right: 10px; }
	.slide-content p { margin:0 50px;}
}
@media (max-width: 480px) {
	.slide-content h2 { font-size: 1.8rem; }
	.btn { display: block; width: 80%; margin: 10px auto !important; }
	.btn-outline-light { margin-left: auto !important; }
}

/* 公司简介 - 左图右文 (无grid) */
.about-section {
	display: flex;
	margin: 0 0 60px 0;
	align-items: center;
}
.about-image {
	flex: 1;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	height: 400px;
	background: #d0ddeb;
	margin-right:40px;
}
.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;  /* IE不支持，但保留无碍 */
	display: block;
}
.about-content { flex: 1; }
.about-content h2 {
	font-size: 2.4rem;
	font-weight: 600;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 16px;
}
.about-summary {
	color: #4f6f8f;
	color: var(--text-light);
	margin-bottom: 24px;
	font-size: 1.05rem;
	line-height: 1.75;
}
.about-summary p { margin-bottom: 12px; }
.about-link {
	color: #c9a23d;
	color: var(--gold);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.about-link:hover { gap: 12px; }

/* 统计卡片 - 改用flex替代grid */
.stats-grid {
	display: flex;
	flex-wrap: wrap;
	margin: -8px;
	margin-top: 24px;
}
.stat-card {
	background: #ffffff;
	background: var(--white);
	border-radius: 20px;
	padding: 20px 12px;
	box-shadow: 0 8px 20px -8px rgba(10,47,90,0.12);
	border: 1px solid #e0e8f0;
	border: 1px solid var(--border-light);
	text-align: center;
	transition: transform 0.3s;
	flex: 1 1 calc(33.333% - 16px);
	margin: 8px;
	min-width: 140px;
}
.stat-card:hover { transform: translateY(-6px); }
.stat-number {
	font-size: 2.2rem;
	font-weight: 700;
	color: #0a2f5a;
	color: var(--deep-blue);
	line-height: 1.2;
	margin-bottom: 4px;
}
.stat-number span {
	font-size: 1rem;
	color: #c9a23d;
	color: var(--gold);
	margin:0 3px;
}
.stat-label {
	font-size: 0.9rem;
	color: #4f6f8f;
	color: var(--text-light);
	font-weight: 500;
}
@media (max-width: 900px) {
	.about-section { flex-direction: column; gap: 30px; }
	.about-image { width: 100%; height: 250px; margin-right: 0 ; }
	.about-content h2 { font-size: 2rem; }
}
@media (max-width: 600px) {
	.stat-card { flex-basis: calc(33.33% - 16px); }
	.about-image { width: 100%; height: 250px; margin-right: 0 ; }
}
@media (max-width: 380px) {
	.stat-card { flex-basis: calc(100% - 16px); }
	.about-image { width: 100%; height: 250px; margin-right: 0 ; }
}

/* 核心业务卡片网格 - 替换grid为flex */
.section-title {
	font-size: 2.4rem;
	font-weight: 600;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 15px;
	text-align: center;
}
.section-sub {
	color: #4f6f8f;
	color: var(--text-light);
	margin-bottom: 40px;
	text-align: center;
}

.section-titlemblg {
	font-size: 2rem;
	font-weight: 600;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 30px;
	text-align: center;
}

/* 四列卡片网格 - 完全兼容 IE10+ / 360 兼容模式 */
.box-4 {
    display: block;              /* 改用 block，不使用 flex */
    font-size: 0;               /* 消除 inline-block 间隙 */
    margin: 40px 0;
    text-align: left;
}

/* 卡片本身：作为行内块，一行排列 */
.box-4 .card {
    display: inline-block;      /* 替代 flex 子项 */
    vertical-align: top;
    font-size: 1rem;            /* 恢复字体大小 */
    background: #ffffff;
    background: var(--white);
    border-radius: 24px;
    padding: 30px 15px;
    /* 柔和阴影 */
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 3px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e8f0;
    border: 1px solid var(--border-light);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

/* 卡片悬停效果 */
.box-4 .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* ========== 响应式断点 ========== */

/* PC大屏：一行 4 个 (≥1025px) */
@media (min-width: 1025px) {
    .box-4 .card {
        width: calc(25% - 22.5px);   /* 4等分，减去右边距 */
        margin-right: 30px;
    }
    /* 第4个卡片去掉右边距 */
    .box-4 .card:nth-child(4n) {
        margin-right: 0;
    }
}

/* 平板：一行 2 个 (769px ~ 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .box-4 .card {
        width: calc(50% - 15px);     /* 2等分，减去右边距的一半 */
        margin-right: 30px;
    }
    /* 第2个卡片去掉右边距 */
    .box-4 .card:nth-child(2n) {
        margin-right: 0;
    }
}

/* 手机：一行 1 个 (≤768px) */
@media (max-width: 768px) {
    .box-4 {
        margin: 20px 0;
    }
    .box-4 .card {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .box-4 .card:last-child {
        margin-bottom: 0;
    }
}

/* 极窄手机：缩小内边距 */
@media (max-width: 480px) {
    .box-4 .card {
        padding: 24px 16px;
    }
    .box-4 .card h3 {
        font-size: 1.2rem;
    }
    .box-4 .card p {
        font-size: 0.85rem;
    }
}

.card-icon {
	font-size: 2.8rem;
	color: #c9a23d;
	color: var(--gold);
	margin-bottom: 20px;
	transition: transform 0.3s;
}
.card:hover .card-icon { transform: scale(1.25); }
.card h3 {
	font-size: 1.5rem;
	margin-bottom: 12px;
	color: #0a2f5a;
	color: var(--deep-blue);
}
.card p { color: #4f6f8f; color: var(--text-light); }


/* 新闻标签切换 + 网格 */
.news-tabs {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
.tab-btn {
	background: none;
	border: none;
	font-size: 1.2rem;
	font-weight: 600;
	color: #4f6f8f;
	color: var(--text-light);
	cursor: pointer;
	padding: 8px 24px;
	border-radius: 40px;
	border: 1px solid transparent;
}
.tab-btn.active {
	background: #0a2f5a;
	background: var(--deep-blue);
	color: white;
	border-color: #0a2f5a;
	border-color: var(--deep-blue);
}
.tab-btn:hover, .tab-btn.active:hover {
	border-color: #c9a23d;
	border-color: var(--gold);
	color: #0a2f5a;
	color: var(--deep-blue);
}
/* 新闻网格 flex替代 */
.news-grid {
    display: block;              /* 改用 block，不使用 flex */
    font-size: 0;               /* 消除 inline-block 间隙 */
    margin: 40px -15px;
    text-align: left;
}

.news-item {
    display: inline-block;      /* 替代 flex 子项 */
    vertical-align: top;
    font-size: 1rem;            /* 恢复字体大小 */
    background: #ffffff;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 3px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e8f0;
    border: 1px solid var(--border-light);
    transition: transform 0.3s;
    box-sizing: border-box;
    margin: 15px;
}

.news-item:hover { transform: translateY(-8px); }
.news-item .news-img {
	height: 180px;
	background: #d9e2ef;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0a2f5a;
	color: var(--deep-blue);
	font-size: 3rem;
	overflow: hidden;
}
.news-item:hover .news-img { transform: scale(1.02); }
.news-img img { width:100%; }
.news-content { padding: 20px; }
.news-date {
	color: #c9a23d;
	color: var(--gold);
	font-size: 0.85rem;
	margin-bottom: 8px;
}
.news-grid .news-item .news-content .news-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0a2f5a;
    color: var(--deep-blue);
    
    /* 多行文本截断 - 显示2行 */
    display: -webkit-box;
    -webkit-line-clamp: 2;      /* 显示2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;      /* 防止长单词溢出 */
    
    /* 兼容 IE 的降级方案 */
    height: 2.8em;           /* 约等于2行的高度 (1rem * 1.4 * 2) */
    line-height: 1.4;            /* 设置行高 */
}

/* IE 兼容方案（不支持 -webkit-line-clamp 的浏览器） */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .news-grid .news-item .news-content .news-title {
        /* IE 使用 overflow 隐藏，但不会显示省略号 */
        max-height: 2.8em;
        overflow: hidden;
    }
}
/* 新闻动态左右结构 */
.news-dynamic {
	display: flex;
	gap: 30px;
	margin: 40px 0;
	flex-wrap: wrap;
}
.news-list-left {
	flex: 2;
	background: #ffffff;
	background: var(--white);
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	border: 1px solid #e0e8f0;
	border: 1px solid var(--border-light);
	min-width: 200px;
}
.news-list-item {
	display: flex;
	align-items: center;
	padding: 16px 0;
	border-bottom: 1px solid #e0e8f0;
	border-bottom: 1px solid var(--border-light);
	flex-wrap: wrap;
}
.news-list-date {
	min-width: 90px;
	color: #c9a23d;
	color: var(--gold);
	font-weight: 500;
	order: 2;
}
.news-list-title {
	font-weight: 600;
	color: #0a2f5a;
	color: var(--deep-blue);
	text-decoration: none;
	flex: 1;
	order: 1;
}
.news-list-title:hover { color: #c9a23d; color: var(--gold); }
.news-right-card {
	flex: 1;
	background: #f5f8fc;
	background: var(--gray-bg);
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	border: 1px solid #e0e8f0;
	border: 1px solid var(--border-light);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.news-right-card i {
	font-size: 4.5rem;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin:20px 0;
}
.news-right-card h4 {
	font-size: 1.3rem;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 10px;
}
.news-right-card p {
	color: #4f6f8f;
	color: var(--text-light);
	margin-bottom: 20px;
}
.news-right-card .btn-small {
	background: #c9a23d;
	background: var(--gold);
	color: #0a2f5a;
	color: var(--deep-blue);
	padding: 8px 20px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
}
@media (max-width: 900px) {
	.news-item { flex-basis: calc(50% - 30px); }
	.news-dynamic { flex-direction: column; }
	.news-list-item { flex-direction: column; align-items: flex-start; gap: 6px; }
	.news-list-date { min-width: auto; }
	
}
@media (max-width: 500px) {
	.news-item { flex-basis: calc(100% - 30px); }
	.news-tabs { gap: 10px; }
	.tab-btn { font-size: 1rem; padding: 6px 16px; }
}

/* PC端：一行 3 个 (≥1025px) */
@media (min-width: 1025px) {
    .news-item {
        width: calc(33.333% - 30px);   /* 3等分，减去左右margin总和(30px) */
    }
}

/* 平板：一行 2 个 (769px ~ 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .news-item {
        width: calc(50% - 30px);       /* 2等分，减去左右margin总和(30px) */
    }
}

/* 手机：一行 1 个 (≤768px) */
@media (max-width: 768px) {
    
    .news-item {
        width: calc(100% - 30px);      /* 占满一行，减去左右margin */
        margin: 15px;
    }
}

/* 极窄手机：缩小内边距和字号 */
@media (max-width: 480px) {
    .news-item .news-content {
        padding: 15px;
    }
    .news-item .news-title2 {
        font-size: 1rem;
    }
    .news-item .news-excerpt {
        font-size: 0.8rem;
    }
}

/* 船舶轮播 - flex布局保留，gap用margin */
.ship-carousel {
	position: relative;
	margin: 40px 0;
	padding: 0 40px;
}
.ship-carousel-container { overflow: hidden; border-radius: 20px; }
.ship-carousel-track {
	display: flex;
	transition: transform 0.5s ease;
}
.ship-slide {
	flex: 0 0 calc(25% - 20px);
	margin-right: 20px;
	background: #ffffff;
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	border: 1px solid #e0e8f0;
	border: 1px solid var(--border-light);
	text-align: center;
	cursor: pointer;
	min-width:270px;
}
.ship-img {
	height: 150px;
	background: #e0e9f2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0a2f5a;
	color: var(--deep-blue);
	font-size: 3rem;
	overflow: hidden;
}
.ship-img img { width: 100%; }
.ship-name {
	padding: 16px;
	font-weight: 600;
	color: #0a2f5a;
	color: var(--deep-blue);
}
.ship-carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: #c9a23d;
	background: var(--gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0a2f5a;
	color: var(--deep-blue);
	font-size: 1.2rem;
	cursor: pointer;
	z-index: 2;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.ship-carousel-arrow:hover { background: #e0bc6e; background: var(--gold-light); }
.ship-carousel-arrow.left { left: 0; }
.ship-carousel-arrow.right { right: 0; }
.ship-carousel-dots {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	flex-wrap: wrap;
}
.ship-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin:0 6px;
	background: #ccc;
	cursor: pointer;
}
.ship-dot.active { background: #c9a23d; background: var(--gold); }
@media (max-width: 1024px) { .ship-slide { flex: 0 0 calc(33.333% - 20px); } }
@media (max-width: 768px) {
	.ship-carousel { padding: 0 30px; }
	.ship-slide { min-width:100%; }
	
}
@media (max-width: 480px) {
	.ship-carousel { padding: 0 20px; }
	.ship-slide { flex: 0 0 100%; margin-right: 0; }
	.ship-carousel-arrow { width: 32px; height: 32px; font-size: 1rem; }
}

/* 合作伙伴 */
.partners {
	background: #f5f8fc;
	background: var(--gray-bg);
	padding: 30px;
	margin: 30px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.partner-item {
	max-width: 10%;
	transition: opacity 0.2s, transform 0.2s;
	margin:0 10px;
}
.partner-item:hover { opacity: 0.9; transform: scale(1.03); }
.partner-item img {
	width: 100%;
	border-radius: 10px;
	background: white;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
@media (max-width: 600px) {
	.partners { gap: 20px; padding: 30px 20px; }
	.partner-item { max-width: 40%; }
}

/* 底部 - 修复grid为flex */
footer {
	background: #0a2f5a;
	background: var(--deep-blue);
	color: white;
	padding: 60px 0 30px;
	border-radius: 40px 40px 0 0;
	margin-top: 60px;
}
.footer-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
.footer-col {
	flex: 1;
	min-width: 15%;
	margin: 0 20px 20px 0;
}
.footer-col h4 {
	color: #c9a23d;
	color: var(--gold);
	margin-bottom: 20px;
	font-size: 1.2rem;
}
.footer-col:nth-child(1){
	min-width: 45%;
}
.footer-col:nth-child(2){
	min-width: 30%;
}
.footer-col:nth-child(2) ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}
.footer-col:nth-child(2) ul li {
	width: 50%;
	margin-bottom: 15px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 15px; }
.footer-col a {
	color: #cbd5e0;
	text-decoration: none;
}
.footer-col a img {
	max-width: 120px;
	height: auto;
	border-radius: 8px;
	background: white;
	padding: 5px 10px;
	box-shadow: 0 2px 8px rgba(255,255,255,0.1);
}
.footer-col a img:hover { transform: translateY(-3px); }
.copyright {
	text-align: center;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 30px;
	margin-top: 40px;
	color: #a0b8cc;
	font-size: 0.85rem;
}
@media (max-width: 600px) {
	.footer-grid { flex-direction: column; }
	.footer-col:nth-child(1){ margin:0}
	.footer-col:nth-child(2),.footer-col:nth-child(3){ display:none}
	.footer-col { text-align: center; margin-right: 0; }
	.footer-col:nth-child(2) ul li { width: 100%; }
}

/* 页面标题 */
.page-header {
	background: linear-gradient(145deg, #ffffff 0%, #f2f7ff 100%);
	padding: 60px 0 40px;
	text-align: center;
}
.page-header h1 {
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
	text-shadow:2px 2px 5px rgba(0, 0, 0, 0.5);
}
.page-header p {
	font-size: 1.2rem;
	color: #c9a23d;
	color: var(--gold);
	max-width: 700px;
	margin: 0 auto;
}

/* ---------- 二级子导航 (标签页) - 居中 + 兼容滚动 ---------- */
.sub-nav {
    background: #ffffff;
    background: var(--white);
    border-bottom: 1px solid #e0e8f0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.sub-nav-container {
    display: flex;
    justify-content: center;           /* 整体居中 */
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    overflow-x: auto;                 /* 内容过多时允许水平滚动 */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    white-space: nowrap;
}

/* 内部用 inline-flex 保证不换行，用 margin 替代 gap */
.sub-nav-item {
    display: inline-flex;             /* 或 inline-block，flex 方便控制 */
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    margin: 0 20px;                   /* 左右间距各20px，相当于 gap: 40px */
    font-size: 1.1rem;
    font-weight: 500;
    color: #4f6f8f;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;                   /* 防止被压缩 */
}

/* 首尾 margin 对称，已用 margin:0 20px 无需额外处理 */

.sub-nav-item:hover {
    color: #0a2f5a;
    color: var(--deep-blue);
}


.sub-nav-item.active {
    color: #0a2f5a;
    color: var(--deep-blue);
    border-bottom: 4px solid #c9a23d;
    border-bottom: 4px solid var(--gold);
    font-weight: 700;
    border-radius: 8px 8px 0 0;
    /* 不修改 padding 和 margin，避免布局抖动 */
}

/* 移动端适配：缩小间距，保持居中滚动 */
@media (max-width: 768px) {
    .sub-nav-container {
        padding: 0 16px;
        justify-content: flex-start;   /* 窄屏时改为左对齐，避免首尾大量空白，滚动更自然 */
    }
    .sub-nav-item {
        margin: 0 12px;                /* 缩小间距 */
        padding: 12px 0;
        font-size: 1rem;
    }
}

/* 可选：美化滚动条（不影响功能） */
.sub-nav-container::-webkit-scrollbar {
    height: 4px;
}
.sub-nav-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.sub-nav-container::-webkit-scrollbar-thumb {
    background: #c9a23d;
    border-radius: 4px;
}


/* 标签内容区 */
.tab-content { padding: 60px 0; }
.tab-content.active { display: block; }

/* 公司简介内部布局 */
.about-intro {
	display: flex;
	align-items: center;
	margin-bottom: 60px;
	flex-wrap: wrap;
}
.about-intro-text { flex: 1; min-width: 200px; }
.about-intro-text h2 {
	font-size: 1.75rem;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 24px;
}
.about-intro-text p {
	color: #4f6f8f;
	color: var(--text-light);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 20px;
}
.about-stats-mini {
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
	margin-top: 30px;
}
.stat-mini {
	background: #ffffff;
	background: var(--white);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	text-align: center;
	flex: 1 1 calc(50% - 20px);
	margin: 10px;
	min-width: 140px;
}
.stat-mini .number {
	font-size: 2rem;
	font-weight: 700;
	color: #0a2f5a;
	color: var(--deep-blue);
}
.stat-mini .label {
	color: #4f6f8f;
	color: var(--text-light);
	font-size: 0.9rem;
}
.about-intro-image {
	flex: 1;
	border-radius: 24px;
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
	margin-left:60px;
}
.about-intro-image img { height: 100%; }
@media (max-width: 900px) {
	.about-intro-image { width: 100%; height: 300px; display:none }
	.about-intro{ margin-bottom:0}
}


/* 发展历程 - flex替代grid */
/* 发展历程网格 - 完全兼容 IE10+ / 360 兼容模式 */
.deve-grid {
    display: block;              /* 改用 block，不使用 flex */
    font-size: 0;               /* 消除 inline-block 间隙 */
    margin: -15px;
    text-align: left;
}

.deve-item {
    display: inline-block;      /* 替代 flex 子项 */
    vertical-align: top;
    font-size: 1rem;            /* 恢复字体大小 */
    background: #ffffff;
    background: var(--white);
    border-radius: 20px;
    padding: 32px 16px;
    text-align: center;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 3px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e8f0;
    border: 1px solid var(--border-light);
    transition: transform 0.3s;
    box-sizing: border-box;
    margin: 15px;
}

.deve-item:hover {
    transform: translateY(-8px);
}

.deve-icon {
    margin-bottom: 16px;
    text-align: center;
}

.deve-icon img {
    margin: 0 auto;
    display: block;
}

.deve-item h4 {
    font-size: 1.3rem;
    color: #0a2f5a;
    color: var(--deep-blue);
    margin-bottom: 8px;
    font-weight: 600;
}

.deve-item p {
    color: #4f6f8f;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.75;
}

/* ========== 响应式断点 ========== */

/* PC端：一行 2 列 (≥769px) */
@media (min-width: 769px) {
    .deve-item {
        width: calc(50% - 30px);      /* 2等分，减去左右margin总和(30px) */
    }
}

/* 平板端：一行 2 列 (481px ~ 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .deve-item {
        width: calc(50% - 30px);      /* 2等分 */
        padding: 28px 12px;
    }
    .deve-item h4 {
        font-size: 1.2rem;
    }
    .deve-item p {
        font-size: 0.9rem;
    }
}

/* 手机端：一行 1 列 (≤480px) */
@media (max-width: 480px) {
    .deve-grid {
        margin: -10px;
    }
    .deve-item {
        width: calc(100% - 20px);     /* 占满一行，减去左右margin */
        margin: 10px;
        padding: 24px 12px;
    }
    .deve-item h4 {
        font-size: 1.1rem;
    }
    .deve-item p {
        font-size: 0.85rem;
    }
    .deve-icon img {
        max-width: 60px;
        height: auto;
    }
}

/* 组织架构图 */
.org-chart-image {
	background: #ffffff;
	background: var(--white);
	border-radius: 24px;
	padding: 20px;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	border: 1px solid #e0e8f0;
	border: 1px solid var(--border-light);
	text-align: center;
}
.org-chart-image img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	display: block;
	margin: 0 auto;
}
.org-chart-caption {
	margin-top: 16px;
	color: #4f6f8f;
	color: var(--text-light);
	font-size: 0.95rem;
}

/* 历史沿革时间线 - 保持原样兼容 */
.timeline {
	position: relative;
	padding: 20px 0;
}
.timeline::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 0;
	height: 100%;
	width: 4px;
	background: #e0bc6e;
	background: var(--gold-light);
	border-radius: 2px;
}
.timeline-item {
	position: relative;
	padding-left: 60px;
	margin-bottom: 40px;
}
.timeline-dot {
	position: absolute;
	left: 8px;
	top: 5px;
	width: 28px;
	height: 28px;
	background: #c9a23d;
	background: var(--gold);
	border-radius: 50%;
	border: 4px solid white;
	box-shadow: 0 0 0 2px #c9a23d;
	box-shadow: 0 0 0 2px var(--gold);
	z-index: 2;
}
.timeline-year {
	font-size: 1.8rem;
	font-weight: 700;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 8px;
}
.timeline-content {
	background: #ffffff;
	background: var(--white);
	border-radius: 20px;
	padding: 24px;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	border: 1px solid #e0e8f0;
	border: 1px solid var(--border-light);
}
.timeline-content h4 {
	font-size: 1.3rem;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 12px;
}
.timeline-content p { color: #4f6f8f; color: var(--text-light); }
@media (min-width: 768px) {
	.timeline::before { left: 50%; transform: translateX(-50%); }
	.timeline-item { padding-left: 0; width: 50%; margin-left: 50%; }
	.timeline-item:nth-child(odd) { margin-left: 0; padding-right: 50px; }
	.timeline-item:nth-child(odd) .timeline-dot { left: auto; right: -14px; }
	.timeline-item:nth-child(even) { padding-left: 50px; }
	.timeline-item:nth-child(even) .timeline-dot { left: -14px; }
}
@media (max-width: 767px) { .timeline-year { font-size: 1.5rem; } .timeline-content h4 { font-size:1rem;}.timeline-content p{ font-size:0.75rem;} }

/* 企业荣誉 */
.honor-list {
	background: #ffffff;
	background: var(--white);
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	border: 1px solid #e0e8f0;
	border: 1px solid var(--border-light);
}
.honor-item-list {
	display: flex;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px dashed #e0e8f0;
	border-bottom: 1px dashed var(--border-light);
	align-items: flex-start;
}
.honor-marker {
	color: #c9a23d;
	color: var(--gold);
	font-size: 1.4rem;
	line-height: 1.2;
	min-width: 30px;
	text-align: center;
}
.honor-content {
	flex: 1;
	color: #1e2b3c;
	color: var(--text-dark);
	font-size: 1.05rem;
	line-height: 1.6;
}
.honor-content strong {
	color: #0a2f5a;
	color: var(--deep-blue);
	font-weight: 600;
	margin-right: 8px;
}
@media (max-width: 600px) {
	.honor-list { padding: 20px; }
	.honor-item-list { flex-direction: column; gap: 6px; }
	.honor-marker { text-align: left; }
}

/* 标志释义卡片 - 完全兼容 IE10+ / 360 兼容模式 */
.box-3 {
    display: block;              /* 改用 block，不使用 flex */
    font-size: 0;               /* 消除 inline-block 间隙 */
    margin: -15px;
    text-align: left;
}

.meaning-card {
    display: inline-block;      /* 替代 flex 子项 */
    vertical-align: top;
    font-size: 1rem;            /* 恢复字体大小 */
    background: #ffffff;
    background: var(--white);
    border-radius: 24px;
    padding: 30px 24px;
    /* 柔和阴影（可选） */
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 3px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e8f0;
    border: 1px solid var(--border-light);
    transition: transform 0.3s;
    position: relative;
    counter-increment: card-counter;
    box-sizing: border-box;
    margin: 15px;
}

.meaning-card:hover {
    transform: translateY(-8px);
}

.meaning-card::before {
    content: counter(card-counter);
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(201, 162, 61, 0.15);
    line-height: 1;
}

.meaning-icon {
    font-size: 2.2rem;
    color: #c9a23d;
    color: var(--gold);
    margin-bottom: 20px;
}

.meaning-card h3 {
    font-size: 1.4rem;
    color: #0a2f5a;
    color: var(--deep-blue);
    margin-bottom: 16px;
    font-weight: 600;
}

.meaning-card p {
    color: #4f6f8f;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== 响应式断点 ========== */

/* PC端：一行 3 列 (≥1025px) */
@media (min-width: 1025px) {
    .meaning-card {
        width: calc(33.333% - 30px);  /* 3等分，减去左右margin总和(30px) */
    }
}

/* 平板：一行 2 列 (769px ~ 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .meaning-card {
        width: calc(50% - 30px);      /* 2等分，减去左右margin总和(30px) */
    }
}

/* 手机：一行 1 列 (≤768px) */
@media (max-width: 768px) {
    .box-3 {
        margin: 0;
    }
    .meaning-card {
        width: calc(100% - 30px);     /* 占满一行，减去左右margin */
        margin: 15px;
    }
}

/* 极窄手机：缩小内边距 */
@media (max-width: 480px) {
    .meaning-card {
        padding: 24px 16px;
    }
    .meaning-card h3 {
        font-size: 1.2rem;
    }
    .meaning-card p {
        font-size: 0.9rem;
    }
    .meaning-card::before {
        font-size: 2rem;
        top: 12px;
        right: 16px;
    }
}
/* 文化精粹网格 - 完全兼容 IE10+ / 360 兼容模式 */
.culture-grid {
    display: block;              /* 改用 block，不使用 flex */
    font-size: 0;               /* 消除 inline-block 间隙 */
    margin: -15px;
    margin-top: 40px;
    text-align: left;
}

.culture-card {
    display: inline-block;      /* 替代 flex 子项 */
    vertical-align: top;
    font-size: 1rem;            /* 恢复字体大小 */
    background: #ffffff;
    background: var(--white);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 3px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e8f0;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: transform 0.3s;
    box-sizing: border-box;
    margin: 15px;
}

.culture-card:hover {
    transform: translateY(-8px);
}

.culture-card .gold-icon {
    font-size: 2.5rem;
    color: #c9a23d;
    color: var(--gold);
    margin-bottom: 20px;
}

.culture-card h4 {
    font-size: 1.5rem;
    color: #0a2f5a;
    color: var(--deep-blue);
    margin-bottom: 16px;
    font-weight: 600;
}

.culture-card p {
    color: #4f6f8f;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.culture-card .highlight {
    color: #c9a23d;
    color: var(--gold);
    font-weight: 600;
}

/* ========== 响应式断点 ========== */

/* PC端：一行 3 列 (≥1025px) */
@media (min-width: 1025px) {
    .culture-card {
        width: calc(33.333% - 30px);  /* 3等分，减去左右margin总和(30px) */
    }
}

/* 平板：一行 2 列 (769px ~ 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .culture-card {
        width: calc(50% - 30px);      /* 2等分，减去左右margin总和(30px) */
    }
}

/* 手机：一行 1 列 (≤768px) */
@media (max-width: 768px) {
    .culture-grid {
        margin: 0;
        margin-top: 30px;
    }
    .culture-card {
        width: calc(100% - 30px);     /* 占满一行，减去左右margin */
        margin: 15px;
    }
}

/* 极窄手机：缩小内边距 */
@media (max-width: 480px) {
    .culture-card {
        padding: 24px 16px;
    }
    .culture-card h4 {
        font-size: 1.2rem;
    }
    .culture-card p {
        font-size: 0.9rem;
    }
    .culture-card .gold-icon {
        font-size: 2rem;
    }
}
/* 诗词区块 */
.poem-block {
	background: linear-gradient(135deg, #0a2f5a 0%, #1e4a7a 100%);
	background: linear-gradient(135deg, var(--deep-blue) 0%, var(--deep-blue-light) 100%);
	border-radius: 40px;
	padding: 60px 40px;
	margin: 60px 0;
	color: white;
	text-align: center;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
}
.poem-block p {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 20px;
	font-style: italic;
}
.poem-block small {
	font-size: 1.2rem;
	opacity: 0.8;
	color: #c9a23d;
	color: var(--gold);
}
@media (max-width: 768px) { .poem-block p { font-size: 1.4rem; } }

/* 短句装饰条 */
.motto-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	background: #f5f8fc;
	background: var(--gray-bg);
	border-radius: 60px;
	padding: 30px 40px;
	margin: 40px 0;
	border: 1px solid #e0e8f0;
	border: 1px solid var(--border-light);
}
.motto-item {
	font-size: 1.3rem;
	font-weight: 500;
	color: #0a2f5a;
	color: var(--deep-blue);
	position: relative;
}
.motto-item span {
	color: #c9a23d;
	color: var(--gold);
	font-weight: 700;
	margin-right: 8px;
}
.section-title-center {
	font-size: 2.2rem;
	font-weight: 600;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 16px;
	text-align:center;
}
@media (max-width: 600px) {

	.motto-strip { gap: 20px; padding: 20px; }
	.motto-item { font-size: 1.1rem; }
}

/* 服务详情区域 */
.service-section { padding: 50px 0 0 0; }
/* 服务网格 - 完全兼容 IE10+ / 360 兼容模式 */
.service-grid {
    display: block;              /* 改用 block，不使用 flex */
    font-size: 0;               /* 消除 inline-block 间隙 */
    margin: -20px;
    margin-top: 40px;
    text-align: left;
}

.service-card {
    display: inline-block;      /* 替代 flex 子项 */
    vertical-align: top;
    font-size: 1rem;            /* 恢复字体大小 */
    background: #ffffff;
    background: var(--white);
    border-radius: 28px;
    padding: 40px 32px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 3px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e8f0;
    border: 1px solid var(--border-light);
    transition: transform 0.3s;
    box-sizing: border-box;
    margin: 20px;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    font-size: 3rem;
    color: #c9a23d;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #0a2f5a;
    color: var(--deep-blue);
    margin-bottom: 16px;
}

.service-desc {
    color: #4f6f8f;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    display: block;              /* 改为 block，避免 flex 兼容问题 */
    margin-bottom: 12px;
    color: #1e2b3c;
    color: var(--text-dark);
    overflow: hidden;           /* 清除浮动 */
}

.service-features i {
    color: #c9a23d;
    color: var(--gold);
    font-size: 1.1rem;
    margin-right: 10px;
    float: left;                /* 使用 float 替代 flex */
    margin-top: 2px;
}

.service-features span {
    display: block;
    overflow: hidden;           /* 让文字环绕图标 */
}

/* ========== 响应式断点 ========== */

/* PC端：一行 2 列 (≥1025px) */
@media (min-width: 1025px) {
    .service-card {
        width: calc(50% - 40px);      /* 2等分，减去左右margin总和(40px) */
    }
}

/* 平板：一行 1 列 (769px ~ 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .service-card {
        width: calc(50% - 40px);      /* 保持一行2列，或根据需要改为100% */
    }
}

/* 手机：一行 1 列 (≤768px) */
@media (max-width: 768px) {
    .service-grid {
        margin: -15px;
        margin-top: 30px;
    }
    .service-card {
        width: calc(100% - 30px);     /* 占满一行 */
        margin: 15px;
        padding: 28px 20px;
    }
    .service-card h3 {
        font-size: 1.4rem;
    }
    .service-icon {
        font-size: 2.5rem;
    }
}

/* 极窄手机：缩小内边距和字号 */
@media (max-width: 480px) {
    .service-card {
        padding: 24px 16px;
    }
    .service-card h3 {
        font-size: 1.2rem;
    }
    .service-desc {
        font-size: 0.9rem;
    }
    .service-features li {
        font-size: 0.9rem;
    }
    .service-features i {
        font-size: 1rem;
        margin-right: 8px;
    }
}

/* 优势部分容器 - 完全兼容 IE10+ / 360 兼容模式 */
.advantages {
    background: #f5f8fc;
    background: var(--gray-bg);
    border-radius: 40px;
    padding: 60px 40px;
    margin: 0 auto;
    display: block;              /* 改用 block，不使用 flex */
}

/* 优势网格 - 完全兼容 IE10+ / 360 兼容模式 */
.advantages-grid {
    display: block;              /* 改用 block，不使用 flex */
    font-size: 0;               /* 消除 inline-block 间隙 */
    margin: -15px;
    width: 100%;
    text-align: left;
}

.advantage-card {
    display: inline-block;      /* 替代 flex 子项 */
    vertical-align: top;
    font-size: 1rem;            /* 恢复字体大小 */
    background: #ffffff;
    background: var(--white);
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 3px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    box-sizing: border-box;
    margin: 15px;
    /* 移除 max-width，由媒体查询控制宽度 */
}

.advantage-card:hover {
    transform: translateY(-8px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: #f5f8fc;
    background: var(--gray-bg);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: #c9a23d;
    color: var(--gold);
    text-align: center;
    line-height: 80px;          /* 垂直居中，替代 flex */
}

/* IE 兼容：确保图标居中 */
.advantage-icon i {
    display: inline-block;
    vertical-align: middle;
}

/* 针对没有 i 标签的图标（如文字图标） */
.advantage-icon .icon-text {
    display: inline-block;
    vertical-align: middle;
}

.advantage-card h3 {
    font-size: 1.5rem;
    color: #0a2f5a;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.advantage-card p {
    color: #4f6f8f;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== 响应式断点 ========== */

/* PC端：一行 4 列 (≥1200px) */
@media (min-width: 1200px) {
    .advantage-card {
        width: calc(25% - 30px);      /* 4等分，减去左右margin总和(30px) */
    }
}

/* PC端小屏：一行 3 列 (992px ~ 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .advantage-card {
        width: calc(33.333% - 30px);  /* 3等分 */
    }
}

/* 平板：一行 2 列 (769px ~ 991px) */
@media (min-width: 769px) and (max-width: 991px) {
    .advantage-card {
        width: calc(50% - 30px);      /* 2等分 */
    }
}

/* 平板竖屏/大手机：一行 2 列 (481px ~ 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .advantages {
        padding: 40px 20px;
    }
    .advantage-card {
        width: calc(50% - 30px);      /* 2等分 */
        padding: 28px 16px;
    }
    .advantage-card h3 {
        font-size: 1.3rem;
    }
    .advantage-card p {
        font-size: 0.9rem;
    }
    .advantage-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 2rem;
    }
}

/* 手机：一行 1 列 (≤480px) */
@media (max-width: 480px) {
    .advantages {
        padding: 30px 16px;
        border-radius: 30px;
    }
    .advantages-grid {
        margin: -10px;
    }
    .advantage-card {
        width: calc(100% - 20px);     /* 占满一行 */
        margin: 10px;
        padding: 24px 16px;
    }
    .advantage-card h3 {
        font-size: 1.2rem;
    }
    .advantage-card p {
        font-size: 0.85rem;
    }
    .advantage-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
}

/* 极小手机：一行 1 列 (≤320px) */
@media (max-width: 320px) {
    .advantage-card {
        padding: 20px 12px;
    }
    .advantage-card h3 {
        font-size: 1.1rem;
    }
    .advantage-card p {
        font-size: 0.8rem;
    }
    .advantage-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.4rem;
    }
}
/* 资产规模概览 - 完全兼容 IE10+ / 360 兼容模式 */
.asset-overview {
    display: block;              /* 改用 block，不使用 flex */
    font-size: 0;               /* 消除 inline-block 间隙 */
    margin: 60px 0;
    padding: 40px;
    background: #ffffff;
    background: var(--white);
    border-radius: 32px;
    box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
    box-shadow: var(--shadow);
    text-align: center;
}

.asset-item {
    display: inline-block;      /* 替代 flex 子项 */
    vertical-align: top;
    font-size: 1rem;            /* 恢复字体大小 */
    text-align: center;
    box-sizing: border-box;
}

.asset-number {
    font-size: 4rem;
    font-weight: 700;
    color: #0a2f5a;
    color: var(--deep-blue);
    line-height: 1.2;
}

.asset-number small {
    font-size: 1.5rem;
    color: #c9a23d;
    color: var(--gold);
    margin: 0 2px;
}

.asset-label {
    font-size: 1.2rem;
    color: #4f6f8f;
    color: var(--text-light);
    margin-top: 10px;
}

/* ========== 响应式断点 ========== */

/* PC端：一行 3 个 (≥1025px) */
@media (min-width: 1025px) {
    .asset-item {
        width: calc(33.333% - 40px);   /* 3等分，减去间距 */
        margin: 0 20px;
    }
}

/* 平板：一行 3 个 (769px ~ 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .asset-item {
        width: calc(33.333% - 30px);   /* 3等分 */
        margin: 0 15px;
    }
    .asset-number {
        font-size: 3rem;
    }
    .asset-number small {
        font-size: 1.2rem;
    }
    .asset-label {
        font-size: 1rem;
    }
}

/* 手机端：一行 3 个 (481px ~ 768px) - 保持3个 */
@media (max-width: 768px) {
    .asset-overview {
        padding: 25px 15px;
        margin: 40px 0;
    }
    .asset-item {
        width: calc(33.333% - 10px);   /* 3等分，缩小间距 */
        margin: 0 5px;
    }
    .asset-number {
        font-size: 2rem;
    }
    .asset-number small {
        font-size: 1rem;
    }
    .asset-label {
        font-size: 0.85rem;
        margin-top: 5px;
    }
}


/* 船舶表格 */
.ship-table-section { margin: 60px 0; }
.table-wrapper {
	overflow-x: auto;
	border-radius: 20px;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	background: #ffffff;
	background: var(--white);
}
table {
	width: 100%;
	border-collapse: collapse;
	min-width: 1000px;
}
.ship-td { cursor: pointer; }
th {
	background: #0a2f5a;
	background: var(--deep-blue);
	color: white;
	font-weight: 600;
	padding: 16px 12px;
	text-align: center;
}
td {
	padding: 14px 12px;
	text-align: center;
	border-bottom: 1px solid #e0e8f0;
	border-bottom: 1px solid var(--border-light);
	color: #1e2b3c;
	color: var(--text-dark);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: #f0f7ff; }
.ship-name {
	font-weight: 600;
	color: #0a2f5a;
	color: var(--deep-blue);
}
.new-ship { background: rgba(201, 162, 61, 0.1); }
.new-ship .ship-name { color: #c9a23d; color: var(--gold); }

/* 联系方式主卡片 */
.contact-main {
	background: #ffffff;
	background: var(--white);
	border-radius: 32px;
	padding: 40px;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	margin: 60px 0;
}
.contact-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.contact-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	flex: 1;
	min-width: 220px;
}
.contact-icon {
	width: 50px;
	height: 50px;
	background: #f5f8fc;
	background: var(--gray-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #c9a23d;
	color: var(--gold);
	flex-shrink: 0;
}
.contact-detail h3 {
	font-size: 1.2rem;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 8px;
}
.contact-detail p {
	color: #4f6f8f;
	color: var(--text-light);
	line-height: 1.6;
}
.contact-detail .tel {
	font-size: 1.3rem;
	font-weight: 600;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-top: 4px;
}
@media (max-width: 700px) { .contact-item { flex-basis: 100%; } }

/* 部门电话网格 */
.dept-section { margin: 60px 0; }
/* 部门电话网格 - 完全兼容 IE10+ / 360 兼容模式 */
.dept-grid {
    display: block;              /* 改用 block，不使用 flex */
    font-size: 0;               /* 消除 inline-block 间隙 */
    margin: -15px auto;
    text-align: left;
}

.dept-card {
    display: inline-block;      /* 替代 flex 子项 */
    vertical-align: top;
    font-size: 1rem;            /* 恢复字体大小 */
    background: #ffffff;
    background: var(--white);
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 3px -1px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
    box-sizing: border-box;
    margin: 15px;
}

.dept-card:hover {
    transform: translateY(-8px);
}

.dept-icon {
    font-size: 2.2rem;
    color: #c9a23d;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.dept-card h3 {
    font-size: 1.4rem;
    color: #0a2f5a;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.dept-phone {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a2f5a;
    color: var(--deep-blue);
    margin: 8px 0;
}

.dept-phone i {
    color: #c9a23d;
    color: var(--gold);
    margin-right: 8px;
    font-size: 1.1rem;
}

/* ========== 响应式断点 ========== */

/* PC端：一行 3 列 (≥1025px) */
@media (min-width: 1025px) {
    .dept-card {
        width: calc(33.333% - 30px);  /* 3等分，减去左右margin总和(30px) */
    }
}

/* 平板：一行 2 列 (769px ~ 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .dept-card {
        width: calc(50% - 30px);      /* 2等分，减去左右margin总和(30px) */
    }
}

/* 手机：一行 1 列 (≤768px) */
@media (max-width: 768px) {
    .dept-grid {
        margin: -10px auto;
    }
    .dept-card {
        width: calc(100% - 30px);     /* 占满一行，减去左右margin */
        margin: 15px;
        padding: 24px 20px;
    }
}

/* 极窄手机：缩小内边距和字号 */
@media (max-width: 480px) {
    .dept-card {
        padding: 20px 16px;
    }
    .dept-card h3 {
        font-size: 1.2rem;
    }
    .dept-phone {
        font-size: 1.1rem;
    }
    .dept-icon {
        font-size: 1.8rem;
    }
}
/* 地图部分 */
.map-section { margin: 60px 0; }
.map-container {
	width: 100%;
	height: 600px;
	background: #e9eef4;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	position: relative;
}
.map-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #4f6f8f;
	color: var(--text-light);
	background: #d9e2ef;
}
.map-placeholder i {
	font-size: 5rem;
	color: #c9a23d;
	color: var(--gold);
	margin-bottom: 20px;
}
.map-placeholder p { font-size: 1.2rem; }
.map-address {
	margin-top: 16px;
	color: #4f6f8f;
	color: var(--text-light);
	text-align: center;
}

/* 投诉咨询表单 */
.form-section {
	background: #ffffff;
	background: var(--white);
	border-radius: 40px;
	padding: 50px;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	margin: 60px 0;
}
.form-title {
	font-size: 2rem;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 12px;
}
.form-sub {
	color: #4f6f8f;
	color: var(--text-light);
	margin-bottom: 40px;
}
.form-grid {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
}
.form-group {
	flex: 1 1 calc(50% - 30px);
	margin: 15px;
	margin-bottom: 24px;
}
.form-group.full-width { flex-basis: calc(100% - 30px); }
.form-label {
	display: block;
	font-weight: 500;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 8px;
}
.form-control {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid #e0e8f0;
	border: 1px solid var(--border-light);
	border-radius: 16px;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	background: #ffffff;
	background: var(--white);
}
.form-control:focus {
	outline: none;
	border-color: #c9a23d;
	border-color: var(--gold);
}
select.form-control {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f6f8f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 18px center;
	background-size: 18px;
}
textarea.form-control {
	resize: vertical;
	min-height: 120px;
}
.btn-submit {
	background: #c9a23d;
	background: var(--gold);
	color: #0a2f5a;
	color: var(--deep-blue);
	border: none;
	padding: 16px 48px;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 600;
	cursor: pointer;
	border: 1px solid transparent;
}
.btn-submit:hover {
	background: transparent;
	border-color: #c9a23d;
	border-color: var(--gold);
	color: #c9a23d;
	color: var(--gold);
	transform: translateY(-2px);
}
@media (max-width: 700px) {
	.form-group { flex-basis: calc(100% - 30px); }
	.form-section { padding: 30px 20px; }
}

/* 人才理念 */
.philosophy-section {
	background: #ffffff;
	background: var(--white);
	border-radius: 40px;
	padding: 60px 40px;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	margin: 60px 0;
	text-align: center;
}
.philosophy-quote {
	font-size: 2rem;
	font-weight: 600;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 20px;
	position: relative;
}
.philosophy-quote i {
	color: #c9a23d;
	color: var(--gold);
	font-size: 2.5rem;
	margin: 0 16px;
	opacity: 0.5;
}
.philosophy-desc {
	max-width: 800px;
	margin: 0 auto 40px;
	color: #4f6f8f;
	color: var(--text-light);
	font-size: 1.2rem;
	line-height: 1.8;
}
/* 人才理念网格 - 完全兼容 IE10+ / 360 兼容模式 */
.philosophy-grid {
    display: block;              /* 改用 block，不使用 flex */
    font-size: 0;               /* 消除 inline-block 间隙 */
    margin: -15px;
    margin-top: 40px;
    text-align: left;
}

.philosophy-card {
    display: inline-block;      /* 替代 flex 子项 */
    vertical-align: top;
    font-size: 1rem;            /* 恢复字体大小 */
    padding: 30px 20px;
    background: #f5f8fc;
    background: var(--gray-bg);
    border-radius: 28px;
    transition: transform 0.3s;
    box-sizing: border-box;
    margin: 15px;
}

.philosophy-card:hover {
    transform: translateY(-8px);
}

.philosophy-card i {
    font-size: 2.5rem;
    color: #c9a23d;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.philosophy-card h3 {
    font-size: 1.4rem;
    color: #0a2f5a;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.philosophy-card p {
    color: #4f6f8f;
    color: var(--text-light);
}

/* ========== 响应式断点 ========== */

/* PC端：一行 3 列 (≥1025px) */
@media (min-width: 1025px) {
    .philosophy-card {
        width: calc(33.333% - 30px);  /* 3等分，减去左右margin总和(30px) */
    }
}

/* 平板：一行 2 列 (769px ~ 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .philosophy-section{ padding: 30px 15px;}
	.philosophy-card {
        width: calc(50% - 30px);      /* 2等分，减去左右margin总和(30px) */
    }
}

/* 手机：一行 1 列 (≤768px) */
@media (max-width: 768px) {
    .philosophy-section{ padding: 30px 15px;}
    .philosophy-grid {
        margin: 0;
        margin-top: 30px;
    }
    .philosophy-card {
        width: calc(100% - 30px);     /* 占满一行，减去左右margin */
        margin: 15px;
    }
}

/* 极窄手机：缩小内边距和字号 */
@media (max-width: 480px) {
    .philosophy-section{ padding: 30px 15px;}
    .philosophy-card {
        padding: 24px 16px;
    }
    .philosophy-card h3 {
        font-size: 1.2rem;
    }
    .philosophy-card p {
        font-size: 0.9rem;
    }
    .philosophy-card i {
        font-size: 2rem;
    }
}

/* 人才结构 */
.structure-section { margin: 60px 0; }
/* 人才结构网格 - 完全兼容 IE10+ / 360 兼容模式 */
.structure-grid {
    display: block;              /* 改用 block，不使用 flex */
    font-size: 0;               /* 消除 inline-block 间隙 */
    margin: -15px;
    text-align: left;
}

.structure-item {
    display: inline-block;      /* 替代 flex 子项 */
    vertical-align: top;
    font-size: 1rem;            /* 恢复字体大小 */
    background: #ffffff;
    background: var(--white);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 3px -1px rgba(0, 0, 0, 0.05);
    text-align: center;
    box-sizing: border-box;
    margin: 15px;
}

.structure-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0a2f5a;
    color: var(--deep-blue);
    margin-bottom: 10px;
    line-height: 1.2;
}

.structure-number small {
    font-size: 1.4rem;
    color: #c9a23d;
    color: var(--gold);
    margin-left: 4px;
}

.structure-label {
    font-size: 1.1rem;
    color: #4f6f8f;
    color: var(--text-light);
}

/* ========== 响应式断点 ========== */

/* PC端：一行 4 列 (≥1025px) */
@media (min-width: 1025px) {
    .structure-item {
        width: calc(25% - 30px);      /* 4等分，减去左右margin总和(30px) */
    }
}

/* 平板：一行 2 列 (769px ~ 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .structure-item {
        width: calc(50% - 30px);      /* 2等分，减去左右margin总和(30px) */
    }
}

/* 手机：一行 1 列 (≤768px) */
@media (max-width: 768px) {
    .structure-grid {
        margin: 0;
    }
    .structure-item {
        width: calc(100% - 30px);     /* 占满一行，减去左右margin */
        margin: 15px;
        padding: 24px;
    }
}

/* 极窄手机：缩小字号和内边距 */
@media (max-width: 480px) {
    .structure-item {
        padding: 20px;
    }
    .structure-number {
        font-size: 2.2rem;
    }
    .structure-number small {
        font-size: 1.1rem;
    }
    .structure-label {
        font-size: 0.9rem;
    }
}

/* 招聘信息表格 */
.job-section {
	margin: 60px 0;
	background: #ffffff;
	background: var(--white);
	border-radius: 40px;
	padding: 50px;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
}
.job-section .table-wrapper { overflow-x: auto; }
.job-section table { min-width: 800px; }
.job-section th { text-align: left; }
.job-badge {
	background: #e0bc6e;
	background: var(--gold-light);
	color: #0a2f5a;
	color: var(--deep-blue);
	padding: 4px 12px;
	border-radius: 40px;
	font-size: 0.85rem;
	font-weight: 600;
	display: inline-block;
}
.btn-apply {
	background: #0a2f5a;
	background: var(--deep-blue);
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 30px;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
}
.btn-apply:hover {
	background: #c9a23d;
	background: var(--gold);
	color: #0a2f5a;
	color: var(--deep-blue);
}

/* 教育培训 */
.training-section { margin: 60px 0; }
/* 教育培训网格 - 完全兼容 IE10+ / 360 兼容模式 */
.training-grid {
    display: block;              /* 改用 block，不使用 flex */
    font-size: 0;               /* 消除 inline-block 间隙 */
    margin: -15px;
    text-align: left;
}

.training-card {
    display: inline-block;      /* 替代 flex 子项 */
    vertical-align: top;
    font-size: 1rem;            /* 恢复字体大小 */
    background: #ffffff;
    background: var(--white);
    border-radius: 28px;
    padding: 36px 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 3px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    box-sizing: border-box;
    margin: 15px;
}

.training-card:hover {
    transform: translateY(-8px);
}

.training-icon {
    width: 70px;
    height: 70px;
    background: #f5f8fc;
    background: var(--gray-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    color: #c9a23d;
    color: var(--gold);
}


.training-card h3 {
    font-size: 1.5rem;
    color: #0a2f5a;
    color: var(--deep-blue);
    margin-bottom: 16px;
}

.training-card p {
    color: #4f6f8f;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== 响应式断点 ========== */

/* PC端：一行 3 列 (≥1025px) */
@media (min-width: 1025px) {
    .job-section{ padding:15px;}
	.training-card {
        width: calc(33.333% - 30px);  /* 3等分，减去左右margin总和(30px) */
    }
}

/* 平板：一行 2 列 (769px ~ 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .job-section{ padding:15px;}
    .training-card {
        width: calc(50% - 30px);      /* 2等分，减去左右margin总和(30px) */
    }
}

/* 手机：一行 1 列 (≤768px) */
@media (max-width: 768px) {
    .job-section{ padding:15px;}
    .training-grid {
        margin: 0;
    }
    .training-card {
        width: calc(100% - 30px);     /* 占满一行，减去左右margin */
        margin: 15px;
        padding: 28px 20px;
    }
}

/* 极窄手机：缩小内边距和字号 */
@media (max-width: 480px) {
    .training-card {
        padding: 24px 16px;
    }
    .training-card h3 {
        font-size: 1.2rem;
    }
    .training-card p {
        font-size: 0.9rem;
    }
    .training-icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
        margin-bottom: 18px;
    }
}
/* 新闻列表（卡片） */
.news-section { padding: 0; }
/* 新闻网格容器 - 使用 inline-block 实现完美兼容 */
.news-list-grid {
    display: block;
    font-size: 0;              /* 消除 inline-block 间隙 */
    margin: 40px -15px;
    text-align: left;
}

/* 新闻卡片 - inline-block 基础样式 */
.news-card {
    display: inline-block;
    vertical-align: top;
    font-size: 1rem;           /* 恢复字体大小 */
    background: #ffffff;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 3px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e8f0;
    border: 1px solid var(--border-light);
    transition: transform 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
    margin: 0 15px 30px 15px;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* 图片容器 */
.news-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    background: #d9e2ef;
    overflow: hidden;
}

.news-image {
    width: 100%;
    display: block;
}

.news-card:hover .news-image {
	transform: scale(1.02);
}
/* 默认占位图标（当图片加载失败时显示） */
.image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e9eef4;
	color: var(--deep-blue);
	font-size: 3rem;
}
.hidden {
	display: none;
}

/* 新闻内容区域 */
.news-card .news-content {
    padding: 24px;
}

.news-date {
    color: #c9a23d;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}

.news-titlesm {
	font-size: 1rem;
	font-weight: 600;
	height:60px;
	line-height:30px;
	overflow:hidden;
	margin-bottom: 8px;
	color: #0a2f5a;
	color: var(--deep-blue);
}

.news-title2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0a2f5a;
    color: var(--deep-blue);
    line-height: 1.4;
}

.news-excerpt {
    color: #4f6f8f;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
	display:none;
}

.read-more {
    color: #c9a23d;
	font-size:1rem;
    color: var(--gold);
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* ========== 响应式断点 ========== */

/* PC端：一行 3 个 (≥1025px) */
@media (min-width: 1025px) {
    .news-card {
        width: calc(33.333% - 30px);  /* 3等分，减去左右margin总和(30px) */
    }
}

/* 平板：一行 2 个 (769px ~ 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .news-card {
        width: calc(50% - 30px);      /* 2等分，减去左右margin总和(30px) */
    }
}

/* 手机：一行 1 个 (≤768px) */
@media (max-width: 768px) {
    .news-list-grid {
        margin: 20px 0;
    }
    .news-card {
        width: calc(100% - 30px);     /* 占满一行，减去左右margin */
        margin: 0 15px 20px 15px;
    }
    
    .news-title2 {
        font-size: 1.1rem;
    }
    
    .news-excerpt {
        font-size: 0.85rem;
    }
}

/* 极窄手机：缩小内边距 */
@media (max-width: 480px) {
    .news-card .news-content {
        padding: 16px;
    }
    
    .news-title2 {
        font-size: 1rem;
    }
}

/* ========== 分类切换（新闻标签页） ========== */
.news-category {
    display: block;
}

.news-category.hidden {
    display: none;
}

/* ========== 分页导航（完全兼容） ========== */
.pagination {
    text-align: center;
    margin-top: 40px;
    list-style: none;
    padding: 0;
}
.pagination li {
    display: inline-block;
    margin: 0 5px;
}
.pagination li a {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 12px;
    background: #ffffff;
    color: #1e2b3c;
    font-weight: 500;
    border: 1px solid #e0e8f0;
    text-decoration: none;
}
.pagination li a:hover {
    background: #e0bc6e;
    color: #0a2f5a;
    border-color: #c9a23d;
}
.pagination li.active a {
    background: #0a2f5a;
    color: white;
    border-color: #0a2f5a;
}

/* 面包屑 */
.breadcrumb {
	padding: 20px 0;
	color: #4f6f8f;
	color: var(--text-light);
	font-size: 0.95rem;
}
.breadcrumb a {
	color: #4f6f8f;
	color: var(--text-light);
	text-decoration: none;
}
.breadcrumb a:hover { color: #c9a23d; color: var(--gold); }
.breadcrumb i {
	margin: 0 8px;
	font-size: 0.8rem;
	color: #c9a23d;
	color: var(--gold);
}

/* 新闻详情 */
.news-detail {
	background: #ffffff;
	background: var(--white);
	border-radius: 40px;
	padding: 50px;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	margin: 30px 0 60px;
}
.news-header {
	margin-bottom: 40px;
	border-bottom: 1px solid #e0e8f0;
	border-bottom: 1px solid var(--border-light);
	padding-bottom: 30px;
}
.news-header .news-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 20px;
	line-height: 1.3;
}
.news-meta {
	text-align:center;
	color: #4f6f8f;
	color: var(--text-light);
	font-size: 1rem;
}
.news-meta span { margin:0 15px; }
.news-meta i {
	color: #c9a23d;
	color: var(--gold);
	margin-right: 6px;
}
.news-category {
	background: #e0bc6e;
	background: var(--gold-light);
	color: #0a2f5a;
	color: var(--deep-blue);
	padding: 4px 16px;
	border-radius: 40px;
	font-weight: 600;
	font-size: 0.9rem;
}
.news-featured-image {
	width: 100%;
	height: 400px;
	border-radius: 24px;
	overflow: hidden;
	margin-bottom: 40px;
}
.news-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news-content {
	color: #1e2b3c;
	color: var(--text-dark);
	font-size: 1.1rem;
	line-height: 1.8;
}
.news-content p { font-size:1rem; margin-bottom:15px;}
.news-content h2 {
	font-size: 1.8rem;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin: 40px 0 20px;
}
.news-content h3 {
	font-size: 1.25rem;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin: 30px 0 15px;
}
.news-content h4 {
	font-size: 1.25rem;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin: 0 15px;
}
.news-content blockquote {
	border-left: 4px solid #c9a23d;
	border-left: 4px solid var(--gold);
	background: #f5f8fc;
	background: var(--gray-bg);
	padding: 20px 30px;
	margin: 30px 0;
	border-radius: 0 20px 20px 0;
	font-style: italic;
	color: #4f6f8f;
	color: var(--text-light);
}
.news-content ul, .news-content ol { margin: 20px 0 20px 30px; }
.news-content li { margin-bottom: 8px; }
.news-content img {
	max-width: 100%;
	border-radius: 16px;
}
.attachments {
	margin: 40px 0;
	padding: 30px;
	background: #f5f8fc;
	background: var(--gray-bg);
	border-radius: 24px;
}
.attachments h4 {
	font-size: 1.3rem;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.attachment-list { list-style: none; }
.attachment-list li { margin-bottom: 12px; }
.attachment-list a {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #1e2b3c;
	color: var(--text-dark);
	text-decoration: none;
	padding: 10px 16px;
	background: #ffffff;
	background: var(--white);
	border-radius: 12px;
}
.attachment-list a:hover {
	background: #e0bc6e;
	background: var(--gold-light);
	color: #0a2f5a;
	color: var(--deep-blue);
	transform: translateX(5px);
}
.attachment-list i {
	color: #c9a23d;
	color: var(--gold);
	font-size: 1.2rem;
}
.attachment-size {
	margin-left: auto;
	color: #4f6f8f;
	color: var(--text-light);
	font-size: 0.9rem;
}

@media (max-width: 768px) {
	.news-detail { margin:15px 0; padding: 15px; border-radius: 15px; }
	.news-detail .news-title{ font-size:1.25rem;}
	.news-content{ padding:0}
}


/* 上一篇/下一篇导航 - 完全兼容 IE10+ / 360 兼容模式 */
.post-navigation {
    display: block;
    overflow: hidden;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #e0e8f0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid #e0e8f0;
    border-bottom: 1px solid var(--border-light);
}

/* 上一篇链接 - 左浮动 */
.post-navigation .nav-link-prev {
    float: left;
    width: 48%;
    text-decoration: none;
    color: #1e2b3c;
    color: var(--text-dark);
    overflow: hidden;
}

/* 下一篇链接 - 右浮动 */
.post-navigation .nav-link-next {
    float: right;
    width: 48%;
    text-align: right;
    text-decoration: none;
    color: #1e2b3c;
    color: var(--text-dark);
    overflow: hidden;
}

/* 无上一篇/下一篇时的占位样式 */
.post-navigation .nav-link-prev.disabled,
.post-navigation .nav-link-next.disabled {
    cursor: default;
    opacity: 0.6;
    pointer-events: none;
}

.post-navigation .nav-link-prev:hover,
.post-navigation .nav-link-next:hover {
    color: #c9a23d;
    color: var(--gold);
}

/* 箭头和内容包装器 */
.post-navigation .nav-arrow-wrapper {
    display: inline-block;
    vertical-align: middle;
}

.post-navigation .nav-link-prev .nav-arrow-wrapper {
    margin-right: 12px;
}

.post-navigation .nav-link-next .nav-arrow-wrapper {
    margin-left: 12px;
}

.post-navigation .arrow {
    width: 44px;
    height: 44px;
    background: #f5f8fc;
    background: var(--gray-bg);
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 44px;
    color: #c9a23d;
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.2s;
}

.post-navigation .nav-link-prev:hover .arrow,
.post-navigation .nav-link-next:hover .arrow {
    background: #c9a23d;
    background: var(--gold);
    color: #0a2f5a;
    color: var(--deep-blue);
}

/* 内容区域 */
.post-navigation .nav-content {
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 60px);
}

.post-navigation .nav-link-next .nav-content {
    text-align: right;
}

.post-navigation .nav-label {
    font-size: 0.85rem;
    color: #4f6f8f;
    color: var(--text-light);
    margin-bottom: 4px;
}

.post-navigation .nav-title {
    font-weight: 600;
    font-size: 0.95rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* ========== 移动端适配 ========== */
@media (max-width: 768px) {
    .post-navigation {
        padding: 20px 0;
        margin: 30px 0;
    }
    
    /* 移动端改为上下布局 */
    .post-navigation .nav-link-prev,
    .post-navigation .nav-link-next {
        float: none;
        width: 100%;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .post-navigation .nav-link-next {
        margin-bottom: 0;
        text-align: left;
    }
    
    .post-navigation .nav-link-next .nav-arrow-wrapper {
        margin-right: 12px;
        margin-left: 0;
    }
    
    .post-navigation .arrow {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 1rem;
    }
    
    .post-navigation .nav-label {
        font-size: 0.8rem;
    }
    
    .post-navigation .nav-title {
        font-size: 0.85rem;
        white-space: normal;
        word-break: break-word;
    }
    
    .post-navigation .nav-content {
        max-width: calc(100% - 55px);
    }
}

@media (max-width: 480px) {
    .post-navigation .arrow {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 0.9rem;
    }
    
    .post-navigation .nav-title {
        font-size: 0.8rem;
    }
    
    .post-navigation .nav-label {
        font-size: 0.7rem;
    }
    
    .post-navigation .nav-content {
        max-width: calc(100% - 48px);
    }
}


/* 滚动淡入动画
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}
 */
/* 弹窗 (Modal) - 移除backdrop-filter */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7); /* fallback */
	z-index: 2000;
	display: none;
	justify-content: center;
	align-items: center;
	padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-container {
	background: #ffffff;
	background: var(--white);
	border-radius: 40px;
	width: 100%;
	max-width: 1024px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 30px 60px rgba(0,0,0,0.3);
	position: relative;
	animation: modalFadeIn 0.3s;
}
@keyframes modalFadeIn {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}
.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	background: #f5f8fc;
	background: var(--gray-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0a2f5a;
	color: var(--deep-blue);
	font-size: 1.3rem;
	cursor: pointer;
	border: 1px solid #e0e8f0;
	border: 1px solid var(--border-light);
}
.modal-close:hover {
	background: #c9a23d;
	background: var(--gold);
	color: #0a2f5a;
	color: var(--deep-blue);
}
.modal-content { padding: 50px; }
.modal-news-header {
	margin-bottom: 30px;
	border-bottom: 1px solid #e0e8f0;
	border-bottom: 1px solid var(--border-light);
	padding-bottom: 20px;
}
.modal-news-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 15px;
	line-height: 1.3;
}
.modal-news-image {
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	margin: 30px 0;
}
.modal-news-image img { width: 100%; object-fit: cover; }
.modal-news-body {
	color: #1e2b3c;
	color: var(--text-dark);
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 30px;
}
.modal-news-body p { margin-bottom: 20px; }
.modal-attachments {
	background: #f5f8fc;
	background: var(--gray-bg);
	border-radius: 20px;
	padding: 25px;
	margin: 30px 0;
}
.modal-attachments h4 {
	font-size: 1.2rem;
	color: #0a2f5a;
	color: var(--deep-blue);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.modal-attachment-list { list-style: none; }
.modal-attachment-list li { margin-bottom: 10px; }
.modal-attachment-list a {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #1e2b3c;
	color: var(--text-dark);
	text-decoration: none;
	padding: 8px 12px;
	background: #ffffff;
	background: var(--white);
	border-radius: 10px;
}
.modal-attachment-list a:hover {
	background: #e0bc6e;
	background: var(--gold-light);
	transform: translateX(5px);
}
.modal-attachment-list i {
	color: #c9a23d;
	color: var(--gold);
}
.modal-navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e0e8f0;
	border-top: 1px solid var(--border-light);
	display: none;
}
@media (max-width: 700px) {
	.modal-content { padding: 30px 20px; }
	.modal-news-title { font-size: 1.8rem; }
	.modal-news-image { height: 200px; }
	.modal-navigation { flex-direction: column; gap: 15px; }
}

/* 右侧浮动按钮组 */
.float-buttons {
	position: fixed;
	right: 24px;
	bottom: 80px;
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.float-item {
	width: 56px;
	height: 56px;
	background: #ffffff;
	background: var(--white);
	border-radius: 50%;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid #e0e8f0;
	border: 1px solid var(--border-light);
	position: relative;
}
.float-item:hover {
	transform: translateY(-4px);
	background: #0a2f5a;
	background: var(--deep-blue);
	color: white;
	border-color: #0a2f5a;
	border-color: var(--deep-blue);
}
.float-item i {
	font-size: 1.4rem;
	margin-bottom: 2px;
}
.float-item span {
	font-size: 0.7rem;
	font-weight: 500;
}
.float-item:hover i,
.float-item:hover span { color: white; }
.wechat-qrcode {
	position: absolute;
	right: 70px;
	bottom: -10px;
	width: 180px;
	background: #ffffff;
	background: var(--white);
	border-radius: 16px;
	box-shadow: 0 15px 40px -12px rgba(10,47,90,0.15);
	box-shadow: var(--shadow);
	padding: 10px 0;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	pointer-events: none;
	border: 1px solid #e0e8f0;
	border: 1px solid var(--border-light);
	z-index: 1000;
}
.wechat-qrcode img {
	width: 120px;
	height: 120px;
	margin-bottom: 12px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wechat-qrcode p {
	font-size: 0.85rem;
	color: #1e2b3c;
	color: var(--text-dark);
	margin: 0;
}
.wechat-item:hover .wechat-qrcode {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	right: 70px;
}
.back-to-top {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
.back-to-top.show {
	opacity: 1;
	visibility: visible;
}
@media (max-width: 768px) {
	.float-buttons { right: 16px; bottom: 60px; gap: 10px; }
	.float-item { width: 48px; height: 48px; }
	.float-item i { font-size: 1.2rem; }
	.float-item span { font-size: 0.6rem; }
	.wechat-qrcode { right: 60px; width: 160px; padding: 12px; }
	.wechat-qrcode img { width: 100px; height: 100px; }
	.wechat-item:hover .wechat-qrcode { right: 60px; }
}

.noinfo{text-align: center; padding: 50px;font-size: 1rem; color: var(--gold);}