/**app.wxss**/
page {
    width: 100%;
    height: 100%;
}
.container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* padding: 200rpx 0; */
  /* box-sizing: border-box; */
} 
.drop_img {
    width: 30rpx;
    height: 27rpx;
    cursor: pointer;
    margin: 0 auto 40rpx;
    position: fixed;
    bottom: 50rpx;
    left: 50%;
    margin-left: -15rpx;
}

/*  客服  */
.chat_peo {
    position: fixed;
    width: 86rpx;
    height: 86rpx;
    bottom: 80rpx;
    right: 24rpx;
    z-index: 999999;
}
button::after {
    border: none;
    opacity: 0;
}
 .contacButton {
    background: none;
    border: none;
    padding: 0;
    display:inline-block;
    width:100%;
    height:100%;
} 
.chat_peo image {
    width: 100%;
    height: 100%;
}

/*  返回顶部  */
.return_top {
    bottom: 187rpx;
    z-index: 999999;
}

/*  去除滚动条  */
::-webkit-scrollbar {
  width: 0;
  height: 0;
  color: transparent;
}

.dots{
width: 100%;
height: 50rpx;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
position: absolute;
bottom: 0;
/* margin-top: -18rpx; */
}
/*未选中时的小圆点样式 */
.dot{
width: 16rpx;
height: 16rpx;
border-radius: 50%;
margin-right: 26rpx;
background-color:#CCCCCC;
}
/*选中以后的小圆点样式 */
.active{
width: 22rpx;
height: 22rpx;
border-radius:8rpx;
/* background-color: #FB7F47; */
background: url("http://pjq0ww1cj.bkt.clouddn.com/lbxia.png") no-repeat center;
background-size: 100%;
}