@charset "utf-8";


/* ─────────── 매뉴얼 CSS (작업시 삭제) ─────────── */
.sub_board { background-color: #111; }
.sub_board.at-write{ background-color: #fff; }
.sub_board .inner { width: 1200px; margin: 0 auto; padding: 160px 0 170px; }
/* ─────────── 매뉴얼 CSS (작업시 삭제) ─────────── */





/* 게시판 _ CSS */
select { cursor: pointer; border-radius: 0; -webkit-appearance: none; -moz-appearance: none; appearance: none; }
select::-ms-expand{ display: none; }

/*? 체크박스 */
#gall_allchk{ margin-bottom: 10px; }
.selec_chk { display: none; }
.chk_box {position:relative; }
.chk_box input[type="checkbox"]{ display: none; }
.chk_box input[type="checkbox"] + label { position:relative; font-size: 14px; font-weight: 400; color: #797979; letter-spacing: -0.5px; line-height: 23px; cursor: pointer; }
.chk_box input[type="checkbox"] + label span{ display: inline-block; width: 23px; height: 23px; background: #f8f8f8; border: 1px solid #ddd; border-radius: 0; vertical-align: -6px; margin-right: 5px; }
.chk_box input[type="checkbox"]:checked + label span{ background: url(img/ico_board_check.png) no-repeat center center, #000; border: 1px solid #000; }

/*? 관리자 버튼 */
#bo_list #btn_bo_user{ margin-bottom: 30px; }
#bo_v #btn_bo_user{ margin-top: 30px; }
#btn_bo_user{ width: 100%; }
#btn_bo_user ul{ display: flex; align-items: center; justify-content: flex-end; }
#btn_bo_user ul li{ text-align:center; margin-left: 7px;}
#btn_bo_user ul > li > *{ display: inline-block; height: 33px; font-size: 13px; font-weight:500; line-height: 32px; color: #777; border: 1px solid #dedede; padding: 0 12px; background-color: #fff; border-radius: 0; }
#btn_bo_user ul > li > .btn_admin{ color: #ff6600; border: 1px solid #ff6600; }

/*? 확인버튼 */
.btn_confirm{ text-align: center; margin-top: 50px; }
.btn_confirm #btn_submit{ display: inline-block; height: 50px; font-size: 17px; font-weight: 500; color: #ff6600; letter-spacing: -0.5px; line-height: 48px; border: 1px solid #ff6600; padding: 0 40px; background: #fff; border-radius: 0; transition: all 0.2s ease-in-out; }
.btn_confirm #btn_submit:hover{ color: #fff; background: #ff6600; }



/*! Category */
#bo_cate{ width: 100%; }
#bo_cate ul{ display: flex; align-items: center; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
#bo_cate ul li{ display: inline-block; margin-right: 6px; margin-bottom: 10px; }
#bo_cate ul li:last-of-type{ margin-right: 0; }
#bo_cate ul li a{ position: relative; display: inline-block; font-size: 16px; color: #d9d9d9; line-height: 31px; padding: 0 15px; border-radius: 16px; border: 1px solid #d9d9d9; background-color: #111; transition: all .2s ease-out; }
#bo_cate ul li a:hover{ color: #ff6600; border-color: #ff6600; }

#bo_cate ul li #bo_cate_on{ color: #fff; background-color: #ff6600; border-color: #ff6600; }




/*! ────────── L I S T ────────── */
.listBox{ display: flex; flex-wrap: wrap; margin: 0 auto 50px; }
.listBox > li{ position: relative; width: 32%; margin-right: 2%; }
.listBox > li:nth-of-type(3n){ margin-right: 0; }
.listBox > li:nth-of-type(n+4){ margin-top: 30px; }
.listBox > li.empty_list{ width: 100%; margin: 0; }
.listBox > li > .gall_chk{ position: absolute; left: 10px; top: 10px; z-index: 20; }
.listBox > li > a{ display: block; }
.listBox .li_empty { width: 100%; padding: 100px 0 ; color: #B5B5B5; background-color: #313131; display: flex; justify-content: center; align-items: center; font-size: 16px; text-align: center; margin-right: 0; }
.listBox .imgBox{ position: relative; width: 100%; min-height: 217px; overflow: hidden; }
.listBox .imgBox img{ width: 100% !important; height: auto; object-fit: contain; transition: all 0.5s ease-out; }
.listBox .imgBox .img-shade { position: absolute; display: block; top: 0; left: 0; width: 100%; height: 0; background-color: rgba(0, 0, 0, .6); transition: all .3s ease-out; }
.listBox .imgBox .btn-more { position: absolute; display: inline-block; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 14px; line-height: 28px; margin: 0 auto; padding: 0 20px; border-radius: 6px; border: 1px solid #fff; opacity: 0; transition: all .3s ease-out; }

/** info box */
.listBox .info-box { position: relative; width: 100%; z-index: 11; overflow: hidden; margin-top: 15px; }
.listBox .info-box > h5{ display: block; width: 100%; font-size: 20px; color: #fff; line-height: 30px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: all .2s ease-out; }
.listBox .info-box > ul{ margin-top: 8px; }
.listBox .info-box > ul > li{ width: 100%; font-size: 16px; line-height: 16px; }
.listBox .info-box > ul > li > p{ color: #d9d9d9; font-weight: 300; }

/** hover box */
.listBox .imgBox .hovBox{ position: absolute; left: 0; top: 0; display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; background: rgba(0, 0, 0, .6); overflow: hidden; z-index: 10; opacity: 0; transition: all .3s ease-out; }
.listBox .imgBox .hovBox > span{ display: inline-flex; justify-content: space-between; align-items: center; width: 130px; height: 40px; background-color: #ff6600; padding: 12px; opacity: 0; transform: translateY(20px); transition: all .3s ease-out .2s; }
.listBox .imgBox .hovBox > span > p{ font-size: 12px; font-weight: 500; color: #fff; }

.listBox .btn-bo-edit{ display: inline-block; font-size: 14px; color: #888; padding: 4px 10px; border-radius: 3px; background-color: #eee; margin-top: 8px; }

/*? hover */
.listBox li:hover{ border-color: rgba(256, 256, 256, .1); }
.listBox li:hover a .hovBox{ opacity: 1; }
.listBox li:hover a .hovBox > span{ opacity: 1; transform: translateY(0); }
.listBox li:hover .info-box > h5{ color: #ff6600; }

.listBox .list-flow { display: flex; justify-content: flex-start; align-items: center; margin-top: 20px; background-color: #313131; border-radius: 5px; padding: 15px; }
.listBox .list-flow > span{ font-size: 14px; color: #fff; margin-right: 10px; }
.listBox .list-flow > input{ background-color: #aaa; border: 1px solid #aaa; font-size: 14px; line-height: 20px; padding-left: 5px; }
.listBox .list-flow > input:focus, .listBox .list-flow > input:focus-visible{ background-color: #aaa; border: 1px solid #aaa; outline: none; }
.listBox .list-flow > button{ font-size: 14px; line-height: 22px; padding: 0 6px; color: #fff; background-color: #ff6600; border: 0; outline: none; margin-left: 5px; }



/*! ────────── V I E W ────────── */

/** v-page btns */
.sub_board .v-btns .end-line { display: block; width: 100%; height: 1px; background-color: #4d4d4d; }

.sub_board .v-btns .bo-btns { display: flex; justify-content: center; align-items: center; }
.sub_board .v-btns .bo-btns > a{ display: inline-flex; justify-content: flex-start; align-items: center; margin-top: 30px; margin-right: 30px; }
.sub_board .v-btns .bo-btns > a:last-of-type{ margin-right: 0; }
.sub_board .v-btns .bo-btns > a > h4{ font-size: 24px; color: #fff; font-weight: 600; transition: all .3s ease-out; }
.sub_board .v-btns .bo-btns > a > span{ display: block; margin-right: 10px; }
.sub_board .v-btns .bo-btns > a > span.bo-go-list{ width: 16px; height: 16px; background: url(/img/bo-go-list.svg) no-repeat center center; background-size: contain; }
.sub_board .v-btns .bo-btns > a > span.bo-go-prev{ width: 16px; height: 16px; background: url(/img/arrow-prev.svg) no-repeat center center; background-size: contain; }
.sub_board .v-btns .bo-btns > a > span.bo-go-next{ width: 16px; height: 16px; background: url(/img/arrow-next.svg) no-repeat center center; background-size: contain; }
/*? hover */
.sub_board .v-btns .bo-btns > a:hover > h4{ color: #ff6600; }
.sub_board .v-btns #btn_bo_user { margin-top: 20px; }


/** v-page left */
.sub_board .v-page { position: relative; display: flex; justify-content: space-between; align-items: stretch; margin-top: 40px; }

.sub_board .v-page .bo_v_left { width: 47.5%; max-width: 600px; }
.sub_board .v-page .video-container { position: relative; padding-bottom: 56.25%; /* 16:9 비율인 경우 */ /* padding-bottom값은 4:3 비율인 경우 75%로 설정합니다 */ padding-top: 25px; height: 0; }
.sub_board .v-page .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


/** v-page right */

.sub_board .v-page .bo_v_right { width: 50.5%; }
.sub_board .v-page .bo_v_right #bo_v_img { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.sub_board .v-page .bo_v_right #bo_v_img > a{ width: 50%; height: auto; }
.sub_board .v-page .bo_v_right #bo_v_img img{ width: 100% !important; height: auto; object-fit: contain; cursor: default; }


/** v-info */
.sub_board .v-info { position: relative; margin-top: 40px; }
.sub_board .v-info > ul{ display: flex; justify-content: space-between; border-top: 1px solid #4d4d4d;  border-bottom: 1px solid #4d4d4d; padding: 25px 3%; }
.sub_board .v-info > ul > li > h5{ display: block; font-size: 20px; color: #fff; font-weight: 600; }
.sub_board .v-info > ul > li > p{ font-size: 14px; color: rgba(255, 255, 255, .7); margin-top: 10px; }




/*! ─────────── W R I T E ─────────── */
.sub_board .inner.w-inner{ max-width: 1200px; margin: 0 auto; }
#bo_w.w-page { padding: 50px 5% 50px;  border-radius: 10px; background-color: #fff; margin-top: 40px; }
#bo_w{ position: relative; width: 100%; }
#bo_w form .frmBox ul{ display: flex; flex-wrap: wrap; justify-content: space-between; }
#bo_w form .frmBox ul li{ width: 100%; margin-bottom: 30px; }
#bo_w form .frmBox ul li.wid02{ width: 49%; }
#bo_w form .frmBox ul li:last-of-type{ margin-bottom: 0; }
#bo_w form .frmBox ul li .label{ font-size: 18px; font-weight: 500; color: #111; letter-spacing: -0.5px; margin-bottom: 10px; }
#bo_w form .frmBox ul li .label .req{ display: inline-block; width: 5px; height: 5px; background: #ff6600; border-radius: 50%; vertical-align: 10px; margin-left: 5px; }
#bo_w form .frmBox ul li .label em{ font-size: 14px; font-weight: 400; color: #aaa; font-style: normal; }
#bo_w form .frmBox ul li .selectBox{ position: relative; }
#bo_w form .frmBox ul li .selectBox::after{ position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 10px; height: 8px; background: url(/img/ico_select.png) no-repeat center center; content: ''; display: block; }
#bo_w form .frmBox ul li select,
#bo_w form .frmBox ul li .frm_input,
#bo_w form .frmBox ul li textarea{ width: 100%; height: 55px; font-size: 16px; color: #111; padding: 0 20px; border: 1px solid #ddd; outline: none; border-radius: 0; background: #fff; transition: all 0.2s ease-in-out; }
#bo_w form .frmBox ul li select option{ background: #fff; color: #111; }
#bo_w form .frmBox ul li select{ color: #c1c5cc; background: url(/img/ico_select.png) no-repeat 98% center; }
#bo_w form .frmBox ul li textarea{ max-height: 110px; line-height: 30px; padding: 10px 20px; resize: none; }
#bo_w form .frmBox ul li .frm_input::placeholder,
#bo_w form .frmBox ul li textarea::placeholder{ color: #c1c5cc; }
#bo_w form .frmBox ul li select:focus,
#bo_w form .frmBox ul li select:focus-visible,
#bo_w form .frmBox ul li .frm_input:focus,
#bo_w form .frmBox ul li .frm_input:focus-visible,
#bo_w form .frmBox ul li textarea:focus,
#bo_w form .frmBox ul li textarea:focus-visible{ border: 1px solid #ff6600; }
/* 파일박스 */
#bo_w form .frmBox .fileBox{ width: 100%; height: 55px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; background: #fff; border: 1px solid #ddd; }
#bo_w form .frmBox .fileBox input[type="file"]{ display: none; }
#bo_w form .frmBox .fileBox label{ display: inline-block; cursor: pointer; }
#bo_w form .frmBox .fileBox .upload-name{ display: inline-block; font-size: 16px; color: #c1c5cc; border: 0; background-color: transparent; -webkit-appearance: none; -moz-appearance: none; appearance: none; }
#bo_w form .frmBox .fileBox + .file_del{ display: block; margin-top: 7px; padding: 0; }






@media screen and (max-width: 1640px){


/*! layout */

.sub_board { padding: 140px 0 30px; width: 100%; max-width: auto; }
.sub_board .inner{ padding: 0 70px; min-height: 90vh; margin: 0 auto; border-radius: 10px; }
.sub_board .inner > h2{ font-size: 80px; }


/*! ────────── L I S T ────────── */
.listBox{ display: flex; flex-wrap: wrap; margin: 0 auto; padding-bottom: 40px; }
.listBox > li{ position: relative; width: 32%; margin-right: 2%; }
.listBox > li:nth-of-type(3n){ margin-right: 0; }
.listBox > li:nth-of-type(n+4){ margin-top: 30px; }




/*! ────────── V I E W ────────── */

/** v-page btns */
.sub_board .v-btns .end-line { display: block; width: 100%; height: 1px; background-color: #4d4d4d; }

.sub_board .v-btns .bo-btns { display: flex; justify-content: center; align-items: center; }
.sub_board .v-btns .bo-btns > a{ display: inline-flex; justify-content: flex-start; align-items: center; margin-top: 30px; margin-right: 30px; }
.sub_board .v-btns .bo-btns > a:last-of-type{ margin-right: 0; }
.sub_board .v-btns .bo-btns > a > h4{ font-size: 24px; color: #fff; font-weight: 600; transition: all .3s ease-out; }
.sub_board .v-btns .bo-btns > a > span{ display: block; margin-right: 10px; }
.sub_board .v-btns .bo-btns > a > span.bo-go-list{ width: 16px; height: 16px; background: url(/img/bo-go-list.svg) no-repeat center center; background-size: contain; }
.sub_board .v-btns .bo-btns > a > span.bo-go-prev{ width: 16px; height: 16px; background: url(/img/arrow-prev.svg) no-repeat center center; background-size: contain; }
.sub_board .v-btns .bo-btns > a > span.bo-go-next{ width: 16px; height: 16px; background: url(/img/arrow-next.svg) no-repeat center center; background-size: contain; }
/*? hover */
.sub_board .v-btns .bo-btns > a:hover > h4{ color: #ff6600; }
.sub_board .v-btns #btn_bo_user { margin-top: 20px; }


/** v-page left */
.sub_board .v-page { position: relative; display: flex; justify-content: space-between; align-items: stretch; margin-top: 40px; }

.sub_board .v-page .bo_v_left { width: 47.5%; max-width: 600px; }
.sub_board .v-page .video-container { position: relative; padding-bottom: 56.25%; /* 16:9 비율인 경우 */ /* padding-bottom값은 4:3 비율인 경우 75%로 설정합니다 */ padding-top: 25px; height: 0; }
.sub_board .v-page .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


/** v-page right */

.sub_board .v-page .bo_v_right { width: 50.5%; }
.sub_board .v-page .bo_v_right #bo_v_img { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.sub_board .v-page .bo_v_right #bo_v_img > a{ width: 50%; height: auto; }
.sub_board .v-page .bo_v_right #bo_v_img img{ width: 100% !important; height: auto; object-fit: contain; cursor: default; }


/** v-info */
.sub_board .v-info { position: relative; margin-top: 40px; }
.sub_board .v-info > ul{ display: flex; justify-content: space-between; border-top: 1px solid #4d4d4d;  border-bottom: 1px solid #4d4d4d; padding: 25px 3%; }
.sub_board .v-info > ul > li > h5{ display: block; font-size: 20px; color: #fff; font-weight: 600; }
.sub_board .v-info > ul > li > p{ font-size: 14px; color: rgba(255, 255, 255, .7); margin-top: 10px; }



}






@media screen and (max-width: 1279px){ 


/*! layout */

.sub_board { padding: 140px 0 30px; width: 100%; max-width: auto; }
.sub_board .inner{ width: 100%; padding: 0 5%; min-height: 90vh; margin: 0 auto; border-radius: 10px; }
.sub_board .inner > h2{ font-size: 55px; }

/*! ────────── L I S T ────────── */
.listBox{ display: flex; flex-wrap: wrap; margin: 0 auto; padding-bottom: 30px; }
.listBox > li{ position: relative; width: 32%; margin-right: 2%; }
.listBox > li:nth-of-type(3n){ margin-right: 0; }
.listBox > li:nth-of-type(4n){ margin-right: 2%; }
.listBox > li:nth-of-type(n+4){ margin-top: 4%; }
.listBox > li:last-of-type{ margin-right: 0; }

/** info box */
.listBox .info-box { position: relative; width: 100%; z-index: 11; overflow: hidden; margin-top: 15px; }
.listBox .info-box > h5{ display: block; width: 100%; font-size: 16px; color: #fff; line-height: 24px; }
.listBox .info-box > ul{ margin-top: 2px; }
.listBox .info-box > ul > li{ width: 100%; font-size: 12px; line-height: 12px; }
.listBox .info-box > ul > li > p{ color: #d9d9d9; font-weight: 300; }


/*? hover */
.listBox li:hover{ border-color: none; }
.listBox li:hover a .hovBox{ opacity: 0; }
.listBox li:hover a .hovBox > span{ opacity: 0; }
.listBox li:hover .info-box > h5{ color: #fff; }



/*! ────────── V I E W ────────── */

/** v-page btns */
.sub_board .v-btns .end-line { display: block; width: 100%; height: 1px; background-color: #4d4d4d; }

.sub_board .v-btns .bo-btns { display: flex; justify-content: center; align-items: center; }
.sub_board .v-btns .bo-btns > a{ display: inline-flex; justify-content: flex-start; align-items: center; margin-top: 30px; margin-right: 30px; }
.sub_board .v-btns .bo-btns > a:last-of-type{ margin-right: 0; }
.sub_board .v-btns .bo-btns > a > h4{ font-size: 24px; color: #fff; font-weight: 600; transition: all .3s ease-out; }
.sub_board .v-btns .bo-btns > a > span{ display: block; margin-right: 10px; }
.sub_board .v-btns .bo-btns > a > span.bo-go-list{ width: 16px; height: 16px; background: url(/img/bo-go-list.svg) no-repeat center center; background-size: contain; }
.sub_board .v-btns .bo-btns > a > span.bo-go-prev{ width: 16px; height: 16px; background: url(/img/arrow-prev.svg) no-repeat center center; background-size: contain; }
.sub_board .v-btns .bo-btns > a > span.bo-go-next{ width: 16px; height: 16px; background: url(/img/arrow-next.svg) no-repeat center center; background-size: contain; }
/*? hover */
.sub_board .v-btns .bo-btns > a:hover > h4{ color: #ff6600; }
.sub_board .v-btns #btn_bo_user { margin-top: 20px; }


/** v-page left */
.sub_board .v-page { position: relative; display: flex; justify-content: space-between; align-items: stretch; margin-top: 40px; }

.sub_board .v-page .bo_v_left { width: 47.5%; max-width: 600px; }
.sub_board .v-page .video-container { position: relative; padding-bottom: 56.25%; /* 16:9 비율인 경우 */ /* padding-bottom값은 4:3 비율인 경우 75%로 설정합니다 */ padding-top: 25px; height: 0; }
.sub_board .v-page .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


/** v-page right */

.sub_board .v-page .bo_v_right { width: 50.5%; }
.sub_board .v-page .bo_v_right #bo_v_img { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.sub_board .v-page .bo_v_right #bo_v_img > a{ width: 50%; height: auto; }
.sub_board .v-page .bo_v_right #bo_v_img img{ width: 100% !important; height: auto; object-fit: contain; cursor: default; }


/** v-info */
.sub_board .v-info { position: relative; margin-top: 40px; }
.sub_board .v-info > ul{ display: flex; justify-content: space-between; border-top: 1px solid #4d4d4d;  border-bottom: 1px solid #4d4d4d; padding: 25px 3%; }
.sub_board .v-info > ul > li > h5{ display: block; font-size: 20px; color: #fff; font-weight: 600; }
.sub_board .v-info > ul > li > p{ font-size: 14px; color: rgba(255, 255, 255, .7); margin-top: 10px; }




}





@media screen and (max-width: 767px){ 


/*! layout */

.sub_board { padding: 80px 0 30px; width: 100%; max-width: auto; }
.sub_board .inner{ padding: 0 5%; min-height: 90vh; margin: 0 auto; border-radius: 10px; }
.sub_board .inner > h2{ font-size: 50px; margin-bottom: 30px; }



/*? 체크박스 */
.chk_box input[type="checkbox"] + label span{ width: 22px; height: 22px; vertical-align: -5px; }

/*? 관리자 버튼 */
#btn_bo_user{ margin-bottom: 30px; }
#btn_bo_user ul li{ margin-left: 3px; }
#btn_bo_user ul > li > *{ height: 30px; font-size: 11px; line-height: 28px; padding: 0 8px; }

/*? 확인버튼 */
.btn_confirm{ margin-top: 30px; }
.btn_confirm #btn_submit{ height: 45px; font-size: 14px; line-height: 43px; padding: 0 35px; transition: all 0s ease; }



/*! Category */
#bo_cate{ width: 100%; }
#bo_cate ul{ display: flex; align-items: center; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
#bo_cate ul li{ display: inline-block; margin-right: 4px; margin-bottom: 5px; }
#bo_cate ul li:last-of-type{ margin-right: 0; }
#bo_cate ul li a{ position: relative; display: inline-block; font-size: 13px; color: #d9d9d9; line-height: 25px; padding: 0 12px; border-radius: 13px; border: 1px solid #d9d9d9; background-color: #111; transition: all .2s ease-out; }
#bo_cate ul li a:hover{ color: #d9d9d9; border-color: #d9d9d9; }

#bo_cate ul li #bo_cate_on{ color: #fff; background-color: #ff6600; border-color: #ff6600; }




/*! ────────── L I S T ────────── */
.listBox{ display: flex; flex-wrap: wrap; margin: 0 auto; padding-bottom: 40px; }
.listBox > li{ position: relative; width: 49%; margin-right: 2%; margin-bottom: 30px; }
.listBox > li:nth-of-type(2n){ margin-right: 0; }
.listBox > li:nth-of-type(3n){ margin-right: 2%; }
.listBox > li:nth-of-type(6){ margin-right: 0; }
.listBox > li:nth-of-type(4n){ margin-right: 0; }
.listBox > li:nth-of-type(n+3){ margin-top: 2%; }
.listBox > li:last-of-type{ margin-right: 0; }

/* ? hover */
.listBox a:hover .imgBox img{ transform: scale(1); }


/**  LIST  
.listBox > li{ width: 100%; margin-right: 0; }
.listBox > li:nth-of-type(3n){ margin-right: 0; }
.listBox > li:nth-of-type(2n){ margin-right: 0; }
.listBox > li:nth-of-type(n+2){ margin-top: 2%; }
.listBox > li .tagBox > span { height: 25px; font-size: 10px; line-height: 25px; padding: 0 10px; }
.listBox > li .txtBox span{ font-size: 13px; line-height: 15px; }
.listBox .txtBox .cont{ height: 66px; line-height: 22px; }

.listBox .imgBox{ position: relative; width: 100%; overflow: hidden; }
.listBox .imgBox img{ width: 100% !important; height: 100% !important; object-fit: cover; transition: all 0.5s ease-out; }

.listBox .imgBox .shd-back { position: absolute; display: block; top: 0; width: 100%; height: 0; background-color: rgba(0, 0, 0, .8); z-index: 10; transition: all 0.4s ease-in-out; }
.listBox .imgBox .txt-box { position: absolute; display: block; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 100%; text-align: center; padding: 0 10%; z-index: 15; }
.listBox .imgBox .txt-box > h3{ font-size: 14px; line-height: 30px; }
.listBox .imgBox .txt-box > p{ font-size: 11px; line-height: 16px; }
*/

/*! ────────── V I E W ────────── */

/** v-page btns */
.sub_board .v-btns .end-line { display: block; width: 100%; height: 1px; background-color: #4d4d4d; }

.sub_board .v-btns .bo-btns { display: flex; justify-content: center; align-items: center; }
.sub_board .v-btns .bo-btns > a{ display: inline-flex; justify-content: flex-start; align-items: center; margin-top: 30px; margin-right: 30px; }
.sub_board .v-btns .bo-btns > a:last-of-type{ margin-right: 0; }
.sub_board .v-btns .bo-btns > a > h4{ font-size: 24px; color: #fff; font-weight: 600; transition: all .3s ease-out; }
.sub_board .v-btns .bo-btns > a > span{ display: block; margin-right: 10px; }
.sub_board .v-btns .bo-btns > a > span.bo-go-list{ width: 16px; height: 16px; background: url(/img/bo-go-list.svg) no-repeat center center; background-size: contain; }
.sub_board .v-btns .bo-btns > a > span.bo-go-prev{ width: 16px; height: 16px; background: url(/img/arrow-prev.svg) no-repeat center center; background-size: contain; }
.sub_board .v-btns .bo-btns > a > span.bo-go-next{ width: 16px; height: 16px; background: url(/img/arrow-next.svg) no-repeat center center; background-size: contain; }
/*? hover */
.sub_board .v-btns .bo-btns > a:hover > h4{ color: #ff6600; }
.sub_board .v-btns #btn_bo_user { margin-top: 20px; }


/** v-page left */
.sub_board .v-page { position: relative; display: flex; justify-content: space-between; align-items: stretch; flex-wrap: wrap; margin-top: 40px; }

.sub_board .v-page .bo_v_left { width: 100%; max-width: 600px; }
.sub_board .v-page .video-container { position: relative; padding-bottom: 56.25%; /* 16:9 비율인 경우 */ /* padding-bottom값은 4:3 비율인 경우 75%로 설정합니다 */ padding-top: 25px; height: 0; }
.sub_board .v-page .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


/** v-page right */

.sub_board .v-page .bo_v_right { width: 100%; margin-top: 20px; }
.sub_board .v-page .bo_v_right #bo_v_img { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.sub_board .v-page .bo_v_right #bo_v_img > a{ width: 50%; height: auto; }
.sub_board .v-page .bo_v_right #bo_v_img img{ width: 100% !important; height: auto; object-fit: contain; cursor: default; }


/** v-info */
.sub_board .v-info { position: relative; margin-top: 40px; }
.sub_board .v-info > ul{ display: flex; justify-content: space-between; flex-wrap: wrap; border-top: 1px solid #4d4d4d;  border-bottom: 1px solid #4d4d4d; padding: 25px 3%; }
.sub_board .v-info > ul > li{ width: 100%; margin-bottom: 25px; }
.sub_board .v-info > ul > li:last-of-type{ margin-bottom: 0; }
.sub_board .v-info > ul > li > h5{ display: block; font-size: 18px; color: #fff; font-weight: 600; }
.sub_board .v-info > ul > li > p{ font-size: 12px; color: rgba(255, 255, 255, .7); margin-top: 10px; }






/*! WRITE */
#bo_w form .frmBox ul li{ margin-bottom: 20px; }
#bo_w form .frmBox ul li.wid02{ width: 100%; }
#bo_w form .frmBox ul li.wid03{ width: 100%; }
#bo_w form .frmBox ul li .label{ font-size: 17px; }
#bo_w form .frmBox ul li .label em{ font-size: 13px; }
#bo_w form .frmBox ul li select, 
#bo_w form .frmBox ul li .frm_input, 
#bo_w form .frmBox ul li textarea{ height: 50px; font-size: 16px; padding: 0 10px; }
#bo_w form .frmBox ul li textarea{ height: 250px; line-height: 26px; padding: 15px; }
#bo_w form .frmBox ul li .frm_input::placeholder,
#bo_w form .frmBox ul li textarea::placeholder{ font-size: 15px; }
#bo_w form .frmBox .fileBox{ height: 50px; padding: 0 10px; }
#bo_w form .frmBox .fileBox .upload-name{ font-size: 15px; color: #777; opacity: 1; }
}

/*
