@charset "utf-8";

/* 在线客服样式 */

.page-aside {

  position: fixed;

  right: 0;

  top: 33%;

  z-index: 100;

}



.page-aside .item {

  margin-top: 6px;

  position: relative;

}



.page-aside .item:first-child {

  margin-top: 0;

}



.page-aside .item .smallBox {

  width: 65px;

  height: 65px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  background: #333333;

  transition: all .3s;

  cursor: pointer;

  position: relative;

  z-index: 10;

}



.page-aside .item:hover .smallBox {

  background: #d20017;

}



.page-aside .item .smallBox .kImg {

  width: 30px;

  height: 30px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: 50%;

}



.page-aside .item .smallBox .text {

  font-size: 12px;

  color: #ffffff;

  text-align: center;

}



.page-aside .item .sidebox {

  position: absolute;

  padding: 12px 15px;

  top: 50%;

  transform: translate(0, -50%);

  border-radius: 8px 0 0 8px;

  transition: all .3s;

  opacity: 0;

  right: -300%;

}



.page-aside .item:hover .sidebox {

  opacity: 1;

  right: 65px;

}



.page-aside .item .sidebox .telBox {

  background: #ffffff;

  width: 170px;

  height: 45px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  color: #333333;

	font-weight: bold;

  font-size: 16px;

  text-align: center;

  position: relative;

}



.page-aside .item .sidebox .telBox::after {

  content: '';

  display: inline-block;

  position: absolute;

  width: 0;

  height: 0;

  border-top: 8px solid transparent;

  border-bottom: 8px solid transparent;

  border-left: 8px solid #ffffff;

  left: 100%;

}

.page-aside .item .sidebox .mailBox {

  background: #ffffff;

  width: 200px;

  height: 45px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  color: #333333;

	font-weight: bold;

  font-size: 16px;

  text-align: center;

  position: relative;

}



.page-aside .item .sidebox .mailBox::after {

  content: '';

  display: inline-block;

  position: absolute;

  width: 0;

  height: 0;

  border-top: 8px solid transparent;

  border-bottom: 8px solid transparent;

  border-left: 8px solid #ffffff;

  left: 100%;

}



.page-aside .item .sidebox .wxBox {

  background: #ffffff;

  width: 130px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  color: #333333;

	font-weight: bold;

  padding: 5px;

}



.page-aside .item .sidebox .wxBox .litpic {

  width: 100%;

  display: block;

}



.page-aside .item .sidebox .wxBox .title {

  font-size: 12px;

  text-align: center;

}



@media (max-width: 767px) {

  .page-aside {

    display: none;

  }

}