    /* 三列布局 */
    .info-grid {
        display: flex;
        gap: 15px;
        margin: 15px 0;
    }

    /* 卡片 */
    .info-card {
        flex: 1;
        background: #fff;
        border-radius: 8px;
        border: 1px solid #eaeaea;
        padding: 15px;
    }

    /* 头部 */
    .info-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
        /* margin-bottom: 10px; */
    }

    /* 标题 */
    .info-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /* 更多 */
    .info-more {
        font-size: 13px;
        color: #999;
        text-decoration: none;
    }

    .info-more:hover {
        color: #1677ff;
    }

    /* 列表 */
    .info-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    /* 每一行 */
    .info-list li {
        padding: 10px 0;
        border-bottom: 1px solid #f3f3f3;
    }

    .info-list li:last-child {
        border-bottom: none;
    }

    .info-list a {
        text-decoration: none;
        display: block;
    }

    /* 标题文字 */
    .info-text {
        display: block;
        color: #333;
        width: 335px;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* 时间 */
    .info-date {
        font-size: 12px;
        color: #999;
    }

    /* hover */
    .info-list a:hover .info-text {
        color: #1677ff;
    }

    /* icon */
    .icon {
        width: 16px;
        height: 16px;
        display: inline-block;
        border-radius: 3px;
    }

    /* 不同颜色 */
    .icon.notice {
        background: #2f80ed;
    }

    .icon.news {
        background: #2f80ed;
    }

    .icon.help {
        background: #2f80ed;
    }

    .mt-15 {
        margin: 15px 0 !important;
    }