* {
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;

}

body {
	background: url("../img/1699194573486735.jpg") center top no-repeat rgb(16, 19, 24);
	font-size: 16px;
}

/* 自定义滚动条样式 */
/* 适用于WebKit内核浏览器 */
::-webkit-scrollbar {
	width: 8px;
	/* 滚动条宽度 */
}

::-webkit-scrollbar-track {
	background: #cccccc;
	/* 滚动条轨道颜色 */
}

::-webkit-scrollbar-thumb {
	background: #de8d00;
	/* 滚动条滑块颜色 */
}

::-webkit-scrollbar-thumb:hover {
	background: #de8d00;
	/* 滚动条滑块hover颜色 */
}

/* 适用于Firefox */
body {
	scrollbar-width: thin;
	/* 设置滚动条宽度 */
	scrollbar-color: #de8d00 #cccccc;
	/* 设置滚动条滑块颜色和轨道颜色 */
}

.header {
	background: #171a21;
}

.nav {
	width: 1400px;
	margin: 0 auto;
	height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logoImg {
	height: 78px;
}

.nav ul {
	display: flex;
}

.nav ul li a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	margin: 0 20px;
	font-size: 18px;
	height: 80px;
}

.nav ul li a span {
	opacity: 0.8;
	transition: all 0.3s;
}

.nav ul li a:hover span {
	opacity: 1;
}

.nav ul li img {
	width: 40px;
	height: 40px;
	margin-right: 8px;
	border-radius: 50%;
	opacity: 0.9;
	transition: all 0.3s;
}

.nav ul li a:hover img {
	opacity: 1;
}

.nav ul li a::after {
	content: "";
	position: absolute;
	width: 0px;
	left: 50px;
	bottom: 0;
	background: #de8d00;
	height: 2px;
	transition: all 0.3s;
}

.nav ul li a:hover::after {
	width: calc(100% - 50px);
}



.main {
	width: 1400px;
	margin: 0 auto;
}

.tabBar {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 20px;
}

.tabBar div {
	width: 147px;
	height: 134px;
	border: 2px solid #7a7a7a;
	border-radius: 6px;
	position: relative;
	overflow: hidden;
	margin-right: 30px;
	cursor: pointer;
}

.tabBar div img {
	height: 84px;
	width: auto;
	transform: scale(1);
	transition: all 1s;
}

.tabBar div p {
	position: absolute;
	bottom: 0;
	height: 50px;
	line-height: 50px;
	background: #b8c3d3;
	width: 100%;
	text-align: center;
}

.tabBar div.active {
	border-color: #de8d00;
}

.tabBar div.active p {
	color: #fff;
	background: #131c2a;
}

.tabBar div:hover {
	border-color: #de8d00;
}

.tabBar div:hover img {
	transform: scale(1.08);
}

.tabBar div:hover p {
	color: #fff;
	background: #131c2a;
}

.tab_list ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}

.tab_list ul li {
	width: 208px;
	height: 46px;
	text-align: center;
	line-height: 46px;
	background: linear-gradient(to right, #184760, #2c6584);
	color: #babeb7;
	border-radius: 6px;
	cursor: pointer;
}

.tab_list ul li.active {
	background: linear-gradient(to right, #eb3a28, #f78107);
	color: #fff;
}

.tab_list ul li:hover {
	background: linear-gradient(to right, #eb3a28, #f78107);
	color: #fff;
}

.maxImg {
	width: 100%;
	margin: 20px 0;
}

.red {
	color: red;
}

.bg-red {
	color: #fff;
	background: red;
}

.bg-yellow {
	background: #ffff00;
	color: red;
}

.home_list p {
	display: table;
}

.home_list ul li {
	background: #c2c8d1;
	width: 100%;
	padding: 20px;
	border-radius: 6px;
}

.more-btn {
	display: inline-block;
	line-height: 50px;
	border-radius: 6px;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	text-align: center;
	background: linear-gradient(to right, #eb3a28, #f78006);
}

.more-btn.btn-bule {
	background: linear-gradient(to right, #4d35d5, #553fff);
}

.hoverable {
	position: relative;
	overflow: hidden;
	z-index: 0;
	transition: all 0.3s ease;
}

/*.hoverable:hover { transform:translateY(-5px);  }*/
.anim {
	transform: translateY(-50%) translateX(-50%);
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
}

.anim:before {
	position: relative;
	content: "";
	display: block;
	margin-top: 100%;
}

.anim:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 50%;
}

.hoverable .anim {
	animation: anim-out .75s;
}

.hoverable .anim:after {
	animation: anim-out-pseudo .75s;
}

.hoverable .anim,
.hoverable .anim:after {
	animation-iteration-count: infinite;
	animation-duration: 1.3s;
}

@keyframes anim-in {
	0% {
		width: 0
	}

	100% {
		width: 100%
	}
}

@keyframes anim-in-pseudo {
	0% {
		background: rgba(0, 0, 0, 0.25)
	}

	100% {
		background: transparent
	}
}

@keyframes anim-out {
	0% {
		width: 0
	}

	100% {
		width: 100%
	}
}

@keyframes anim-out-pseudo {
	0% {
		background: rgba(0, 0, 0, 0.25)
	}

	100% {
		background: transparent
	}
}

.more-btn {
	width: 200px;
	height: 52px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	margin: 24px 0;
}

.rightBtn img {
	width: 24px;
	height: 24px;
}

.home_list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
}

.home_list li:nth-child(1) {
	margin-top: 0;
}

.centerTxt {
	width: 660px;
}

.centerTxt h3 {
	font-size: 22px;
	margin-bottom: 6px;
}

.centerTxt p {
	padding: 6px 0;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 660px;
	vertical-align: middle;
	/*取消块级元素之间的距离*/
}

.leftImg {
	width: 400px;
	height: 258px;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	border-radius: 6px;
}

.leftImg img {
	height: 100%;
	width: auto;
	transform: scale(1);
	transition: all 0.8s;
}

.leftImg img:hover {
	transform: scale(1.08)
}


.tool ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tool ul li {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	position: relative;
}

.tool ul li .download-a {
	position: absolute;
	bottom: 14px;
	right: 22px;
}

.tool ul li .download-a img {
	width: 24px;
	height: 24px;
}

.shu_title {
	color: #fff;
	font-size: 23px;
	position: relative;
	padding-left: 24px;
	margin: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.shu_title::before {
	content: "";
	width: 4px;
	height: 90%;
	background: #de8d00;
	position: absolute;
	left: 0;
	top: 5%;
	border-radius: 4px;
}

.shu_title a {
	float: right;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.shu_title a:hover {
	text-decoration: underline;
}

.tool li {
	background: #182332;
	color: #fff;
	font-size: 18px;
	padding: 22px;
	width: 30%;
	border-radius: 6px;
}

.tool li p {
	opacity: 0.8;
	font-size: 16px;
}

.tool_leftImg {
	width: 100px;
	height: 100px;
	overflow: hidden;
	border-radius: 6px;
	margin-right: 22px;
}

.tool_leftImg img {
	transform: scale(1);
	transition: all 0.5s;
}

.tool_leftImg img:hover {
	transform: scale(1.05);
}

.tool li h4 {
	margin-top: 4px;
	margin-bottom: 20px;
}

.tool li p {
	margin-top: 10px;
}

.home_consult_question {
	display: flex;
	justify-content: space-between;
	margin-top: 36px;
	margin-bottom: 60px;
}

.consult,
.question {
	width: 48.5%;
}

.home_consult_question ul li {
	font-size: 14px;
	border-bottom: 1px dashed #585a5e;
	font-size: 14px;
}

.home_consult_question ul li a {
	color: #fff;
	opacity: 0.8;
	transition: all 0.3s;
	line-height: 48px;
	position: relative;
	padding-left: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.home_consult_question ul li a b {
	font-weight: 500;
	display: inline-block;
	width: 87%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.home_consult_question ul li a:hover {
	opacity: 1;
}

.home_consult_question ul li b::after {
	content: "";
	width: 5px;
	height: 5px;
	background: #de8d00;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 1.5em;
}

.home_consult_question ul li a span {
	float: right;
}


.footer {
	background: #171a21;
}

.footMain {
	width: 1400px;
	height: 90px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer div {
	color: #59656d;
}

.footer div a {
	color: #59656d
}

.footer div a:hover {
	color: #fff;
}

.tabMain {
	display: none;
}

.tabMain.showTabM {
	display: block;
}

.list_ul {
	display: none;
}

.list_ul.show_ul {
	display: block;
}


.inner-header-icon {
	color: #ffffff;
	height: 50px;
	font-size: 25px;
	text-align: center;
	float: right;
	width: 50px;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

.inner-header-icon:hover {
	/* background-color: rgba(255,255,255,0.2); */
	cursor: pointer;
}

.inner-header-icon span {
	position: absolute;
	left: calc((100% - 30px) / 2);
	top: calc((100% - 1px) / 2);
	width: 24px;
	height: 2px;
	background-color: rgba(255, 255, 255, 1);
}

.inner-header-icon span:nth-child(1) {
	transform: translateY(4px) rotate(0deg);
	top: 28px;
}

.inner-header-icon span:nth-child(2) {
	opacity: 1;
	top: 24px;
}

.inner-header-icon span:nth-child(3) {
	transform: translateY(-4px) rotate(0deg);
	top: 20px;
}


.inner-header-icon-click span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
	top: calc((100% - 1px) / 2);
}

.inner-header-icon-click span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
}

.inner-header-icon-click span:nth-child(3) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickthird;
	top: calc((100% - 1px) / 2);
}


/*第一条线旋转动画*/
@keyframes clickfirst {
	0% {
		transform: translateY(4px) rotate(0deg);

	}

	100% {
		transform: translateY(0) rotate(45deg);
	}
}

/*第二条线淡入淡出动画动画*/
@keyframes clicksecond {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

/*第三条线旋转动画*/
@keyframes clickthird {
	0% {
		transform: translateY(-4px) rotate(0deg);
	}

	100% {
		transform: translateY(0) rotate(-45deg);
	}
}

.inner-header-icon-out span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
	top: 20px;
}

.inner-header-icon-out span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
	top: 24px;
}

.inner-header-icon-out span:nth-child(3) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outthird;
	top: 28px;
}

@keyframes outfirst {
	0% {
		transform: translateY(0) rotate(-45deg);
	}

	100% {
		transform: translateY(-4px) rotate(0deg);
	}
}

@keyframes outsecond {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes outthird {
	0% {
		transform: translateY(0) rotate(45deg);
	}

	100% {
		transform: translateY(4px) rotate(0deg);
	}
}

.inner-header {
	display: none;
}

.m-nav {
	position: fixed;
	top: 0;
	left: -100%;
	width: calc(100% - 60px);
	height: 100%;
	background: #171a21;
	z-index: 999;
	transition: left 0.5s;
}

.m-nav ul li {
	border-bottom: 1px solid #23262c;
}

.m-nav ul li a {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #fff;
	margin: 0 30px;
	font-size: 20px;
	height: 70px;
	width: auto;
}




.m-nav ul li img {
	width: 28px;
	height: 28px;
	margin-right: 18px;
	border-radius: 50%;
}


.m-nav ul li a::after {
	content: "";
	position: absolute;
	width: 0px;
	left: 50px;
	bottom: 0;
	background: #fff;
	height: 2px;
	transition: all 0.3s;
}

.m-nav ul li a:hover::after {
	width: 4em;
}

.toolBox {
	width: 1400px;
	margin: 60px auto;
	background: #182332;
	border-radius: 6px;
	overflow: hidden;
}

.heng_title {
	width: 100%;
	height: 60px;
	background: #131c2a;
	font-size: 21px;
}

.heng_title span {
	display: inline-block;
	width: 160px;
	line-height: 56px;
	text-align: center;
	color: #fff;
	border-top: 3px solid #de8d00;
}

.toolBox .tool li {
	background: #131c2a;
	margin-left: 3%;
	width: 31%;
	margin-bottom: 3%;
}

.toolBox .tool li:nth-child(3n+1) {
	margin-left: 0;
}

.toolBox .tool ul {
	padding: 40px;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding-bottom: 0;
}

.page {
	text-align: center;
	color: #fff;
	margin-bottom: 40px;
	font-size: 16px;
}

.topbanner {
	position: relative;
}

.topbanner h1 {
	text-align: center;
	color: #fff;
	position: absolute;
	top: calc(50% - 0.5em);
	width: 100%;
	letter-spacing: 2px;
	font-size: 36px;
}

.consultBox {
	width: 1400px;
	margin: 40px auto;
}

.consult_ul {
	display: flex;
	flex-wrap: wrap;

}

.consult_ul li {
	width: 440px;
	height: 300px;
	background: #182332;
	margin-left: 2.8%;
	padding: 26px;
	color: #babec6;
	border-radius: 6px;
	position: relative;
	overflow: hidden;
	margin-bottom: 3%;
}

.consult_ul li:nth-child(3n+1) {
	margin-left: 0;
}

.consult_ul li a {
	color: #fff;
}

.consult_ul li h4 {
	font-weight: 500;
	font-size: 18px;
	line-height: 32px;
	margin-top: 16px;
}

.consult_ul li .txt {
	margin-top: 22px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	line-height: 28px;
}

.consult_ul li .alink a {
	border: 1px solid #babec6;
	color: #babec6;
	padding: 7px 10px;
	display: inline-block;
	border-radius: 4px;
	font-size: 14px;
	margin-right: 10px;
	margin-top: 25px;
}


.consult_ul li::after {
	content: "";
	position: absolute;
	width: 0px;
	left: 0;
	bottom: 2px;
	background: #de8d00;
	height: 2px;
	transition: all 0.3s;
}

.consult_ul li:hover::after {
	width: 100%;
}

.consultMain {
	width: 1400px;
	margin: 0 auto;
}

.mainBox {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.main_link {
	color: #babec6;
	font-size: 16px;
	margin: 30px 0;
}

.main_link a {
	color: #babec6;
}

.main_link a:hover {
	color: #fff;
}

.consult_left {
	width: 320px;
}

.leftDiv {
	width: 100%;
	background: #182332;
	padding-bottom: 20px;
	border-radius: 6px;
	margin-bottom: 30px;
}

.consult_right {
	width: 1040px;
	background: #182332;
}

.leftDiv h2 {
	color: #fff;
	height: 90px;
	line-height: 90px;
	padding-left: 30px;
	border-bottom: 1px solid #5e6570;
}

.leftDiv h2 span {
	display: inline-block;
	line-height: 88px;
	border-bottom: 2px solid #de8d00;
}

.leftDiv ul li {
	color: #babec6;
	padding: 0 30px;
	margin-top: 30px;
	line-height: 28px;
}

.leftDiv ul li p {
	margin-bottom: 10px;
}

.leftDiv ul li a {
	color: #babec6;
}

.leftDiv ul li a:hover {
	color: #fff;
}

.link-a {
	padding: 0 30px;
}

.link-a a {
	border: 1px solid #babec6;
	color: #babec6;
	padding: 7px 10px;
	display: inline-block;
	border-radius: 4px;
	font-size: 14px;
	margin-right: 10px;
	margin-top: 25px;
}

.link-a a:hover {
	color: #fff;
}

.consult_right {
	padding: 40px;
}

.consult_title {
	padding-bottom: 24px;
	border-bottom: 1px solid #5e6570;
}

.consult_title h2 {
	color: #fff;
}

.consult_title div {
	margin-top: 36px;
}

.consult_title span {
	color: #babec6;
	font-size: 16px;
	margin-right: 30px;
}

.consult_title span img {
	width: 22px;
	height: 22px;
	position: relative;
	top: 4px;
	margin-right: 8px;
}

.consult_main {
	color: #babec6;
	margin-top: 40px;
	margin-bottom: 30px;
}

.consult_right .link-a {
	padding: 0;
}

.next_click {
	border-top: 1px solid #5e6570;
	margin-top: 50px;
	padding-top: 40px;
}

.next_click div {
	margin-bottom: 24px;
}

.next_click span {
	background: #131c2a;
	color: #fff;
	padding: 6px 30px;
	margin-right: 16px;
}

.next_click a {
	color: #babec6;
}


.payTop {
	text-align: center;
	color: #fff;
}

.payTop h3 {
	font-size: 24px;
	margin-top: 70px;
	margin-bottom: 40px;
}

.payTop .rightBtn .more-btn {
	margin: 24px auto;
	justify-content: center;
}

.payTop .rightBtn a {
	width: 486px;
	text-align: center;
}