
.notifications-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 21px 30px;
    padding-left: 90px;
}

/* 通知列表 */
.notification-list {
    list-style: none;
    position: relative;
    padding-left: 20px;
}

/* 垂直线 */
.notification-list::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #B13C58;
}

/* 通知项 */
.notification-item {
    display: flex;
    align-items: center;
    padding: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    font-family: DM Sans, DM Sans;
    font-weight: 400;
    color: #000000;
}

.notification-dot {
    position: absolute;
    left: -20px;
    width: 14px;
    height: 14px;
    background-color: #B13C58;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 箭头图标 */
.notification-dot::after {
    content: '››';
    display: block;
    color: #900B09;
    font-size: 16px;
    font-weight: bold;
    margin-left: 20px;
    line-height: 1;
    /* 确保垂直水平居中 */
    position: relative;
    top: 50%;
    transform: translateY(-60%);
    text-align: center;
}

.notification-item:hover {
    background-color: #fafafa;
    padding-left: 5px;
    position: relative;
}

/* 红色圆点 */
.notification-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    left: -20px;
    width: 14px;
    height: 14px;
    background-color: #9E0D30;
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* 通知文本 */
.notification-text {
    flex: 1;
    color: #000000;
    padding: 12px;
    line-height: 1.5;
    transition: color 0.3s ease;
}
.notification-text a {
    color: #000000;
    font-size: 16px;
}
.notification-item:hover .notification-text,
.notification-item:hover .notification-date {
    color: #900B09;
}

/* 通知日期 */
.notification-date {
    color: #999;
    position: absolute;
    right: 0;
    transform: translateX(-60px);
    margin: 0;
    padding: 0;
    white-space: nowrap;
    font-size: 16px;
}


