/* 首页 */
.main-content {
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: saturate(180%) blur(8px);
	padding: 80px 0 0;
}

/* banner */
.banner-content {
	height: 100vh;
	min-height: 640px;
	position: relative;
}

.banner-content .section {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: inherit;
	z-index: 10;
	padding-top: 72px;
}

.banner-content .logo img {
	width: 100%;
	max-width: 674px;
}

.banner-content .section p {
	font-size: 20px;
	color: #fff;
	background: #E85C21;
	padding: 12px 20px;
	font-family: proBold;
	margin-top: 40px;
	text-align: center;
	line-height: 1.5;
}

.banner-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}

/* about */
.about-content .section {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: inherit;
	z-index: 10;
}

.about-content .info p {
	font-size: 20px;
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.5;
	font-family: pro;
}

.about-content .info p+p {
	margin-top: 16px;
}


/* Portfolio */
.partner-list ul {
	width: 100%;
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
}
.partner-list h2 {
	font-family:tit;
	text-align: left;
	font-size: 30px;
	color: #FFFFFF;
	margin: 30px 0;
}
.partner-list ul li {
	height: 100px;
}

.partner-list ul li a {
	display: flex;
	width: 100%;
	height: 100%;
	padding: 32px;
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.03);
	transition: all .2s;
	pointer-events: auto;
}

.partner-list ul li a:hover {
	border: 2px solid #E85C21;
	background: rgba(0, 0, 0, 0);
	box-shadow: 0 0 8px 4px rgba(232, 92, 33, 0.3);
}

.partner-list ul li a:hover img {
	transform: scale(1.15);
	opacity: 1;
}

.partner-list ul li img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all .2s;
	opacity: 0.85;
}

/* contact */
.form {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
	grid-gap: 48px;
}

.form .form-group-list {
	width: 100%;
}

.form .form-group {
	position: relative;
	pointer-events: auto;
}

.form .form-group+.form-group {
	margin-top: 24px;
}

.form .form-control {
	width: 100%;
	height: 56px;
	background: none;
	border: none;
	font-family: pro;
	border-radius: 0;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	padding: 0;
	font-size: 18px;
	color: #fff;
}

.form .form-control+span {
	visibility: hidden;
	height: 3px;
	width: 0;
	background-color: #E85C21;
	box-shadow: 0 0 8px 4px rgba(232, 92, 33, 0.3);
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all 0.3s;
}

.form .form-control:focus+span {
	width: 100%;
	visibility: visible;
}

.form .form-group .select-mania {
	font-size: 18px;
	color: #fff;
}

.form .form-group .select-mania+i {
	position: absolute;
	top: 50%;
	right: 4px;
	transform: translateY(-50%);
	color: #fff;
	font-size: 20px;
}

.form .form-control.textarea {
	height: 136px;
}

.form .form-control option {
	color: #1A1A1A;
	font-size: 16px;
}

.form+.button {
	margin-top: 64px;
}

.form+.button .btn {
	width: 100%;
	max-width: 400px;
}

@media (max-width:414.98px) {

	.banner-content .section {
		padding-top: 48px;
	}

	.banner-content .section p {
		font-size: 16px;
	}

	.form {
		grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
		grid-gap: 24px;
	}
}
