 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
         
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', 'Roboto', sans-serif;
            padding: 48px 32px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
			 
        }

        .academic-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            background-color: #f6ecec70;
            border-radius: 20px;
		    
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .two-columns {
            display: flex;
            width: 100%;
            align-items: stretch;
        }

        .left-preview {
            width: 40%;
          
            border-right: 1px solid #f0e3df;
            display: flex;
            flex-direction: column;
        }

        .right-news {
            width: 60%;
          
            display: flex;
            flex-direction: column;
        }

        @media (max-width: 780px) {
            body {
                padding: 20px 16px;
            }
            .two-columns {
                flex-direction: column;
            }
            .left-preview, .right-news {
                width: 100% !important;
                border-right: none;
            }
            .left-preview {
                border-bottom: 1px solid #f0e3df;
            }
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding: 26px 28px 13px 28px;
            border-bottom: 1px solid #f2e6e2;
        }
        .section-title {
            font-size: 21px;
            font-weight: 600;
            color: #2f2a28;
            letter-spacing: -0.2px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .section-title span {
            font-size: 21px;
        }
        .more-link {
            font-size: 13px;
            font-weight: 500;
            color: #9c5f57;
            text-decoration: none;
            transition: all 0.2s;
            padding: 4px 0;
           
        }
        .more-link:hover {
            color: #572e2a;
            font-weight:bold;
          
        }

        /* ========= 左侧预告区 ========= */
        .static-area {
            flex: 1;
            padding: 28px 28px 28px 28px;
        }
        .event-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .event-item {
            padding: 12px 16px 6px 16px;
            border-bottom: 1px solid #f1e4e0;
            transition: all 0.2s ease;
            cursor: pointer;
            border-left: 3px solid transparent;
            background-color: transparent;
            border-radius: 0 8px 8px 0;
        }
        .event-item:last-child {
            border-bottom: none;
        }
        .event-item:hover {
            border-left: 3px solid #c53a1f;
            background-color: #fefaf8;
            transform: translateX(2px);
            box-shadow: -2px 4px 8px rgba(0,0,0,0.02);
        }
        .event-date {
            font-size: 14px;
            font-weight: 700;
            color: #c53a1f;
            display: inline-block;
            padding: 0px 0px 2px 0px;
            margin-bottom: 8px;
            letter-spacing: 0.2px;
            width: fit-content;
            background: none;
        }
        .event-title {
            font-size: 15px;
            font-weight: 700;
            color: #2c2826;
            line-height: 1.4;
            margin-bottom: 8px;
        }
        .event-summary {
            font-size: 13px;
            color: #6b4f48;
            line-height: 1.5;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .event-location {
            font-size: 11px;
            color: #9b827b;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* ========= 右侧图文学术动态区，卡片内部垂直居中 ========= */
        .news-list {
            flex: 1;
            padding: 28px 28px 28px 28px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .news-card {
            display: flex;
            gap: 30px;
            padding: 12px 16px 32px 16px;
            border: 1px solid #e9e0db;
            border-radius: 16px;
            background-color: #ffffff;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            cursor: pointer;
            box-shadow: 0 1px 2px rgba(0,0,0,0.02);
            align-items: center;  /* 卡片内部垂直居中 */
        }
        .news-card:hover {
            border: 1px solid #c53a1f;
            background-color: #fefaf8;
            box-shadow: 0 12px 24px -10px rgba(107, 46, 42, 0.28);
            transform: translateY(-3px);
        }
        .news-img {
            flex-shrink: 0;
            width: 88px;
            height: 88px;
            border-radius: 14px;
            overflow: hidden;
            background: #f0e6e2;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .news-content {
            flex: 1;
        }
        .news-title {
            font-size: 16px;
            font-weight: 700;
            color: #2c2826;
            margin-bottom: 8px;
            line-height: 1.35;
        }
        .news-summary {
            font-size: 13px;
            color: #6b4f48;
            line-height: 1.5;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .news-meta {
            font-size: 11px;
            color: #b28c83;
            display: flex;
            gap: 12px;
            align-items: center;
        }
        /* 右侧时间突出显示：红色字体，无背景色 */
        .news-meta time, .news-meta span:first-child {
            font-weight: 700;
            color: #c53a1f;
            background: none;
            padding: 0px;
            border-radius: 0;
            display: inline-block;
        }
        .news-tag {
            background: #f9efec;
            padding: 3px 10px;
            border-radius: 20px;
            color: #9c5f57;
            font-weight: 500;
            font-size: 10px;
        }

        .simple-footer {
            text-align: center;
            padding: 14px;
            font-size: 10px;
            color: #c2a69f;
            border-top: 1px solid #f0e2de;
            background: #fffcfb;
        }