* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background-color: #f8f8f8;
	color: #333;
	line-height: 1.6;
	margin: 0 auto;
}

.section {
	background: white;
	padding: 18px;
	margin-bottom: 18px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-title {
	color: #ff552e;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 2px solid #f0f0f0;
}

/* 板块一：人物图片 */
.people-grid {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.people-item {
	width: 19%;
	border-radius: 8px;
	/*overflow: hidden;
	background: #eee;
	aspect-ratio: 3/6;*/
	position: relative;
}

.people-name {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	text-align: center;
	padding: 5px 2px;
	font-size: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.people-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.people-grid .sr{text-align: center;line-height: 1em;margin-top: 5px;font-size: 11px}
/* 板块二：创始人 */
.founder-section {
	display: flex;
	/*flex-direction: column;*/
}

@media (min-width: 500px) {
	.founder-section {
		flex-direction: row;
	}
}

.founder-text {
	flex: 1;
	padding: 15px;
	font-size: 16px;
	line-height: 1.8;
	background: #f9f9f9;
	border-radius: 8px;margin-right: 15px;
	/*margin-bottom: 15px;*/
}

@media (min-width: 500px) {
	.founder-text {
		margin-bottom: 0;
		margin-right: 15px;
	}
}

.carousel-container {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
	background: #eee;
	/*aspect-ratio: 1/1;*/
	position: relative;
}

/* Swiper样式 */
.swiper {
	width: 100%;
	height: 100%;
	border-radius: 8px;
}

.swiper-slide {
	/*display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	overflow: hidden;*/position: relative;
}
.swiper-slide .text{position: absolute;left: 0;bottom: 0px;padding:10px 20px 20px 20px;background: rgba(0, 0, 0, 0.5);color: #fff;width: 100%;font-size: 16px}
.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.7);
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: #ff552e;
}
.csr img{width: 100%;height: 300px;object-fit: cover;display: block}
/* 板块三：分类 */
.categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.category-item {
	width: 48%;
	background: #f5f5f5;
	padding: 12px 10px;
	margin-bottom: 12px;
	border-radius: 8px;
	text-align: center;
	font-size: 15px;
	transition: all 0.3s ease;
}

.category-item:hover {
	background: #ffefec;
	transform: translateY(-2px);
}

.category-item a {
	text-decoration: none;
	color: #333;
	display: block;
	width: 100%;
	height: 100%;
}