.mainImg img{
    display: block;
    width:100%;
}
/* 产品信息 */
.info{
    background-color: #fff;
    padding:15px;
}
.info .title{
    font-size:18px;
    margin-bottom: 5px;
}
.info .blending{
    display: flex;
    margin-bottom: 5px;
    flex-wrap: wrap;
}
.info .blending .item{
    padding:2px 5px;
    color: #e6a23c;
    background-color:#fdf6ec;
    border-radius: 3px;
    margin-right: 3px;
    margin-bottom: 2px;
    font-size:12px;
}
.info .blending .item:last-child{
    margin:0px;
}
.info .other{
    display:flex;
    align-items: center;
    margin-bottom:7px;
}
.info .other .item{
    margin-right: 10px;
    font-size:14px;
    display: flex;
    align-items: center;
}
.info .other .item:last-child{
    margin:0;
}
.info .other .item .val{
    color:#67c23a;
    font-weight: bold;
    display: flex;
}
.info .other .item .val .item{
    padding:5rpx 10rpx;
    color: #67c23a;
    background-color:#f0f9eb;
    border-radius: 5rpx;
    margin-right: 10rpx;
    font-weight:500;
}
.info .other .item .val .item:last-child{
    margin-right: 0;
}

.info .prarm{
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin:0 -8px;
}
.info .prarm .item{
    box-sizing: border-box;
    display: flex;
    font-size:12px;
    padding:5px 6px;
    border:1px solid #eee;
    border-radius: 5px;
    margin:2px;
    background-color: #fafafa;
    color:#666;
}
.info .prarm .item .label{
    flex-shrink: 0;
}

/* 公司信息 */
.company{
    background-color: #fff;
    padding:15px 15px 25px 15px;
    display: flex;
    margin-bottom: 5px;
}
.company .logo{
    width: 65px;
    height: 65px;
    margin-right: 5px;
    border-radius: 50px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.company .logo img{
    max-width:100%;
    max-height: 100%;
}
.company .title{
    font-size:18px;
    margin-bottom: 3px;
}
.company .des{
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    color:#666;
}

.detail{
    background-color: #fff;
    min-height: 200rpx;
}
.detail .images{
    overflow: hidden;
}
.detail .images img{
    width:100%;
    display: block;
    margin-bottom: 2px;
}
.detail .content{
    padding:0 15rpx;
    overflow: hidden;
}

.end_line{
    text-align: center;
    padding:15px;
    color:#999;
}

.footerBar{
    position: sticky;
    bottom:0;
    background-color: #fff;
    padding:0 2px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 0 1px #eee;
    z-index: 998;
}
.footerBar .item{
    position: relative;
    width:65px;
    padding: 10px 0px 14px 0px;
    box-sizing: border-box;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.footerBar .item.card{
    margin-left:auto;
}
.footerBar .item:active{
    background-color: #fafafa;
}
.footerBar .item::after{
    content: '';
    display: block;
    width:1px;
    height:15px;
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top:25px;
}
.footerBar .item:first-child:after{
   display: none;
}
.footerBar .item .iconfont{
    text-align: center;
    color:#666;
}
.footerBar .item:first-child .iconfont{
    color:#f60;
}
.footerBar .item .iconfont{
    font-size:20px;
}
.footerBar .item .name{
    text-align: center;
    font-size:24rpx;
    color:#666;
}
.footerBar .item.btn{
    width:110px;
}

.footerBar .item.btn .name{
    background-color: #e96e61;
    box-shadow: 0 0 5px #e96e61;
    color:#fff;
    margin: 0 5px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    font-size:13px;
}
.footerBar .item.btn::after{
    display: none;
}
.footerBar .item.request{
    margin-left:auto;
}
.footerBar .item.request .name{
    background-color: #f60;
    box-shadow: 0 0 2px #f60;
}
.footerBar .collect .iconfont.active{
    color:#f60;
}

.footerBar .item.disable .name{
    background-color: #ddd !important;
    box-shadow: 0 0 0 #ddd !important;
    pointer-events: none;
}


/* 联系我们 */
.c_box{
    height: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.c_box.active{
    right:0%;
    visibility: visible;
    opacity: 1;
}
.c_logo{
    height: 75px;
    margin:0 auto;
    margin-bottom: 15px;
    background-color: #fff;
    overflow: hidden;
}
.c_logo .img{
    max-width:100%;
    max-height: 100%;
}
.c_name{
    font-size:18px;
    text-align: center;
    margin-bottom:15px;
}
.c_des{
    padding:0px 15px 15px 15px;
    font-size:15px;
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:12;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.c_siteurl{
    color:#fff;
    margin:0 15px;
    background-color:#f60;
    height: 40px;
    border-radius: 40px;
    font-size:14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c_siteurl .iconfont{
    font-size: 18px;
    position: relative;
    top:1px;
    margin-right: 3px;
}
.c_info{
    margin:0 15px 40px 15px;
}
.c_info .row{
    display: flex;
    align-items: center;
    min-height: 35px;
    padding:8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size:15px;
}
.c_info .row .val{
    width:100%;
}
.c_info .row .label{
    color:#666;
    flex-shrink: 0;
    width:120rpx;
    text-align: right;
}
.c_info .row .icon{
    flex-shrink: 0;
    width:25px;
    height: 25px;
    color:#fff;
    background-color: #f60;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left:3px;
}
.c_close{
    text-align: center;
    position: absolute;
    width:100%;
    bottom:50px;
    text-align: center;
}
.c_close .iconfont{
    color:#666;
    font-size: 36px;
}
.c_close .iconfont:active{
    color:#f60;
}


/* 产品细节滚动 */
.goods_detail{
    margin-bottom: 5px;
    padding-bottom: 10px;
    background-color: #fff;
}
.goods_detail .title{
    padding:15px 15px 10px 15px;
    font-size:16px;
    font-weight: 700;
}
.goodsSlider{
	position: relative;
	overflow: hidden;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}
.goods_detail .swiper-slide{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100%;
    padding:20px;
}
.goods_detail .swiper-slide:active{
    transform:scale(0.9); 
}
.goodsSlider .swiper-slide a{
    display: block;
}
.goodsSlider .swiper-slide a img{
    width:100%;
	display:block;
	margin:0 auto;
    -webkit-transition: all .3s;-moz-transition: all .3s;-o-transition: all .3s;transition: all .3s;
}

.goodsSlider .swiper-slide.swiper-slide-active{
    padding:0;
    margin:0 -10px;
    -webkit-transition: all .3s;-moz-transition: all .3s;-o-transition: all .3s;transition: all .3s;
}
.goodsSlider-pagination-center{
	text-align:center;
	position: absolute;
    bottom: 8px;
	width:100%;
	z-index:10;
}
.goodsSlider-pagination .swiper-pagination-bullet {
    border-radius: 0;
    opacity: 1;
    margin: 0 5px;
	height: 10px;
    width:10px;
	border-radius:10px;
    background-color: #000;
    opacity: 0.3;
}
.goodsSlider-pagination .swiper-pagination-bullet-active{
    opacity:0.9;
}


/* 
.requestCardPop{
    position: fixed;
    width:100%;
    height: 100%;
    left:0;
    top:0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.requestCardPop .main{
    background-color: #fff;
    padding:10px;
    border-radius: 5px;
}
.requestCardPop .main .ewm{
    margin-bottom: 10px;
}
.requestCardPop .main .tip{
    text-align: center;
    font-size:18px;
} */