.c_notice {
    width: 100%;
    background-color: #f7f7f5;
    position: relative;
}

.c_notice_box {
    margin: 0 auto;
    width: 64%;
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px #eee solid;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.c_notice_box .list_box {
    height: 30px;
    overflow: hidden;
}

.c_n_title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 2rem;
    overflow: hidden;
    box-sizing: border-box;
    cursor: pointer;
}
.c_n_title:hover {
    /* animation: pulse 0.5s ease-in-out;
    font-weight: bold; */
    /* 文字发光 */
    /* text-shadow: 0 0 4px #007bff;
    color: #007bff; */
}

.c_n_text {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    transition: all 0.3s ease;
}

.c_n_title:hover {
    color: #108cda;
    cursor: pointer;
}

.c_n_icon {
    width: 30px;
    height: 30px;
    display: inline-block;
}

.c_n_day {
    min-width: 12rem;
    text-align: right;
    width: 12rem;
}

.c_n_list {
    width: 100%;
    margin-top: 30px;
    overflow: hidden;
}

.c_n_l_item {
    height: 80px;
}

.c_n_l_item img {
    object-fit: cover;
    overflow: hidden;
    transition: transform 0.3s ease;
    transform-origin: center center;
    cursor: pointer;
}

.c_n_l_item:hover img {
    transform: scale(1.1);
}
