  .time-schedule-main {
    padding-top: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  .today-schedule, .toweek-schedule, .tomonth-schedule, .toyear-schedule {
    display: inline-block;
    width: 60px;
    height: 100px;
    background-color: rgba(210, 210, 210, 1);
    border: 1px solid #eee;
    border-radius: 99px;
  }
  .mizhi-schedule-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 99px;
  }
  .today-item, .toweek-item, .tomonth-item, .toyear-item {
    position: absolute;
    background-image: linear-gradient(to right, #a18cd1 0%, #fbc2eb 100%);
    width: 100%;
    height: 109%;
    bottom: 0;
    transition: all 1s;
  }
  .schedule-info {
    display: flex;
    color: #ff5991;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .schedule-tilte {
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    margin-bottom: -20px;
  }
  .time-schedule-main img {
    background-repeat: no-repeat;
    max-width: unset !important;
    max-height: unset !important;
    width: 200px;
    height: 10px;
    top: 0;
    left: 0;
    position: absolute;
    animation: mizhi_move_wave 2s linear infinite;
    -webkit-animation: mizhi_move_wave 2s linear infinite;
  }
  @-webkit-keyframes mizhi_move_wave {
    0% {-webkit-transform: translateX(0)}
    50% {-webkit-transform: translateX(-25%)}
    100% {-webkit-transform: translateX(-50%)}
  }
  @keyframes mizhi_move_wave {
    0% {transform: translateX(0)}
    50% {transform: translateX(-25%)}
    100% {transform: translateX(-50%)}
  }
  /* 今日剩余背景颜色 */
  .today-item {
    background-image: linear-gradient(to right, #a18cd1 0%, #fbc2eb 100%);
  }
  /* 本周剩余背景颜色 */
  .toweek-item {
    background-image: linear-gradient(to right, #ff9a9e 0%, #fad0c4 100%);
  }
  /* 本月剩余背景颜色 */
  .tomonth-item {
    background-image: linear-gradient(to right, #fbc2eb 0%, #a6c1ee 100%);
  }
  /* 今年剩余背景颜色 */
  .toyear-item {
    background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
  }