body {
	background: #fafafd;
	font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
}

.cooperate-banner {
	width: 100vw;
	min-width: 1200px;
	height: 220px;
	border-radius: 0 0 24px 24px;
	overflow: hidden;
	margin-bottom: 0;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.cooperate-banner img {
	width: 100vw;
	min-width: 1200px;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cooperate-title {
	font-size: 48px;
	color: #ff3c3c;
	font-weight: bold;
	margin: 48px auto 40px auto;
	text-align: left;
	letter-spacing: 2px;
	width: 1200px;
}

.cooperate-main {
	width: 1200px;
	margin: 40px auto;
	min-height: 600px;
	background: #fafafd;
	padding: 20px;
}

.cooperate-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 48px 0;
	justify-content: space-between;
	padding: 40px 0;
}

.cooperate-logo-item {
	width: 354px;
	height: 200px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	transition: all 0.3s ease;
	overflow: hidden;
}

.cooperate-logo-item:hover {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.cooperate-logo-item img {
	max-width: 220px;
	max-height: 70px;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.cooperate-logo-item:hover img {
	transform: scale(1.05);
}

.scale-in {
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.visible {
	opacity: 1;
	transform: scale(1);
}

@media (max-width: 1300px) {
	.cooperate-main {
		width: 98vw;
		min-width: 320px;
	}

	.cooperate-title {
		width: 98vw;
		min-width: 320px;
	}

	.cooperate-banner,
	.cooperate-banner img {
		min-width: 320px;
	}
}

.page-banner {
	width: 100%;
	height: 400px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	margin-bottom: 40px;
}

.banner-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
}

.banner-content h1 {
	font-size: 48px;
	font-weight: bold;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	margin: 0;
}