.wrap {
  margin-top: 0;
  max-width: none;
  padding: 0;
  flex-wrap: wrap;
}

.campus-news-section {
  width: 100%;
  padding: 40px 0;
  background-color: #fff;
  background-image:
    radial-gradient(circle at 70% 0%, rgba(255, 255, 255, 0.6) 0, rgba(255, 255, 255, 0.06) 36%, rgba(255, 255, 255, 0) 56%),
    repeating-radial-gradient(circle at 70% -40%, rgba(255, 255, 255, 0.45) 0, rgba(255, 255, 255, 0.45) 1px, transparent 1px, transparent 18px);
}

.campus-news-head,
.campus-news-body {
  padding: 0 80px;
  margin: 0 auto;
}

.campus-news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.campus-news-head h2 {
  font-size: 24px;
  font-weight: 500;
  color: #22201F;
}

.more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 95.33px;
  height: 28px;
  border: 1px solid #cfd0d5;
  border-radius: 25px;
  font-size: 14px;
  color: #817F7E;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.more-link span {
  width: 7.33px;
  height: 12px;
}
.more-link span img {
  width: 100%;
  height: 100%;
 vertical-align: top;
}
.more-link:hover {
  color: #5a4ed3;
  border-color: #5a4ed3;
}

.campus-news-body {
  display: flex;
  gap: 40px;
  align-items: start;
}
.news-feature{
  width: 740px;
}
.news-feature-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ddd;
}

.news-feature-image img {
  display: block;
  width: 100%;
  height: 363px;
  object-fit: cover;
}

.feature-date-tag {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: #5E47BB;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.feature-date-tag strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}

.feature-date-tag span {
  font-size: 12px;
  line-height: 1;
}

.news-feature-content {
  padding: 12px
}

.news-feature-content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: #3D3D3D;
  margin-bottom: 12px;
}

.news-feature-content p {
  color: #817F7E;
  font-size: 12px;
  font-weight: 500;
}
.news-side-list {
  border-top: 3px solid #5E47BB;
  background-color: #fff;
  width: calc(100% - 740px);
}

.news-side-item {
  height: 91px;
  margin-left: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.side-date {
  text-align: right;
}

.side-date strong {
  display: block;
  font-size: 24px;
  font-weight: 500;
  color: #22201F;
}

.side-date span {
  font-size: 12px;
  color: #817F7E;
}

.news-side-item p {
  color: #22201F;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 80%;
}

/* 备注：通知公告模块外层，按截图为浅灰背景大区块 */
.notice-section {
  width: 100%;
  background: #f7f6fb;
  padding: 40px 0 56px;
}

.notice-head,
.notice-board,
.notice-controls {
  margin: 0 80px;
}

.notice-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.notice-head h2 {
  font-size: 24px;
  font-weight: 500;
  color: #22201f;
}

/* 备注：最大的盒子，参考你给的自动布局参数 */
.notice-board {
  background: #F7F6FB;
  min-height: 300px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}



.notice-list {
  width: 100%;
  display: flex;
  background: #fff;
}

.notice-item {
  width: 320px;
  height: 230px;
  padding: 36px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  color: #22201f;
}
.notice-date{
  margin-bottom: 32px;
}
.notice-date strong {
  display: block;
  font-size: 36px;
  font-weight: 500;
  color: #22201F;
}

.notice-date span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #22201F;
}

.notice-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #EFEFEF;
  background: #fff;
  position: absolute;
  bottom: 70px;
  z-index: 2;
}

.notice-item p {
  width: 100%;
  border-top: 1px solid #EFEFEF;
  padding-top: 28px;
  font-size: 16px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-item::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 4px;
  background: #5e47bb;
  transition: width 0.2s ease;
}

.notice-item:hover .notice-date strong,
.notice-item.active .notice-date strong,
.notice-item:hover .notice-date span,
.notice-item.active .notice-date span,
.notice-item:hover p,
.notice-item.active p {
  color: #5E47BB;
}

.notice-item:hover .notice-dot,
.notice-item.active .notice-dot {
  border-color: #5E47BB;
}

.notice-item:hover::after,
.notice-item.active::after {
  width: 100%;
}

.notice-controls {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.notice-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #5e47bb;
  font-size: 52px;
  line-height: 42px;
  cursor: pointer;
  box-shadow: 0px 16px 34px 0px rgba(0, 40, 100, 0.12);
}
.notice-arrow img{
  width: 9.78px;
  height: 16px;
  vertical-align: middle;
  margin-top: -5px;
}

.notice-arrow:hover {
  background: #f2eeff;
}
