/* 公共 */
/* body */
body.overhiden {
	overflow: hidden;
}

/* header */
.header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #03060d;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	padding: 0 200px;
	z-index: 999;
	opacity: 0;
}

.header .logo {
	height: 100%;
	display: flex;
	align-items: center;
}

.header .logo img {
	height: 28px;
}

.nav {
	display: flex;
	font-family: probold;
	margin-right: -12px;
}

.nav>li {
	position: relative;
}

.nav>li a {
	display: flex;
	align-items: center;
	line-height: 72px;
	color: #fff;
	font-size: 22px;
	padding: 0 12px;
}

.nav>li a i {
	font-size: 12px;
}

.nav>li ul {
	display: none;
	width: 128px;
	background: #fff;
	border-radius: 8px;
	padding: 4px 0;
	font-family: pro;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 100%;
	transition: all .2s;
	z-index: 10;
	overflow: hidden;
}

.nav>li:hover ul {
	display: block;
	opacity: 1;
}

.nav>li:hover ul li {
	line-height: 32px;
	font-size: 12px;
	color: #666;
	padding: 0 10px;
	cursor: pointer;
}

.nav>li ul li:hover {
	background: #f1f3f4;
}

/* foot */
.foot-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 24px;
	backdrop-filter: saturate(180%) blur(8px);
}

.foot-content .contactway {
	display: flex;
	align-items: center;
}

.foot-content .contactway li+li {
	margin-left: 24px;
}

.foot-content .contactway li a {
	color: rgba(255, 255, 255, 0.6);
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	pointer-events: auto;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
}

.foot-content .contactway li a i {
	font-size: 18px;
}

.foot-content .contactway li a:hover {
	color: #fff;
	background: #E85C21;
}

.foot-content .copyright {
	text-align: center;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	font-family: pro;
	margin-top: 24px;
}

/* btn */
.button {
	display: flex;
	flex-wrap: wrap;
}

.button.center {
	justify-content: center;
}

.btn {
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 36px;
	border-radius: 24px;
	font-size: 16px;
	font-family: bal;
	color: #fff;
	overflow: hidden;
	position: relative;
	transition: all .2s;
	box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.08);
	pointer-events: auto;
}

.btn::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	background: #fff;
	transition: all .2s;
}

.btn.long {
	flex: 1;
}

.btn.primary {
	background: #E85C21;
	color: #fff;
}

.btn.primary:hover {
	box-shadow: 0 0 8px 4px rgba(232, 92, 33, 0.3);
}

.btn.primary:hover:after {
	opacity: 0.1;
}

.btn:not(:first-child) {
	margin-left: 20px;
}

.btn.default {
	background: #fff;
	color: #333;
}

.btn.default:hover {
	color: #E85C21;
}

.btn.small {
	font-size: 14px;
	height: 40px;
	padding: 0 24px;
}

.btn.big {
	height: 64px;
	padding: 0 48px;
	font-size: 20px;
	border-radius: 32px;
}

/* 布局 */
.content {
	width: 100%;
	padding: 80px 0;
}

.section {
	width: 100%;
	max-width: 1240px;
	padding: 0 20px;
	margin: 0 auto;
}

.section-info {
	background: #fff;
	padding: 32px;
	border-radius: 16px;
	box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.1);
}

.section-title {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 0 48px;
}

.section-title p.title-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: proBold;
	font-size: 56px;
	color: #fff;
	line-height: 1;
	white-space: nowrap;
	text-transform: uppercase;
}

.section-title p.title-text::after {
	content: "";
	display: block;
	width: 48px;
	height: 4px;
	background: #E85C21;
	border-radius: 3px;
	margin-top: 10px;
	box-shadow: 0 0 8px 4px rgba(232, 92, 33, 0.3);
}

.section-title p.title-slogen {
	color: rgba(255, 255, 255, 0.6);
	font-family: pro;
	font-size: 16px;
	margin-top: 12px;
	text-align: center;
	line-height: 1.5;
}

@media (max-width:414.98px) {
	.foot-content {
		flex-direction: column;
	}

	.header {
		padding: 0 16px;
	}

	.content {
		padding: 80px 0;
	}

	.section {
		padding: 0 16px;
	}

	.header .section {
		height: 48px;
	}

	.header .logo img {
		height: 14px;
	}

	.nav {
		margin-right: -6px;
	}

	.nav>li a {
		line-height: 48px;
		font-size: 13px;
		padding: 0 6px;
	}

	.section-title p.title-text {
		font-size: 40px;
	}
}
