body {
    font-family: "Microsoft YaHei", sans-serif;
}

.custom-navbar {
    background-color: hsl(45, 100%, 51%) /* 你想要的颜色 */
}

.hero {
    position: relative;
    min-height: 700px; /* 高度更大 */
    background: url(img/hero.jpg) center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* 添加灰色蒙版，让文字更清晰 */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* 黑色透明蒙版，0.4可调 */
    z-index: 1;
}

/* 容器文字置于蒙版之上 */
.hero .container {
    position: relative;
    z-index: 2;
}

.facility-img {
    height: 220px;        /* 统一高度，可调整 */
    object-fit: cover;    /* 保持比例裁剪，不变形 */
    width: 100%;          /* 保证宽度自适应 */
    border-radius: 5px;   /* 可选，圆角效果更美观 */
}
