 * {
 	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;
 }

 .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-img {
 	height: 55px;
 	width: auto;
 }

 .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);
 }

 /* ========= Banner区域 ========= */
 .banner-section {
 	width: 100%;
 	height: 400px;
 	overflow: hidden;
 	position: relative;
 }

 .banner-section img {
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	display: block;
 }

 .banner-overlay {
 	position: absolute;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100%;
 	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
 	display: flex;
 	align-items: center;
 	justify-content: center;
 }

 .banner-title {
 	color: white;
 	font-size: 3rem;
 	font-weight: 700;
 	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
 	letter-spacing: 3px;
 }

 /* ========= 异形背景遮罩图 ========= */
 .banner-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;
 }

 /* ========= 面包屑导航 ========= */
 .breadcrumb {
 	background: #f1f5f9;
 	padding: 15px 0;
 	border-bottom: 1px solid #e2e8f0;
 }

 .breadcrumb-content {
 	display: flex;
 	align-items: center;
 	gap: 10px;
 	font-size: 0.9rem;
 	color: #64748b;
 }

 .breadcrumb-content a {
 	color: #0056b3;
 	text-decoration: none;
 	transition: color 0.3s;
 }

 .breadcrumb-content a:hover {
 	color: #0a3d62;
 }

 .breadcrumb-content span {
 	color: #94a3b8;
 }

 .breadcrumb-current {
 	color: #1e293b;
 	font-weight: 600;
 }

 /* ========= 主内容区域 ========= */
 .main-content {
 	padding: 50px 0;
 	background: #fff;
 }

 .content-layout {
 	display: flex;
 	gap: 40px;
 	align-items: flex-start;
 }

 /* ========= 左侧竖型导航 ========= */
 .sidebar-nav {
 	width: 280px;
 	flex-shrink: 0;
 	background: #f8fafc;
 	border-radius: 16px;
 	overflow: hidden;
 	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 }

 .sidebar-title {
 	background: linear-gradient(135deg, #0a3d62, #0056b3);
 	color: white;
 	padding: 20px 25px;
 	font-size: 1.3rem;
 	font-weight: 700;
 	text-align: center;
 	letter-spacing: 1px;
 }

 .accordion-menu {
 	padding: 10px 0;
 }

 .accordion-item {
 	border-bottom: 1px solid #e2e8f0;
 }

 .accordion-item:last-child {
 	border-bottom: none;
 }

 .accordion-header {
 	display: flex;
 	align-items: center;
 	justify-content: space-between;
 	padding: 15px 25px;
 	background: white;
 	cursor: pointer;
 	transition: background 0.3s;
 	font-size: 0.95rem;
 	font-weight: 500;
 	color: #1e293b;
 }

 .accordion-header:hover {
 	background: #f0f7ff;
 }

 .accordion-header i:first-child {
 	margin-right: 10px;
 	color: #0056b3;
 	font-size: 0.9rem;
 }

 .accordion-arrow {
 	color: #94a3b8;
 	font-size: 0.75rem;
 	transition: transform 0.3s;
 }

 .accordion-item.active .accordion-arrow {
 	transform: rotate(180deg);
 }

 .accordion-content {
 	display: none;
 	background: #fafbfc;
 	padding: 0 25px;
 }

 .accordion-item.active .accordion-content {
 	display: block;
 }

 .major-list {
 	list-style: none;
 	padding: 12px 0;
 	margin: 0;
 }

 .major-list li {
 	padding: 8px 0;
 	padding-left: 25px;
 	font-size: 0.85rem;
 	color: #475569;
 	border-left: 2px solid #e2e8f0;
 	margin-left: 5px;
 	transition: all 0.3s;
 }

 .major-list li:hover {
 	color: #0056b3;
 	border-left-color: #0056b3;
 	background: #f0f7ff;
 	padding-left: 30px;
 }

 .sidebar-menu li a {
 	display: flex;
 	align-items: center;
 	padding: 16px 25px;
 	color: #334155;
 	text-decoration: none;
 	font-size: 1rem;
 	font-weight: 500;
 	transition: all 0.3s;
 	gap: 12px;
 }

 .sidebar-menu li a:hover {
 	background: #e0f2fe;
 	color: #0056b3;
 	padding-left: 30px;
 }

 .sidebar-menu li a.active {
 	background: #0056b3;
 	color: white;
 	font-weight: 600;
 }

 .sidebar-menu li a i {
 	width: 20px;
 	text-align: center;
 	font-size: 0.9rem;
 }

 /* ========= 右侧007即时比分列表 ========= */
 .college-content {
 	flex: 1;
 	min-width: 0;
 }

 .section-title {
 	font-size: 1.8rem;
 	font-weight: 700;
 	color: #0a3d62;
 	margin-bottom: 30px;
 	padding-bottom: 15px;
 	border-bottom: 3px solid #0056b3;
 	display: flex;
 	align-items: center;
 	gap: 15px;
 }

 .section-title i {
 	color: #0056b3;
 	font-size: 1.5rem;
 }

 .college-list {
 	display: grid;
 	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
 	gap: 30px;
 }

 .college-card {
 	background: #ffffff;
 	border-radius: 16px;
 	overflow: hidden;
 	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
 	transition: all 0.3s ease;
 	display: flex;
 	flex-direction: column;
 }

 .college-card:hover {
 	transform: translateY(-8px);
 	box-shadow: 0 12px 30px rgba(0, 86, 179, 0.15);
 }

 .college-image {
 	width: 100%;
 	height: 180px;
 	object-fit: cover;
 	background: linear-gradient(135deg, #0056b3, #0a3d62);
 }

 .college-image {
 	width: 100%;
 	height: 180px;
 	overflow: hidden;
 }

 .college-image img {
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	transition: transform 0.5s;
 }

 .college-card:hover .college-image img {
 	transform: scale(1.1);
 }

 .college-header {
 	padding: 20px 24px;
 	border-bottom: 2px solid #e2e8f0;
 }

 .college-name-title {
 	font-size: 1.25rem;
 	font-weight: 700;
 	color: #0a3d62;
 	display: flex;
 	align-items: center;
 	gap: 10px;
 	text-decoration: none;
 	transition: all 0.3s;
 }

 .college-name-title:hover {
 	color: #0056b3;
 	transform: translateX(5px);
 }

 .college-name-title i {
 	color: #0056b3;
 	font-size: 1.1rem;
 }

 .college-body {
 	padding: 20px 24px;
 	background: #fafbfc;
 	flex: 1;
 }

 .major-label {
 	font-size: 0.9rem;
 	color: #64748b;
 	margin-bottom: 12px;
 	font-weight: 600;
 	display: flex;
 	align-items: center;
 	gap: 8px;
 }

 .major-label::before {
 	content: "";
 	width: 4px;
 	height: 16px;
 	background: #0056b3;
 	border-radius: 2px;
 }

 .major-tags {
 	display: flex;
 	flex-wrap: wrap;
 	gap: 8px;
 }

 .major-tag {
 	background: #ffffff;
 	border: 1px solid #e2e8f0;
 	border-radius: 6px;
 	padding: 6px 12px;
 	font-size: 0.85rem;
 	color: #475569;
 	transition: all 0.3s;
 	text-decoration: none;
 	display: inline-block;
 }

 .major-tag:hover {
 	background: #0056b3;
 	color: white;
 	border-color: #0056b3;
 	transform: translateY(-2px);
 }

 /* ========= 分页 ========= */
 .pagination {
 	display: flex;
 	justify-content: center;
 	align-items: center;
 	gap: 8px;
 	margin-top: 40px;
 	flex-wrap: wrap;
 }

 .pagination a,
 .pagination span {
 	display: inline-flex;
 	align-items: center;
 	justify-content: center;
 	min-width: 40px;
 	height: 40px;
 	padding: 0 12px;
 	background: white;
 	border: 1px solid #e2e8f0;
 	border-radius: 8px;
 	color: #64748b;
 	text-decoration: none;
 	font-size: 0.9rem;
 	font-weight: 500;
 	transition: all 0.3s;
 }

 .pagination a:hover {
 	background: #e0f2fe;
 	color: #0056b3;
 	border-color: #0056b3;
 }

 .pagination .active {
 	background: #0056b3;
 	color: white;
 	border-color: #0056b3;
 }

 .pagination .disabled {
 	opacity: 0.5;
 	cursor: not-allowed;
 }

 /* ========= 底部区域 ========= */
 .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;
 	}

 	.content-layout {
 		flex-direction: column;
 	}

 	.sidebar-nav {
 		width: 100%;
 	}

 	.banner-section {
 		height: 300px;
 	}

 	.banner-title {
 		font-size: 2rem;
 	}

 	.college-grid {
 		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
 	}
 }

 @media (max-width: 768px) {
 	.navbar {
 		padding: 15px 20px;
 	}

 	.banner-section {
 		height: 250px;
 	}

 	.banner-title {
 		font-size: 1.5rem;
 		letter-spacing: 2px;
 	}

 	.main-content {
 		padding: 30px 0;
 	}

 	.section-title {
 		font-size: 1.4rem;
 	}

 	.college-grid {
 		grid-template-columns: 1fr;
 	}

 	.footer-content {
 		flex-direction: column;
 		text-align: center;
 	}

 	.footer-qrcode .qr-images {
 		justify-content: center;
 	}

 	.pagination {
 		gap: 5px;
 	}

 	.pagination a,
 	.pagination span {
 		min-width: 35px;
 		height: 35px;
 		font-size: 0.85rem;
 	}
 }

 @media (max-width: 480px) {
 	.logo-img {
 		height: 45px;
 	}

 	.logo-text {
 		font-size: 1.1rem;
 	}

 	.nav-menu li a {
 		font-size: 1rem;
 	}

 	.sidebar-menu li a {
 		padding: 14px 20px;
 		font-size: 0.95rem;
 	}

 	.college-name {
 		font-size: 1.1rem;
 	}

 	.college-desc {
 		font-size: 0.85rem;
 	}
 }