/* 1. 整体容器重置 */
.col_news_con {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

/* 2. 标题样式 */
.xysz {
  text-align: center;
  margin-bottom: 50px;
}
.xyszcontent {
  font-size: 28px;
  color: #a81829; /* 官网红色主色 */
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin: 0;
}
.xyszcontent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: #a81829;
}

/* 3. 列表重置 */
.xyszul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 60px; /* 两个方块之间的间距 */
}

/* 4. 红色方块样式 */
.xyszli {
  width: 350px;
  height: 80px; /* 高度和原来的红色栏一致 */
  background: #a81829; /* 整个方块都是红色 */
  border-radius: 8px; /* 圆角 */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.xyszli:hover {
  background: #8c1422; /* 鼠标悬停时颜色稍深 */
  transform: translateY(-2px);
}

/* 5. 学院名称样式 - 文字为白色 */
.xysz_title a {
  font-size: 22px;
  color: #fff; /* 文字颜色变为白色 */
  text-decoration: none;
  font-weight: 500;
}

/* 6. 响应式适配 */
@media (max-width: 850px) {
  .xyszul {
    flex-direction: column;
    align-items: center;
  }
}