/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    overflow-x: hidden; /* 防止水平滚动条出现 */
}

.section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#section3 {
    margin-top: 10px;
}

#section4 {
    margin-top: 10px;
}

.section img {
    display: block; /* 移除图片下方的空白间隙 */
    width: 100%;
    height: auto; /* 保持原始比例 */
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: left;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
}

.text-overlay h2 {
    font-size: 2vw;
    margin-bottom: 10px;
}

.text-overlay p {
    font-size: 1vw;
}

.top-description{
    margin-top: 2vh;
}

.top-phone {
    margin-top: 3vh;
}

.top-sub-phone {
    font-size: 2vw;
}

.floating-qrcode {
    position: fixed;
    bottom: 200px;
    right: 40px;
    z-index: 999; /* 确保二维码在最上层 */
}

.floating-qrcode img {
    width: 10vw; /* 二维码大小可以根据需要调整 */
    height: 10vw;
}

.footer {
    /* position: absolute; */
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
    color: white;
}