/* course_category
----------------------------------------------- */
#course-category .course-list {
 padding-top:20px;
 zoom:1;
 overflow:hidden;
}
#course-category .course-list .item {
 margin-bottom: 26px;
}
#course-category .course-list .item .img {
 position: relative;
 overflow: hidden;
 border-radius: 8px;
}
#course-category .course-list .item .img img {
 width: 100%;
 display: block;
 transition: transform 0.3s ease;
}

/* 校区悬停遮罩层 */
.campus-overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(17, 95, 173, 0.9);
 display: flex;
 align-items: center;
 justify-content: center;
 opacity: 0;
 transition: opacity 0.3s ease;
}

.campus-overlay .campus-info {
 color: #fff;
 padding: 20px;
}

.campus-overlay .campus-info h3 {
 font-size: 20px;
 margin-bottom: 15px;
 color: #fff;
}

.campus-overlay .campus-info p {
 font-size: 14px;
 line-height: 1.8;
 margin-bottom: 8px;
 color: rgba(255, 255, 255, 0.9);
}

/* 鼠标悬停显示 */
#course-category .course-list .item .img:hover .campus-overlay {
 opacity: 1;
}

#course-category .course-list .item .img:hover img {
 transform: scale(1.05);
}

/* 防止页面水平溢出 */
#course-category, #footer {
 overflow-x: hidden;
}

/* SVG中国地图 - 左右分栏布局
----------------------------------------------- */
.china-map-layout {
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: center;
}

.map-left {
	flex: 1.2;
	min-width: 0;
}

.china-map-object {
	width: 100%;
	height: auto;
	min-height: 480px;
	display: block;
}

/* 右侧信息卡片 - 设计图样式 */
.info-right {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.10);
	overflow: hidden;
}

/* 图片容器 + 地址覆盖层 */
.info-right .info-img-wrap {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #f5f5f5;
}

.info-right .info-img-wrap > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 地址覆盖层（浮在图片底部） */
.info-right .info-addr-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255,255,255,0.92);
	padding: 10px 14px;
	font-size: 13px;
	color: #555;
	line-height: 1.5;
	display: flex;
	align-items: flex-start;
	gap: 6px;
}

.info-right .info-addr-overlay i {
	color: #115fad;
	font-size: 14px;
	margin-top: 2px;
	flex-shrink: 0;
}

/* 信息主体区域 */
.info-right .info-body {
	padding: 22px 20px 26px;
}

.info-right .info-title {
	font-size: 20px;
	color: #115fad;
	margin-top: 10px;
	margin-bottom: 10px;
	font-weight: bold;
	line-height: 1.3;
}

.info-right .info-body p {
	font-size: 14px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 8px;
}

.info-right .info-phone {
	color: #333;
}

.info-right .info-email {
	color: #555;
}

/* 响应式：移动端上下堆叠 */
@media (max-width: 900px) {
	.china-map-layout {
		flex-direction: column;
		gap: 24px;
	}
	.info-right {
		width: 100%;
		max-width: 420px;
		margin: 0 auto;
	}
}



/* course
----------------------------------------------- */
#course {
 padding: 20px 0;
}
#course h1 {
 color: #333333;
 font-size: 18px;
 font-weight: bold;
 text-align:center;
}
#course h2 {
 border-bottom: 1px solid #DDD;
 color:#19B4EA;
 font-size:16px;
 padding-bottom:10px;
 margin-bottom:10px;
}
#course .info {
 padding: 2px 0 20px 0;
 color: #999999;
 font-size: 13px;
 text-align:center;
}
#course .desc {
 margin-bottom:20px;
 font-size:13px;
 line-height:180%;
}
#course .desc b {
 font-weight:bold;
}
#course .content {
 color: #666666;
 line-height: 180%;
}