.calendar-popup {
  /* width: 516px; */
}

.calendar-popup .period-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding: 10px;
  background-color: #f4f4f4;
  overflow-x: scroll;
}

.calendar-popup .period-item,
.calendar-popup .period-item-active {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 10px;
  flex: 1;
  background: #fff;
  border-radius: 10px;
  font-size: 16px;
  margin-left: 10px;
  font-weight: bold;
  box-sizing: border-box;
  cursor: pointer;
}

.calendar-popup .period-item:first-child,
.calendar-popup .period-item-active:first-child {
  margin-left: 0;
}

.calendar-popup .period-item-active {
  color: #00c4b3;
  background: rgba(0, 196, 179, 0.1);
  border: 1px solid #00c4b3;
}

.calendar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 50px;
  width: 14.2857%;
  font-weight: bold;
  border-top: 1px solid #e5e7eb; /* Tailwind 默认边框色 gray-200 */
  border-right: 1px solid #e5e7eb;
  cursor: pointer;
  color: #cbcbcb;
  background-color: #f4f4f4;
}

.calendar-item:nth-child(7n) {
  border-right: 0;
}

.calendar-item-active {
  color: #fff;
  background-color: #00c4b3;
}
