body{
  margin: 0;
  padding: 0;
  font-family: "Microsoft YaHei", Arial, Atilla, "Hiragino Sans GB", "Open Sans", 微软雅黑, STHeiti, "WenQuanYi Micro Hei", SimSun, sans-serif;
}
/* 重复登录退出提示页 */
.operateTBox{
  background-color: #eff4f9;
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.operateTBox > div{
  background-color: #fff;    
  max-width: 600px;
  width: 90%;
  border-radius: 25px;
  box-shadow: 0 2px 5px rgb(0 0 0 / 5%);
  position: relative;
}
.operateTBox > div::before{
  content: '';
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 20%;
  background: url(../images/OperateTips.png) no-repeat;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
}
.operateTBox > div::after{
  content: '';
  display: block;
  width: 26%;
  height: 0;
  padding-bottom: 26%;
  background: url(../images/OperateTips01.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: -45px;
  left: 35%;
}
.operateTBox > div header{
  padding: 35px;
}
.operateTBox > div header p{
  font-size: 18px;
  letter-spacing: 0.05rem;
  padding-bottom: 10px;
}
.operateTBox p.chinesehint{
  line-height: 25px;
  color: #ff6a00;
}
.operateTBox p.englishhint{
  color: #233d66;
  font-size: 16px;
}
.operateTBox > div footer{
  display: block;
  text-align: right;    
  padding: 10px 0 0 10px;
}
.operateTBox > div footer input{
  background-color: #0094ff;
  line-height: 50px;
  border-radius: 10px;
  border: 0;
  color: #fff;
  font-size: 16px;
  padding: 0 15px;
}
@media (max-width:600px) {
  .operateTBox > div::after{
    top: -9vw;    
    width: 30%;
    padding-bottom: 30%;
  }
  .operateTBox > div header{
    padding: 5vw;
  }
  .operateTBox > div footer{
    border-top: 0 !important;
  }
  .operateTBox p.chinesehint{
    font-size: 17px;
    line-height: 22px;
  }
  .operateTBox p.englishhint{
    font-size: 15px;
    line-height: 18px;
  }
  .operateTBox > div{
    border-radius: 5vw;
  }
  .operateTBox > div::before{
    border-top-right-radius: 5vw;
    border-top-left-radius: 5vw;
    background-size: auto 100%;
  }
  .operateTBox > div footer input{
    line-height: 11vw;
    border-radius: 2vw;
  }
}
