.tt-timeDropdown{
    $borderColor:#D8D8D8;
    position: absolute;
    z-index: 1;
    width: 268px;
    height: 285px;
    border: 1px solid #dedede;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
    font-size: 12px;
    background: #fff;
    border-radius: 2px;
    &__title{
        border-bottom: 1px solid $borderColor;
        width: 100%;
        height: 35px;
        line-height: 35px;
        &-item{
            display: inline-block;
            width: 32%;
            text-align: center;
        }
    }
    &__content{
        // height: 185px;
        ul{
            display: inline-block;
            width: 32%;
            height: 185px;
            padding-top:10px; 
            overflow-y:auto; 
        }
    }
    &__list-item{
        color: #35434C;
        text-align: center;
        cursor: pointer;
        &:hover{
           background: #F5F8FA; 
        }
    }
    &__list-active{
        color: #1265A0;
        background-color: #F5F8FA;
    }
    &__borderLfet{
        border-left: 1px solid $borderColor;
    }
    &__btn{
        text-align: center;
    }
    ::-webkit-scrollbar{
        width: 0;
        height: 0;
    }
}