﻿


.wrap>div{
    max-width: 900px;
}



/*#region 검색창*/
.searchbox{
    width: 70%;
    height: 52px;
    margin: 0 auto;
    margin-bottom: 3rem;
    column-gap: 1rem;
}
.search_board{
    box-sizing: border-box;
    width: 100%;
    height:100%;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #E2E7EE;
}
.searchon{
    position: unset;
    width: 40%;
    height: 52px;
    background: #000;
    color: #fff;
    border-radius: 15px;
    cursor:pointer;
}

.n_post{
    color: #000;
    margin-bottom: 1rem;
}

.n_post span{
    color: var(--main-color);
}



@media (max-width:768px) {

    .searchbox{
        width: 100%;
    }

    .searchon{
        width: 50%;
    }

}
/* #endregion */



/*#region 공지사항 게시판박스*/
.notice{
    border-top: 1px solid #3A3A3A;
}

.notice_content{
    padding: 1.5rem 12px;
    border-bottom: 1px solid #E2E7EE;
    width: 100%;
    cursor: pointer;
}
.notice_content:hover{
    background: #f7f7f7;
}

.notice_content thead th{
    padding-bottom: 1rem;

}

.notice_content tbody{
    border-top: 1px solid #3A3A3A;
}


.notice_content p{
    font-weight: 600;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice_date{
    color: #B2B6BD;
}

.notice td {
    padding: 1.5rem 0;
    /*border-bottom: 1px solid #E2E7EE;*/
}
/* #endregion */


.empty_list {
    border-top: 1px solid #3A3A3A;
}



