* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
  color: #051323;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
.enrollment-news-list {
  width: 100vw;
  min-height: 100vh;
  background-color: #fff;
}
.logo-bar {
  width: 100%;
  height: 100px;
  background-color: #b81c22;
}
.logo-bar .logo-bar-center {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: #b81c22;
}
.logo-bar .logo-bar-center .logo {
  height: 68px;
}
.nav-bar {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}
.nav-bar .nav-bar-center {
  width: 1200px;
  margin: 0 auto;
}
.nav-bar .nav-bar-center .nav-menu {
  display: flex;
  gap: 0;
}
.nav-bar .nav-bar-center .nav-menu .menu-item-wrapper {
  position: relative;
}
.nav-bar .nav-bar-center .nav-menu .menu-item-wrapper:hover .sub-menu {
  display: flex;
}
.nav-bar .nav-bar-center .nav-menu .menu-item-wrapper:hover .menu-item {
  color: #c41230;
}
.nav-bar .nav-bar-center .nav-menu .menu-item-wrapper .menu-item {
  display: block;
  padding: 15px 48px;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
   font-weight: bold;
    font-family: "方正小标宋简体", "SimSun", sans-serif;
    letter-spacing: 3px;
}
.nav-bar .nav-bar-center .nav-menu .menu-item-wrapper .menu-item:hover {
  color: #c41230;
}
.nav-bar .nav-bar-center .nav-menu .menu-item-wrapper .menu-item.active {
  color: #c41230;
  font-weight: bold;
}
.nav-bar .nav-bar-center .nav-menu .menu-item-wrapper .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 140px;
  flex-direction: column;
  z-index: 100;
  border: 1px solid #eee;
}
.nav-bar .nav-bar-center .nav-menu .menu-item-wrapper .sub-menu .sub-menu-item {
  padding: 12px 20px;
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
   font-family: "方正小标宋简体", "SimSun", sans-serif;

}
.nav-bar .nav-bar-center .nav-menu .menu-item-wrapper .sub-menu .sub-menu-item:last-child {
  border-bottom: none;
}
.nav-bar .nav-bar-center .nav-menu .menu-item-wrapper .sub-menu .sub-menu-item:hover {
  background-color: #c41230;
  color: #fff;
}
.banner {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}
.banner .banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title-bar {
  width: 100%;
  background-color: transparent;
  position: relative;
  margin-top: -53px;
  z-index: 10;
}
.title-bar .title-bar-center {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.title-bar .title-bar-center .page-title {
  width: 260px;
  height: 103px;
  background-image: url('../images/enrollment-news/title-bg.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.title-bar .title-bar-center .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}
.title-bar .title-bar-center .breadcrumb .breadcrumb-icon {
  width: 16px;
  height: 16px;
}
.title-bar .title-bar-center .breadcrumb .breadcrumb-home {
  cursor: pointer;
  transition: color 0.3s ease;
}
.title-bar .title-bar-center .breadcrumb .breadcrumb-home:hover {
  color: #c41230;
}
.title-bar .title-bar-center .breadcrumb .breadcrumb-separator {
  color: #999;
}
.title-bar .title-bar-center .breadcrumb .breadcrumb-current {
  color: #c41230;
}
.news-list-container {
  width: 100%;
  background-color: #fff;
  padding: 40px 0 60px;
  padding-top: 0;
}
.news-list-container .news-list-center {
  width: 1200px;
  margin: 0 auto;
}
.news-list-container .news-list-center .news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-list-container .news-list-center .news-list .news-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 10px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.news-list-container .news-list-center .news-list .news-item:hover {
  background-color: #fafafa;
}
.news-list-container .news-list-center .news-list .news-item:hover .news-date .date-day {
  color: #c41230;
}
.news-list-container .news-list-center .news-list .news-item:hover .news-content .news-title {
  color: #c41230;
}
.news-list-container .news-list-center .news-list .news-item:last-child {
  border-bottom: none;
}
.news-list-container .news-list-center .news-list .news-item .news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.news-list-container .news-list-center .news-list .news-item .news-date .date-day {
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #051323;
  line-height: 1;
  transition: color 0.3s ease;
}
.news-list-container .news-list-center .news-list .news-item .news-date .date-month {
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ACACAC;
}
.news-list-container .news-list-center .news-list .news-item .news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}
.news-list-container .news-list-center .news-list .news-item .news-content .news-title {
  font-family: "PingFang SC", "PingFang SC";
  font-weight: 500;
  font-size: 16px;
  color: #051323;
  line-height: 28px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.news-list-container .news-list-center .news-list .news-item .news-content .news-title.highlight {
  color: #c41230;
}
.news-list-container .news-list-center .news-list .news-item .news-content .news-desc {
  font-family: "PingFang SC", "PingFang SC";
  font-weight: 400;
  font-size: 14px;
  color: rgba(5, 19, 35, 0.5);
  line-height: 22px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list-container .news-list-center .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}
.news-list-container .news-list-center .pagination .total {
  font-size: 14px;
  color: #666;
  margin-right: 15px;
}
.news-list-container .news-list-center .pagination .page-link {
  padding: 8px 15px;
  font-size: 14px;
  color: #666;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}
.news-list-container .news-list-center .pagination .page-link:hover {
  color: #c41230;
  border-color: #c41230;
}
.news-list-container .news-list-center .pagination .page-number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}
.news-list-container .news-list-center .pagination .page-number:hover,
.news-list-container .news-list-center .pagination .page-number.active {
  background-color: #c41230;
  color: #fff;
  border-color: #c41230;
}
.news-list-container .news-list-center .pagination .page-ellipsis {
  font-size: 14px;
  color: #999;
  padding: 0 5px;
}
.footer {
  width: 100%;
  background-color: #373737;
  padding: 20px 0;
  position: relative;
}
.footer .footer-top {
  width: 100vw;
  height: 12px;
  background: #B81C22;
  position: absolute;
  top: 0;
  left: 0;
}
.footer .footer-center {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer .footer-center p {
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 12px;
  color: #fff;
  line-height: 1.8;
}
.footer .footer-center p:first-child {
  margin-bottom: 5px;
}