@charset "utf-8";
#bo-list{
	margin-bottom:7.5rem;
}

#bo-list .inner_container {
	    position: relative;
}

.sub-title-box h3 {
	font-size:1.6em;
	margin-bottom:1rem;
}


/** 목록 카테고리 ****************************************************/
#bo-category{
    display:flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap:8rem;
    row-gap: 2rem;
    margin-bottom:14rem;
}
#bo-category a{
    display: block;
    font-size:2.6rem;
    padding-bottom:1rem;
    line-height: 1;
}
#bo-category a#bo_cate_on{
    color:var(--color-primary);
    font-weight: 700;
    border-bottom:3px solid var(--color-primary);
}

@media screen and (max-width:1023px) {
    #bo-category{
        margin-bottom:10rem;
        column-gap:4rem;
    }
    #bo-category a{
        font-size: 2.2rem;
    }
}

/** 목록 top****************************************************/
#bo_btn_top{
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom:6rem;
}
#bo_btn_top #bo_list_total{
    font-size:1.8rem;
    color:#333;
}
#bo_btn_top #bo_list_total b{
    font-weight: 700;
}
#bo_btn_top #bo_sch_wrap .bo_sch{
    border:none;
}
#bo_btn_top #bo_sch_wrap .bo_sch form {
    display:flex;
    align-items: center;
    gap:.5rem;
}

#bo_btn_top #bo_sch_wrap .bo_sch form select {
	height:5.4rem;
	font-size: 1.6rem;
	padding:0 2rem;
}

#bo_btn_top #bo_sch_wrap .bo_sch form .sch_bar{
    display:flex;
    align-items: center;
}
#bo_btn_top #bo_sch_wrap .bo_sch form .sch_input{
    width:23rem;
    height:5.4rem;
    padding:0 2rem;
    font-size:1.6rem;
    border:1px solid #e2e2e2;
}
#bo_btn_top #bo_sch_wrap .bo_sch form .sch_input::placeholder {
    color: #aaa;
}
#bo_btn_top #bo_sch_wrap .bo_sch form .sch_btn {
    width:10.5rem;
    height:5.4rem;
    line-height: 5.4rem;
    color: #fff;
    font-size:1.6rem;
    font-weight: 500;
    background: #333;
}

#bo_btn_top #bo_sch_wrap .bo_sch form select {
	appearance: none;
	background-image: url('/theme/basic/img/select_arrow.png');
	    background-repeat: no-repeat;
    background-position: right 1.5rem center;
}

#bo_btn_top #bo_sch_wrap .bo_sch form .sch_btn:hover {
	background:#264fff;
}

#bo_btn_top #bo_sch_wrap .bo_sch form select:focus {
	box-shadow:none;
	border:unset !important;
}

@media screen and (max-width:767px) {
    #bo_btn_top{
        flex-wrap: wrap;
        margin-bottom:4rem;
    }
    #bo_btn_top #bo_sch_wrap{
        width:100%;
        margin-top:2rem;
    }
    #bo_btn_top #bo_sch_wrap .bo_sch form{
        justify-content: end;
    }
}

@media screen and (max-width:479px) {
    #bo_btn_top #bo_sch_wrap .bo_sch form{
        flex-wrap: wrap;
    }
    #bo_btn_top #bo_sch_wrap .bo_sch form .com-select,
    #bo_btn_top #bo_sch_wrap .bo_sch form .sch_bar{
        width:100%;
    }
    #bo_btn_top #bo_sch_wrap .bo_sch form .sch_input{
        flex:1;
    }
}

/** 목록 list****************************************************/
#bo-list-wrap{
    border-top:2px solid #333;
	margin-bottom:7.5rem;
}
#bo-list-wrap .bo-head{
    border-bottom:1px solid #333;
    font-weight: 700;
    color:#333;
}
#bo-list-wrap .bo-head span:not(:last-child){
    border-right:1px solid #ddd;
}
#bo-list-wrap .bo-head,
#bo-list-wrap .bo-row{
    display: grid;
    padding: 2rem 0;
    text-align:center;
    grid-template-columns: 8.5rem 15rem 1fr 12rem 14rem;
    font-size:1.6rem;
}
#bo-list-wrap .bo-row{
    border-bottom:1px solid #ddd;
    background:var(--color-white);
    -webkit-transition:all 0.3s;
    -o-transition:all 0.3s;
    transition:all 0.3s;
    color:#777;
}
#bo-list-wrap .bo-row:hover{
    background:#f2faee;
}
#bo-list-wrap .bo-row .num .num-notice{
    padding:.5rem 1.5rem;
    font-size:1.4rem;
    color:var(--color-white);
    background:var(--color-primary);
    font-weight: 400;
}
#bo-list-wrap .bo-row .subject{
    text-align: left;
}
#bo-list-wrap .bo-row .subject:hover{
    font-weight: 600;
    color:var(--color-primary);
}
#bo-list-wrap .bo-row .subject b.cate{
    font-weight: 400;
}
#bo-list-wrap .bo-row .empty{
    grid-column: 1 / span 5;
    text-align: center;
}
#bo-list-wrap .bo-row .ico{
    display: inline-block;
    vertical-align: middle;
    background-size:100% auto;
    background-position: center;
    background-repeat: no-repeat;
    font-size:0;
}
#bo-list-wrap .bo-row .secret-ico{
    margin-left:1rem;
    width:1.2rem;
    height:1.7rem;
    background-image:url("../../../img/board/board-list-secret-ico.png");
}
#bo-list-wrap .bo-row .file-ico{
    width:2.3rem;
    height:1.9rem;
    background-image:url("../../../img/board/board-list-file-ico.png");
}
#bo-list-wrap .bo-row:hover .file-ico{
    background-image:url("../../../img/board/board-list-file-ico-on.png");
}

@media screen and (max-width:767px) {
    #bo-list-wrap .bo-head span:not(:last-child){
        border-right:none;
    }
    #bo-list-wrap .bo-head, #bo-list-wrap .bo-row {
        text-align: left;
        grid-template-columns: 9.5rem 14rem 1fr;
        gap: 1rem;
        padding:2rem;
    }
    #bo-list-wrap span.subject{
        grid-column: 1 / span 3;
    }
    #bo-list-wrap .bo-head span.subject{
        text-align: center;
    }
    #bo-list-wrap span.num,
    #bo-list-wrap .bo-head span.date,
    #bo-list-wrap .bo-head span.name,
    #bo-list-wrap .bo-head span.datetime,
    #bo-list-wrap span.file{
        display:none;
    }
}

/** 버튼 list****************************************************/
#bo-btns{
    position: absolute;
    bottom:0;
    right:0;
    display:flex;
    align-items: center;
    justify-content: end;
    gap:1rem;
}
#bo-btns.no-position{
    margin-top:7rem;
    position:static;
}
#bo-btns.ju-center{
    justify-content: center;
}
#bo-btns .link-btn{
    width:12rem;
    height:5.4rem;
    line-height: 5.4rem;
    text-align: center;
    font-size: 1.6rem;
    color:#070506;
    border:1px solid #333;
}

@media screen and (max-width:1023px) {
    #bo-btns{
        position: static;
        margin-top:3rem;
    }
}

/** 글쓰기 ****************************************************/
#bo_write {
	margin-bottom:7.5rem;
}

#bo_write .top-box {
    display:flex;
    align-items: center;
    justify-content: space-between;
    border-bottom:2px solid #333;
    padding-bottom:2rem;
}

#bo_write .top-box p {
	font-size:1.6em;
}

#bo_write .top-box strong{
    font-size:3rem;
    font-weight: 700;
}
#bo_write .write_div .grid2{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
}
#bo_write .write_div .write-item{
    display:grid;
    grid-template-columns: 40rem 1fr;
    padding:2rem 0;
    border-bottom:1px solid #ddd;
}
#bo_write .write_div .write-item .title-box{
    display: flex;
    align-items: center;
    font-size:1.6rem;
    font-weight: 600;
    padding:0 4rem;
    gap:.5rem;
}
#bo_write .write_div .write-item .content-box{
    font-size:1.6rem;
}
#bo_write .write_div .write-item .content-box.link{
    display:flex;
    flex-direction: column;
    gap:1.5rem;
}
#bo_write .write_div .write-item .frm_input{
    width:100%;
    height:6rem;

}
#bo_write .write_div .write-item textarea{
    width:100%;
    height:30rem;
    border-radius: .6rem;
    background:#f5f5f5;
    padding:2rem;
    border:none;
    box-shadow: none;
}
#bo_write .write_div .write-item textarea:not(:focus){
    outline: none;
}

#bo_write .write_div .write-item .file-item{
    display:grid;
    grid-template-columns: minmax(0, 47rem) minmax(0, 20rem) minmax(15rem, 1fr);
    column-gap:3rem;
    row-gap: 1.5rem;
    align-items: center;
}
#bo_write .write_div .write-item .file-item:not(:last-child){
    margin-bottom:1.5rem;
}
#bo_write .write_div .write-item .file-item .file-name{
    line-height:6rem;
}
#bo_write .write_div .write-item .file-item > label{
    height:6rem;
    line-height:6rem;
    text-align: center;
    font-size:1.6rem;
    font-weight: 600;
    color:#2c2c2c;
    border:1px solid #2c2c2c;
    border-radius: .6rem;
    cursor: pointer;
}
#bo_write .write_div .write-item .file-item .file-content{
    grid-column: 1 / span 3;
}

@media screen and (max-width:1023px) {
    #bo_write .write_div .grid2{
        display:grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    #bo_write .write_div .write-item .file-item{
        grid-template-columns: 1fr minmax(0, 15rem);
        column-gap:1.5rem;
    }

    #bo_write .write_div .write-item .file-item .file_del{
        grid-column: 1 / span 2;
    }
    #bo_write .write_div .write-item .file-item .file-content{
        grid-column: 1 / span 2;
    }
}

@media screen and (max-width:767px) {
    #bo_write .write_div .write-item{
        grid-template-columns: 1fr;
    }
    #bo_write .write_div .write-item .title-box{
        padding:0 0 1.5rem;
    }
}

/** 상세 ****************************************************/

#bo_view {
	margin-bottom:7.5rem;
}

#bo_view .subject-box{
    text-align: center;
    padding:5.5rem 2rem;
    color:#333;
    background:#f2faee;
}
#bo_view .subject-box h4{
    font-size:3.2rem;
    font-weight: 700;
    line-height:1.3;
    margin-bottom:1.5rem;
}
#bo_view .subject-box .info-box,
#bo_view .subject-box .info-box span{
    display:flex;
    align-items: center;
    gap:1rem;
}
#bo_view .subject-box .info-box{
    justify-content: center;
}
#bo_view .subject-box .info-box span{
    font-size:1.6rem;
}
#bo_view .subject-box .info-box span:not(:first-child):before{
    content:"";
    width:1px;
    height:1.2rem;
    background:#999;
}
#bo_view .content-box{
    padding:8rem 7rem;
    font-size:1.6rem;
    color:#333;
}
#bo_view .asset-wrap{
    display: flex;
    align-items: center;
    border:1px solid #333;
    padding:3rem 0;
    font-size:1.6rem;
    margin-top:1.5rem;
}
#bo_view .asset-wrap .title-box{
    width:23rem;
    padding:0 2rem;
    font-weight: 500;
    text-align: center;
}
#bo_view .asset-wrap ul{
    display: flex;
    flex-direction: column;
    gap:1rem;
    width:calc(100% - 23rem);
}
#bo_view .asset-wrap ul a{
    display: block;
    min-height:2.6rem;
    padding:0 4rem;
    background-size: 2.6rem;
    background-repeat: no-repeat;
    background-position: center left;
    -webkit-transition:all 0.3s;
    -o-transition:all 0.3s;
    transition:all 0.3s;
}
#bo_view .asset-wrap ul a:hover{
    color:var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}
#bo_view .asset-wrap ul a.file{
    background-image:url("../../../img/board/board-view-file-ico.png");
}
#bo_view .asset-wrap ul a.link{
    background-image:url("../../../img/board/board-view-link-ico.png");
}
#bo_view .asset-wrap ul a.file:hover{
    background-image:url("../../../img/board/board-view-file-ico-on.png");
}
#bo_view .asset-wrap ul a.link:hover{
    background-image:url("../../../img/board/board-view-link-ico-on.png");
}
#bo_view .bo_v_nb{
    margin-top:5rem;
    border-top:1px solid #ddd;
    font-size:1.6rem;
    color:#333;
}
#bo_view .bo_v_nb > li{
    display:flex;
    align-items: center;
    border-bottom:1px solid #ddd;
}
#bo_view .bo_v_nb > li .nb_tit{
    width:20rem;
    background:#f4f4f4;
    text-align: center;
    padding:2rem;
    font-weight: 500;
}
#bo_view .bo_v_nb > li .link{
    width:calc(100% - 20rem);
    padding:2rem 7rem;
}
#bo_view .bo_v_nb > li span.link{
    color:#999;
}

@media screen and (max-width:1023px) {
    #bo_view .content-box{
        padding:8rem 2rem;
    }
}
@media screen and (max-width:767px) {
    #bo_view .asset-wrap .title-box,
    #bo_view .bo_v_nb > li .nb_tit{
        width:15rem;
    }
    #bo_view .asset-wrap ul,
    #bo_view .bo_v_nb > li .link{
        width:calc(100% - 15rem);
    }

}