#notice-list {}

#notice-list .list-body {
    margin-bottom: 90px;
}

#notice-list .list-body .list:first-child {
    border-top: 1px solid #d8d8d8;
}

#notice-list .list-body .list {
    display: block;
    position: relative;
    padding: 20px 30px;
    color: #777777;
    border-bottom: 1px solid #d8d8d8;
    transition: all 0.25s ease;
}

#notice-list .list-body .list:hover {
    color: #222222;
    background-color: #f5f5f5;
}

#notice-list .list-body .list .title {
    font-size: 26px;
    font-weight: 400;
    padding-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.25s ease;
}

#notice-list .list-body .list .date {
    font-size: 16px;
    font-weight: 400;
    transition: all 0.25s ease;
}

#notice-list .list-body .list .btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 26px;
    color: #777777;
    text-align: center;
    line-height: 50px;
    transition: all 0.25s ease;
}

#notice-list .list-body .list:hover .btn {
    color: #fdd23e;
}

@media all and (max-width: 767px) {
    #notice-list .list-body {
        margin-bottom: 30px;
    }

    #notice-list .list-body .list {
        padding: 15px 5px;
    }

    #notice-list .list-body .list .title {
        font-size: 18px;
        line-height: 27px;
        padding-bottom: 5px;
        padding-right: 25px;
    }

    #notice-list .list-body .list .dat {
        font-size: 12px;
    }

    #notice-list .list-body .list .btn {
        width: 23px;
        height: 23px;
        line-height: 23px;
        font-size: 16px;
    }
}