/* 新增背景图区块 */
.hero-section {
    background: linear-gradient(to right, rgba(255,255,255,0.98) 40%, transparent 60%),
                url('images/website/wsmxzwm2.jpg') right center/cover no-repeat;
    min-height: 600px;
    margin-top: -1px; /* 消除导航栏间隙 */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px;
}

.hero-content {
    max-width: 560px;
}

.hero-section h1 {
    font-size: 48px;
    color: #1a1d21;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.subtitle {
    font-size: 36px;
    color: #007bff;
    font-weight: 700;
    margin-bottom: 25px;
}

.desc {
    font-size: 18px;
    color: #4a4e52;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #007bff;
    color: white;
    padding: 14px 36px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary {
    background: white;
    color: #007bff;
    padding: 14px 36px;
    border-radius: 30px;
    border: 2px solid #007bff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* 手机适配 */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 18px;
    }

    .desc {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}