.inner_position {
	background: #F6F6F6;
	padding: 20px 0;
}

.inner_nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.inner_item {
	display: flex;
	align-items: center;
	padding-right: 15px;
}

.inner_item i.fa-home {
	margin-right: 5px;
}

.inner_item a,
.inner_item i {
	display: block;
	color: #777;
	cursor: pointer;
	line-height: 24px;
}

.inner_main {
	padding: 40px 0;
}

.fa {
	font-family: 'fontawesome';
	display: block;
}

.fa-home:before {
	content: "\f015";
}

.fa-angle-right:before {
	content: "\f105";
}

.fa-angle-left:before {
	content: "\f104";
}

.fa-angle-down:before {
	content: "\f107";
}

.about-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 24px 60px;
	background: #ffffff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

/* ===== 通用组件 ===== */
.section-title {
	font-size: 35.2px;
	font-weight: 600;
	letter-spacing: 1px;
	position: relative;
	display: inline-block;
	margin-bottom: 16px;
}

.section-title:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 60px;
	height: 4px;
	background: #1e5f8e;
	border-radius: 3px;
}

.section-sub {
	font-size: 17.6px;
	color: #4a5a6e;
	margin-top: 8px;
	margin-bottom: 32px;
	padding-left: 2px;
}

/* ===== 网格系统 ===== */
.grid-2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px 50px;
}

.grid-3col {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.grid-2col.mb-28 {
	margin-bottom: 28px;
}

.grid-3col.mt-6 {
	margin-top: 6px;
	margin-bottom: 10px;
}

/* ===== 卡片 ===== */
.card {
	background: #f8faff;
	padding: 28px 24px;
	border-radius: 20px;
	transition: 0.25s ease;
	border: 1px solid #eef2f7;
	box-shadow: 0 4px 12px rgba(0, 20, 40, 0.02);
}

.card:hover {
	transform: translateY(-4px);
	border-color: #cbdae9;
	box-shadow: 0 12px 28px rgba(26, 67, 113, 0.08);
}

.card h3 {
	font-size: 24px;
	font-weight: 600;
	color: #0a2647;
	margin-bottom: 12px;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.card h3 i {
	font-style: normal;
	background: #1e5f8e;
	color: white;
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 16px;
	margin-right: 4px;
}

.card p {
	color: #2c3e4f;
	font-size: 16px;
	line-height: 1.7;
}

/* ===== 分割线 ===== */
.divider-light {
	height: 1px;
	background: linear-gradient(90deg, #d0ddea, transparent);
	margin: 40px 0 36px;
}

/* ===== 头部 hero ===== */
.about-hero {
	background: linear-gradient(145deg, #eef4fc 0%, #ffffff 100%);
	padding: 40px 40px 28px 40px;
	border-radius: 32px;
	margin-bottom: 48px;
	border: 1px solid #e8edf4;
}

.about-hero h1 {
	font-size: 44.8px;
	font-weight: 700;
	color: #0b2a49;
	letter-spacing: 0.5px;
}

.about-hero .subhead {
	font-size: 20px;
	color: #2f4a69;
	margin-top: 6px;
	font-weight: 400;
}

.about-hero .badge-group {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
}

.about-hero .badge-group span {
	background: white;
	padding: 6px 24px 6px 18px;
	border-radius: 40px;
	font-weight: 500;
	color: #1a4b74;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
	border: 1px solid #d6e2f0;
}

.about-hero .hero-desc {
	margin-top: 24px;
	font-size: 17.6px;
	max-width: 780px;
	color: #1a3857;
}

/* ===== 专注领域 ===== */
.focus-area {
	background: #f2f7ff;
	padding: 32px 36px;
	border-radius: 28px;
	margin-bottom: 40px;
	border-left: 8px solid #1e5f8e;
}

.focus-area p {
	font-size: 19.2px;
	font-weight: 450;
	color: #142b44;
}

.focus-area strong {
	color: #003366;
	font-weight: 600;
}

/* ===== 列表样式 ===== */
.styled-list {
	list-style: none;
	padding: 0;
}

.styled-list li {
	padding: 10px 0 10px 32px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%231e5f8e" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') left center no-repeat;
	background-size: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.styled-list li:last-child {
	border-bottom: none;
}

.styled-list.mt-20 {
	margin-top: 20px;
}

/* ===== 技术优势卡片（右侧色块） ===== */
.tech-advantage {
	background: #eef6fe;
	padding: 20px 28px;
	border-radius: 40px;
	align-self: center;
}

.tech-advantage p {
	font-weight: 600;
	font-size: 20.8px;
	color: #003b6f;
}

.tech-advantage p .sub {
	font-weight: 300;
	font-size: 16px;
	color: #1f4d78;
}

/* ===== 人才三观 ===== */
.talent-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin: 12px 0 8px;
}

.talent-card {
	background: #fafcff;
	padding: 24px 20px 20px;
	border-radius: 24px;
	border: 1px solid #e1eaf3;
	transition: 0.2s;
}

.talent-card:hover {
	background: white;
	border-color: #b6cee7;
}

.talent-card h4 {
	font-size: 23.2px;
	font-weight: 600;
	color: #00325c;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.talent-card h4 .icon-badge {
	background: #1e5f8e;
	color: white;
	font-size: 14.4px;
	border-radius: 60px;
	padding: 0 14px;
	line-height: 28px;
	margin-left: 4px;
}

.talent-card ul {
	list-style: none;
	margin-top: 8px;
}

.talent-card ul li {
	padding: 5px 0 5px 22px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23375a7e" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') left center no-repeat;
	background-size: 16px;
	color: #1e3349;
}

/* ===== 理念/目标/任务 三块 ===== */
.core-block {
	background: #f3f8fe;
	border-radius: 30px;
	padding: 32px 30px;
	display: flex;
	flex-direction: column;
	border: 1px solid #dfeaf5;
	transition: 0.2s;
}

.core-block:hover {
	background: #ffffff;
	border-color: #b8cee8;
	box-shadow: 0 4px 14px rgba(26, 79, 130, 0.04);
}

.core-block .big-icon {
	font-size: 35.2px;
	font-weight: 300;
	margin-bottom: 6px;
	color: #1e5f8e;
}

.core-block h3 {
	font-size: 28.8px;
	font-weight: 600;
	color: #0d314f;
	margin-bottom: 8px;
}

.core-block p {
	font-size: 17.6px;
	color: #1d3853;
	line-height: 1.6;
	font-weight: 450;
}

.core-block .task-sub {
	font-size: 15.2px;
	color: #1f4d78;
}

/* ===== 底部优势条 ===== */
.advantage-strip {
	background: #0b2642;
	color: white;
	padding: 28px 32px;
	border-radius: 40px;
	margin: 36px 0 8px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.advantage-strip p {
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.3px;
}

.advantage-strip strong {
	font-weight: 700;
	color: #ffd966;
}

.advantage-strip .badge-white {
	font-size: 16px;
	background: #1c3f62;
	padding: 4px 20px;
	border-radius: 60px;
}

/* ===== 底部企业补充条 ===== */
.footer-strip {
	margin-top: 44px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	background: #f5faff;
	padding: 20px 30px;
	border-radius: 60px;
	border: 1px solid #d6e5f5;
}

.about-hero {
	display: flex;
	gap: 50px;
	align-items: center;
}

.about-hero-img {
	border-radius: 12px;
	overflow: hidden;
}

.about-hero-img img {
	transition: .5s;
}

.about-hero-img:hover img {
	transform: scale(1.05);
}

.footer-strip span {
	font-weight: 500;
	color: #003b6f;
}

/* ===== 响应式 ===== */

@media (max-width: 950px) {
	.about-hero {
		flex-direction: column;
	}
}


@media (max-width: 900px) {
	.grid-2col {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.grid-3col {
		grid-template-columns: 1fr 1fr;
	}

	.talent-grid {
		grid-template-columns: 1fr;
	}

	.about-hero h1 {
		font-size: 35.2px;
	}
}

@media (max-width: 600px) {
	.grid-3col {
		grid-template-columns: 1fr;
	}

	.about-hero {
		padding: 28px 16px;
	}

	.advantage-strip {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.section-title {
		font-size: 28.8px;
	}

	.core-block h3 {
		font-size: 24px;
	}

	.footer-strip {
		flex-direction: column;
		align-items: flex-start;
		border-radius: 32px;
	}
}




/* ===== 历程容器 ===== */
.history-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 30px 20px 50px;
	color: #1e2a3a;
}

/* ===== 标题 ===== */
.history-title {
	font-size: 36px;
	font-weight: 700;
	color: #0b2a49;
	text-align: center;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.history-subtitle {
	text-align: center;
	font-size: 16px;
	color: #5a6e82;
	margin-bottom: 40px;
	letter-spacing: 1px;
}

/* ===== 时间线主轴 ===== */
.timeline {
	position: relative;
	padding: 10px 0;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #1e5f8e, #7aa5c9, #1e5f8e);
	transform: translateX(-50%);
	border-radius: 4px;
}

/* ===== 每个时间节点 ===== */
.timeline-item {
	position: relative;
	margin-bottom: 40px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	padding-right: calc(50% + 30px);
}

.timeline-item:nth-child(even) {
	justify-content: flex-start;
	padding-right: 0;
	padding-left: calc(50% + 30px);
}

/* ===== 时间圆点 ===== */
.timeline-item .dot {
	position: absolute;
	left: 50%;
	top: 6px;
	width: 18px;
	height: 18px;
	background: #1e5f8e;
	border: 4px solid #fff;
	border-radius: 50%;
	transform: translateX(-50%);
	box-shadow: 0 0 0 3px #1e5f8e, 0 4px 12px rgba(0, 40, 80, 0.15);
	z-index: 2;
}

/* ===== 年份标签 ===== */
.timeline-item .year-badge {
	position: absolute;
	left: 53%;
	background: #0b2642;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	padding: 2px 18px;
	border-radius: 30px;
	letter-spacing: 0.5px;
	z-index: 3;
	white-space: nowrap;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.timeline-item:nth-child(2n) .year-badge {
	left: auto;
	right: 53%;
}

/* ===== 内容卡片 ===== */
.timeline-item .content-card {
	background: #f8fbff;
	border-radius: 18px;
	padding: 20px 26px 22px;
	width: 100%;
	max-width: 400px;
	border: 1px solid #e6edf6;
	box-shadow: 0 4px 16px rgba(0, 20, 40, 0.04);
	transition: 0.25s ease;
	position: relative;
}

.timeline-item .content-card:hover {
	border-color: #b8cee7;
	box-shadow: 0 8px 28px rgba(26, 67, 113, 0.08);
	transform: translateY(-3px);
}

/* ===== 卡片箭头（指向圆点） ===== */
.timeline-item:nth-child(odd) .content-card::after {
	content: '';
	position: absolute;
	right: -10px;
	top: 18px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 12px solid #f8fbff;
	filter: drop-shadow(1px 0 2px rgba(0, 0, 0, 0.03));
}

.timeline-item:nth-child(even) .content-card::after {
	content: '';
	position: absolute;
	left: -10px;
	top: 18px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 12px solid #f8fbff;
	filter: drop-shadow(-1px 0 2px rgba(0, 0, 0, 0.03));
}

/* ===== 卡片内列表 ===== */
.content-card .event-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.content-card .event-list li {
	padding: 4px 0 4px 26px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%231e5f8e" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') left center no-repeat;
	background-size: 16px;
	font-size: 15px;
	line-height: 1.7;
	color: #1e3349;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.04);
}

.content-card .event-list li:last-child {
	border-bottom: none;
}

.content-card .event-list li .highlight {
	color: #003b6f;
	font-weight: 600;
}

/* ===== 响应式 ===== */
@media (max-width: 760px) {
	.timeline::before {
		left: 20px;
	}

	.timeline-item {
		padding-right: 0;
		padding-left: 50px;
		justify-content: flex-start;
		margin-bottom: 30px;
	}

	.timeline-item:nth-child(even) {
		padding-left: 50px;
		padding-right: 0;
	}

	.timeline-item .dot {
		left: 20px;
	}

	.timeline-item .year-badge {
		left: 50px;
		font-size: 13px;
		padding: 1px 14px;
		top: -25px;
	}

	.timeline-item:nth-child(2n) .year-badge {
		left: 50px;
		right: auto;
	}

	.timeline-item .content-card {
		max-width: 100%;
	}

	.timeline-item:nth-child(odd) .content-card::after,
	.timeline-item:nth-child(even) .content-card::after {
		display: none;
	}

	.history-title {
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	.content-card .event-list li {
		font-size: 14px;
		padding: 5px 0 5px 22px;
	}

	.timeline-item .content-card {
		padding: 16px 18px 18px;
	}
}



/* ===== 容器 ===== */
.facility-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 30px 20px 50px;
	font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
	color: #1e2a3a;
}

/* ===== 标题 ===== */
.facility-title {
	font-size: 36px;
	font-weight: 700;
	color: #0b2a49;
	text-align: center;
	letter-spacing: 2px;
	margin-bottom: 8px;
}

.facility-subtitle {
	text-align: center;
	font-size: 16px;
	color: #5a6e82;
	margin-bottom: 36px;
	letter-spacing: 1px;
}

/* ===== 网格：3行 × 4列 ===== */
.facility-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px 24px;
}

/* ===== 每个设备卡片 ===== */
.facility-card {
	background: #fafcff;
	border-radius: 18px;
	border: 1px solid #e6edf6;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0, 20, 40, 0.04);
	transition: 0.3s ease;
	cursor: pointer;
}

.facility-card:hover {
	transform: translateY(-6px);
	border-color: #b8cee7;
	box-shadow: 0 12px 32px rgba(26, 67, 113, 0.10);
}

/* ===== 图片区域 ===== */
.facility-card .img-wrap {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #eef3f9;
	position: relative;
}

.facility-card .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.facility-card:hover .img-wrap img {
	transform: scale(1.04);
}

/* ===== 标题文字 ===== */
.facility-card .card-title {
	padding: 14px 16px 16px;
	font-size: 17px;
	font-weight: 600;
	color: #0b2a49;
	text-align: center;
	letter-spacing: 0.3px;
	border-top: 1px solid #edf2f8;
	background: #ffffff;
}

/* ===== 遮罩弹窗（图片放大） ===== */
.lightbox-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.78);
	z-index: 9999;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	backdrop-filter: blur(4px);
	padding: 30px;
}

.lightbox-overlay.active {
	display: flex;
}

.lightbox-overlay .lightbox-img {
	max-width: 90%;
	max-height: 85%;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	object-fit: contain;
	background: #1a1a1a;
	transition: 0.25s ease;
}

.lightbox-overlay .close-hint {
	position: absolute;
	top: 28px;
	right: 40px;
	color: #fff;
	font-size: 32px;
	font-weight: 300;
	opacity: 0.7;
	transition: 0.2s;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.08);
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-overlay .close-hint:hover {
	opacity: 1;
	background: rgba(255, 255, 255, 0.18);
	transform: rotate(90deg);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
	.facility-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px 20px;
	}
}

@media (max-width: 760px) {
	.facility-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 16px;
	}

	.facility-title {
		font-size: 28px;
	}

	.facility-card .img-wrap {
		height: 160px;
	}

	.lightbox-overlay .close-hint {
		top: 18px;
		right: 18px;
		width: 44px;
		height: 44px;
		font-size: 26px;
	}
}

@media (max-width: 480px) {
	.facility-grid {
		grid-template-columns: 1fr 1fr;
		gap: 14px 12px;
	}

	.facility-card .img-wrap {
		height: 130px;
	}

	.facility-card .card-title {
		font-size: 14px;
		padding: 10px 10px 12px;
	}
}


.page {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 30px;
	width: 100%;
}

.page a {
	display: block;
	margin: 0 10px;
	font-size: 16px;
	line-height: 30px;
	width: 50px;
	text-align: center;
	padding: 5px 0;
	border: 1px solid #ccc;
}

.page i {
	font-size: 16px;
}

.page a:hover,
.page a.active {
	color: #fff;
	background: var(--main-color);
	border-color: var(--main-color);
}



.inner_pro .layout {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.inner_pro .pro-left {
	width: 26%;
}

.inner_pro .pro-right {
	width: 72%;
}

input {
	outline: 0;
}

.pro-search {
	position: relative;
	margin-bottom: 20px;
}

.pro-search input {
	width: 100%;
	line-height: 40px;
	border-radius: 5px;
	border: 1px solid #ddd;
	padding: 0 10px;
}

.pro-search i#pro_search_btn {
	position: absolute;
	right: 10px;
	top: 50%;
	color: #999;
	transform: translateY(-50%);
	font-size: 20px;
}

.pro-left-item {
	margin-bottom: 20px;
}

.pro-left-title h3 {
	background: var(--main-color);
	font-size: 20px;
	padding: 15px;
	color: #fff;
}

.cate-list {
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

.cate-list .cate-item a {
	display: block;
	padding: 15px;
	border-bottom: 1px solid #ddd;
}

.cate-tree .cate-item {
	padding: 0 15px;
}

.cate-item>a:hover {
	color: var(--main-color);
}

.cate-tree {
	display: none;
}

.hot-pro-list {
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

.hot-pro-item {
	padding: 15px;
	border-bottom: 1px solid #ddd;
}

.hot-pro-item a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hot-pro-item a img {
	width: 100px;
	border: 1px solid #ddd;
}

.hot-pro-item a span {
	display: block;
	width: calc(100% - 110px);
}

.hot-pro-item a:hover span {
	color: var(--main-color);
}

.cate-item {
	position: relative;
}

.cate-item i {
	position: absolute;
	right: 15px;
	font-size: 16px;
	top: 16px;
	width: 20px;
	text-align: center;
}




.pro-list * {
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.pro-list {
	display: flex;
	flex-wrap: wrap;
}

.pro-list .pro-item {
	width: 32.333333333%;
	margin: 0 .5% 20px;
	border: 1px solid var(--main-color);
}

.pro-title {
	background: var(--main-color);
}

.pro-title h3 {
	color: #fff;
	font-size: 16px;
	text-align: center;
	line-height: 40px;
	border-top: 1px solid var(--main-color);
}

.pro-item .pro-img {
	overflow: hidden;
}

.pro-item:hover .pro-title {
	background: #fff;
}

.pro-item:hover .pro-title h3 {
	color: var(--main-color);
}

.pro-item:hover .pro-img img {
	transform: scale(1.05);
}


/* 产品详情页 */

.pro-desc {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px 10px;
	background: #fff;
}

.pro-desc .pro-img {
	width: 400px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.pro-desc .pro-info {
	width: calc(100% - 420px);
	padding: 20px 10px;
}

.pro-info h1 {
	font-size: 24px;
	margin-bottom: 15px;
	line-height: 32px;
}

.pro-img .swiper-wrapper {
	display: flex;
	justify-content: flex-start;
}

.mySwiper {
	/*width: 120px;
	height: 500px;*/
	overflow: hidden;
}

.mySwiper2 {
	width: 100%;
	overflow: hidden;
	margin-bottom: 10px;
}

.pro-desc .swiper-slide {
	border: 1px solid #eee;
}

.pro-desc img {
	width: 100%;
}

.mySwiper .swiper-slide-thumb-active:after {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	left: 0;
	top: 0;
}

.pro-detail {
	padding: 20px;
	background: #fff;
}

.desc-title {
	padding: 10px 0;
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px;
}

.desc-title h3 {
	font-size: 20px;
	text-transform: uppercase;
}

.pro-position .desc {
	padding: 20px 0;
	background: #f1f1f1;
}

#inquiry_title {
	padding-top: 40px;
}

.desc-cont p {
	font-size: 16px;
	line-height: 1.6;
	padding: 5px 0;
	color: #444;
}


.news-list * {
	transition: .5s ease-in-out;
}

.news-item {
	width: 100%;
	display: flex;
	padding: 20px 15px 20px 90px;
	background: #fff;
	box-shadow: 0 5px 10px #ccc;
	margin-bottom: 40px;
	position: relative;
	justify-content: space-between;
	flex-wrap: wrap;
}

.news-item .news-time {
	background: #000;
	padding: 10px;
	text-align: right;
	position: absolute;
	left: 0;
	top: 0;
}

.news-time big {
	font-size: 18px;
	color: #fff;
	display: block;
}

.news-time small {
	font-size: 14px;
	color: #fff;
}

.news-item .news-info {
	padding: 20px 0;
	width: calc(100% - 600px);
}

.news-info h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.news-info a {
	display: block;
	border: 1px solid var(--main-color);
	width: 120px;
	text-align: center;
	border-radius: 20px;
	line-height: 36px;
}

.news-info p {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 20px;
}

.news-item .news-img {
	width: 500px;
	overflow: hidden;
}

.news-img img {
	width: 100%;
}

.news-item:hover img {
	transform: scale(1.05);
}

.news-item:hover .news-info a {
	color: #fff;
	background: var(--main-color);
}

.news-item:hover .news-time {
	background: var(--main-color);
	padding-left: 60px;
}

.news-item:hover {
	padding-left: 140px
}



.inquiry {
	padding: 30px 0 60px;
}

.form-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.col-1 {
	width: 100%;
}

.col-2 {
	width: 49%;
}

.form-item {
	margin-bottom: 10px;
}

.form-item input,
.form-item textarea {
	width: 100%;
	outline: 0;
	border: 1px solid #eee;
	border-radius: 5px;
	line-height: 40px;
	padding: 0 10px;
	font-size: 14px;
	color: #666;
}

.form-item textarea {
	height: 80px;
}

.form-btn {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.form-btn input {
	background: var(--main-color);
	border: 0;
	border-radius: 5px;
	padding: 8px 30px;
	color: #fff;
}


.inner_title h1 {
	font-size: 36px;
	font-weight: 700;
	color: #0b2a49;
	text-align: center;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.inner_title {
	padding-bottom: 30px;
}


._news_show ._inner_title h1 {
	text-align: left;
	font-weight: 300;
	font-size: 26px;
}

._news_show ._inner_title small {
	font-size: 14px;
	font-weight: 200;
	color: #777;
	padding-top: 10px;
	display: block;
}

._news_show ._inner_title {
	border-bottom: 1px solid #ccc;
	padding-bottom: 20px;
}

._inner_show_wrap p {
	font-size: 16px;
	color: #555;
	line-height: 1.7;
	padding: 10px 0;
	font-weight: 300;
}

._inner_show_wrap {
	/*padding: 30px 0;*/
	border-bottom: 1px solid #ccc;
}

._inner_btn_wrap {
	padding: 20px 0;
}

._inner_btn_item {
	display: flex;
}

._inner_btn_item span {
	display: block;
	font-size: 16px;
	font-weight: 300;
	color: #444;
	margin-right: 10px;
}

._inner_btn_item a {
	display: block;
	font-size: 16px;
	font-weight: 200;
}


.inner_contact {
	margin-bottom: 60px;
}

.contact-card {
	background: white;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
	padding: 60px 50px;
	transition: transform 0.3s ease;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.contact-card:hover {
	transform: translateY(-8px);
}

.contact-card .company-info {
	flex: 1;
	min-width: 400px;
	padding-right: 40px;
	border-right: 2px dashed #eaeaea;
}

.contact-card .contact-details {
	flex: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.contact-card .company-name {
	color: #2c3e50;
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.contact-card .company-tagline {
	color: #7f8c8d;
	font-size: 20px;
	margin-bottom: 40px;
	font-weight: 500;
}

.contact-card .company-description {
	color: #5a6c7d;
	font-size: 18px;
	line-height: 1.7;
	margin-top: 30px;
}

.contact-card .contact-item {
	display: flex;
	align-items: flex-start;
	padding: 25px;
	border-radius: 15px;
	transition: all 0.3s ease;
	background: #f8fafc;
}

.contact-card .contact-item:hover {
	background: #edf7ff;
	transform: translateX(5px);
}

.contact-card .icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3498db, #2c3e50);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 25px;
	flex-shrink: 0;
	box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.contact-card .icon svg {
	width: 32px;
	height: 32px;
	fill: white;
}

.contact-card .content {
	flex: 1;
}

.contact-card .label {
	color: #7f8c8d;
	font-size: 16px;
	margin-bottom: 8px;
	font-weight: 500;
}

.contact-card .value {
	color: #2c3e50;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
}

.contact-card .address .value {
	font-weight: 600;
}

.contact-card .website .value {
	color: #3498db;
}

.contact-card .email .value {
	color: #e74c3c;
}

.contact-card .phone .value {
	color: #2ecc71;
}

.contact-card .mobile .value {
	color: #9b59b6;
}

.contact-card .divider {
	height: 1px;
	background: linear-gradient(to right, transparent, #eaeaea, transparent);
	margin: 20px 0;
}

.company_map {
	margin: 60px 0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
	padding: 60px 50px;
	background: white;
	transition: transform 0.3s ease;
}

.company_map:hover {
	transform: translateY(-8px);
}

.map-title h2 {
	font-size: 32px;
	color: #2c3e50;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 2px dashed #eaeaea;
}

#container {
	width: 100%;
	height: 600px;
	border-radius: 20px;
}

/* å“åº”å¼è®¾è®¡ */
@media (max-width: 1200px) {
	.contact-card .contact-details {
		grid-template-columns: 1fr;
	}

	.contact-card .company-info,
	.contact-card .contact-details {
		min-width: 100%;
		border-right: none;
		padding-right: 0;
	}

	.contact-card .company-info {
		border-bottom: 2px dashed #eaeaea;
		padding-bottom: 40px;
	}
}

@media (max-width: 992px) {
	.contact-card .contact-card {
		padding: 40px 30px;
	}

	.company_map {
		padding: 40px 30px;
	}

	.contact-card .company-name {
		font-size: 36px;
	}

	.contact-card .value {
		font-size: 20px;
	}
}

@media (max-width: 950px) {
	.inner_pro .pro-left, .inner_pro .pro-right {
		width: 100%;
	}
	.pro-list .pro-item {
		width: 49%;
	}
	.news-item .news-info {
		width: 60%;
	}
	.news-item .news-img {
		width: 40%;
	}
}

@media (max-width: 768px) {
	.pro-desc .pro-info {
		width: 100%;
	}
	.pro-desc .pro-img {
		width: 100%;
	}
	.mySwiper {
		display: none;
	}
	.contact-card .company-name {
		font-size: 32px;
	}

	.contact-card .company-tagline {
		font-size: 18px;
	}

	.contact-card .contact-item {
		padding: 20px;
	}

	.contact-card .icon {
		width: 60px;
		height: 60px;
		margin-right: 20px;
	}

	.contact-card .icon svg {
		width: 28px;
		height: 28px;
	}

	.contact-card .value {
		font-size: 18px;
	}

	.contact-card .label {
		font-size: 15px;
	}

	#container {
		height: 400px;
	}
	
}

@media (max-width: 640px) {
	.news-item .news-info {
		width: 100%;
	}
	.news-item .news-img {
		width: 100%;
	}
}

@media (max-width: 576px) {
	.contact-card {
		padding: 30px 20px;
		gap: 30px;
	}

	.company_map {
		padding: 30px 20px;
		margin: 40px 0;
	}

	.contact-card .company-name {
		font-size: 28px;
	}

	.contact-card .company-tagline {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.contact-card .contact-details {
		gap: 20px;
	}

	.contact-card .contact-item {
		padding: 15px;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.contact-card .icon {
		margin-right: 0;
		margin-bottom: 15px;
		width: 50px;
		height: 50px;
	}

	.contact-card .icon svg {
		width: 24px;
		height: 24px;
	}

	.contact-card .value {
		font-size: 16px;
	}

	.contact-card .label {
		font-size: 14px;
	}

	.map-title h2 {
		font-size: 26px;
	}

	#container {
		height: 300px;
	}
}

@media (max-width: 400px) {
	.contact-card .company-name {
		font-size: 24px;
	}

	.contact-card .value {
		font-size: 15px;
	}

	.map-title h2 {
		font-size: 22px;
	}

	#container {
		height: 250px;
	}
}