/* 轮播图 */
/* 全局重置 */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* 轮播容器：宽度 100%，高度随屏幕大小变化 */
.mySwiper {
    position: relative;
    width: 100%;
    overflow: hidden;
  /* PC 默认 400px，移动端用媒体查询再改 */
  /* height: 400px; */
}

/* 单张幻灯片 */
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
}
/* 移动端：让高度自适应屏幕，比如 40% 视口高 */
@media (max-width: 768px) {
  .mySwiper { /*height: 40vh;*/ }
  .swiper-slide { font-size: 32px; }
}

/* 联系我们 */
.contact-us-mask .contact-line-box {
    padding-bottom: 20px;
}
nav.bg-light {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    top: -28px;
}

/* 移动端 */
@media(max-width:991px){
    #header .header-wrap .header-nav .mobile-nav p.title .next-arrow {
        width:12px;
        position:absolute;
        right:0;
        /* top:25px */
    }
    /* 一级行默认可见 */
    .d-lg-none .product-center-li > p.title { display:block; }
    /* 二级盒子默认隐藏 */
    .d-lg-none .mobile-nav-box { display:none; }
    /* 展开时 */
    .d-lg-none .mobile-nav-box.show { display:block; }
    /* 返回按钮样式 */
    .d-lg-none .back-row { padding: 0px 15px; background:#f8f9fa; }
    .d-lg-none .mobile-nav-box .second-content-title ul li {
        border-bottom: 1px solid #eaeaea;
        height: 46px;
        line-height: 46px;
        font-size: 14px;
    }
}

/* pro_detail */
#header .header-nav .nav-box .mask .clear-mask {
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 0px;
    font-size: 24px;
    transform: scaleX(1.25);
    z-index: 10000;
}
