
.notice {
  box-sizing: border-box;
  padding: 30px;
  margin: 20px auto 60px;
  width: 1200px;
  min-height: calc(100vh - 313px);
  background: #ffffff;
}

.notice-title {
  margin-bottom: 20px;
  height: 26px;
  font-size: 18px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 600;
  color: #111;
  line-height: 26px;
}
.notice-item {
  height: 50px;
  line-height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f7f7f7;
  cursor: pointer;
}
.notice-item-left {
  width: 752px;
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #111;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.notice-item-right {
  position: relative;
  padding-right: 24px;
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #111;
}
.notice-item-right::after {
  content: '';
  position: absolute;
  top: 48%;
  right: 10px;
  margin-top: -2.5px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #9da9b6;
  border-right: 1px solid #9da9b6;
  transform: rotate(45deg);
}
