﻿body {
}


/*검색창*/



.b_scro{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    font-weight:bold;
}

.searchbox{
    width: 600px;
    height: 50px;
    position:relative;
}

.search_board{
    box-sizing: border-box;
    width: 100%;
    height:100%;
    border: 1px solid #dfdfdf;
    outline: none;
    text-indent: 25px;
    font-size: 16px;
    border-radius: 50px;
}

.search_board::-webkit-input-placeholder {
  color: #959595;
}

.searchon{
    position:absolute;
    top: 7px;
   right: 20px;
}

.searchon:hover{
    cursor:pointer;
}

.n_post{
    color:#888888;
}

.n_post span{
    color:var(--primary-color);
}

/*공지사항 게시판박스*/

.card_bottom{
    margin-top: 20px;
    border-top: 1px solid #cdcdcd;
    border-bottom: 1px solid #cdcdcd;
    height:auto;
    min-height:500px;
}

.notice_title{
    width:100%;
    height:105px;
    background:#f8f8f8;
    padding:25px;
}

.notice_title h3{
    font-size:20px;
}

.notice_title p{
    font-size:14px;
    color:#999999;
    margin-top:5px;
}

.notice_content {
    padding:30px;
}


.white{
    width:205px;
    height:80px;
    border-radius: 20px;
    border: 1px solid #BFBFBF;
    background: #FFF;
    color: #505050;
    margin:auto;
    margin-top:50px;
    display: block;
}

@media(max-width:768px) {

    .b_scro {
        width: 100% !important;
        padding: 0px !important;
    }

    .searchbox {
        width: 300px;
    }

    .notice_title h3 {
        font-size: 18px;
    }

    .notice_content {
        padding: 20px 15px;
    }

        .notice_content p {
            font-size: 14px;
        }

        .notice_content img{
            width:100% !important;
        }

    .white {
        width: 190px;
        font-size: 14px;
        height: 58px;
        margin-top: 40px;
    }
}
@media(max-width:480px) {

   

    .searchbox {
    width: 60%;
    height: 40px;
    text-indent: 0px;
    }
    .search_board {
        font-size: 12px !important;
        text-indent: 14px;
    }
    .searchon {
    width: 23px;
}

    .card_bottom {
        margin-top: 10px;
    }
    .notice_title {
    min-height:85px;
    height: auto;
    padding: 19px 13px;
}
    .notice_title h3 {
    font-size: 14px;
}
    .notice_title p {
        font-size: 12px;
    }
    .notice_content {
    padding: 15px 10px;
}

.notice_content p {
    font-size: 12px;
}

    .white {
        width: 170px;
        font-size: 13px;
        height: 50px;
        border-radius:10px;
        margin-top: 20px;
    }

}