.act_btn {
    display: inline-block;
    height: 26px;
    font-size: 14px;
    font-weight: 400;
    padding: 6px 16px;
    margin-bottom: 0;
    /* box-shadow: 2px 4px 10px 0 rgba(4, 128, 128, 0.25); */
    box-sizing: border-box;
    line-height: 1;
}

.act-disabled {
    cursor: not-allowed;
    background-color: #C6C6C6;
}

.btn_create {
    width: 180px;
    height: 40px;
    font-size: 18px;
}

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

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

.tableFixHead table tr th,
.tableFixHead table tr td {
    /* text-align: left; */
    padding-left: 16px;
}

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

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


.tableFixHead table tr td.text-left {
    text-align: left;
}

.tableFixHead table tr td.text-center {
    text-align: center;
}

.tableFixHead table tr td.text-right {
    text-align: right;
}

/* .tableFixHead table tr th.text-right,
.tableFixHead table tr td.text-right{
    padding-right: 16px;
} */

.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;
}

/* form modal */
.modal .action .btn {
    width: 150px;
    height: 40px;
    font-size: 16px;
    line-height: 1.5;
    box-sizing: border-box;
}

/* form_modal */
.form_modal.modal {
    padding: 0 0;
    min-width: 311px;

}

.form_modal .item_header {
    width: 100%;
    height: 36px;
    padding: 0 24px;
    background: #285ee4;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
}

.form_modal .item_header>span {
    color: #fff;
    font-size: 20px;
}

.form_modal .item_body {
    padding: 24px;
}

/* input */
.input_field {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 24px;
    text-align-last: left;
}

.input_field input[type=text]:focus,
.input_field input[type=number]:focus,
.input_field textarea:focus {
    border: 2px solid #658ae6;
}


/* 填入框標題 */
.input_field label {
    min-width: 96px;
    margin-right: 16px;
    font-size: 18px;
    color: #3d3d3d;
    text-align-last: justify;
}


.input_field input {
    width: calc(100% - 120px);
    height: 36px;
    padding: 4px 12px;
    box-sizing: border-box;
    border: 1px solid #c6c6c6;
    border-radius: 8px;
    background: #fff;
    font-size: 18px;
    text-align: left;
    color: #3d3d3d;
    outline: none;
}

.input_field .input_disabled {
    background: #dbdbdb;
    color: #999;
    pointer-events: none;
    -moz-user-select: none;
    /* Firefox */
    -webkit-user-select: none;
    /* Chrome , Safari*/
    -ms-user-select: none;
    /* IE10 */
    -o-user-select: none;
    /*Opera*/
    -khtml-user-select: none;
    /* 古早瀏覽器 */
    user-select: none;
}


.input_field input[type=number]::placeholder,
.input_field input[type=text]::placeholder,
.input_field input[type=email]::placeholder {
    color: #b4b4b4;
}

.input_field input[type=number]::-webkit-input-placeholder,
.input_field input[type=text]::-webkit-input-placeholder,
.input_field input[type=email]::-webkit-input-placeholder {
    color: #b4b4b4;
}

.input_field input[type=number]:-ms-input-placeholder,
.input_field input[type=text]:-ms-input-placeholder,
.input_field input[type=email]:-ms-input-placeholder {
    color: #b4b4b4;
}

.input_field.fn_note textarea[name="description"]::placeholder {
    color: #b4b4b4;
}


.input_field.fn_note {
    display: flex;
    align-items: start;
}

.input_field.fn_note textarea {
    width: calc(100% - 120px);
    padding: 4px 12px;
    border: 1px solid #c6c6c6;
    border-radius: 8px;
    color: #3d3d3d;
    outline: none;
    font-size: 18px;
    min-height: 36px;
    resize: vertical;
}

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

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

.form_modal .input_field.error .error_message {
    display: block;
}

#ex7_modal.modal .action {
    justify-content: end;
}

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


    .input_field {
        flex-direction: column;
        align-items: start;
    }

    .input_field label {
        margin-bottom: 4px;
    }

    .input_field input,
    .input_field.fn_note textarea {
        width: 100%;
    }
}

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

    .create_btn {
        width: 100%;
    }
}



