/* 
#e31021 red
#669d31 green
#57b8ff blue
#c69c72 brown
#015fa5 deep blue
#646464 gray
#ff88dc pink
#f58a07 orange

color
blue
    #015FA5
    #BAE5F4
    #57b8ff
#fff
    #fff
gray
    #585858
    #5858582f
    #777777
    #cfcfcf
    #cfcfcfa8
    #ececec
    #f2f2f2
    #fbfbfbbe
red
    #fae1e9
    #fcb8ce
    #E31021
yellow
    #FCE6CF
    #eeb44f
green
    #C2E0C2
    #caf3ca
    #00312B
    #00A3A9
    #669d31
*/

/* basic */
body {
    font-size: 18px;
    font-family: "Microsoft JhengHei";
}

/* alert */
.message_page {
    background-color: #5858582f;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.dialog {
    min-width: 30vw;
    max-width: 90vw;
    min-height: 35vh;
    max-height: 80vh;
    background-color: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 3px 3px 10px #5858582f;
}

.dialog_loading {
    padding: 30px;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 3px 3px 10px #5858582f;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dialog_loading div {
    margin: 10px 0;
}

.loading_img {
    animation-name: loading;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.select-primary {
    padding: 5px 10px;
    color: #003229;
    background-color: unset;
}

@keyframes loading {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#dialog_title {
    padding: 5px;
    white-space: nowrap;
    font-size: 18px;
    display: flex;
    color: #fff;
    justify-content: space-between;
}

.dialog_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    min-width: 250px;
    min-height: 200px;
}

.dialog_title_img {
    width: 2vh;
    margin: 2%;
    cursor: pointer;
}

.Check_width {
    width: 100%;
    min-height: 200px;
    /* overflow-x: auto; */
    padding: 10px 0px;
}

.switch {
    display: inline-block;
    cursor: pointer;
}

.switch input {
    display: none;
}

.slider {
    border: 1px solid #777777;
    border-radius: 3px;
    margin: 0 0 10px 0;
}
.slider span {
    padding: 0.2em 0.4em;
    display: inline-block;
}

.slider span:first-child {
    background-color: #caf3ca;
}

.slider span:last-child {
    background-color: #cfcfcf;
}
.switch input:checked + .slider :first-child {
    background-color: #cfcfcf;
}
.switch input:checked + .slider span:last-child {
    background-color: #caf3ca;
}
.genelist span:last-child {
    color: #777777;
}

.clinvar span:first-child {
    color: #777777;
}

.small_dialog {
    max-width: 500px;
    max-height: 50vh;
    min-height: 100px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.disagree_btn {
    margin-bottom: 15px;
}
.disagree_btn button {
    margin-right: 10px;
}

.btn_group {
    display: inline-flex;
}
.btn_group .button_style {
    margin: 0 10px;
}

.excel_upload {
    min-height: 40vh;
    min-width: 50vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.file_content {
    width: 100%;
    min-height: 300px;
    max-height: 40vh;
    border: 1px solid #5858582f;
}

.excel_upload #dropdiv {
    width: 50%;
    min-height: 150px;
    height: 20%;
    margin: 0;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.excel_upload img {
    height: 80px;
    margin: 10px 0;
}

.upload_hint {
    font-size: 16px;
    margin-top: 5px;
    color: #777777;
}
.dialog_upload_excel {
    overflow-y: hidden;
}

.dialog_upload_excel .upload_hint {
    text-align: center;
}

.dialog_upload_excel thead {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.dialog_upload_excel tbody {
    display: block;
    height: 35vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

.dialog_upload_excel tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.dialog_edit_content {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    margin: 10px 0;
}

.dialog_edit_content label {
    margin-bottom: 20px;
    margin-left: 20px;
}

.edit_short_span {
    margin-right: 35px;
}

.dialog_edit_content input,
.dialog_edit_content select {
    width: 60%;
    min-width: 200px;
    font-size: 18px;
    margin-left: 10px;
    padding: 3px 10px;
    box-sizing: border-box;
    text-align: left;
    text-align-last: left;
}

/*dialog gene list table style*/
/*上傳報告  table CSS */
.dialog_list_table {
    border-collapse: collapse;
    font-size: 18px;
    border: 0px solid #f0f0f0;
    border-radius: 3px;
    text-align: center;
}
.dialog_list_table tbody {
    display: block;
    height: 50vh;
    overflow-y: scroll;
    overflow-x: hidden;
}
.dialog_list_table thead {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.dialog_list_table tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.dialog_list_table thead {
    width: calc(100% - 1em);
}

.dialog_list_table th {
    padding: 10px;
    vertical-align: middle;
    border: 1px solid #f0f0f0;
}
.dialog_list_table td {
    padding: 10px;
    vertical-align: middle;
    border: 1px solid #f0f0f0;
}
.report_list {
    width: 100vh;
}
.alert_list {
    width: 350px;
    list-style: circle;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}
/*針對基因報告排版*/
.gene_table_style .th:nth-child(1) {
    width: 10vh;
}
.gene_table_style .td:nth-child(1) {
    width: 10vh;
    text-align: left;
}

.gene_table_style .th:nth-child(2) {
    width: 30vh;
}
.gene_table_style .td:nth-child(2) {
    width: 30vh;
    text-align: left;
}

.btn_group {
    display: inline-flex;
}
.btn_group .button_style {
    margin: 0 10px;
}

.text_title {
    margin: 10px 0;
    color: #000;
    font-size: 24px;
    font-weight: bold;
}

.text_subtitle {
    margin-bottom: 20px;
    color: #000;
    font-size: 18px;
}
.textarea_style {
    width: 65vh;
    height: 30vh;
    font-size: 18px;
}
.textarea_style::-webkit-input-placeholder {
    font-size: 18px;
}
.textarea_error {
    width: 65vh;
    height: 30vh;
    font-size: 18px;
}
.textarea_error::-webkit-input-placeholder {
    font-size: 18px;
    color: #e31021;
}

select {
    text-align: center;
    text-align-last: center;
}

.noShow {
    display: none;
}

.font_bold {
    font-weight: bold;
}

/*用途: 文字顏色*/
.text_white {
    color: #fff;
}
/*ul灰色字*/
.text_lightgrey {
    color: #82959d;
}
/*個人體質分析*/
.bg_lightgrey {
    background-color: #e4edef;
}

/*全選*/
.text_black {
    color: #000;
}
/*分析中*/
.text_lightgreen {
    color: #669d31;
}
.bg_lightgreen {
    background-color: #669d31;
}

/*檢驗中*/
.text_brown {
    color: #c69c72;
}
.bg_brown {
    background-color: #c69c72;
}

/*待簽名*/
.text_skyblue {
    color: #57b8ff;
}
.bg_skyblue {
    background-color: #57b8ff;
}

/*已簽名*/
.text_purple {
    color: #576fff;
}
.bg_purple {
    background-color: #576fff;
}

/*已簽名*/
.text_blue {
    color: #015fa5;
}
.bg_blue {
    background-color: #015fa5;
}

/*已下載*/
/*個人體質分析*/
.text_grey {
    color: #646464;
}
.bg_grey {
    background-color: #646464;
}

/*不同意*/
.text_pink {
    color: #ff88dc;
}

.bg_pink {
    background-color: #ff88dc;
}

/*異常*/
.text_red {
    color: #e31021;
}
.bg_red {
    background-color: #e31021;
}

/* VCF 已就緒 */
.text_yellow {
    color: #f7b33c;
}

.bg_yellow {
    background-color: #f7b33c;
}

/*高風險顏色*/
.text_coralred {
    color: #dc6a66;
}
.bg_coralred {
    background-color: #dc6a66;
}

/*中風險顏色*/
.text_orange {
    color: #f58a07;
}
.bg_orange {
    background-color: #f58a07;
}

/*一般風險顏色*/
/* 報告已簡訊發送 */
.text_green {
    color: #9cc715;
}
.bg_green {
    background-color: #9cc715;
}

/*低風險顏色*/
.text_skyblue_1 {
    color: #3ebcdf;
}
.bg_skyblue_1 {
    background-color: #3ebcdf;
}

/*中心表格標題色*/
.bg_blue_green {
    background-color: #00a3a9;
}

.hint_design {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.hint {
    margin-top: 8px;
    font-size: 16px;
}

/*dialog 未登入名單排版*/
.text_content span {
    margin: 8px;
    color: #000;
    font-size: 16px;
}
.derection_line_gray {
    width: 100%;
    height: 1px;
    display: inline-block;
    background-color: #cfcfcfa8;
    margin: 10px 0;
}

/* 按鈕通用CSS*/
.button_style {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s;
    box-sizing: border-box;
}
/* 搜尋 新增受試者清單*/
.button_yellow {
    background-color: #ffddba;
    border: 1px solid #eeb44f;
    color: #000;
}
.button_yellow:hover {
    background-color: #ffecd7;
}
/* 下載勾選檔案 回到列表*/
.button_green {
    background-color: #c2e0c2;
    border: 1px solid #00312b;
    color: #000;
}
.button_green:hover {
    background-color: #caf3ca;
}

/* 修改受試者資料*/
.button_blue {
    background-color: #f7f7f7;
    border: 1px solid#015FA5;
    color: #015fa5;
}

.button_deep_blue,
.button_blue:hover {
    background-color: #015fa5;
    border: 1px solid#015FA5;
    color: #f7f7f7;
}

/*不同意覆核*/
.button_gray {
    background-color: #f0f0f0;
    border: 1px solid #000;
    color: #000;
}
.button_gray:hover {
    background-color: #777777;
    color: #fff;
}
/*登錄異常*/
.button_red {
    background-color: #fae1e9;
    border: 1px solid#E31021;
    color: #e31021;
}
.button_red:hover {
    background-color: #fcb8ce;
}
/*其他*/
.button_red_bgwhite {
    background-color: #ffffff;
    border: 1px solid#E31021;
    color: #e31021;
}
.button_red_bgwhite:hover {
    background-color: #e31021;
    color: #ffffff;
}
/*醫生建議按鈕*/
.button_shadow {
    box-shadow: 2px 2px 5px #cfcfcf;
}
.button_disable_color {
    border: 1px solid #f0f0f0;
    background-color: #f0f0f0;
    cursor: auto;
}

/*表格"報告下載"按鈕*/
.download_report {
    border: 0px;
    padding: 0px 0px;
    text-decoration: none;
    font-size: 18px;
    background-color: #ffff;
    color: #646464;
    vertical-align: middle;
}
.download_report img {
    padding-right: 10px;
    background-color: #ffff;
    vertical-align: middle;
}

/*btn margin left*/
.btn_marginLeft {
    margin: 0px 0px 0px 8px;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 76px - 40px);
    background-color: #fbfbfbbe;
    box-sizing: border-box;
}

footer {
    min-height: 40px;
    background-color: #e7e7e7;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
}

.bacground_blue {
    background-color: #7ecee93f;
}

.tab_content_title {
    color: #00a3ab;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* nav */

nav {
    height: 76px;
    width: auto;
    box-sizing: border-box;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.nav_icon img {
    height: 100%;
}

nav > div {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.user_status {
    padding: 5px;
}

.user_status span,
.user_status select {
    margin-right: 20px;
    color: #003229;
}

.logout {
    border: 1px solid #00a3a9;
    padding: 8px 10px;
    border-radius: 3px;
    color: #003229;
    background-color: #ddf1f8;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    height: 36px;
}

.logout:hover {
    color: #ddf1f8;
    background-color: #003229;
}

/* login start */
.login_container {
    align-items: center;
    justify-content: center;
}

.login_block {
    width: 25vw;
    min-width: 300px;
    height: 50vh;
    min-height: 350px;
    box-sizing: border-box;
    box-shadow: 3px 3px 10px #cfcfcf;
    border-top: 20px solid #00a3a9;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login_top {
    margin-bottom: 40px;
}

.login_top > img {
    height: 80px;
    width: auto;
}

.login_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border: 1px solid #cfcfcf;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    color: #777777;
}

.login_btn:hover {
    background-color: #ececec;
    box-shadow: 0 0 5px #cfcfcf inset;
}

.login_btn > img {
    height: 25px;
    width: auto;
    margin-right: 10px;
}

/* login end */

/* 頁籤內容顯示 */
.tab_container {
    padding: 30px 20px;
}

#tab {
    background-color: #fbfbfb;
    padding: 0px 15px;
}

#tab > ul {
    overflow: hidden;
    margin: 0;
    padding: 10px 0px 0 0px;
}

/* 頁籤div內容 */
.tab_content_1 {
    border-radius: 5px;
    clear: both;
    padding: 20px 25px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -moz-box-shadow: 0 0 10px #cfcfcf;
    -webkit-box-shadow: 0 0 10px #cfcfcf;
    box-shadow: 0 0 10px #cfcfcf;
    color: black;
    background: #fbfbfbbe;
}

.tab_design_phone,
.tab_design_phone_text {
    display: none;
}

.menu div {
    display: none;
}

.tab_design li {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-decoration: none;
    font-size: 24px;
    float: left;
    padding: 10px 20px;
    margin-left: 15px;
    background-color: #bae5f4;
    cursor: pointer;
    transition: all 0.3s;
}

.tab_design li:hover {
    box-shadow: 0 -5px 6px #cfcfcf;
}

li.checked_tab {
    background-color: #fbfbfb;
    box-shadow: 0 -5px 6px #cfcfcf;
    position: relative;
    z-index: 2;
}

/* filter start */
.search_list,
.select_state {
    display: inline-flex;
    font-size: 18px;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 10px;
    width: 100%;
}

.select_state div {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.select_state label {
    margin-right: 10px;
    margin-bottom: 3px;
    cursor: pointer;
}

.search_list input {
    width: 180px;
    font-size: 18px;
}

.search_list select {
    width: 180px;
    font-size: 18px;
}

.search_record {
    flex-direction: column;
}

.search_list_bottom {
    margin-bottom: 10px;
}

.search_record_filter span {
    margin: 0 5px;
}

.search_record_filter .button_yellow {
    margin-left: 10px;
}
.search_record_filter .button_disable_color {
    margin-left: 10px;
}

.search_record_sample .button_green {
    font-size: 15px;
    margin-right: 5px;
}

/*篩選名單排版*/
.search_list_content {
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.search_input {
    flex-direction: row;
    justify-self: start;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.search_input > label {
    margin-right: 10px;
}

.search_input span {
    margin: 0 5px 0 0;
}

.search_input .date_dash {
    margin: 0 3px;
}

.date_input_note {
    font-size: 14px;
    color: #e31021;
    font-weight: bold;
    padding: 5px;
}

.search_btn button,
.vertical_line {
    margin-left: 10px;
}

.vertical_line {
    font-size: 24px;
}

/* filter end */

/* upload file start */

.upload_file {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload_file .tab_content_title {
    align-self: flex-start;
}

#dropdiv {
    text-align: center;
    width: 80%;
    height: 40vh;
    margin: 10px auto;
    border: dashed 2px #cfcfcf;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    flex-direction: column;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s;
}

#dropdiv img {
    margin-bottom: 10px;
}

#dropdiv.drag_over,
#dropdiv:hover {
    border: 2px solid #7ecee9;
    background-color: #7ecee912;
}

.file_name {
    color: #015fa5;
    font-weight: bolder;
}

.dialog_content_item {
    display: flex;
    justify-content: start;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-y: auto;
    height: 15vh;
}

.dialog_content_item span {
    display: flex;
    flex-wrap: wrap;
}

.margin_password div {
    margin: 10px;
}

/* upload file end */

/* table */

.sign_container {
    position: relative;
    margin-top: 30px;
}

.sign_container .button_yellow {
    position: absolute;
    right: 0;
    top: -45px;
}

.table_container {
    overflow-y: auto;
    max-height: 60vh;
}

/*中心表格css*/
.list_table {
    min-width: 1200px;
    border-collapse: collapse;
    font-size: 18px;
    border: 1px solid #f0f0f0;
    border-radius: 3px;
    text-align: center;
}

.list_table th {
    color: #fff;
    padding: 10px;
    vertical-align: middle;
    border: 1px solid #f0f0f0;
    white-space: nowrap;
}

.list_table td {
    padding: 10px;
    vertical-align: middle;
    border: 1px solid #f0f0f0;
    box-sizing: border-box;
}

.excepx_descripxion {
    width: 30%;
}

.list_table textarea {
    margin-top: 5px;
    width: 90%;
    font-size: 18px;
    min-width: 300px;
}

.list_table select {
    padding: 2px 0;
    font-size: 18px;
    width: 40%;
}
.width-50 {
    max-width: 50px;
    min-width: 50px;
}
.width-75 {
    max-width: 75px;
    min-width: 75px;
}
.width-130 {
    max-width: 130px;
    min-width: 130px;
}
.width-150 {
    max-width: 150px;
    min-width: 150px;
}
.width-154 {
    max-width: 154px;
    min-width: 154px;
}

.abnormal_des {
    min-width: 130px;
    max-width: 150px;
}

.describe {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 150px;
    word-wrap: break-word;
}

.describe:hover {
    overflow: visible;
    white-space: normal;
}

.edit_user_input,
.redo_pdf_input {
    cursor: pointer;
}

.edit_user_input img,
.redo_pdf_input img {
    width: 25px;
    opacity: 0.4;
}

.edit_user_input:hover img,
.redo_pdf_input:hover img {
    opacity: 1;
}

/*報告第一格"主題"寬度固定*/
/* .list_table th.fixed_width{
    width: 80px;  
} */

/*針對第一格需要顯示顏色*/
.list_table td.table_color {
    width: 1ch;
    border: 1px solid #fff;
    padding: 0px;
}

/*針對第一格為姓名 固定寬度*/
.list_table td.for_name {
    width: 150px;
}

.descripxion {
    width: 250px;
}

.file_download {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 48px;
}

.file_download img {
    margin: 0 3px;
}

.file_download:hover {
    box-shadow: 2px 2px 5px #585858e3 inset;
}

.list_table tbody tr:hover {
    background-color: #f2f2f2;
}

.report_link {
    cursor: pointer;
}

/*異常無異常最後一格置左*/
.list_table td.align_left {
    text-align: left;
}

.list_table img {
    margin-left: 5px;
}

.sort,
.check_all {
    cursor: pointer;
    transition: all 0.3s;
}

.check_all:hover,
.sort:hover,
.list_table .order,
.list_table .order_reverse {
    box-shadow: 2px 2px 5px #585858e3 inset;
}

.cursor {
    cursor: pointer;
    transition: all 0.3s;
}

.sort span {
    position: relative;
    margin-right: 5px;
}

.sort span::after {
    content: url("../img/sort_unactive.png");
    position: absolute;
    top: 3px;
    left: 3px;
}

.order span::after {
    content: url("../img/sort_active.png");
    top: 2px;
}

.order_reverse span::after {
    content: url("../img/sort_active.png");
    top: 5px;
    transform: rotate(180deg);
}

.table_check {
    cursor: pointer;
    transition: all 0.3s;
}

.table_check:hover {
    box-shadow: 2px 2px 5px #cfcfcf inset;
}

.date_type {
    display: inline-block;
    margin-right: 8px;
}

.date_type span {
    margin: 0;
    padding: 3px 6px;
    font-size: 15px;
    border: 1px solid #777777;
    cursor: pointer;
}

.date_type span:first-child {
    margin-right: -1px;
    border-radius: 3px 0 0 3px;
}

.date_type span:last-child {
    border-radius: 0 3px 3px 0;
}

.date_type .active {
    background-color: #caf3ca;
}

.date_type .unactive {
    color: #cfcfcf;
}

.date_type .unactive:hover {
    color: #777777;
    background-color: #f2f2f2;
}

/*中心表格css*/

/*頁數CSS*/
.pagination {
    display: inline-flex;
    justify-content: flex-start;
    margin: 15px 0;
}

.pagenumber,
.pageDot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #000;
    padding: 5px 12px;
    margin: 0 5px;
}

.pagenumber {
    box-shadow: 0 0 5px #cfcfcf;
    cursor: pointer;
    background-color: #f8f8f8;
    border-radius: 3px;
    transition: all 0.3s;
}

.pagenumber img {
    height: 18px;
}

.pagenumber.active,
.pagenumber:hover {
    background-color: #c2e0c2;
}

/*頁數CSS*/

/*report*/
.risk_up_content {
    display: flex;
    padding: 15px 0px;
    flex-direction: row;
}
/*report user card*/
.content_user {
    display: flex;
    padding: 15px;
    flex-direction: row;
    border-radius: 5px;
    clear: both;
    padding: 0 15px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0px -2px 10px #888;
    color: black;
    background: #fbfbfbbe;
    /* flex-grow: 3; */
    width: 20vw;
    flex-wrap: wrap;
}
.content_user_info {
    display: flex;
}
.content_user_info div {
    margin: 11px;
}
.report_table_userinfo td {
    padding: 10px;
}

/*report_page button flex */
.content_user_button {
    flex-grow: 15;
    display: flex;
}
/*report_page agree button flex*/
.button_comment {
    display: flex;
    flex-direction: row;
    border-radius: 5px;
    align-items: flex-end;
}
/*report_page returnlist button flex*/
.return_list {
    flex-grow: 2;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.inspect_item {
    width: 50vw;
    cursor: pointer;
    transition: all 0.3s;
}
.inspect_item:hover {
    box-shadow: 2px 2px 5px #cfcfcf;
}

#redirect > h4 {
    display: inline-block;
    font-size: 24px;
    margin: 10px 0 10px 10px;
    padding: 0 100px 10px 0;
    border-bottom: 1px solid #000;
}
#redirect > p {
    margin: 0 0 10px 10px;
}

.pdf-select {
    display: flex;
    justify-content: center;
    align-items: center;
}

.except_abnormal_other {
    display: flex;
    flex-direction: column;
}
.except_abnormal_other p {
    cursor: pointer;
    margin-top: 2px;
}

/* 密碼修改 */
.reset_form,
.account_form {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: column;
}

.error_text {
    color: #e31021;
    font-size: 16px;
    margin-top: 5px;
}

/* 帳號管理頁面 */
.account_search_content {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.account_search_content input {
    font-size: 18px;
    margin-right: 10px;
}

.width-20 {
    width: 20%;
}

.width-20 button {
    margin-right: 10px;
}

.account_form {
    min-width: 50vw;
    min-height: 60vh;
    overflow-x: auto;
}

.dialog_form_item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
}

.dialog_label {
    display: inline-block;
    width: 140px;
    text-align: left;
}

.dialog_label span {
    color: #e31021;
    margin-left: 4px;
}

.dialog_input {
    width: 400px;
    font-size: 18px;
}

.dialog_select {
    width: 408px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@media (max-width: 1300px) {
    .search_input > label {
        margin-bottom: 10px;
    }
    .search_btn {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .search_btn button,
    .vertical_line {
        margin-left: 0;
        margin-right: 10px;
    }
    .Check_width {
        overflow-x: auto;
    }
}

@media (max-width: 1024px) {
    .dialog_list_table thead {
        width: calc(100% - 0em);
    }
}

@media (max-width: 913px) {
    .tab_content_title {
        font-size: 18pt;
    }
    .risk_up_content {
        flex-direction: column-reverse;
        padding: 15px 0px 0px 0px;
    }
    .content_user {
        font-size: 18px;
        margin: 10px 0px 0px 0px;
        width: auto;
        padding: 15px;
    }
    .btn_marginLeft {
        margin: 0px 8px 0px 0px;
    }

    .report_tab_phone {
        display: block;
        background-color: #bae5f4;
        border: none;
        margin: 10px 0px 10px 0px;
        font-size: 16pt;
        border-radius: 5px;
        padding: 5px;
    }
    .tab_design.report_tab {
        display: none;
    }

    .dialog_list_table {
        width: 200%;
    }

    .tab_design li {
        font-size: 20px;
        padding: 10px;
        margin-left: 10px;
    }
    .dialog_input {
        width: 300px;
    }
    .dialog_select {
        width: 308px;
    }
}

@media (max-width: 600px) {
    .search_list_content,
    .account_search_content {
        flex-direction: column;
        align-items: flex-start;
    }

    .search_input,
    .dialog_form_item {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .search_input label,
    .search_input .date {
        width: 45%;
    }
    .search_input .date_block {
        width: 100%;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .search_input span,
    .dialog_label {
        display: block;
        margin-bottom: 3px;
    }
    .date_block span {
        width: 100%;
    }
    .search_input input,
    .dialog_row,
    .dialog_input,
    .dialog_select {
        width: 100%;
    }

    .search_input .date_dash {
        display: none;
    }
    .search_btn {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .search_btn .vertical_line {
        display: none;
    }
    .search_btn button {
        width: 45%;
        margin-bottom: 5px;
    }
    .tab_design {
        display: none;
    }
    .tab_design_phone_text {
        display: inline;
    }
    .tab_design_phone {
        width: 60vw;
        display: inline-block;
        background-color: #bae5f4;
        border: 1px solid #30a0f6;
        margin: 10px 0px 10px 0px;
        font-size: 16pt;
        border-radius: 5px;
        padding: 5px;
    }
    .Check_width {
        overflow-x: auto;
    }
    .account_search_content input {
        margin-bottom: 10px;
    }
}

@media (max-width: 490px) {
    .login_block {
        box-shadow: none;
        background-color: #fbfbfbbe;
        border-top: none;
    }
}

@media (max-width: 400px) {
    .search_btn button {
        width: 100%;
        margin-bottom: 5px;
    }
}
