* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8fafc;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

h1 {
    color: #1e293b;
    margin-bottom: 30px;
    font-size: 2.2rem;
    font-weight: 600;
}

.image-container {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

#slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

#slider-image.loaded {
    opacity: 1;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
    padding: 0 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .image-container {
        height: 50vh;
        min-height: 300px;
    }
    
    .status-bar {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .image-container {
        height: 40vh;
        min-height: 250px;
    }
}