﻿


.wrap>div{
    max-width: 900px;
}




/*검색창*/
.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%;
    }

}


.notice{
    border-bottom: 1px solid #E2E7EE;
}

table{
    width: 100%;
}

tr{
    display: flex;
    align-items: center;
    border-bottom:1px solid #E2E7EE;
}

td:first-of-type{
       margin-right: 15px;
}

@media (max-width:580px){
    td:first-of-type{
        margin-right: 10px;
}
}

 td:nth-of-type(2){
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-right: 10px;
    }

.download{
    cursor: pointer;
}

.download a{
        border: 1px solid #D4D4D4;
    border-radius: 15px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.3rem;
    white-space: nowrap;
}

.download a:hover{
    background: var(--bg2-color);
}

.downicon{
    width: 15px;
    height: auto;
}