.datepicker-outter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
    min-width: 311px;
}

.sc-datepicker {
    height: 35px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
    display: inline-flex;
    align-items: center;
    position: relative;
    box-sizing: border-box;
}

/*日期選擇器文字顏色及文字大小設定*/
.sc-datepicker input {
    width: 100%;
    height: 100%;
    background: 0 0;
    border: 0;
    color: #285ee4;
    text-align: center;
    font-size: 20px;
    line-height: 22px;
    outline: none;
    padding: 0 13px;
    letter-spacing: 1px;
    cursor: pointer;
}

@media screen and (max-width:450px) {
    .sc-datepicker {
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
    }
}