/* 首页样式 */
.home-bg-container {
    position: relative;
    width: 100%;
    aspect-ratio: 750 / 1624;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-video {
    position: absolute;
    left: 9.33%;
    top: 53.9%;
    width: 81.33%;
    height: 20.02%;
    object-fit: cover;
    z-index: 2;
    background: #000;
}

.main-content {
    padding: 40px;
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.bottom-button {
    position: fixed;
    bottom: 100px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 0 40px;
    z-index: 3;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-content {
        padding: 30px;
    }
    
    .bottom-button {
        bottom: 100px;
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 20px;
    }
    
    .bottom-button {
        bottom: 100px;
        padding: 0 20px;
    }
} 

#home-page {
    overflow: hidden;
} 