@charset "utf-8";

.notice .thumb-item {
    display: grid;
    gap: 17px;
}
.notice .thumb-item a {
    display: grid;
    grid-template-columns: auto 100px;
    padding: 23px 25px;
    gap: 20px;
    border: 1px solid #ccc;
    border-radius: var(--default-border-radius);
    margin: 0 3px;
    align-items: flex-end;
    transition: all 0.3s ease-out;
}
.notice .thumb-item a .cont {
    display: grid;
    gap: 5px;
}
.notice .thumb-item a strong {
    display: grid;
    width: fit-content;
    font-size: 0.85em;
    color: var(--default-color);
    padding: 0 20px;
    background: #ebefff;
}
.notice .thumb-item a .text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.5em !important;
    height: 1.5em;
    font-weight: 700;
}
.notice .thumb-item a .date {
    text-align: right;
    font-size: 0.8em;
    color: #aaa !important;
}
.notice .thumb-item a:hover {
    border-color: var(--default-color);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.07);
}