/*####页面右侧固定栏**********/
.page-fixed-box {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 170px;
  height: 332px;
  z-index: 999;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('../img/fixed/fixed_bg.png');
}
.page-fixed-box .page-fixed-box-cont {
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 12px;
  color: #fff;
}
.page-fixed-box .page-fixed-box-cont .page-fixed-box-cont_item {
  margin: 5px auto 0;
  width: 108px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: #43C486;
  border-radius: 4px;
}
.page-fixed-box .page-fixed-box-cont .page-fixed-box-cont_item.at {
  cursor: pointer;
  color: #fff;
  background: #F7A157;
}
.page-fixed-box .page-fixed-box-cont .page-fixed-box-cont_item.at a {
  color: #fff;
}
.page-fixed-box .page-fixed-close {
  cursor: pointer;
  position: absolute;
  top: 0%;
  right: 30px;
  width: 16px;
  height: 16px;
  opacity: .8;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('../img/fixed/fixed_close.png');
}
.page-fixed-box .page-fixed-close:hover {
  opacity: 1;
}
@media (max-width: 750px) {
  .page-fixed-box {
    top: inherit;
    bottom: 20rem;
    right: 50%;
    width: 700rem;
    height: 80rem;
    transform: translateX(50%);
    background-image: url('../img/fixed/m_fixed_bg.png');
  }
  .page-fixed-box .page-fixed-box-cont { 
    display: flex;
    top: 50%;
    left: 242rem;
    transform: translateY(-50%);
  }
  .page-fixed-box .page-fixed-box-cont .page-fixed-box-cont_item {
    margin: 0;
    font-size: 24rem;
    width: initial;
    height: initial;
    line-height: initial;
    padding: 10rem 26rem;
    background: #43C486;
    border-radius: 28rem;
  }
  .page-fixed-box .page-fixed-box-cont .page-fixed-box-cont_item.at {
    margin-left: 8rem;
  }
  .page-fixed-box .page-fixed-close {
    width: 32rem;
    height: 32rem;
    left: initial;
    right: 10rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../img/fixed/m_fixed_close.png');
  }
}