/* 学期信息和日期显示样式 */
.header-2-a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  min-width: 200px;
  border-radius: 20px;
  background-color: #f5f5f5;
  height: 83px;
  line-height: 38px;
  width: 126px;
  padding-left: 24px;
  /* background-image: url(../images/521.png); */
  background-repeat: no-repeat;
  background-position: left center;
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  margin-right: 10px;
}


/* 教学周显示区域 */
.academic-week {
  margin-bottom: 5px;
  text-align: center;
}

.week-text {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  line-height: 1.2;
}

/* 日期显示区域 */
.current-date {
  font-size: 13px;
  color: #333;
  line-height: 1.3;
  text-align: center;
}

.date-text {
  color: #333;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .header-2-a {
    align-items: center;
    min-width: auto;
  }

  .week-text {
    font-size: 16px;
  }

  .date-text {
    font-size: 12px;
  }
}
