* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color: #f8f9fa;
	color: #333;
	line-height: 1.5;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ========= 导航栏：透明背景，浮于轮播图上方 ========= */
.header-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: transparent;
	/* 完全透明背景 */
	box-shadow: none;
	transition: all 0.3s;
}

/* 下拉菜单背景需要保留白色，否则看不清 */
.dropdown-menu {
	background: white;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 20px;
	flex-wrap: wrap;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* logo图片颜色反白以适应任何背景（因为导航透明，logo需要鲜明） */
.logo-img {
	height: 55px;
	width: auto;
	/* filter: brightness(0) invert(1); */
	/* 白色logo */
}

.logo-text {
	font-size: 1.4rem;
	font-weight: bold;
	color: #ffffff;
	letter-spacing: 1px;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 32px;
	margin: 0;
	padding: 0;
}

/* 导航链接文字加大 */
.nav-menu li a {
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: 600;
	color: #ffffff;
	transition: all 0.3s;
	padding: 8px 0;
	display: inline-block;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav-menu li a:hover {
	opacity: 0.85;
	color: #ffd966;
	transform: translateY(-2px);
}

.dropdown {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: 45px;
	left: 0;
	background: white;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	min-width: 170px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	z-index: 101;
	list-style: none;
	padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
}

.dropdown-menu li a {
	padding: 10px 20px;
	display: block;
	font-size: 1rem;
	color: #2c3e50;
	text-shadow: none;
	font-weight: 500;
}

.dropdown-menu li a:hover {
	background-color: #f0f7ff;
	color: #0056b3;
}

.menu-toggle {
	display: none;
	font-size: 1.8rem;
	cursor: pointer;
	color: #ffffff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ========= 轮播图区域（相对定位，承载异形背景） ========= */
.carousel-section {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #000;
}

.carousel-container {
	position: relative;
	width: 100%;
	height: auto;
}

.carousel-slides {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.carousel-slide {
	flex: 0 0 100%;
	position: relative;
}

.carousel-slide img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

@media (min-width: 1200px) {
	.carousel-slide img {
		height: 940px;
		object-fit: cover;
	}
}

@media (max-width: 1199px) {
	.carousel-slide img {
		height: auto;
		min-height: 500px;
		object-fit: cover;
	}
}

/* 左右箭头按钮（高于异形背景） */
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	font-size: 2rem;
	padding: 10px 18px;
	cursor: pointer;
	z-index: 15;
	/* 高于异形背景 */
	border-radius: 50%;
	transition: background 0.3s;
}

.carousel-btn:hover {
	background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
	left: 20px;
}

.next-btn {
	right: 20px;
}

.dots {
	text-align: center;
	position: absolute;
	bottom: 25px;
	width: 100%;
	z-index: 15;
}

.dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	margin: 0 5px;
	cursor: pointer;
}

.dot.active {
	background: #0056b3;
}

/* ========= 异形背景图，只遮盖轮播图下边部分 ========= */
.carousel-shape {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 13%;
	background-image: url(/Template/zhaosheng/pic/banner_bgpng.fw.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	z-index: 5;
	pointer-events: none;
	/* 让异形图不干扰点击按钮 */
}

/* 快速入口等后续样式保持原有 */
.quick-links {
	background: #fff;
	padding: 50px 0;
	position: relative;
	z-index: 6;
}

.quick-grid {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.quick-card {
	flex: 1;
	border-radius: 16px;
	padding: 35px 20px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	color: white;
}

.quick-card:nth-child(1) {
	background: #2c7da0;
}

.quick-card:nth-child(2) {
	background: #2a9d8f;
}

.quick-card:nth-child(3) {
	background: #e76f51;
}

.quick-card:nth-child(4) {
	background: #9b5de5;
}

.quick-card i {
	font-size: 3rem;
	margin-bottom: 12px;
	color: white;
}

.quick-card h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: white;
}

.quick-card:hover {
	transform: translateY(-8px);
	filter: brightness(1.05);
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

/* 统一模块标题样式 */
.module-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	flex-wrap: wrap;
	position: relative;
}

.module-title {
	flex: 1;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: #A3161D;
	margin: 0;
	background: url(/Template/zhaosheng/pic/titl_bg.fw.png) no-repeat center;
}

.module-more {
	color: #0056b3;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	border: 1px solid #0056b3;
	padding: 6px 20px;
	border-radius: 30px;
	transition: all 0.3s;
	background: transparent;
	white-space: nowrap;
	margin-left: 15px;
}

.module-more:hover {
	background: #0056b3;
	color: white;
}

.title-decor {
	width: 100%;
	height: 12px;
	/* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 12" preserveAspectRatio="none"><path d="M0,6 L30,3 L60,8 L90,2 L120,7 L150,4 L180,9 L210,5 L240,10 L270,3 L300,8 L330,2 L360,7 L390,5 L420,9 L450,4 L480,10 L510,6 L540,3 L570,8 L600,2 L630,7 L660,5 L690,9 L720,4 L750,10 L780,3 L810,8 L840,2 L870,7 L900,5 L930,9 L960,4 L990,10 L1020,6 L1050,3 L1080,8 L1110,2 L1140,7 L1170,5 L1200,9" stroke="%230056b3" stroke-width="1.5" fill="none" stroke-dasharray="4 4"/></svg>'); */
	/* background-image: url(pic/titl_bg.fw.png); */
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	margin-bottom: 30px;
	opacity: 0.6;
}

@media (max-width: 768px) {
	.module-header {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	.module-more {
		margin-left: 0;
	}

	.module-title {
		font-size: 1.6rem;
	}
}

/* 招生动态板块 */
.dynamic-section {
	background-image: url('https://picsum.photos/id/16/1920/1080');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	padding: 50px 0;
	margin-bottom: 30px;
	border-radius: 24px;
}

.dynamic-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.85);
	border-radius: 24px;
	z-index: 0;
}

.dynamic-section .container {
	position: relative;
	z-index: 2;
}

.news-row {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.news-col {
	flex: 1;
	min-width: 260px;
	background: rgba(255, 255, 255, 0.75);
	border-radius: 20px;
	padding: 20px;
	backdrop-filter: blur(2px);
}

.news-item {
	display: flex;
	gap: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 16px 0;
	align-items: center;
}

.news-date-box {
	flex-shrink: 0;
	width: 70px;
	background: #0056b3;
	color: white;
	text-align: center;
	border-radius: 12px;
	padding: 8px 0;
}

.news-day {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.2;
}

.news-month-year {
	font-size: 0.7rem;
	letter-spacing: 1px;
	margin-top: 4px;
}

.news-title {
	flex: 1;
}

.news-title a {
	text-decoration: none;
	color: #1e2a3a;
	font-weight: 500;
	font-size: 0.95rem;
	display: block;
}

.news-title a:hover {
	color: #0056b3;
}

/* 阳光公告板块 */
.announcement-section {
	background-image: url('https://picsum.photos/id/26/1920/1080');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	padding: 50px 0;
	margin-bottom: 30px;
	border-radius: 24px;
}

.announcement-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.88);
	border-radius: 24px;
	z-index: 0;
}

.announcement-section .container {
	position: relative;
	z-index: 2;
}

.announcement-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 30px 0;
}

.announce-card {
	background: #fff;
	border-radius: 12px;
	padding: 18px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s;
	border-left: 4px solid #0056b3;
}

.announce-card:hover {
	transform: translateY(-5px);
}

.announce-date {
	font-size: 0.8rem;
	color: #888;
	margin-bottom: 8px;
}

.announce-title {
	font-weight: 600;
	font-size: 1rem;
}

.announce-title a {
	text-decoration: none;
	color: #1e2a3a;
}

.announce-title a:hover {
	color: #0056b3;
}

/* 院系专业板块 */
.dept-section {
	background-image: url('https://picsum.photos/id/29/1920/1080');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	padding: 60px 0;
	border-radius: 24px;
	margin-bottom: 30px;
}

.dept-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 24px;
	z-index: 0;
}

.dept-section .container {
	position: relative;
	z-index: 2;
}

.dept-swiper {
	width: 100%;
	padding: 10px 0 50px;
}

.dept-swiper .swiper-slide {
	height: auto;
}

.dept-card-group {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.xyzy {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
	height: 100%;
}

.xyzy:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.pic {
	width: 100%;
	height: 180px;
	background-size: cover;
	background-position: center;
}

.text {
	padding: 20px 18px 24px;
	flex: 1;
}

.text .xy {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0a3d62;
	display: block;
	margin-bottom: 12px;
	text-decoration: none;
}

.text .xy:hover {
	color: #0056b3;
}

.zybox {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.zybox a {
	background: #f0f4fa;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	color: #1e2a3a;
	text-decoration: none;
}

.zybox a:hover {
	background: #0056b3;
	color: white;
}

.dept-swiper .swiper-button-prev,
.dept-swiper .swiper-button-next {
	color: #0056b3;
	background: rgba(255, 255, 255, 0.8);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dept-swiper .swiper-pagination-bullet {
	background: #0056b3;
}

/* 光影保理板块 - 优化比例布局 */
.gallery-section {
	background: #f1f5f9;
	padding: 50px 0;
	margin: 30px 0;
	border-radius: 24px;
}

.light-shadow-layout {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 30px;
	align-items: stretch;
}

.main-video {
	flex: 1;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	background: #000;
	display: flex;
	flex-direction: column;
}

.main-video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.main-video:hover img {
	transform: scale(1.02);
}

.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
	transition: all 0.3s;
	border: 2px solid rgba(255, 255, 255, 0.8);
	color: white;
	font-size: 2.2rem;
	cursor: pointer;
}

.play-btn i {
	margin-left: 4px;
}

.play-btn:hover {
	background: #0056b3;
	transform: translate(-50%, -50%) scale(1.05);
}

.side-gallery {
	flex: 1.8;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.side-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	height: 100%;
}

.side-item {
	background: white;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

.side-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.side-img {
	width: 100%;
	height: 140px;
	object-fit: cover;
}

.side-info {
	padding: 15px;
	text-align: center;
}

.side-info h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #0a3d62;
	margin-bottom: 6px;
}

.side-info p {
	font-size: 0.8rem;
	color: #6c757d;
}

@media (max-width: 992px) {
	.light-shadow-layout {
		flex-direction: column;
	}

	.main-video,
	.side-gallery {
		flex: auto;
		width: 100%;
	}

	.side-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.side-grid {
		grid-template-columns: 1fr;
	}

	.play-btn {
		width: 60px;
		height: 60px;
		font-size: 1.6rem;
	}
}

/* 底部区域 */
.footer {
	background-color: #0a3d62;
	position: relative;
	color: #ffffff;
	padding: 40px 20px 20px;
	margin-top: 60px;
	background-image: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
	background-repeat: repeat;
	background-size: auto;
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 61, 98, 0.85);
	z-index: 0;
}

.footer-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

.footer-info,
.footer-contact,
.footer-qrcode {
	flex: 1;
	min-width: 200px;
}

.footer-qrcode {
	text-align: center;
}

.footer-qrcode h4 {
	margin-bottom: 15px;
	font-size: 1rem;
}

.qr-images {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.qr-item {
	text-align: center;
}

.qr-item img {
	width: 100px;
	height: 100px;
	background: white;
	padding: 8px;
	border-radius: 12px;
	object-fit: contain;
}

.qr-item span {
	display: block;
	font-size: 0.7rem;
	margin-top: 6px;
	color: #ddd;
}

.footer-info p,
.footer-contact p {
	line-height: 1.8;
	font-size: 0.9rem;
}

.footer a {
	color: #ffffff;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.copyright {
	position: relative;
	z-index: 2;
	text-align: center;
	margin-top: 30px;
	font-size: 0.8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 20px;
}

/* 响应式导航菜单 */
@media (max-width: 992px) {
	.nav-menu {
		position: fixed;
		top: 80px;
		left: -100%;
		background: rgba(0, 86, 179, 0.95);
		backdrop-filter: blur(10px);
		width: 80%;
		height: calc(100% - 80px);
		flex-direction: column;
		padding: 40px 30px;
		box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
		transition: left 0.3s;
		z-index: 999;
		gap: 20px;
	}

	.nav-menu.active {
		left: 0;
	}

	.menu-toggle {
		display: block;
	}

	.dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		box-shadow: none;
		padding-left: 20px;
		background: transparent;
		display: none;
	}

	.dropdown-menu li a {
		color: white;
	}

	.dropdown-menu li a:hover {
		background: rgba(255, 255, 255, 0.2);
	}

	.dropdown:hover .dropdown-menu {
		display: block;
	}

	.announcement-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.dept-card-group {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.navbar {
		padding: 15px 20px;
	}

	.quick-grid {
		flex-direction: column;
	}

	.news-row {
		flex-direction: column;
	}

	.announcement-grid {
		grid-template-columns: 1fr;
	}

	.dept-card-group {
		grid-template-columns: 1fr;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}

	.footer-qrcode .qr-images {
		justify-content: center;
	}
}