
.awards-grid {
  display: grid;
  /* 3列：年份 | 奖项名称 | 奖项级别 */
  grid-template-columns: 200px 1fr 200px;
  background: #fff;
  font-size: 14px;
  line-height: 1.8;
  border: 1px solid #F8F7F4;
}

/* 所有单元格通用样式 */
.awards-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 12px;
  box-sizing: border-box;
  color: #565656;
  font-size: medium;
}

/* 表头 */
.awards-grid .g-title {
  text-align: center;
  background-color: #F8F7F4;
  justify-content: center;
  font-weight: bold;
  color: #333;
  font-size: large;
}

/* 年份列 */
.awards-grid .year {
  border-bottom: 1px solid #F8F7F4;
  border-right: 1px solid #F8F7F4;
}

/* 奖项名称列 */
.awards-grid .award {
  border-bottom: 1px solid #F8F7F4;
  border-right: 1px solid #F8F7F4;
  justify-content: flex-start;
}

/* 奖项级别列 */
.awards-grid .level {
  border-bottom: 1px solid #F8F7F4;
  text-align: center;
}

