* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7e6c4;
    background-image: url("img/index/图层 1351.png");
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
}

.container {
    width: 100%;
    max-width: 600px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 40px;
}

.logo-section,
.button-section,
.text-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-section img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.button-section img {
    width: 100%;
    max-width: 300px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.button-section img:hover {
    transform: scale(1.05);
}

.text-section img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 10px;
        gap: 20px;
    }
    
    .logo-section img {
        max-width: 300px;
    }
    
    .button-section img {
        max-width: 250px;
    }
    
    .text-section img {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .logo-section img {
        max-width: 250px;
    }
    
    .button-section img {
        max-width: 200px;
    }
    
    .text-section img {
        max-width: 280px;
    }
}