.notice-list-container {
    height: 287px;
    overflow-y: scroll;
    border: 1px solid #ccc;
}

.notice-list-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-list-container li {
    border-bottom: 1px solid #eee;
}

.notice-list-container li a {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.notice-list-container li a:hover {
    background-color: #f9f9f9;
}

.notice-list-container .notice-img {
    width: 100px;
    height: 80px;
    margin-right: 15px;
}

.notice-list-container .notice-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notice-list-container .notice-info p {
    margin: 0 0 5px 0;
}

.notice-list-container .notice-info p:first-child {
    font-size: 16px;
    font-weight: bold;
}

.notice-list-container .notice-info p:nth-child(2) {
    font-size: 14px;
    color: #999;
}