.main_title .title {
    flex-wrap: wrap;
}

.datepicker-outter {
    margin-bottom: 8px;
}

.sc-datepicker {
    height: 40px;
    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:470px) {
    .datepicker-outter {
        width: 100%;
    }

    .sc-datepicker {
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
    }
}

/* 搜尋是下拉選單 */
.dropdown-container {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.dropdown {
    display: inline-block;
    width: 240px;
    position: relative;
}

.dropdown-button {
    height: 36px;
    line-height: 1.5;
    padding: 4px 28px 4px 8px;
    border: 1px solid #ccc;
    cursor: pointer;
    background-color: #fff;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-button:after {
    content: "";
    position: absolute;
    top: 9px;
    right: 10px;
    width: 18px;
    height: 18px;
    background-image: url(/static/v2/images/slk_down_b.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.dropdown-button.active:after {
    transform: rotate(180deg);
    transition: 0.3s;
}

.dropdown-button.active {
    border-color: #285ee4;
    box-shadow: 0 0 0 3px rgba(40, 94, 228, 0.1);
}

.dropdown-content {
    width: 100%;
    max-height: 260px;
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #285ee4; 
    overflow-y: auto;
    z-index: 1;
    display: none;
}

.dropdown-content div {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #285ee4;
}

.dropdown-content div:hover {
    background-color: #ddd;
}

.selected {
    background-color: #E6EDFF;
    /* background-color: #ddd; */
}

.dropdown-search {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    font-size: 18px;
    /* color: #285ee4; */
    border: none;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}

.dropdown-content input {
    width: calc(100% - 20px);
    margin: 8px;
    outline: none;
    border: 1px solid transparent;
    border-radius: 8px;
}

.dropdown-content input:focus {
    border: 1px solid #658ae6;
}


.export_btn {
    width: 123px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-btn {
    width: 80px;
    height: 36px;
    font-size: 16px;
    display: inline-grid;
    justify-content: center;
    align-items: center;
}

.myaccoount_info {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    box-sizing: border-box;
    background: #fff;
    border-radius: 15px 15px 0 0;
}

.sc-search_content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.sc-search_content>span {
    color: #658ae6;
    font-size: 24px;
}

.range-separator {
    padding: 8px;
    color: #658ae6;
}

/* table */

th,
td {
    padding-left: 16px;
}

.tableFixHead {
    width: 100%;
    min-height: 484px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    overflow-x: auto;
    position: relative;
}

.tableFixHead table tr th,
.tableFixHead table tr td {
    height: 40px;
    text-align: left;
}

.tableFixHead table tr th:first-child,
.tableFixHead table tr td:first-child {
    padding-left: 24px;
    text-align: justify;
}

.tableFixHead table tr th:last-child,
.tableFixHead table tr td:last-child {
    padding-right: 24px;
}

.tableFixHead table tr.footer-level td {
    background: #285ee4;
    color: #fff;
}

.tableFixHead table tr.calculate-level td {
    background: #2E4A8F;
    color: #fff;
}

.tb_showdiv {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tb-date {
    width: 11.19%;
    min-width: 120px;
}

.tb-vouchernum {
    width: 16.42%;
    min-width: 176px;
}

.tb-note {
    width: 23.88%;
    min-width: 256px;
    max-width: 256px;
}

.tb-amount {
    width: 12.69%;
    min-width: 136px;
}

.tb-statu {
    width: 7.46%;
    min-width: 80px;
}

.tableFixHead table tr th.tb-amount,
.tableFixHead table tr td.tb-amount {
    text-align: right;
}

.tableFixHead table tr th.tb-statu,
.tableFixHead table tr td.tb-statu {
    text-align: center;
}

.nodata_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 40px auto;
}

.nodata_content img {
    width: 343px;
    height: 300px;
}

.nodata_content>span {
    color: #6a6a6a;
    font-size: 20px;
    margin-top: 8px;
}

@media screen and (max-width:742px) {
    .sc-search_content>span {
        margin-bottom: 8px;
    }

    .search-btn {
        margin-top: 16px;
    }
}

@media screen and (max-width: 660px) {
    .myaccoount_info {
        align-items: start;
        padding: 24px 16px;
    }

    .sc-search_content {
        width: 100%;
        flex-direction: column;
        align-items: start;
    }

    .dropdown-container {
        flex-direction: column;
        width: 100%;
    }

    .dropdown {
        width: 100%;
    }

    .range-separator {
        transform: rotate(90deg);
    }

    .sc-search_content .action,
    .search-btn {
        width: 100%;
    }
}

@media screen and (max-width:450px) {

    .export_btn {
        width: 100%;
    }
}


