/* 全局 */

* {
	padding: 0;
	margin: 0;
}

::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-thumb {
	background: #555;
}

::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	background: #ddd;
}

/* @font-face {
    font-family: 'en';
    src: url('../fonts/en.eot'),url('../fonts/en.woff') format('woff'),url('../fonts/en.ttf') format('truetype'),url('../fonts/en.svg') format('svg');
    font-weight: normal;
    font-style: normal;
} */

body, html {
	width: 100%;
	min-width: 1200px;
	height: auto;
	min-height: 100vh;
	background: #fff;
	font-family: 微软雅黑, Microsoft Yahei, msyh, PingFangSC-Regular, Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #333;
	-webkit-overflow-scrolling: touch;
	-webkit-box-orient: vertical;
	-webkit-box-align: stretch;
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

header, section, footer, aside, nav, main, article, figure { 
    display: block; 
}

button, input, select, textarea {
	color: #333;
	font: 0.875rem 微软雅黑, Microsoft Yahei, PingFangSC-Regular, Helvetica, Arial, sans-serif;
	outline: none;
}

a {
	text-decoration: none;
	outline: none;
	color: #333;
}

a:hover, a:focus {
	color: #005636;
}

img {
	border: none;
}
/* .svg图片先占位隐藏，待格式化后再显示，避免格式化前因为填充色不一致显示的问题 */
.svg {
	visibility: hidden;
}

form {
	margin: 0px;
	padding: 0px;
}

input:focus, textarea:focus, a:focus, select:focus, button:focus {
	outline: none;
}

ul, ol, li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.nowrap, ul.nowraps li {
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}

.clear {
	clear: both;
}

.hide {
	display: none;
}

.right {
	float: right;
}

.left {
	float: left;
}

.center {
	text-align: center;
}

.bold, .b {
	font-weight: bold;
}

.hand, .linka {
	cursor: pointer;
}

.tips {
	max-width: 80%;
	height: auto;
	padding: 5px 20px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 0.875rem;
	line-height: 180%;
	position: fixed;
	z-index: 1000;
	top: 40%;
	left: 50%;
	opacity: 0;
	text-align: center;
	border-radius: 20px;
}

.maskbg {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	overflow: auto;
}

.coverimg img, .coverthis {
	transition: all 0.5s;
}

.coverimg:hover img, .coverthis:hover {
	transform: scale(1.05);
	-ms-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-o-transform: scale(1.05);
}

.fit_cover {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fit_contain {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.shadow {
	-moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}

.shadow2 {
	-moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.trans3 {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.trans5 {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.trans10 {
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.border-box {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* placeholder颜色 */

::-webkit-input-placeholder {
	color: #bbb;
}

:-moz-placeholder {
	color: #bbb;
}

::-moz-placeholder {
	color: #bbb;
}

:-ms-input-placeholder {
	color: #bbb;
}

.placeholder_white::-webkit-input-placeholder {
	color: #fff;
}
.placeholder_white:-moz-placeholder {
	color: #fff;
}
.placeholder_white::-moz-placeholder {
	color: #fff;
}
.placeholder_white:-ms-input-placeholder {
	color: #fff;
}

/* loader样式 */
.loading {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, .5);
}

.nb-spinner {
	width: 70px;
	height: 70px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -100px;
	margin-top: -100px;
	background: transparent;
	border-top: 3px solid #64b4f6;
	border-right: 3px solid transparent;
	border-radius: 50%;
	-webkit-animation: 1s spin linear infinite;
	animation: 1s spin linear infinite;
}

@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* 自定义alert/confirm */

.alertbox,
.confirmbox {
    display: block;
}
.alert {
    width: 460px;
    height: auto;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    margin: calc(50vh - 150px) auto 0 auto;
}
.alert_title {
    width: 100%;
    line-height: 45px;
    text-align: center;
    background-color: #f0f0f0;
    font-size: 1rem;
    font-weight: bold;
    border-bottom: 1px solid #e0e0e0;
}
.alert_cont {
    padding: 30px 20px;
    text-align: center;
    font-size: 0.875rem;
    line-height: 180%;
}
.alert_btn {
    width: 80px;
    line-height: 28px;
    border: 1px solid #999;
    font-size: 0.875rem;
    border-radius: 3px;
    margin: 0 auto 30px auto;
    cursor: pointer;
    text-align: center;
}
.confirm_btn {
    height: auto;
    overflow: hidden;
    text-align: center;
}
.confirm_btn span {
    display: inline-block;
    line-height: 28px;
    border: 1px solid #999;
    font-size: 0.875rem;
    border-radius: 3px;
    cursor: pointer;
    margin: 0 10px 30px 10px;
    padding: 0 20px;
    vertical-align: top;
}

/* 头部 ----------------------------------------------------*/

.headbox {
	width: 100%;
	height:0;
}
.head {
	width: 100%;
	height: 70px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 200;
	background: rgba(255, 255, 255, 0);
}
.logo {
	width: 400px;
	height: 57px;
	margin: 6.5px 0 0 8%;
	float: left;
	overflow: hidden;
}

/* FEFA desktop footer */
.site-footer {
	--footer-deep: #04494a;
	--footer-accent: #ea5827;
	--footer-content-max: 1680px;
	--footer-gutter: clamp(58px,4.5vw,86px);
	box-sizing: border-box;
	position: relative;
	border-top: 3px solid var(--footer-accent);
	background: #f3f1ea;
	color: #435252;
	overflow: hidden;
}
.site-footer::before {
	content: '';
	width: 320px;
	height: 320px;
	position: absolute;
	right: -180px;
	top: -175px;
	border: 1px solid rgba(4,73,74,.08);
	border-radius: 50%;
	box-shadow: 0 0 0 48px rgba(4,73,74,.025), 0 0 0 96px rgba(4,73,74,.015);
	pointer-events: none;
}
.footer-main {
	display: grid;
	grid-template-columns: minmax(390px,1.45fr) minmax(190px,.65fr) minmax(300px,.9fr);
	gap: clamp(54px,4.2vw,74px);
	box-sizing: border-box;
	max-width: var(--footer-content-max);
	margin: 0 auto;
	padding: 48px var(--footer-gutter) 42px;
	position: relative;
	z-index: 1;
}
.footer-brand {
	max-width: 560px;
}
.footer-logo {
	display: block;
	width: 210px;
}
.footer-logo img {
	display: block;
	width: 100%;
	height: auto;
}
.footer-slogan {
	margin: 22px 0 0;
	color: var(--footer-deep);
	font-size: .875rem;
	line-height: 1.85;
	letter-spacing: .06em;
}
.footer-brand address {
	display: grid;
	gap: 6px;
	margin-top: 20px;
	padding-top: 17px;
	border-top: 1px solid rgba(4,73,74,.13);
	font-size: .75rem;
	font-style: normal;
	line-height: 1.75;
}
.footer-brand address strong {
	color: #526060;
	font-weight: 500;
}
.footer-brand address span { color: #7b8584; }
.footer-nav > strong,
.footer-service > strong {
	display: block;
	padding-bottom: 13px;
	position: relative;
	border-bottom: 1px solid rgba(4,73,74,.14);
	color: var(--footer-deep);
	font-size: .9375rem;
	font-weight: 600;
	letter-spacing: .06em;
}
.footer-nav > strong::after,
.footer-service > strong::after {
	content: '';
	width: 32px;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: -1px;
	background: var(--footer-accent);
}
.footer-nav strong small,
.footer-service strong small {
	display: block;
	margin-top: 5px;
	color: #9a9f9c;
	font-size: .5625rem;
	font-weight: 500;
	letter-spacing: .2em;
}
.footer-nav-links {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 11px 22px;
	margin-top: 19px;
}
.footer-nav-links a {
	position: relative;
	color: #687574;
	font-size: .8125rem;
	line-height: 1.6;
	transition: color .2s, transform .2s;
}
.footer-nav-links a::before {
	content: '';
	width: 4px;
	height: 4px;
	margin-right: 8px;
	display: inline-block;
	vertical-align: 2px;
	background: rgba(4,73,74,.35);
}
.footer-nav-links a:hover {
	color: var(--footer-accent);
	transform: translateX(3px);
}
.footer-service-label {
	display: block;
	margin-top: 20px;
	color: #8b9391;
	font-size: .6875rem;
	letter-spacing: .1em;
}
.footer-tel {
	display: inline-block;
	margin-top: 7px;
	color: var(--footer-deep);
	font-size: clamp(1.35rem,1.7vw,1.8rem);
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: .04em;
}
.footer-service p {
	margin: 7px 0 0;
	color: #8b9391;
	font-size: .6875rem;
}
.footer-contact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	width: 100%;
	max-width: 240px;
	height: 40px;
	margin-top: 18px;
	padding: 0 15px;
	border: 1px solid rgba(4,73,74,.28);
	color: var(--footer-deep);
	font-size: .75rem;
	transition: border-color .2s, background .2s, color .2s;
}
.footer-contact:hover {
	border-color: var(--footer-deep);
	background: var(--footer-deep);
	color: #fff;
}
.footer-contact span { color: var(--footer-accent); font-size: 1rem; }
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	box-sizing: border-box;
	max-width: var(--footer-content-max);
	margin: 0 auto;
	padding: 15px var(--footer-gutter);
	position: relative;
	z-index: 1;
	border-top: 1px solid rgba(4,73,74,.12);
	color: #929997;
	font-size: .6875rem;
	line-height: 1.6;
}
.footer-legal {
	display: flex;
	align-items: center;
	gap: 22px;
}
.footer-legal a { color: #7b8583; }
.footer-legal a:hover { color: var(--footer-deep); }
.footer-backtop {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 2px;
	width: 46px;
	height: 46px;
	position: absolute;
	right: max(var(--footer-gutter), calc((100vw - var(--footer-content-max)) / 2 + var(--footer-gutter)));
	top: 24px;
	z-index: 2;
	padding: 0;
	border: 1px solid rgba(4,73,74,.22);
	background: rgba(255,255,255,.35);
	color: var(--footer-deep);
	font: inherit;
	font-size: .5rem;
	letter-spacing: .12em;
	cursor: pointer;
	transition: background .2s, color .2s, transform .2s;
}
.footer-backtop span { font-size: 1rem; line-height: 1; }
.footer-backtop:hover {
	background: var(--footer-deep);
	color: #fff;
	transform: translateY(-3px);
}
@media (max-width: 1180px) {
	.site-footer { --footer-gutter: 6vw; }
	.footer-main {
		grid-template-columns: minmax(300px,1.2fr) minmax(160px,.7fr) minmax(240px,.9fr);
		gap: 36px;
	}
	.footer-backtop { top: 14px; }
}
@media (max-width: 900px) {
	.footer-main {
		grid-template-columns: 1.25fr .75fr;
		padding-top: 40px;
	}
	.footer-brand { grid-row: span 2; }
	.footer-service { grid-column: 2; }
	.footer-nav-links { grid-template-columns: 1fr; }
	.footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
}

/* Desktop privacy policy modal */
body.privacy-modal-open { overflow: hidden; }
.privacy-modal {
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	position: fixed;
	inset: 0;
	z-index: 20000;
	padding: 32px;
	background: rgba(1,20,21,.76);
	opacity: 0;
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
	transition: opacity .24s ease, visibility .24s ease;
}
.privacy-modal.is-open {
	visibility: visible;
	opacity: 1;
}
.privacy-modal-panel {
	display: grid;
	grid-template-rows: auto minmax(0,1fr) auto;
	box-sizing: border-box;
	width: min(76vw,1180px);
	height: min(82vh,860px);
	position: relative;
	background: #f5f3ed;
	box-shadow: 0 28px 80px rgba(0,0,0,.35);
	overflow: hidden;
	transform: translateY(16px) scale(.985);
	transition: transform .24s ease;
}
.privacy-modal.is-open .privacy-modal-panel { transform: none; }
.privacy-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	min-height: 82px;
	padding: 17px 26px 16px 30px;
	position: relative;
	background: #04494a;
	color: #fff;
}
.privacy-modal-header::before {
	content: '';
	width: 64px;
	height: 3px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #ea5827;
}
.privacy-modal-header small {
	display: block;
	color: #ea5827;
	font-size: .5625rem;
	font-weight: 500;
	letter-spacing: .24em;
}
.privacy-modal-header h2 {
	margin: 7px 0 0;
	color: #fff;
	font-size: 1.35rem;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: .08em;
}
.privacy-modal-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(255,255,255,.22);
	background: transparent;
	color: #fff;
	font: inherit;
	font-size: 1.65rem;
	font-weight: 200;
	line-height: 1;
	cursor: pointer;
	transition: border-color .2s, background .2s, transform .2s;
}
.privacy-modal-close:hover {
	border-color: #ea5827;
	background: #ea5827;
	transform: rotate(90deg);
}
.privacy-modal-content {
	box-sizing: border-box;
	padding: 28px 32px 34px;
	background: #f5f3ed;
	overflow-y: auto;
	overscroll-behavior: contain;
	scroll-behavior: smooth;
}
.privacy-modal-content:focus { outline: none; }
.privacy-modal-loading,
.privacy-modal-error {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 14px;
	min-height: 280px;
	color: #687574;
	font-size: .8125rem;
	text-align: center;
}
.privacy-modal-loading i {
	width: 28px;
	height: 28px;
	border: 2px solid rgba(4,73,74,.18);
	border-top-color: #ea5827;
	border-radius: 50%;
	animation: privacy-modal-spin .7s linear infinite;
}
@keyframes privacy-modal-spin { to { transform: rotate(360deg); } }
.privacy-modal-error strong { color: #04494a; font-size: 1rem; }
.privacy-modal-error p { margin: 0; }
.privacy-modal-content .privacy-document {
	max-width: none;
	margin: 0;
	color: #435252;
}
.privacy-modal-content .privacy-notice,
.privacy-modal-content .privacy-introduction,
.privacy-modal-content .privacy-policy-section {
	box-sizing: border-box;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
	border: 1px solid rgba(4,73,74,.14);
	background: #fff;
	color: #536261;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}
.privacy-modal-content .privacy-notice {
	padding: 22px 25px 20px;
	position: relative;
	border-color: rgba(234,88,39,.3);
	background: #fbf0eb;
}
.privacy-modal-content .privacy-notice::before {
	content: '';
	width: 52px;
	height: 3px;
	position: absolute;
	left: 0;
	top: 0;
	background: #ea5827;
}
.privacy-modal-content .privacy-notice > strong {
	display: block;
	margin-bottom: 10px;
	color: #ea5827;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: .08em;
}
.privacy-modal-content .privacy-notice p,
.privacy-modal-content .privacy-introduction p,
.privacy-modal-content .privacy-policy-section p {
	margin: 7px 0 0;
	color: inherit !important;
	font-size: .8125rem;
	line-height: 1.85;
	text-align: justify;
}
.privacy-modal-content .privacy-notice b { color: #304443; font-weight: 600; }
.privacy-modal-content .privacy-introduction {
	margin-top: 12px;
	padding: 19px 25px;
}
.privacy-modal-content .privacy-introduction h2 {
	margin: 0 0 7px;
	color: #04494a;
	font-size: 1rem;
	font-weight: 600;
}
.privacy-modal-content .privacy-policy-layout {
	display: grid;
	grid-template-columns: 220px minmax(0,1fr);
	align-items: start;
	gap: 16px;
	margin-top: 18px;
}
.privacy-modal-content .privacy-toc {
	display: grid;
	padding: 17px 14px;
	position: sticky;
	top: 0;
	border: 1px solid rgba(4,73,74,.14);
	background: #ebe9e2;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}
.privacy-modal-content .privacy-toc > strong {
	margin-bottom: 9px;
	padding: 0 4px 11px;
	border-bottom: 1px solid rgba(4,73,74,.12);
	color: #04494a;
	font-size: .75rem;
	font-weight: 600;
	line-height: 1.5;
}
.privacy-modal-content .privacy-toc a {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 7px 4px;
	color: #647170;
	font-size: .6875rem;
	line-height: 1.45;
}
.privacy-modal-content .privacy-toc a:hover { color: #ea5827; }
.privacy-modal-content .privacy-toc i {
	color: #ea5827;
	font-size: .5625rem;
	font-style: normal;
}
.privacy-modal-content .privacy-article {
	display: grid;
	gap: 12px;
}
.privacy-modal-content .privacy-policy-section {
	padding: 24px 26px 25px;
	position: relative;
	scroll-margin-top: 18px;
}
.privacy-modal-content .privacy-policy-section > h2 {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(4,73,74,.11);
	color: #04494a;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.4;
}
.privacy-modal-content .privacy-policy-section > h2 span {
	color: #ea5827;
	font-size: .625rem;
	letter-spacing: .05em;
}
.privacy-modal-content .privacy-policy-section h3 {
	margin: 17px 0 6px;
	color: #304443;
	font-size: .875rem;
	font-weight: 600;
	line-height: 1.6;
}
.privacy-modal-content .privacy-contact-phone {
	display: inline-block;
	margin: 10px 0 3px;
	color: #ea5827;
	font-size: 1rem;
	font-weight: 600;
}
.privacy-modal-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	box-sizing: border-box;
	min-height: 66px;
	padding: 11px 25px 11px 30px;
	border-top: 1px solid rgba(4,73,74,.13);
	background: #eeece5;
}
.privacy-modal-actions > span {
	color: #7c8583;
	font-size: .6875rem;
}
.privacy-modal-actions > div {
	display: flex;
	align-items: center;
	gap: 10px;
}
.privacy-modal-external,
.privacy-modal-agree {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: 40px;
	padding: 0 18px;
	font: inherit;
	font-size: .75rem;
	cursor: pointer;
}
.privacy-modal-external {
	border: 1px solid rgba(4,73,74,.25);
	color: #04494a;
}
.privacy-modal-agree {
	min-width: 138px;
	border: 1px solid #ea5827;
	background: #ea5827;
	color: #fff;
}
.privacy-modal-external:hover { border-color: #04494a; }
.privacy-modal-agree:hover { background: #d94e20; }
@media (max-width: 1100px) {
	.privacy-modal { padding: 22px; }
	.privacy-modal-panel { width: 90vw; height: 86vh; }
	.privacy-modal-content { padding-right: 24px; padding-left: 24px; }
	.privacy-modal-content .privacy-policy-layout { grid-template-columns: 190px minmax(0,1fr); }
}

.logo a {
	display: block;
	width: 100%;
	height: 100%;
}
.logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
}
.logo .svg {
	display: block;
	height: 100%;
	width: auto;
}
.logo .svg path {
	fill: #fff;
}
.navi {
	float: right;
	margin-right: 12%;
}
.navi a {
	display: block;
	text-decoration: none;
}
.navi>li {
	position: relative;
	float: left;
	position: relative;
}
.navi>li>a {
	font-size: 1rem;
	line-height: 60px;
	padding: 5px 20px 0 20px;
	color: #fff;
}
.navi>li>a:hover {
	font-weight: bold;
}
.navi>li.on>a {
	font-weight: bold;
}
.navi>li>ul {
	width: 100px;
	position: absolute;
	left: calc(50% - 50px);
	top: 100%;
	z-index: 10;
	height: auto;
	overflow: hidden;
	background: none;
	-moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.10);
	-webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.10);
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.10);
}
.navi>li>ul>li>a {
	height: 0;
	line-height: 40px;
	font-size: 0.75rem;
	text-align: center;
	opacity: 0;
}
.navi>li:hover>ul {
	padding: 15px 0;
	background: #e8e8e8;
}
.navi>li:hover>ul>li>a {
	height: 40px;
	opacity: 1;
}
.navi>li>ul>li>a:hover {
	background: url(../images/mmexport1749522409745.png) no-repeat center center;
	background-size: cover;
    color: #fff;
}

.seekbox {
	height: 40px;
	overflow: hidden;
	float: right;
	margin: 36px 10% 0 20px;
	font-size: 0;
	text-align: left;
}
.seekbox.on {
	margin-right: 6%;
}
.seekbox form {
	display: inline-block;
}
.seekbox a {
	display: inline-block;
	vertical-align: top;
	padding: 0 5px;
	font-size: 1.125rem;
	color: #fff;
	line-height: 30px;
	border-radius: 20px;
	margin: 0 20px;
	font-family: Arial, Helvetica, sans-serif;
}
.seekbox p {
	display: inline-block;
	vertical-align: top;
	width: 30px;
	height: 30px;
	overflow: hidden;
	cursor: pointer;
}
.seekbox p .svg {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
	margin: 4px;
}
.seekbox p .svg path {
	fill: #fff;
}
.seekbox input {
	display: inline-block;
	vertical-align: top;
	color: #fff;
	font-size: 0.875rem;
}
.seekbox input.inp {
	width: 0;
	height: 29px;
	line-height: 100%;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, .7);
	background: none;
}
.seekbox.on .inp {
	width: 150px;
}

.head.out {
    height: 70px;
	background: #fff;
	-moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.head.out .logo {
	height: 25px;
	margin-top: 6.5px;
}
.head.out .logo .svg path {
	fill: #006550;
}
.head.out .navi>li>a {
	color: #333;
}
.head.out .seekbox {
	margin-top: 20px;
}
.head.out .seekbox a {
	color: #333;
}
.head.out .seekbox p .svg path {
	fill: #666;
}
.head.out .seekbox input {
	color: #666;
}
.head.out .seekbox input.inp {
	border-bottom: 1px solid #999;
}

section {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
.bkbox {
	width: 80%;
	margin: 5vw auto 0 auto;
}
img.bgp {
	display: block;
	width: 100%;
	height: auto;
}
.noban {
    padding-top: 5vw;
}

/* 通用轮播 */

.dalislide {
	width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
.slidep {
    width: 100%;
    height: 100%;
    position: relative;
	overflow: hidden;
}
.slidep li {
    width: 100%;
    height: auto;
    position: absolute;
    overflow: hidden;
    left: 0;
    top: 0;
    z-index: 0;
    display: none;
}
/* 第一张图静态定位撑开盒子高度 */
.slidep li.static {
	position: static;
	display: block;
}
.slidep li img, .slidep li video {
    width: 100%;
    height: auto;
    display: block;
}
/* 需要图片自动裁切的html端给slidep加上cover类，不加就是自适应宽高比例 */
.slidep.cover li {
	height: 100%;
}
.slidep.cover li img, .slidep.cover li video {
	height: 100%;
	object-fit: cover;
}

.slideb {
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 10;
	bottom: 20px;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.slideb em {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0 5px;
	background: rgba(255, 255, 255, .7);
	cursor: pointer;
	border-radius: 50%;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.slideb em.on {
	background: rgba(0, 0, 0, 1);
}
.slideleft,.slideright {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	margin-top: -30px;
	opacity: .5;
	z-index: 100;
	cursor: pointer;
	transition: All 0.3s ease-in-out;
	-webkit-transition: All 0.3s ease-in-out;
	-moz-transition: All 0.3s ease-in-out;
	-o-transition: All 0.3s ease-in-out;
}
.slideleft {
	left: -50px;
	background: url(../images/aleft.png) center no-repeat;
}
.slideright {
	right: -50px;
	background: url(../images/aright.png) center no-repeat;
}
.dalislide:hover .slideleft {
	left: 50px;
	opacity: .6;
}
.dalislide:hover .slideright {
	left: calc(100% - 100px);
	opacity: .6;
}
.dalislide:hover .slideleft:hover, .dalislide:hover .slideright:hover {
	opacity: 1;
}

/* 通用滚动 */
.scrollbox {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
.scrollu {
    width: 100%;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
}

/* 独立视频，dalislide轮播内用playbtn，其他用vodbtn */

.playbtn, .vodbtn {
    width: 70px;
    height: 70px;
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -35px 0 0 -35px;
    z-index: 20;
    opacity: .7;
    background: url(../images/play.png) center no-repeat;
	background-size: contain;
}
.playbtn:hover, .vodbtn:hover {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    opacity: 1;
}
.playbox, .vodbox {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
    display: none;
    background: #000;
    overflow: hidden;
}
.playbox video, .vodbox video {
    width: 100%;
    height: 100%;
}

.playbox img.closevod, .vodbox img.vodclose {
    display: block;
    width: 37px;
    height: 37px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 200;
}

/* 侧边 */
.rightbar {
	width: 50px;
	height: auto;
	overflow: hidden;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 100;
}

.rightbar img {
	display: block;
	width: 50px;
	height: 50px;
	cursor: pointer;
}


/* 页码 */
.pagebox {
	padding: 4vw 0;
}

.pagination {
	height: auto;
	padding: 10px 0px;
	overflow: hidden;
	text-align: center;
	font-size: 0;
}

.pagination a, .pagination p, .pagination span {
	display: inline-block;
	margin-right: 3px;
	padding: 0 15px;
	border: 1px #f0f0f0 solid;
	text-decoration: none;
	color: #808080;
	font-size: 1rem;
	line-height: 40px;
	border-radius: 3px;
}
.pagination a#pagefirst, .pagination a#pagelast {
	display: none;
}

.pagination span {
	cursor: pointer;
}

.pagination p.pageGo {
	border-left: 0;
	cursor: pointer;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding-left: 5px;
	display: none;
}

.pagination input {
	/* display: inline-block; */
	display: none;
	padding: 0;
	border: 1px solid #ddd;
	border-right: 0;
	background: #fff;
	color: #808080;
	font-size: 14px;
	line-height: 40px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	width: 40px;
	text-align: center;
}

.pagination a:hover {
	border: 1px #abb9c9 solid;
}

.pagination a.cur, .pagination p.cur {
	border: 1px solid #005636;
	color: #005636;
	font-weight: bold;
}

.pagination p.pageRemark {
	display: none;
	margin: 10px auto 0 auto;
	border: none;
	background: none;
	color: #666;
}

.pagination p.pageEllipsis {
	border: none;
	background: none;
	color: #808080;
	padding: 0 12px;
}

.ckbox_remove {
	width: 90px;
	line-height: 26px;
	background: rgba(16, 140, 255, 0.6);
	color: #fff;
	font-size: 14px;
	text-align: center;
	border-radius: 15px;
	position: absolute;
	right: 200px;
	bottom: 10px;
	cursor: pointer;
}

footer {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.frow1 {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: start;
	height: auto;
	overflow: hidden;
	padding: 5vw 10% 2vw 10%;
	background: #f4f4f4;
}
.frow2 {
	height: auto;
	overflow: hidden;
	text-align: center;
	font-size: 0.875rem;
	line-height: 150%;
	padding: 10px 0;
	color: #999;
}
.frow2 a {
	color: #999;
}
.fadr {
	float: none;
	justify-self: start;
	font-size: 0.75rem;
	line-height: 180%;
}
.fnavs {
	display: flex;
	justify-content: center;
	justify-self: center;
	align-items: flex-start;
	float: none;
	text-align: center;
}
.fnav {
	float: none;
	min-width: 120px;
	margin: 0 2.5vw;
	height: auto;
	overflow: hidden;
	text-align: center;
}
.fnav span {
	display: block;
	line-height: 30px;
	font-size: 0.875rem;
}
.fnav span:nth-child(1) {
	margin-bottom: 10px;
	font-weight: bold;
}
.fnav span.ftel {
	color: #aaa;
	font-weight: bold;
	padding-left: 0;
}
.fnav span img {
	display: inline-block;
	vertical-align: middle;
	height: 20px;
	margin-right: 5px;
}
.fnav span a {
	display: inline-block;
	color: #999;
	vertical-align: middle;
}
.fnav span a:hover {
	color: #333;
}
.flogo {
	float: right;
	height: 3.5vw;
	margin-top: 30px;
}
.flogo .svg {
	display: block;
	height: 100%;
	width: auto;
}

.fico {
	height: auto;
	font-size: 0;
	margin-top: 3vw;
	margin-left: 5vw;
}
.ficop {
	width: 35px;
	height: 35px;
	display: inline-block;
	position: relative;
	vertical-align: top;
	margin: 0 10px;
}
.ficop img.ico, .ficop img.ico2 {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.ficop img.ico2 {
	display: none;
}
.ficop:hover img.ico {
	display: none;
}
.ficop:hover img.ico2 {
	display: block;
}
.ficop p {
	display: none;
	width: 100px;
	height: 100px;
	padding: 5px;
	background: #fff;
	position: absolute;
	left: 50%;
	margin-left: -60px;
	top: -120px;
	z-index: 10;
	-moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}
.ficop:hover p {
	display: block;
}
.ficop p img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.ficop p::after {
	content: '';
	width: 0;
    height: 0;
	position: absolute;
	left: 50%;
	margin-left: -3px;
	top: 100%;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}
.logo2 {
	width: min(230px, 80%);
	height: 10%;
	float: none;
	justify-self: end;
	overflow: hidden;
}

@media screen and (max-width: 1680px) {

	body, html {
		font-size: 15px;
	}
	.logo {
		height: 25px;
		margin: 0.5% 0 0 8%;
	}
	.head.out .logo {
		height: 22px;
		margin: 0.5% 0 0 8%;
	}
	.navi>li>a {
		line-height: 50px;
	}
	.seekbox {
		margin: 30px 8% 0 20px;
	}
	
}

@media screen and (max-width: 1440px) {

	body, html {
		font-size: 14px;
	}
	.logo {
		height: 20px;
		margin: 0.5% 0 0 8%;
	}
	.head.out .logo {
		height: 20px;
		margin: 0.5% 0 0 8%;
	}
	.navi>li>a {
		line-height: 40px;
	}
	.seekbox {
	}
}

@media screen and (max-width: 1280px) {
	body, html {
		font-size: 12px;
	}
}

/* Match the reference site's desktop header geometry. */
.head {
	display: flex;
	align-items: flex-start;
	box-sizing: border-box;
	padding-right: 10%;
	padding-left: 10%;
}
.head.head .logo,
.head.out .logo {
	flex: 0 0 400px;
	float: none;
	width: 400px;
	height: 57px;
	margin: 6.5px 0 0;
}
.head .navi {
	flex: 0 0 auto;
	float: none;
	margin-left: auto;
	margin-right: 0;
}

/* Notebook layout: preserve the reference proportions without crowding. */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
	.head.head .logo,
	.head.out .logo {
		flex-basis: 320px;
		width: 320px;
		height: 46px;
		margin-top: 12px;
	}
	.navi>li>a,
	.head.out .navi>li>a {
		padding-right: 12px;
		padding-left: 12px;
		font-size: 0.9375rem;
	}
}

/* Unified desktop pagination */
.pagebox {
	padding: clamp(42px, 4vw, 72px) 0;
}
.pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	overflow: visible;
	padding: 0;
}
.pagination>span:not(.page-status) {
	display: contents;
}
.pagination .page-status {
	order: 2;
	flex: 0 0 100%;
	margin: 8px 0 0;
	padding: 0;
	border: 0;
	color: #999;
	font-size: 0.75rem;
	line-height: 1.5;
}
.pagination a,
.pagination p {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	margin: 0;
	padding: 0 14px;
	border: 1px solid #e2e7e5;
	border-radius: 6px;
	background: #fff;
	color: #555;
	font-size: 0.875rem;
	line-height: 1;
	transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}
.pagination a:hover {
	border-color: #006550;
	background: #f3f8f7;
	color: #006550;
}
.pagination .page-num-current,
.pagination a.cur,
.pagination p.cur {
	border-color: #006550;
	background: #006550;
	color: #fff;
	font-weight: 600;
}
.pagination .page-pre a[href="javascript:;"],
.pagination .page-next a[href="javascript:;"] {
	pointer-events: none;
	border-color: #edf0ef;
	background: #f7f8f8;
	color: #bbb;
}
