body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('img/bgimage.webp') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.container {
    position: relative;
    text-align: center;
    color: white;
}

.weather-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px; /* 根据需要调整大小 */
}

.info-module {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 100px;
}

.quote {
    margin-top: 50px;
    font-style: italic;
}

.quote-background {
    background: rgba(0, 0, 0, 0.8); /* 不透明的背景 */
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}

.additional-module {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 20px;
}

@keyframes wave {
    0% { background-position: 0 0; }
    50% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 75%, rgba(255, 255, 
