Announcement.scss 886 Bytes
.Announcement {
  width: 100%;
  height: 100%;
  background-color: #eee;
  .Announcement-item {
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 24px;
    height: 314px;
    padding: 20px 18px;
    margin: 20px 32px 20px;
    .Announcement-item-img {
      display: block;
      width: 100%;
      height: 214px;
      border-radius: 24px;
      background-color: #eee;
    }
    .Announcement-item-Content {
      display: flex;
      align-items: center;
      margin-top: 18px;
      .Announcement-item-icon {
        width: 40px;
        height: 40px;
        margin-right: 16px;
      }
      .Announcement-item-title {
        flex: 1;
        font-size: 32px;
      }
      .Announcement-item-date {
        margin-top: 10px;
        font-size: 22px;
        color: #666;
      }
    }
  }
  .Announcement-item:first-child {
    margin-top: 24px;
  }
}