/* =========================================================
   그누보드 게시판 아이콘 깨짐 방지
========================================================= */

.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands {

    font-family:
        "Font Awesome 6 Free",
        "Font Awesome 6 Brands" !important;

    font-style: normal !important;
    font-variant: normal !important;

    text-rendering: auto;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Solid 아이콘 */

.fa-solid,
.fas {

    font-weight: 900 !important;

}


/* Regular 아이콘 */

.fa-regular,
.far {

    font-weight: 400 !important;

}


/* Brands 아이콘 */

.fa-brands,
.fab {

    font-family: "Font Awesome 6 Brands" !important;

    font-weight: 400 !important;

}


/* 게시판 버튼 내부 아이콘 */

button i,
a i,
.btn i,
.bo_btn i,
.board_btn i {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    line-height: 1;

    font-style: normal;

}





/* 게시판 css*/
/* =========================================================
   GNUBOARD PREMIUM LIST
========================================================= */

#bo_list {
    width: 100%;
}


/* =========================================================
   TABLE
========================================================= */

#bo_list .tbl_head01 {
    width: 100%;
    border-top: 2px solid #222;
}

#bo_list .tbl_head01 table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}


/* =========================================================
   HEADER
========================================================= */

#bo_list .tbl_head01 thead th {
    height: 48px;

    padding: 0 8px;

    border-bottom: 1px solid #ddd;

    background: #fafafa;

    color: #333;

    font-size: 13px;
    font-weight: 600;

    text-align: center;

    white-space: nowrap;
}


/* =========================================================
   PC COLUMN
========================================================= */

#bo_list .td_chk {
    width: 42px;
}

#bo_list .td_num {
    width: 55px;
}

#bo_list .td_subject {
    width: auto;
}

#bo_list .td_name {
    width: 90px;
}

#bo_list .td_datetime {
    width: 90px;
}

#bo_list .td_num2 {
    width: 55px;
}


/* =========================================================
   BODY
========================================================= */

#bo_list .tbl_head01 tbody tr {
    border-bottom: 1px solid #eee;

    transition: background .2s ease;
}

#bo_list .tbl_head01 tbody tr:hover {
    background: #fafafa;
}


#bo_list .tbl_head01 tbody td {
    height: 62px;

    padding: 0 8px;

    color: #666;

    font-size: 14px;

    text-align: center;

    vertical-align: middle;
}


/* =========================================================
   SUBJECT
========================================================= */

#bo_list .td_subject {
    text-align: left !important;

    overflow: hidden;
}


#bo_list .bo_subject {
    width: 100%;

    overflow: hidden;
}


#bo_list .bo_subject a {
    display: block;

    width: 100%;

    overflow: hidden;

    color: #222;

    font-size: 15px;
    font-weight: 500;

    line-height: 22px;

    text-align: left !important;

    text-overflow: ellipsis;
    white-space: nowrap;

    text-decoration: none;
}


#bo_list .bo_subject a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* =========================================================
   NUMBER / DATE / HIT
========================================================= */

#bo_list .td_num {
    color: #999;
}

#bo_list .td_datetime,
#bo_list .td_num2 {
    color: #999;
    font-size: 13px;
}


/* =========================================================
   MOBILE INFO
========================================================= */

#bo_list .bo_mobile_info {
    display: none;
}


/* =========================================================
   NOTICE
========================================================= */

#bo_list .bo_notice .bo_subject a {
    font-weight: 700;
}

#bo_list .bo_notice .td_num {
    color: #222;
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    #bo_list .tbl_head01 {
        border-top: 2px solid #222;
    }

    #bo_list .tbl_head01 table {
        table-layout: fixed;
    }


    /* -----------------------------------------
       헤더
       체크 / 번호 / 제목만 표시
    ----------------------------------------- */

    #bo_list .tbl_head01 thead th {
        height: 42px;

        padding: 0 4px;

        font-size: 12px;
    }


    /* 체크 */
    #bo_list .td_chk {
        width: 28px !important;
        min-width: 28px !important;
        max-width: 28px !important;
    }


    /* 번호 */
    #bo_list .td_num {
        width: 30px !important;
        min-width: 30px !important;
        max-width: 30px !important;
    }


    /* 제목 */
    #bo_list .td_subject {
        width: auto !important;
        min-width: 0 !important;

        padding: 9px 5px !important;

        text-align: left !important;
    }


    /* -----------------------------------------
       PC용 작성자 / 날짜 / 조회 숨김
    ----------------------------------------- */

    #bo_list .td_name,
    #bo_list .td_datetime,
    #bo_list .td_num2,

    #bo_list th.td_name,
    #bo_list th.td_datetime,
    #bo_list th.td_num2 {
        display: none !important;
    }


    /* -----------------------------------------
       게시글
    ----------------------------------------- */

    #bo_list .tbl_head01 tbody td {
        height: auto;

        padding-top: 9px;
        padding-bottom: 9px;
    }


    /* -----------------------------------------
       제목
    ----------------------------------------- */

    #bo_list .bo_subject {
        width: 100%;
    }


    #bo_list .bo_subject a {
        font-size: 14px;

        line-height: 20px;

        text-align: left !important;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;
    }


    /* -----------------------------------------
       모바일 작성자 + 날짜
    ----------------------------------------- */

    #bo_list .bo_mobile_info {
        display: flex;

        align-items: center;

        margin-top: 3px;

        height: 16px;

        overflow: hidden;

        color: #999;

        font-size: 11px;

        line-height: 16px;
    }


    #bo_list .bo_mobile_name {
        max-width: 80px;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;
    }


    #bo_list .bo_mobile_date {
        margin-left: 8px;

        white-space: nowrap;
    }


    #bo_list .bo_mobile_date::before {
        content: "·";

        margin-right: 8px;

        color: #ccc;
    }


    /* -----------------------------------------
       체크박스
    ----------------------------------------- */

    #bo_list .td_chk input[type="checkbox"] {
        width: 15px;
        height: 15px;

        margin: 0;

        vertical-align: middle;
    }


    /* -----------------------------------------
       번호
    ----------------------------------------- */

    #bo_list .td_num {
        padding: 0 !important;

        color: #999;

        text-align: center !important;
    }


    /* -----------------------------------------
       공지
    ----------------------------------------- */

    #bo_list .bo_notice .td_num {
        color: #222;
        font-weight: 600;
    }

}

/*모바일 게시판 리스트 css*/
/* =========================================================
   모바일 - 작성자 / 날짜 / 조회수 완전 숨김
========================================================= */

/* =========================================================
   모바일 게시판
   글쓴이 / 날짜 / 조회 필드 강제 숨김
========================================================= */

@media screen and (max-width: 768px) {

    /* 테이블 */
    #bo_list table {
        width: 100% !important;
    }


    /* -----------------------------------------
       체크박스 + 번호 + 제목만 표시
       나머지 필드는 강제 숨김
    ----------------------------------------- */

    #bo_list thead th:nth-child(4),
    #bo_list tbody td:nth-child(4),

    #bo_list thead th:nth-child(5),
    #bo_list tbody td:nth-child(5),

    #bo_list thead th:nth-child(6),
    #bo_list tbody td:nth-child(6) {
        display: none !important;
    }


    /* -----------------------------------------
       기존 클래스도 함께 숨김
    ----------------------------------------- */

    #bo_list .td_name,
    #bo_list .td_datetime,
    #bo_list .td_num2,
    #bo_list .td_good,
    #bo_list .td_nogood {
        display: none !important;
    }


    /* -----------------------------------------
       제목
    ----------------------------------------- */

    #bo_list .td_subject {
        width: auto !important;
        min-width: 0 !important;

        text-align: left !important;

        padding: 8px 6px !important;
    }


    #bo_list .bo_subject {
        width: 100% !important;
    }


    #bo_list .bo_subject a {
        display: block !important;

        width: 100% !important;

        text-align: left !important;

        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }


    /* -----------------------------------------
       번호
    ----------------------------------------- */

    #bo_list .td_num {
        width: 32px !important;
        min-width: 32px !important;
        max-width: 32px !important;

        padding: 0 !important;

        text-align: center !important;
    }


    /* -----------------------------------------
       체크박스
    ----------------------------------------- */

    #bo_list .td_chk {
        width: 28px !important;
        min-width: 28px !important;
        max-width: 28px !important;

        padding: 0 !important;

        text-align: center !important;
    }

}


































/* view css */
/* =========================================================
   GNUBOARD VIEW
   PREMIUM MINIMAL DESIGN
   댓글 영역은 수정하지 않음
========================================================= */


/* =========================================================
   VIEW 전체
========================================================= */

#bo_v {
    width: 100%;
    max-width: 1120px;

    margin: 0 auto;
    padding: 0 24px;

    box-sizing: border-box;
}


/* =========================================================
   제목 영역
========================================================= */

#bo_v_title {
    margin: 0 0 26px;
    padding: 30px 32px 25px;

    background: #f7f9fc;

    border: 1px solid #e7ebf0;
    border-radius: 12px;

    box-sizing: border-box;
}


/* 제목 */

#bo_v_title .bo_v_tit {
    display: block;

    margin: 0;

    color: #182536;

    font-size: 27px;
    font-weight: 700;

    line-height: 1.5;

    letter-spacing: -0.7px;

    word-break: keep-all;
}


/* 제목 링크 */

#bo_v_title .bo_v_tit a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   작성자 / 날짜 / 조회
========================================================= */

#bo_v_info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    margin-top: 14px;

    color: #929ba6;

    font-size: 12px;

    line-height: 20px;
}


#bo_v_info strong {
    color: #53606d;

    font-weight: 600;
}


#bo_v_info > * {
    display: inline-flex;
    align-items: center;
}


#bo_v_info > * + * {
    margin-left: 13px;
}


#bo_v_info > * + *::before {
    content: "";

    width: 3px;
    height: 3px;

    margin-right: 13px;

    background: #c6cdd5;

    border-radius: 50%;
}


/* =========================================================
   본문 영역
========================================================= */

#bo_v_atc {
    margin: 0;
}


/* 본문 */

#bo_v_con {
    min-height: 300px;

    padding: 45px 32px 55px;

    background: #fff;

    border: 1px solid #4d4e4f;
    border-radius: 12px;

    color: #3e4956;

    font-size: 16px;

    line-height: 2;

    word-break: break-word;

    box-shadow: 0 6px 25px rgba(20, 35, 50, .035);

    box-sizing: border-box;
}


/* 본문 기본 태그 */

#bo_v_con p {
    margin: 0 0 1.2em;
}


#bo_v_con p:last-child {
    margin-bottom: 0;
}


#bo_v_con h1,
#bo_v_con h2,
#bo_v_con h3,
#bo_v_con h4 {
    color: #182536;

    line-height: 1.5;
}


#bo_v_con h2 {
    margin: 35px 0 15px;

    font-size: 23px;
}


#bo_v_con h3 {
    margin: 30px 0 12px;

    font-size: 20px;
}


/* 인용 */

#bo_v_con blockquote {
    margin: 25px 0;

    padding: 15px 18px;

    background: #f7f9fc;

    border-left: 3px solid #315b86;

    border-radius: 0 6px 6px 0;

    color: #687481;
}


/* 링크 */

#bo_v_con a {
    color: #315b86;

    text-underline-offset: 3px;
}


/* 이미지 */

#bo_v_con img {
    display: block;

    max-width: 100%;
    height: auto;

    margin: 28px auto;

    border-radius: 7px;
}


/* =========================================================
   첨부파일
========================================================= */

#bo_v_file,
#bo_v_link {
    margin-top: 14px;

    padding: 18px 20px;

    background: #f8fafc;

    border: 1px solid #e5eaf0;
    border-radius: 10px;

    box-sizing: border-box;
}


#bo_v_file h2,
#bo_v_link h2 {
    margin: 0 0 10px;

    color: #273648;

    font-size: 13px;
    font-weight: 700;
}


#bo_v_file ul,
#bo_v_link ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


#bo_v_file li,
#bo_v_link li {
    display: flex;
    align-items: center;

    min-height: 40px;

    padding: 0 12px;

    background: #fff;

    border: 1px solid #e1e6eb;
    border-radius: 6px;

    color: #687583;

    font-size: 12px;

    overflow: hidden;
}


#bo_v_file li + li,
#bo_v_link li + li {
    margin-top: 6px;
}


#bo_v_file a,
#bo_v_link a {
    max-width: 100%;

    color: inherit;

    text-decoration: none;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   추천 / 비추천
========================================================= */

#bo_v_act {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 7px;

    margin: 24px 0 30px;
}


#bo_v_act a,
#bo_v_act button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 72px;
    height: 37px;

    padding: 0 13px;

    background: #fff;

    border: 1px solid #dce3e9;
    border-radius: 6px;

    color: #687480;

    font-size: 11px;

    text-decoration: none;

    cursor: pointer;

    transition: .2s ease;
}


#bo_v_act a:hover,
#bo_v_act button:hover {
    border-color: #315b86;

    color: #315b86;

    background: #f8fafc;
}


/* =========================================================
   이전글 / 다음글
========================================================= */

#bo_v_nb {
    margin-top: 25px;

    background: #fff;

    border: 1px solid #e4e9ee;
    border-radius: 10px;

    overflow: hidden;
}


#bo_v_nb a {
    display: flex;

    align-items: center;

    min-height: 52px;

    padding: 0 17px;

    color: #5d6875;

    font-size: 12px;

    text-decoration: none;

    transition: .2s ease;
}


#bo_v_nb a + a {
    border-top: 1px solid #edf0f3;
}


#bo_v_nb a:hover {
    background: #f8fafc;

    color: #315b86;
}


/* =========================================================
   하단 버튼
========================================================= */

#bo_v .bo_v_btn {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 7px;

    margin-top: 17px;
}


#bo_v .bo_v_btn a,
#bo_v .bo_v_btn button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 78px;
    height: 40px;

    padding: 0 15px;

    background: #fff;

    border: 1px solid #dce3e9;
    border-radius: 6px;

    color: #52606d;

    font-size: 11px;

    text-decoration: none;

    cursor: pointer;

    transition: .2s ease;
}


#bo_v .bo_v_btn a:hover,
#bo_v .bo_v_btn button:hover {
    border-color: #315b86;

    color: #315b86;

    background: #f8fafc;
}


/* =========================================================
   목록 버튼 - 딥블루
========================================================= */

#bo_v .bo_v_btn .btn_b01,
#bo_v .bo_v_btn .btn_list {
    background: #173b63;

    border-color: #173b63;

    color: #fff;
}


#bo_v .bo_v_btn .btn_b01:hover,
#bo_v .bo_v_btn .btn_list:hover {
    background: #102e4e;

    border-color: #102e4e;

    color: #fff;
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    /* 전체 좌우 여백 */

    #bo_v {
        width: 100%;

        padding: 0 15px;

        margin: 0 auto;
    }


    /* 제목 */

    #bo_v_title {
        margin-bottom: 16px;

        padding: 22px 18px 19px;

        border-radius: 10px;
    }


    #bo_v_title .bo_v_tit {
        font-size: 20px;

        line-height: 1.5;

        letter-spacing: -.4px;
    }


    /* 정보 */

    #bo_v_info {
        margin-top: 11px;

        font-size: 10px;

        line-height: 18px;
    }


    #bo_v_info > * + * {
        margin-left: 8px;
    }


    #bo_v_info > * + *::before {
        margin-right: 8px;
    }


    /* 본문 */

    #bo_v_con {
        min-height: 220px;

        padding: 28px 18px 38px;

        border-radius: 10px;

        font-size: 14px;

        line-height: 1.85;

        box-shadow: 0 4px 18px rgba(20,35,50,.025);
    }


    #bo_v_con h2 {
        margin: 28px 0 12px;

        font-size: 19px;
    }


    #bo_v_con h3 {
        margin: 24px 0 10px;

        font-size: 17px;
    }


    #bo_v_con img {
        margin: 20px auto;

        border-radius: 6px;
    }


    /* 첨부 */

    #bo_v_file,
    #bo_v_link {
        margin-top: 10px;

        padding: 14px;

        border-radius: 8px;
    }


    #bo_v_file h2,
    #bo_v_link h2 {
        margin-bottom: 8px;

        font-size: 11px;
    }


    #bo_v_file li,
    #bo_v_link li {
        min-height: 36px;

        padding: 0 9px;

        font-size: 10px;
    }


    /* 추천 */

    #bo_v_act {
        margin: 17px 0 24px;
    }


    #bo_v_act a,
    #bo_v_act button {
        min-width: 58px;

        height: 34px;

        padding: 0 9px;

        font-size: 10px;
    }


    /* 이전 / 다음 */

    #bo_v_nb {
        margin-top: 18px;

        border-radius: 8px;
    }


    #bo_v_nb a {
        min-height: 44px;

        padding: 0 12px;

        font-size: 10px;
    }


    /* 하단 버튼 */

    #bo_v .bo_v_btn {
        margin-top: 11px;
    }


    #bo_v .bo_v_btn a,
    #bo_v .bo_v_btn button {
        min-width: 61px;

        height: 37px;

        padding: 0 10px;

        font-size: 10px;
    }

}



































































































@media (max-width: 768px) {

    /* =====================================
       게시판 전체
    ===================================== */

    #bo_list table {
        width: 100% !important;
        table-layout: auto !important;
        border-collapse: collapse !important;
    }

    #bo_list table th,
    #bo_list table td {
        box-sizing: border-box !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }


    /* =====================================
       번호
       너무 좁지 않게 / 최소 공간
    ===================================== */

    #bo_list .td_num,
    #bo_list th.td_num {
        width: 28px !important;
        min-width: 28px !important;
        max-width: 28px !important;

        padding-left: 2px !important;
        padding-right: 2px !important;

        text-align: center !important;
        white-space: nowrap !important;
    }


    /* =====================================
       제목
       남는 공간 최대한 사용
       왼쪽 정렬
    ===================================== */

    #bo_list .td_subject,
    #bo_list th.td_subject {
        width: auto !important;
        min-width: 0 !important;

        padding-left: 6px !important;
        padding-right: 6px !important;

        text-align: left !important;

        overflow: hidden !important;
    }

    #bo_list .td_subject a {
        display: block !important;

        width: 100% !important;

        text-align: left !important;

        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }


    /* =====================================
       작성자
    ===================================== */

    #bo_list .td_name,
    #bo_list th.td_name {
        width: 45px !important;
        min-width: 45px !important;
        max-width: 45px !important;

        padding-left: 2px !important;
        padding-right: 2px !important;

        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }


    /* =====================================
       날짜
    ===================================== */

    #bo_list .td_datetime,
    #bo_list th.td_datetime {
        width: 48px !important;
        min-width: 48px !important;
        max-width: 48px !important;

        padding-left: 2px !important;
        padding-right: 2px !important;

        white-space: nowrap !important;
        overflow: hidden !important;
    }


    /* =====================================
       조회수
    ===================================== */

    #bo_list .td_num2,
    #bo_list th.td_num2 {
        width: 28px !important;
        min-width: 28px !important;
        max-width: 28px !important;

        padding-left: 2px !important;
        padding-right: 2px !important;

        text-align: center !important;
        white-space: nowrap !important;
    }


    /* =====================================
       추천 / 비추천
    ===================================== */

    #bo_list .td_good,
    #bo_list .td_nogood,
    #bo_list th.td_good,
    #bo_list th.td_nogood {
        width: 28px !important;
        min-width: 28px !important;
        max-width: 28px !important;

        padding-left: 2px !important;
        padding-right: 2px !important;

        text-align: center !important;
        white-space: nowrap !important;
    }

}















































/* gallery css */
/* =========================================================
   GNUBOARD BASIC GALLERY
   좌우 여백 + 이미지 확대 + 이미지 간격
========================================================= */

#bo_gall {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;

    /* 전체 좌우 여백 */
    padding-left: 25px !important;
    padding-right: 25px !important;
}


/* 검색창 숨김 */

#bo_gall .bo_sch_wrap {
    display: none !important;
}


/* =========================================================
   기본 갤러리 간격
========================================================= */

#bo_gall .gall_list {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    /* 이미지 사이 여백 */
    column-gap: 22px !important;
    row-gap: 35px !important;
}


/* =========================================================
   갤러리 아이템
========================================================= */

#bo_gall .gall_li {
    margin-bottom: 0 !important;
}


/* =========================================================
   이미지 크기
   기본 구조 유지하면서 조금 크게
========================================================= */

#bo_gall .gall_img {
    width: 100% !important;

    margin: 0 !important;
}


/* 이미지 */

#bo_gall .gall_img img {
    display: block !important;

    width: 100% !important;

    margin: 0 auto !important;

    object-fit: cover;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    #bo_gall {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }


    #bo_gall .gall_list {
        column-gap: 12px !important;
        row-gap: 25px !important;
    }

}

/* =========================================================
   MOBILE GALLERY : 2 COLUMNS
========================================================= */

@media (max-width: 768px) {

    #bo_gall {
        width: 100% !important;

        padding-left: 15px !important;
        padding-right: 15px !important;
    }


    /* 모바일 2개씩 */

    #bo_gall .gall_li {
        width: calc(50% - 7px) !important;

        margin-right: 14px !important;
        margin-bottom: 25px !important;
    }


    /* 두 번째마다 오른쪽 여백 제거 */

    #bo_gall .gall_li:nth-child(2n) {
        margin-right: 0 !important;
    }


    /* 이미지 */

    #bo_gall .gall_img {
        width: 100% !important;

        margin: 0 !important;
    }


    #bo_gall .gall_img img {
        width: 100% !important;

        height: auto !important;

        display: block !important;
    }

}
























/* =========================================================
   그누보드 게시판 목록
   번호 / 제목 / 글쓴이 / 조회 / 날짜
   컬럼 완전 정렬
   ========================================================= */

/* 게시판 */
#bo_list {
    width: 100% !important;
}

/* 테이블 영역 */
#bo_list .tbl_head01 {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* 테이블 */
#bo_list .tbl_head01 table {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;

    table-layout: fixed !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
}

/* =========================================================
   헤더
   ========================================================= */

#bo_list .tbl_head01 thead {
    display: table-header-group !important;
}

#bo_list .tbl_head01 thead tr {
    display: table-row !important;
    height: 60px !important;
}

#bo_list .tbl_head01 thead th {
    display: table-cell !important;

    box-sizing: border-box !important;

    padding: 0 10px !important;
    margin: 0 !important;

    height: 60px !important;

    text-align: center !important;
    vertical-align: middle !important;

    white-space: nowrap !important;

    font-size: 15px !important;
    font-weight: 600 !important;

    border: 0 !important;
    border-bottom: 1px solid #e5e5e5 !important;
}

/* =========================================================
   본문
   ========================================================= */

#bo_list .tbl_head01 tbody {
    display: table-row-group !important;
}

#bo_list .tbl_head01 tbody tr {
    display: table-row !important;

    height: 76px !important;

    border: 0 !important;
    border-bottom: 1px solid #eeeeee !important;
}

#bo_list .tbl_head01 tbody td {
    display: table-cell !important;

    box-sizing: border-box !important;

    padding: 0 10px !important;
    margin: 0 !important;

    height: 76px !important;

    text-align: center !important;
    vertical-align: middle !important;

    white-space: nowrap !important;

    border: 0 !important;
}

/* =========================================================
   ★ 핵심
   본문에만 존재하는 체크박스 컬럼 제거
   ========================================================= */

#bo_list .tbl_head01 tbody td.td_chk {
    display: none !important;
}

/* 혹시 td_chk 클래스가 없는 첫 번째 빈 컬럼까지 대비 */
#bo_list .tbl_head01 tbody tr > td:first-child:has(input[type="checkbox"]) {
    display: none !important;
}

/* =========================================================
   5개 컬럼 폭
   번호 12%
   제목 38%
   글쓴이 18%
   조회 12%
   날짜 20%
   ========================================================= */

/* 번호 */
#bo_list .tbl_head01 thead th:nth-child(1),
#bo_list .tbl_head01 tbody td.td_num2 {
    width: 12% !important;
    text-align: center !important;
}

/* 제목 */
#bo_list .tbl_head01 thead th:nth-child(2),
#bo_list .tbl_head01 tbody td.td_subject {
    width: 38% !important;
    text-align: center !important;
}

/* 글쓴이 */
#bo_list .tbl_head01 thead th:nth-child(3),
#bo_list .tbl_head01 tbody td.td_name {
    width: 18% !important;
    text-align: center !important;
}

/* 조회 */
#bo_list .tbl_head01 thead th:nth-child(4),
#bo_list .tbl_head01 tbody td.td_num {
    width: 12% !important;
    text-align: center !important;
}

/* 날짜 */
#bo_list .tbl_head01 thead th:nth-child(5),
#bo_list .tbl_head01 tbody td.td_datetime {
    width: 20% !important;
    text-align: center !important;
}

/* =========================================================
   제목 내용
   ========================================================= */

#bo_list .tbl_head01 td.td_subject {
    overflow: hidden !important;
}

#bo_list .tbl_head01 td.td_subject .bo_tit {
    width: 100% !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;

    text-align: center !important;
}

#bo_list .tbl_head01 td.td_subject .bo_tit a {
    display: inline-block !important;

    max-width: 100% !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;

    vertical-align: middle !important;

    text-align: center !important;
}

/* =========================================================
   글쓴이
   ========================================================= */

#bo_list .tbl_head01 td.td_name {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* =========================================================
   날짜
   ========================================================= */

#bo_list .tbl_head01 td.td_datetime {
    white-space: nowrap !important;
}

/* =========================================================
   마우스 오버
   ========================================================= */

#bo_list .tbl_head01 tbody tr:hover {
    background: #fafafa !important;
}


/* =========================================================
   모바일
   ========================================================= */

@media screen and (max-width: 768px) {

    #bo_list .tbl_head01 {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    #bo_list .tbl_head01 table {
        width: 700px !important;
        min-width: 700px !important;
    }

    #bo_list .tbl_head01 thead tr {
        height: 52px !important;
    }

    #bo_list .tbl_head01 thead th {
        height: 52px !important;
        padding: 0 8px !important;
        font-size: 14px !important;
    }

    #bo_list .tbl_head01 tbody tr {
        height: 62px !important;
    }

    #bo_list .tbl_head01 tbody td {
        height: 62px !important;
        padding: 0 8px !important;
        font-size: 14px !important;
    }

    /* 모바일 컬럼 */
    #bo_list .tbl_head01 thead th:nth-child(1),
    #bo_list .tbl_head01 tbody td.td_num2 {
        width: 80px !important;
    }

    #bo_list .tbl_head01 thead th:nth-child(2),
    #bo_list .tbl_head01 tbody td.td_subject {
        width: 300px !important;
    }

    #bo_list .tbl_head01 thead th:nth-child(3),
    #bo_list .tbl_head01 tbody td.td_name {
        width: 110px !important;
    }

    #bo_list .tbl_head01 thead th:nth-child(4),
    #bo_list .tbl_head01 tbody td.td_num {
        width: 80px !important;
    }

    #bo_list .tbl_head01 thead th:nth-child(5),
    #bo_list .tbl_head01 tbody td.td_datetime {
        width: 130px !important;
    }
}