#rightnav{
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 1000;
}
.rightbox{
  position: relative;
}
.rightbox ul{
  list-style: none;
}
.rightbox ul li{
  background-color: #999;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rightbox ul li:hover{
  background-color: #4a71ff;

}

.ps_phone{
  background-color: #fff;
  box-shadow: 0 5px 5px rgb(197, 196, 196);
  position: absolute;
  right: 64px;
  top: 10px;
  width: 180px;
  border-radius: 4px;
  padding: 10px;
  display: none;
}
.ps_phone::after,.ps_code::after,.ps_back::after{
  content:'';
        position: absolute;
        top: 4px;
        right: -10px;
        width: 0;
        height: 0;
        border-top:10px solid transparent;
        border-bottom:10px solid transparent;
        border-left:10px solid #fff;
}
.ps_phone_r{
  margin-left: 4px;
}
.ps_phone_r .pa{
  font-size: 14px;
  margin-bottom: 4px;
  color: #333333;
}
.ps_phone_r:last-child{
  font-size: 16px;
  color: #4a71ff;
}

.ps_code{
  background-color: #fff;
  box-shadow: 0 5px 5px rgb(197, 196, 196);
  position: absolute;
  right: 64px;
  top: 60px;
  display: none;
}
.ps_code span{
  font-size: 13px;
  text-align: center;
}
.ps_back{
  background-color: #fff;
  box-shadow: 0 5px 5px rgb(197, 196, 196);
  position: absolute;
  right: 64px;
  top: 124px;
  display: none;
  padding: 4px;
  width: 40px;
}















.modal_container{
  width: 480px;
  height: 500px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 500;
  border-radius: 10px;
  padding: 20px 20px 10px 20px;
  box-shadow: 0 10px 10px rgb(221, 220, 220);
}
.infoform p{
  font-size: 15px;
  color: #333;
  margin: 6px 0 20px;
}
.formItem{
  width: 100%;
  margin: 10px 0;
}
.formItem input{
  background-color: #f2f4f5;
  padding: 15px 20px;
  border-radius: 4px;
}
.formItem .intputext{
  width: 100%;
}
.formItem .inputCode{
  width: 332px;
}
.formItem .vcode{
  margin-left: 20px;
  background-color: #4a71ff;
  color: #fff;
  font-size: 18px;
  letter-spacing:2px;
  border-radius: 4px;
  padding: 10px 6px;
  vertical-align:middle;
}
.formItem .textarea{
  width: 100%;
  height: 100px;
  background-color: #f2f4f5;
  padding: 15px 20px;
  border-radius: 4px;
  color: #333333;
}
.formbtn{
 width: 100%;
 height: 50px;
 overflow: hidden;
}
.btnbox{
  float: right;
  margin-top: 16px;
}
.btnbox span{
  padding: 6px 40px;
  font-size: 15px;
  border-radius: 6px;
  margin-right: 20px;
  cursor: default;
}
.btnbox span:last-child{
  margin-right: 0;
}
.btnbox .cancel:hover,.btnbox .submit:hover{
  color: #fff;
  background-color: #4a71ff;
}
.btnbox .cancel,.btnbox .submit{
  color: #4a71ff;
  border: 1px solid #4a71ff;
}

.tips{
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: bisque;
  color: brown;
  padding: 4px 20px;
  border-radius: 4px;
  display: none;
}