 .menu-container {
        background: #9b0d14;
        padding: 15px 20px; 
        border-radius: 10px; 
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
        text-align: center;
        margin: 20px auto;
        width: 1000px;}
.menu-item {
        display: inline-block;
        color: #ffffff;
        font-size: 18px;
        font-weight: 500;
        text-decoration: none;
        padding: 12px 70px;
        margin: 0 15px;
        border-radius: 20px;
        background-color: rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        position: relative;}

    .menu-item:hover {
        background-color: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px); 
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);}

    .menu-item:active {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);}
    .clear {
        clear: both;}

    .news-header {
        list-style: none;
        padding: 0;
        margin: 0 0 15px 0;
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        align-items: center;}

    .news-header li {
        font-size: 13px;
        color: #666;}

    /* ===标题 (news.showTitle) === */
    .news-title {
        font-size: 26px; 
        font-weight: 700; 
        color: #333; 
        line-height: 1.4; 
        text-shadow: 1px 1px 2px rgba(0,0,0,0.1); 
        background-image: linear-gradient(90deg, #9b0d14, #d32f2f); 
        background-clip: text; 
        -webkit-background-clip: text; 
        -webkit-text-fill-color: transparent;
        flex: 1 1 100%;
        white-space: normal;}

    .news-subtitle {
        background-color: #e3f2fd;
        color: #1976d2;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;}
    .news-intro {
        background-color: #f5f5f5;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;}

    /* ===摘要 (news.showAbstract) === */
    .news-abstract {
        margin: 0;
        color: #444;
        line-height: 1.7;
        font-size: 15px;
        font-family: "Microsoft YaHei", "Hiragino Sans GB", sans-serif; 
        text-align: justify; 
        position: relative;
        padding-left: 20px;}
    .news-abstract::before {
        /* 在摘要左侧添加一个细长的装饰条 */
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, #9b0d14, #d32f2f);
        border-radius: 2px;}

/* 注释 */
