
    /* 全局样式：Arial字体，正文18px，标题20px，图片容器美观 */
    .exhibition-review {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
        font-family: Arial, Helvetica, sans-serif;
        color: #1a1e2b;
        line-height: 1.5;
        background: #fff;
    }
    h1, h2, h3, .day-header h2, .testimonials h3 {
        font-size: 20px;
        font-weight: 600;
        margin: 0 0 0.75rem 0;
    }
    h1 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 1rem;
        border-left: 4px solid #d4af37;
        padding-left: 1rem;
    }
    .meta-info {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        background: #f5f7fa;
        padding: 0.8rem 1.2rem;
        border-radius: 2rem;
        margin: 1rem 0 1.5rem 0;
        font-size: 16px;
        font-weight: 500;
        border: 1px solid #e9edf2;
    }
    .intro {
        font-size: 18px;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eef2f6;
    }
    .day {
        margin-bottom: 3rem;
    }
    .day-header {
        margin-bottom: 1rem;
    }
    .day-badge {
        display: inline-block;
        background: #e9edf2;
        padding: 0.2rem 1rem;
        border-radius: 2rem;
        font-size: 14px;
        font-weight: 600;
        color: #2c3e66;
        margin-bottom: 0.5rem;
    }
    .day-header h2 {
        font-size: 20px;
        margin: 0;
    }
    .day-header h2 strong {
        color: #b47c2e;
    }
    .day-content {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        align-items: flex-start;
    }
    .text {
        flex: 2;
        font-size: 18px;
    }
    .text p {
        margin-bottom: 1rem;
        font-size: 18px;
    }
    .highlight {
        background: #fef7e0;
        padding: 0.75rem 1.2rem;
        border-radius: 1rem;
        border-left: 4px solid #d4af37;
        margin: 1rem 0;
        font-size: 17px;
    }
    .full-width-text {
        flex: 1 1 100%;
    }
    .full-width {
        flex: 1 1 100%;
    }
    .double-images {
        margin-top: 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }
    /* 图片容器样式 */
    .image-container {
        flex: 1;
        min-width: 250px;
        max-width: 600px;
        margin: 0 auto;
        background: #fff;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .image-container:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }
    .event-image {
        width: 100%;
        height: auto;
        display: block;
        background-color: #f0f2f5; /* fallback for loading */
    }
    .image-caption {
        padding: 0.75rem 1rem;
        font-size: 14px;
        color: #5a6e8a;
        background: #fafcff;
        text-align: center;
        border-top: 1px solid #eef2f6;
    }
    /* 响应式：在移动端让图片容器占满宽度 */
    @media (max-width: 768px) {
        .exhibition-review {
            padding: 1rem;
        }
        .day-content {
            flex-direction: column;
        }
        .double-images {
            flex-direction: column;
            align-items: center;
        }
        .image-container {
            max-width: 100%;
        }
    }
    .testimonials {
        background: #fafcff;
        border-radius: 1.5rem;
        padding: 2rem;
        margin-top: 2rem;
        border: 1px solid #eef2f8;
    }
    .testimonials h3 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    .review-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    .review {
        flex: 1;
        background: #fff;
        padding: 1.2rem;
        border-radius: 1rem;
        border: 1px solid #eef2f6;
        font-style: italic;
        font-size: 17px;
        color: #2c3e66;
    }
    .closing {
        font-size: 18px;
        background: #f5f7fb;
        padding: 1.2rem 1.5rem;
        border-radius: 1rem;
        color: #1e2a3e;
        margin-top: 1rem;
    }
    .internal-link {
        color: #b47c2e;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px solid rgba(180,124,46,0.3);
    }
    .internal-link:hover {
        color: #8a5c1f;
        border-bottom-color: #b47c2e;
    }
    .footer-note {
        text-align: center;
        font-size: 13px;
        margin-top: 3rem;
        padding-top: 1rem;
        border-top: 1px solid #eef2f6;
        color: #6c7a91;
    }
