.time-picker-panel {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5;
    list-style: none;
    font-feature-settings: 'tnum';
    position: absolute;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC',
        'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica,
        Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol';
    .time-picker-panel-inner {
        position: relative;
        left: -2px;
        font-size: 14px;
        text-align: left;
        list-style: none;
        background-color: #fff;
        background-clip: padding-box;
        border-radius: 4px;
        outline: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        .time-picker-panel-input-wrap {
            position: relative;
            padding: 7px 2px 7px 12px;
            border-bottom: 1px solid #e8e8e8;
            .time-picker-panel-input:placeholder-shown {
                text-overflow: ellipsis;
            }
            .time-picker-panel-input {
                width: 100%;
                max-width: 154px;
                margin: 0;
                padding: 0;
                line-height: normal;
                border: 0;
                outline: 0;
                cursor: auto;
            }
        }
        .time-picker-panel-combobox {
            zoom: 1;
            .time-picker-panel-select {
                position: relative;
                float: left;
                width: 56px;
                max-height: 192px;
                overflow: hidden;
                font-size: 14px;
                border-left: 1px solid #e8e8e8;
                ul {
                    width: 56px;
                    margin: 0;
                    padding: 0 0 160px;
                    list-style: none;
                    li.time-picker-panel-select-option-selected {
                        // font-weight: 600;
                        // background: #f5f5f5;
                        background: #E6F7FF;
                        color: #388FFF;
                    }
                    li.time-picker-panel-select-option-disabled {
                        color: rgba(0, 0, 0, 0.25);
                    }
                    li {
                        width: 100%;
                        height: 32px;
                        margin: 0;
                        padding: 0 0 0 12px;
                        line-height: 32px;
                        text-align: left;
                        list-style: none;
                        cursor: pointer;
                        transition: all 0.3s;
                        -webkit-user-select: none;
                        -moz-user-select: none;
                        -ms-user-select: none;
                        user-select: none;
                        color: rgba(0, 0, 0, 0.85);
                        &:hover{
                            color: #59A1FF;
                        }
                    }
                }
            }
            .time-picker-panel-select:first-child {
                margin-left: 0;
                border-left: 0;
            }
            .time-picker-panel-select:last-child {
                border-right: 0;
            }
            .time-picker-panel-select:hover {
                overflow-y: auto;
            }
        }
        .time-picker-panel-combobox::after,
        .time-picker-panel-combobox::before {
            visibility: hidden;
            display: block;
            font-size: 0;
            content: ' ';
            clear: both;
            height: 0;
        }
    }
}
.calendar-time-picker {
    display: block;
    height: 228px;
    width: 100%;
    background-color: #fff;
    .calendar-time-picker-panel {
        z-index: 9999;
        width: 100%;
        // color: rgba(0, 0, 0, 0.65);
        color: rgba(0, 0, 0, 0.85);
        .calendar-time-picker-inner {
            position: relative;
            display: inline-block;
            width: 100%;
            overflow: hidden;
            font-size: 14px;
            line-height: 1.5;
            text-align: left;
            list-style: none;
            background-color: #fff;
            background-clip: padding-box;
            outline: 0;
            .calendar-time-picker-combobox {
                width: 100%;
                display: flex;
                .calendar-time-picker-select:first-child {
                    margin-left: 0;
                    border-left: 0;
                }
                .calendar-time-picker-column-3 .calendar-time-picker-select {
                    width: 33.33%;
                }
                .calendar-time-picker-select {
                    position: relative;
                    flex: 1;
                    height: 226px;
                    overflow: hidden;
                    font-size: 14px;
                    border-right: 1px solid #e8e8e8;
                    ul {
                        width: 100%;
                        max-height: 206px;
                        margin: 0;
                        padding: 0;
                        list-style: none;
                    }
                    li {
                        width: 100%;
                        // height: 24px;
                        height: 32px;
                        margin: 0;
                        // line-height: 24px;
                        line-height: 32px;
                        text-align: center;
                        list-style: none;
                        cursor: pointer;
                        transition: all 0.3s;
                        -webkit-user-select: none;
                        -moz-user-select: none;
                        -ms-user-select: none;
                        user-select: none;
                    }
                    li.calendar-time-picker-select-option-selected {
                        // font-weight: 600;
                        // background: #f5f5f5;
                        color: #388FFF;
                        background: #E6F7FF;
                    }
                    li.calendar-time-picker-panel-select-option-disabled {
                        color: rgba(0, 0, 0, 0.25);
                    }
                    li:last-child::after {
                        display: block;
                        height: 202px;
                        content: '';
                    }
                    li:hover {
                        // background: #e6f7ff;
                        color: #59A1FF;
                    }
                }
                .calendar-time-picker-select:hover {
                    overflow-y: auto;
                }
            }
        }
    }
}
.time-picker-overlay {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 8888;
    display: none;
    .time-picker-panel-box{
        top: 0px;
		left: 0px;
		height: 100%;
		width: 100%;
		position: absolute;
		z-index: 8888;
		flex-direction: column;
		min-width: 1px;
        min-height: 1px;
        transform:translate(0,0)
    }
}
