.TimeSelector {
  padding-bottom: 10px;
  .calendarBox {
    .calendarTitle {
      padding: 0 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
      .dateText {
        font-size: 14px;
        font-weight: 400;
        color: #333333;
        line-height: 14px;
        text-align: left;
        .triangleDown{
          width: 0;
          height: 0;
          border-left: 6px solid transparent;
          border-right: 6px solid transparent;
          border-top: 6px solid #999;
          display: inline-block;
          vertical-align: middle;
          margin-left: 4px;
          margin-top: -2px;
        }
      }
      .oprateText {
        color: #333;
        font-size: 12px;
        text-align: right;
      }
      .open {
        margin-right: 18px;
      }
    }
    .dateNodeBox {
      .weekBox{
        color: #999;
        display: flex;
        font-size: 12px;
        .weekNode{
          width: calc(100vw / 7);
          text-align: center;
        }
      }
      .isOpen {
        max-height: 74px;
      }
      .dayNodeBox {
        display: flex;
        align-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        max-height:304px;
        .dayNode{
          display: flex;
          flex-direction: column;
          margin-top: 17px;
          flex: 0 0 14.285%;
          text-align: center;
          .active {
            width: 25px;
            height: 25px;
            line-height: 25px;
            border-radius: 50%;
            background: #E60012;
            color: #fff!important;
            .point {
              display: none;
            }
          }
          .day {
            color: #333;
            text-align: center;
            position: relative;
            line-height: 24px;
            margin: 0 auto;
            .point {
              display: inline-block;
              border-radius: 100%;
              background-color: #e73a3a;
              width: 3px;
              height: 3px;
              position: absolute;
              bottom: 0px;
              left: 50%;
              transform: translateX(-50%);
            }
          }
          .num {
            font-weight: 400;
            color: #e73a3a;
            line-height: 10px;
            font-size: 10px;
            height: 10px;
            margin-top: 4px;
          }
        }
      }
    }
  }
}
