/* 主页幻灯片 - 完全自适应 */
#mobile {
    width: 100%; 
    overflow: hidden; 
    position: relative;
    height: auto !important; /* 容器高度自适应 */
}

#mobile .swiper-wrapper {
    height: auto !important; /* wrapper高度自适应 */
}

#mobile .swiper-slide { 
    width: 100%; 
    height: auto !important; /* 滑块高度自适应 */
}

#mobile .swiper-slide a { 
    width: 100%; 
    height: auto; 
    display: block; 
    line-height: 0; /* 消除图片下方空隙 */
}

#mobile .swiper-slide a img { 
    width: 100%; 
    height: auto; /* 高度自动，保持原比例 */
    display: block; /* 消除图片底部间隙 */
    max-width: 100%;
}

#mobile .swiper-pagination { 
    width: 100% !important; 
    left: 0 !important; 
    text-align: center; 
    bottom: 20px !important; /* 定位在底部 */
    position: absolute;
}

#mobile .swiper-pagination .swiper-pagination-bullet { 
    width: 10px; 
    height: 6px; 
    margin: 0 0 0 4px !important; 
    opacity: 1; 
    background: #fff; 
    border-radius: 4px; 
    font-size: 0px; 
}

#mobile .swiper-pagination .swiper-pagination-bullet-active { 
    width: 15px; 
    background: coral; 
}
