.team-section {
	display: flex;
	margin-bottom: 30px;
}


.team-title-wrap {
	width: 30%;
}

.team-title {
	font-size: 32px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.team-title::after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--blue-darker);
	bottom: 0;
	left: 0;
}

.team-desc {
	font-size: 14px;
}

.team-list-wrap {
	width: 66%;
}

.team-list {
	display: flex;
	/* justify-content: space-between; */
}

.team-list-item {
	background: #fff;
    width: 30%;
    padding: 30px;
    box-shadow: 0px 2px 12px rgb(0 0 0 / 8%);
    margin-right: 5%;
    margin-bottom: 3%;

}

.team-list .team-list-item:last-child{
	margin-right: 0;
}

.team-list-item-img img {
	border-radius: 100%;
	width: 150px;
	margin: auto;
	display: block;
}

.team-list-item-img__place {
	height: 150px;
	width: 150px;
	margin: auto;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 100%;
}

.team-list-item-desc {
	font-size: 14px;
	font-style: italic;
	margin-top: 20px;
	margin-bottom: 20px;
	height: 150px;
	overflow: auto;
}

.team-list-item-name h3 {
	font-size: 18px;
	text-align: center;
}

.team-list-item-po h4 {
	font-size: 14px;
	color: var(--gray);
	font-weight: normal;
	text-align: center;
}


/* 轮播图 */

.swiper-container {
	width: 100%;
	height: 100%;
	/* background: var(--purple-lighter) */
}

.swiper-slide {
	font-size: 18px;

	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/* padding: 40px 60px; */
	padding-bottom: 60px;
}

.swiper-pagination-bullet{
	opacity: 1;
}

.swiper-pagination-white .swiper-pagination-bullet-active{
	background: #5702b2;
}