html {
    overflow: visible !important;
}

body {
    overflow: visible !important;
}

#hmpage {
    opacity: 0;
}

/* 确保Swiper容器有正确的高度 */
.mbox1 .swiper-container {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.mbox1 .swiper-slide {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* 确保banner图片正常显示 - 使用背景图模式 */
.mbox1 .banImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.mbox1 .banImg .imgBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.mbox1 .banImg .imgBg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*
.mbox1 .banText3,
.mbox1 .banText2,
.mbox1 .banText {
    position: relative;
    z-index: 2;
}
*/

/* 欢迎按钮样式 */
.welcome {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 3;
    display: block;
    width: 280px;
    height: 70px;
    background: #da0502;
    color: #FFF;
    font-size: 14px;
    font-family: Arial;
    line-height: 70px;
    text-align: center;
    transition: all 0.3s ease;
}

.welcome:hover {
    background: #b00402;
    transform: translateX(5px);
}