
/* 分享页面 */
.share_fixed{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: aliceblue;
  height: 100%;
  width: 100%;
  overflow: auto;
}
.qrcode_body{
	/* height: calc(100vw - (3.45rem*2)); */
  height: 200px;
  padding-top: 5rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.qrcode_body .qrcodeCanvas{
  width: 200px;
  /* width: calc(100vw - (3.45rem*2)); */
  height: 200px;
  /* height: 100%; */
}
.tips_body{
  color: #999;
  font-size: 14px;
  text-align: center;
}
.tips_body div{
  padding: .45rem;
}
.keycode_body{
  border: 1px solid #ddd;
  border-radius: 5px;
	height: 110px;
  margin: 10px;
  display: flex;
  text-align: center;
  justify-content: center;
  flex-direction: column;
}
.keycode_body .code_item{
}

.keycode_body .code_item .code_title{
  color: #333;
}
.keycode_body .code_item .code_content{
  display: none;
  font-size: 24px;
  font-weight: 500;
  color: rgb(25, 160, 223);
}
.keycode_body .code_item .passWord_content{
  font-size: 24px;
  font-weight: 500;
  color: rgb(25, 160, 223);
}
.keycode_body .tips_item{
  font-size: 14px;
  padding: 0 20px;
  color: #999;
}
.share_button_body{
  padding: 10px 50px;
}

.cancel_share_button{
  text-decoration:underline;
  text-align: center;
  color: #999;
  padding-top: 20px;
}
/* 分享验证 */
.share_validate_fixed_box{
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #409EFF 0%,#409EFF 35%,rgb(240, 251, 255) 0%,rgb(240, 251, 255) 100%);
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.share_validate_fixed{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.share_validate_fixed_box >div{
  margin: 10px 0;
}
.share_validate_bg_box{
  width: calc(100vw - (3.45rem*1));
  border: 3px solid #fff;
  background: linear-gradient(138deg,#9bc9f7 4%, #eaedf5 97%);
  padding: 10px;
  border-radius: 5px;
}
.share_validate_bg{
  border-radius: 5px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
}
.share_validate_fixed input[type=text]{
  border: 1px solid #409EFF;
}
