
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: #ffffff;
            color: #333;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            max-width: 1200px;
            margin: 40px auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .uee-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            padding: 25px 20px;
            background: linear-gradient(to right, #f5f7fa, #e4eaf1);
            border-bottom: 1px solid #e0e6ed;
        }
        
        .uee-tab {
            padding: 12px 30px;
            border-radius: 30px;
            background: linear-gradient(to bottom, #f9fafc, #eef2f7);
            color: #444c57;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
            border: 1px solid #dbe1e9;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .uee-tab i {
            font-size: 1.2rem;
        }
        
        .uee-tab.active, .uee-tab:hover {
            background: linear-gradient(to bottom, #9B72B0, #9361c0);
            color: white;
            box-shadow: 0 6px 15px rgba(181, 136, 217, 0.35);
            transform: translateY(-3px);
            border-color: #9361c0;
        }
        
        .uee-section {
            padding: 50px 30px;
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .uee-section.active {
            display: block;
        }
        
        .uee-title {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: #9B72B0;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .uee-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #B588D9, #d6baf1);
            border-radius: 2px;
        }
        
        .text-center-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 800px;
            margin: 0 auto 40px;
            color: #4b5563;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        
        .text-center-container p {
            text-align: center;
            margin: 8px 0;
        }
        
        .uee-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .uee-image-box {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            aspect-ratio: 16/9;
            transition: all 0.4s ease;
        }
        
        .uee-image-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        
        .uee-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px;
            font-size: 0.9rem;
            text-align: center;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .uee-image-box:hover .image-caption {
            transform: translateY(0);
        }
        
        .info-box {
            display: flex;
            justify-content: space-between;
            max-width: 800px;
            margin: 30px auto;
            padding: 25px;
            background: linear-gradient(135deg, #f9f7fe, #f0ebff);
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        .info-item {
            text-align: center;
            flex: 1;
            padding: 0 15px;
        }
        
        .info-value {
            font-size: 2rem;
            font-weight: 700;
            color: #9B72B0;
            margin-bottom: 5px;
        }
        
        .info-label {
            color: #6c757d;
            font-size: 0.95rem;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .uee-gallery {
                grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
                gap: 15px;
            }
            
            .uee-tab {
                padding: 10px 20px;
                font-size: 0.95rem;
            }
            
            .uee-title {
                font-size: 1.8rem;
            }
            
            .info-box {
                flex-direction: column;
                gap: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .uee-tabs {
                flex-direction: column;
            }
            
            .uee-tab {
                width: 100%;
            }
        }
    