.v-m-date-picker-component{
    display:inline-block;
}
.v-m-date-picker-component>*{
    font-family: 'Microsoft YaHei';
    font-size: 16px;
}

.v-m-date-picker-small{
    height: 24px;
    line-height: 20px;
    font-size: 13px;
}

.v-m-date-picker-middle{
    height: 32px;
    line-height: 28px;
    font-size: 14px;
}

.v-m-date-picker-large{
    height: 40px;
    line-height: 36px;
    font-size: 16px;
}

.v-m-date-picker-input{
    border: 1px solid #ccc;
    min-width: 100px;
    cursor: pointer;
    display:inline-block;
    box-sizing: border-box;
    padding: 1px 5px;
    overflow: hidden;
    vertical-align: middle;
}
.v-m-date-picker{
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10000;
    left: 0;
    background-color: white;
}

.v-m-date-picker-operator{
    display: flex;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
    border-top: 1px solid #eaeaea;
    height: 40px;
}
.v-m-date-picker-operator-cancel,.v-m-date-picker-operator-ok,.v-m-date-picker-value{
    flex: 1 1 0%;
    color: #26a2ff;
    line-height: 40px;
    cursor: pointer;
}
.v-m-date-picker-items{
    display: flex;
    justify-content: center;
    text-align: right;
}

.v-m-date-picker-item{
    flex: 1 1 0%;
    overflow: hidden;
    max-height: 100%;
    position: relative;
    cursor: pointer;
}

.v-m-date-picker-container{
    text-align: center;
}

.v-m-date-picker-highlight{
    position: absolute;
    top: 50%;
    width: 100%;
    border-top:1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}
.v-m-date-picker-selected{
    font-weight: bold;
    font-size: 18px;
}
.v-m-date-picker-modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: grey;
    z-index: 9999;
    opacity: 0.5;
}
