/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.carousel, .static-image, iframe {
    width: 100%;
    height: 100vh; /* 视口高度 */
    position: relative;
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel img.active {
    opacity: 1;
}

.static-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

iframe {
    border: none;
}