/* 基础样式重置 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
	font-size: 14px;
	color: #0A2342;
	line-height: 1.6;
	background: #F6F9FD;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

.header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
	background: #fff;
}

.head_space {
	height: 100px;
}

.wrap {
	margin: 0 auto;
	width: 1200px;
}

.logo {
	position: absolute;
	top: 0;
	left: 40px;
	display: flex;
	align-items: center;
	height: 100px;
}

.logo_txt {
	padding-left: 30px;
	font-size: 24px;
	color: #444D54;
}


.nav {
	text-align: center;
}

.nav li {
	display: inline-block;
	vertical-align: middle;
	padding-right: 48px;
	line-height: 100px;
}

.nav a {
	font-size: 15px;
	color: #1E293B;
	padding: 5px 0;
}

.nav a:hover,
.nav a.active {
	opacity: 0.8;
}

.nav_tit {
	display: inline-block;
	line-height: 40px;
}

.nav li.on .nav_tit {
	position: relative;
	color: #003C78;
}

.nav li.on .nav_tit::before {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	margin: 0 auto;
	width: 40px;
	bottom: -2px;
	height: 4px;
	background: #003C78;
	border-radius: 2px;
	content: '';
}

.r_link {
	position: absolute;
	right: 100px;
	top: 50%;
	transform: translateY(-50%);
	line-height: 18px;
	font-size: 16px;
}

.r_link_ico {
	display: inline-block;
	vertical-align: middle;
	width: 80px;
	height: 16px;
	margin-right: 5px;
	background: url(../images/r.png) center/100% 100% no-repeat;
}

.r_link_txt {
	display: inline-block;
	vertical-align: top;
	font-family: PingFangSC, PingFang SC;
}

.r_link_txt em {
	display: block;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
}

.en_b {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	cursor: pointer;
	background: url(../images/en.png) center/100% 100% no-repeat;
}

.banner_img {
	aspect-ratio: 1920 / 760;
	background-position: center 0;
	background-size: contain;
	background-repeat: no-repeat;
}

.banner_img a {
	display: block;
	height: 100%;
	cursor: pointer;
}

/* 核心能力 */
.core-capabilities {
	padding: 80px 0;
	min-height: 1100px;
	background: #fff url(../images/hx-bg.jpg) center bottom/100% auto no-repeat;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-title {
	font-size: 32px;
	color: #333;
	font-weight: 500;
}

.section-title::before {
	display: none;
}

.section-subtitle {
	font-size: 16px;
	color: #666;
	margin-top: 12px;
}

.capabilities-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.capability-card {
	min-height: 392px;
	background: #FFFFFF;
	box-shadow: 0px 10px 20px 1px rgba(0, 87, 176, 0.1);
	border-radius: 16px;
	border: 1px solid #E5EFF9;
	padding: 60px 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid #f0f0f0;
}

.capability-card:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	transform: translateY(-5px);
}

.capability-icon {
	width: 81px;
	height: 81px;
	margin: 0 auto 60px;
}

.capability-icon img {
	width: 100%;
	height: 100%;
}

.capability-title {
	font-size: 20px;
	color: #333;
	font-weight: 500;
	margin-bottom: 16px;
}

.capability-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
}

.ad_b {
	margin-top: -140px;
	height: 414px;
	background-position: center bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.ad_b a {
	display: block;
	height: 100%;
}

.a_section {
	padding: 100px 0;
	background: #fff;
}

.b_section {
	padding: 100px 0;
	background: #F4FCFF;
}

/* 环保理念 */
.eco-concept .section-header {
	text-align: center;
	margin-bottom: 50px;
}

.eco-concept .section-title {
	font-size: 32px;
	color: #333;
	font-weight: 500;
}

.eco-concept .section-subtitle {
	font-size: 16px;
	color: #666;
	margin-top: 12px;
}

/* 统计数据圆形 */
.eco-stats {
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
}

.stat-circle {
	width: 200px;
	height: 200px;
	background: #003C78;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.stat-number {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
}

/* 环保卡片 */
.eco-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.eco-card {
	min-height: 400px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0px 10px 20px 1px rgba(0, 87, 176, 0.1);
	border-radius: 16px;
	border: 1px solid #E5EFF9;
	transition: all 0.3s ease;
}

.eco-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.eco-card-img {
	width: 100%;
	height: 230px;
	overflow: hidden;
}

.eco-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.eco-card:hover .eco-card-img img {
	transform: scale(1.05);
}

.eco-card-content {
	padding: 24px 20px;
	text-align: left;
}

.eco-card-title {
	font-size: 18px;
	color: #333;
	font-weight: 500;
	margin-bottom: 12px;
	text-align: center;
}

.eco-card-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
}

.digital-card .eco-card-content {
	text-align: center;
}

.digital-card .eco-card-title {
	padding-top: 15px;
	font-size: 20px;
}

/* 新闻中心 */
.news-columns {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.news-column {
	min-width: 0;
	min-height: 300px;
	position: relative;
	padding-bottom: 30px;
	background: #FFFFFF;
	box-shadow: 0px 10px 20px 1px rgba(0, 87, 176, 0.1);
	border-radius: 16px;
	border: 1px solid #E5EFF9;
}

.column-header {
	background: #003C78;
	border-radius: 16px 16px 0px 0px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	padding: 14px 0;
}

.news-list {
	padding: 10px 0;
}

.news-item a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 16px;
	transition: background 0.3s;
}

.news-item a:hover {
	background: #F8FAFC;
}

.news-info {
	flex: 1;
	overflow: hidden;
}

.news-item .news-title {
	font-size: 16px;
	color: #333;
	font-weight: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-date {
	font-size: 12px;
	color: #999;
}

.news-arrow {
	font-size: 20px;
	color: #ccc;
	margin-left: 10px;
}

.news-item a:hover .news-arrow {
	color: #003C78;
}

.column-more {
	position: absolute;
	bottom: -35px;
	left: 50%;
	transform: translateX(-50px);
	width: 100px;
	margin: 10px auto 16px;
	padding: 8px 0;
	background: #0057B0;
	color: #fff;
	font-size: 13px;
	text-align: center;
	background: linear-gradient(180deg, #006FAF 0%, #003C77 100%);
	border-radius: 20px;
}

.column-more:hover {
	background: #003C78;
}

.partner-columns {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.marquee-container {
	width: 1200px;
	overflow: hidden;
	margin: 0px auto;
}

.marquee-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 280px;
	gap: 20px;
	width: max-content;
	animation: scroll 25s linear infinite;
}

.marquee-track:hover {
	animation-play-state: paused;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.partner-box {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 120px;
	background: #FFFFFF;
	box-shadow: 0px 10px 20px 1px rgba(0, 87, 176, 0.1);
	border-radius: 8px;
	border: 1px solid #E5EFF9;
}

.partner-box img {
	max-width: 200px;
	height: auto;
}


/* 页脚 */
.footer {
	background: #EAF0F9;
	color: #444D54;
	padding: 50px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-brand .brand-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
}

.footer-title {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	font-size: 15px;
	color: #444D54;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #B8C0C8;
}

.contact-list {
	list-style: none;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 15px;
	line-height: 1.6;
}

.contact-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: 2px;
	background-size: contain;
	background-repeat: no-repeat;
}

.icon-location {
	background-image: url('../images/addr.png');
}

.icon-phone {
	background-image: url('../images/tel.png');
}

.icon-email {
	background-image: url('../images/mail.png');
}

.footer-bottom {
	border-top: 1px solid #ddd;
	padding-top: 20px;
	text-align: center;
}

.footer-bottom p {
	font-size: 13px;
}

.sub_main {
	padding: 40px 0;
}

.sub_banner {
	height: 200px;
	background-position: center bottom;
	background-size: 1920px auto;
	background-repeat: no-repeat;
}

.env-card {
	box-shadow: none;
	border-radius: 8px;
	border: none;
}

/* 环保页面 - 统计卡片 */
.env-stats {
	margin-top: 20px;
	height: 200px;
	margin-top: 20px;
	background: url(../images/env.jpg) center/100% 100% no-repeat;
}

.env-stat-card ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	height: 200px;
	align-items: center;
	color: #fff;
}

.env-stat-card li {
	position: relative;
	flex: 1;
	text-align: center;
}

.env-stat-card li::after {
	position: absolute;
	top: -10px;
	right: 0;
	height: 80px;
	border-right: 1px dashed #A6A6A6;
	content: '';
}

.env-stat-card li:last-child::after {
	border: none;
}

.stat-num {
	display: block;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.4;
}

.stat-text {
	font-size: 16px;
	margin-top: 4px;
}

/* 环保页面 - 服务卡片 */
.env-services {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.env-service-card {
	background: #fff;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.env-service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 20px;
}

.service-icon img {
	width: 100%;
	height: 100%;
}

.service-title {
	font-size: 16px;
	color: #333;
	font-weight: 500;
	line-height: 1.5;
	padding: 30px 20px;
}


/* 全生命周期资产循环体系 */
.path_b {
	line-height: 70px;
	font-size: 16px;
}

.path_b a {
	padding: 0 5px 0 0;
	color: #77879C;
}

.p_arrow {
	display: inline-block;
	margin-right: 5px;
	width: 10px;
	height: 10px;
	border: 1px solid #77879C;
	border-right: none;
	border-bottom: none;
	transform: rotate(-45deg);
}

.path_b span {
	padding: 0 5px;
}

.sub_con {
	padding: 20px;
	background: #fff;
}

.sub_tit {
	margin-bottom: 20px;
	font-size: 18px;
	color: #333;
}

.lifecycle-content {
	display: flex;
	align-items: center;
	padding-left: 40px;
	margin-bottom: 60px;
	background: #F6F9FD;
	border-radius: 8px;
}

.lifecycle-text {
	flex: 1;
	padding-right: 150px;
}

.lifecycle-title {
	font-size: 28px;
	color: #333;
	font-weight: 600;
	margin-bottom: 12px;
}

.lifecycle-subtitle {
	font-size: 16px;
	color: #444;
	font-weight: bold;
	margin-bottom: 20px;
}

.lifecycle-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
}

.lifecycle-img {
	width: 510px;
	height: 305px;
	border-radius: 8px;
	overflow: hidden;
}

.lifecycle-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 全产业链循环流程 */
.p-title {
	font-size: 24px;
	color: #333;
	font-weight: 600;
	margin-bottom: 10px;
}

.process-flow {
	display: flex;
	padding-bottom: 50px;
}

.process-flow li {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-right: 30px;
	height: 80px;
	border-radius: 8px;
	border: 1px solid #ddd;
	font-size: 14px;
	color: #333;
	white-space: nowrap;
	text-align: center;
}

.process-flow li::after {
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 24px;
	content: '';
	background: url(../images/arrow.png) center/12px 20px no-repeat;
}

.process-flow li:last-child {
	margin: 0;
}

.process-flow li:last-child::after {
	background: none;
}

/* 精细化拆解与资源归集 */
.dismantle-section {
	padding: 30px 0;
}

.section-title-main {
	font-size: 20px;
	color: #333;
	font-weight: 500;
	margin-bottom: 24px;
}

.dismantle-content {
	display: flex;
	gap: 30px;
	margin-bottom: 40px;
}

.dismantle-left {
	flex: 1;
	background: #fff;
	border-radius: 8px;
	padding: 30px;
	border: 1px solid #ddd;
}

.plane-image {
	width: 480px;
	height: 192px;
	margin: 20px auto 30px;
}

.plane-image img {
	width: 100%;
	height: 100%;
}

.dismantle-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.dismantle-tag {
	padding: 8px 16px;
	border: 1px solid #E5E8EC;
	border-radius: 20px;
	font-size: 14px;
	color: #333;
	cursor: pointer;
	transition: all 0.3s;
}

.dismantle-right {
	flex: 1;
	background: #fff;
	border-radius: 8px;
	padding: 20px 30px;
	border: 1px solid #ddd;
}

.chart-title {
	font-size: 16px;
	color: #333;
	font-weight: 500;
	margin-bottom: 20px;
}

.chart-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.donut-chart {
	width: 234px;
	height: 210px;
	position: relative;
	margin-bottom: 20px;
}

.recycle-desc {
	font-size: 14px;
	color: #666;
	line-height: 26px;
}

/* 核心价值 */
.com-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 50px;
}

.bus_grid{
	grid-template-columns: repeat(4, 1fr);
}

.com-card {
	background: #fff;
	border-radius: 8px;
	padding: 24px;
	border: 1px solid #ddd;
}

.com-card h2 {
	font-size: 24px;
	margin-bottom: 10px;
}

.com-card h4 {
	font-size: 16px;
	color: #333;
	font-weight: 500;
	margin-bottom: 10px;
}

.com-card p {
	font-size: 12px;
	color: #666;
	line-height: 1.8;
}

.result-grid {
	grid-template-columns: repeat(3, 1fr);
}

.result-card {
	text-align: center;
}

/* 飞机环保展示模块 */
.aircraft-eco-card {
	background: #fff;
	border-radius: 8px;
	padding: 20px 20px 50px;
	border: 1px solid #ddd;
}

.col-header {
	font-size: 18px;
	color: #333;
	font-weight: 500;
	margin-bottom: 15px;
}

.aircraft-eco-content {
	display: flex;
	align-items: center;
}

.aircraft-image-box {
	margin-left: 20px;
	width: 614px;
	height: 183px;
}

.aircraft-image-box img {
	width: 100%;
	height: 100%;
}

.aircraft-eco-info {
	padding: 0 20px 0 40px;
	flex: 1;
}

.aircraft-eco-title {
	font-size: 24px;
	color: #333;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.4;
}

.aircraft-eco-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
}

/* 碳管理逻辑模块 */
.carbon-logic-card {
	margin-top: 50px;
}

.carbon-logic-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.carbon-logic-item {
	width: 320px;
	padding: 20px 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
}

.carbon-logic-item h4 {
	font-size: 16px;
	color: #333;
	font-weight: 500;
	margin-bottom: 12px;
}

.carbon-logic-item p {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
}

.carbon-cycle-graph {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carbon-cycle-graph img {
	width: 260px;
	height: 300px;
}

/* 服务能力模块 */
.service-ability-card {
	margin-top: 50px;
}

.service-ability-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.service-ability-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
}

.service-ability-icon img {
	width: 64px;
	height: 64px;
}

.service-ability-content h2 {
	font-size: 20px;
	font-weight: normal;
	padding-bottom: 5px;
}

.service-ability-content h4 {
	font-size: 16px;
	color: #333;
	font-weight: 500;
	margin-bottom: 8px;
}

.service-ability-content p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

.sub_wrap {
	display: flex;
}

.sub_menu {
	width: 200px;
}

.sub_menu h2 {
	padding-left: 20px;
	line-height: 48px;
	font-size: 18px;
	color: #fff;
	font-weight: normal;
	background: #003C77;
}

.sub_menu ul {
	padding: 10px 0 20px;
	background: #fff;
}

.sub_menu li {
	position: relative;
	margin: 5px 0;
	line-height: 36px;
}

.sub_menu li.on {
	font-weight: bold;
	background: #F2F5F8;
	color: #003C78;
}

.sub_menu li.on::before {
	position: absolute;
	left: 0;
	width: 4px;
	height: 100%;
	content: '';
	background: #003C77;
}

.sub_menu li a {
	display: block;
	padding-left: 20px;
	cursor: pointer;
}

.sub_content {
	flex: 1;
	margin-left: 25px;
	padding: 20px;
	line-height: 30px;
	color: #444D54;
	background: #fff;
}

.sub_content img {
	max-width: 100%;
	height: auto;
}

/* 招聘信息模块样式 */
.recruitment-section {
	padding: 20px 0;
}

.recruitment-title {
	font-size: 20px;
	color: #333;
	font-weight: 500;
	margin-bottom: 24px;
}

/* 搜索区域 */
.recruitment-search {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
}

.search-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.search-item label {
	font-size: 14px;
	color: #333;
	white-space: nowrap;
}

.search-input {
	width: 300px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	color: #333;
	background: #fff;
}

.search-input::placeholder {
	color: #999;
}

.search-input:focus {
	outline: none;
	border: 1px solid #003C78;
}

.search-btn {
	padding: 0 32px;
	height: 36px;
	background: #003C78;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.3s;
}

.search-btn:hover {
	background: #002a54;
}

/* 职位列表 */
.job-list {
	border-top: 1px solid #eee;
}

.job-item {
	display: flex;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid #eee;
	transition: background 0.3s;
}

.job-item:hover {
	background: #FAFBFC;
}

.job-info {
	flex: 1;
}

.job-name {
	font-size: 18px;
	color: #333;
	font-weight: 500;
	margin-bottom: 8px;
}

.job-tags {
	color: #808080;
}

.job-salary {
	color: #FF0000;
	font-weight: 500;
	margin-right: 24px;
	min-width: 80px;
	text-align: right;
}

.job-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
}

.link-icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url('../images/r_arrow.png') center/9px 14px no-repeat;
	opacity: 0.6;
	transition: opacity 0.3s;
}

.job-item:hover .link-icon {
	opacity: 1;
}

/* 分页器 */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
	gap: 8px;
}

.pagination a,
.pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	line-height: 28px;
	padding: 0 12px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	text-decoration: none;
	color: #666;
	font-size: 14px;
	background: #fff;
	cursor: pointer;
}

.pagination a:hover {
	border-color: #0A2342;
	color: #0A2342;
}

.pagination .current {
	background: #0A2342;
	border-color: #0A2342;
	color: #fff;
}

.pagination .prev,
.pagination .next {
	font-size: 16px;
}

.sub_path {
	padding-bottom: 10px;
}

.sub_path a {
	padding: 0 5px 0 0;
	color: #003C77;
}

.p_text {
	padding-left: 30px;
	color: #FF0000;
	font-size: 14px;
}

:root {
	--primary-color: #003366;
	--bg-light: #F6F9FD;
	--txt-color: #444D54
}

h1 {
	font-size: 18px;
	margin-bottom: 10px;
	color: var(--txt-color);
}

.subList {
	display: flex;
	flex-wrap: wrap;
}

.subItem {
	width: 100%;
	margin-bottom: 10px;
	font-size: 14px;
}

.subItem>span {
	font-weight: bold;
}

.subtitle {
	color: var(--txt-color);
	font-size: 14px;
	margin-bottom: 20px;
	text-indent: 2em;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.stat-card {
	background-color: var(--bg-light);
	padding: 20px;
	border-radius: 4px;
	text-align: center;
}

.stat-value {
	font-size: 16px;
	font-weight: bold;
}

.stat-label {
	font-size: 12px;
}

.section-block {
	margin-bottom: 33px;
}

h3 {
	font-size: 16px;
	margin-bottom: 6px;
	font-weight: bold;
}


#chart-container {
	width: 858px;
	height: 224px;
	margin-bottom: 40px;
}

.sub_content_block {
	margin: 0px 20px;
}

.btn {
	display: inline-block;
	background-color: var(--primary-color);
	color: #fff;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	border: none;
}

.footer-note {
	font-size: 13px;
	color: #888;
	margin-top: 20px;
	margin-bottom: 40px;
}

.sub_menu li {
	cursor: pointer;
	transition: background 0.2s;
}

.sub_menu li:hover {
	background: rgba(10, 35, 66, 0.05);
}

.sub_con_txt {
	font-size: 16px;
	line-height: 36px;
}

.f_logo {
	height: 120px;
	background: url(../images/f_logo.png) center 0/100% auto no-repeat;
}

@media (max-width: 1600px) {
	.nav {
		padding-left: 550px;
		text-align: left;
	}
}

@media (max-width: 1280px) {
	.nav {
		padding-left: 450px;
		text-align: left;
	}

	.nav li {
		padding-right: 30px;
	}
}