.calendar, .calendar * {
    font-family: inherit;
    font-size: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    display: -webkit-flex; /* Safari */

    /* 禁止文字选中 */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.calendar {
    flex-direction: column;
    flex-grow: 1;
}

.c-container {
    flex-direction: column;
    flex-grow: 1;
    align-items: stretch;
}

.c-toolbar {
    height: 36px;
    background-color: #5582f3;
    align-items: center;
    justify-content: space-between;
}

.c-toolbar-font {
    font-size: 14px;
    color: #FFFFFF;
}

.c-previous, .c-next {
    font-size: 16px;
    margin: 0 15px;
}

.c-previous, .c-next:hover {
    cursor: pointer;
}

.c-month-container {
    justify-content: center;
    cursor: pointer;
}

.c-body {
    background-color: #FFFFFF;
    color: #000000;
    flex-grow: 1;
    flex-direction: column;
    padding: 11px 3px;
}

.c-week {
    height: 26px;
}

.c-week-day {
    flex-grow: 1;
    justify-content: center;
    color: inherit;
    float: left;
    font-weight: bold;
}

.c-month-day {
    flex-wrap: wrap;
}

.c-day {
    width: 30px;
    height: 28px;
    margin: 1px;
    padding: 1px;
    justify-content: center;
    align-items: center;
}

.c-day-mark {
    background-color: #5582F3;
    border-radius: 50%;
    color: #FFFFFF;
}

.c-day:hover {
    cursor: pointer;
    border: 1px solid #5582F3;
    border-radius: 50%;
    padding: 0;
}

.c-day-previous-month {
    color: #ccc;
}

.c-day-next-month {
    color: #ccc;
}

.c-today {
    flex-direction: column;
}

.c-today:after{
    content: "";
    width: 6px;
    height: 6px;
    margin-bottom: -6px;
    border-radius: 50%;
    background-color: #5582F3 !important;
}

.c-selector {
    flex-grow: 1;
    height: 228px;
}

.c-selector-year, .c-selector-month {
    flex-grow: 1;
    flex-direction: column;
    overflow: auto;
    
}

.c-selector-split {
    width: 1px !important;
    background-color: #ccc;
}

.c-selector-item {
    height: 30px;
    line-height: 30px;;
    justify-content: center;
    cursor: pointer;
    
}

.c-selector-selected, .c-selector-item:hover {
    background: #f5f5f5;
}

::-webkit-scrollbar {
    width: 8px!important;
    height: 8px!important;
    overflow: visible;
}

::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}

::-webkit-scrollbar-corner {
    background: 0 0;
}

::-webkit-scrollbar-thumb {
    min-height: 28px;
    height: 5px;
    min-width: 2px;
    width: 5px;
    background: #b8b8b8;
    border-radius: 4px;
    border: solid transparent;
    padding: 100px 0 0;
    border-width: 1px;
    background-color: rgba(138,153,170,.6);
    background-clip: padding-box;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}