﻿/*通用类*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	margin: 0 auto;
	font-size: 14px;
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	background: transparent;
	 
	color: #010000;
	position: relative;
	line-height: 1.5;
}
h1, h2, h3 {
	font-weight: 500;
}
img {
	border: none;
}
a {
	cursor: pointer;
	color: #333;
	text-decoration: none !important;
	outline: none;
}
a:hover {
	color: #006bb7;
}
ul {
	list-style-type: none;
}
em {
	font-style: normal;
}
.lt {
	float: left;
}
.rt {
	float: right;
}
input.sub, label {
	border: none;
	cursor: pointer;
}
input, textarea {
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	outline: none;
}
table {
	border-collapse: collapse;
}
table td, table th {
	padding: 0;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
 color:#ccc;
}
input::-moz-placeholder, textarea::-moz-placeholder {   /* Mozilla Firefox 19+ */
 color:#ccc;
}
input:-moz-placeholder, textarea:-moz-placeholder {    /* Mozilla Firefox 4 to 18 */
 color:#ccc;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {  /* Internet Explorer 10-11 */
 color:#ccc;
}
div.clear {
	font: 0px Arial;
	line-height: 0;
	height: 0;
	overflow: hidden;
	clear: both;
}
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

/* 增强版清除浮动 */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}



/* 主代码开始开始*/

/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
	line-height: 1.5;
}

/* 头部样式 */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: transparent;
	transition: all 0.3s ease;
}

/* 滚动时头部黑色半透明背景 */
.header.scrolled {
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
}

/* 内页header禁用滚动变色效果 */
.header-inner.scrolled {
	background-color: #fff !important;
	backdrop-filter: none !important;
}

.header-container {
	width: 100%;
	height: 120px;
	margin: 0 auto;
	padding: 0 5%;
	display: flex;
	align-items: center;
}

/* 元素排列顺序：logo在左，导航+搜索+语言都在右 */
.header-container > .logo {
	order: 1;
	margin-right: auto;
}

.header-container > .nav-pc {
	order: 2;
}

.header-container > .sousuo {
	order: 3;
	margin-left: 40px;
}

.header-container > .yuyan_tab {
	order: 4;
	margin-left: 20px;
}

.header-container > .menu-toggle {
	order: 5;
	margin-left: 20px;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 28px;
	display: block;
}

/* PC端导航样式 */
.nav-pc {
	display: flex;
	align-items: center;
	gap: 35px;
}

.nav-item {
	position: relative;
}

.nav-link {
	display: block;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	padding: 8px 0;
	line-height: 24px;
	position: relative;
	transition: color 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nav-link:hover {
	color: rgba(255, 255, 255, 0.7);
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #fff;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

/* 子菜单样式 */
.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 100;
}

.nav-item:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu-item {
	list-style: none;
}

.sub-menu-link {
	display: block;
	color: #333;
	text-decoration: none;
	padding: 8px 20px;
	transition: all 0.3s ease;
}

.sub-menu-link:hover {
	background-color: #f5f5f5;
	color: #333;
}

/* 移动端菜单按钮 */
.menu-toggle {
	float: right;
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 1001;
	margin-left: 15px;
}

.menu-toggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #fff;
	border-radius: 3px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
	top: 0px;
}

.menu-toggle span:nth-child(2), .menu-toggle span:nth-child(3) {
	top: 10px;
}

.menu-toggle span:nth-child(4) {
	top: 20px;
}

/* 移动端导航样式 */
.nav-mobile {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	max-width: 400px;
	height: 100vh;
	background-color: #fff;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	z-index: 1000;
	overflow-y: auto;
	padding: 70px 0 30px;
}

.nav-mobile.active {
	right: 0;
}

.nav-mobile-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #333;
}

.nav-mobile-list {
	list-style: none;
}

.nav-mobile-item {
	border-bottom: 1px solid #eee;
}

/* 移动端菜单行布局 */
.mobile-menu-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

/* 移动端展开按钮样式 */
.mobile-expand-btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #333;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 4px;
}

.nav-mobile-link {
	display: block;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	width: calc(100% - 50px);
}

.nav-mobile-link.has-children::after {
	content: "";
}

.nav-mobile-link.active.has-children::after {
	content: "";
}

.nav-mobile-sublist {
	display: none;
	list-style: none;
	background-color: #f9f9f9;
}

.nav-mobile-sublist.active {
	display: block;
}

.nav-mobile-subitem {
	border-top: 1px solid #eee;
}

.nav-mobile-sublink {
	display: block;
	padding: 12px 20px 12px 40px;
	color: #666;
	text-decoration: none;
}

/* 遮罩层 */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}

.submenu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 20px;
	color: #999;
	cursor: pointer;
	margin-left: auto;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

/* 搜索按钮样式 */
.sousuo {
	position: relative;
	display: flex;
	align-items: center;
}

.search-icon {
	width: 22px;
	height: 22px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: color 0.3s ease;
}

.search-svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* 全屏搜索弹窗 */
.search-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.92);
	backdrop-filter: blur(10px);
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.95);
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-modal.active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.search-modal-close {
	position: absolute;
	top: 40px;
	right: 5%;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.search-modal-close:hover {
	background: #fff;
	color: #000;
	transform: rotate(90deg);
}

.search-modal-close svg {
	width: 20px;
	height: 20px;
}

.search-modal-inner {
	width: 100%;
	max-width: 720px;
	padding: 0 20px;
}

.search-modal-title {
	color: #fff;
	font-size: 32px;
	font-weight: 300;
	letter-spacing: 8px;
	text-align: center;
	margin-bottom: 40px;
	opacity: 0.8;
}

.search-modal-form {
	display: flex;
	align-items: center;
	border-bottom: 2px solid rgba(255, 255, 255, 0.4);
	padding-bottom: 15px;
	transition: border-color 0.3s ease;
}

.search-modal-form:focus-within {
	border-bottom-color: #fff;
}

.search-modal-icon {
	width: 24px;
	height: 24px;
	color: rgba(255, 255, 255, 0.6);
	margin-right: 15px;
	flex-shrink: 0;
}

.search-modal-input {
	flex: 1;
	height: 50px;
	background: transparent;
	border: none;
	outline: none;
	color: #fff;
	font-size: 20px;
	font-weight: 300;
}

.search-modal-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.search-modal-btn {
	height: 44px;
	padding: 0 30px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 22px;
	margin-left: 15px;
}

.search-modal-btn:hover {
	background: #fff;
	color: #000;
	border-color: #fff;
}

.search-modal-hot {
	margin-top: 30px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.hot-label {
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
	letter-spacing: 1px;
}

.search-modal-hot a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	padding: 6px 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	transition: all 0.3s ease;
}

.search-modal-hot a:hover {
	color: #fff;
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 750px) {
	.search-modal-inner {
		padding: 0 24px;
	}
	.search-modal-title {
		font-size: 22px;
		letter-spacing: 4px;
		margin-bottom: 28px;
	}
	.search-modal-form {
		flex-wrap: wrap;
		padding-bottom: 12px;
	}
	.search-modal-icon {
		width: 20px;
		height: 20px;
		margin-right: 10px;
	}
	.search-modal-input {
		font-size: 16px;
		height: 44px;
		flex: 1 1 auto;
		min-width: 0;
	}
	.search-modal-btn {
		height: 38px;
		padding: 0 18px;
		font-size: 12px;
		margin-left: 10px;
		letter-spacing: 1px;
	}
	.search-modal-close {
		top: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
	}
	.search-modal-hot {
		margin-top: 24px;
		gap: 8px;
	}
	.search-modal-hot a {
		font-size: 12px;
		padding: 5px 12px;
	}
	.hot-label {
		width: 100%;
		margin-bottom: 4px;
	}
}

@media only screen and (max-width: 480px) {
	.search-modal-btn {
		width: 100%;
		margin-left: 0;
		margin-top: 12px;
		height: 42px;
	}
	.search-modal-form {
		padding-bottom: 8px;
	}
}

/* 语言切换样式 */
.yuyan_tab {
	position: relative;
	z-index: 1001;
	display: flex;
	align-items: center;
}

.language-current {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 6px 10px;
	border-radius: 4px;
	transition: all 0.3s ease;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.language-current:hover {
	background: rgba(255, 255, 255, 0.1);
}

.lang-svg {
	width: 20px;
	height: 20px;
	margin-right: 6px;
	display: block;
}

.language-list {
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 120px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 5px 0;
	display: none;
}

.yuyan_tab:hover .language-list {
	display: block;
}

.language-list li {
	list-style: none;
}

.language-list li a {
	display: block;
	padding: 8px 15px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
}

.language-list li a:hover {
	background: #f5f5f5;
}

/* 移动端搜索和语言切换 */
.mobile-functions {
	padding: 20px;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.mobile-search {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	color: #333;
	padding: 8px 12px;
	border-radius: 20px;
	border: 1px solid #e0e0e0;
	transition: all 0.2s ease;
}

.mobile-search:active {
	background: #f5f5f5;
}

.mobile-search-icon {
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
}

.mobile-search-icon svg {
	width: 100%;
	height: 100%;
}

.mobile-search-label {
	font-size: 14px;
	color: #333;
}

.mobile-language {
	position: relative;
}

.mobile-language-current {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.mobile-language-current img {
	width: 20px;
	height: auto;
	margin-right: 5px;
}

.mobile-language-list {
	position: absolute;
	top: 40px;
	right: 0;
	min-width: 120px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 5px 0;
	display: none;
	z-index: 1001;
}

.mobile-language-list.active {
	display: block;
}

.mobile-language-list li {
	list-style: none;
}

.mobile-language-list li a {
	display: flex;
	align-items: center;
	padding: 8px 15px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
}

.mobile-language-list li a:hover {
	background: #f5f5f5;
}

.mobile-language-list li a img {
	width: 20px;
	height: auto;
	margin-right: 10px;
}


@media only screen and (max-width:1200px) {
	.header-container {
		padding: 18px 5%;
	}
	
	.nav-item {
		margin: 0 15px;
	}
	
	.sousuo {
		margin-left: 15px;
	}
	
	.yuyan_tab {
		margin-left: 15px;
	}
}

@media only screen and (max-width: 1000px) {
	.header-container {
		padding: 18px 5%;
	}
	
	.nav-item {
		margin: 0 10px;
	}
	
	.nav-link {
		font-size: 14px;
	}
	
	.sousuo {
		margin-left: 10px;
	}
	
	.yuyan_tab {
		margin-left: 10px;
	}
	
	.language-current span {
		display: none;
	}
}

@media only screen and (max-width: 750px) {
	.nav-pc {
		display: none;
	}
	
	.menu-toggle {
		display: block;
		margin-left: 0;
	}
	
	.header-container {
		height: 80px;
		padding: 0 5%;
	}
	
	.logo img {
		height: 26px;
	}
	
	.yuyan_tab {
		display: none;
	}
	
	.sousuo {
		display: none;
	}
	
	.mobile-functions {
		border: none;
	}
}



/* ========== Banner 轮播 ========== */
.banner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.banner-swiper {
	width: 100%;
}

.banner-swiper .swiper-slide {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.banner-swiper .swiper-slide img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
}

/* 文字容器 - 使用 bootstrap container 版心 */
.banner-slide-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	z-index: 5;
}

/* 文字内容 */
.banner-content {
	max-width: 500px;
	width: 500px;
	color: #fff;
	text-align: left;
}

.banner-content p,
.banner-content h2 {
	text-align: left;
}

.banner-subtitle {
	font-style: italic;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 18px;
	opacity: 0.9;
	letter-spacing: 0.5px;
}

.banner-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 22px;
	letter-spacing: 1px;
}

.banner-desc {
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 32px;
	opacity: 0.85;
}

.banner-btns {
	display: flex;
	gap: 15px;
}

.banner-btn {
	display: inline-block;
	padding: 12px 28px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.banner-btn-outline {
	border: 1px solid rgba(255, 255, 255, 0.7);
	color: #fff;
	background: transparent;
}

.banner-btn-outline:hover {
	background: #fff;
	color: #000;
	border-color: #fff;
}

.banner-btn-primary {
	background: #00a2e8;
	color: #fff;
	border: 1px solid #00a2e8;
}

.banner-btn-primary:hover {
	background: #0089c4;
	border-color: #0089c4;
	color: #fff;
}

/* 左右箭头 - 默认隐藏 */
.banner-arrow {
	position: absolute;
	top: 50%;
	width: 52px;
	height: 52px;
	margin-top: -26px;
	background-image: none;
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	opacity: 0;
	transition: all 0.4s ease;
}

.banner-arrow svg {
	width: 22px;
	height: 22px;
}

.banner-arrow-prev {
	left: -80px;
}

.banner-arrow-next {
	right: -80px;
}

/* Hover 时箭头从两侧滑入 */
.banner:hover .banner-arrow-prev {
	left: 40px;
	opacity: 1;
}

.banner:hover .banner-arrow-next {
	right: 40px;
	opacity: 1;
}

.banner-arrow:hover {
	background: #fff;
	color: #000;
	border-color: #fff;
}

/* 分页样式 */
.banner-swiper .swiper-pagination {
	bottom: 30px;
}

.banner-swiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	margin: 0 6px !important;
	transition: all 0.3s ease;
}

.banner-swiper .swiper-pagination-bullet-active {
	background: #fff;
	width: 30px;
	border-radius: 5px;
}

/* 响应式 */
@media only screen and (max-width: 1000px) {
	.banner-content {
		width: 100%;
		max-width: 500px;
	}
	.banner-title {
		font-size: 36px;
	}
	.banner-arrow {
		width: 44px;
		height: 44px;
		margin-top: -22px;
	}
	.banner:hover .banner-arrow-prev {
		left: 20px;
	}
	.banner:hover .banner-arrow-next {
		right: 20px;
	}
}

@media only screen and (max-width: 750px) {
	/* 手机端 banner 固定高度并让图片覆盖填充 */
	.banner,
	.banner-swiper,
	.banner-swiper .swiper-slide {
		height: 500px;
	}
	.banner-swiper .swiper-slide {
		overflow: hidden;
	}
	.banner-swiper .swiper-slide img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.banner-content {
		max-width: 100%;
		width: 100%;
	}
	.banner-subtitle {
		font-size: 14px;
		margin-bottom: 10px;
	}
	.banner-title {
		font-size: 26px;
		margin-bottom: 14px;
		line-height: 1.3;
	}
	.banner-desc {
		font-size: 13px;
		margin-bottom: 22px;
		line-height: 1.6;
	}
	.banner-btn {
		padding: 10px 20px;
		font-size: 12px;
	}
	.banner-btns {
		gap: 10px;
	}
	.banner-arrow {
		display: none;
	}
	.banner-swiper .swiper-pagination {
		bottom: 20px;
	}
}

@media only screen and (max-width: 480px) {
	.banner,
	.banner-swiper,
	.banner-swiper .swiper-slide {
		height: 460px;
	}
	.banner-title {
		font-size: 22px;
	}
}

/* ========== fp_box_1 - WHO WE ARE 标题区 ========== */
.fp_box_1 {
	padding: 80px 0;
	background-color: #fff;
}

.fp_box_1_title {
	text-align: center;
}

.fp_box_1_subtitle {
	font-size: 12px;
	margin-bottom: 9px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #04befc;
}

.fp_box_1_bigtitle {
	font-size: 24px;
	letter-spacing: 2px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.fp_box_1_line {
	display: inline-block;
	width: 40px;
	height: 2px;
	background-color: #04befc;
}

.fp_box_1_desc {
	font-family: 'Roboto Slab', serif;
	font-size: 16px;
	margin-top: 14px;
	line-height: 2;
	color: #999;
}

@media only screen and (max-width: 750px) {
	.fp_box_1 {
		padding: 50px 0;
	}
	.fp_box_1_bigtitle {
		font-size: 20px;
	}
	.fp_box_1_desc {
		font-size: 14px;
	}
}

/* ========== fp_box_2 - 服务卡片 Swiper ========== */
.fp_box_2 {
	padding: 20px 0 80px;
	background-color: #fff;
}

.fp_box_2_swiper {
	padding: 10px 5px 120px;
	overflow: hidden;
}

.fp_box_2_item {
	position: relative;
	text-align: center;
	padding: 40px 30px 55px;
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 4px;
	transition: all 0.3s ease;
	cursor: default;
	height: 100%;
}

.fp_box_2_item:hover {
	border-color: #e5e5e5;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.fp_box_2_item_title {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #222;
	margin-bottom: 20px;
}

.fp_box_2_item_desc {
	font-size: 14px;
	line-height: 1.9;
	color: #999;
	margin-bottom: 0;
	text-align: center;
}

.fp_box_2_item_btn {
	position: absolute;
	left: 50%;
	bottom: -15px;
	transform: translateX(-50%);
	width: 105px;
	height: 30px;
	line-height: 28px;
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #04befc;
	background-color: #fff;
	border: 1px solid #04befc;
	border-radius: 20px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.fp_box_2_item_btn:hover {
	background-color: #04befc;
	color: #fff;
}

/* 分页器：未激活小灰点，激活为空心圆环 */
.fp_box_2_swiper .swiper-pagination {
	bottom: 15px;
	text-align: center;
}

.fp_box_2_swiper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #cfd3d7;
	opacity: 1;
	margin: 0 5px !important;
	border-radius: 50%;
	transition: all 0.3s ease;
	vertical-align: middle;
}

.fp_box_2_swiper .swiper-pagination-bullet-active {
	width: 12px;
	height: 12px;
	background: transparent;
	border: 2px solid #04befc;
}

@media only screen and (max-width: 1000px) {
	.fp_box_2_item {
		padding: 35px 20px 55px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_2 {
		padding: 10px 0 60px;
	}
	.fp_box_2_item {
		padding: 30px 20px 50px;
	}
	.fp_box_2_item_title {
		font-size: 15px;
		margin-bottom: 16px;
	}
}

/* ========== fp_box_3 - 团队成员图片板块 ========== */
.fp_box_3 {
	padding: 20px 0 80px;
	background-color: #fff;
}

.fp_box_3_list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.fp_box_3_item {
	position: relative;
	flex: 1;
	min-width: 0;
	height: 288px;
	overflow: hidden;
	cursor: pointer;
}

.fp_box_3_img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.fp_box_3_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.fp_box_3_item:hover .fp_box_3_img img {
	transform: scale(1.05);
}

/* 蓝色浮层 - 默认藏在底部外 */
.fp_box_3_info {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 118px;
	padding: 18px 20px;
	background-color: #04befc;
	color: #fff;
	text-align: center;
	transform: translateY(100%);
	transition: transform 0.4s ease;
}

.fp_box_3_item:hover .fp_box_3_info {
	transform: translateY(0);
}

.fp_box_3_name {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	margin: 0 0 6px;
	color: #fff;
}

.fp_box_3_job {
	font-size: 12px;
	line-height: 1.5;
	margin: 0 0 12px;
	color: #fff;
	opacity: 0.9;
	text-align: center;
}

.fp_box_3_social {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
}

.fp_box_3_social a {
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 0.9;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.fp_box_3_social a:hover {
	opacity: 1;
	transform: translateY(-2px);
}

.fp_box_3_social svg {
	width: 100%;
	height: 100%;
	display: block;
}

@media only screen and (max-width: 1000px) {
	.fp_box_3_list {
		gap: 15px;
	}
	.fp_box_3_item {
		flex: 0 0 calc(50% - 8px);
		height: 260px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_3 {
		padding: 10px 0 50px;
	}
	.fp_box_3_list {
		gap: 12px;
	}
	.fp_box_3_item {
		flex: 0 0 calc(50% - 6px);
		height: 220px;
	}
	.fp_box_3_info {
		height: 110px;
		padding: 14px 12px;
		transform: translateY(0);
	}
	.fp_box_3_name {
		font-size: 13px;
		letter-spacing: 1px;
	}
	.fp_box_3_job {
		font-size: 11px;
		margin-bottom: 8px;
	}
	.fp_box_3_social a {
		width: 20px;
		height: 20px;
	}
}

@media only screen and (max-width: 480px) {
	.fp_box_3_item {
		flex: 0 0 100%;
		height: 288px;
	}
}

/* ========== fp_box_4 - OUR PORTFOLIO ========== */
.fp_box_4 {
	background-color: #f5fafe;
}

/* 顶部标题区 高度 200px */
.fp_box_4_head {
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fp_box_4_title {
	text-align: center;
	width: 100%;
}

.fp_box_4_subtitle {
	font-size: 12px;
	margin-bottom: 9px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #04befc;
}

.fp_box_4_bigtitle {
	font-size: 24px;
	letter-spacing: 2px;
	margin-bottom: 10px;
	text-transform: uppercase;
	color: #222;
}

.fp_box_4_line {
	display: inline-block;
	width: 40px;
	height: 2px;
	background-color: #04befc;
}

/* 底部四张图 通栏 */
.fp_box_4_gallery {
	width: 100%;
}

.fp_box_4_gallery.clearfix::after {
	content: '';
	display: block;
	clear: both;
}

.fp_box_4_col {
	float: left;
	width: 25%;
	height: 320px;
}

.fp_box_4_item {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}

.fp_box_4_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* hover 灰黑遮罩 */
.fp_box_4_mask {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(48, 55, 64, 0.88);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.45s ease;
}

.fp_box_4_item:hover .fp_box_4_mask {
	opacity: 1;
}

.fp_box_4_name,
.fp_box_4_cat {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.fp_box_4_item:hover .fp_box_4_name {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.15s;
}

.fp_box_4_item:hover .fp_box_4_cat {
	opacity: 0.85;
	transform: translateY(0);
	transition-delay: 0.25s;
}

.fp_box_4_name {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 2px;
	margin: 0 0 8px;
	color: #fff;
	text-transform: uppercase;
	transition: color 0.3s ease, opacity 0.5s ease, transform 0.5s ease;
}

.fp_box_4_name:hover {
	color: #04befc;
}

.fp_box_4_cat {
	font-size: 13px;
	color: #fff;
	margin: 0;
	letter-spacing: 1px;
}

@media only screen and (max-width: 1000px) {
	.fp_box_4_col {
		width: 50%;
		height: 300px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_4_head {
		height: 160px;
	}
	.fp_box_4_bigtitle {
		font-size: 20px;
	}
	.fp_box_4_col {
		width: 100%;
		height: 260px;
	}
	.fp_box_4_mask {
		opacity: 1;
		background-color: rgba(0, 0, 0, 0.2);
	}
	.fp_box_4_name {
		font-size: 14px;
		opacity: 1;
		transform: translateY(0);
	}
	.fp_box_4_cat {
		font-size: 12px;
		opacity: 0.85;
		transform: translateY(0);
	}
}

/* ========== fp_box_5 - 数字动态加载 ========== */
.fp_box_5 {
	height: 280px;
	background-color: #04befc;
	display: flex;
	align-items: center;
	color: #fff;
}

.fp_box_5_list {
	display: flex;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	width: 100%;
	max-width: 1100px;
	text-align: center;
}

.fp_box_5_item {
	flex: 1;
	padding: 0 15px;
}

.fp_box_5_num {
	font-size: 60px;
	font-weight: 300;
	line-height: 1;
	margin-bottom: 18px;
	color: #fff;
	letter-spacing: 1px;
}

.fp_box_5_plus {
	font-size: 60px;
	margin-left: 2px;
}

.fp_box_5_label {
	font-size: 16px;
	color: #fff;
	margin: 0;
	letter-spacing: 1px;
}

@media only screen and (max-width: 1000px) {
	.fp_box_5_num,
	.fp_box_5_plus {
		font-size: 48px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_5 {
		height: auto;
		padding: 40px 0;
	}
	.fp_box_5_list {
		flex-wrap: wrap;
	}
	.fp_box_5_item {
		flex: 0 0 50%;
		padding: 15px 10px;
	}
	.fp_box_5_num,
	.fp_box_5_plus {
		font-size: 40px;
	}
	.fp_box_5_label {
		font-size: 14px;
	}
}

/* ========== fp_box_6 - OUR FEATURES ========== */
.fp_box_6 {
	padding: 80px 0;
	background-color: #fff;
}

/* 顶部标题区，居中 */
.fp_box_6_title {
	text-align: center;
	margin-bottom: 60px;
}

.fp_box_6_subtitle {
	font-size: 12px;
	margin-bottom: 9px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #04befc;
}

.fp_box_6_bigtitle {
	font-size: 24px;
	letter-spacing: 2px;
	margin-bottom: 10px;
	text-transform: uppercase;
	color: #222;
}

.fp_box_6_line {
	display: inline-block;
	width: 40px;
	height: 2px;
	background-color: #04befc;
}

.fp_box_6_desc {
	font-family: 'Roboto Slab', serif;
	font-size: 16px;
	margin-top: 14px;
	line-height: 2;
	color: #999;
}

/* 左右主体 */
.fp_box_6_main {
	display: flex;
	align-items: center;
	gap: 40px;
}

.fp_box_6_left {
	flex: 0 0 auto;
	width: 550px;
	height: 630px;
	margin-left: -80px;
}

.fp_box_6_left img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.fp_box_6_right {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 55px 40px;
	padding-left: 20px;
}

/* 单个 feature 项，图标绝对定位在左，文字左内边距让位给图标 */
.fp_box_6_feature {
	position: relative;
	flex: 0 0 calc(50% - 20px);
	padding-left: 80px;
	min-height: 60px;
	text-align: left;
}

.fp_box_6_icon {
	position: absolute;
	left: 0;
	top: 4px;
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.fp_box_6_feature_title {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: #222;
	margin: 0 0 18px;
	text-transform: uppercase;
	text-align: left;
}

/* 标题下的灰色短线 */
.fp_box_6_feature_title::after {
	content: '';
	display: block;
	width: 50px;
	height: 1px;
	background-color: #d8d8d8;
	margin-top: 18px;
}

.fp_box_6_feature_desc {
	font-size: 14px;
	line-height: 2;
	color: #999;
	margin: 0;
	text-align: left;
}

@media only screen and (max-width: 1200px) {
	.fp_box_6_left {
		margin-left: 0;
		width: 40%;
		height: auto;
	}
}

@media only screen and (max-width: 1000px) {
	.fp_box_6 {
		padding: 60px 0;
	}
	.fp_box_6_main {
		gap: 30px;
	}
	.fp_box_6_left {
		width: 38%;
	}
	.fp_box_6_right {
		gap: 40px 25px;
		padding-left: 0;
	}
	.fp_box_6_feature {
		flex: 0 0 calc(50% - 13px);
		padding-left: 60px;
	}
	.fp_box_6_icon {
		width: 42px;
		height: 42px;
	}
	.fp_box_6_feature_title {
		font-size: 13px;
		margin-bottom: 14px;
	}
	.fp_box_6_feature_title::after {
		margin-top: 14px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_6 {
		padding: 50px 0;
	}
	.fp_box_6_title {
		margin-bottom: 40px;
	}
	.fp_box_6_bigtitle {
		font-size: 20px;
	}
	.fp_box_6_desc {
		font-size: 14px;
	}
	.fp_box_6_main {
		flex-direction: column;
		gap: 40px;
	}
	.fp_box_6_left {
		flex: none;
		width: 60%;
		max-width: 60%;
		height: auto;
		margin: 0 auto;
	}
	.fp_box_6_right {
		flex: none;
		width: 100%;
		gap: 30px 20px;
	}
	.fp_box_6_feature {
		flex: 0 0 100%;
		padding-left: 55px;
	}
	.fp_box_6_icon {
		width: 36px;
		height: 36px;
	}
}

/* ========== fp_box_7 - A NEW THEME 左右介绍 ========== */
.fp_box_7 {
	padding: 80px 0;
	background-color: #fff;
	border-top: 1px solid #e5e5e5;
}

.fp_box_7_main {
	display: flex;
	align-items: center;
	gap: 60px;
}

.fp_box_7_left,
.fp_box_7_right {
	flex: 0 0 calc(50% - 30px);
	max-width: calc(50% - 30px);
}

.fp_box_7_title {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #222;
	text-transform: uppercase;
	margin: 0 0 16px;
	line-height: 1.4;
	text-align: left;
}

.fp_box_7_line {
	display: block;
	width: 40px;
	height: 2px;
	background-color: #04befc;
	margin-bottom: 24px;
}

.fp_box_7_desc {
	font-size: 14px;
	line-height: 1.9;
	color: #888;
	margin: 0 0 18px;
}

/* 按钮：左右结构，高度 40px */
.fp_box_7_btn {
	display: inline-flex;
	align-items: stretch;
	height: 40px;
	margin-top: 14px;
	text-decoration: none;
	color: #fff;
	overflow: hidden;
}

.fp_box_7_btn_text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	background-color: #04befc;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	transition: background-color 0.3s ease;
}

.fp_box_7_btn_icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	background-color: #01a5d9;
	color: #fff;
	transition: background-color 0.3s ease;
}

.fp_box_7_btn_icon svg {
	width: 14px;
	height: 14px;
	display: block;
}

/* hover：左边变得跟右边一样深，整体统一 */
.fp_box_7_btn:hover .fp_box_7_btn_text {
	background-color: #01a5d9;
}

.fp_box_7_btn:hover .fp_box_7_btn_icon {
	background-color: #018bb5;
}

/* 右侧图 */
.fp_box_7_right img {
	display: block;
	width: 100%;
	height: auto;
}

@media only screen and (max-width: 1000px) {
	.fp_box_7 {
		padding: 60px 0;
	}
	.fp_box_7_main {
		gap: 40px;
	}
	.fp_box_7_left,
	.fp_box_7_right {
		flex: 0 0 calc(50% - 20px);
		max-width: calc(50% - 20px);
	}
	.fp_box_7_title {
		font-size: 18px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_7 {
		padding: 40px 0;
	}
	.fp_box_7_main {
		flex-direction: column;
		gap: 30px;
	}
	.fp_box_7_left,
	.fp_box_7_right {
		flex: none;
		max-width: 100%;
		width: 100%;
	}
	.fp_box_7_title {
		font-size: 18px;
	}
}

/* ========== fp_box_8 - 视频板块 ========== */
.fp_box_8 {
	position: relative;
	height: 520px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	overflow: hidden;
}

.fp_box_8_mask {
	position: absolute;
	inset: 0;
	background-color: rgba(48, 55, 64, 0.55);
}

.fp_box_8_inner {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
}

/* 播放按钮 */
.fp_box_8_play {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin-bottom: 30px;
	color: #fff;
	text-decoration: none;
}

.fp_box_8_play_icon {
	position: relative;
	z-index: 2;
	width: 60px;
	height: 60px;
	display: block;
	transition: transform 0.35s ease;
}

.fp_box_8_play_ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.6);
	opacity: 0;
	transform: scale(1);
	transition: opacity 0.4s ease, transform 0.6s ease;
}

.fp_box_8_play:hover .fp_box_8_play_icon {
	transform: scale(1.08) rotate(360deg);
	transition: transform 0.6s ease;
}

.fp_box_8_play:hover .fp_box_8_play_ring {
	opacity: 1;
	transform: scale(1.4);
}

.fp_box_8_title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #fff;
	margin: 0 0 22px;
	text-transform: uppercase;
	line-height: 1.4;
}

.fp_box_8_divider {
	display: inline-block;
	width: 30px;
	height: 2px;
	background-color: #04befc;
	margin-bottom: 22px;
}

.fp_box_8_author {
	font-size: 12px;
	letter-spacing: 3px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	text-transform: uppercase;
}

/* ========== 视频弹窗 ========== */
.video-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.video-modal.is-open {
	display: flex;
	animation: videoModalFade 0.25s ease;
}

@keyframes videoModalFade {
	from { opacity: 0; }
	to { opacity: 1; }
}

.video-modal_backdrop {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.75);
	cursor: pointer;
}

.video-modal_dialog {
	position: relative;
	width: 100%;
	max-width: 900px;
	background-color: #000;
	border-radius: 4px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	animation: videoModalPop 0.3s ease;
}

@keyframes videoModalPop {
	from { transform: scale(0.9); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

.video-modal_close {
	position: absolute;
	top: -44px;
	right: 0;
	width: 36px;
	height: 36px;
	padding: 0;
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	transition: transform 0.3s ease, opacity 0.3s ease;
	opacity: 0.85;
}

.video-modal_close:hover {
	opacity: 1;
	transform: rotate(90deg);
}

.video-modal_close svg {
	width: 100%;
	height: 100%;
	display: block;
}

.video-modal_frame {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
}

.video-modal_frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media only screen and (max-width: 750px) {
	.fp_box_8 {
		height: 420px;
	}
	.fp_box_8_title {
		font-size: 16px;
		letter-spacing: 1.5px;
	}
	.fp_box_8_play,
	.fp_box_8_play_icon {
		width: 54px;
		height: 54px;
	}
	.video-modal_close {
		top: -40px;
	}
}

/* ========== fp_box_9 - LATEST FROM BLOG ========== */
.fp_box_9 {
	padding: 80px 0;
	background-color: #fff;
}

/* 顶部标题 */
.fp_box_9_title {
	text-align: center;
	margin-bottom: 60px;
}

.fp_box_9_subtitle {
	font-size: 12px;
	margin-bottom: 9px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #04befc;
}

.fp_box_9_bigtitle {
	font-size: 24px;
	letter-spacing: 2px;
	margin-bottom: 10px;
	text-transform: uppercase;
	color: #222;
}

.fp_box_9_line {
	display: inline-block;
	width: 40px;
	height: 2px;
	background-color: #04befc;
}

.fp_box_9_desc {
	font-family: 'Roboto Slab', serif;
	font-size: 16px;
	margin-top: 14px;
	line-height: 2;
	color: #999;
}

/* 三个卡片 */
.fp_box_9_list {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 30px;
}

.fp_box_9_item {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

/* 图片区 - 相对定位承载 hover 遮罩 */
.fp_box_9_img {
	position: relative;
	display: block;
	width: 100%;
	height: 300px;
	overflow: hidden;
	text-decoration: none;
}

.fp_box_9_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.fp_box_9_mask {
	position: absolute;
	inset: 0;
	background-color: rgba(4, 190, 252, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.35s ease, transform 0.4s ease;
}

.fp_box_9_mask_btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #222;
	transform: scale(0.6);
	transition: transform 0.4s ease;
}

.fp_box_9_mask_btn svg {
	width: 20px;
	height: 20px;
	display: block;
}

.fp_box_9_img:hover .fp_box_9_mask {
	opacity: 1;
	transform: scale(1);
}

.fp_box_9_img:hover .fp_box_9_mask_btn {
	transform: scale(1);
}

.fp_box_9_img:hover img {
	transform: scale(1.05);
}

/* 文本区 */
.fp_box_9_info {
	padding: 24px 0 0;
	position: relative;
}

/* 标题 + meta 一组，共用左侧蓝色竖线 */
.fp_box_9_item_head {
	position: relative;
	padding-left: 14px;
	margin-bottom: 20px;
}

.fp_box_9_item_head::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	bottom: 2px;
	width: 2px;
	background-color: #04befc;
}

.fp_box_9_item_title {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #222;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.fp_box_9_item_title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.fp_box_9_item_title a:hover {
	color: #04befc;
}

.fp_box_9_item_meta {
	font-size: 13px;
	font-style: italic;
	color: #999;
	margin: 0;
}

.fp_box_9_item_meta a {
	color: #999;
	text-decoration: none;
}

.fp_box_9_item_meta a:hover {
	color: #04befc;
}

.fp_box_9_item_desc {
	font-size: 14px;
	line-height: 1.9;
	color: #666;
	margin: 0 0 22px;
}

/* 底部：上灰线、左右结构 */
.fp_box_9_foot {
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid #eaeaea;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fp_box_9_comments {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #999;
	font-size: 13px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.fp_box_9_comments svg {
	width: 18px;
	height: 18px;
	display: block;
}

.fp_box_9_comments:hover {
	color: #04befc;
}

.fp_box_9_more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	color: #999;
	text-decoration: none;
	transition: color 0.3s ease, transform 0.3s ease;
}

.fp_box_9_more svg {
	width: 100%;
	height: 100%;
	display: block;
}

.fp_box_9_more:hover {
	color: #04befc;
	transform: translateX(3px);
}

@media only screen and (max-width: 1000px) {
	.fp_box_9_list {
		flex-wrap: wrap;
		gap: 30px 20px;
	}
	.fp_box_9_item {
		flex: 0 0 calc(50% - 10px);
	}
	.fp_box_9_img {
		height: 260px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_9 {
		padding: 50px 0;
	}
	.fp_box_9_title {
		margin-bottom: 40px;
	}
	.fp_box_9_bigtitle {
		font-size: 20px;
	}
	.fp_box_9_desc {
		font-size: 14px;
	}
	.fp_box_9_item {
		flex: 0 0 100%;
	}
	.fp_box_9_img {
		height: 240px;
	}
}

/* ========== fp_box_10 - 订阅 Newsletter ========== */
.fp_box_10 {
	position: relative;
	height: 515px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	overflow: hidden;
}

.fp_box_10_mask {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.15);
}

.fp_box_10_inner {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px 15px;
}

.fp_box_10_title {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 3px;
	color: #fff;
	margin: 0 0 30px;
	text-transform: uppercase;
}

/* 表单 */
.fp_box_10_form {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 22px;
}

/* 输入框通用 */
.fp_box_10_field {
	position: relative;
	height: 40px;
	background-color: #fff;
	display: flex;
	align-items: stretch;
	transition: background-color 0.3s ease;
}

.fp_box_10_field-name {
	width: 215px;
}

.fp_box_10_field-email {
	width: 335px;
}

.fp_box_10_icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	color: #444;
	transition: color 0.3s ease;
}

/* 图标右侧短粗竖线：高度不到整体高，独立于 border */
.fp_box_10_icon::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 18px;
	background-color: #ccc;
}

.fp_box_10_icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.fp_box_10_field input {
	flex: 1;
	border: 0;
	outline: none;
	background: transparent;
	height: 100%;
	padding: 0 14px;
	font-size: 13px;
	color: #333;
	min-width: 0;
	transition: color 0.3s ease;
}

.fp_box_10_field input::placeholder {
	color: #999;
	transition: color 0.3s ease;
}

/* focus 状态：仅图标变蓝色，背景与文字保持不变 */
.fp_box_10_field:focus-within .fp_box_10_icon {
	color: #04befc;
}

/* 按钮：左右双色 */
.fp_box_10_btn {
	display: inline-flex;
	align-items: stretch;
	width: 215px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	overflow: hidden;
}

.fp_box_10_btn_text {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #04befc;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 3px;
	transition: background-color 0.3s ease;
}

.fp_box_10_btn_icon {
	flex: 0 0 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #01a5d9;
	color: #fff;
	transition: background-color 0.3s ease;
}

.fp_box_10_btn_icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.fp_box_10_btn:hover .fp_box_10_btn_text {
	background-color: #01a5d9;
}

.fp_box_10_btn:hover .fp_box_10_btn_icon {
	background-color: #018bb5;
}

/* 底部文案 */
.fp_box_10_note {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 6px;
}

.fp_box_10_spam {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

@media only screen and (max-width: 1000px) {
	.fp_box_10_form {
		gap: 15px;
	}
	.fp_box_10_field-name {
		width: 200px;
	}
	.fp_box_10_field-email {
		width: 260px;
	}
	.fp_box_10_btn {
		width: 180px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_10 {
		height: auto;
		padding: 60px 0;
	}
	.fp_box_10_title {
		font-size: 18px;
		letter-spacing: 2px;
		margin-bottom: 24px;
	}
	.fp_box_10_form {
		flex-direction: column;
		gap: 12px;
	}
	.fp_box_10_field,
	.fp_box_10_btn {
		width: 100%;
		max-width: 340px;
	}
}

/* ========== fp_box_11 - OUR PARTNERS ========== */
.fp_box_11 {
	padding: 70px 0 80px;
	background-color: #fff;
}

.fp_box_11_title {
	text-align: center;
	margin-bottom: 50px;
}

.fp_box_11_subtitle {
	font-size: 12px;
	margin-bottom: 9px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #04befc;
}

.fp_box_11_bigtitle {
	font-size: 24px;
	letter-spacing: 2px;
	margin-bottom: 10px;
	text-transform: uppercase;
	color: #222;
}

.fp_box_11_line {
	display: inline-block;
	width: 40px;
	height: 2px;
	background-color: #04befc;
}

/* 8 张 logo，4 列 × 2 行，网格分隔线 */
.fp_box_11_list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}

.fp_box_11_item {
	flex: 0 0 25%;
	max-width: 25%;
	height: 105px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 20px;
	box-sizing: border-box;
	border-right: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
}

/* 最右列去掉右边线 */
.fp_box_11_item:nth-child(4n) {
	border-right: 0;
}

/* 最后一行去掉底部线 */
.fp_box_11_item:nth-last-child(-n+4) {
	border-bottom: 0;
}

.fp_box_11_item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
	transition: opacity 0.3s ease;
	opacity: 0.85;
}

.fp_box_11_item:hover img {
	opacity: 1;
}

@media only screen and (max-width: 1000px) {
	.fp_box_11_item {
		height: 95px;
		padding: 12px 15px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_11 {
		padding: 50px 0 60px;
	}
	.fp_box_11_bigtitle {
		font-size: 20px;
	}
	.fp_box_11_item {
		flex: 0 0 50%;
		max-width: 50%;
		height: 90px;
		padding: 12px;
		border: 0;
	}
}

/* ========== fp_box_12 - Buy Now CTA ========== */
.fp_box_12 {
	height: 120px;
	background-color: #04befc;
	display: flex;
	align-items: center;
}

.fp_box_12_inner.clearfix::after {
	content: '';
	display: block;
	clear: both;
}

.fp_box_12_text {
	float: left;
	margin: 0;
	font-size: 20px;
	color: #fff;
	line-height: 1.4;
	text-align: left;
	letter-spacing: 0.5px;
}

.fp_box_12_btn {
	float: right;
	display: inline-block;
	padding: 12px 30px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #fff;
	text-decoration: none;
	text-align: right;
	border: 1px solid #fff;
	background-color: transparent;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.fp_box_12_btn:hover {
	background-color: #fff;
	color: #04befc;
	transform: translateY(-2px);
}

@media only screen and (max-width: 750px) {
	.fp_box_12 {
		height: auto;
		padding: 30px 0;
	}
	.fp_box_12_text,
	.fp_box_12_btn {
		float: none;
		display: block;
	}
	.fp_box_12_text {
		text-align: center;
		font-size: 14px;
		margin-bottom: 18px;
	}
	.fp_box_12_btn {
		width: 140px;
		margin: 0 auto;
		text-align: center;
		padding: 10px 0;
	}
}

/* ========== footer ========== */
.footer {
	background-color: #1c1c1c;
	color: #a0a0a0;
	font-size: 13px;
}

.footer_grid {
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 70px 0 60px;
	flex-wrap: wrap;
}

.footer_col {
	flex: 1;
	min-width: 0;
}

.footer_col-brand {
	flex: 0 0 200px;
	text-align: left;
}

.footer_col-links {
	flex: 1.1;
}

.footer_col-blogs {
	flex: 1.4;
}

.footer_col-tweets {
	flex: 1.4;
}

/* 品牌 */
.footer_logo {
	display: inline-block;
	margin-bottom: 20px;
}

.footer_logo img {
	max-width: 100%;
	display: block;
}

.footer_intro {
	font-size: 13px;
	color: #888;
	line-height: 1.7;
	margin: 0;
}

/* 通用小标题 */
.footer_title {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #fff;
	margin: 0 0 26px;
	text-transform: uppercase;
}

/* QUICK LINKS */
.footer_links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer_links li {
	margin-bottom: 14px;
}

.footer_links a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	letter-spacing: 1.5px;
	color: #a0a0a0;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.footer_arrow {
	width: 12px;
	height: 12px;
	flex: 0 0 12px;
	color: #04befc;
	display: block;
}

.footer_links a:hover {
	color: #fff;
}

/* FEATURE BLOGS */
.footer_blogs {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer_blogs li {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
}

.footer_blog_img {
	flex: 0 0 70px;
	width: 70px;
	height: 60px;
	overflow: hidden;
	display: block;
}

.footer_blog_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.footer_blog_info {
	flex: 1;
	min-width: 0;
}

.footer_blog_title {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	margin: 0 0 8px;
	text-transform: uppercase;
	line-height: 1.4;
}

.footer_blog_title a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer_blog_title a:hover {
	color: #04befc;
}

.footer_blog_date {
	font-size: 12px;
	color: #777;
	margin: 0;
}

/* LATEST TWEETS：图标绝对定位在左 */
.footer_tweets {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer_tweets li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 2px;
}

.footer_tweet_icon {
	position: absolute;
	left: 0;
	top: 2px;
	width: 18px;
	height: 18px;
	color: #04befc;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.footer_tweet_icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.footer_tweet_text {
	font-size: 13px;
	line-height: 1.7;
	color: #a0a0a0;
	margin: 0 0 6px;
}

.footer_tweet_text a {
	color: #04befc;
	text-decoration: none;
}

.footer_tweet_text a:hover {
	text-decoration: underline;
}

.footer_tweet_time {
	font-size: 12px;
	color: #777;
	margin: 0;
}

/* 底部版权 */
.footer_copyright {
	background-color: #141414;
	color: #888;
	font-size: 13px;
	text-align: center;
	padding: 24px 0;
	letter-spacing: 1px;
}

@media only screen and (max-width: 1000px) {
	.footer_grid {
		gap: 30px;
	}
	.footer_col-brand {
		flex: 0 0 100%;
		text-align: left;
	}
	.footer_col {
		flex: 0 0 calc(50% - 15px);
	}
}

@media only screen and (max-width: 750px) {
	.footer_grid {
		padding: 50px 0 40px;
		gap: 40px;
	}
	.footer_col,
	.footer_col-brand {
		flex: 0 0 100%;
		text-align: left;
	}
	.footer_title {
		margin-bottom: 20px;
	}
	.footer_copyright {
		font-size: 12px;
		padding: 20px 15px;
		line-height: 1.6;
	}
}

/* ========== 内页 header 样式 (header-inner) ========== */
.header-inner {
	position: relative;
	background-color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-inner .nav-link {
	color: #222;
}

.header-inner .nav-link:hover {
	color: #04befc;
}

.header-inner .search-svg,
.header-inner .lang-svg {
	stroke: #222;
}

.header-inner .search-icon:hover .search-svg,
.header-inner .language-current:hover .lang-svg {
	stroke: #04befc;
}

.header-inner .language-current span {
	color: #222;
}

.header-inner .language-current:hover span {
	color: #04befc;
}

.header-inner .mobile-toggle span {
	background-color: #222;
}

.header-inner .mobile-toggle:hover span {
	background-color: #04befc;
}

/* 子菜单背景稍调整，适配白底 */
.header-inner .sub-menu {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* 内页手机端汉堡按钮黑色 */
.header-inner .menu-toggle span {
	background-color: #222;
}

/* 内页手机端菜单背景纯白色 */
.header-inner + .nav-mobile {
	background-color: #fff !important;
}

.header-inner + .nav-mobile .nav-mobile-link {
	color: #222;
}

.header-inner + .nav-mobile .nav-mobile-link:hover {
	color: #04befc;
}

.header-inner + .nav-mobile .nav-mobile-close {
	color: #222;
}

.header-inner + .nav-mobile .mobile-expand-btn {
	color: #222;
}

.header-inner + .nav-mobile .nav-mobile-sublink {
	color: #666;
}

/* 内页手机端头部固定 */
@media (max-width: 1000px) {
	.header-inner {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 1000;
	}
}

/* ========== 内页 banner (two_banner) ========== */
.two_banner {
	position: relative;
	height: 470px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
	overflow: hidden;
}

.two_banner_mask {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.3);
}

.two_banner_content {
	position: relative;
	z-index: 2;
	padding: 20px;
}

.two_banner_title {
	font-size: 42px;
	font-weight: 700;
	letter-spacing: 6px;
	color: #fff;
	margin: 0 0 18px;
	text-transform: uppercase;
	line-height: 1.2;
}

.two_banner_subtitle {
	font-size: 13px;
	letter-spacing: 3px;
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	text-transform: uppercase;
}

@media only screen and (max-width: 750px) {
	.two_banner {
		height: 320px;
	}
	.two_banner_title {
		font-size: 28px;
		letter-spacing: 4px;
		margin-bottom: 14px;
	}
	.two_banner_subtitle {
		font-size: 11px;
		letter-spacing: 2px;
	}
}

/* ========== about_box_1 - CREATE SINCE 1984 ========== */
.about_box_1 {
	padding: 80px 0;
	background-color: #fff;
}

.about_box_1_intro {
	font-size: 14px;
	line-height: 2;
	color: #666;
	text-align: center;
	margin: 0 auto 60px;
	max-width: 800px;
}

.about_box_1_main {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.about_box_1_left {
	flex: 0 0 45%;
	max-width: 45%;
}

.about_box_1_title {
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 2px;
	color: #222;
	text-transform: uppercase;
	margin: 0 0 20px;
}

.about_box_1_desc {
	font-size: 14px;
	line-height: 1.9;
	color: #666;
	margin: 0 0 32px;
}

.about_box_1_btn {
	display: inline-block;
	padding: 12px 28px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #222;
	border: 2px solid #222;
	text-decoration: none;
	text-transform: uppercase;
	background-color: transparent;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.about_box_1_btn:hover {
	background-color: #222;
	border-color: #222;
	color: #fff;
	transform: translateY(-2px);
}

/* 右侧技能条 */
.about_box_1_right {
	flex: 1;
}

.about_box_1_skill {
	margin-bottom: 28px;
}

.about_box_1_skill:last-child {
	margin-bottom: 0;
}

.about_box_1_skill_head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.about_box_1_skill_name {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.5px;
	color: #222;
	text-transform: uppercase;
}

.about_box_1_skill_percent {
	font-size: 13px;
	font-weight: 700;
	color: #04befc;
}

/* 进度条外壳 */
.about_box_1_skill_bar {
	position: relative;
	width: 100%;
	height: 4px;
	background-color: #e8e8e8;
	border-radius: 2px;
	overflow: hidden;
}

/* 进度填充 */
.about_box_1_skill_fill {
	height: 100%;
	background-color: #04befc;
	border-radius: 2px;
	transition: width 1.5s ease;
}

@media only screen and (max-width: 1000px) {
	.about_box_1_main {
		gap: 40px;
	}
	.about_box_1_left {
		flex: 0 0 42%;
		max-width: 42%;
	}
}

@media only screen and (max-width: 750px) {
	.about_box_1 {
		padding: 50px 0;
	}
	.about_box_1_intro {
		margin-bottom: 40px;
		font-size: 13px;
	}
	.about_box_1_main {
		flex-direction: column;
		gap: 40px;
	}
	.about_box_1_left {
		flex: none;
		max-width: 100%;
	}
	.about_box_1_title {
		font-size: 20px;
	}
}

/* ========== about_box_2 - MEET THE TALENTS ========== */
.about_box_2 {
	padding: 80px 0;
	background-color: #f7f7f7;
}

.about_box_2_head {
	text-align: center;
	margin-bottom: 60px;
}

.about_box_2_title {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #222;
	text-transform: uppercase;
	margin: 0 0 20px;
}

/* 标题下方装饰：简化为一条蓝色短线 */
.about_box_2_deco {
	width: 60px;
	height: 2px;
	background-color: #04befc;
	margin: 0 auto;
}

/* 四个卡片 */
.about_box_2_list {
	display: flex;
	gap: 30px;
}

.about_box_2_item {
	flex: 1;
	background-color: #fff;
	text-align: center;
	min-width: 0;
}

.about_box_2_img {
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.about_box_2_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(100%);
	transition: filter 0.4s ease, transform 0.4s ease;
}

.about_box_2_item:hover .about_box_2_img img {
	filter: grayscale(0%);
	transform: scale(1.05);
}

.about_box_2_info {
	padding: 28px 20px 30px;
}

.about_box_2_name {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #222;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.about_box_2_job {
	font-size: 13px;
	color: #999;
	margin: 0 0 20px;
}

.about_box_2_social {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

.about_box_2_social a {
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #aaa;
	transition: color 0.3s ease, transform 0.3s ease;
}

.about_box_2_social a:hover {
	color: #04befc;
	transform: translateY(-2px);
}

.about_box_2_social svg {
	width: 100%;
	height: 100%;
	display: block;
}

@media only screen and (max-width: 1000px) {
	.about_box_2_list {
		flex-wrap: wrap;
		gap: 30px 20px;
	}
	.about_box_2_item {
		flex: 0 0 calc(50% - 10px);
	}
	.about_box_2_img {
		height: 220px;
	}
}

@media only screen and (max-width: 750px) {
	.about_box_2 {
		padding: 50px 0;
	}
	.about_box_2_head {
		margin-bottom: 40px;
	}
	.about_box_2_title {
		font-size: 20px;
	}
	.about_box_2_item {
		flex: 0 0 100%;
	}
	.about_box_2_img {
		height: 280px;
	}
}

/* ========== about_box_3 - OUR SERVICES ========== */
.about_box_3 {
	padding: 0 0 80px;
	background-color: #fff;
}

.about_box_3_head {
	text-align: center;
	padding: 80px 0 60px;
	background-color: #fff;
}

.about_box_3_title {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #222;
	text-transform: uppercase;
	margin: 0 0 20px;
}

.about_box_3_deco {
	width: 60px;
	height: 2px;
	background-color: #04befc;
	margin: 0 auto 18px;
}

.about_box_3_desc {
	font-size: 14px;
	color: #999;
	margin: 0;
}

/* 内容区域 */
.about_box_3_content {
	background-color: #f5fafe;
	padding: 100px 0;
}

.about_box_3_list {
	display: flex;
	gap: 60px;
}

.about_box_3_item {
	flex: 1;
	text-align: center;
	position: relative;
}

/* 圆圈图标 */
.about_box_3_icon {
	position: relative;
	width: 80px;
	height: 80px;
	border: 2px solid #04befc;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 40px;
	background-color: #fff;
}

.about_box_3_icon img {
	max-width: 50px;
	max-height: 50px;
	display: block;
}

/* 圆圈下方竖线 */
.about_box_3_icon::after {
	content: '';
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 40px;
	background-color: #04befc;
}

.about_box_3_item_title {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #222;
	text-transform: uppercase;
	margin: 0 0 16px;
	padding-top: 10px;
}

.about_box_3_item_desc {
	font-size: 14px;
	line-height: 1.9;
	color: #666;
	margin: 0;
}

@media only screen and (max-width: 1000px) {
	.about_box_3_list {
		gap: 40px;
	}
	.about_box_3_icon {
		width: 70px;
		height: 70px;
	}
	.about_box_3_icon img {
		max-width: 45px;
		max-height: 45px;
	}
}

@media only screen and (max-width: 750px) {
	.about_box_3 {
		padding-bottom: 50px;
	}
	.about_box_3_head {
		padding: 50px 0 40px;
	}
	.about_box_3_title {
		font-size: 20px;
	}
	.about_box_3_content {
		padding: 50px 0;
	}
	.about_box_3_list {
		flex-direction: column;
		gap: 50px;
	}
	.about_box_3_icon::after {
		display: none;
	}
}

/* ========== ser_box_1 - 服务列表 ========== */
.ser_box_1 {
	padding: 100px 0;
	background-color: #fff;
}

.ser_box_1_list {
	display: flex;
	flex-wrap: wrap;
	gap: 60px 40px;
}

.ser_box_1_item {
	flex: 0 0 calc(33.333% - 27px);
	display: flex;
	align-items: flex-start;
	gap: 20px;
	text-align: left;
}

.ser_box_1_icon {
	flex: 0 0 50px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -10px;
}

.ser_box_1_icon img {
	max-width: 100%;
	max-height: 100%;
	display: block;
}

.ser_box_1_info {
	flex: 1;
	min-width: 0;
	text-align: left;
}

.ser_box_1_title {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #222;
	text-transform: uppercase;
	margin: 0 0 12px;
	position: relative;
	padding-bottom: 12px;
}

/* 标题下方短横线 */
.ser_box_1_title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 1px;
	background-color: #ddd;
}

.ser_box_1_desc {
	font-size: 13px;
	line-height: 1.9;
	color: #666;
	margin: 0;
	padding-top: 6px;
}

@media only screen and (max-width: 1000px) {
	.ser_box_1_item {
		flex: 0 0 calc(50% - 15px);
	}
}

@media only screen and (max-width: 750px) {
	.ser_box_1 {
		padding: 50px 0;
	}
	.ser_box_1_list {
		gap: 40px;
	}
	.ser_box_1_item {
		flex: 0 0 100%;
	}
}

/* ========== ser_box_2 - Fire Up Your Business ========== */
.ser_box_2 {
	padding: 100px 0;
	background-color: #f5fafe;
}

.ser_box_2_wrap {
	display: flex;
	align-items: center;
	gap: 60px;
}

.ser_box_2_img {
	flex: 0 0 48%;
	max-width: 48%;
}

.ser_box_2_img img {
	width: 100%;
	height: auto;
	display: block;
}

.ser_box_2_content {
	flex: 1;
	text-align: left;
}

.ser_box_2_title {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #222;
	text-transform: uppercase;
	margin: 0 0 20px;
	line-height: 1.3;
}

.ser_box_2_line {
	width: 40px;
	height: 2px;
	background-color: #04befc;
	margin: 0 0 25px;
}

.ser_box_2_text {
	font-size: 14px;
	line-height: 1.9;
	color: #666;
	margin: 0 0 20px;
}

.ser_box_2_text:last-of-type {
	margin-bottom: 30px;
}

.ser_box_2_btn {
	display: inline-block;
	padding: 12px 30px;
	background-color: #04befc;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.ser_box_2_btn:hover {
	background-color: #0398d1;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(4, 190, 252, 0.3);
}

@media only screen and (max-width: 1000px) {
	.ser_box_2_wrap {
		gap: 40px;
	}
	.ser_box_2_img {
		flex: 0 0 45%;
		max-width: 45%;
	}
	.ser_box_2_title {
		font-size: 24px;
	}
}

@media only screen and (max-width: 750px) {
	.ser_box_2 {
		padding: 60px 0;
	}
	.ser_box_2_wrap {
		flex-direction: column;
		gap: 30px;
	}
	.ser_box_2_img {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.ser_box_2_title {
		font-size: 22px;
	}
}

/* ========== ser_box_3 - 三个项目卡片 ========== */
.ser_box_3 {
	padding: 80px 0;
	background-color: #fff;
}

.ser_box_3_list {
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
}

.ser_box_3_item {
	flex: 1;
	min-width: 0;
}

/* 图片区域 - 同 fp_box_9 hover 效果 */
.ser_box_3_img {
	position: relative;
	display: block;
	width: 100%;
	height: 290px;
	overflow: hidden;
	text-decoration: none;
	margin-bottom: 24px;
}

.ser_box_3_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.ser_box_3_mask {
	position: absolute;
	inset: 0;
	background-color: rgba(4, 190, 252, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.35s ease, transform 0.4s ease;
}

.ser_box_3_mask_btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #222;
	transform: scale(0.6);
	transition: transform 0.4s ease;
}

.ser_box_3_mask_btn svg {
	width: 20px;
	height: 20px;
	display: block;
}

.ser_box_3_img:hover .ser_box_3_mask {
	opacity: 1;
	transform: scale(1);
}

.ser_box_3_img:hover .ser_box_3_mask_btn {
	transform: scale(1);
}

.ser_box_3_img:hover img {
	transform: scale(1.05);
}

/* 文本区域 */
.ser_box_3_info {
	text-align: left;
}

.ser_box_3_title {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: #222;
	text-transform: uppercase;
	margin: 0 0 14px;
	line-height: 1.5;
}

.ser_box_3_desc {
	font-size: 13px;
	line-height: 1.9;
	color: #666;
	margin: 0;
}

/* 底部"了解更多"链接 */
.ser_box_3_more {
	text-align: center;
	padding-top: 20px;
}

.ser_box_3_more_link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #222;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.3s ease, gap 0.3s ease;
}

.ser_box_3_more_link svg {
	width: 16px;
	height: 16px;
	display: block;
	transition: transform 0.3s ease;
}

.ser_box_3_more_link:hover {
	color: #04befc;
}

.ser_box_3_more_link:hover svg {
	transform: translateX(5px);
}

@media only screen and (max-width: 1000px) {
	.ser_box_3_list {
		flex-wrap: wrap;
		gap: 30px 20px;
	}
	.ser_box_3_item {
		flex: 0 0 calc(50% - 10px);
	}
	.ser_box_3_img {
		height: 220px;
	}
}

@media only screen and (max-width: 750px) {
	.ser_box_3 {
		padding: 50px 0;
	}
	.ser_box_3_list {
		flex-direction: column;
		gap: 40px;
	}
	.ser_box_3_item {
		flex: 0 0 100%;
	}
	.ser_box_3_img {
		height: 260px;
	}
}

/* ========== ser_box_4 - Testimonials 客户评价 ========== */
.ser_box_4 {
	position: relative;
	height: 265px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	overflow: hidden;
}

.ser_box_4_mask {
	position: absolute;
	inset: 0;
	background-color: rgba(55, 70, 80, 0.85);
}

.ser_box_4_inner {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 20px;
}

.ser_box_4_quote {
	font-size: 20px;
	line-height: 1.8;
	color: #fff;
	margin: 0 auto 12px;
	max-width: 800px;
	font-style: italic;
	letter-spacing: 2px;
	word-spacing: 2px;
}

.ser_box_4_line {
	width: 40px;
	height: 2px;
	background-color: #04befc;
	margin: 0 auto 18px;
}

.ser_box_4_author {
	font-size: 11px;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	text-transform: uppercase;
}

@media only screen and (max-width: 750px) {
	.ser_box_4 {
		height: auto;
		padding: 60px 0;
	}
	.ser_box_4_quote {
		font-size: 14px;
	}
	.ser_box_4_author {
		font-size: 10px;
	}
}

/* ========== list_box_1 - 产品列表 ========== */
.list_box_1 {
	padding: 80px 0;
	background-color: #fff;
}

/* 分类标签 */
.list_box_1_tabs {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 60px;
	flex-wrap: wrap;
}

.list_box_1_tab {
	padding: 12px 30px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #666;
	background-color: transparent;
	border: 2px solid #ddd;
	cursor: pointer;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.list_box_1_tab:hover {
	border-color: #04befc;
	color: #04befc;
}

.list_box_1_tab.active {
	background-color: #04befc;
	border-color: #04befc;
	color: #fff;
}

/* 产品网格 */
.list_box_1_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 30px;
}

.list_box_1_item {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.list_box_1_item.hidden {
	display: none;
}

.list_box_1_link {
	display: block;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #e8e8e8;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.list_box_1_link:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}

/* 图片区域 */
.list_box_1_img {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
	background-color: #f9f9f9;
}

.list_box_1_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.list_box_1_overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(4, 190, 252, 0.88);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.list_box_1_icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #222;
	transform: scale(0.5) rotate(0deg);
	transition: transform 0.4s ease;
}

.list_box_1_icon svg {
	width: 22px;
	height: 22px;
	display: block;
}

.list_box_1_link:hover .list_box_1_overlay {
	opacity: 1;
}

.list_box_1_link:hover .list_box_1_icon {
	transform: scale(1) rotate(90deg);
}

.list_box_1_link:hover .list_box_1_img img {
	transform: scale(1.08);
}

/* 信息区域 */
.list_box_1_info {
	padding: 24px 20px 26px;
	text-align: left;
}

.list_box_1_title {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: #222;
	text-transform: uppercase;
	margin: 0 0 12px;
	line-height: 1.5;
	transition: color 0.3s ease;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.list_box_1_link:hover .list_box_1_title {
	color: #04befc;
}

.list_box_1_desc {
	font-size: 13px;
	line-height: 1.7;
	color: #888;
	margin: 0;
	height: 44px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media only screen and (max-width: 1000px) {
	.list_box_1_grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 20px;
	}
	.list_box_1_img {
		height: 240px;
	}
}

@media only screen and (max-width: 750px) {
	.list_box_1 {
		padding: 50px 0;
	}
	.list_box_1_tabs {
		margin-bottom: 40px;
		gap: 12px;
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		padding: 0 15px 10px;
		margin-left: -15px;
		margin-right: -15px;
	}
	.list_box_1_tabs::-webkit-scrollbar {
		height: 4px;
	}
	.list_box_1_tabs::-webkit-scrollbar-track {
		background: #f0f0f0;
	}
	.list_box_1_tabs::-webkit-scrollbar-thumb {
		background: #04befc;
		border-radius: 2px;
	}
	.list_box_1_tab {
		padding: 10px 20px;
		font-size: 11px;
		flex-shrink: 0;
		white-space: nowrap;
	}
	.list_box_1_grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.list_box_1_img {
		height: 260px;
	}
}

/* 新闻列表 - 左右布局 */
.news {
  padding: 80px 0;
}

.news .container {
  overflow: hidden;
}

.news_left {
  float: left;
  width: 880px;
  padding:0 15px 0 15px;
  box-sizing: border-box;
}

.news_right {
  float: right;
  width: 270px;
}

/* 响应式 */
@media (max-width: 1199px) {
  .news_left {
    width: calc(100% - 290px);
  }
}

@media (max-width: 991px) {
  .news_left,
  .news_right {
    float: none;
    width: 100%;
  }
  
  .news_left {
    padding: 0;
  }
  
  .news_right {
    margin-top: 40px;
  }
}

/* 新闻列表项样式 */
.news_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news_item {
  margin-bottom: 60px;
}

.news_item:last-child {
  margin-bottom: 0;
}

/* 文章图片 */
.news_img {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}

.news_img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.news_img:hover img {
  transform: scale(1.05);
}

/* 文章内容区 */
.news_content {
  padding: 0;
}

/* 分类标签和作者信息 */
.news_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.news_category {
  display: inline-block;
  background-color: #04befc;
  color: #fff;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news_author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row-reverse;
}

.news_author_avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.news_author_info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news_author_name {
  font-size: 14px;
  font-weight: 600;
  color: #1E2227;
}

.news_date {
  font-size: 12px;
  color: #999;
}

/* 文章标题 */
.news_title {
  font-size: 36px;
  line-height: 1.3;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.news_title a {
  color: #1E2227;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news_title a:hover {
  color: #04befc;
}

/* 文章摘要 */
.news_excerpt {
  font-size: 14px;
  line-height: 2.1;
  color: #777;
  margin: 0 0 30px 0;
}

/* 底部操作栏 */
.news_footer {
  padding-top: 25px;
  border-top: 1px solid #e5e5e5;
  overflow: hidden;
}

/* 继续阅读按钮 */
.news_readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1E2227;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #e5e5e5;
  padding: 10px 24px;
  float: left;
}

.news_readmore:hover {
  color: #04befc;
  border-color: #04befc;
}

.news_readmore .news_arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.news_readmore:hover .news_arrow {
  transform: translateX(4px);
}

/* 分享按钮区域 */
.news_share {
  display: flex;
  align-items: center;
  gap: 12px;
  float: left;
  margin-left: 30px;
}

.news_share_label {
  font-size: 13px;
  color: #777;
  margin-right: 5px;
}

.news_share_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news_share_btn svg {
  width: 16px;
  height: 16px;
}

.news_share_btn:hover {
  color: #04befc;
}

/* 响应式 - 手机端 */
@media (max-width: 767px) {
  .news_left {
    padding: 0;
  }

  .news_item {
    margin-bottom: 40px;
  }

  .news_meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .news_title {
    font-size: 24px;
  }

  .news_footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .news_share {
    flex-wrap: wrap;
  }
}

/* 蓝色引用块样式 */
.news_item_quote {
  background-color: #04befc;
  padding: 60px 50px;
  text-align: center;
  margin-bottom: 60px;
}

.quote_text {
  font-size: 20px;
  line-height: 1.8;
  color: #fff;
  margin: 0;
  font-weight: 300;
}

@media (max-width: 767px) {
  .news_item_quote {
    padding: 40px 30px;
  }

  .quote_text {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* 右侧边栏搜索框 */
.sidebar_search {
  margin-bottom: 40px;
}

.sidebar_search_form {
  position: relative;
  width: 100%;
  height: 50px;
}

.sidebar_search_input {
  width: 100%;
  height: 50px;
  padding: 0 55px 0 20px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  color: #666;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.sidebar_search_input:focus {
  outline: none;
  border-color: #04befc;
}

.sidebar_search_input::placeholder {
  color: #999;
}

.sidebar_search_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: color 0.3s ease;
}

.sidebar_search_btn:hover {
  color: #04befc;
}

.sidebar_search_btn svg {
  width: 18px;
  height: 18px;
}

/* 侧边栏小部件 */
.sidebar_widget {
  margin-bottom: 50px;
}

.sidebar_widget_title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1E2227;
  margin: 0 0 15px 0;
}

.sidebar_widget_line {
  width: 35px;
  height: 3px;
  background-color: #04befc;
  margin-bottom: 30px;
}

/* 最近文章列表 */
.recent_post_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent_post_item {
  margin-bottom: 25px;
}

.recent_post_item:last-child {
  margin-bottom: 0;
}

.recent_post_link {
  display: flex;
  gap: 15px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.recent_post_link:hover {
  opacity: 0.8;
}

.recent_post_img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.recent_post_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recent_post_title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: #222;
  margin: 0 0 8px 0;
}

.recent_post_date {
  display: block;
  font-size: 12px;
  color: #545454;
  margin: 0;
}

/* 响应式 - 手机端 */
@media (max-width: 768px) {
  .recent_post_img {
    width: 90px;
    height: 65px;
  }

  .recent_post_title {
    font-size: 13px;
  }

  .recent_post_date {
    font-size: 11px;
  }
}

/* 标签列表 */
.tags_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag_item {
  display: inline-block;
  padding: 10px 20px;
  font-size: 13px;
  color: #666;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag_item:hover {
  background-color: #04befc;
  border-color: #04befc;
  color: #fff;
}

/* Instagram 图片网格 */
.instagram_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.instagram_item {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.instagram_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.instagram_item:hover img {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .instagram_grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 767px) {
  .instagram_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 推荐内容 */
.recommended_box {
  width: 100%;
  overflow: hidden;
}

.recommended_link {
  display: block;
  width: 100%;
  overflow: hidden;
}

.recommended_link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.recommended_link:hover img {
  transform: scale(1.05);
}

/* 新闻详情页样式 */
.news_detail {
  background-color: #fff;
  padding: 40px;
  margin-bottom: 40px;
}

/* 文章头部 */
.news_detail_header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.news_detail_title {
  font-size: 32px;
  font-weight: 700;
  color: #1E2227;
  margin: 0 0 20px 0;
  line-height: 1.3;
  text-align: left;
}

.news_detail_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: #888;
}

.meta_item {
  color: #888;
}

.meta_item strong {
  color: #888;
  font-weight: 600;
}

.meta_item a {
  color: #04befc;
  text-decoration: none;
}

.meta_item a:hover {
  text-decoration: underline;
}

/* 文章内容 */
.news_detail_content {
  font-size: 14px;
  line-height: 2.1;
  color: #666;
  margin-bottom: 40px;
  text-align: left;
}

.news_detail_content p {
  margin-bottom: 20px;
  text-align: left;
}

.news_detail_content p:last-child {
  margin-bottom: 0;
}

/* 上一篇/下一篇导航 */
.news_navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}

.news_nav_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  padding: 20px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.news_nav_item:hover {
  background-color: #04befc;
}

.news_nav_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #999;
  text-transform: uppercase;
}

.news_nav_item:hover .news_nav_label {
  color: rgba(255, 255, 255, 0.8);
}

.news_nav_title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  line-height: 1.5;
}

.news_nav_item:hover .news_nav_title {
  color: #fff;
}

.news_nav_prev {
  align-items: flex-start;
}

.news_nav_next {
  align-items: flex-end;
  text-align: right;
}

/* 留言表单 */
.comment_form_wrapper {
  background-color: #fff;
  padding: 40px;
}

.comment_form_title {
  font-size: 24px;
  font-weight: 700;
  color: #1E2227;
  margin: 0 0 15px 0;
}

.comment_form_note {
  font-size: 13px;
  color: #777;
  margin-bottom: 30px;
}

.comment_form_note a {
  color: #04befc;
  text-decoration: none;
}

.comment_form_note a:hover {
  text-decoration: underline;
}

.form_group {
  margin-bottom: 25px;
}

.form_group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.required {
  color: #ff0000;
}

.form_group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  resize: vertical;
  box-sizing: border-box;
  font-family: inherit;
}

.form_group textarea:focus {
  outline: none;
  border-color: #04befc;
}

.comment_submit_btn {
  display: inline-block;
  padding: 12px 40px;
  background-color: #04befc;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.comment_submit_btn:hover {
  background-color: #0398d4;
}

/* 响应式 - 手机端 */
@media (max-width: 767px) {
  .news_detail {
    padding: 25px 20px;
  }

  .news_detail_title {
    font-size: 24px;
  }

  .news_detail_meta {
    flex-direction: column;
    gap: 8px;
  }

  .news_navigation {
    flex-direction: column;
  }

  .news_nav_next {
    align-items: flex-start;
    text-align: left;
  }

  .comment_form_wrapper {
    padding: 25px 20px;
  }

  .comment_form_title {
    font-size: 20px;
  }
}

/* 联系表单区域 */
.contact {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.contact_wrapper {
  display: flex;
  gap: 60px;
}

/* 左侧：联系信息 */
.contact_info {
  flex: 0 0 400px;
}

.contact_title {
  font-size: 24px;
  font-weight: 700;
  color: #1E2227;
  margin: 0 0 20px 0;
  letter-spacing: 1px;
}

.contact_desc {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.contact_item {
  display: flex;
  margin-bottom: 0;
  padding: 25px 0;
  gap: 15px;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
}

.contact_item:last-child {
  border-bottom: none;
}

.contact_item_label {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  min-width: 80px;
  flex-shrink: 0;
  text-align: left;
}

.contact_item_value {
  flex: 1;
  text-align: left;
}

.contact_item_value p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 5px 0;
}

.contact_item_value p:last-child {
  margin-bottom: 0;
}

.contact_item_value a {
  color: #04befc;
  text-decoration: none;
}

.contact_item_value a:hover {
  text-decoration: underline;
}

.contact_social {
  display: flex;
  gap: 10px;
}

.social_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #666;
  transition: color 0.3s ease;
}

.social_link svg {
  width: 18px;
  height: 18px;
}

.social_link:hover {
  color: #04befc;
}

/* 右侧：反馈表单 */
.contact_form {
  flex: 1;
}

.form_row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.form_row:last-child {
  margin-bottom: 0;
}

.form_col {
  flex: 1;
}

.form_col_full {
  flex: 1;
  width: 100%;
}

.contact_form input,
.contact_form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  color: #666;
  background-color: #fff;
  box-sizing: border-box;
  font-family: inherit;
}

.contact_form input:focus,
.contact_form textarea:focus {
  outline: none;
  border-color: #04befc;
}

.contact_form textarea {
  resize: vertical;
  line-height: 1.6;
}

.contact_submit_btn {
  display: inline-block;
  padding: 15px 50px;
  background-color: #04befc;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact_submit_btn:hover {
  background-color: #0398d4;
}

/* 响应式 - 手机端 */
@media (max-width: 991px) {
  .contact {
    padding: 60px 0;
  }

  .contact_wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .contact_info {
    flex: 1;
  }

  .contact_item {
    flex-direction: column;
    gap: 8px;
  }

  .contact_item_label {
    min-width: auto;
  }
}

@media (max-width: 767px) {
  .form_row {
    flex-direction: column;
    gap: 15px;
  }

  .contact_submit_btn {
    width: 100%;
    padding: 15px 30px;
  }
}

/* 谷歌地图 */
.ditu {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.ditu iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 767px) {
  .ditu {
    height: 350px;
  }
}


/* ========================================
   产品详情页样式
======================================== */

.cpxq_box_1 {
  padding: 80px 0;
  background: #fff;
}

/* 产品主要信息区域 */
.product_detail_wrapper {
  display: flex;
  gap: 60px;
  margin-bottom: 80px;
}

/* 左侧产品图片 */
.product_image_section {
  flex: 0 0 550px;
}

.product_main_image {
  width: 100%;
  height: auto;
  display: block;
}

.product_main_image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #eee;
}

/* 右侧产品信息 */
.product_info_section {
  flex: 1;
}

.product_title {
  font-size: 36px;
  color: #1E2227;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.product_subtitle {
  font-size: 14px;
  color: #04befc;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.product_power {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.product_description {
  margin-bottom: 35px;
}

.product_description p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* 产品特性列表 */
.product_features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.feature_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.feature_icon {
  width: 40px;
  height: 40px;
  color: #04befc;
  margin-bottom: 12px;
}

.feature_item span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* 咨询按钮 */
.product_inquiry_btn {
  display: inline-block;
  padding: 15px 50px;
  background: #04befc;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.product_inquiry_btn:hover {
  background: #0396c9;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(4, 190, 252, 0.3);
}

/* 规格参数区域 */
.product_specs {
  padding: 80px 0;
  background: #f9f9f9;
}

.product_specs .section_title {
  font-size: 32px;
  color: #1E2227;
  font-weight: 600;
  margin-bottom: 50px;
  text-align: center;
}

.specs_image {
  width: 100%;
  max-width: 100%;
}

.specs_image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 推荐产品区域 */
.recommended_products {
  padding: 80px 0;
  background: #fff;
}

.recommended_products .section_title {
  font-size: 32px;
  color: #1E2227;
  font-weight: 600;
  margin-bottom: 50px;
  text-align: center;
}

.recommended_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.recommended_item {
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.recommended_item:hover {
  transform: translateY(-10px);
}

.recommended_image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #eee;
}

.recommended_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.recommended_item:hover .recommended_image img {
  transform: scale(1.08);
}

.recommended_title {
  font-size: 18px;
  color: #1E2227;
  font-weight: 500;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.recommended_item:hover .recommended_title {
  color: #04befc;
}

.recommended_desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.recommended_link {
  font-size: 14px;
  color: #04befc;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.recommended_link:hover {
  color: #0396c9;
  transform: translateX(5px);
}

/* 移动端适配 */
@media (max-width: 991px) {
  .cpxq_box_1 {
    padding: 60px 0;
  }

  .product_detail_wrapper {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
  }

  .product_image_section {
    flex: 0 0 auto;
  }

  .product_title {
    font-size: 28px;
  }

  .product_features {
    gap: 20px;
  }

  .product_specs {
    padding: 60px 0;
  }

  .product_specs .section_title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .recommended_products {
    padding: 60px 0;
  }

  .recommended_products .section_title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .recommended_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .recommended_image {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .cpxq_box_1 {
    padding: 40px 0;
  }

  .product_detail_wrapper {
    gap: 30px;
    margin-bottom: 40px;
  }

  .product_title {
    font-size: 24px;
  }

  .product_subtitle {
    font-size: 13px;
  }

  .product_power {
    font-size: 16px;
  }

  .product_description p {
    font-size: 14px;
  }

  .product_features {
    flex-direction: column;
    gap: 25px;
  }

  .feature_item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
  }

  .feature_icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0;
  }

  .product_inquiry_btn {
    width: 100%;
    text-align: center;
  }

  .product_specs {
    padding: 40px 0;
  }

  .product_specs .section_title {
    font-size: 22px;
  }

  .recommended_products {
    padding: 40px 0;
  }

  .recommended_products .section_title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .recommended_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .recommended_image {
    height: 260px;
  }
}


/* 产品详细内容区域 */
.product_detail_content {
  padding: 60px 0;
  background-color: #fff;
}

.product_detail_title {
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.product_detail_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0066cc, #0099ff);
}

.product_detail_text {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.8;
}

.product_detail_text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
  text-indent: 2em;
}

.product_detail_text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .product_detail_content {
    padding: 40px 15px;
  }
  
  .product_detail_title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .product_detail_text p {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .product_detail_content {
    padding: 30px 15px;
  }
  
  .product_detail_title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .product_detail_text p {
    font-size: 14px;
    margin-bottom: 18px;
    text-indent: 1.5em;
  }
}
