/* 首页样式 */
.home-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url('../images/home-bg.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333;
    background-color: #f5f5f5;
}

.home-top-right {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.home-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background-color: #6c757d;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.home-btn:hover {
    background-color: #5a6268;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.4);
}

.home-btn:active {
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .home-top-right {
        top: 85%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .home-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .home-top-right {
        top: 85%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .home-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}