/*
*size:small
*/
.v-f9-date-input-small{
    font-size: 13px;
}

input.v-f9-date-input-small{
    border: 1px solid #ccc;
    height: 24px;
}

/*
*size:middle
*/
.v-f9-date-input-middle{
    font-size: 14px;
}

input.v-f9-date-input-middle{
    border: 1px solid #ccc;
    height: 32px;
}

/*
*size:large
*/
.v-f9-date-input-large{
    font-size: 16px;
}

input.v-f9-date-input-large{
    border: 1px solid #ccc;
    height: 40px;
}

.v-f9-date-input {
    overflow: hidden;
    user-select: none;
    position: absolute;
    width: 254px;
    height: 300px;
    box-shadow: 0 2px 6px #ccc;
    background: #fff;
    top: 25px;
    left: 0;
    z-index: 99999;
    color: #666;
}

.v-f9-date-input-top {
    display: flex;
    justify-content: space-between;
    width: 230px;
    margin: 12px
}

.v-f9-date-input-top div {
    cursor: pointer;
    align-self: center;
}

.v-f9-date-input-top-now {
    width: 123px;
    padding: 0 5px;
    text-align: center;
}

.v-f9-date-input .v-f9-date-input-year-body,.v-f9-date-input .v-f9-date-input-hour-body {
    padding: 15px;
    padding-top: 0;
}

.v-f9-date-input .v-f9-date-input-year-body div{

    box-sizing: border-box;
    display: inline-block;
    width: 56px;
    text-align: center;

}

.v-f9-date-input .v-f9-date-input-hour-body div{

    box-sizing: border-box;
    display: inline-block;
    width: 32px;
    text-align: center;

}

.v-f9-date-input-div-month {
    padding: 12px 3px;
    height: 72px;
}

.v-f9-date-input-div-day {
    padding: 6px 3px;
    height: 27px;
}

.v-f9-date-input-div-hour{
    padding: 2px 2px;
    height: 25px;
}

.v-f9-date-input .v-f9-date-input-year-body span{
    box-sizing: border-box;
    display: block;
    width: 48px;
    height: 25px;
    line-height: 25px;
    cursor: pointer;
}

.v-f9-date-input .v-f9-date-input-hour-body span {

    box-sizing: border-box;
    display: block;
    width: 30px;
    height: 23px;
    line-height: 23px;
    cursor: pointer;

}

.v-f9-date-input .v-f9-date-input-year-body span:hover,.v-f9-date-input .v-f9-date-input-hour-body span:hover {
    background-color: #ed4114;
    color: white
}

.activeDate {
    background-color: #ed4114;
    color: white
}
.v-f9-date-input .v-f9-date-input-year-body span.v-f9-date-input-span-disable,.v-f9-date-input .v-f9-date-input-hour-body span.v-f9-date-input-span-disable{
    color:#ccc;
    cursor:not-allowed;
}
.v-f9-date-input .v-f9-date-input-year-body span.v-f9-date-input-span-disable:hover,.v-f9-date-input .v-f9-date-input-hour-body span.v-f9-date-input-span-disable:hover{
    background: white;
}

.v-f9-date-input-fade-enter-active {
    transition: all .1s ease;
    height: 300px;
}

.v-f9-date-input-fade-leave-active {
    transition: all .1s ease;
    height: 0;
}

.v-f9-date-input-fade-leave {
    height: 300px;
}

.v-f9-date-input-fade-enter {
    height: 0;
}

.v-f9-date-input-small.input,.v-f9-date-input-middle.input,.v-f9-date-input-large.input {
    padding: 0 8px;
    height: 20px;
    border: solid 1px #dbdbdb;
    line-height: 20px;
    text-align: left;
    color: #555;
    font-size: 14px;
    background-color: #ffffff;
    cursor: pointer;
}