.tab-container {
	display: flex;
	flex-direction: row;
	border-radius: 20px;
	overflow: hidden;
}

/* 导航栏样式 */
.tab-sidebar {
	width: 250px;
	background-color: #efefef;
	padding: 25px 0;
}

.tab-item {
	display: flex;
	padding: 15px 25px;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 16px;
	color: #333;
	align-items: center;
	justify-content: center
}
.tab-item .icon{
	font-size: 32px;
	padding-right: 10px;
}
.icon-renzheng, .icon-jiuye{
	font-size: 28px!important;
}
.tab-item:hover {
	background-color: #e9e9e9;
}

.tab-item.active {
	background-color: #1890ff;
	color: #fff;
}

/*.tab-icon-1 {
	background: url(../img/service_icon1.png) no-repeat 70px 29px;
}

.tab-icon-2 {
	background: url(../img/service_icon2.png) no-repeat 70px 29px;
}

.tab-icon-3 {
	background: url(../img/service_icon3.png) no-repeat 70px 29px;
}

.tab-icon-4 {
	background: url(../img/service_icon4.png) no-repeat 70px 29px;
}

.tab-icon-5 {
	background: url(../img/service_icon5.png) no-repeat 70px 29px;
}

.tab-icon-6 {
	background: url(../img/service_icon6.png) no-repeat 70px 29px;
}

.tab-icon-7 {
	background: url(../img/service_icon7.png) no-repeat 70px 29px;
}

.tab-icon-1.active {
	background: url(../img/service_icon1A.png) no-repeat 70px 29px #0f51cd;
}

.tab-icon-2.active {
	background: url(../img/service_icon2A.png) no-repeat 70px 29px #0f51cd;
}

.tab-icon-3.active {
	background: url(../img/service_icon3A.png) no-repeat 70px 29px #0f51cd;
}

.tab-icon-4.active {
	background: url(../img/service_icon4A.png) no-repeat 70px 29px #0f51cd;
}

.tab-icon-5.active {
	background: url(../img/service_icon5A.png) no-repeat 70px 29px #0f51cd;
}

.tab-icon-6.active {
	background: url(../img/service_icon6A.png) no-repeat 70px 29px #0f51cd;
}

.tab-icon-7.active {
	background: url(../img/service_icon7A.png) no-repeat 70px 29px #0f51cd;
}*/

/* 主内容区样式 */
.main-content {
	flex: 1;
	padding: 20px;
	background-color: #f7f8f8;
}

.content-header {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #333;
	border-bottom: 1px #d3d4d4 solid;
	padding-bottom: 18px;
	position: relative;
}

.content-header::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 0px;
	background: #d3d4d4;
	left: 0;
	bottom: 0;
}


.content-image {
	width: 100%;
	height: 330px;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	border-radius: 20px;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

/*背景图片加颜色遮罩
.content-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(24, 144, 255, 0.7);
	z-index: 1;
}*/

.content-image .chinese {
	font-size: 28px;
	margin-bottom: 5px;
	position: relative;
	z-index: 2;
	font-weight: 300 !important;
	letter-spacing: 3px;
}

.content-image .english {
	font-size: 32px;
	text-transform: uppercase;
	position: relative;
	z-index: 2;
	font-weight: 300 !important;
	letter-spacing: 3px;
}

.content-blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.content-block p {
	line-height: 1.75;
	color: #666;
}

.content-block {
	flex: 1;
	min-width: 250px;
	padding: 20px;
	background-color: #efefef;
	border-radius: 20px;
	font-size: 14px;
	transition: transform 0.3s;
}

.content-block:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.content-block:hover p {
	color: #fff !important;
}

.block-bg1 {
	background: url(../img/course-icon1.png) no-repeat right bottom #efefef;
}

.block-bg1:hover {
	background: url(../img/course-icon1A.png) no-repeat right bottom #58b1e8;
}

.block-bg2 {
	background: url(../img/course-icon2.png) no-repeat right bottom #efefef;
}

.block-bg2:hover {
	background: url(../img/course-icon2A.png) no-repeat right bottom #58b1e8;
}

.block-bg3 {
	background: url(../img/course-icon3.png) no-repeat right bottom #efefef;
}

.block-bg3:hover {
	background: url(../img/course-icon3A.png) no-repeat right bottom #58b1e8;
}


/* 移动端适配 */
@media (max-width: 768px) {
	/*.tab-icon-1 {
		background: url(../img/service_icon1.png) no-repeat 20px 15px;
	}

	.tab-icon-2 {
		background: url(../img/service_icon2.png) no-repeat 20px 15px;
	}

	.tab-icon-3 {
		background: url(../img/service_icon3.png) no-repeat 20px 15px;
	}

	.tab-icon-4 {
		background: url(../img/service_icon4.png) no-repeat 20px 15px;
	}

	.tab-icon-5 {
		background: url(../img/service_icon5.png) no-repeat 20px 15px;
	}

	.tab-icon-6 {
		background: url(../img/service_icon6.png) no-repeat 20px 15px;
	}

	.tab-icon-7 {
		background: url(../img/service_icon7.png) no-repeat 20px 15px;
	}

	.tab-icon-1.active {
		background: url(../img/service_icon1A.png) no-repeat 20px 15px #0f51cd;
	}

	.tab-icon-2.active {
		background: url(../img/service_icon2A.png) no-repeat 20px 15px #0f51cd;
	}

	.tab-icon-3.active {
		background: url(../img/service_icon3A.png) no-repeat 20px 15px #0f51cd;
	}

	.tab-icon-4.active {
		background: url(../img/service_icon4A.png) no-repeat 20px 15px #0f51cd;
	}

	.tab-icon-5.active {
		background: url(../img/service_icon5A.png) no-repeat 20px 15px #0f51cd;
	}

	.tab-icon-6.active {
		background: url(../img/service_icon6A.png) no-repeat 20px 15px #0f51cd;
	}

	.tab-icon-7.active {
		background: url(../img/service_icon7A.png) no-repeat 20px 15px #0f51cd;
	}*/

	.tab-container {
		flex-direction: column;
		border-radius: 0
	}

	.tab-sidebar {
		width: 100%;
		display: flex;
		overflow-x: auto;
		padding: 0;
		white-space: nowrap;
		scrollbar-width: none;
		/* Firefox */
		-ms-overflow-style: none;
		/* IE and Edge */
		background-color: #f5f5f5;
		border-radius: 50px;
	}

	.tab-sidebar::-webkit-scrollbar {
		display: none;
		/* Chrome, Safari and Opera */
	}



	
	.tab-item {
		display: flex;
		padding: 5px 20px;
		cursor: pointer;
		transition: all 0.3s;
		font-size: 16px;
		color: #333;
		align-items: center;
		justify-content: center;
		border-radius: 50px;
	}
	.tab-item .icon{
		font-size: 30px;
		padding-right: 0px;
	}
	.icon-renzheng, .icon-jiuye{
		font-size: 28px!important;
	}

	.main-content {
		padding: 15px;
		background: #fff;
	}

	.content-header {
		font-size: 20px;
		text-align: center;
	}

	.content-image {
		height: 150px;
	}

	.content-image .chinese {
		font-size: 22px;
		font-weight: 300 !important;
		letter-spacing: 3px;
	}

	.content-image .english {
		font-size: 24px;
		font-weight: 300 !important;
		letter-spacing: 3px;
	}

	.content-blocks {
		flex-direction: column;
	}

	.content-block {
		min-width: 100%;
	}
}