/*####页面右侧固定栏**********/
.page-fixed-box {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 212px;
  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: 84px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 12px;
  color: #fff;
}
.page-fixed-box .page-fixed-box-cont .page-fixed-box-cont_tips .page-fixed-box-cont_tips-txt1 {
  font-weight: 700;
}
.page-fixed-box .page-fixed-box-cont .page-fixed-box-cont_tips .page-fixed-box-cont_tips-txt2 {
  font-size: 18px;
  font-weight: 700;
}
.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: #32589D;
  border-radius: 4px;
}
.page-fixed-box .page-fixed-box-cont .page-fixed-box-cont_item.at {
  cursor: pointer;
  background: #4DB35F;
}
.page-fixed-box .page-fixed-box-cont .page-fixed-box-cont_item.at:hover {
  opacity: 0.8;
}
.page-fixed-box .page-fixed-close {
  cursor: pointer;
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  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: .2rem;
    right: 50%;
    width: 7rem;
    height: .8rem;
    transform: translateX(50%);
    background-image: url('../img/fixed/m_fixed_bg.png');
  }
  .page-fixed-box .page-fixed-box-cont .page-fixed-box-cont_tips {
    display: none;
  }
  .page-fixed-box .page-fixed-box-cont { 
    top: 50%;
    left: 2.42rem;
    transform: translateY(-50%);
    display: flex;
  }
  .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: .1rem .26rem;
    background: #3766BC;
    border-radius: .28rem;
  }
  .page-fixed-box .page-fixed-box-cont .page-fixed-box-cont_item.at {
    margin-right: .08rem;
  }
  .page-fixed-box .page-fixed-close {
    width: .32rem;
    height: .32rem;
    left: initial;
    right: .1rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../img/fixed/m_fixed_close.png');
  }
}