/* ==================== 基础样式 ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #181c23;
  background-color: #f5f5f5;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
i {
  display: inline-block;
  font-style: normal;
}
.container {
  width: 1200px;
  margin: 0 auto;
}
/* ==================== 头部区域 ==================== */
.site-header {
  width: 100vw;
  height: 116px;
  background-color: #b60209;
}
.site-header .header-content {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-header .header-logo {
  display: block;
  width: 580px;
  height: 60px;
  background: url('../images/next/assets/logo.png') no-repeat center;
  background-size: contain;
}
.site-header .header-actions {
  display: flex;
  align-items: center;
}
.site-header .search-box {
  display: flex;
  align-items: center;
  background-color: rgba(34, 51, 65, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50px;
  padding: 4px 4px 4px 14px;
}
.site-header .search-input {
  width: 120px;
  height: 28px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  outline: none;
}
.site-header .search-input::placeholder {
  color: rgba(255, 255, 255, 0.64);
}
.site-header .search-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: url('../images/next/assets/icon-search.png') no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: all 0.3s;
}
.site-header .search-btn:hover {
  background: url('../images/next/assets/icon-user.png') no-repeat center;
  background-size: contain;
}
/* ==================== 导航区域 ==================== */
.site-nav {
  width: 100vw;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.98);
  border-top: 3px solid #cfa062;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}
.site-nav .nav-content {
  width: 1200px;
  margin: 0 auto;
  height: 100%;
}
.site-nav .nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 60px;
}
.site-nav .nav-item {
  position: relative;
  height: 100%;
}
.site-nav .nav-item > a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #181c23;
  line-height: 60px;
  transition: color 0.3s;
}
.site-nav .nav-item:hover > a {
  color: #b60209;
}
/* hover时才显示active指示器 */
.site-nav .nav-item:hover::after {
  content: '';
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: url('../images/next/assets/icon-nav-active.png') no-repeat center;
  background-size: cover;
}
/* 二级菜单 */
.site-nav .nav-item.has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 150px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
}
.site-nav .nav-item.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
}
.site-nav .submenu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #181c23;
  transition: all 0.3s;
  white-space: nowrap;
  text-align: center;
}
.site-nav .submenu a:hover {
  color: #b60209;
  background-color: rgba(182, 2, 9, 0.05);
}
/* ==================== Banner区域 ==================== */
.banner-section {
  width: 100vw;
  height: 520px;
  overflow: hidden;
}
.banner-section .banner-carousel {
  width: 100%;
  height: 100%;
}
.banner-section .banner-carousel .swiper-slide {
  width: 100%;
  height: 100%;
}
.banner-section .banner-image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* Banner 分页器 */
.banner-section .swiper-pagination {
  bottom: 20px;
}
.banner-section .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: 50%;
  margin: 0 6px;
}
.banner-section .swiper-pagination-bullet-active {
  background: #ffffff;
}
/* ==================== 主内容区域（共用背景） ==================== */
.main-content-section {
  background-size: 100% auto;
  margin-bottom: 65px;
}
/* ==================== 快捷入口区域 ==================== */
.quick-access {
  padding: 52px 0;
}
.quick-access .quick-access-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quick-access .quick-access-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  transition: transform 0.3s;
}
.quick-access .quick-access-item:hover {
  transform: translateY(-5px);
}
.quick-access .quick-icon-wrap {
  width: 90px;
  height: 90px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(12, 1, 1, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-access .quick-icon {
  width: 84px;
  height: 84px;
  border: 1.2px solid #dec58a;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
}
.quick-access .quick-icon.icon-admission-query {
  background-image: url('../images/next/assets/icon-admission-query.png');
}
.quick-access .quick-icon.icon-enrollment-plan {
  background-image: url('../images/next/assets/icon-enrollment-plan.png');
}
.quick-access .quick-icon.icon-score-history {
  background-image: url('../images/next/assets/icon-score-history.png');
}
.quick-access .quick-icon.icon-prospectus {
  background-image: url('../images/next/assets/icon-prospectus.png');
}
.quick-access .quick-icon.icon-subject {
  background-image: url('../images/next/assets/icon-subject.png');
}
.quick-access .quick-icon.icon-consult {
  background-image: url('../images/next/assets/icon-consult.png');
}
.quick-access .quick-label {
  font-size: 16px;
  font-weight: 500;
  color: #181c23;
  transition: color 0.3s;
}
.quick-access .quick-label.active {
  color: #b60209;
}
.quick-access .quick-access-item:hover .quick-label {
  color: #b60209;
}
/* ==================== 通用区块标题 ==================== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.section-header.center {
  justify-content: center;
  position: relative;
}
.section-header.center .more-link {
  position: absolute;
  right: 0;
}
.section-header .section-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* 招生公告/政策标题下的横线 */
.announcement-column .section-header {
  display: flex;
  align-items: center;
  gap: 0;
}
.announcement-column .section-header .section-title-wrap {
  flex-shrink: 0;
}
.announcement-column .section-header .header-line {
  flex: 1;
  height: 1px;
  background-color: #dadada;
  margin: 0 12px;
}
.announcement-column .section-header .more-link {
  flex-shrink: 0;
}
/* 居中标题带左右渐变线 */
.section-header.center .section-title-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.section-header.center .section-title-wrap::before,
.section-header.center .section-title-wrap::after {
  content: '';
  width: 402px;
  height: 0;
  border-top: 1px solid;
  flex-shrink: 0;
}
.section-header.center .section-title-wrap::before {
  border-image: linear-gradient(90deg, rgba(102, 102, 102, 0), rgba(102, 102, 102, 0.4)) 1 1;
  margin-right: 24px;
}
.section-header.center .section-title-wrap::after {
  border-image: linear-gradient(90deg, rgba(102, 102, 102, 0.4), rgba(102, 102, 102, 0)) 1 1;
  margin-left: 24px;
}
.section-header .title-icon {
  width: 8px;
  height: 12px;
  background: url('../images/next/assets/icon-title-arrow.png') no-repeat center;
  background-size: contain;
  margin-top: 4px;
}
.section-header .section-title {
  font-size: 30px;
  font-weight: 600;
  color: #181c23;
}
.section-header .section-title .highlight {
  color: #b60209;
}
.section-header .more-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  text-transform: uppercase;
  color: #060d32;
  transition: all 0.3s;
}
.section-header .more-link .more-icon {
  width: 10px;
  height: 8px;
  background: url('../images/next/assets/icon-more-gray.png') no-repeat center;
  background-size: contain;
  transition: all 0.3s;
}
.section-header .more-link:hover {
  color: #b60209;
}
.section-header .more-link:hover .more-icon {
  background-image: url('../images/next/assets/icon-more-red.png');
}
/* ==================== 招生公告与政策区域 ==================== */
.announcement-section {
  padding-bottom: 65px;
}
.announcement-section .announcement-grid {
  display: flex;
  gap: 10px;
}
.announcement-section .announcement-column {
  flex: 1;
  width: 576px;
}
.announcement-section .announcement-list {
  display: flex;
  flex-direction: column;
}
.announcement-section .announcement-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid #e4e7ed;
  transition: all 0.3s;
  background: #fff;
  border-radius: 6px;
  margin-bottom: 10px;
}
.announcement-section .announcement-item:hover {
  background-color: rgba(182, 2, 9, 0.02);
}
.announcement-section .announcement-item:hover .announcement-title,
.announcement-section .announcement-item:hover .announcement-tag span {
  color: #b60209;
}
.announcement-section .announcement-title {
  flex: 1;
  font-family: 'PingFang SC', 'PingFang SC';
  font-size: 15px;
  color: #231815;
  line-height: 21px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-right: 16px;
  transition: color 0.3s;
}
.announcement-section .announcement-tag {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'PingFang SC', 'PingFang SC';
  font-size: 15px;
  color: #231815;
  line-height: 21px;
  transition: color 0.3s;
}
.doc-icon {
  width: 20px;
  height: 16px;
  background: url('../images/next/assets/icon-document.png') no-repeat center;
  background-size: contain;
  flex-shrink: 0;
  margin-right: 12px;
}
.announcement-section .announcement-tag .doc-icon {
  width: 20px;
  height: 16px;
  background: url('../images/next/assets/icon-document.png') no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}
.announcement-section .announcement-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
  flex-shrink: 0;
}
.announcement-section .date-day {
  font-size: 22px;
  font-weight: 600;
  color: #b60209;
  line-height: 1;
}
.announcement-section .date-year {
  font-size: 12px;
  color: #909399;
  margin-top: 2px;
}
/* ==================== 学科专业区域 - 轮播图 ==================== */
.majors-section .majors-container {
  margin: 0 auto;
}
.majors-section .majors-container .section-header.center {
  width: 1200px;
  margin: 33px auto;
}
/* 轮播图容器 */
.majors-section .majors-carousel {
  width: 1200px;
  overflow: hidden;
  padding-bottom: 40px;
}
.majors-section .majors-carousel .swiper-wrapper {
  display: flex;
}
.majors-section .majors-carousel .swiper-slide {
  width: 288px;
  flex-shrink: 0;
}
.majors-section .major-card {
  display: block;
  width: 288px;
  text-decoration: none;
}
.majors-section .major-card img {
  display: block;
  width: 288px;
  height: 202px;
  border-radius: 0;
  transition: transform 0.3s;
}
.majors-section .major-card:hover img {
  transform: translateY(-5px);
}
.majors-section .major-name {
  display: block;
  margin-top: 16px;
  font-family: "PingFang SC", "PingFang SC";
  font-weight: 400;
  font-size: 20px;
  color: #231916;
  line-height: 20px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}
.majors-section .major-count {
  display: none;
}
.majors-section .major-arrow {
  display: none;
}
/* ==================== 媒体新闻区域 ==================== */
.news-section {
  padding-bottom: 65px;
}
.news-section .news-content {
  display: flex;
  gap: 30px;
}
.news-section .news-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 630px;
}
.news-section .news-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid #e4e7ed;
  transition: all 0.3s;
  background: #fff;
}
.news-section .news-item:hover {
  background-color: rgba(182, 2, 9, 0.02);
}
.news-section .news-item:hover .news-title {
  color: #b60209;
}
.news-section .news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
  flex-shrink: 0;
}
.news-section .date-day {
  font-size: 22px;
  font-weight: 600;
  color: #931015;
  line-height: 1;
}
.news-section .date-year {
  font-size: 12px;
  color: #909399;
  margin-top: 2px;
}
.news-section .news-tag .doc-icon {
  width: 20px;
  height: 16px;
  background: url('../images/next/assets/icon-document.png') no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}
.news-section .news-title {
  flex: 1;
  font-family: 'PingFang SC', 'PingFang SC';
  font-size: 15px;
  color: #231815;
  line-height: 21px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}
.news-section .news-featured {
  flex-shrink: 0;
  width: 540px;
  height: 358px;
}
.news-section .featured-image {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: url('../images/next/assets/news-featured.jpg') no-repeat center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.news-section .featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 96px;
  background: url('../images/next/assets/bg-news-overlay.png') no-repeat center;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
}
.news-section .featured-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 54px;
  background-color: #b60209;
  border-radius: 6px;
  flex-shrink: 0;
}
.news-section .featured-date .date-day {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.news-section .featured-date .date-year {
  font-size: 12px;
  color: #ffffff;
  opacity: 0.9;
  margin-top: 0;
}
.news-section .featured-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}
/* ==================== 宣传视频区域 ==================== */
.video-section {
  padding-bottom: 65px;
  background-size: 100% 100%;
  width: 1200px;
  margin: 0 auto;
}
.video-section .container {
  margin: 0 auto;
}
.video-section .video-grid {
  display: flex;
  gap: 30px;
}
.video-section .video-card {
  flex-shrink: 0;
  width: 285px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}
.video-section .video-card:hover {
  transform: translateY(-5px);
}
.video-section .video-card.video-large {
  width: 574px;
}
.video-section .video-card.video-large .video-thumbnail {
  height: 331px;
}
.video-section .video-card.video-large .video-info {
  height: 69px;
  background-color: #ffffff;
}
.video-section .video-thumbnail {
  height: 330px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-section .video-thumb-1 {
  background-image: url('../images/next/assets/video-cover-1.jpg');
}
.video-section .video-thumb-2 {
  background-image: url('../images/next/assets/video-cover-2.jpg');
}
.video-section .video-thumb-3 {
  background-image: url('../images/next/assets/video-cover-3.jpg');
}
.video-section .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}
.video-section .video-card:hover .video-overlay {
  background: rgba(0, 0, 0, 0.3);
}
.video-section .play-btn {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  background: url('../images/next/assets/icon-play.png') no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: all 0.3s;
}
.video-section .video-card:hover .play-btn {
  width: 64px;
  height: 64px;
  background-image: url('../images/next/assets/icon-play-large.png');
}
.video-section .video-info {
  height: 68px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transition: background-color 0.3s;
}
.video-section .video-card:hover .video-info {
  background-color: #b60209;
}
.video-section .video-card:hover .video-info .video-title {
  color: #ffffff;
}
.video-section .video-title {
  font-size: 18px;
  font-weight: 500;
  color: #181c23;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}
/* ==================== 底部区域 ==================== */
.site-footer {
  width: 100vw;
  background: url('../images/next/assets/bg-footer.png') no-repeat center;
  background-size: cover;
  color: #ffffff;
}
.site-footer .footer-content {
  width: 1200px;
  margin: 0 auto;
}
.site-footer .footer-main {
  display: flex;
  padding: 40px 0;
  gap: 56px;
}
.site-footer .footer-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #ffffff;
}
.site-footer .footer-links {
  width: 112px;
}
.site-footer .footer-link-list li {
  margin-bottom: 8px;
}
.site-footer .footer-link-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 28px;
  transition: color 0.3s;
}
.site-footer .footer-link-list a:hover {
  color: #cfa062;
}
.site-footer .footer-link-list .link-highlight {
  color: #cfa062;
  text-decoration: underline;
}
.site-footer .footer-contact {
  width: 285px;
}
.site-footer .footer-contact-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 28px;
  margin-bottom: 4px;
}
.site-footer .footer-brand {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer .footer-logo {
  width: 407px;
  height: 51px;
  background: url('../images/next/assets/logo-white.png') no-repeat center;
  background-size: contain;
}
.site-footer .footer-qr-codes {
  display: flex;
  gap: 32px;
}
.site-footer .qr-code-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.site-footer .qr-wechat {
  width: 120px;
  height: 120px;
  background: url('../images/next/assets/qr-wechat.png') no-repeat center;
  background-size: contain;
  border-radius: 4px;
}
.site-footer .qr-mobile {
  width: 120px;
  height: 120px;
  background: url('../images/next/assets/qr-mobile.png') no-repeat center;
  background-size: contain;
  border-radius: 4px;
}
.site-footer .qr-code-item span {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}
.site-footer .footer-bottom {
  width: 100vw;
  background: rgba(24, 28, 35, 0.26);
  border-top: 2px solid rgba(207, 160, 98, 0.8);
  padding: 20px 0;
  text-align: center;
}
.site-footer .footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}