.set1{
	width: 100%;
	background-color: #e1e8f2;
	padding: 60px 0;
}
.set1-container{
	/* padding: 0 10%; */
}

.set1-content{
	display: flex;
	flex-direction: column;
	justify-content: left;
}
.set1-content p{
	text-indent: 1em;
	margin-bottom: 15px;
	line-height: 1.6;
	font-size: 20px;
}
.set1-title{
	position: relative;
	padding-left: 20px;
	margin-bottom: 30px;
	z-index: 1;
}
.set1-title::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background-color: #0066cc;
}
.set1-titlecn{
	font-size: 1.75rem;
	font-weight: bold;
	color: #333;
	margin-bottom: 8px;
}
.set1-titleen{
	font-size: 1rem;
	color: #666;
	text-transform: uppercase;
}
.company-name{
	color: #2961b6;
	font-size: 1.25rem;
	font-weight: bold;
}
.set1-btn{
	display: inline-block;
	background-color: #2862b4;
	color: white;
	padding: 10px 30px;
	border-radius: 30px;
	text-align: center;
	text-decoration: none;
	font-size: 1rem;
	margin-top: 20px;
	transition: all 0.3s ease;
}
.set1-btn:hover{
	background-color: #1a4b8c;
	transform: translateY(-2px);
}

.set1-data{
	background-color: #2862b4;
	color: #fff;
	padding: 20px 0;
	margin-top: 40px;
	margin: 1.5rem 0;
}

.set1-data-item{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	text-align: center;
	position: relative;
	padding: 0;
}

.set1-data-item:not(:last-child)::after{
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	bottom: 20%;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.5);
}

.set2{
	width: 100%;
	background-color: #fafafa;
}

.set2-title>div>span{
	color: #2962b4;
}


/* Swiper样式 */
.swiper{
	width: 100%;
	height: 680px;
	margin: 20px 0;
}

.swiper-slide{
	height: calc(50% - 1px);
	position: relative;
	overflow: hidden;
}

.swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}

.swiper-slide:hover img{
	transform: scale(1.05);
}

.swiper-slide::before{
	content: '集训考研班';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(40,98,180, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 18px;
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 1;
}

.swiper-slide:hover::before{
	opacity: 1;
}

/* Swiper控制按钮 */
.swiper-controls{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	padding-bottom: 40px;
	gap: 100px;
}

.swiper-controls .swiper-button-prev,
.swiper-controls .swiper-button-next{
	position: static;
	transform: none;
	margin: 0;
	width: 40px;
	height: 40px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.swiper-controls .swiper-button-prev{
	background-image: url('../img/aboutUs/btn-l.png');
}

.swiper-controls .swiper-button-next{
	background-image: url('../img/aboutUs/btn-r.png');
}

.swiper-controls .swiper-button-prev::after,
.swiper-controls .swiper-button-next::after{
	display: none;
}


.set1-data-item-text{
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 10px;
}

.set1-data-item-text2{
	font-size: 1rem;
}
@media (max-width: 992px) {
	.set1-img{
		margin-top: 20px;
	}
	.swiper{
		height: 340px;
	}
}
@media (max-width: 768px){
	body{
		font-size: 14px;
	}
	.set1{
		padding: 40px 0;
	}
	/* .set1-container{
		max-width: 90%;
	} */
	.set1-btn{
		padding: 8px 20px;
	}
	.set1-data-item-text{
		font-size: 2rem;
	}
	.swiper{
		height: 340px;
	}
}

@media (max-width: 480px){
	.swiper{
		height: 300px;
	}
}

