/* 共用input */

.input_group input[readonly] {
    background: #E7E6E6;
}

.input_group input[disabled] {
    cursor: not-allowed;
}

.input_group {
    margin-bottom: 24px;
    position: relative;
}

.input_group:last-child {
    margin-bottom: 0;
}

.input_group label {
    display: block;
    margin-bottom: 8px;
}

.input_group input {
    width: 100%;
    height: 36px;
    font-size: 20px;
    background: #fff;
    border: 1px solid #C6C6C6;
    outline: none;
    border-radius: 8px;
    padding: 8px 16px;
    box-sizing: border-box;
}

.input_group.error input {
    border: 2px solid red;
}

.input_group .error_message {
    color: red;
    font-size: 14px;
    position: absolute;
    bottom: -14px;
    right: 8px;
    display: none;
}

.input_group.error .error_message {
    display: block;
}

.contents {
    max-width: 855px;
}

.create_btn {
    width: 150px;
    height: 40px;
    font-size: 20px;
}

.account_subject_content {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

/* table */
.account_subject .tableFixHead {
    /* width: 100%; */
    /* max-width: 488px; */
    min-width: 311px;
    min-height: 484px;
    scrollbar-width: auto;
    overflow: auto;
    border-radius: 15px;
    background: #fff;
    margin-bottom: 16px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.tableFixHead table.data-table tr th,
.tableFixHead table.data-table tr td {
    height: 44px;
}

.tableFixHead table thead {
    position: sticky;
    top: 0;
}


.tb-ordinal {
    width: 18.03%;
    min-width: 88px;
}
.tb-name {
    width: 26.23;
    min-width: 128px;
    max-width: 128px;
}

.tb-date {
    width: 34.43%;
    min-width: 168px;
}

.tb-edit {
    width: 21.31%;
    min-width: 104px;
}

.tb-edit > a{
    display: inline-block;
    width: 44px;
    height: 44px;
    cursor: pointer;
}

.tb-edit > a > img{
     width: 100%;
}


.inquire-data {
    position: relative;
    margin-left: 24px;
    border-radius: 10px;
    width: 35%;
    min-width: 311px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.inquire-data-row {
    border: 2px solid #658ae6;
    border-radius: 15px;
    padding: 24px 16px;

}

.inquire-data-row+.inquire-data-row {
    margin-top: 24px;
}

.inquire-data-row legend {
    font-size: 24px;
    font-weight: 500;
    margin-left: 16px;
    padding: 8px;
    box-sizing: border-box;
}

.inquire-data .action {
    margin-top: 24px;
    display: flex;
}

.inquire-data .btn {
    width: 50%;
    font-size: 20px;
}

.inquire-data .btn+.btn {
    margin-left: 8px;
}

.twitter-typeahead {
    width: 100%;
}

.tt-menu {
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    margin-top: 5px;
    width: 100%;
    /* 可能需要調整以適應您的輸入框 */
}

#scrollable-dropdown-menu .tt-suggestion {
    padding: 3px 20px;
    line-height: 24px;
}

#scrollable-dropdown-menu .tt-suggestion:hover,
#scrollable-dropdown-menu .tt-suggestion.tt-cursor {
    background-color: #eee;
}

#scrollable-dropdown-menu .empty-message {
    padding: 3px 20px;
    text-align: center;
}

@media screen and (max-width:1280px){
    .account_subject .main_title h3 {
        margin-bottom: 16px;
    }

    .account_subject_content {
        flex-direction: column-reverse;
    }

    .inquire-data {
        width: 100%;
        margin-bottom: 40px;
        margin-left: 0;
    }

    .account_subject .tableFixHead {
        width: 100%;
        max-width: 100%;

    }

}

@media screen and (max-width: 400px) {
    .main_title .row_wrap>.group {
        width: 100%;
    }

    .create_btn {
        width: 100%;
    }
}


