/* 主横幅样式 */
.hero-banner {
    width: 100%;
    height: 500px;
    /* background-image 通过 PHP 动态设置在 HTML 中 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 250px;
    }
}
