/* 时间选择的控件css */
* {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

#schedule-box,#schedule-box2 {
    width: 100%;
    margin: 0 auto;
    padding: 35px 20px;
    font-size: 13px;
    box-sizing: border-box;
}

.schedule-hd {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.today {
    flex: 1;
    text-align: center;
}

.ul-box {
    overflow: hidden;
}

.ul-box>li {
    float: left;
    width: 14.28%;
    text-align: center;
    padding: 5px 0;
}

.other-month {
    color: #999999;
}

.disabled {
    pointer-events: none;
    background-color: #eeeeee;
    color: #999999;
}

.current-month {
    color: #333333;
}

.today-style {
    border-radius: 50%;
    background: #58d321;
}

.arrow {
    cursor: pointer;
}

.dayStyle {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
}

.current-month>.dayStyle:hover {
    background: #00BDFF;
    color: #ffffff;
}

.today-flag {
    background: #00C2B1;
    color: #fff;
}

.boxshaw {
    box-shadow: 2px 2px 15px 2px #e3e3e3;
}

.selected-style {
    background-color: #ffba5a;
    color: #ffffff;
}

.active-style {
    background: #00BDFF;
    color: #ffffff;
}

#h3Ele {
    padding: 10px;
}

.today {
    text-align: center;
    color: #8ac6d1;
    padding: 5px 0 0;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
}

@media screen and (max-width: 480px) {
   
#schedule-box {
    padding: 15px 8px;
}
   
  }