
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            background: #ffffff;
            padding: 40px 20px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 30px;
            flex: 1;
        }
        
        .section-title {
            text-align: center;
            margin-bottom:50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #6b4b7e;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #9B72B0, #C9A0DC);
            margin: 0 auto;
            border-radius: 2px;
        }
        
        .section-title p {
            color: #8a6fa6;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .news-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(155, 114, 176, 0.15);
            transition: all 0.3s ease;
            position: relative;
            height: 380px;
            display: flex;
            flex-direction: column;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(155, 114, 176, 0.25);
        }
        
        .card-image {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .card-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #9B72B0;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }
        
        .card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .card-date {
            color: #9B72B0;
            font-size: 0.85rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .card-date i {
            margin-right: 5px;
        }
        
        .card-title {
            font-size: 1.25rem;
            color: #5a3e6b;
            margin-bottom: 12px;
            font-weight: 700;
            line-height: 1.4;
        }
        
        .card-excerpt {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .card-link {
            color: #9B72B0;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .card-link:hover {
            color: #7a5792;
        }
        
        .card-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .card-link:hover i {
            transform: translateX(3px);
        }
        
        /* 不同类型动态的样式变体 */
        .news-event .card-tag {
            background: linear-gradient(to right, #9B72B0, #7E57C2);
        }
        
        .news-activity .card-tag {
            background: linear-gradient(to right, #B39DDB, #7E57C2);
        }
        
        .news-exhibition .card-tag {
            background: linear-gradient(to right, #9575CD, #673AB7);
        }
        
        .news-opening .card-tag {
            background: linear-gradient(to right, #D1C4E9, #5E35B1);
        }
        
        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            margin-bottom: 20px;
        }
        
        .pagination-list {
            display: flex;
            list-style: none;
            gap: 8px;
            background: white;
            padding: 12px 20px;
            border-radius: 50px;
            box-shadow: 0 5 15px rgba(155, 114, 176, 0.2);
            align-items: center;
        }
        
        .pagination-item {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pagination-item a {
            text-decoration: none;
            color: #9B72B0;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }
        
        .pagination-item.active {
            background: #9B72B0;
        }
        
        .pagination-item.active a {
            color: white;
        }
        
        .pagination-item:hover:not(.active) {
            background: #f0e6ff;
        }
        
        .pagination-item:hover:not(.active) a {
            color: #7a5792;
        }
        
        /* 底部空白区域 */
        .bottom-space {
            height: 40px;
            width: 100%;
        }
        
        /* 详情页样式 */
        .detail-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(155, 114, 176, 0.2);
            display: none;
        }
        
        .detail-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .detail-title {
            font-size: 2.2rem;
            color: #5a3e6b;
            margin-bottom: 15px;
        }
        
        .detail-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color:  #9B72B0;
            font-size: 0.95rem;
        }
        
        .detail-tag {
            background: #9B72B0;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .detail-content {
            line-height: 1.8;
            color: #555;
            margin-bottom: 40px;
        }
        
        .detail-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .back-button {
            display: inline-block;
            margin-top: 30px;
            padding: 10px 25px;
            background: #9B72B0;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .back-button:hover {
            background: #7a5792;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(155, 114, 176, 0.3);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .pagination-list {
                padding: 10px 15px;
            }
            
            .pagination-item {
                width: 35px;
                height: 35px;
            }
            
            .detail-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 1.75rem;
            }
            
            .container {
                padding-bottom: 20px;
            }
            
            .pagination-list {
                padding: 8px 12px;
            }
            
            .pagination-item {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
            
            .detail-container {
                padding: 20px;
            }
            
            .detail-title {
                font-size: 1.5rem;
            }
            
            .detail-meta {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }
    