* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft YaHei", sans-serif;
}

body {
	line-height: 1.6;
	color: #333;
	background-color: #f3f4f6;
}

/* 顶部导航栏 */
.top-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: transparent;
	transition: all 0.4s ease;
}

.top-header.scrolled {
	background-color: #ff7f00;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.top-bar {
	max-width: 1600px;
	margin: 0 auto;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.welcome-text {
	color: #fff;
	font-size: 14px;
}

.search-box {
	display: flex;
	align-items: center;
}

.search-input {
	padding: 6px 12px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-radius: 20px 0 0 20px;
	outline: none;
	font-size: 14px;
	width: 120px;
	transition: all 0.3s ease;
	margin-right: -4px;
}

.search-input:focus {
	width: 200px;
	background-color: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
}

.search-input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.search-btn {
	padding: 7px 15px;
	background-color: #ff0000;
	border: 1px solid #ff0000;
	color: #fff;
	border-radius: 0 20px 20px 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.search-btn:hover {
	background-color: #b00101;
	border: 1px solid #b00101;
}

/* 主导航 */
.main-nav {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* LOGO区域 */
.logo-area {
	display: flex;
	align-items: center;
	padding: 15px 0;
}

.logo-img {
	width: 50px;
	height: 50px;
	margin-right: 12px;
}

.school-name {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
}

.nav-list {
	display: flex;
	list-style: none;
	align-items: center;
}

.nav-item {
	position: relative;
	margin-left: 5px;
}

.nav-link {
	display: block;
	padding: 25px 18px;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

/* 线性下拉箭头 */
.nav-link.has-submenu::after {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid #fff;
	border-bottom: 1.5px solid #fff;
	transform: rotate(45deg);
	margin-left: 8px;
	margin-bottom: 3px;
	transition: all 0.3s ease;
}

.nav-link:hover {
	color: #fff600;
}

.nav-link.has-submenu:hover::after {
	margin-bottom: -3px;
	transform: rotate(225deg);
	border-color: #fff600;
}

/* 二级菜单 */
.submenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
	padding: 10px 0;
}

/* 二级菜单指示箭头 */
.submenu::before {
	content: "";
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #fff;
}

.nav-item:hover .submenu {
	opacity: 1;
	visibility: visible;
	/* transform: translateX(-50%) translateY(0); */
}

.submenu-item {
	list-style: none;
}

.submenu-link {
	display: block;
	padding: 12px 25px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
}

.submenu-link:hover {
	background-color: #fff5e6;
	color: #ff7f00;
	padding-left: 30px;
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	cursor: pointer;
	z-index: 1001;
}

.mobile-menu-btn span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #fff;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

/* 轮播图 */
.banner {
	width: 100%;
	height: 800px;
	position: relative;
	overflow: hidden;
}

.banner-slides {
	display: flex;
	width: 300%;
	height: 100%;
	transition: transform 0.5s ease;
}

.banner-slide {
	width: 33.333%;
	height: 100%;
	position: relative;
}

.banner-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}

.banner-content {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	z-index: 10;
}

.banner-title {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-desc {
	font-size: 24px;
	margin-bottom: 30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 轮播图左右箭头 */
.banner-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}

.banner-arrow:hover {
	background-color: #ff7f00;
}

.banner-arrow.prev {
	left: 30px;
}

.banner-arrow.next {
	right: 30px;
}

.banner-arrow::before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
}

.banner-arrow.prev::before {
	transform: rotate(-45deg);
	margin-left: 3px;
}

.banner-arrow.next::before {
	transform: rotate(135deg);
	margin-right: 3px;
}

.banner-indicators {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background-color: #ff7f00;
	transform: scale(1.2);
}

/* 主要内容区域 */
.main-content {
	max-width: 1600px;
	margin: 0 auto;
	padding: 60px 20px;
}

.section-title {
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #333;
	position: relative;
}

.section-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 3px;
	background-color: #ff7f00;
	margin: 15px auto 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.nav-link {
		padding: 25px 12px;
		font-size: 16px;
	}

	.banner {
		height: 600px;
	}

	.banner-title {
		font-size: 36px;
	}

	.banner-desc {
		font-size: 20px;
	}

	.school-name {
		font-size: 20px;
	}
}

@media (max-width: 992px) {
	.top-bar {
		display: none;
	}

	.main-nav {
		position: relative;
		/* padding: 15px 20px; */
	}

	.mobile-menu-btn {
		display: flex;
	}

	.nav-list {
		position: fixed;
		top: 0;
		right: -100%;
		width: 300px;
		height: 100vh;
		background-color: #ff7f00;
		flex-direction: column;
		justify-content: flex-start;
		padding-top: 80px;
		transition: right 0.4s ease;
		overflow-y: auto;
	}

	.nav-list.active {
		right: 0;
	}

	.nav-item {
		width: 100%;
		margin-left: 0;
	}

	.nav-link {
		font-size: 16px;
		padding: 15px 25px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.nav-link.has-submenu::after {
		float: right;
		margin-top: 8px;
	}

	.submenu {
		position: static;
		width: 100%;
		background-color: rgba(0, 0, 0, 0.1);
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		border-radius: 0;
		padding: 0;
	}

	.submenu::before {
		display: none;
	}

	.nav-item.active .submenu {
		max-height: 500px;
	}

	.submenu-link {
		font-size: 16px;
		color: #fff;
		padding: 12px 40px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.submenu-link:hover {
		background-color: rgba(255, 255, 255, 0.1);
		color: #fff;
		padding-left: 45px;
	}

	.banner {
		height: 500px;
	}

	.banner-title {
		font-size: 28px;
	}

	.banner-desc {
		font-size: 16px;
	}

	.banner-arrow {
		width: 40px;
		height: 40px;
	}

	.banner-arrow.prev {
		left: 15px;
	}

	.banner-arrow.next {
		right: 15px;
	}
}

@media (max-width: 576px) {
	.banner {
		height: 400px;
	}

	.banner-title {
		font-size: 24px;
	}

	.banner-desc {
		font-size: 14px;
	}

	.banner-btn {
		padding: 10px 25px;
		font-size: 14px;
	}

	.main-content {
		padding: 40px 15px;
	}

	.section-title {
		font-size: 24px;
	}

	.school-name {
		font-size: 18px;
	}

	.logo-img {
		width: 40px;
		height: 40px;
	}

	.nav-list {
		width: 100%;
	}
}

/* 遮罩层 */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}


/* 校园资讯区域 */
/* 校园资讯版块专属样式 */
.section-desc {
	text-align: center;
	color: #666;
	font-size: 16px;
	margin-bottom: 50px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.news-container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 35px;
	align-items: stretch;
	/* 核心：左右两列自动等高 */
}

/* 左侧校园动态区域 */
.news-left {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

/* 沉浸式头条新闻 */
.headline-news {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	height: 480px;
}

.headline-news:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.headline-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.headline-news:hover .headline-img {
	transform: scale(1.05);
}

.headline-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.headline-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 35px;
	color: #fff;
}

.headline-tag {
	display: inline-block;
	background-color: #ff7f00;
	color: #fff;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 15px;
}

.headline-title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #fff;
	text-decoration: none;
	display: block;
	transition: color 0.3s ease;
	line-height: 1.4;
}

.headline-title:hover {
	color: #ffd700;
}

.headline-desc {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: 15px;
	font-size: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.headline-meta {
	display: flex;
	gap: 20px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

/* 新闻列表（带箭头装饰） */
.news-list {
	list-style: none;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.news-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
	border-bottom: 1px solid #f0f0f0;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 20px;
}

.news-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background-color: #ff7f00;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.news-item:hover {
	background-color: #fff9f2;
	padding-left: 25px;
	border-radius: 6px;
}

.news-item:hover::before {
	transform: translateY(-50%) scale(1.3);
}

.news-title {
	color: #333;
	text-decoration: none;
	font-size: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex: 1;
	margin-right: 15px;
	transition: color 0.3s ease;
}

.news-title:hover {
	color: #ff7f00;
}

.news-date {
	color: #999;
	font-size: 13px;
	white-space: nowrap;
}

/* 右侧通知公告区域 */
.news-right {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	padding: 25px;
}

/* 装饰性标题 */
.news-block-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #f5f5f5;
	position: relative;
}

.news-block-header h3 {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	position: relative;
	padding-left: 18px;
}

.news-block-header h3::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 22px;
	background: linear-gradient(180deg, #ff7f00 0%, #ffb366 100%);
	border-radius: 2px;
}

.more-link {
	display: flex;
	align-items: center;
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
}

.more-link::after {
	content: "→";
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.more-link:hover {
	color: #ff7f00;
}

.more-link:hover::after {
	transform: translateX(3px);
}

/* 通知公告列表（带数字序号+卡片式） */
.notice-list {
	list-style: none;
	flex: 1;
	display: flex;
	flex-direction: column;
	/* justify-content: space-between;
	counter-reset: notice-counter; */
}

.notice-item {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	border-radius: 8px;
	transition: all 0.3s ease;
	counter-increment: notice-counter;
	position: relative;
	padding-left: 40px;
}

.notice-item::before {
	content: counter(notice-counter);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	background: linear-gradient(135deg, #ff7f00 0%, #ff9933 100%);
	color: #fff;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.notice-item:hover {
	background-color: #fff5e6;
	transform: translateX(3px);
	box-shadow: 0 2px 8px rgba(255, 127, 0, 0.1);
}

.notice-item:hover::before {
	transform: translateY(-50%) scale(1.1);
}

.notice-title {
	color: #333;
	text-decoration: none;
	font-size: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex: 1;
	margin-right: 10px;
	transition: color 0.3s ease;
}

.notice-title:hover {
	color: #ff7f00;
}

.notice-date {
	color: #999;
	font-size: 12px;
	white-space: nowrap;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.news-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.headline-news {
		height: 320px;
	}

	.headline-content {
		padding: 25px;
	}

	.headline-title {
		font-size: 20px;
	}

	.news-left {
		/* width: 88% */
	}

	.news-right {
		/* width: 88% */
	}
}

@media (max-width: 576px) {
	.section-desc {
		font-size: 14px;
		margin-bottom: 30px;
	}

	.headline-news {
		height: 260px;
	}

	.headline-content {
		padding: 20px;
	}

	.headline-title {
		font-size: 18px;
	}

	.headline-desc {
		display: none;
	}

	.news-right {
		padding: 20px;
	}

	.notice-item {
		padding: 10px 12px;
		padding-left: 35px;
	}
}

/* 学校概况 */
.section-desc {
	text-align: center;
	color: #666;
	font-size: 16px;
	margin-bottom: 50px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.school-container {
	max-width: 1600px;
	margin: 0 auto;
}

.intro-card {
	position: relative;
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
	padding: 60px 80px;
	overflow: hidden;
	transition: all 0.4s ease;
}

.intro-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.motto-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 45px;
	gap: 25px;
}

.motto-line {
	flex: 1;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #ff7f00 50%, transparent 100%);
	max-width: 180px;
}

.motto-text {
	font-size: 28px;
	font-weight: 700;
	background: linear-gradient(135deg, #ff7f00 0%, #ff9933 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 3px;
	white-space: nowrap;
}

.intro-content {
	line-height: 1.8;
	color: #444;
	font-size: 16px;
}

.intro-paragraph {
	margin-bottom: 25px;
	text-indent: 2em;
}

.intro-paragraph:last-child {
	margin-bottom: 0;
}

.decoration-dot {
	position: absolute;
	border-radius: 50%;
	background-color: #ff7f00;
	opacity: 0.1;
	z-index: 0;
}

.dot-1 {
	width: 120px;
	height: 120px;
	top: -40px;
	right: -40px;
}

.dot-2 {
	width: 80px;
	height: 80px;
	bottom: -20px;
	left: -20px;
}

.decoration-line {
	position: absolute;
	background: linear-gradient(135deg, #ff7f00 0%, transparent 100%);
	opacity: 0.15;
	z-index: 0;
}

.line-1 {
	width: 150px;
	height: 3px;
	top: 80px;
	left: 40px;
	transform: rotate(-45deg);
}

.line-2 {
	width: 100px;
	height: 3px;
	bottom: 60px;
	right: 60px;
	transform: rotate(45deg);
}

.banner-btn {
	display: block;
	width: 120px;
	padding: 10px 0px;
	text-align: center;
	background-color: #ff7f00;
	color: #fff;
	text-decoration: none;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	margin: 0px auto;
}

.banner-btn:hover {
	background-color: #e67200;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 127, 0, 0.4);
}

@media (max-width: 992px) {
	.intro-card {
		padding: 45px 50px;
	}

	.motto-text {
		font-size: 24px;
		letter-spacing: 2px;
	}

	.motto-line {
		max-width: 120px;
	}
}

@media (max-width: 576px) {
	.intro-card {
		padding: 30px 25px;
		border-radius: 12px;
	}

	.motto-wrapper {
		flex-direction: column;
		gap: 15px;
		margin-bottom: 10px;
	}

	.motto-line {
		width: 80px;
		max-width: none;
	}

	.motto-text {
		font-size: 20px;
		letter-spacing: 1px;
	}

	.intro-content {
		font-size: 16px;
		text-align: justify
	}

	.intro-paragraph {
		text-indent: 0;
		margin-bottom: 20px;
	}

	.decoration-dot,
	.decoration-line {
		display: none;
	}
}

/* 专业学科 */
.major-section {
	position: relative;
	background: linear-gradient(135deg, #ff7f00 0%, #ff9933 100%);
	padding: 50px 0;
	overflow: hidden;
}

.section-title-white {
	color: #fff;
}

.section-title-white::after {
	background-color: #fff;
}

.section-desc-white {
	color: #ffffff !important;
}

.major-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	position: relative;
	z-index: 1;
}

.major-card {
	position: relative;
	background-color: #fff;
	border-radius: 16px;
	padding: 35px 30px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.major-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.major-card a {
	text-decoration: none;
}

.card-decoration {
	position: absolute;
	top: -20px;
	left: -20px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(255, 127, 0, 0.1) 0%, rgba(255, 153, 51, 0.05) 100%);
}

.major-title {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
}

.major-card:hover .major-title {
	color: #ff7f00;
}

.major-desc {
	color: #666;
	line-height: 1.7;
	font-size: 14px;
	margin-bottom: 20px;
}

.card-line {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #ff7f00 0%, #ff9933 100%);
	border-radius: 2px;
	transition: width 0.3s ease;
}

.major-card:hover .card-line {
	width: 100px;
}

.bg-decoration {
	position: absolute;
	border-radius: 50%;
	z-index: 0;
}

.dot-1 {
	width: 200px;
	height: 200px;
	top: 50px;
	right: -100px;
	background-color: rgba(255, 255, 255, 0.05);
}

.dot-2 {
	width: 150px;
	height: 150px;
	bottom: 80px;
	left: -75px;
	background-color: rgba(255, 255, 255, 0.05);
}

.circle-1 {
	width: 60px;
	height: 60px;
	top: 150px;
	left: 10%;
	border: 2px solid rgba(255, 255, 255, 0.1);
	background-color: transparent;
}

.circle-2 {
	width: 40px;
	height: 40px;
	bottom: 200px;
	right: 15%;
	border: 2px solid rgba(255, 255, 255, 0.1);
	background-color: transparent;
}

@media (max-width: 992px) {
	.major-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.major-section {
		padding: 60px 0;
	}
}

@media (max-width: 576px) {
	.major-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.major-card {
		padding: 25px 20px;
	}

	.major-title {
		font-size: 18px;
	}

	.major-section {
		padding: 50px 0;
	}

	.bg-decoration {
		display: none;
	}
}

/* 教学招生 */
.section-desc {
	text-align: center;
	color: #666;
	font-size: 16px;
	margin-bottom: 50px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.teaching-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.tab-wrapper {
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}


.tab-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #f8f8f8;
	border-bottom: 1px solid #eee;
	padding: 0 20px;
}

.tab-buttons {
	display: flex;
}

.tab-btn {
	padding: 18px 25px;
	border: none;
	background-color: transparent;
	font-size: 16px;
	font-weight: 500;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.tab-btn.active {
	color: #ff7f00;
	background-color: #fff;
}

.tab-btn.active::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #ff7f00 0%, #ff9933 100%);
	border-radius: 3px 3px 0 0;
}

.tab-btn:hover {
	color: #ff7f00;
}

.tab-more-link {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
}

.tab-more-link span {
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.tab-more-link:hover {
	color: #ff7f00;
}

.tab-more-link:hover span {
	transform: translateX(3px);
}

.tab-content {
	flex: 1;
	padding: 25px;
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}

.news-card-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.news-card-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	border-radius: 10px;
	background-color: #fafafa;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.news-card-item:hover {
	background-color: #fff5e6;
	border-left-color: #ff7f00;
	transform: translateX(3px);
	box-shadow: 0 2px 10px rgba(255, 127, 0, 0.08);
}

.item-number {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: linear-gradient(135deg, #ff7f00 0%, #ff9933 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.news-card-item:hover .item-number {
	transform: scale(1.1);
}

.item-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.item-title {
	color: #333;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.3s ease;
}

.item-title:hover {
	color: #ff7f00;
}

.item-date {
	color: #999;
	font-size: 12px;
}

@media (max-width: 992px) {
	.teaching-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 576px) {
	.tab-header {
		padding: 0 15px;
	}

	.tab-btn {
		padding: 18px 15px;
		font-size: 15px;
	}

	.tab-more-link {
		font-size: 13px;
	}

	.tab-content {
		padding: 20px;
	}

	.news-card-item {
		padding: 12px;
		gap: 12px;
	}

	.item-number {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}

	.item-title {
		font-size: 14px;
	}
}

/* 校园掠影 */
.section-desc {
	text-align: center;
	color: #666;
	font-size: 16px;
	margin-bottom: 50px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.campus-section {
	position: relative;
	overflow: hidden;
}

.campus-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	position: relative;
	z-index: 1;
}

.gallery-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	cursor: pointer;
	height: 280px;
}

.gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.gallery-item:hover img {
	transform: scale(1.1);
}


.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
	padding: 30px 20px 20px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	transform: translateY(0);
}

.gallery-title {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	margin: 0;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.bg-decoration {
	position: absolute;
	border-radius: 50%;
	background-color: #ff7f00;
	opacity: 0.05;
	z-index: 0;
}

.dot-1 {
	width: 250px;
	height: 250px;
	top: 100px;
	right: -125px;
}

.dot-2 {
	width: 180px;
	height: 180px;
	bottom: 80px;
	left: -90px;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.campus-gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.gallery-item {
		height: 240px;
	}
}

@media (max-width: 576px) {
	.campus-gallery {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.gallery-item {
		height: 220px;
	}

	.gallery-overlay {
		transform: translateY(0);
		padding: 20px 15px 15px;
	}

	.gallery-title {
		font-size: 14px;
	}

	.bg-decoration {
		display: none;
	}
}

/* 网页底部 */
.site-footer {
	position: relative;
	background: linear-gradient(180deg, #1a202c 0%, #0f1419 100%);
	color: #a0aec0;
	padding-top: 0;
	overflow: hidden;
	margin-top: 0;
}

.footer-top-bar {
	height: 6px;
	background: linear-gradient(90deg, #ff7f00 0%, #ff9933 50%, #ff7f00 100%);
	box-shadow: 0 -2px 15px rgba(255, 127, 0, 0.3);
}

.footer-container {
	position: relative;
	z-index: 1;
	padding: 60px 20px 0;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1.2fr 1fr;
	/* 调整左侧比例适配简介 */
	gap: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
	color: #fff;
	font-size: 19px;
	font-weight: 600;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 12px;
	text-align: left;
}

.footer-col h4::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, #ff7f00 0%, #ff9933 100%);
	border-radius: 2px;
}

.footer-info .footer-col h4 {
	/* padding-left: 44px; */
}

.footer-quick .footer-col h4 {
	/* padding-left: 15px; */
}


.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.school-name {
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	margin: 0;
	text-align: left;
}

.school-intro {
	font-size: 14px;
	line-height: 1.8;
	color: #cbd5e0;
	margin: 0;
	text-align: left;
	max-width: 450px;
}


.contact-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 18px;
	text-align: left;
}

.contact-list li {
	position: relative;
	padding-left: 44px;
	min-height: 32px;
	line-height: 32px;
}

.contact-icon {
	position: absolute;
	left: 0;
	top: 4px;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background-color: rgba(255, 127, 0, 0.1);
	color: #ff7f00;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.contact-text {
	font-size: 14px;
/* 	line-height: 1.6; */
	color: #a0aec0;
	padding-top: 4px;
	text-align: left;
}

.quick-links {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	text-align: left;
}

.quick-links li {
	position: relative;
	padding-left: 15px;
}

.quick-links li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #ff7f00;
	transition: all 0.3s ease;
}

.quick-links a {
	color: #a0aec0;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	position: relative;
	text-align: left;
}

.quick-links a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #ff7f00;
	transition: width 0.3s ease;
}

.quick-links a:hover {
	color: #ff7f00;
}

.quick-links a:hover::after {
	width: 100%;
}

.quick-links li:hover::before {
	transform: translateY(-50%) scale(1.3);
}

.footer-bottom {
	padding: 30px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 13px;
	color: #718096;
}

.copyright-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: center;
}

.copyright-text a{
	color: #718096;
	text-decoration: none;
}
.copyright-text a:hover{
	color: #ffffff;
}

.footer-bg-decoration {
	position: absolute;
	z-index: 0;
	opacity: 0.03;
}

.circle-1 {
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background-color: #ff7f00;
	top: -200px;
	right: -200px;
}

.circle-2 {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background-color: #ff7f00;
	bottom: -150px;
	left: -150px;
}

.line-1 {
	width: 200px;
	height: 2px;
	background-color: #ff7f00;
	top: 150px;
	left: 10%;
	transform: rotate(-45deg);
}

.line-2 {
	width: 150px;
	height: 2px;
	background-color: #ff7f00;
	bottom: 200px;
	right: 15%;
	transform: rotate(45deg);
}

@media (max-width: 992px) {
	.footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.footer-brand {
		grid-column: span 2;
	}

	.school-intro {
		max-width: 100%;
	}
}

@media (max-width: 576px) {
	.footer-container {
		padding-top: 45px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 35px;
		padding-bottom: 35px;
	}

	.footer-brand {
		grid-column: span 1;
	}

	.school-name {
		font-size: 16px;
	}

	.school-intro {
		font-size: 13px;
	}

	.footer-info .footer-col h4,
	.footer-quick .footer-col h4 {
		padding-left: 0;
	}

	.contact-list li {
		padding-left: 44px;
	}

	.quick-links li {
		padding-left: 15px;
	}

	.footer-bottom {
		padding: 25px 0;
	}

	.copyright-text {
		font-size: 12px;
	}
}

/* 内容页 */
.subpage-banner {
	position: relative;
	width: 100%;
	height: 380px;
	overflow: hidden;
	margin-top: 0;
}

.banner-bg img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.subpage-banner:hover .banner-bg img {
	transform: scale(1.05);
}

.banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}


/* 二级页面基础样式 */
.subpage-content {
	padding-top: 50px;
	padding-bottom: 80px;
}

/* 面包屑导航 */
.breadcrumb {
	margin-bottom: 30px;
	font-size: 14px;
	color: #666;
}

.breadcrumb a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb a:hover {
	color: #ff7f00;
}

.breadcrumb-separator {
	margin: 0px;
	color: #999;
}

.breadcrumb-current {
	color: #ff7f00;
	font-weight: 500;
}

/* 主体内容容器 */
.page-container {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 40px;
}

/* 左侧侧边栏 */
.sidebar {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.sidebar-box {
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.sidebar-title {
	background: linear-gradient(135deg, #ff7f00 0%, #ff9933 100%);
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	padding: 18px 20px;
	margin: 0;
}

.sidebar-nav {
	list-style: none;
	padding: 10px 0;
}

.sidebar-nav-item {
	border-bottom: 1px solid #f5f5f5;
}

.sidebar-nav-item:last-child {
	border-bottom: none;
}

.sidebar-nav-item a {
	display: block;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	font-size: 15px;
	transition: all 0.3s ease;
	position: relative;
}

.sidebar-nav-item a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: #ff7f00;
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.sidebar-nav-item a:hover,
.sidebar-nav-item.active a {
	color: #ff7f00;
	background-color: #fff5e6;
	padding-left: 25px;
}

.sidebar-nav-item a:hover::before,
.sidebar-nav-item.active a::before {
	transform: scaleY(1);
}

/* 侧边栏联系卡片 */
.sidebar-card {
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	padding: 25px 20px;
	text-align:left;
}

.sidebar-card h4 {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
}

.sidebar-card p {
	font-size: 14px;
	color: #666;
	margin-bottom: 12px;
}

/* 右侧内容容器 */
.content-wrapper {
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	padding: 40px;
}

/* 新增文章头部样式 */
.article-header {
	margin-bottom: 35px;
	text-align: center;
}

.article-title {
	font-size: 28px;
	font-weight: 700;
	color: #333;
	line-height: 1.4;
	margin-bottom: 20px;
}

.article-meta {
	font-size: 14px;
	color: #999;
	margin-bottom: 25px;
}

.meta-item {
	margin: 0 5px;
}

.meta-separator {
	color: #ddd;
	margin: 0 10px;
}

.article-divider {
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, #f3f4f6 0%, #f3f4f6 100%);
	margin: 0 auto;
	border-radius: 2px;
}

/* 文章正文 */
.article-content {
	line-height: 1.8;
	color: #444;
	font-size: 16px;
}

.article-content p {
	margin-bottom: 20px;
	/* text-indent: 2em; */
}


.article-content h2 {
	font-size: 22px;
	font-weight: 600;
	color: #333;
	margin: 35px 0 20px;
	padding-left: 15px;
	border-left: 4px solid #ff7f00;
}

/* 内容图片 */
.content-image {
	margin: 30px 0;
	text-align: center;
}

.content-image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
	font-size: 14px;
	color: #999;
	margin-top: 10px;
	text-indent: 0;
}

/* 内容列表 */
.content-list {
	margin: 20px 0;
	padding-left: 2em;
}

.content-list li {
	margin-bottom: 10px;
	position: relative;
	padding-left: 15px;
}

.content-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #ff7f00;
}

/* 文章底部标签 */
.article-footer {
	margin-top: 40px;
	padding-top: 25px;
	border-top: 1px solid #eee;
}

.article-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.tag-title {
	color: #666;
	font-size: 14px;
	font-weight: 500;
}

.tag {
	display: inline-block;
	padding: 5px 12px;
	background-color: #fff5e6;
	color: #ff7f00;
	text-decoration: none;
	border-radius: 15px;
	font-size: 13px;
	transition: all 0.3s ease;
}

.tag:hover {
	background-color: #ff7f00;
	color: #fff;
}

/* 上一篇/下一篇导航 */
.article-nav {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.prev-article,
.next-article {
	max-width: 45%;
}

.prev-article span,
.next-article span {
	color: #999;
	font-size: 14px;
}

.prev-article a,
.next-article a {
	color: #333;
	text-decoration: none;
	font-size: 15px;
	transition: color 0.3s ease;
	display: block;
	margin-top: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.prev-article a:hover,
.next-article a:hover {
	color: #ff7f00;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.subpage-banner {
		height: 300px;
	}

	.banner-content h1 {
		font-size: 36px;
	}

	.banner-content p {
		font-size: 16px;
	}

	.subpage-content {
		padding-top: 40px;
	}

	.page-container {
		grid-template-columns: 1fr;
	}

	.sidebar {
		order: 2;
	}

	.content-wrapper {
		order: 1;
	}

	.article-title {
		font-size: 24px;
	}
	.article-content p img{
		width:100%;
		height: 100%;
	}
	.banner-bg img{
		width: auto !important;
	}
}

@media (max-width: 576px) {
	.subpage-banner {
		height: 220px;
	}

	.banner-content h1 {
		font-size: 28px;
		letter-spacing: 1px;
	}

	.banner-line {
		width: 60px;
		margin-bottom: 15px;
	}

	.banner-content p {
		font-size: 14px;
	}

	.subpage-content {
		padding-top: 30px;
		padding-bottom: 50px;
	}

	.content-wrapper {
		padding: 25px 20px;
	}

	.article-title {
		font-size: 20px;
		text-align: left;
	}

	.article-meta {
		text-align: left;
		font-size: 13px;
	}

	.article-divider {
		margin: 0 0 0 0;
	}

	.article-content {
		font-size: 15px;
	}

	.article-content h2 {
		font-size: 18px;
	}

	.article-nav {
		flex-direction: column;
	}

	.prev-article,
	.next-article {
		max-width: 100%;
	}
}


/* 新闻列表 */
.news-list-container {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.news-list-item {
	display: flex;
	gap: 20px;
	padding: 20px;
	border-radius: 12px;
	background-color: #fafafa;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.news-list-item:hover {
	background-color: #fff;
	border-left-color: #ff7f00;
	transform: translateX(3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.news-thumb {
	flex-shrink: 0;
	width: 240px;
	height: 160px;
	border-radius: 8px;
	overflow: hidden;
}

.news-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.news-list-item:hover .news-thumb img {
	transform: scale(1.05);
}

.news-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.news-titles {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 10px;
	line-height: 1.4;
}

.news-titles a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.news-titles a:hover {
	color: #ff7f00;
}

.news-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin: 0 0 15px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-meta {
	display: flex;
	gap: 20px;
	font-size: 13px;
	color: #999;
}

.news-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.page-btn {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 6px;
	background-color: #f5f5f5;
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
}

.page-btn:hover {
	background-color: #ff7f00;
	color: #fff;
}

.page-btn.active {
	background-color: #ff7f00;
	color: #fff;
	font-weight: 500;
}

.page-btn.prev-btn,
.page-btn.next-btn {
	padding: 8px 20px;
}

@media (max-width: 768px) {
	.news-list-item {
		flex-direction: column;
		gap: 15px;
	}

	.news-thumb {
		width: 100%;
		height: 200px;
	}

	.news-title {
		font-size: 16px;
	}

	.news-pagination {
		gap: 5px;
	}

	.page-btn {
		padding: 6px 12px;
		font-size: 13px;
	}
}

/* 校园掠影 */
.gallery-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	position: relative;
	z-index: 1;
}

.gallery-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	cursor: pointer;
	height: 220px;
}

.gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
	padding: 30px 15px 15px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	transform: translateY(0);
}

.gallery-title {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	margin: 0;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


.gallery-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.gallery-page-btn {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 6px;
	background-color: #f5f5f5;
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
}

.gallery-page-btn:hover {
	background-color: #ff7f00;
	color: #fff;
}

.gallery-page-btn.active {
	background-color: #ff7f00;
	color: #fff;
	font-weight: 500;
}

.gallery-page-btn.prev-btn,
.gallery-page-btn.next-btn {
	padding: 8px 20px;
}


.gallery-bg-decoration {
	position: absolute;
	border-radius: 50%;
	background-color: #ff7f00;
	opacity: 0.03;
	z-index: 0;
}

.dot-1 {
	width: 200px;
	height: 200px;
	top: 100px;
	right: 50px;
}

.dot-2 {
	width: 150px;
	height: 150px;
	bottom: 80px;
	left: 30%;
}

@media (max-width: 992px) {
	.gallery-container {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}

	.gallery-item {
		height: 200px;
	}
}

@media (max-width: 576px) {
	.gallery-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.gallery-item {
		height: 180px;
	}

	.gallery-overlay {
		transform: translateY(0);
		padding: 20px 10px 10px;
	}

	.gallery-title {
		font-size: 14px;
	}

	.gallery-pagination {
		gap: 5px;
	}

	.gallery-page-btn {
		padding: 6px 12px;
		font-size: 13px;
	}

	.gallery-bg-decoration {
		display: none;
	}
}

/*文章分页样式*/
.clear{
	clear: both;
	width: 100%;
}
#fenye {
	clear: both;
	width: 100%;
	display: flex;
	justify-content: center;
}

#fenye a {
	width: 28px;
	text-align: center;
	float: left;
	border: 1px solid #bfbfc7;
	background: #fff;
	height: 28px;
	font-size: 12px;
	color: #666;
	line-height: 28px;
	margin-left: 5px;
	border-radius: 3px;
	display: inline-block;
	text-decoration: none;
}

#fenye .prev,
#fenye .next {
	width: 60px;
}

#fenye a.curr {
	background: #bfbfc7;
	border: 1px solid #bfbfc7;
	color: #fff;
}

#fenye a:hover {
	background: #bfbfc7;
	border: 1px solid #bfbfc7;
	color: #fff;
	text-decoration: none
}

#pageNext {
	margin: 10px;
}

#pageNext .prev,
#pageNext .next {
	text-align: center;
	width: 60px;
}

#pageNext a.curr {
	background: #bfbfc7;
	border: 1px solid #bfbfc7;
	color: #fff;
}

#pageNext a.curr span {
	color: #fff !important;
}

#pageNext a {
	width: 28px;
	text-align: center;
	float: left;
	border: 1px solid #bfbfc7;
	background: #fff;
	height: 28px;
	font-size: 12px;
	color: #666;
	line-height: 28px;
	margin-left: 5px;
	border-radius: 3px;
}

#realname {
	height: 30px;
	border: 1px solid #ddd;
}

#b1 {
	padding: 5px 10px;
	background: #ff7d02;
	color: #fff;
	border: 1px solid #ff7d02;
	border-radius: 3px;
}

.fenyetips {
	display: none
}

#pagelist {
	line-height: 22px;
	color: #666;
	padding: 15px;
	text-align: center;
}

#pagelist a {
	width: 28px;
	text-align: center;
	float: left;
	border: 1px solid #bfbfc7;
	background: #fff;
	height: 28px;
	font-size: 12px;
	color: #666;
	line-height: 28px;
	margin-left: 5px;
	border-radius: 3px;
}

#pagelist a.next,
#pagelist a.prev {
	width: 60px;
}

#pagelist a.curr {
	background: #bfbfc7;
	border: 1px solid #bfbfc7;
	color: #fff;
}

#pagelist a:hover {
	background: #bfbfc7;
	border: 1px solid #bfbfc7;
	color: #fff;
	text-decoration: none
}

#pagelist a img {
	display: block;
	margin: 0 auto;
	margin-top: 12px;
}

#pagelist span {
	line-height: 28px;
	font-size: 13px;
	height: 28px;
	margin-left: 10px;
}

#pagelist span#totalpage {
	margin: 0;
}

.fenye a img {
	display: block;
	margin: 0 auto;
	margin-top: 12px;
}
.tit{
	font-size: 14px;
	width: 100%;
	clear: both;
	margin-bottom: 20px;
}