/* 第二个导航数据展示区域样式 */
.second-nav-section {
	width: 100%;
	background: url(../images/1_11.png) no-repeat center center;
	background-size: cover;
	padding: 60px 0;
	position: relative;
}
.second-nav-container {
	width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.second-nav-top {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
}
.second-nav-title-box {
	flex: 0 0 300px;
	background-color: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.second-nav-title {
	margin: 90px 0 10px 0;
	font-size: 28px;
	font-weight: 700;
	color: #333;
	line-height: 1.2;
}
.second-nav-english {
	display: block;
	font-size: 14px;
	color: #666;
	margin-bottom: 20px;
	letter-spacing: 1px;
}
.second-nav-viewall {
	display: inline-block;
	color: #bf1313;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}
.second-nav-viewall:hover {
	color: #a01010;
	text-decoration: underline;
}
.second-nav-featured {
	flex: 1;
	display: flex;
	gap: 20px;
}
.second-nav-featured-item {
	flex: 1;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	cursor: pointer;
}
.second-nav-featured-item:hover {
	transform: translateY(-10px);
	background-color: #bf1313;
	box-shadow: 0 8px 20px rgba(191, 19, 19, 0.3);
}
/* .second-nav-featured-item.featured-active {
	background-color: #bf1313;
} */
.second-nav-featured-item.featured-active:hover {
	background-color: #bf1313;
}
.featured-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background-color: #f5f5f5;
}
.featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.second-nav-featured-item:hover .featured-image img {
	transform: scale(1.05);
}
.featured-content {
	padding: 20px;
	transition: background-color 0.3s ease;
}
.second-nav-featured-item:hover .featured-content {
	background-color: #bf1313;
}
.featured-active .featured-content {
	/* background-color: #bf1313; */
}
.featured-title {
	margin: 0 0 15px 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	height: 50px;
	overflow: hidden;
}
.featured-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}
.second-nav-featured-item:hover .featured-title a {
	color: #ffd700;
}
/* .featured-active .featured-title a {
	color: #fff;
} */
.featured-active:hover .featured-title a {
	color: #ffd700;
}
.featured-meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	font-size: 14px;
}
.featured-date {
	color: #999;
	transition: color 0.3s ease;
}
.second-nav-featured-item:hover .featured-date {
	color: #ffd700;
}
/* .featured-active .featured-date {
	color: #fff;
} */
.featured-active:hover .featured-date {
	color: #ffd700;
}
.featured-cat {
	color: #999;
	transition: color 0.3s ease;
}
.second-nav-featured-item:hover .featured-cat {
	color: #ffd700;
}
/* .featured-active .featured-cat {
	color: #fff;
} */
.featured-active:hover .featured-cat {
	color: #ffd700;
}
.featured-detail {
	display: inline-block;
	color: #bf1313;
	text-decoration: underline;
	font-size: 14px;
	transition: color 0.3s ease;
}
.second-nav-featured-item:hover .featured-detail {
	color: #ffd700;
}
/* .featured-active .featured-detail {
	color: #fff;
} */
.featured-active:hover .featured-detail {
	color: #ffd700;
}
.second-nav-list {
	background-color: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.second-nav-list-items {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}
.second-nav-list-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}
.second-nav-list-item:last-child {
	border-bottom: none;
}
.list-arrow {
	color: #bf1313;
	font-weight: bold;
	font-size: 16px;
}
.list-title {
	flex: 1;
	color: #333;
	text-decoration: none;
	font-size: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.3s ease;
}
.list-title:hover {
	color: #bf1313;
}
.list-date {
	color: #999;
	font-size: 14px;
	white-space: nowrap;
}
/* 第三个导航数据展示区域样式 */
.third-nav-section {
	width: 100%;
	padding: 60px 0;
	background-color: #fff;
}
.third-nav-container {
	width: 1200px;
	margin: 0 auto;
}
.third-nav-header {
	margin-bottom: 40px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e9e9e9;
}
.third-nav-title {
	margin: 0 0 10px 0;
	font-size: 32px;
	font-weight: 700;
	color: #062b79;
	line-height: 1.2;
}
.third-nav-english {
	display: block;
	font-size: 14px;
	color: #666;
	letter-spacing: 1px;
}
.third-nav-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.third-nav-item {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}
.third-nav-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.third-nav-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background-color: #f5f5f5;
	margin-bottom: 15px;
}
.third-nav-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.third-nav-item:hover .third-nav-image img {
	transform: scale(1.05);
}
.third-nav-item-title {
	margin: 0;
	padding: 0 10px 15px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	height: 44px;
	overflow: hidden;
	text-align: center;
}
.third-nav-item-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.third-nav-item:hover .third-nav-item-title a {
	color: #bf1313;
}
/* 关于我们区域样式 */
.about-us-section {
	width: 100%;
	background-color: #fff;
	overflow: hidden;
}
.about-us-wrapper {
	display: flex;
	width: 100%;
	min-height: 500px;
}
.about-us-left {
	flex: 0 0 40%;
	position: relative;
	overflow: hidden;
	background-color: #bf1313;
}
.about-us-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.about-us-right {
	flex: 1;
	background-color: #fff;
	display: flex;
	align-items: center;
	padding: 60px 80px;
}
.about-us-content {
	width: 100%;
	max-width: 600px;
}
.about-us-title {
	margin: 0 0 15px 0;
	font-size: 48px;
	font-weight: 700;
	color: #000;
	line-height: 1.2;
	letter-spacing: 2px;
}
.about-us-subtitle {
	font-size: 18px;
	color: #333;
	margin-bottom: 30px;
	letter-spacing: 3px;
}
.about-us-divider {
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, #ddd 0%, #ddd 50%, transparent 100%);
	margin-bottom: 40px;
	position: relative;
}
.about-us-divider::after {
	content: '';
	position: absolute;
	top: -2px;
	left: 0;
	width: 60%;
	height: 6px;
	background: repeating-linear-gradient(
		90deg,
		#ddd 0px,
		#ddd 8px,
		transparent 8px,
		transparent 16px
	);
}
.about-us-text {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 40px;
	text-align: justify;
}
.about-us-arrow-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #bf1313;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.3s ease;
	float: right;
}
.about-us-arrow-btn:hover {
	background-color: #a01010;
	transform: translateX(5px);
}
.arrow-icon {
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
}

/* 快速导航 */
.quick-nav-wrap {
	width: 100%;
	
	overflow: hidden;
}
.quick-nav-bar {
	width: 100%;
	height: 4px;
	
}
.quick-nav-inner {
	width: 1200px;
	margin: 0 auto;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 4px;
}
.quick-nav-label {
	font-size: 14px;
	color: #333;
	margin-right: 8px;
	font-weight: 500;
}
.quick-nav-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 4px;
	font-size: 14px;
	color: #333;
}
.quick-nav-links a {
	color: #333;
	text-decoration: none;
}
.quick-nav-links a:hover {
	color: #bf1313;
	text-decoration: underline;
}
.quick-nav-sep {
	color: #999;
	margin: 0 2px;
	user-select: none;
}
