@charset "utf-8";
/* ====================公共样式========================= */
/* 头部 */
.Header-wrapper {
	width: 100%;
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	user-select: none;
	transition: background 0.4s ease;
	background: transparent;
}
.Header-wrapper .contain-1400 {
	width: 100%;
	padding-left: 2%;
}
.Header-wrapper.sub-show {
	background-color: #fff;
	border-bottom: 1px solid #e0e0e0;
}
.Header-wrapper.show {
	background-color: #fff;
}
.Header-wrapper.white {
	background-color: #fff;
	transform: translateY(95px);
	box-shadow: 0px 0 10px rgba(0, 0, 0, 0.3);
}
.accordion-click {
	display: flex;
	justify-content: center;
	align-items: center;
	user-select: none;
	float: right;
	width: 90px;
	height: 90px;
	text-align: center;
	background: #ff7d41;
	z-index: 999;
	position: relative;
	cursor: pointer;
}
.accordion-click span {
	width: 32px;
	height: 2px;
	background: #fff;
	display: block;
	position: relative;
	transition: all 0.2s linear 0.2s;
}
.accordion-click span:before,
.accordion-click span:after {
	content: '';
	position: absolute;
	height: 2px;
	background: #fff;
	display: block;
	left: 0;
	width: 100%;
	transition: all 0.2s linear;
}
.accordion-click span:before {
	top: -9px;
}
.accordion-click span:after {
	top: 9px;
}
.accordion-click:hover span:before,
.accordion-click:hover span:after {
	top: 0;
}
.accordion-click.active span {
	background: transparent;
	transition: all 0s ease;
}
.accordion-click.active span:before {
	transform: rotate(45deg);
	top: 0 !important;
}
.accordion-click.active span:after {
	transform: rotate(-45deg);
	top: 0 !important;
}

/* 下拉菜单 */
.accordion-drop-shade {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	left: 0;
	top: 0;
	position: fixed;
	z-index: 991;
	display: none;
}
.accordion-drop {
	overflow-y: auto;
	height: calc(100% - 90px);
	position: fixed;
	top: 90px;
	right: 0;
	transform: translateX(100%);
	width: 50%;
	z-index: 999;
	background: #fff;
	border-top: 1px solid #e0e0e0;
	-webkit-overflow-scrolling: touch;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: all 0.8s ease;
}
.accordion-drop::-webkit-scrollbar {
	width: 6px;
}
.accordion-drop::-webkit-scrollbar-thumb {
	background: #ff7d41;
}
.accordion-drop::-webkit-scrollbar-track {
	background: #f1f1f1;
}
.accordion-drop {
	scrollbar-color: #ff7d41 #f1f1f1;
	scrollbar-width: thin;
}
.accordion-drop {
	scrollbar-face-color: #ff7d41;
	scrollbar-shadow-color: #ff7d41;
	scrollbar-arrow-color: #000;
	scrollbar-track-color: #f1f1f1;
}
.accordion-drop .contain-1400 {
	width: 100%;
	padding: 0 140px;
	position: relative;
	z-index: 10;
}
.accordion-drop.active {
	transform: translateX(0);
}
.accordion-drop .accordion-drop-column {
	margin: 60px 0 0;
}
.accordion-drop .accordion-drop-column:last-child {
	margin-bottom: 60px;
}
.accordion-drop .accordion-drop-column .headline {
	font-size: 24px;
	font-weight: bold;
	color: #000;
	transition: all 0.4s ease;
}
.accordion-drop .accordion-drop-column > .accordion-drop-menu {
	padding: 30px 0 0;
	margin-top: 30px;
	border-top: 1px solid #e0e0e0;
}
.accordion-drop .accordion-drop-column > .accordion-drop-menu:after {
	content: '';
	display: block;
	clear: both;
}
.accordion-drop .accordion-drop-column > .accordion-drop-menu .menuT {
	float: left;
	width: 33.3333%;
}
.accordion-drop .headline {
	display: block;
	padding-left: 12px;
	position: relative;
	line-height: 1;
}
.accordion-drop .headline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background: #ff7d41;
}
.accordion-drop .accordion-drop-column > .accordion-drop-menu .menuT > a {
	font-size: 18px;
	line-height: 1.3;
	font-weight: bold;
	color: #777;
	transition: all 0.4s ease;
}
.accordion-drop
	.accordion-drop-column
	> .accordion-drop-menu
	.menuT
	.submenuT
	a {
	display: block;
	margin: 18px 0;
	line-height: 1.3;
	font-size: 14px;
	color: #747474;
	transition: all 0.4s ease;
}
.accordion-drop
	.accordion-drop-column
	> .accordion-drop-menu
	.menuT
	.submenuT
	a:last-child {
	margin-bottom: 0;
}
.accordion-drop .accordion-drop-column > .accordion-drop-menu .menuT_inner {
	position: relative;
	float: left;
	width: 100%;
	overflow: hidden;
	padding-top: 30px;
}
.accordion-drop .accordion-drop-column .headline.active {
	color: #fd7f43;
}
.accordion-drop
	.accordion-drop-column
	> .accordion-drop-menu
	.menuT
	> a.active {
	color: #fd7f43;
}
.accordion-drop
	.accordion-drop-column
	> .accordion-drop-menu
	.menuT
	.submenuT
	a.active {
	color: #000;
	font-weight: bold;
}
.accordion-drop .accordion-drop-column:hover .headline {
	color: #fd7f43;
} /* hover */
.accordion-drop .accordion-drop-column > .accordion-drop-menu .menuT:hover > a {
	color: #fd7f43;
}
.accordion-drop
	.accordion-drop-column
	> .accordion-drop-menu
	.submenuT
	a:hover {
	color: #ff7d41;
}

.Header-logo {
	float: left;
	height: 90px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 9999;
}
.Header-logo img {
	height: auto;
	position: absolute;
	transition: opacity 0.4s ease;
	max-width: max-content;
}
.Header-logo .Header-logo-white {
	opacity: 1;
}
.Header-logo .Header-logo-blue {
	opacity: 0;
}
.Header-wrapper.white .Header-logo-white {
	opacity: 0;
}
.Header-wrapper.white .Header-logo-blue {
	opacity: 1;
}
.Header-wrapper.show .Header-logo-white {
	opacity: 0;
}
.Header-wrapper.show .Header-logo-blue {
	opacity: 1;
}
.Header-wrapper.sub-show .Header-logo-white {
	opacity: 0;
}
.Header-wrapper.sub-show .Header-logo-blue {
	opacity: 1;
}
body.onSearch .Header-logo .Header-logo-white {
	opacity: 0;
}
body.onSearch .Header-logo .Header-logo-blue {
	opacity: 1;
}

.Header-search {
	float: right;
	margin-right: 0px;
}
.Header-wrapper.show .Header-search {
	display: none;
}
.Header-search-click {
	width: 90px;
	height: 90px;
	cursor: pointer;
	background: #ff7d41 url('../images/searchw.svg') no-repeat center / 26px auto;
	position: relative;
	z-index: 999;
}
.Header-wrapper.white .Header-search-click {
	background: url('../images/search.svg') no-repeat center / 26px auto;
}
.Header-search-click.active {
	background: url('../images/close.svg') no-repeat center/20px auto;
}
.Header-search-item {
	display: none;
	position: absolute;
	width: 100%;
	height: 90px;
	line-height: 90px;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 99;
	text-align: right;
}
.Header-search-item .contain {
	padding-right: 0;
}
.Header-search-item.active {
	display: block;
}
.Header-search-item input,
.Header-search-item button {
	display: inline-block;
	vertical-align: middle;
}
.Header-search-item input[type='text'] {
	width: 0px;
	height: 40px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 16px;
	color: #747474;
}
.Header-search-item.active input[type='text'] {
	animation: HeaderSearch 0.8s ease both;
}
@keyframes HeaderSearch {
	0% {
		width: 0;
	}
	100% {
		width: 520px;
	}
}
.Header-search-item button {
	width: 50px;
	height: 40px;
	background: url('../images/search.svg') no-repeat center / 26px auto;
	cursor: pointer;
	margin-right: 0;
}

.Header-navbar {
	font-size: 0;
	width: 100%;
	/* text-align: center; */
	margin-left: 600px;
}
body.PC .Header-navbar {
	display: block;
}
.Header-wrapper.show .Header-navbar {
	display: none;
}
.Header-navbar li {
	padding: 0 34px;
	position: relative;
	z-index: 9;
	display: inline-block;
}
.Header-navbar li:last-child {
	margin-right: 0;
}
.Header-navbar li:first-child {
	margin-left: 0;
}
.Header-menu {
	position: relative;
	height: 90px;
	display: flex;
	align-items: center;
	font-size: 18px;
	color: #fff;
	transition: all 0.4s ease;
	font-weight: 600;
}
.Header-wrapper.white .Header-menu {
	color: #000;
}
.Header-wrapper.sub-show .Header-menu {
	color: #000;
}
.Header-menu::before {
	content: '';
	width: 0;
	left: 0;
	opacity: 0;
	height: 4px;
	position: absolute;
	bottom: 0;
	background: #fd7f43;
	transition: all 0.4s ease;
}
.Header-navbar li:hover .Header-menu,
.Header-navbar li.active .Header-menu {
	color: #fd7f43;
}
.Header-navbar li.active .Header-menu::before {
	opacity: 1;
}
.Header-navbar li:hover .Header-menu::before,
.Header-navbar li.active .Header-menu::before {
	width: 100%;
	right: auto;
	left: 0;
	opacity: 1;
}
.Header-arrow {
	display: none;
}
.Header-drop {
	visibility: hidden;
	position: absolute;
	top: 90px;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: all 0.4s ease;
	padding: 2px 0;
}
.Header-wrapper.sub-show .Header-drop {
	visibility: visible;
	opacity: 1;
	transition: all 1s ease;
}
.Header-navbar li.on .Header-drop {
	background-color: #f5f5f5;
}
.Header-drop a {
	display: block;
	height: 54px;
	line-height: 54px;
	font-size: 14px;
	color: #666;
	text-align: center;
	transition: all 0.4s ease;
}
.Header-drop a.active,
.Header-drop a:hover {
	background: #fd7f43;
	color: #fff;
}
.Header-dropBg {
	position: absolute;
	top: 89px;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 0;
	background: #fff;
	transition: all 0.4s ease;
}
.Header-wrapper.sub-show .Header-dropBg {
	height: 400px;
	border-top: 1px solid #e0e0e0;
}

/* 底部 */
.Footer-wrapper {
	width: 100%;
	position: relative;
	z-index: 9;
}
.Footer-items {
	width: 100%;
	padding: 94px 0 80px;
	background-color: #1e2337;
}
.Footer-info {
	float: left;
	max-width: 100%; /* width:82px; */
}
.Footer-info a {
	display: inline-block;
}
.Footer-info a img {
	max-width: 100%;
	object-fit: cover;
}
.Footer-form {
	float: right;
	width: 280px;
}
.Footer-form h6 {
	font-size: 14px;
	color: #fff;
	line-height: 1;
	margin-bottom: 14px;
}
.Footer-form .Footer-from-phone {
	font-size: 28px;
	color: #fff;
	font-weight: 700;
	line-height: 1;
}
.Footer-from-cont {
	width: 100%;
	margin-top: 24px;
}
.Footer-from-cont p {
	font-size: 14px;
	color: #fff;
	line-height: 32px;
}
.Footer-form-link {
	width: 100%;
	font-size: 0;
	display: flex;
	flex-direction: row;
	margin-top: 18px;
}
.Footer-form-link a {
	display: flex;
	margin-right: 18px;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: transparent;
	transition: all 0.4s ease;
	position: relative;
}
.Footer-link-img {
	display: none;
	width: 152px;
	height: 152px;
	padding: 6px;
	position: absolute;
	bottom: 36px;
	left: 50%;
	margin-left: -76px;
	background: #fff;
	border-radius: 4px;
}
.Footer-link-img::after {
	content: '';
	display: block;
	width: 0px;
	height: 0px;
	border: 8px solid transparent;
	border-top-color: #fff;
	position: absolute;
	bottom: -16px;
	left: 50%;
	margin-left: -8px;
}
.Footer-link-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.Footer-form-link a:hover .Footer-link-img {
	display: block;
	animation: FooterCode 0.6s ease-in-out both;
}
@keyframes FooterCode {
	0% {
		transform: translateY(-14px);
	}
	100% {
		transform: translateY(0);
	}
}

.Footer-navbar {
	width: 950px;
	float: left;
	overflow: hidden;
	user-select: none;
	margin-left: 60px;
}
.Footer-navbar ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.Footer-navbar li {
	display: inline-block;
	margin-left: 60px;
}
.Footer-navbar li:first-child {
	margin-left: 0;
}
.Footer-menu {
	font-size: 17px;
	color: #fff;
	font-weight: 700;
	display: block;
}
.Footer-drop {
	width: 100%;
	margin-top: 12px;
}
body.PC .Footer-drop {
	display: block !important;
}
.Footer-drop a {
	display: block;
	font-size: 14px;
	color: #e1e1e1;
	line-height: 1;
	padding: 7px 0;
	transition: all 0.4s ease;
}
.Footer-drop a:hover {
	color: #fd7f43;
}
.Footer-copyright {
	width: 100%;
	padding: 40px 0;
	background-color: #191e32;
}
.copy-cont {
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.copy-cont h6,
.Footer-copyright p {
	color: #fff;
	line-height: 18px;
}
.copy-cont h6 {
	font-size: 14px;
	color: #b3b3b3;
}

.copy-drop {
	display: none;
}
.copy-drop a {
	display: block;
	font-size: 14px;
	color: #fff;
	line-height: 1;
	padding: 7px 0;
	transition: all 0.4s ease;
}
.Footer-copyright .backTop {
	font-size: 14px;
	float: right;
	padding-right: 62px;
	position: relative;
	font-size: 13px;
	color: #b3b3b3;
	cursor: pointer;
}
.Footer-copyright .backTop::after {
	content: '';
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid #fff;
	background: url('../images/back_top.svg') no-repeat center/20px auto;
	position: absolute;
	top: 0;
	right: 0;
	margin-top: -14px;
}

/* 中间+共用部分 */

.Container-wrapper {
	width: 100%;
}
.contain-1600,
.contain-1400,
.contain-1000,
.contain {
	margin: 0 auto;
}
.contain-1600 {
	width: 1600px;
}
.contain-1400 {
	width: 1400px;
}
.contain {
	width: 1280px;
}
.contain-1000 {
	width: 1000px;
}
.col {
	min-height: 1px;
	padding-left: 8px;
	padding-right: 8px;
	position: relative;
	max-width: 100%;
}
.backTop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
	width: 1.5%;
	opacity: 1;
	width: 25px;
	height: 26px;
	cursor: pointer;
	background: url(../images/backTop.png) no-repeat bottom center/cover;
}

/* page common */
.com-banner {
	width: 100%;
	height: 500px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
.com-banner .contain-1400 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: relative;
}
.com-banner .com-line {
	display: none;
	width: 60px;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.4);
}
.com-banner h2 {
	font-size: 50px;
	color: #fff;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 28px;
}
.com-banner p {
	font-size: 18px;
	color: #fff;
}
.com-menu {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 70px;
	background-color: rgba(0, 0, 0, 0.3);
}
.com-nav {
	display: flex;
	width: 100%;
}
.com-nav li {
	display: flex;
	justify-content: center;
	align-items: center;
}
.com-nav li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: relative;
}
.com-nav li a::after {
	content: '';
	width: 1px;
	height: 14px;
	background-color: rgba(99, 111, 151, 0.2);
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -7px;
}
.com-nav li:first-child a::before {
	content: '';
	width: 1px;
	height: 14px;
	background-color: rgba(99, 111, 151, 0.2);
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -7px;
}
.com-nav li a i {
	display: inline-block;
	width: 20px;
	height: 18px;
	background: url('../images/logo_icon.png') no-repeat center;
	margin-right: 3px;
	opacity: 0;
	transition: all 0.4s ease;
}
.com-nav li a span {
	font-size: 18px;
	color: #fff;
	transition: color 0.4s ease;
}
.com-nav.com-nav2 li {
	width: 50%;
}
.com-nav.com-nav3 li {
	width: 33.333%;
}
.com-nav.com-nav4 li {
	width: 25%;
}
.com-nav li a:hover span {
	color: #ff7d41;
}
.com-nav li.active a {
	/* cursor: default;
	pointer-events: none; */
}
.com-nav li.active a i {
	opacity: 1;
}
.com-nav li.active span {
	color: #ff7d41 !important;
}

.common-title {
	width: 100%;
	text-align: center;
}
.common-title h2 {
	font-size: 48px;
	color: #fff;
	font-weight: 700;
}
.common-title.black h2 {
	color: #000;
}
.common-cont {
	width: 100%;
	padding: 0 110px;
	margin-top: 32px;
}
.common-cont p {
	font-size: 18px;
	color: #999;
	line-height: 32px;
}

.common-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 155px;
	height: 40px;
	border-radius: 20px;
	font-size: 16px;
	color: #fff;
	transition: all 0.4s ease;
}
