.banner-section {
    position: relative;
    width: 100%;
    height: 77vh;
    overflow: hidden; /* 确保子元素超出部分被隐藏 */
    padding: 0;
    background-color: black;

}

.banner-img {
    display: block;
    width: 100%;
    height: 100%; /* 保持图片的宽高比 */

    /*border: none;*/
}

.banner-content {
    position: absolute;
    top: 55%; /* 标题垂直居中 */
    left: 5%; /* 左边距，可根据需要调整 */
    transform: translateY(-50%); /* 只调整Y轴，确保标题垂直居中 */
    width: 80%; /* 宽度可以根据需要调整 */
    max-width: 700px; /* 最大宽度，可选 */
    z-index: 1; /* 确保文本和其他内容位于图片之上 */
}

/* 如果你希望确保文本始终可见，可以添加一个半透明的背景色 */
.banner-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1; /* 确保它在文本之下 */
}

.banner-title {
    margin-bottom: 25px;
    font-size: 3em;
    color: #fff;
}

.banner-text-line1, .banner-text-line2 {
    margin-bottom: 30px;
    font-size: 1.2em;
    color: #fff;
}

.banner-buttons {
    display: flex;
    gap: 20px; /* 按钮间的间距 */
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.btn-more-info {
    background-color: #007bff;
    color: white;
}

.btn-contact-us {
    background-color: white;
    color: black;
}

.btn-contact-us:hover {
    background-color: #007bff;
    color: white;
}

.btn-contact-us:hover ~ .btn-more-info {
    background-color: white;
    color: black;
}

/* 可选：增强悬停“了解更多”时的体验 */
.btn-more-info:hover {
    background-color: #007bff;
    color: white;
}