.inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;      /* 清除浮动 */
	box-sizing: border-box;
	padding: 0 10px;       /* 两边内边距 */
}

.inner img {
	max-width: 100%;
	height: auto;          /* 高度自适应，避免拉伸 */
	display: block;        /* 去除下方间隙 */
}

.mt30 {
	margin-top: 30px;
}

.inner2 {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.inner3 {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.iconfont {
	display: inline-block;
	vertical-align: middle;
}
.header {
	min-width: auto;       /* 取消固定最小宽度 */
	width: 100%;           /* 宽度撑满屏幕 */
	/* max-width: 1200px;    最大宽度不超过1200 */
	height: auto;          /* 高度自动 */
	padding: 20px 10px;    /* 上下20px，左右10px间距，防止贴边 */
	margin: 0 auto;        /* 居中 */
	background: url('/template/1/bsjsxy/images/hdbg.jpeg') no-repeat center center;
	background-size: cover;
	box-sizing: border-box;
}

/*导航栏样式基本样式 */
.menu {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}

.menu ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	text-align: center;
	padding: 0;
	margin: 0;
}

.menu-item {
	flex: 1;                      /* 平均分配父容器宽度 */
	text-align: center;
	position: relative;
	padding: 0;                  /* 取消原先 padding，统一放到 a 中 */
	box-sizing: border-box;
}

.menu-item a {
	display: block;              /* 占满整个 .menu-item 区域 */
	padding: 10px 0;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
}

.menu-drop {
	text-align: center;
	width: 100%;
	display: none;
	position: absolute;
	background-color: #2391e8;
	color: #333;
	top: 100%;
	left: 0;
	z-index: 1000;
}
.menu-drop a {
	display: block;          /* 让 a 成为块级元素，占满整行 */
	width: 100%;             /* 沾满 menu-drop */
	text-decoration: none;
}

.menu-drop a li {
	display: block;          /* 关键点1：li 也强制设为块级 */
	width: 100%;             /* 关键点2：撑满 a（虽然结构不标准） */
	text-align: center;
	color: #fff;
	background-color: #2391e8;
}

.menu-drop a:hover li {
	background-color: #1376c7;
	padding: 8px 0;
}

/*补充active样式 */
.menu .menu-item.active {
	background-color: #2391e8;
}

/* 移动端菜单按钮 */
.menu-toggle {
	display: none;
	color: #fff;
	font-size: 26px;
	padding: 10px 20px;
	cursor: pointer;
}

/* 移动端样式 */
@media screen and (max-width: 768px) {
	.menu-toggle {
		display: block;
		padding: 5px 8px;
		font-size: 22px;
		color: #fff;
		cursor: pointer;
	}
	.menu {
		display: none;
		width: 100%;
		background-color: #1376c7;
	}
	.menu ul {
		flex-direction: column;
	}
	.menu-item {
		border-bottom: 1px solid #1e8ae6;
	}
	.menu-item a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 12px 20px;
		font-size: 18px;
	}
	.menu-drop {
		position: relative;
		background-color: #2391e8;
		display: none;
	}
	.menu-item:hover .menu-drop {
		display: none; /* 关闭移动端 hover */
	}
	.menu-item.open .menu-drop {
		display: block;
	}
}



/* 主轮播容器设置 */
.swiper-banner3 .swiper-news{
	height: 240px;
	width: 340px;
	margin: 0 auto; /* 水平居中 */
	overflow: hidden;
}

/* 招生就业 */
.swiper-banner3 .swiper-zsjy{
	height: 240px;
	width: 465px;
	margin: 0 auto; /* 水平居中 */
	overflow: hidden;
}

/* 系部建设-教育艺术系 */
.swiper-banner3 .swiper-xbjs-jyysx{
	height: 280px;
	width: 440px;
	margin: 0 auto; /* 水平居中 */
	overflow: hidden;
}

/* 系部建设-康护管理系 */
.swiper-banner3 .swiper-xbjs-khglx{
	height: 280px;
	width: 440px;
	margin: 0 auto; /* 水平居中 */
	overflow: hidden;
}

/* 系部建设-车辆工程系 */
.swiper-banner3 .swiper-xbjs-clgcx{
	height: 280px;
	width: 440px;
	margin: 0 auto; /* 水平居中 */
	overflow: hidden;
}

.swiper-news .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* or contain, 视实际效果而定 */
	display: block;
}
.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* or contain, 视实际效果而定 */
	display: block;
}



/* 主轮播容器设置 */
.swiper-banner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	max-height: 340px;
	overflow: hidden;
}

.swiper-banner .swiper-pagination {
	bottom: 10px;
	text-align: center;
}


.swiper-main {
	width: 100%;
	position: relative;
	height: 340px;
}

.swiper-wrapper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	width: 100%;
	height: 100%;
}

.swiper-slide img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}



.department-flex-wrapper {
	display: flex;
	align-items: center;
	padding-right:  20px;
}

/* 左侧竖排文字标题 */
.vertical-title-wrapper {
	height: 260px;
	width: 60px;
	margin: 0 20px;
}

.vertical-title {
	writing-mode: vertical-rl; /* 从右往左竖排 */
	text-orientation: upright; /* 直立显示中文 */
	font-size: 24px;
	height: 100%;
	text-align: center;
	font-weight: bold;
	color: #FFFFFF;
	border-radius: 0 20px 0 20px;
	background-color:#0d689c;
}


/* 系部风采轮播容器设置 */
.swiper-banner2 {
	height: 300px;
	width: 1200px;
	margin: 0 auto; /* 水平居中 */
	overflow: hidden;
	background: #f5f5f5;
}
/* 控制整个轮播容器大小 */
.swiper-department {
	height: 300px;  /* 容器总高度 */
	margin: 0 auto; /* 水平居中 */
	overflow: hidden;
}
.swiper-department .swiper-wrapper {
	padding-right: 20px; /* 让最后一张右边有空隙 */
	box-sizing: content-box; /* 确保 padding 不影响整体布局 */
}

/* 控制单个轮播项样式 */
.swiper-department .swiper-slide {
	width: 320px;      /* 单张图片宽度 */
	height: 280px;
	background: #f9f9f9;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.swiper-department .swiper-slide img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	align-items: center; /* 让图片和文字都水平居中 */
}

.swiper-department .swiper-slide p {
	margin-top: 10px;
	font-size: 16px;
	font-weight: bold;
	color: #333;
	text-align: center; /* 文字内容居中 */
}

/* 主轮播容器设置 */
.swiper-banner3 .swiper-collegestyle{
	max-width: 760px;  /* 可设置最大宽度，避免大屏太宽 */
	height: 200px;      /* 容器总高度 */
	margin: 0 auto;     /* 水平居中 */
	overflow: hidden;
}

/* 控制单个轮播项样式 */
.swiper-collegestyle.swiper-slide {
	width: 340px;      /* 单张图片宽度 */
	height: 280px;
	background: #f9f9f9;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.swiper-collegestyle .swiper-slide img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.swiper-slide {
	box-sizing: border-box;
	width: auto; /* 自动适应 */
}

.swiper-collegestyle .swiper-slide p {
	margin-top: 10px;
	font-size: 16px;
	font-weight: bold;
	color: #333;
}

.title {
	border-bottom: #cdcdcd 2px solid;
	height: 60px; margin-bottom:20px
}
.title-l {
	border-bottom: #1277c7 4px solid;
	display: inline-block;
	height: 60px;
	line-height: 60px;
}
.borderLf {
	border-left: 1px solid #e5e5e5;
}
a {
	text-decoration: none;
	color: black;
}
/**
从8 改成5
 */
.color-2 {
	background-color: #24a8e6;
}
.color-4 {
	background-color: #0062ad;
}
.footer {
	border-top: 6px solid #1376c7;
	color: #cad6ea;
}
.hr {
	border-top: 1px solid #4365a0;
}
.main-second {
	width: 1200px;
	margin: 0 auto 50px;
	display: flex;
	box-shadow: 2px 2px 5px 2px #e6e6e6;
	background-color: #fff;
	box-sizing: border-box;
}
.main-second-l {
	width: 210px;
	background-color: #f0f0f0;
}
.main-second-r {
	flex: 1;
	padding: 20px;
	box-sizing: border-box;
}
.fs48 {
	font-size: 48px;
}
/*.main-second-r {*/
/*	margin-left: 260px;*/
/*	height: 600px; !* 固定高度 *!*/
/*	overflow-y: auto; !* 超出滚动 *!*/
/*	padding: 20px;*/
/*	box-sizing: border-box;*/
/*}*/
.page a {
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	border: 1px solid #e5e5e5;
	color: #666;
	vertical-align: middle;
	margin-left: 5px;
}
.page a.active {
	background-color: #24a8e6;
	border-color: #24a8e6;
	color: #fff;
}
.main-second-menu li {
	padding-bottom: 10px;
	border-bottom: 1px solid #e5e5e5;
	float: none;
}
.main-second-menu a {
	display: block;
	line-height: 34px;
	border-left: 5px solid transparent;
	position: relative;
	padding-left: 30px;
	color: #666;
	font-size: 15px;
}
.main-second-menu a:before {
	content: '>';
	position: absolute;
	right: 0;
	top: 0;
}
.main-second-menu a.active {
	border-left-color: #24a8e6;
	color: #24a8e6;
}
.news-list-second li {
	float: none;
}
ul li {
	float: none;
}
/*pages*/
.pagination {
	height: 34px;
	text-align: center;
}
.pagination li {
	display: inline-block;
	height: 34px;
	margin-right: 5px;
}
.pagination li a {
	float: left;
	display: block;
	height: 32px;
	line-height: 32px;
	padding: 0 12px;
	font-size: 16px;
	border: 1px solid #dddddd;
	color: #555555;
	text-decoration: none;
}
.pagination li a:hover {
	background: #f5f5f5;
	color: #0099ff;
}

/* 快捷入口样式 */
.entry-link {
	display: block;
	text-decoration: none;
}

.entry-btn {
	height: 40px;
	line-height: 40px;
	border-radius: 4px;
	text-align: center;
	background-size: cover;
	background-position: center;
	font-weight: bold;
	font-size: 20px;
	margin: 0;
}

.entry-link:hover .entry-btn {
	opacity: 0.9;                  /* 微微变暗 */
	transform: scale(1.02);        /* 稍微放大 */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);  /* 添加阴影 */
	transition: all 0.3s ease;     /* 平滑动画 */
}


.entry-blue { color: #3733b2; }
.entry-orange { color: #ee7d25; }
.entry-green { color: #02b88b; }
.entry-cyan  { color: #12affc; }


.entry-link:hover .entry-btn {
	opacity: 0.9;                  /* 微微变暗 */
	transform: scale(1.02);        /* 稍微放大 */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);  /* 添加阴影 */
	transition: all 0.3s ease;     /* 平滑动画 */
}


.bg-xsbm { background-image: url('../images/bg1.png'); }
.bg-xyfc { background-image: url('../images/bg2.png'); }
.bg-xbjs { background-image: url('../images/bg3.png'); }
.bg-zlnb { background-image: url('../images/bg4.png'); }



.pagebar{clear:both;margin:20px 0;text-align:center;}
.pagebar a:hover{color:#1376c7;}
.pagebar span a{color:#333;}

.footer a{ color:#cad6ea}

#maximg img{ max-width:100%; height:auto !important}

.flex.mb20 {
	display: flex;
	flex-wrap: wrap;
	gap: 20px; /* 元素间距 */
}

.flex.mb20 > .swiper-banner3 {
	flex: 0 0 380px;
}

.flex.mb20 > ul {
	flex: 1;
	min-width: 300px;
}

/*标题*/
.highlight-label {
	background-color: #0d689c;
	color: #fff;
	padding: 4px 8px;
	display: inline-block; /* 可选，使其表现为标签样式 */
	border-radius: 2px;     /* 可选，增加圆角美观性 */
	font-size: 20px;        /* 可选，控制字号 */
}



/*---------------------返回按钮样式---------------------------------*/
.btn-back {
	width: 180px;
	background-color: #0062ad;
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 4px;
	font-size: 18px;
	cursor: pointer;
	margin: 0 5px;
	writing-mode: horizontal-tb;
	letter-spacing: 0;
	white-space: nowrap;
	transition: background-color 0.3s;
}

.btn-back:hover {
	background-color: #1c90c4; /* 可选：悬停效果 */
}

/*---------------------日期样式---------------------------------*/
.date-text {
	color: #2e00d4;               /* 灰色文字 */
}


.leader-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.leader-item {
	width: 300px;
	display: flex;
	align-items: center;
	background: #fff;
	padding: 15px;
	box-shadow: 0 0 8px rgba(0,0,0,0.1);
	border-radius: 8px;
	transition: transform 0.3s;
}

.leader-item:hover {
	transform: translateY(-4px);
}

.leader-item img {
	width: 80px;
	height: 100px;
	object-fit: cover;
	border-radius: 6px;
	margin-right: 15px;
}

.leader-info {
	flex: 1;
}

.leader-name {
	font-size: 18px;
	font-weight: bold;
	color: #333;
}

.leader-title {
	font-size: 14px;
	color: #666;
	margin-top: 6px;
}

/* 移动端响应式 */
@media screen and (max-width: 768px) {
	.leader-item {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
	}

	.leader-item img {
		margin-bottom: 10px;
	}

	.inner2, .inner3 {
		width: 100%;
		padding: 0 10px;
	}

	.col-4, .col-9, .col-13, .col-14 {
		width: 100% !important;
	}

	.inner2, .inner3 {
		flex-direction: column;
	}

	/* 主轮播图移动端适配 */
	.swiper-banner {
		max-height: none;
	}

	.swiper-main {
		height: auto;
	}

	.swiper-slide,
	.swiper-wrapper {
		height: auto;
	}

	.swiper-slide img {
		width: 100%;
		height: auto;
		object-fit: contain;
	}

	.swiper-banner3,
	.swiper-banner2 {
		width: 100%;
	}

	.swiper-department {
		width: 100%;
	}

	.vertical-title-wrapper {
		display: none; /* 小屏可隐藏竖排标题 */
	}

	.entry-btn {
		font-size: 16px;
		padding-right: 10% !important;
	}
	/* 顶部标题栏 */
	.header {
		padding: 0 0 20px 0;
	}

	.inner {
		padding: 0 5px;
	}
	.inner img {
		max-height: 120px; /* 手机适当缩小logo */
		width: auto;       /* 宽度自动 */
	}

	.mt30 {
		margin-top: 15px;
	}



	.main-second {
		width: 100%;
		flex-direction: column;
		box-shadow: none;
	}

	.main-second-r {
		padding: 10px;
	}

	.fs48 {
		font-size: 28px;
	}

	.title,
	.title-l {
		height: auto;
		line-height: normal;
		font-size: 18px;
	}
}


/* 组织树样式 */
.org-tree {
	font-family: "微软雅黑", sans-serif;
	font-size: 14px;
	line-height: 1.8;
}

.org-tree ul {
	list-style: none;
	padding-left: 20px;
	position: relative;
}

.org-tree ul::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	border-left: 1px solid #ccc;
	height: 100%;
}

.org-tree li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 5px;
}

.org-tree li::before {
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	width: 10px;
	border-top: 1px solid #ccc;
}

.org-tree span {
	color: #0d689c;
	font-weight: bold;
	cursor: pointer;
	user-select: none;
}

.org-tree li > ul {
	margin-top: 5px;
}

/* 可选：收缩效果 */
.org-tree span:hover {
	text-decoration: underline;
}

/* d德育工作学习样式 */
.job-text {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 15px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	margin-bottom: 20px;
}

.job-content {
	display: flex;
	flex: 1;
}

.new-dot {
	color: #0d689c;
	font-size: 18px;
	line-height: 1.5;
	margin-right: 10px;
}

.educa-text-box {
	flex: 1;
}

.new-title-box {
	font-weight: bold;
	font-size: 16px;
	color: #333;
	margin-bottom: 8px;
}

.new-text.commen-cursor.educa-date {
	font-size: 14px;
	color: #999;
	margin-bottom: 10px;
}

.educa-content {
	font-size: 14px;
	color: #555;
	line-height: 1.8;
}

.news-img {
	width: 160px;        /* 图片加大 */
	height: 120px;       /* 等比例裁剪 */
	object-fit: cover;   /* 保持比例裁切 */
	border-radius: 6px;
	margin-left: 15px;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* 响应式 */
@media (max-width: 768px) {
	.job-text {
		flex-direction: column;
		align-items: flex-start;
	}

	.news-img {
		width: 100%;
		height: auto;
		margin-left: 0;
		margin-top: 10px;
	}

	/*移动端隐藏底部导航栏*/
	.hide-on-mobile {
		display: none !important;
	}
}

/*-------------------------------页脚--------------------------------*/

/* 默认（桌面）样式 */

.footer-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center; /* 实现垂直居中 */
	padding: 20px 0;
}

/* 二维码+说明区域固定宽度 */
.footer-info .code,
.footer-info .qr-desc {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footer-info .qr-desc {
	text-align: left;
	margin-left: 20px;
}

.footer-info .footer-text {
	flex: 1;
}

/* ---------- 移动端适配 ---------- */
@media (max-width: 768px) {
	.footer-info {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-info .code,
	.footer-info .qr-desc {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		margin-bottom: 10px;
	}

	.footer-info .qr-desc {
		margin-left: 10px;
	}

	.footer-info .footer-text {
		width: 100%;
		margin-top: 10px;
	}

	.footer-info .footer-text p {
		margin-left: 0 !important;
	}
}

/*---------学校简介--------*/
@media screen and (max-width: 768px) {
	#main {
		width: 100% !important;
		padding: 10px;
	}

	.main-second {
		width: 100% !important;
		flex-direction: column;
	}

	.main-second-l, .main-second-r {
		width: 100% !important;
		float: none !important;
	}

	.cadre-team {
		flex-direction: column;
		align-items: center;
	}

	.cadre-team img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}

	.cadre-team-box {
		width: 100%;
		padding: 10px;
	}

	.main-second-menu {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		justify-content: center;
	}

	.main-second-menu li {
		width: auto;
		padding: 5px 10px;
	}

	/* 优化新闻图片在移动端的显示 */
	.news-img {
		width: 100%;
		height: auto;
		max-width: 300px; /* 或按实际需要限制最大宽度 */
		margin: 10px 0 0 0;  /* 上下间距更舒适 */
		display: block;
	}

	/* 调整新闻条目样式 */
	.job-text {
		padding: 10px;
	}

	.job-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.educa-text-box {
		margin-top: 10px;
	}

	.new-dot {
		display: none; /* 小圆点可考虑隐藏，避免视觉干扰 */
	}
}


/*----------图片盒子适配--------------*/
/* 图片外层容器：通用布局 */
.image-layout-box {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  
  /* 通用图片项：统一高度，裁剪显示 */
  .image-item {
	width: 100%;
	height: 200px; /* 设置统一高度 */
	display: block;
	border-radius: 6px;
	transition: transform 0.3s ease;
	object-fit: cover;         /* 裁剪填充 */
	object-position: center;   /* 居中裁剪 */
  }
  
  .image-item:hover {
	transform: scale(1.03);
  }
  

/* 中等屏幕：最多 3 列 */
@media screen and (max-width: 1024px) {
	.image-item {
		max-width: calc(33.33% - 10px);
	}
}

/* 小屏幕：最多 2 列 */
@media screen and (max-width: 768px) {
	.image-item {
		max-width: calc(50% - 10px);
	}
}

/* 超小屏幕：1 列显示 */
@media screen and (max-width: 480px) {
	.image-item {
		max-width: 100%;
	}
}





/* 科研工作图片适配 */
.kygz-works-box {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center; /* 图片居中显示 */
  }
  
  .kygz-img {
	width: 450px;
	max-width: 100%; /* 防止溢出 */
	height: auto;
	border-radius: 6px;
	transition: transform 0.3s ease;
	object-fit: cover;
  }
  
  .kygz-img:hover {
	transform: scale(1.03);
  }
  
  /* 移动端适配 */
  @media screen and (max-width: 768px) {
	.kygz-img {
	  width: 100%;
	}
  }
  


/* 移动端不显示小尖嘴 */
  @media screen and (max-width: 768px) {
	.main-second-menu a::before {
	  content: none !important;
	  display: none !important;
	}
  }
  


  /* ----------------------------二维码---------------------------------- */
  .qrcode-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.6);
  }
  
  .qrcode-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 20px 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .qrcode-content img {
	width: 200px;
	height: 200px;
	margin-bottom: 10px;
  }
  
  .close-btn {
	position: absolute;
	right: 10px;
	top: 5px;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
  }
  