.authenticationModal{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999999;
  display: none;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background-color: rgba(15, 1, 0, .7);
} 
.authenticationModal .modalMain{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 480px;
  height: 502px;
  font-size: 14px;
  position: relative;
  z-index: 10000000;
  border: 1px solid #ced5e0;
  background: #FFFFFF;
  box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.08);
  border-radius: 8px;
}
.authenticationModal .modalHeader{
  width: 100%;
  height: 40px;
  position: relative;
  line-height: 40px;
}
.authenticationModal .modalTitle{
  position: absolute;
  top: 0;
  left: 10px;
  right: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.authenticationModal .modalClose{
  position: absolute;
  right:10px;
  font-family: "font_family" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
  color:#9a9a9a;
  cursor: pointer;
}
.authenticationModal .modalContent{

}
.authenticationModal .tip{
  text-align:center;
  margin-top:20px;
  margin-bottom:28px;
}
.authenticationModal .tip p{
  margin:8px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  line-height: 22px;
  text-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
  font-style: normal;
}
.authenticationModal .tip p:nth-child(1){
  line-height: 32px;
  margin: 0;
  font-weight: 600;
  font-size: 24px;
}
.authenticationModal .modalImage{
  margin:auto;
  width: 170px;
  height: 170px;
  background: #FFFFFF;
  box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.08);
  border-radius: 4px;
  border: 2px solid rgba(0,0,0,0.8);
  display:flex;
}
.authenticationModal .modalImage img{
  /* width: 138px;
  height: 138px; */
  width: 160px;
  height:160px;
  margin:auto;
  display: none;
}
.authenticationModal .modalImage .active{
  display: block;
}
.authenticationModal .tab{
  width: 315px;
  height: 29px;
  background: #EBEBEB;
  box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.08);
  border-radius: 4px;
  margin:16px auto auto auto;
  padding:2px;
  display: flex;
  align-items: center;
}
.authenticationModal .tab p{
  cursor: pointer;
  width: 162px;
  height: 30px;
  border-radius: 2px;
  text-align: center;
  line-height: 31px;
  width: 158px;
  color: #000000 !important;
}
.authenticationModal .tab .active{
  background:#FFFFFF;
}
.authenticationModal .modalFooter{
  height: 22px;
  font-weight: 400;
  font-size: 14px;
  color: #0471E3;
  line-height: 22px;
  text-shadow: 0px 4px 16px rgba(0,0,0,0.08);
  text-align: left;
  font-style: normal;
  margin:auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 0;
  cursor: pointer;
}