﻿




/* 테이블 */
.notice table{
    width: 100%;
}
.notice tr{
    border-bottom: 1px solid #D9D9D9;
    cursor: pointer;
}
.notice tr:first-child{
    border-top: 1px solid #1E1E1E;
}
.notice tr td:first-child{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #444;
    display: block;
    line-height: 80px;
}
.notice tr td:nth-child(2){
    width: 80%;
}
.notice tr td:nth-child(2){
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}
.notice tr td:nth-child(3){
    width: 13%;
}
.notice_wrap button{
    width: 100px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #888;
    background: #FFF;
    color: #6D6D6D;
    font-size: 15px;
}
.notice_wrap button:hover{
    background: #888;
    color: #fff;
}



/* 반응형 */

@media (max-width:984px) {

    .notice_wrap button{
        width: 90px;
    }

}
@media (max-width:768px) {

    .notice tr td:first-child {
        font-size: 13px;
    }
    .notice tr td:nth-child(2) {
        font-size: 16px;
    }
    .notice_wrap button{
        width: 80px;
        height: 38px;
        font-size: 14px;
    }


}
@media (max-width:580px) {


    /* 테이블 */
    .notice tr td:first-child{
        font-size: 12px;
        line-height: 60px;
    }
    .notice tr td:nth-child(2){
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 2px;
    }
    .notice_wrap button {
        width: 72px;
        height: 34px;
        font-size: 12px;
    }

}



@media (max-width:480px) {

    /* 테이블 */
    .notice td{
        padding: 3% 1%;
    }
    .notice tr td:first-child {
        display: none;
    }
    .notice tr td:nth-child(2) p:first-child{
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 2px;
    }
    .notice tr td:nth-child(2) p:last-child{
        font-size: 12px;
    }
    .notice button{
        width: 65px;
    }
}




@media (max-width:360px) {

    /* 테이블 */
    .notice td{
        padding: 4% 1%;
    }
    .notice tr td:nth-child(2) {
        font-size: 13px;
    }
}