/* 右边联系 */
.contactBox_container {
  position: fixed;
  right:0;
  bottom: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 999;

}

.contactBox_container .QQBox {
  position: relative;
}

.contactBox_container .QQBox  .online {
 box-sizing: border-box;
  background-color: red;
  padding: 5px !important;
  color: #FFF;
  border-radius: 5px;
  width: 100%;
  display: inline-block;
  text-align: center;
  margin-bottom: 10px;
}

/* 解决方案 */
.contactBox_container .Solution {
  padding: 4px 10px;
  background-color: #00a0e9;
  border-radius: 10px;
  font-size: 14px;
  letter-spacing: 0px;
 
  margin-bottom: 19px;
  cursor: pointer;
}
.contactBox_container .Solution a{
  color: #ffffff;
}

/* QQ */
.contactBox_container .QQ {
  position: relative;
  z-index: 50;
  
  margin-left: auto;
  width: 75px;
  height: 61px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2px;
  cursor: pointer;
}
.contactBox_container .QQ .icon_QQ {
  display: block;
  width: 32px;
  height: 36px;
  background-image: url('../img/rgb_QQ.jpg');
}

/* 微信 */
.contactBox_container .QQ .icon_WeChat {
  display: block;
  width: 39px;
  height: 36px;
  background-image: url('../img/rgb_wx.png');
}

/* 电话 */
.contactBox_container .QQ .icon_TEL {
  display: block;
  width: 34px;
  height: 36px;
  background-image: url('../img/rgb_telNum.png');
}

/* 回到顶部 */
.contactBox_container .QQ .icon_UP {
  display: block;
  width: 34px;
  height: 18px;
  background-image: url('../img/rgb_up.png');
}


/* 详情 */
/* QQ */
.QQ_detail {
  z-index: -50;
  display: inline-block;
  position: absolute;
  right: -190px;
  top: 0;
  width: 183px;
  height: 61px;
  cursor: pointer;
  line-height: 61px;
  text-align: center;
  background-color: #ffffff;
  font-size: 18px;
  /* 移动 */
  transition: right 1s;
  -moz-transition: right 1s;
  /* Firefox 4 */
  -webkit-transition: right 1s;
  /* Safari 和 Chrome */
  -o-transition: right 1s;
  /* Opera */
}
.contactBox_container .QQBox:hover .QQ_detail {
  right: 80px;
}
/* 微信 */
.WeCart_detail{
  width: 161px;
  height: 159px;
  position: absolute;
  top: 0;
  right: -165px;
  cursor: pointer;
   /* 移动 */
   transition: right 1s;
   -moz-transition: right 1s;
   /* Firefox 4 */
   -webkit-transition: right 1s;
   /* Safari 和 Chrome */
   -o-transition: right 1s;
   /* Opera */

}
.WeCart_detail img{
  width: 100%;
  height: 100%;
}
 .contactBox_container .QQBox:hover .WeCart_detail {
  right: 80px;
} 
/* 电话 */
.TEL_detail {
  display: inline-block;
  position: absolute;
  right: -190px;
  top: 0;
  width: 183px;
  height: 61px;
  line-height: 61px;
  text-align: center;
  background-color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  /* 移动 */
  transition: right 1s;
  -moz-transition: right 1s;
  /* Firefox 4 */
  -webkit-transition: right 1s;
  /* Safari 和 Chrome */
  -o-transition: right 1s;

  /* Opera */
}
 .contactBox_container .QQBox:hover .TEL_detail {
  right: 80px;
} 
.detail div{
  width: 100%;
}