.mypage_table .td.no {
    width: 100px;
    color: #5E5E5E;
}

.mypage_table .td.dttm {
    width: 130px;
    text-align: right;
    color: #5E5E5E;
}

.mypage_table .td.title {
    width: calc(100% - 230px);
}

.mypage_table .thead {
    border-top: 0;
}

.mypage_table .thead .tr {
    background-color: transparent;
}

.mypage_table .td:not(:last-child) {
    border: 0;
}

.mypage_table .td {
    padding: 16px;
}

.mypage_table {
    border: 0;
}

.mypage_table .thead .td {
    font-size: 18px;
    font-weight: 700;
    color: #5E5E5E;
}

.mypage_table .tbody .tr:hover {
    background-color: #F8F8F8;
}

.mypage_table .tbody .td.title {
    text-align: left;
}

.list_btn {
    padding: 11px 50px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
    width: fit-content;
}

.board_head {
    padding: 22px 0 28px;
    border-bottom: 1px solid #9E9E9E;
}

.board_head .title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

.board_head .dttm {
    font-size: 14px;
    font-weight: 400;
    color: #5E5E5E;
    margin-top: 18px;
}

.board_body {
    padding: 30px 0;
    border-bottom: 1px solid #9E9E9E;
}

.attach_file {
    margin-bottom: 32px;
}

.attach_file .file_btns {
    display: flex;
    align-items: center;
    gap: 14px;
}

.attach_file .ctr_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.attach_file .ctr_btn::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(/static/app_www/base/img/icon_arrow_left.png) no-repeat center/contain;
    opacity: 0.8;
    transform: rotate(-90deg);
}

.attach_file .ctr_btn.active::before {
    transform: rotate(90deg);
}

.attach_file .all_download {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 5px 10px;
    border-radius: 0;
}

.attach_file .all_download .icon {
    display: flex;
    width: 10px;
}

.attach_file .file_list {
    background-color: #fff;
    border: 1px solid #D9D9D9;
    padding: 9px 0;
    margin: 0 30px;
    margin-top: 16px;
    display: none;
}

.attach_file .file_list.active {
    display: block;
}

.attach_file .file_item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 9px 15px;
    gap: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #222;
}

.attach_file .file_item:hover {
    background-color: #f8f8f8;
}

.attach_file .file_item .icon {
    flex-shrink: 0;
    display: flex;
    width: 12px;
    margin-top: 4px;
}

.form_wrap {
    display: flex;
    gap: 12px 20px;
    align-items: flex-end;
    margin-bottom: 32px;
}

.form_wrap .edk_input_wrap.search {
    width: calc(100% - 626px);
}

.form_wrap .edk_input_wrap.dttm {
    width: 496px;
}

.form_wrap .edk_input.input_border {
    border-radius: 8px;
}

.form_wrap .edk_input_wrap .input_flex_area {
    gap: 10px;
}

.form_wrap .btn_default {
    padding: 13px 0px;
    width: 90px;
    font-size: 16px;
    font-weight: 700;
}

.form_wrap .edk_input[type="date"],
.form_wrap .edk_input[type="datetime-local"] {
    text-indent: 8px;
}

.table_wrap {
    overflow-x: auto;
}

table {
    width: 100%;
}

thead {
    border-top: 2px solid #BBBBBB;
    border-bottom: 2px solid #BBBBBB;
    background-color: #F8F8F8;
}

table th,
table td {
    border-right: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    text-align: center;
    padding: 13px 0;
}

table th:last-child,
table td:last-child {
    border-right: 0;
}

@media screen and (max-width:1023px) {
    .form_wrap {
        flex-direction: column;
    }

    .form_wrap .edk_input_wrap.search {
        width: 100%;
    }

    .form_wrap .edk_input_wrap.dttm {
        width: 100%;
    }

    .form_wrap .btn_default {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .page_tab {
        flex-wrap: nowrap;
    }

    .page_tab .tab_item:nth-child(odd) {
        border-right: 0;
    }

    .page_tab .tab_item:not(:last-child) {
        border-right: 1px solid #E1E1E1;
    }

    .mypage_table .td {
        padding: 12px 8px;
    }

    .mypage_table .td.no {
        width: 70px;
    }

    .mypage_table .td.dttm {
        width: 100px;
    }

    .mypage_table .td.title {
        width: calc(100% - 170px);
    }

    .mypage_table .thead .td {
        font-size: 16px;
    }

    .list_btn {
        padding: 10px 40px;
        font-size: 16px;
    }

    .board_head {
        padding: 12px 0 18px;
    }

    .board_head .dttm {
        margin-top: 12px;
    }

}