* {
	box-sizing: border-box;
}

body {
	padding: 0;
	margin: 0;
	width: 100%;
	overflow-x: hidden;
	font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
	color: #292929;
	background: #fff;
}

.page {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero {
	width: 100%;
	aspect-ratio: 3840 / 1144;
	background: url("../img/new/bg1.png") no-repeat center top;
	background-size: 100% 100%;
	background-color: #ffe566;
}

.hero-inner {
	max-width: 1200px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 24px 40px;
	display: flex;
	flex-direction: column;
}

.site-header {
	margin-bottom: 0;
}

.logo-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	padding: 6px 12px;
	border: 1px dashed rgba(230, 180, 40, 0.65);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.75);
}

.site-logo {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: block;
}

.site-name {
	font-size: 16px;
	font-weight: bold;
	color: #292929;
}

.section-intro {
	width: 100%;
	background-color: #fdfcf8;
	padding: 56px 24px 64px;
}

.intro-inner {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.intro-title {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	margin: 0 0 32px;
	color: #292929;
}

.intro-body {
	font-size: 15px;
	line-height: 1.9;
	color: #333;
	text-align: justify;
}

.intro-body p {
	margin: 0 0 18px;
}

.intro-body p:last-child {
	margin-bottom: 0;
}

.section-services {
	width: 100%;
	aspect-ratio: 3840 / 1444;
	background: url("../img/new/bg3.png") no-repeat center top;
	background-size: 100% 100%;
	background-color: #fff8dc;
}

.section-services-inner {
	width: 100%;
	height: 100%;
}

.section-coop {
	width: 100%;
	background: linear-gradient(180deg, #fff8dc 0%, #fff9eb 40%, #ffffff 100%);
	padding: 48px 24px 72px;
}

.coop-inner {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
}

.coop-title {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	margin: 0 0 12px;
	color: #292929;
}

.coop-desc {
	font-size: 16px;
	color: #666;
	text-align: center;
	margin: 0 0 36px;
}

.coop-form {
	width: 100%;
}

.coop-row {
	display: flex;
	gap: 24px;
	margin-bottom: 20px;
}

.coop-field {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.coop-field-full {
	width: 100%;
}

.coop-label {
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

.coop-label .req {
	color: #e74c3c;
	margin-right: 2px;
}

.coop-field input {
	width: 100%;
	height: 44px;
	padding: 0 14px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	background: #fff;
	font-size: 14px;
	color: #333;
	outline: none;
	box-sizing: border-box;
	font-family: inherit;
}

.coop-field input::placeholder {
	color: #bbb;
}

.coop-field input:focus {
	border-color: #f0c040;
}

.container-footer {
	width: 100%;
	background-color: #252526;
	min-height: 80px;
	padding: 16px 20px;
	box-sizing: border-box;
}

.container-footer .copyright {
	text-align: center;
	color: #ffffff;
	font-size: 14px;
	line-height: 1.8;
}

.footer-contact {
	margin-bottom: 6px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	align-items: center;
}

.footer-sep {
	color: #888;
}

.footer-beian {
	line-height: 1.8;
}

.jicpb {
	font-family: MicrosoftYaHei;
	color: #749ae3;
	letter-spacing: 0;
	line-height: 20px;
	font-weight: 400;
	text-decoration: none;
}

@media (max-width: 768px) {
	.hero {
		aspect-ratio: auto;
		min-height: 420px;
		background-size: cover;
		background-position: center top;
	}

	.hero-inner {
		padding: 16px 16px 24px;
		min-height: 420px;
	}

	.site-name {
		font-size: 14px;
	}

	.section-intro {
		padding: 40px 16px 48px;
	}

	.intro-title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.intro-body {
		font-size: 14px;
		line-height: 1.8;
	}

	.section-services {
		aspect-ratio: auto;
		min-height: 360px;
		background-size: cover;
		background-position: center top;
	}

	.coop-title {
		font-size: 24px;
	}

	.coop-row {
		flex-direction: column;
		gap: 16px;
	}

	.footer-contact {
		flex-direction: column;
		gap: 4px;
	}

	.footer-sep {
		display: none;
	}
}
