﻿/*通用类*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-align: left;
}

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: #fff;
	text-align: justify;
	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 !important;
}

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;
}
.chaju{
	margin-top: 100px;
}
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

/* 增强版清除浮动 */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}


/* ========== 版心容器 1550px + 响应式断点 ========== */
.container {
	max-width: 1550px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

@media only screen and (max-width: 1550px) {
	.container {
		max-width: 100%;
		padding: 0 30px;
	}
}

@media only screen and (max-width: 1400px) {
	.container {
		padding: 0 30px;
	}
}

@media only screen and (max-width: 1200px) {
	.container {
		padding: 0 25px;
	}
}

@media only screen and (max-width: 1000px) {
	.container {
		padding: 0 20px;
	}
}

@media only screen and (max-width: 750px) {
	.container {
		padding: 0 15px;
	}
}


/* 主代码开始开始*/

/* 全局样式 */
* {
	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;
	transition: all 0.4s ease;
	height: 100px;
	background: transparent;
}

/* hover 时：使用 bg1.png 作为背景 */
.header:hover,
body[data-section]:not([data-section="0"]) .header {
	background: url(../images/bg1.png) no-repeat center center;
	background-size: cover;
}

.header-container {
	max-width: 1550px;
	height: 100%;
	margin: 0 auto;
	padding: 0 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	flex-shrink: 0;
}

.logo a {
	display: block;
}

.logo img {
	height: 60px;
	display: block;
}

/* PC端导航样式 */
.nav-pc {
	display: flex;
	align-items: center;
	margin-left: auto;
	margin-right: 40px;
}

.nav-item {
	position: relative;
	margin: 0 28px;
}

.nav-link {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	font-weight: 500;
	line-height: 100px;
	display: block;
	position: relative;
	transition: color 0.3s ease;
	white-space: nowrap;
}

.nav-link:hover {
	color: rgba(255, 255, 255, 0.7);
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	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;
}
.sub-menu-en {
	width: 330px;
}

.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: #006bb7;
	color: #fff;
}

/* 移动端菜单按钮 */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 1001;
	margin-left: 15px;
	flex-shrink: 0;
}

.menu-toggle span {
	display: block;
	position: absolute;
	height: 1px;
	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) {
	top: 10px;
}

.menu-toggle span:nth-child(3) {
	top: 20px;
}

/* ---- 点击展开时变成 X ---- */
.menu-toggle.active span:nth-child(1) {
	top: 10px;
	transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
	width: 0;
	left: 50%;
}

.menu-toggle.active span:nth-child(3) {
	top: 10px;
	transform: rotate(-45deg);
}

/* 移动端导航样式 */
.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: 1300;
	overflow-y: auto;
	padding: 70px 0 30px;
}

.nav-mobile.active {
	right: 0;
}

/* 导航内部右上角关闭按钮 */
.nav-mobile-close {
	position: absolute;
	top: 14px;
	right: 6px;
	width: 36px;
	height: 36px;
	background: none;
	border: none;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	color: #333;
	z-index: 2;
	padding: 0;
}

.nav-mobile-close:hover {
	color: #006bb7;
}

.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%);
}

/* 右侧功能区 */
.header-right {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

/* 搜索按钮样式 */
.sousuo {
	position: relative;
	display: flex;
	align-items: center;
}

.search-icon {
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.search-icon img {
	width: 100%;
	height: 100%;
	display: block;
}

/* 全屏搜索栏 */
.search-overlay {
	position: fixed;
	top: -100px;
	left: 0;
	width: 100%;
	height: 100px;
	background: #fff;
	z-index: 1002;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	transition: top 0.4s ease;
}

.search-overlay.active {
	top: 0;
}

.search-overlay-inner {
	width: 100%;
	max-width: 700px;
	display: flex;
	align-items: center;
	padding: 0 20px;
	position: relative;
}

.search-overlay-input {
	flex: 1;
	height: 46px;
	border: 1px solid #ddd;
	border-right: none;
	border-radius: 4px 0 0 4px;
	padding: 0 15px;
	font-size: 15px;
	color: #333;
	background: #f9f9f9;
	transition: border-color 0.3s ease;
}

.search-overlay-input:focus {
	border-color: #006bb7;
	background: #fff;
}

.search-overlay-btn {
	height: 46px;
	padding: 0 28px;
	background: #006bb7;
	color: #fff;
	border: none;
	border-radius: 0 4px 4px 0;
	font-size: 15px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.search-overlay-btn:hover {
	background: #005a9e;
}

.search-overlay-close {
	position: absolute;
	right: -40px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 28px;
	color: #999;
	cursor: pointer;
	line-height: 1;
	transition: color 0.3s ease;
}

.search-overlay-close:hover {
	color: #333;
}

/* 语言切换样式 */
.yuyan_tab {
	position: relative;
	margin-left: 15px;
	z-index: 1001;
	display: flex;
	align-items: center;
}

.language-current {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 4px;
	transition: background 0.3s ease;
}

.language-current:hover {
	background: rgba(255, 255, 255, 0.15);
}

.language-current img {
	width: 20px;
	height: auto;
	margin-right: 5px;
}

.language-current span {
	color: #fff;
}

.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: flex;
	align-items: center;
	padding: 8px 15px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
}

.language-list li a:hover {
	background: #f5f5f5;
}

.language-list li a img {
	width: 20px;
	height: auto;
	margin-right: 10px;
}

/* 移动端搜索和语言切换 */
.mobile-functions {
	padding: 15px 20px;
	border-top: 1px solid #eee;
}

.mobile-search {
	margin-bottom: 15px;
}

.mobile-search-form {
	display: flex;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
}

.mobile-search-form input {
	flex: 1;
	height: 40px;
	border: none;
	padding: 0 12px;
	font-size: 14px;
}

.mobile-search-form button {
	height: 40px;
	background: #006bb7;
	color: #fff;
	border: none;
	border-left: 1px solid #e0e0e0;
	padding: 0 18px;
	font-size: 14px;
	cursor: pointer;
}

.mobile-language {
	position: relative;
}

.mobile-language-list {
	display: flex;
	list-style: none;
	gap: 10px;
}

.mobile-language-list li a {
	display: flex;
	align-items: center;
	padding: 8px 15px;
	color: #333;
	text-decoration: none;
	border: 1px solid #eee;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.mobile-language-list li a:hover {
	background: #f5f5f5;
	border-color: #006bb7;
	color: #006bb7;
}

.mobile-language-list li a img {
	width: 20px;
	height: auto;
	margin-right: 8px;
}


@media only screen and (max-width:1550px) {
	.nav-item {
		margin: 0 22px;
	}
}

@media only screen and (max-width:1400px) {
	.nav-item {
		margin: 0 18px;
	}

	.nav-link {
		font-size: 18px;
	}
}

@media only screen and (max-width:1200px) {
	.nav-item {
		margin: 0 12px;
	}

	.nav-link {
		font-size: 16px;
	}
}

@media only screen and (max-width: 1000px) {
	.nav-item {
		margin: 0 8px;
	}

	.nav-link {
		font-size: 14px;
	}

	.language-current span {
		display: none;
	}
}

@media only screen and (max-width: 750px) {
	.header {
		height: 60px;
		/* 移动端也保持透明悬浮，跟 PC 一致 */
		background: transparent;
	}

	.header-container {
		display: block;
		padding: 0 15px;
		height: 100%;
	}

	.logo {
		float: left;
		height: 60px;
		display: flex;
		align-items: center;
	}

	.logo img {
		height: 35px;
	}

	.menu-toggle {
		display: block;
		float: right;
		margin-left: 0;
		margin-top: 18px;
	}

	/* 移动端汉堡按钮：默认白色，跟透明悬浮 header 配套 */
	.menu-toggle span {
		background: #fff;
	}

	.nav-pc {
		display: none;
	}

	.header-right {
		display: none;
	}

	.mobile-search-form {
		width: 100%;
	}

	.mobile-search-form button {
		font-size: 10px;
	}

	.mobile-functions {
		border: none;
	}
}


/* ========== Footer ========== */
.footer {
	background: #2a2a2a;
	color: #ccc;
}

.footer .container {}

.footer-top {
	padding: 90px 0 70px;
}

/* 四列浮动 100% 占满 */
.ft-col {
	float: left;
}

.ft-col1 {
	width: 25%;
}

.ft-col2 {
	width: 30%;
	padding: 0 30px 0 0;
}

.ft-col3 {
	width: 15%;
	padding: 0 20px;
}

.ft-col4 {
	width: 30%;
	float: right;
}

/* ---- 第1列 logo + 社交 + 订阅 ---- */
.ft-logo {
	margin-bottom: 30px;
}

.ft-logo img {
	height: 55px;
	display: block;
	margin-left: 10px;
}

.ft-social {
	margin: 50px 0;
	margin-left: 25px;
}

.ft-social a {
	float: left;
	width: 50px;
	height: 50px;
	margin-right: 12px;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	transition: border-color 0.3s;
}

.ft-social a:hover {
	border-color: #00a0e9;
}

.ft-social a img {
	width: 100%;
	height: 100%;
	vertical-align: middle;
	display: inline-block;
}

.ft-subscribe {
	display: inline-block;
	margin-left:26px;
	padding: 12px 49px;
	background: linear-gradient(90deg, #015fea, #00a0e9);
	border: none;
	border-radius: 30px;
	color: #fff !important;
	font-size: 16px;
	letter-spacing: 2px;
	white-space: nowrap;
	transition: opacity 0.3s;
}

.ft-subscribe:hover {
	opacity: 0.85;
	color: #fff !important;
}

.ft-subscribe img {
	height: 18px;
	vertical-align: middle;
	margin-left: 8px;
}

/* ---- 第2列 表单 ---- */
.ft-form-title {
	font-size: 26px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	margin-bottom: 22px;
	margin-top: 0;
}

.ft-form-row {
	margin-bottom: 10px;
}

.ft-form-item {
	width: 48%;
}

.ft-form-row label,
.ft-col2>.ft-form-row>label {
	display: block;
	font-size: 13px;
	color: #ccc;
	margin-bottom: 8px;
}

.ft-form-item input {
	width: 100%;
	height: 34px;
	background: transparent;
	border: 1px solid #888;
	color: #fff;
	font-size: 13px;
	padding: 0 8px;
	outline: none;
}

.ft-form-row textarea {
	width: 100%;
	background: transparent;
	border: 1px solid #888;
	color: #fff;
	font-size: 13px;
	padding: 8px;
	outline: none;
	resize: vertical;
}

.ft-form-item input:focus,
.ft-form-row textarea:focus {
	border-color: #fff;
}

.ft-form-btn {
	text-align: center;
	margin-top: 18px;
}

.ft-form-btn button {
	padding: 5px 22px;
	background: #fff;
	border: none;
	border-radius: 20px;
	color: #333;
	font-size: 12px;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s;
	height: 35px;
    margin-left: 30px;
}

.ft-form-btn button:hover {
	background: #00a0e9;
	color: #fff;
}

/* ---- 第3列 导航 ---- */
.ft-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ft-nav li {
	margin-bottom: 16px;
}

.ft-nav li a {
	font-size: 20px;
	color: #ccc !important;
	font-weight: 500;
	transition: color 0.3s;
}

.ft-nav li a:hover {
	color: #00a0e9 !important;
}

/* ---- 第4列 地址+二维码 ---- */
.ft-col4 h4 {
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	margin-bottom: 15px;
	margin-top: 0;
}

.ft-col4 p {
	font-size: 16px;
	color: #999;
	line-height: 1.6;
	margin: 0 0 12px;
}

.ft-qr {
	margin: 10px 10px 0 0;
	float:left;
}

.ft-qr img {
	width: 100px;
	height: 100px;
	display: block;
	margin-bottom: 5px;
}

.ft-qr span {
	font-size: 12px;
	color: #999;
}

/* ---- 底部版权 ---- */
.footer-bottom {
	border-top: 1px solid #444;
	padding: 15px 0;
}

.footer-bottom p {
	font-size: 13px;
	color: #666;
	margin: 0;
}

/* ===== Footer 响应式 ===== */
@media only screen and (max-width: 1300px) {
	.footer .container {
		/* bootstrap container */
	}

	.ft-col2 {
		padding: 0 20px;
	}
}

@media only screen and (max-width: 1200px) {
	.footer .container {
		/* bootstrap container */
	}

	.ft-col1 {
		width: 25%;
	}

	.ft-col2 {
		width: 33%;
		padding: 0 20px 0 0;
	}

	.ft-col3 {
		width: 10%;
		padding: 0 10px;
	}

	.ft-col4 {
		width: 32%;
	}

	.ft-form-title {
		font-size: 18px;
	}

	.ft-nav li a {
		font-size: 16px;
	}
}

@media only screen and (max-width: 1000px) {
	.footer .container {
		/* bootstrap container */
	}

	.ft-col1 {
		width: 30%;
	}

	.ft-col2 {
		width: 70%;
		padding: 0 0 0 20px;
	}

	.ft-col3 {
		width: 30%;
		padding: 0;
		margin-top: 25px;
		clear: left;
	}

	.ft-col4 {
		width: 70%;
		padding-left: 20px;
		margin-top: 25px;
	}
}

@media only screen and (max-width: 750px) {
	.footer-top {
		padding: 50px 0 35px;
	}

	.ft-col,
	.ft-col1,
	.ft-col2,
	.ft-col3,
	.ft-col4 {
		float: none;
		width: 100%;
		padding: 0;
		margin-top: 0;
	}

	.ft-col1 {
		text-align: center;
	}

	.ft-col1 .ft-logo img {
		margin: 0 auto;
	}

	.ft-col1 .ft-social {
		display: flex;
		justify-content: center;
	}

	.ft-col1 .ft-social a {
		float: none;
	}

	.ft-col2,
	.ft-col3,
	.ft-col4 {
		margin-top: 22px;
	}

	.ft-form-title {
		text-align: left;
		font-size: 18px;
	}

	.ft-form-item {
		width: 100%;
		float: none !important;
		margin-bottom: 10px;
	}

	/* 导航横排美化 */
	.ft-col3 {
		margin-top: 25px;
		padding: 20px 0;
	}

	.ft-nav li {
		float: left;
		margin-right: 0;
		margin-bottom: 0;
		width: 33.33%;
		text-align: center;
		padding: 8px 0;
	}

	.ft-nav li a {
		font-size: 14px;
	}

	/* 地址+二维码美化 */
	.ft-col4 {
		margin-top: 25px;
	}

	.ft-col4 h4 {
		font-size: 15px;
		margin-bottom: 8px;
	}

	.ft-col4 p {
		font-size: 13px;
		margin-bottom: 10px;
	}

	.ft-qr {
		margin-top: 20px;
		text-align: center;
		padding-top: 20px;
		border-top: 1px solid #444;
	}

	.ft-qr img {
		width: 120px;
		height: 120px;
		margin: 0 auto 8px;
	}

	.ft-qr span {
		font-size: 13px;
		color: #bbb;
	}

	.footer-bottom {
		text-align: center;
	}
}


/* ========== 子页面（非首页）专用 ========== */
/* header 默认带 bg1 背景，不依赖 data-section */
.sub-page .header {
	background: url(../images/bg1.png) no-repeat center center;
	background-size: cover;
}

/* 主体内容区：顶部留出 header 高度，底部正常 */
.page-main {
	padding-top: 100px;
	min-height: calc(100vh - 100px);
}

@media only screen and (max-width: 750px) {
	.page-main {
		padding-top: 60px;
		min-height: calc(100vh - 60px);
	}
}

/* ========== 子页面通用 banner（fp_box_1） ========== */
.fp_box_1 {
	width: 100%;
	height: 500px;
	margin-top: 100px; /* 让出固定 header 的高度 */
	background: url(../images/banner1.jpg) no-repeat center center;
	background-size: cover;
	display: flex;
	align-items: center;
}

.fp_box_1 .container {
	color: #fff;
}

.fp_box_1 .fp1-title {
	font-size: 48px;
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: 24px;
	color: #fff;
}

.fp_box_1 .fp1-desc {
	font-size: 16px;
	line-height: 1.9;
	max-width: 980px;
	color: #fff;
	opacity: 0.92;
}

/* ===== 响应式 ===== */
@media only screen and (max-width: 1550px) {
	.fp_box_1 {
		height: 340px;
	}
	.fp_box_1 .fp1-title {
		font-size: 44px;
	}
}

@media only screen and (max-width: 1400px) {
	.fp_box_1 {
		height: 320px;
	}
	.fp_box_1 .fp1-title {
		font-size: 40px;
		margin-bottom: 20px;
	}
	.fp_box_1 .fp1-desc {
		font-size: 15px;
		line-height: 1.85;
		max-width: 880px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp_box_1 {
		height: 290px;
	}
	.fp_box_1 .fp1-title {
		font-size: 34px;
		margin-bottom: 16px;
	}
	.fp_box_1 .fp1-desc {
		font-size: 14px;
		line-height: 1.8;
		max-width: 760px;
	}
}

@media only screen and (max-width: 1000px) {
	.fp_box_1 {
		height: 260px;
	}
	.fp_box_1 .fp1-title {
		font-size: 30px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_1 {
		height: auto;
		min-height: 220px;
		padding: 40px 0;
		margin-top: 60px; /* 移动端 header 是 60px */
	}
	.fp_box_1 .fp1-title {
		font-size: 24px;
		margin-bottom: 12px;
	}
	.fp_box_1 .fp1-desc {
		font-size: 13px;
		line-height: 1.7;
	}
}

/* ========== 子页面 - 关于我们 第二屏（fp_box_2） ========== */
.fp_box_2 {
	width: 100%;
	padding-top: 80px;
	background: #fff;
}

.fp_box_2 .fp2-top {
	margin-bottom: 50px;
}

.fp_box_2 .fp2-text {
	float: left;
	width: calc(50% - 30px);
	color: #000000;
	font-size: 20px;
	line-height: 1.6;
}

.fp_box_2 .fp2-icon {
	margin-bottom: 50px;
}

.fp_box_2 .fp2-icon img {
	display: block;
	max-width: 100%;
}

.fp_box_2 .fp2-text p {
	color: #000000;
	font-size: 20px;
	line-height: 1.8;
	margin: 0;
	text-align: justify;
}

.fp_box_2 .fp2-pic {
	float: right;
	width: calc(50% - 30px);
	max-width: 720px;
}

.fp_box_2 .fp2-pic img {
	display: block;
	width: 100%;
	height: auto;
}

.fp_box_2 .fp2-bottom p {
	color: #000000;
	font-size: 20px;
	line-height: 1.6;
	margin: 0;
	text-align: justify;
}

/* ===== 响应式 ===== */
@media only screen and (max-width: 1550px) {
	.fp_box_2 {
		padding: 70px 0 80px;
	}
	.fp_box_2 .fp2-text,
	.fp_box_2 .fp2-pic {
		width: calc(50% - 25px);
	}
	.fp_box_2 .fp2-text,
	.fp_box_2 .fp2-text p,
	.fp_box_2 .fp2-bottom p {
		font-size: 18px;
	}
	.fp_box_2 .fp2-icon {
		margin-bottom: 40px;
	}
}

@media only screen and (max-width: 1400px) {
	.fp_box_2 {
		padding: 60px 0 70px;
	}
	.fp_box_2 .fp2-top {
		margin-bottom: 40px;
	}
	.fp_box_2 .fp2-text,
	.fp_box_2 .fp2-pic {
		width: calc(50% - 20px);
	}
	.fp_box_2 .fp2-text,
	.fp_box_2 .fp2-text p,
	.fp_box_2 .fp2-bottom p {
		font-size: 16px;
	}
	.fp_box_2 .fp2-icon {
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp_box_2 {
		padding: 50px 0 60px;
	}
	.fp_box_2 .fp2-top {
		margin-bottom: 35px;
	}
	.fp_box_2 .fp2-text,
	.fp_box_2 .fp2-pic {
		width: calc(50% - 15px);
	}
	.fp_box_2 .fp2-text,
	.fp_box_2 .fp2-text p,
	.fp_box_2 .fp2-bottom p {
		font-size: 15px;
	}
	.fp_box_2 .fp2-icon {
		margin-bottom: 24px;
	}
}

@media only screen and (max-width: 1000px) {
	.fp_box_2 .fp2-text,
	.fp_box_2 .fp2-pic {
		width: calc(50% - 12px);
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_2 {
		padding: 35px 0 40px;
	}
	.fp_box_2 .fp2-top {
		margin-bottom: 25px;
	}
	.fp_box_2 .fp2-text,
	.fp_box_2 .fp2-pic {
		float: none;
		width: 100%;
		max-width: 100%;
	}
	.fp_box_2 .fp2-pic {
		margin-top: 20px;
	}
	.fp_box_2 .fp2-icon {
		margin-bottom: 16px;
	}
	.fp_box_2 .fp2-text,
	.fp_box_2 .fp2-text p,
	.fp_box_2 .fp2-bottom p {
		font-size: 14px;
		line-height: 1.7;
		
	}
	.chaju{
		margin-top: 60px;
	}
}

/* ========== 子页面 - 关于我们 第三屏（fp_box_3） 数字 + 图片 ========== */
.fp_box_3 {
	width: 100%;
	padding: 30px 0 90px;
	background: #fff;
}

.fp_box_3 .fp3-list {
	margin: 0 -15px;
}

.fp_box_3 .fp3-item {
	float: left;
	width: 33.3333%;
	padding: 0 15px;
}

.fp_box_3 .fp3-info {
	padding: 10px 10px 30px;
}

.fp_box_3 .fp3-num-row {
	line-height: 1;
	margin-bottom: 18px;
	white-space: nowrap;
}

.fp_box_3 .fp3-num {
	color: #37b49a;
	font-size: 65px;
	font-weight: 700;
	letter-spacing: 1px;
}

.fp_box_3 .fp3-unit {
	color: #37b49a;
	font-size: 18px;
	margin-left: 4px;
}

.fp_box_3 .fp3-label {
	color: #000000;
	font-size: 18px;
	line-height: 1.6;
}

.fp_box_3 .fp3-pic {
	width: 100%;
	height: 325px;
	overflow: hidden;
}

.fp_box_3 .fp3-pic img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin-top: 50px;
}

/* ===== 响应式 ===== */
@media only screen and (max-width: 1550px) {
	.fp_box_3 {
		padding: 25px 0 80px;
	}
	.fp_box_3 .fp3-num {
		font-size: 58px;
	}
	.fp_box_3 .fp3-unit,
	.fp_box_3 .fp3-label {
		font-size: 17px;
	}
	.fp_box_3 .fp3-pic {
		height: 290px;
	}
}

@media only screen and (max-width: 1400px) {
	.fp_box_3 {
		padding: 20px 0 70px;
	}
	.fp_box_3 .fp3-list {
		margin: 0 -12px;
	}
	.fp_box_3 .fp3-item {
		padding: 0 12px;
	}
	.fp_box_3 .fp3-info {
		padding: 8px 8px 24px;
	}
	.fp_box_3 .fp3-num-row {
		margin-bottom: 14px;
	}
	.fp_box_3 .fp3-num {
		font-size: 50px;
	}
	.fp_box_3 .fp3-unit,
	.fp_box_3 .fp3-label {
		font-size: 16px;
	}
	.fp_box_3 .fp3-pic {
		height: 250px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp_box_3 {
		padding: 15px 0 60px;
	}
	.fp_box_3 .fp3-list {
		margin: 0 -10px;
	}
	.fp_box_3 .fp3-item {
		padding: 0 10px;
	}
	.fp_box_3 .fp3-info {
		padding: 5px 5px 20px;
	}
	.fp_box_3 .fp3-num-row {
		margin-bottom: 10px;
	}
	.fp_box_3 .fp3-num {
		font-size: 42px;
	}
	.fp_box_3 .fp3-unit,
	.fp_box_3 .fp3-label {
		font-size: 14px;
	}
	.fp_box_3 .fp3-pic {
		height: 210px;
	}
}

@media only screen and (max-width: 1000px) {
	.fp_box_3 .fp3-num {
		font-size: 36px;
	}
	.fp_box_3 .fp3-pic {
		height: 180px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_3 {
		padding: 10px 0 40px;
	}
	.fp_box_3 .fp3-list {
		margin: 0;
	}
	.fp_box_3 .fp3-item {
		float: none;
		width: 100%;
		padding: 0;
		margin-bottom: 25px;
	}
	.fp_box_3 .fp3-item:last-child {
		margin-bottom: 0;
	}
	.fp_box_3 .fp3-info {
		padding: 5px 0 15px;
	}
	.fp_box_3 .fp3-num-row {
		margin-bottom: 8px;
	}
	.fp_box_3 .fp3-num {
		font-size: 40px;
	}
	.fp_box_3 .fp3-unit,
	.fp_box_3 .fp3-label {
		font-size: 14px;
	}
	.fp_box_3 .fp3-pic {
		height: 200px;
	}
}

/* ========== 子页面 - 关于我们 第四屏（fp_box_4）企业文化 ========== */
.fp_box_4 {
	width: 100%;
	background: #fff;
}

.fp_box_4 .fp4-title {
	color: #1a4fb8;
	font-size: 64px;
	font-weight: 600;
	text-align: center;
	margin: 0 0 40px;
	line-height: 1.2;
}

.fp_box_4 .fp4-bg {
	width: 100%;
	height: 600px;
	background: url(../images/bg7.jpg) no-repeat center center;
	background-size: cover;
	display: flex;
	align-items: center;
}

.fp_box_4 .fp4-bg > .container {
	width: 100%;
}

.fp_box_4 .fp4-list {
	width: 100%;
	font-size: 0; /* 消除 inline-block 间隙 */
	text-align: center;
}

.fp_box_4 .fp4-item {
	display: inline-block;
	vertical-align: middle;
	width: 300px;
	margin: 0 30px;
	text-align: center;
	font-size: 14px;
}

.fp_box_4 .fp4-item-inner {
	width: 100%;
	height: 360px;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.35);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.fp_box_4 .fp4-item-inner:hover {
	background: rgba(255, 255, 255, 0.55);
	border-color: rgba(255, 255, 255, 0.8);
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(26, 79, 184, 0.18);
}

.fp_box_4 .fp4-icon img {
	display: block;
	width: 56px;
	height: 56px;
	object-fit: contain;
	margin: 0 auto;
	transition: transform 0.5s ease;
}

.fp_box_4 .fp4-item-inner:hover .fp4-icon img {
	transform: scale(1.1) rotate(-6deg);
}

.fp_box_4 .fp4-name {
	margin-top: 26px;
	color: #1a4fb8;
	font-size: 22px;
	line-height: 1.4;
	transition: letter-spacing 0.4s ease, color 0.4s ease;
	text-align:center;
}

.fp_box_4 .fp4-item-inner:hover .fp4-name {
	letter-spacing: 2px;
	color: #0d3a96;
}

/* ===== 响应式 ===== */
@media only screen and (max-width: 1550px) {
	.fp_box_4 {
		padding-bottom: 70px;
	}
	.fp_box_4 .fp4-title {
		font-size: 36px;
		margin-bottom: 35px;
	}
	.fp_box_4 .fp4-bg {
		height: 560px;
	}
	.fp_box_4 .fp4-item {
		width: 280px;
		margin: 0 25px;
	}
	.fp_box_4 .fp4-item-inner {
		height: 340px;
	}
	.fp_box_4 .fp4-icon img {
		width: 50px;
		height: 50px;
	}
	.fp_box_4 .fp4-name {
		font-size: 20px;
		margin-top: 22px;
	}
}

@media only screen and (max-width: 1400px) {
	.fp_box_4 {
		padding-bottom: 60px;
	}
	.fp_box_4 .fp4-title {
		font-size: 32px;
		margin-bottom: 30px;
	}
	.fp_box_4 .fp4-bg {
		height: 500px;
	}
	.fp_box_4 .fp4-item {
		width: 250px;
		margin: 0 20px;
	}
	.fp_box_4 .fp4-item-inner {
		height: 310px;
	}
	.fp_box_4 .fp4-icon img {
		width: 46px;
		height: 46px;
	}
	.fp_box_4 .fp4-name {
		font-size: 18px;
		margin-top: 18px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp_box_4 {
		padding-bottom: 50px;
	}
	.fp_box_4 .fp4-title {
		font-size: 28px;
		margin-bottom: 25px;
	}
	.fp_box_4 .fp4-bg {
		height: 440px;
	}
	.fp_box_4 .fp4-item {
		width: 220px;
		margin: 0 15px;
	}
	.fp_box_4 .fp4-item-inner {
		height: 270px;
	}
	.fp_box_4 .fp4-icon img {
		width: 42px;
		height: 42px;
	}
	.fp_box_4 .fp4-name {
		font-size: 16px;
		margin-top: 14px;
	}
}

@media only screen and (max-width: 1000px) {
	.fp_box_4 .fp4-bg {
		height: 380px;
	}
	.fp_box_4 .fp4-item {
		width: 180px;
		margin: 0 10px;
	}
	.fp_box_4 .fp4-item-inner {
		height: 230px;
	}
	.fp_box_4 .fp4-icon img {
		width: 38px;
		height: 38px;
	}
	.fp_box_4 .fp4-name {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_4 {
		padding-bottom: 40px;
	}
	.fp_box_4 .fp4-title {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.fp_box_4 .fp4-bg {
		height: auto;
		padding: 25px 0;
		display: block;
	}
	.fp_box_4 .fp4-item {
		width: 30%;
		margin: 0 1.5%;
	}
	.fp_box_4 .fp4-item-inner {
		height: 180px;
	}
	.fp_box_4 .fp4-icon img {
		width: 30px;
		height: 30px;
	}
	.fp_box_4 .fp4-name {
		font-size: 13px;
		margin-top: 10px;
	}
}

/* ========== 子页面 - 关于我们 第五屏（fp_box_5）发展历程 ========== */
.fp_box_5 {
	width: 100%;
	padding: 70px 0 100px;
	background: #fff;
}

.fp_box_5 .fp5-title {
	color: #1a4fb8;
	font-size: 60px;
	font-weight: 600;
	text-align: center;
	margin: 0 0 100px;
	line-height: 1.2;
}

.fp_box_5 .fp5-stage {
	position: relative;
	padding: 0 90px; /* 给左右箭头让出位置 */
}

/* 左右箭头 */
.fp_box_5 .fp5-prev,
.fp_box_5 .fp5-next {
	position: absolute;
	top: 38%;
	transform: translateY(-50%);
	width: 70px;
	height: 70px;
	cursor: pointer;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #c9c9c9;
	transition: color 0.3s ease;
}

.fp_box_5 .fp5-prev {
	left: 0;
}

.fp_box_5 .fp5-next {
	right: 0;
}

.fp_box_5 .fp5-prev:hover,
.fp_box_5 .fp5-next:hover {
	color: #1a4fb8;
}

.fp_box_5 .fp5-prev span,
.fp_box_5 .fp5-next span {
	display: block;
	width: 36px;
	height: 36px;
	border-top: 6px solid currentColor;
	border-left: 6px solid currentColor;
}

.fp_box_5 .fp5-prev span {
	transform: rotate(-45deg);
}

.fp_box_5 .fp5-next span {
	transform: rotate(135deg);
}

/* 主轮播 */
.fp_box_5 .fp5-main {
	width: 100%;
	overflow: hidden;
}

.fp_box_5 .fp5-main .swiper-slide {
	width: 100%;
}

.fp_box_5 .fp5-main .swiper-slide::after {
	content: "";
	display: block;
	clear: both;
}

.fp_box_5 .fp5-info {
	float: left;
	width: 42%;
	padding: 30px 0 0 30px;
}

.fp_box_5 .fp5-year {
	color: #000;
	font-size: 90px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 24px;
}

.fp_box_5 .fp5-list {
	margin: 0;
	padding: 0;
	list-style: none;
	color: #444;
	font-size: 16px;
	line-height: 1.9;
}

.fp_box_5 .fp5-list li {
	padding-left: 14px;
	position: relative;
}

.fp_box_5 .fp5-list li::before {
	content: "";
	width: 5px;
	height: 5px;
	background: #444;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 13px;
}

.fp_box_5 .fp5-pic {
	float: right;
	width: 55%;
}

.fp_box_5 .fp5-pic img {
	display: block;
	width: 100%;
	height: 360px;
	object-fit: cover;
}

/* 时间轴 */
.fp_box_5 .fp5-axis {
	position: relative;
	margin-top: 60px;
}

/* 虚线 —— 直接画在 swiper 里面，避免 overflow 影响 */
.fp_box_5 .fp5-axis-line {
	display: none; /* 由 swiper-container 的伪元素接管，避免和 slide 不对齐 */
}

.fp_box_5 .fp5-axis-swiper {
	position: relative;
	overflow: hidden;
}

.fp_box_5 .fp5-axis-swiper::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100px;
	border-top: 1px dashed #d0d0d0;
	z-index: 1;
	pointer-events: none;
}

.fp_box_5 .fp5-axis-swiper .swiper-slide {
	height: 150px;
	padding-top: 0;
	text-align: center;
	cursor: pointer;
	position: relative;
}

/* 圆点 */
.fp_box_5 .fp5-axis-swiper .swiper-slide::before {
	content: "";
	width: 8px;
	height: 8px;
	background: #c9c9c9;
	border-radius: 50%;
	position: absolute;
	top: 96px;
	left: 50%;
	transform: translateX(-50%);
	transition: background 0.3s ease, width 0.3s ease, height 0.3s ease, top 0.3s ease;
	z-index: 3;
}

/* 默认：年份显示在线下方 */
.fp_box_5 .fp5-year-tag {
	display: inline-block;
	margin-top: 120px;
	color: #b6b6b6;
	font-size: 16px;
	transition: color 0.3s ease;
}

/* 非激活 hover：变深一点 */
.fp_box_5 .fp5-axis-swiper .swiper-slide:hover .fp5-year-tag {
	color: #1a4fb8;
}

.fp_box_5 .fp5-axis-swiper .swiper-slide:hover::before {
	background: #1a4fb8;
}

/* 激活：年份大、放在线上方（绝对定位脱离原位置） */
.fp_box_5 .fp5-axis-swiper .swiper-slide-active .fp5-year-tag {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	margin: 0;
	color: #999;
	font-size: 60px;
	font-weight: 400;
	line-height: 1;
}

/* 激活：圆点放大 + 灰黑色 */
.fp_box_5 .fp5-axis-swiper .swiper-slide-active::before {
	background: #999;
	width: 14px;
	height: 14px;
	top: 93px;
	box-shadow: 0 0 0 4px rgba(51, 51, 51, 0.12);
}

/* 激活：三角放在线下方，朝上指向圆点 */
.fp_box_5 .fp5-axis-swiper .swiper-slide-active::after {
	content: "";
	position: absolute;
	top: 115px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 10px solid #999;
}

/* ===== 响应式 ===== */
@media only screen and (max-width: 1550px) {
	.fp_box_5 {
		padding: 60px 0 90px;
	}
	.fp_box_5 .fp5-title {
		font-size: 36px;
		margin-bottom: 45px;
	}
	.fp_box_5 .fp5-year {
		font-size: 80px;
	}
	.fp_box_5 .fp5-pic img {
		height: 330px;
	}
}

@media only screen and (max-width: 1400px) {
	.fp_box_5 {
		padding: 50px 0 80px;
	}
	.fp_box_5 .fp5-title {
		font-size: 32px;
		margin-bottom: 40px;
	}
	.fp_box_5 .fp5-stage {
		padding: 0 60px;
	}
	.fp_box_5 .fp5-info {
		padding: 20px 0 0 15px;
	}
	.fp_box_5 .fp5-year {
		font-size: 68px;
		margin-bottom: 20px;
	}
	.fp_box_5 .fp5-list {
		font-size: 15px;
	}
	.fp_box_5 .fp5-pic img {
		height: 290px;
	}
	.fp_box_5 .fp5-axis {
		margin-top: 50px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp_box_5 {
		padding: 40px 0 70px;
	}
	.fp_box_5 .fp5-title {
		font-size: 28px;
		margin-bottom: 32px;
	}
	.fp_box_5 .fp5-stage {
		padding: 0 50px;
	}
	.fp_box_5 .fp5-prev,
	.fp_box_5 .fp5-next {
		width: 40px;
		height: 40px;
	}
	.fp_box_5 .fp5-prev span,
	.fp_box_5 .fp5-next span {
		width: 18px;
		height: 18px;
		border-width: 2px;
	}
	.fp_box_5 .fp5-info {
		padding: 10px 0 0 0;
	}
	.fp_box_5 .fp5-year {
		font-size: 56px;
		margin-bottom: 16px;
	}
	.fp_box_5 .fp5-list {
		font-size: 14px;
		line-height: 1.85;
	}
	.fp_box_5 .fp5-pic img {
		height: 240px;
	}
	.fp_box_5 .fp5-year-tag {
		font-size: 14px;
	}
	.fp_box_5 .fp5-axis-swiper .swiper-slide-active .fp5-year-tag {
		font-size: 44px;
		margin-bottom: 28px;
	}
}

@media only screen and (max-width: 1000px) {
	.fp_box_5 .fp5-stage {
		padding: 0 40px;
	}
	.fp_box_5 .fp5-year {
		font-size: 48px;
	}
	.fp_box_5 .fp5-pic img {
		height: 210px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_5 {
		padding: 0px 0 50px;
	}
	.fp_box_5 .fp5-title {
		font-size: 28px;
		margin-bottom: 25px;
	}
	.fp_box_5 .fp5-stage {
		padding: 0;
	}
	.fp_box_5 .fp5-prev,
	.fp_box_5 .fp5-next {
		top: auto;
		bottom: 22px;
		transform: none;
		width: 36px;
		height: 36px;
	}
	.fp_box_5 .fp5-prev {
		left: 0;
	}
	.fp_box_5 .fp5-next {
		right: 0;
	}
	.fp_box_5 .fp5-prev span,
	.fp_box_5 .fp5-next span {
		width: 14px;
		height: 14px;
		border-width: 3px;
	}
	.fp_box_5 .fp5-info,
	.fp_box_5 .fp5-pic {
		float: none;
		width: 100%;
	}
	.fp_box_5 .fp5-info {
		padding: 0;
		margin-bottom: 20px;
		text-align: center;
	}
	.fp_box_5 .fp5-list {
		text-align: left;
	}
	.fp_box_5 .fp5-year {
		font-size: 44px;
		margin-bottom: 12px;
	}
	.fp_box_5 .fp5-pic img {
		height: 200px;
	}
	.fp_box_5 .fp5-axis {
		margin-top: 35px;
	}
	.fp_box_5 .fp5-axis-swiper::after {
		top: 70px;
	}
	.fp_box_5 .fp5-axis-swiper .swiper-slide {
		height: 110px;
	}
	.fp_box_5 .fp5-axis-swiper .swiper-slide::before {
		top: 67px;
		width: 6px;
		height: 6px;
	}
	.fp_box_5 .fp5-axis-swiper .swiper-slide-active::before {
		top: 65px;
		width: 10px;
		height: 10px;
		box-shadow: 0 0 0 3px rgba(26, 79, 184, 0.15);
	}
	.fp_box_5 .fp5-year-tag {
		font-size: 13px;
		margin-top: 90px;
	}
	.fp_box_5 .fp5-axis-swiper .swiper-slide-active .fp5-year-tag {
		top: 14px;
		font-size: 28px;
	}
	.fp_box_5 .fp5-axis-swiper .swiper-slide-active::after {
		top: 82px;
		border-left-width: 6px;
		border-right-width: 6px;
		border-bottom-width: 8px;
	}
}

/* ========== 子页面 - 关于我们 第六屏（fp_box_6）荣誉证书 ========== */
.fp_box_6 {
	width: 100%;
	padding: 60px 0 100px;
	background: #fff;
}

.fp_box_6 .container {
	padding-left: 200px;
	padding-right: 200px;
}

.fp_box_6 .fp6-title {
	color: #1a4fb8;
	font-size: 40px;
	font-weight: 600;
	text-align: center;
	margin: 0 0 50px;
	line-height: 1.2;
}

/* 4 列两行 */
.fp_box_6 .fp6-list {
	margin: 0 -15px;
}

.fp_box_6 .fp6-item {
	float: left;
	width: 25%;
	padding: 0 15px;
	margin-bottom: 30px;
}

.fp_box_6 .fp6-item a {
	display: block;
	width: 100%;
	overflow: hidden;
	cursor: zoom-in;
	background: #fff;
}

.fp_box_6 .fp6-item img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.5s ease;
}

.fp_box_6 .fp6-item a:hover img {
	transform: scale(1.04);
}

/* ===== 大图弹窗 ===== */
.fp6-modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
}

.fp6-modal.active {
	display: block;
}

.fp6-modal-mask {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
	cursor: zoom-out;
}

.fp6-modal-box {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 90vw;
	max-height: 90vh;
}

.fp6-modal-box img {
	display: block;
	max-width: 90vw;
	max-height: 90vh;
	width: auto;
	height: auto;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.fp6-modal-close {
	position: absolute;
	top: -44px;
	right: 0;
	width: 36px;
	height: 36px;
	line-height: 32px;
	text-align: center;
	border: 2px solid #fff;
	border-radius: 50%;
	background: transparent;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease;
}

.fp6-modal-close:hover {
	background: rgba(255, 255, 255, 0.15);
}

/* ===== 响应式 ===== */
@media only screen and (max-width: 1550px) {
	.fp_box_6 {
		padding: 50px 0 90px;
	}
	.fp_box_6 .container {
		padding-left: 150px;
		padding-right: 150px;
	}
	.fp_box_6 .fp6-title {
		font-size: 36px;
		margin-bottom: 45px;
	}
}

@media only screen and (max-width: 1400px) {
	.fp_box_6 {
		padding: 40px 0 80px;
	}
	.fp_box_6 .container {
		padding-left: 100px;
		padding-right: 100px;
	}
	.fp_box_6 .fp6-title {
		font-size: 32px;
		margin-bottom: 40px;
	}
	.fp_box_6 .fp6-list {
		margin: 0 -12px;
	}
	.fp_box_6 .fp6-item {
		padding: 0 12px;
		margin-bottom: 24px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp_box_6 {
		padding: 30px 0 70px;
	}
	.fp_box_6 .container {
		padding-left: 60px;
		padding-right: 60px;
	}
	.fp_box_6 .fp6-title {
		font-size: 28px;
		margin-bottom: 32px;
	}
	.fp_box_6 .fp6-list {
		margin: 0 -10px;
	}
	.fp_box_6 .fp6-item {
		padding: 0 10px;
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 1000px) {
	.fp_box_6 .container {
		padding-left: 30px;
		padding-right: 30px;
	}
	.fp_box_6 .fp6-item {
		width: 50%;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_6 {
		padding: 25px 0 50px;
	}
	.fp_box_6 .container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.fp_box_6 .fp6-title {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.fp_box_6 .fp6-list {
		margin: 0 -8px;
	}
	.fp_box_6 .fp6-item {
		width: 50%;
		padding: 0 8px;
		margin-bottom: 16px;
	}
	.fp6-modal-close {
		top: -40px;
		width: 32px;
		height: 32px;
		line-height: 28px;
		font-size: 20px;
	}
}

/* ========== 子页面 - 关于我们 第七屏（fp_box_7）合作伙伴 ========== */
.fp_box_7 {
	width: 100%;
	padding: 50px 0 100px;
	background: #fff;
}

.fp_box_7 .container {
	padding-left: 200px;
	padding-right: 200px;
}

.fp_box_7 .fp7-title {
	color: #1a4fb8;
	font-size: 40px;
	font-weight: 600;
	text-align: center;
	margin: 0 0 50px;
	line-height: 1.2;
}

.fp_box_7 .fp7-list {
	width: 100%;
}

.fp_box_7 .fp7-item {
	float: left;
	width: 25%;
	padding: 25px 15px;
	text-align: center;
	transition: transform 0.4s ease;
}

.fp_box_7 .fp7-item:hover {
	transform: translateY(-4px);
}

.fp_box_7 .fp7-item img {
	display: inline-block;
	width: 200px;
	height: 80px;
	max-width: 100%;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.fp_box_7 .fp7-item:hover img {
	transform: scale(1.05);
}

/* ===== 响应式 ===== */
@media only screen and (max-width: 1550px) {
	.fp_box_7 {
		padding: 40px 0 90px;
	}
	.fp_box_7 .container {
		padding-left: 150px;
		padding-right: 150px;
	}
	.fp_box_7 .fp7-title {
		font-size: 36px;
		margin-bottom: 45px;
	}
	.fp_box_7 .fp7-item img {
		width: 180px;
		height: 72px;
	}
}

@media only screen and (max-width: 1400px) {
	.fp_box_7 {
		padding: 30px 0 80px;
	}
	.fp_box_7 .container {
		padding-left: 100px;
		padding-right: 100px;
	}
	.fp_box_7 .fp7-title {
		font-size: 32px;
		margin-bottom: 40px;
	}
	.fp_box_7 .fp7-item {
		padding: 20px 12px;
	}
	.fp_box_7 .fp7-item img {
		width: 160px;
		height: 64px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp_box_7 {
		padding: 25px 0 70px;
	}
	.fp_box_7 .container {
		padding-left: 60px;
		padding-right: 60px;
	}
	.fp_box_7 .fp7-title {
		font-size: 28px;
		margin-bottom: 32px;
	}
	.fp_box_7 .fp7-item {
		padding: 18px 10px;
	}
	.fp_box_7 .fp7-item img {
		width: 140px;
		height: 56px;
	}
}

@media only screen and (max-width: 1000px) {
	.fp_box_7 .container {
		padding-left: 30px;
		padding-right: 30px;
	}
	.fp_box_7 .fp7-item {
		width: 33.3333%;
	}
	.fp_box_7 .fp7-item img {
		width: 130px;
		height: 52px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_7 {
		padding: 20px 0 50px;
	}
	.fp_box_7 .container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.fp_box_7 .fp7-title {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.fp_box_7 .fp7-item {
		width: 50%;
		padding: 12px 6px;
	}
	.fp_box_7 .fp7-item img {
		width: 120px;
		height: 48px;
	}
}

/* ========== 子页面 - 邀请条（fp_box_8） 复用 index 首页 section-7 的样式 ========== */
.fp_box_8 .ivd-invite {
	position: relative;
	width: 100%;
	height: 140px;
	overflow: hidden;
}

.fp_box_8 .ivd-invite-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.fp_box_8 .ivd-invite-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fp_box_8 .ivd-invite-inner {
	position: relative;
	z-index: 1;
	height: 100%;
	line-height: 140px;
}

.fp_box_8 .ivd-invite-inner::after {
	content: "";
	display: table;
	clear: both;
}

.fp_box_8 .ivd-invite-text {
	float: left;
	font-size: 42px;
	color: #444;
	margin: 0;
	font-weight: 500;
	line-height: inherit;
}

.fp_box_8 .ivd-invite-text strong {
	color: #1d4f9b;
	font-weight: 700;
	margin-right: 4px;
}

.fp_box_8 .ivd-invite-btn {
	float: right;
	display: inline-flex;
	align-items: center;
	gap: 16px;
	font-size: 28px;
	color: #1d4f9b !important;
	font-weight: 500;
	white-space: nowrap;
	transition: opacity 0.3s ease;
	text-decoration: underline !important;
	text-underline-offset: 6px;
	line-height: inherit;
}

.fp_box_8 .ivd-invite-btn:hover {
	opacity: 0.75;
}

.fp_box_8 .ivd-circle {
	width: 36px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
}

/* ===== 响应式 ===== */
@media only screen and (max-width: 1550px) {
	.fp_box_8 .ivd-invite { height: 130px; }
	.fp_box_8 .ivd-invite-inner { line-height: 130px; }
	.fp_box_8 .ivd-invite-text { font-size: 38px; }
	.fp_box_8 .ivd-invite-btn { font-size: 26px; }
	.fp_box_8 .ivd-circle { width: 34px; }
}

@media only screen and (max-width: 1400px) {
	.fp_box_8 .ivd-invite { height: 115px; }
	.fp_box_8 .ivd-invite-inner { line-height: 115px; }
	.fp_box_8 .ivd-invite-text { font-size: 32px; }
	.fp_box_8 .ivd-invite-btn { font-size: 22px; gap: 14px; }
	.fp_box_8 .ivd-circle { width: 30px; }
}

@media only screen and (max-width: 1200px) {
	.fp_box_8 .ivd-invite { height: 100px; }
	.fp_box_8 .ivd-invite-inner { line-height: 100px; }
	.fp_box_8 .ivd-invite-text { font-size: 26px; }
	.fp_box_8 .ivd-invite-btn { font-size: 18px; gap: 12px; }
	.fp_box_8 .ivd-circle { width: 26px; }
}

@media only screen and (max-width: 1000px) {
	.fp_box_8 .ivd-invite { height: 86px; }
	.fp_box_8 .ivd-invite-inner { line-height: 86px; }
	.fp_box_8 .ivd-invite-text { font-size: 22px; }
	.fp_box_8 .ivd-invite-btn { font-size: 16px; gap: 10px; }
	.fp_box_8 .ivd-circle { width: 22px; }
}

@media only screen and (max-width: 750px) {
	.fp_box_8 .ivd-invite {
		height: auto;
		min-height: 80px;
		background: url(../images/textbg.jpg) no-repeat center center;
		background-size: cover;
	}
	.fp_box_8 .ivd-invite-bg {
		display: none; /* 手机端用 background 顶替 img，避免拉伸出现空白 */
	}
	.fp_box_8 .ivd-invite-inner {
		line-height: 1.4;
		padding: 14px 15px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 6px;
	}
	.fp_box_8 .ivd-invite-text {
		float: none;
		font-size: 15px;
		line-height: 1.4;
	}
	.fp_box_8 .ivd-invite-btn {
		float: none;
		font-size: 13px;
		gap: 6px;
		line-height: 1;
	}
	.fp_box_8 .ivd-circle {
		width: 18px;
	}
}

/* ========== 子页面 - 产品列表（fp_box_9）左右结构 ========== */
.fp_box_9 {
	width: 100%;
	padding: 60px 0 100px;
	background: #fff;
}

/* 左侧分类 */
.fp_box_9 .fp9-cats {
	float: left;
	width: 360px;
	margin: 0;
	padding: 0;
	list-style: none;
	border: 1px solid #cccccc;
	border-bottom: none;
}

.fp_box_9 .fp9-cat {
	border-bottom: 1px solid #cccccc;
}

.fp_box_9 .fp9-cat a {
	display: flex;
	align-items: center;
	height: 110px;
	padding: 0 25px;
	color: #1a4fb8;
	font-size: 18px;
	line-height: 1.4;
	transition: background 0.3s ease, color 0.3s ease;
}

.fp_box_9 .fp9-cat:hover a {
	background: #f3f6fb;
}

.fp_box_9 .fp9-cat.active a {
	background: #1a4fb8;
	color: #fff;
}

/* 右侧 */
.fp_box_9 .fp9-main {
	margin-left: 410px; /* 360 + 50 间距 */
}

.fp_box_9 .fp9-title {
	color: #005aae;
	font-size: 52px;
	font-weight: 600;
	margin: 0 0 35px;
	line-height: 1.2;
}

.fp_box_9 .fp9-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fp_box_9 .fp9-item {
	margin-bottom: 30px;
}

.fp_box_9 .fp9-card {
	display: block;
	padding: 0;
	color: inherit;
	overflow: hidden;
	height: 250px;
}

.fp_box_9 .fp9-pic {
	float: left;
	width: 360px;
	height: 250px;
	overflow: hidden;
	background: #f4f4f4;
}

.fp_box_9 .fp9-pic img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.fp_box_9 .fp9-card:hover .fp9-pic img {
	transform: scale(1.04);
}

.fp_box_9 .fp9-info {
	float: left;
	width: calc(100% - 360px);
	padding: 18px 0 0 40px;
}

.fp_box_9 .fp9-name {
	color: #005aae;
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 16px;
	line-height: 1.3;
}

.fp_box_9 .fp9-desc {
	color: #444;
	font-size: 15px;
	line-height: 1.85;
	margin: 0;
}

/* ===== 响应式 ===== */
@media only screen and (max-width: 1550px) {
	.fp_box_9 {
		padding: 50px 0 90px;
	}
	.fp_box_9 .fp9-title {
		font-size: 46px;
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 1400px) {
	.fp_box_9 {
		padding: 40px 0 80px;
	}
	.fp_box_9 .fp9-cats {
		width: 300px;
	}
	.fp_box_9 .fp9-cat a {
		height: 100px;
		font-size: 17px;
		padding: 0 20px;
	}
	.fp_box_9 .fp9-main {
		margin-left: 340px;
	}
	.fp_box_9 .fp9-title {
		font-size: 40px;
	}
	.fp_box_9 .fp9-card {
		height: 210px;
	}
	.fp_box_9 .fp9-pic {
		width: 300px;
		height: 210px;
	}
	.fp_box_9 .fp9-info {
		padding: 12px 0 0 30px;
	}
	.fp_box_9 .fp9-name {
		font-size: 22px;
		margin-bottom: 12px;
	}
	.fp_box_9 .fp9-desc {
		font-size: 14px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp_box_9 {
		padding: 30px 0 70px;
	}
	.fp_box_9 .fp9-cats {
		width: 240px;
	}
	.fp_box_9 .fp9-cat a {
		height: 88px;
		font-size: 15px;
		padding: 0 16px;
	}
	.fp_box_9 .fp9-main {
		margin-left: 270px;
	}
	.fp_box_9 .fp9-title {
		font-size: 32px;
		margin-bottom: 24px;
	}
	.fp_box_9 .fp9-card {
		height: 170px;
	}
	.fp_box_9 .fp9-pic {
		width: 240px;
		height: 170px;
	}
	.fp_box_9 .fp9-info {
		padding: 8px 0 0 25px;
	}
	.fp_box_9 .fp9-name {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.fp_box_9 .fp9-desc {
		font-size: 13px;
		line-height: 1.75;
	}
	.fp_box_9 .fp9-item {
		margin-bottom: 22px;
	}
}

@media only screen and (max-width: 1000px) {
	.fp_box_9 .fp9-cats {
		width: 200px;
	}
	.fp_box_9 .fp9-cat a {
		height: 80px;
		font-size: 14px;
		padding: 0 14px;
	}
	.fp_box_9 .fp9-main {
		margin-left: 220px;
	}
	.fp_box_9 .fp9-card {
		height: 140px;
	}
	.fp_box_9 .fp9-pic {
		width: 200px;
		height: 140px;
	}
	.fp_box_9 .fp9-info {
		padding: 4px 0 0 20px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_9 {
		padding: 20px 0 50px;
	}
	.fp_box_9 .fp9-cats {
		float: none;
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		border: 1px solid #cccccc;
		border-bottom: 1px solid #cccccc;
		margin-bottom: 25px;
	}
	.fp_box_9 .fp9-cat {
		flex: 0 0 50%;
		max-width: 50%;
		border-bottom: 1px solid #cccccc;
	}
	.fp_box_9 .fp9-cat:nth-child(odd) {
		border-right: 1px solid #cccccc;
	}
	.fp_box_9 .fp9-cat a {
		height: 60px;
		padding: 0 12px;
		font-size: 13px;
	}
	.fp_box_9 .fp9-main {
		margin-left: 0;
	}
	.fp_box_9 .fp9-title {
		font-size: 24px;
		margin-bottom: 18px;
	}
	.fp_box_9 .fp9-card {
		height: auto;
	}
	.fp_box_9 .fp9-pic {
		float: none;
		width: 100%;
		height: auto;
		aspect-ratio: 360 / 250;
	}
	.fp_box_9 .fp9-info {
		float: none;
		width: 100%;
		padding: 12px 0 0 0;
	}
	.fp_box_9 .fp9-name {
		font-size: 17px;
		margin-bottom: 8px;
	}
	.fp_box_9 .fp9-desc {
		font-size: 13px;
		line-height: 1.7;
	}
	.fp_box_9 .fp9-item {
		margin-bottom: 24px;
	}
}

/* ========== 子页面 - 产品详情头部（fp_box_10）左文右图 ========== */
.fp_box_10 {
	width: 100%;
	background: #e5eef7;
	padding: 70px 0;
}

.fp_box_10 .fp10-wrap {
	width: 100%;
}

.fp_box_10 .fp10-info {
	float: left;
	width: calc(100% - 540px);
	padding-right: 40px;
	padding-top: 20px;
}

.fp_box_10 .fp10-title {
	color: #111;
	font-size: 54px;
	font-weight: 600;
	line-height: 1.1;
	margin: 0 0 18px;
}

.fp_box_10 .fp10-subtitle {
	color: #111;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 30px;
}

.fp_box_10 .fp10-desc {
	color: #333;
	font-size: 17px;
	line-height: 1.9;
	margin: 0;
}

.fp_box_10 .fp10-pic {
	float: right;
	width: 500px;
	height: 320px;
	overflow: hidden;
}

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

/* ===== 响应式 ===== */
@media only screen and (max-width: 1550px) {
	.fp_box_10 {
		padding: 60px 0;
	}
	.fp_box_10 .fp10-title {
		font-size: 56px;
		margin-bottom: 16px;
	}
	.fp_box_10 .fp10-subtitle {
		font-size: 24px;
		margin-bottom: 26px;
	}
	.fp_box_10 .fp10-desc {
		font-size: 16px;
	}
	.fp_box_10 .fp10-info {
		width: calc(100% - 480px);
	}
	.fp_box_10 .fp10-pic {
		width: 450px;
		height: 290px;
	}
}

@media only screen and (max-width: 1400px) {
	.fp_box_10 {
		padding: 50px 0;
	}
	.fp_box_10 .fp10-title {
		font-size: 48px;
	}
	.fp_box_10 .fp10-subtitle {
		font-size: 22px;
		margin-bottom: 22px;
	}
	.fp_box_10 .fp10-desc {
		font-size: 15px;
		line-height: 1.85;
	}
	.fp_box_10 .fp10-info {
		width: calc(100% - 430px);
		padding-right: 30px;
		padding-top: 12px;
	}
	.fp_box_10 .fp10-pic {
		width: 400px;
		height: 260px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp_box_10 {
		padding: 40px 0;
	}
	.fp_box_10 .fp10-title {
		font-size: 38px;
		margin-bottom: 12px;
	}
	.fp_box_10 .fp10-subtitle {
		font-size: 18px;
		margin-bottom: 18px;
	}
	.fp_box_10 .fp10-desc {
		font-size: 14px;
		line-height: 1.8;
	}
	.fp_box_10 .fp10-info {
		width: calc(100% - 360px);
		padding-right: 24px;
		padding-top: 8px;
	}
	.fp_box_10 .fp10-pic {
		width: 340px;
		height: 220px;
	}
}

@media only screen and (max-width: 1000px) {
	.fp_box_10 .fp10-title {
		font-size: 32px;
	}
	.fp_box_10 .fp10-subtitle {
		font-size: 16px;
	}
	.fp_box_10 .fp10-info {
		width: calc(100% - 300px);
	}
	.fp_box_10 .fp10-pic {
		width: 280px;
		height: 180px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_10 {
		padding: 30px 0 35px;
	}
	.fp_box_10 .fp10-info,
	.fp_box_10 .fp10-pic {
		float: none;
		width: 100%;
		padding: 0;
	}
	.fp_box_10 .fp10-title {
		font-size: 26px;
		margin-bottom: 10px;
	}
	.fp_box_10 .fp10-subtitle {
		font-size: 15px;
		margin-bottom: 14px;
	}
	.fp_box_10 .fp10-desc {
		font-size: 13px;
		line-height: 1.75;
	}
	.fp_box_10 .fp10-pic {
		margin-top: 22px;
		height: auto;
		aspect-ratio: 500 / 320;
	}
}

/* ========== 子页面 - 产品详情正文（fp_box_11）左右浮动 ========== */
.fp_box_11 {
	width: 100%;
	padding: 60px 0 80px;
	background: #fff;
}

.fp_box_11 .fp11-wrap {
	width: 100%;
}

/* 左侧主体 */
.fp_box_11 .fp11-main {
	float: left;
	width: calc(100% - 440px); /* 390 + 50 间距 */
	padding-right: 30px;
}

.fp_box_11 .fp11-h2 {
	color: #111;
	font-size: 38px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 22px;
}

.fp_box_11 .fp11-h3 {
	color: #1a4fb8;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
	margin: 30px 0 16px;
}

.fp_box_11 .fp11-p {
	color: #444;
	font-size: 15px;
	line-height: 1.85;
	margin: 0 0 18px;
}

.fp_box_11 .fp11-p--last {
	margin-bottom: 0;
}

.fp_box_11 .fp11-note {
	color: #555;
	font-size: 13px;
	line-height: 1.8;
	margin: 0 0 8px;
}

.fp_box_11 .fp11-figure {
	margin: 30px 0 24px;
}

.fp_box_11 .fp11-figure img {
	display: block;
	width: 100%;
	height: auto;
}

.fp_box_11 .fp11-caption {
	color: #b7b7b7;
	font-size: 13px;
	line-height: 1.6;
	margin: 12px 0 0;
}

.fp_box_11 .fp11-list {
	margin: 0 0 18px;
	padding: 0 0 0 22px;
	list-style: disc;
	color: #444;
	font-size: 15px;
	line-height: 1.9;
}

.fp_box_11 .fp11-list li {
	padding-left: 4px;
}

/* 右侧侧栏 */
.fp_box_11 .fp11-aside {
	float: right;
	width: 390px;
	border-left: 1px solid #e6e6e6;
	padding-left: 24px;
}

.fp_box_11 .fp11-aside-title {
	display: block;
	background: #003a8c;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	padding: 14px 22px;
	line-height: 1.3;
}

.fp_box_11 .fp11-aside-pic {
	background: #eef3f9;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fp_box_11 .fp11-aside-pic img {
	display: block;
	max-width: 100%;
	max-height: 360px;
	height: auto;
}

.fp_box_11 .fp11-aside-item {
	padding: 22px 0 0;
}

.fp_box_11 .fp11-aside-tag {
	display: block;
	color: #555;
	font-size: 13px;
	letter-spacing: 1px;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.fp_box_11 .fp11-aside-name {
	display: block;
	color: #1a4fb8;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.35;
	transition: color 0.3s ease;
}

.fp_box_11 .fp11-aside-name:hover {
	color: #003a8c;
}

.fp_box_11 .fp11-aside-links {
	margin-top: 26px;
	padding-bottom: 10px;
}

.fp_box_11 .fp11-aside-link {
	display: block;
	color: #1a4fb8;
	font-size: 16px;
	margin-bottom: 12px;
	transition: color 0.3s ease;
}

.fp_box_11 .fp11-aside-link:hover {
	color: #003a8c;
}

/* ===== 响应式 ===== */
@media only screen and (max-width: 1550px) {
	.fp_box_11 {
		padding: 50px 0 70px;
	}
	.fp_box_11 .fp11-h2 {
		font-size: 34px;
	}
	.fp_box_11 .fp11-aside-name {
		font-size: 20px;
	}
}

@media only screen and (max-width: 1400px) {
	.fp_box_11 {
		padding: 40px 0 60px;
	}
	.fp_box_11 .fp11-main {
		width: calc(100% - 380px);
		padding-right: 24px;
	}
	.fp_box_11 .fp11-aside {
		width: 340px;
		padding-left: 20px;
	}
	.fp_box_11 .fp11-h2 {
		font-size: 30px;
		margin-bottom: 18px;
	}
	.fp_box_11 .fp11-h3 {
		font-size: 22px;
		margin: 24px 0 12px;
	}
	.fp_box_11 .fp11-p,
	.fp_box_11 .fp11-list {
		font-size: 14px;
		line-height: 1.8;
	}
	.fp_box_11 .fp11-aside-name {
		font-size: 18px;
	}
	.fp_box_11 .fp11-aside-link {
		font-size: 15px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp_box_11 {
		padding: 30px 0 50px;
	}
	.fp_box_11 .fp11-main {
		width: calc(100% - 320px);
		padding-right: 18px;
	}
	.fp_box_11 .fp11-aside {
		width: 290px;
		padding-left: 16px;
	}
	.fp_box_11 .fp11-h2 {
		font-size: 26px;
	}
	.fp_box_11 .fp11-h3 {
		font-size: 19px;
	}
	.fp_box_11 .fp11-p,
	.fp_box_11 .fp11-list {
		font-size: 13.5px;
	}
	.fp_box_11 .fp11-aside-pic {
		padding: 22px;
	}
	.fp_box_11 .fp11-aside-name {
		font-size: 16px;
	}
}

@media only screen and (max-width: 1000px) {
	.fp_box_11 .fp11-main {
		width: calc(100% - 280px);
	}
	.fp_box_11 .fp11-aside {
		width: 250px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_11 {
		padding: 25px 0 40px;
	}
	.fp_box_11 .fp11-main {
		float: none;
		width: 100%;
		padding-right: 0;
		margin-bottom: 30px;
	}
	.fp_box_11 .fp11-aside {
		float: none;
		width: 100%;
		padding-left: 0;
		border-left: none;
		border-top: 1px solid #e6e6e6;
		padding-top: 20px;
	}
	.fp_box_11 .fp11-h2 {
		font-size: 22px;
		margin-bottom: 14px;
	}
	.fp_box_11 .fp11-h3 {
		font-size: 17px;
		margin: 20px 0 10px;
	}
	.fp_box_11 .fp11-p,
	.fp_box_11 .fp11-list {
		font-size: 13px;
		line-height: 1.75;
	}
	.fp_box_11 .fp11-figure {
		margin: 22px 0 18px;
	}
	.fp_box_11 .fp11-aside-title {
		font-size: 16px;
		padding: 12px 18px;
	}
	.fp_box_11 .fp11-aside-name {
		font-size: 16px;
	}
	.fp_box_11 .fp11-aside-pic {
		padding: 20px;
	}
}

/* ========== 子页面 - 案例页 banner（anliebanner） ========== */
.anliebanner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.anliebanner .anliebanner-img {
	display: block;
	width: 100%;
	height: auto;
}

.anliebanner .container {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.anliebanner .anliebanner-text {
	color: #fff;
	font-size: 52px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

/* ===== 响应式 ===== */
@media only screen and (max-width: 1550px) {
	.anliebanner .anliebanner-text {
		font-size: 46px;
	}
}

@media only screen and (max-width: 1400px) {
	.anliebanner .anliebanner-text {
		font-size: 40px;
	}
}

@media only screen and (max-width: 1200px) {
	.anliebanner .anliebanner-text {
		font-size: 32px;
	}
}

@media only screen and (max-width: 1000px) {
	.anliebanner .anliebanner-text {
		font-size: 26px;
	}
}

@media only screen and (max-width: 750px) {
	.anliebanner .anliebanner-text {
		font-size: 16px;
		line-height: 1.5;
		padding: 0 15px;
	}
}

/* ========== 子页面 - 案例页（an_box_1）案例网格 ========== */
.an_box_1 {
	width: 100%;
	padding: 50px 0 90px;
	background: #fff;
}

.an_box_1 .an1-title {
	color: #1a4fb8;
	font-size: 60px;
	font-weight: 600;
	text-align: center;
	margin: 0 0 22px;
	line-height: 1.2;
	margin-bottom: 50px;
}

.an_box_1 .an1-divider {
	border-top: 1px solid #e0e0e0;
	margin-bottom: 40px;
}

/* 外层负 margin，让 4 列卡片之间的间距均匀，且左右贴齐板心 */
.an_box_1 .an1-list {
	margin: 0 -12px;
	padding: 0;
	list-style: none;
}

.an_box_1 .an1-item {
	float: left;
	width: 25%;
	padding: 0 12px;
	margin-bottom: 30px;
}

.an_box_1 .an1-card {
	display: block;
	color: inherit;
}

.an_box_1 .an1-pic {
	width: 100%;
	height: 380px;
	overflow: hidden;
	background: #f4f4f4;
}

.an_box_1 .an1-pic img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.an_box_1 .an1-card:hover .an1-pic img {
	transform: scale(1.04);
}

.an_box_1 .an1-desc {
	background: #edf3f9;
	color: #444;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	padding: 18px 16px;
	min-height: 84px;
}

/* ===== 响应式 ===== */
@media only screen and (max-width: 1550px) {
	.an_box_1 {
		padding: 45px 0 80px;
	}
	.an_box_1 .an1-title {
		font-size: 36px;
	}
	.an_box_1 .an1-pic {
		height: 320px;
	}
}

@media only screen and (max-width: 1400px) {
	.an_box_1 {
		padding: 40px 0 70px;
	}
	.an_box_1 .an1-title {
		font-size: 32px;
		margin-bottom: 20px;
	}
	.an_box_1 .an1-divider {
		margin-bottom: 32px;
	}
	.an_box_1 .an1-list {
		margin: 0 -10px;
	}
	.an_box_1 .an1-item {
		padding: 0 10px;
		margin-bottom: 25px;
	}
	.an_box_1 .an1-pic {
		height: 270px;
	}
	.an_box_1 .an1-desc {
		font-size: 14px;
		padding: 14px 14px;
	}
}

@media only screen and (max-width: 1200px) {
	.an_box_1 {
		padding: 30px 0 60px;
	}
	.an_box_1 .an1-title {
		font-size: 28px;
	}
	.an_box_1 .an1-divider {
		margin-bottom: 28px;
	}
	.an_box_1 .an1-list {
		margin: 0 -8px;
	}
	.an_box_1 .an1-item {
		padding: 0 8px;
		margin-bottom: 22px;
	}
	.an_box_1 .an1-pic {
		height: 220px;
	}
}

@media only screen and (max-width: 1000px) {
	.an_box_1 .an1-item {
		width: 50%;
	}
	.an_box_1 .an1-pic {
		height: 280px;
	}
}

@media only screen and (max-width: 750px) {
	.an_box_1 {
		padding: 25px 0 40px;
	}
	.an_box_1 .an1-title {
		font-size: 22px;
		margin-bottom: 16px;
	}
	.an_box_1 .an1-divider {
		margin-bottom: 22px;
	}
	.an_box_1 .an1-list {
		margin: 0;
	}
	.an_box_1 .an1-item {
		float: none;
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
	}
	.an_box_1 .an1-pic {
		height: auto;
	}
	.an_box_1 .an1-pic img {
		height: auto;
	}
	.an_box_1 .an1-desc {
		font-size: 13px;
		line-height: 1.55;
		padding: 12px 14px;
	}
}

/* ========== 子页面 - 新闻列表（news_list） ========== */
.news_list {
	width: 100%;
	padding: 50px 0 90px;
	background: #fff;
}

.news_list .nl-title {
	color: #1a4fb8;
	font-size: 40px;
	font-weight: 600;
	text-align: center;
	margin: 0 0 22px;
	line-height: 1.2;
}

.news_list .nl-divider {
	border-top: 1px solid #e0e0e0;
	margin-bottom: 40px;
}

.news_list .nl-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.news_list .nl-item {
	margin-bottom: 30px;
}

.news_list .nl-card {
	display: block;
	color: inherit;
	overflow: hidden;
	height: 257px;
}

.news_list .nl-pic {
	float: left;
	width: 383px;
	height: 257px;
	overflow: hidden;
	background: #f4f4f4;
}

.news_list .nl-pic img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.news_list .nl-card:hover .nl-pic img {
	transform: scale(1.04);
}

.news_list .nl-info {
	float: left;
	width: calc(100% - 383px);
	padding:0px 0 0 32px;
}

.news_list .nl-date {
	color: #555;
	font-size: 14px;
	line-height: 1;
	margin-bottom: 14px;
}

.news_list .nl-name {
	color: #1a4fb8;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.35;
	margin: 0 0 18px;
	transition: color 0.3s ease;
}

.news_list .nl-card:hover .nl-name {
	color: #003a8c;
}

.news_list .nl-desc {
	color: #444;
	font-size: 15px;
	line-height: 1.85;
	margin: 0 0 18px;
}

.news_list .nl-more {
	display: inline-block;
	color: #1a4fb8;
	font-size: 15px;
	border-bottom: 1px solid #1a4fb8;
	padding-bottom: 1px;
}

/* ===== 分页 ===== */
.news_list .nl-pager {
	margin-top: 60px;
	text-align: center;
}

.news_list .nl-pg-num,
.news_list .nl-pg-arrow,
.news_list .nl-pg-dots {
	display: inline-block;
	vertical-align: middle;
	width: 36px;
	height: 36px;
	line-height: 34px;
	text-align: center;
	color: #555;
	font-size: 14px;
	margin: 0 6px;
	border-radius: 50%;
	border: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.news_list .nl-pg-num,
.news_list .nl-pg-arrow {
	cursor: pointer;
	border-color: #d8d8d8;
}

.news_list .nl-pg-num:hover,
.news_list .nl-pg-arrow:hover {
	color: #1a4fb8;
	border-color: #1a4fb8;
}

.news_list .nl-pg-num.active {
	color: #1a4fb8;
	border-color: #1a4fb8;
	font-weight: 600;
}

.news_list .nl-pg-dots {
	border: none;
	cursor: default;
}

.news_list .nl-pg-arrow img {
	display: inline-block;
	width: 12px;
	height: auto;
	vertical-align: middle;
	margin-top: -2px;
}

.news_list .nl-pg-arrow i {
	display: inline-block;
	width: 9px;
	height: 9px;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
	vertical-align: middle;
	margin-top: -2px;
	transition: border-color 0.2s ease;
}

.news_list .nl-pg-prev i {
	transform: rotate(-45deg);
	margin-right: -2px;
}

.news_list .nl-pg-next i {
	transform: rotate(135deg);
	margin-left: -2px;
}

/* ===== 响应式 ===== */
@media only screen and (max-width: 1550px) {
	.news_list .nl-title {
		font-size: 36px;
	}
	.news_list .nl-name {
		font-size: 20px;
	}
}

@media only screen and (max-width: 1400px) {
	.news_list {
		padding: 40px 0 70px;
	}
	.news_list .nl-title {
		font-size: 32px;
		margin-bottom: 20px;
	}
	.news_list .nl-divider {
		margin-bottom: 32px;
	}
	.news_list .nl-card,
	.news_list .nl-pic {
		height: 220px;
	}
	.news_list .nl-pic {
		width: 330px;
	}
	.news_list .nl-info {
		width: calc(100% - 330px);
		padding: 18px 0 0 26px;
	}
	.news_list .nl-name {
		font-size: 18px;
		margin-bottom: 14px;
	}
	.news_list .nl-desc {
		font-size: 14px;
		line-height: 1.8;
	}
	.news_list .nl-pager {
		margin-top: 50px;
	}
}

@media only screen and (max-width: 1200px) {
	.news_list {
		padding: 30px 0 60px;
	}
	.news_list .nl-title {
		font-size: 28px;
	}
	.news_list .nl-divider {
		margin-bottom: 26px;
	}
	.news_list .nl-card,
	.news_list .nl-pic {
		height: 190px;
	}
	.news_list .nl-pic {
		width: 280px;
	}
	.news_list .nl-info {
		width: calc(100% - 280px);
		padding: 12px 0 0 22px;
	}
	.news_list .nl-date {
		font-size: 13px;
		margin-bottom: 10px;
	}
	.news_list .nl-name {
		font-size: 17px;
		margin-bottom: 10px;
	}
	.news_list .nl-desc {
		font-size: 13px;
		line-height: 1.75;
		margin-bottom: 10px;
	}
	.news_list .nl-more {
		font-size: 14px;
	}
	.news_list .nl-pg-num,
	.news_list .nl-pg-arrow,
	.news_list .nl-pg-dots {
		width: 32px;
		height: 32px;
		line-height: 30px;
		font-size: 13px;
		margin: 0 4px;
	}
}

@media only screen and (max-width: 1000px) {
	.news_list .nl-card,
	.news_list .nl-pic {
		height: 160px;
	}
	.news_list .nl-pic {
		width: 240px;
	}
	.news_list .nl-info {
		width: calc(100% - 240px);
		padding: 8px 0 0 18px;
	}
}

@media only screen and (max-width: 750px) {
	.news_list {
		padding: 25px 0 40px;
	}
	.news_list .nl-title {
		font-size: 22px;
		margin-bottom: 16px;
	}
	.news_list .nl-divider {
		margin-bottom: 22px;
	}
	.news_list .nl-card {
		height: auto;
	}
	.news_list .nl-pic {
		float: none;
		width: 100%;
		height: auto;
	}
	.news_list .nl-pic img {
		height: auto;
	}
	.news_list .nl-info {
		float: none;
		width: 100%;
		padding: 16px 0 0 0;
	}
	.news_list .nl-date {
		font-size: 12px;
		margin-bottom: 8px;
	}
	.news_list .nl-name {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.news_list .nl-desc {
		font-size: 13px;
		line-height: 1.7;
		margin-bottom: 10px;
	}
	.news_list .nl-more {
		font-size: 13px;
	}
	.news_list .nl-item {
		margin-bottom: 28px;
	}
	.news_list .nl-pager {
		margin-top: 30px;
		white-space: nowrap;
		overflow-x: auto;
	}
	.news_list .nl-pg-num,
	.news_list .nl-pg-arrow,
	.news_list .nl-pg-dots {
		width: 28px;
		height: 28px;
		line-height: 26px;
		font-size: 12px;
		margin: 0 3px;
	}
	.news_list .nl-pg-arrow img {
		width: 10px;
	}
	.news_list .nl-pg-arrow i {
		width: 7px;
		height: 7px;
		border-width: 2px;
	}
}

/* ========== 子页面 - 联系我们（lianxi） ========== */
.lianxi {
	width: 100%;
	padding: 50px 0 100px;
	background: #fff;
}

.lianxi .lx-title {
	color: #1a4fb8;
	font-size: 40px;
	font-weight: 600;
	text-align: center;
	margin: 0 0 22px;
	line-height: 1.2;
}

.lianxi .lx-divider {
	border-top: 1px solid #e0e0e0;
	margin-bottom: 50px;
}

.lianxi .lx-wrap {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 100px;
}

/* 左：二维码区 */
.lianxi .lx-qrs {
	flex: 0 0 auto;
}

.lianxi .lx-qr {
	float: left;
	margin-right: 36px;
	text-align: center;
}

.lianxi .lx-qr:last-child {
	margin-right: 0;
}

.lianxi .lx-qr img {
	display: block;
	width: 130px;
	height: 130px;
	margin: 0 auto 12px;
}

.lianxi .lx-qr span {
	display: block;
	color: #1a4fb8;
	font-size: 14px;
	text-align: center;
}

/* 右：信息区 */
.lianxi .lx-info {
	flex: 0 0 auto;
}

.lianxi .lx-company {
	color: #111;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 22px;
	line-height: 1.4;
}

.lianxi .lx-rows {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lianxi .lx-row {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
	color: #333;
	font-size: 16px;
	line-height: 1.6;
}

.lianxi .lx-row:last-child {
	margin-bottom: 0;
}

.lianxi .lx-ico {
	flex: 0 0 auto;
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-right: 12px;
	position: relative;
}

/* 定位针图标 */
.lianxi .lx-ico-addr::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 14px;
	height: 14px;
	border: 2px solid #6a7a8d;
	border-radius: 50%;
	box-sizing: border-box;
}
.lianxi .lx-ico-addr::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 11px;
	transform: translateX(-50%) rotate(45deg);
	width: 8px;
	height: 8px;
	border-right: 2px solid #6a7a8d;
	border-bottom: 2px solid #6a7a8d;
}

/* 电话图标 */
.lianxi .lx-ico-tel::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 22px;
	height: 22px;
	border: 2px solid #6a7a8d;
	border-radius: 50%;
	box-sizing: border-box;
}
.lianxi .lx-ico-tel::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 5px;
	width: 7px;
	height: 9px;
	border: 2px solid #6a7a8d;
	border-radius: 2px 2px 6px 6px;
	box-sizing: border-box;
	transform: rotate(-25deg);
}

/* 邮件图标 */
.lianxi .lx-ico-mail::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 22px;
	height: 16px;
	border: 2px solid #6a7a8d;
	border-radius: 2px;
	box-sizing: border-box;
}
.lianxi .lx-ico-mail::after {
	content: "";
	position: absolute;
	left: 2px;
	top: 4px;
	width: 18px;
	height: 8px;
	border-bottom: 2px solid #6a7a8d;
	transform: skewY(20deg);
	transform-origin: left;
}

/* ===== 响应式 ===== */
@media only screen and (max-width: 1550px) {
	.lianxi .lx-title {
		font-size: 36px;
	}
	.lianxi .lx-wrap {
		gap: 80px;
	}
}

@media only screen and (max-width: 1400px) {
	.lianxi {
		padding: 40px 0 80px;
	}
	.lianxi .lx-title {
		font-size: 32px;
	}
	.lianxi .lx-divider {
		margin-bottom: 40px;
	}
	.lianxi .lx-wrap {
		gap: 60px;
	}
	.lianxi .lx-qr img {
		width: 120px;
		height: 120px;
	}
	.lianxi .lx-qr {
		margin-right: 28px;
	}
	.lianxi .lx-company {
		font-size: 18px;
		margin-bottom: 18px;
	}
	.lianxi .lx-row {
		font-size: 15px;
	}
}

@media only screen and (max-width: 1200px) {
	.lianxi {
		padding: 30px 0 70px;
	}
	.lianxi .lx-title {
		font-size: 28px;
	}
	.lianxi .lx-divider {
		margin-bottom: 32px;
	}
	.lianxi .lx-wrap {
		gap: 40px;
	}
	.lianxi .lx-qr img {
		width: 110px;
		height: 110px;
	}
	.lianxi .lx-qr {
		margin-right: 22px;
	}
	.lianxi .lx-company {
		font-size: 17px;
		margin-bottom: 16px;
	}
	.lianxi .lx-row {
		font-size: 14px;
		margin-bottom: 14px;
	}
}

@media only screen and (max-width: 1000px) {
	.lianxi .lx-wrap {
		gap: 30px;
	}
	.lianxi .lx-qr img {
		width: 100px;
		height: 100px;
	}
}

@media only screen and (max-width: 750px) {
	.lianxi {
		padding: 25px 0 50px;
	}
	.lianxi .lx-title {
		font-size: 22px;
		margin-bottom: 16px;
	}
	.lianxi .lx-divider {
		margin-bottom: 24px;
	}
	.lianxi .lx-wrap {
		flex-direction: column;
		gap: 24px;
	}
	.lianxi .lx-qrs {
		text-align: center;
	}
	.lianxi .lx-qr {
		float: none;
		display: inline-block;
		vertical-align: top;
		margin: 0 8px;
	}
	.lianxi .lx-qr img {
		width: 110px;
		height: 110px;
	}
	.lianxi .lx-company {
		font-size: 16px;
		text-align: center;
		margin-bottom: 18px;
	}
	.lianxi .lx-row {
		font-size: 13px;
		line-height: 1.6;
		align-items: flex-start;
	}
	.lianxi .lx-ico {
		margin-top: 1px;
	}
}
.fp_box_9 .fp9-panel {
    display: none;
}

.fp_box_9 .fp9-panel.active {
    display: block;
}

.zdtable{
	margin:0 auto;
}
.zdtable td{
	display: inline-block;
	vertical-align: middle;
	width: 36px;
	height: 36px;
	line-height: 34px;
	text-align: center;
	color: #d8d8d8;
	font-size: 14px;
	margin: 0 6px;
	border-radius: 50%;
	border: 1px solid #d8d8d8;
}
.zdtable .htfydqpage{
	color: #1a4fb8;
	border-color: #1a4fb8;
	font-weight: 600;
}
.zdtable .wymclass{
	color: #555;
}
.zdtable .wymclass:hover{
	border-color: #1a4fb8;
}


.cpxqbar{
	margin-top:24px;
}
.cpxqbun{
	background:#1d4a9f;
	color:#fff;
	font-size:16px;
	border-radius: 20px;
	padding:6px 25px;
	float:left;
	margin-right:20px;
}
.cpxqbun a{
	color:#fff;
}
.cqxqgdt{
	clear:both;
	font-size:14px;
	padding-top:8px;
}
@media only screen and (max-width: 1000px) {
	.cpxqbun{
		float:none;
		width:60%;
		margin:6px auto 0 auto;
		text-align:center;
	}
}

.vdcodeI2{
	width:120px;
	height: 35px;
	background: transparent;;
	border: 1px solid #888;
	color: #fff;
	font-size: 13px;
}

.right_bar{
	position:fixed;
	top:300px;
	right:0;
	width:50px;
	height:203px;
	z-index:10;
	display:none;
}
.right_bar li{
	width:62px;
	height:50px;
	z-index:20;
	list-style: none;
}
.right_bar li.rtbar_li1,.right_bar li.rtbar_li4{
	position:absolute;
	left:0;
}
.right_bar li.rtbar_li1{
	top:0;
	width:285px;
}
.right_bar li.rtbar_li2{
	position:absolute;
	top:102px;
	left:0;
}
.right_bar li.rtbar_li3{
	position:absolute;
	top:51px;
	left:0;
	width:205px;
}
.right_bar li.rtbar_li4{
	top:153px;
}
.right_bar li a{
	display:block;
	color:#FFF;
	font-size:13px;
	height:50px;
	line-height:50px;
	overflow:hidden;
	background:#007ff6;
	opacity:0.9;
	border-radius:6px;
}
.right_bar li a img{
	display:block;
	float:left;
	vertical-align:middle;
	width:24px;
	height:24px;
	margin:12px 12px 14px 14px;
}
.right_bar li a:hover{
	background-color:#005aae;
	opacity:1;
}
.rtbar_shwx{
	display:none;
	position:absolute;
	top:-30px;
	left:-150px;
	padding-bottom:9px;
}
.rtbar_shwx img{
	background-color:#FFF;
	width:140px;
}
@media only screen and (max-width: 1024px) {
	.right_bar{
		display:none !important;
		visibility:hidden;
		pointer-events:none;
	}
}