.calendar-monday {
  width: 484px;
  background: #f6f8fa;
  padding: 0 20px;
  box-sizing: border-box;
}

.calendar-monday ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}

.calendar-monday ul li {
  border-bottom: 1px solid #e5e8ef;
  width: 63px;
  height: 55px;
  text-align: center;
  margin-bottom: 20px;
}

.calendar-monday ul li .day {
  color: #86909c;
  font-size: 16px;
  margin-bottom: 8px;
}

.calendar-monday ul li .status {
  position: relative;
  text-align: center;
  width: 40px;
  height: 16px;
  border-radius: 50px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 16px;
}

.calendar-monday ul li .status.sign_in {
  background: rgba(20, 196, 99, 0.1);
}

.calendar-monday ul li .status.sign_in img {
  width: 16px;
  height: 16px;
}

.calendar-monday ul li .status.sign5 {
  color: #afb0b6;
  background: #e5e8ef;
}

.calendar-monday ul li .status.sign15 {
  color: #fff;
  background: #f4ae2d;
}

.calendar-monday ul li .status.today::before {
  content: "今";
  color: #fff;
  font-size: 9px;
  background: #fb4b59;
  position: absolute;
  right: -8px;
  top: -36px;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  border-radius: 50%;
}

/* 手机端（屏幕宽度≤768px） */
@media (max-width: 768px) {
  .calendar-monday {
    width: 100%;
  }
}
