@charset "utf-8";

/* 게시판 목록: 리스트형 */
.bo_list .list_table { display:block; margin:0 0 20px; }
.bo_list .list_table thead { display:none; }
.bo_list .list_table tbody { display:block; }
.bo_list .list_table tr { 
    display:flex; 
    align-items: center;
    flex-wrap: wrap;
    padding:10px; 
    border-bottom: var(--border); 
    box-shadow: 1px 1px 5px #eee;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-top: 1.5rem;
    position: relative;
}
.bo_list .list_table tbody tr.degery{
    background-color: #dbdbdb !important;
}
.bo_list .list_table td { display:inline-block; position: relative; line-height: 22px; vertical-align:middle; color: #6c757d;}
.bo_list .list_table .table_subject { 
    display: flex;
    align-items: center;
    margin:5px 0 10px; 
    font-size:1.6rem; 
    width: 100%;
    position: relative;
    z-index: 0;
 }
.bo_list .list_table .table_good::before,
.bo_list .list_table .table_nogood::before { display:inline-block; margin:0 3px; content:attr(data-label); }

.bo_list .list_table .is_notice { 
    background: #fff8ed  !important; 
    border-bottom: 1px solid #f8e6ee; }
.bo_list .list_table .is_notice .table_subject .fa-thumbtack {
    transform: rotate(325deg);
    font-size: 1.5em;
    margin: 0 1rem 0 0.3rem;
    color: #dd9429;
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: 1;
}    
.bo_list .list_table .is_notice .table_subject a { font-weight:bold; }
.bo_list .list_table .is_notice .table_wrid { font-weight:bold; color:#f9267f }
.bo_list .list_table .is_notice .table_check { display:none; }

/* 게시판 읽기 커스터마이징 */
#bo_basic_view #view_header { grid-template-columns: 50px 1fr 170px; }

/* main */
.table_subject > a {
    color: #000;
    font-weight: bold;
}
.bo_list .list_table tbody .table_subject > a {
    font-weight: bold;
    color: #9152bc;
    font-size: 14px;
    text-shadow: 0px 0px 0px #9152bc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    
}

.table_writer .write_image {
    max-width: 25px;
    border-radius: 50%;
    margin-right: 0.5rem;
}
.table_writer {
    margin-right: auto;
}
.table_hit {
    margin-right: 1rem;
}

.bo_list .list_table td.table_writer,
.bo_list .list_table td.table_hit {
    padding-right: 0.65rem;
    padding-left: 0.65rem;
}

#bo_basic_view #view_header {
    grid-template-columns: 50px 1fr 110px;
}
.bo_list .count_comment {
    background: #fffef1;
    border: 1px solid #ddd;
    box-shadow: 1px 1px 1px #eee;
    color: #333333;
    margin: 0 5px;
}

.bo_list .list_table td.table_check.chk_box {
    position: absolute;
    right: 3px;
    top: 5px;
    z-index: 1;
}

.bo_list .list_table tr:has(.fa-reply) {
    border: 0;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-radius: 0;
    width: 98%;
    margin: 0 auto;
    box-shadow: none;
    background: #fcfcfc;
}

