/* 关于我们页面顶部大图banner样式 */
.aboutUs-banner {
	width: 100%;
	height: 600px;
	background: linear-gradient(rgba(30, 30, 30, 0.32), rgba(30, 30, 30, 0.32)), url('../images/banner/aboutUs-banner.jpg') center center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 2.5rem;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.aboutUs-banner-title {
	color: #fff;
	font-size: 3.2rem;
	font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 0.25em;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), 0 1px 0 #222;
	text-align: center;
	user-select: none;
}

@media (max-width: 1080px) {
	.aboutUs-banner {
		height: 500px;
		margin-bottom: 1.2rem;
	}

	.aboutUs-banner-title {
		font-size: 2rem;
		letter-spacing: 0.12em;
	}
}

@media (max-width: 600px) {
	.aboutUs-banner {
		height: 300px;
		margin-bottom: 1.2rem;
	}

	.aboutUs-banner-title {
		font-size: 2rem;
		letter-spacing: 0.12em;
	}
}

@media (max-width: 440px) {
	.aboutUs-banner {
		height: 200px;
		margin-bottom: 1.2rem;
	}

	.aboutUs-banner-title {
		font-size: 2rem;
		letter-spacing: 0.12em;
	}
}

/* 品牌介绍大卡片 */
.aboutUs-hero {
	background: #fff;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	margin: 2.5rem auto 2.5rem auto;
	max-width: 1480px;
	/* padding: 2.5rem 0 2.5rem 0; */
	padding: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.5s ease-in-out;
}

.aboutUs-hero-content {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	margin: auto 0;
}

.aboutUs-logo {
	/* width: 37%; */
	width: 45%;
	object-fit: contain;
}

.aboutUs-hero-content-right {
	width: 60%;
}

.aboutUs-hero-content h2 {
	text-align: center;
	font-size: 2.2rem;
	color: #222;
	margin-bottom: 1.2rem;
	font-family: 'Microsoft YaHei', Arial, sans-serif;
}

.aboutUs-hero-content p {
	font-size: 1.1rem;
	line-height: 1.8;
	text-indent: 2em;
	text-align: justify;
}

/* 团队介绍 */
.aboutUs-team {
	max-width: 1100px;
	margin: 0 auto;
	padding: 2.2rem 2rem 2.2rem 2rem;
	animation: fadeIn 0.5s ease-in-out;
}

.aboutUs-team img {
	margin: 0 auto;
	width: 100%;
}

.aboutUs-team h3 {
	font-size: 2.2rem;
	color: #000000;
	margin-bottom: 2rem;
	font-weight: 700;
	text-align: center;
}

.aboutUs-team p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 0.7rem;
	text-align: center;
}


@media (max-width: 900px) {
	.aboutUs-hero,
	.aboutUs-team,
	.aboutUs-artists,
	.aboutUs-contact {
		padding: 1.2rem 0.5rem;
		max-width: 98vw;
	}

	.aboutUs-team-list {
		gap: 1.2rem;
	}

	.aboutUs-artists-grid {
		gap: 1.2rem;
	}
}

/* 合作艺术家介绍 */
.aboutUs-artists {
	padding: 3rem 1rem 2.5rem 1rem;
	animation: fadeIn 0.5s ease-in-out;
}

.aboutUs-artists h3 {
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 2.5rem;
	font-weight: 700;
	letter-spacing: 4px;
}

.cooperation-artists-row {
	display: flex;
	justify-content: center;
	gap: 2.5rem;
	flex-wrap: wrap;
}

.cooperation-artist-card {
	background: transparent;
	width: 22%;
	min-width: 260px;
	max-width: 340px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: none;
	border-radius: 0;
	padding: 0;
}

.cooperation-artist-card img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	transition: transform 0.32s cubic-bezier(.22, .68, .53, 1.01), box-shadow 0.32s;
	border-radius: 0;
}

.cooperation-artist-card img:hover {
	transform: scale(1.08);
	box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.32);
	z-index: 2;
}

.cooperation-artist-card h4 {
	font-size: 1.3rem;
	font-weight: 700;
	margin: 1rem 0 0.7rem 0;
	color: #000;
	text-align: center;
	letter-spacing: 2px;
}

.cooperation-artist-card p {
	font-size: 14px;
	text-align: center;
	line-height: 1.8;
	margin: 0;
}

.btn-more-artists {
	display: inline-block;
	background: #000000;
	color: #fff;
	border: 2px solid #fff;
	padding: 0.7em 2.2em;
	font-size: 1.18rem;
	font-weight: 1000;
	letter-spacing: 2px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
	transition: all 0.18s;
}

.btn-more-artists:hover {
	background: #fff;
	color: #000;
	border-color: #000;
	box-shadow: 0 6px 32px rgba(85, 95, 138, 0.18);
}

@media (max-width: 1200px) {
	.cooperation-artists-row {
		gap: 1.2rem;
	}

	.cooperation-artist-card {
		width: 45%;
		min-width: 220px;
	}
}

@media (max-width: 700px) {
	.cooperation-artists-row {
		flex-direction: column;
		align-items: center;
	}

	.cooperation-artist-card {
		width: 90%;
		max-width: 98vw;
	}
}


/* 合作客户模块 co-customer 响应式样式 */
.co-customer {
	padding: 40px 0 30px 0;
	/*background: #f8f8f8;*/
	animation: fadeIn 0.5s ease-in-out;
}

.co-customer .section-title {
	text-align: center;
	font-weight: 700;
	margin-bottom: 2rem;
}

.co-customer .container>div {
	display: flex;
	justify-content: center;
	align-items: center;
}

.co-customer img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 8px;
}

@media (max-width: 900px) {
	.co-customer {
		padding: 24px 0 18px 0;
	}

	.co-customer img {
		max-width: 98vw;
		border-radius: 6px;
	}
}

@media (max-width: 600px) {
	.co-customer {
		padding: 12px 0 10px 0;
	}

	.co-customer img {
		max-width: 100vw;
		border-radius: 4px;
	}
}

@media (max-width: 1300px) {
	.aboutUs-logo {
		width: 50%;
	}

	.aboutUs-hero-content-right {
		width: 60%;
	}
}

@media (max-width: 1250px) {
	.aboutUs-hero-content {
		gap: 1rem;
	}

	.aboutUs-hero-content h2 {
		font-size: 2.2rem;
	}

	.aboutUs-hero-content p {
		font-size: 0.9rem;
	}

	.aboutUs-team p {
		font-size: 0.9rem;
	}

	.aboutUs-logo {
		width: 50%;
	}

	.aboutUs-hero-content-right {
		width: 50%;
	}
}

@media (max-width: 1000px) {
	.aboutUs-hero-content {
		flex-direction: column;
		gap: 1.2rem;
		text-align: center;
	}

	.aboutUs-logo {
		/* width: 70%; */
		width: 95%;
	}

	.aboutUs-hero-content-right {
		width: 95%;
	}
}