*{
    padding: 0;
    margin: 0;        
    font-family: 'SourceHanSansCN-Light',Arial,"微软雅黑","黑体",'宋体';
}
a {
    color: #666;
    text-decoration: none;
    font-size: 0.12rem;
    outline: none;
}
li{
    list-style-type: none;
}
html{
  /* 隐藏滚动条 */
    scrollbar-width: none;
  /*兼容火狐方案*/
    -moz-scrollbar-width: none;        
  /*兼容IE*/
    -ms-overflow-style:none;
    -ms-scrollbar-width: none; 
}
html, body {
    /* width: 4.6rem;
    height: 4.1rem; */
    /* height: 100vh;
    width: 100vw; */
    width: 450px;
    height: 475px;
    margin: 0;
    padding: 0;
    position: relative;
    /* left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%); */
    overflow: hidden;
}
img{
    width: 100%;
    height: 100%;
}
.payBox{
    width: 100%;
    height: 100%;
    /* border: 1px solid #000; */
    background: #fff;
    box-sizing: border-box;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
}
.payTitle{
    /* display: flex; */
    width: 100%;
}
.back{
    width: 12px;
    height: 20px;
    position: absolute;
    top: 25px;
    left: 25px;
    cursor: pointer;
}
.title{
    text-align: center;
    font-size: 23px;
}
.payDown{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.payInfo{
    width: 100%;
    height: 50px;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 40px;
}
.payInfoText{
    margin: 7px 0;
}
.payLine{
    text-align: center;
    position: relative;
    width: 120px;
    font-size: 17px;
    padding: 0 15px;
}
.payLine::before,
.payLine::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 85%; 
    height: 1px; 
    background-color: black; 
}

.payLine::before {
    left: 100%;
}

.payLine::after {
    right: 100%;
}
.payicon{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 15px 0;
}
.payicon_wechat,.payicon_ali,.payicon_yubi{
    height: 50px;
    width: 100%;
    /* border: 1px solid red; */
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.allLeft{
    display: flex;
    align-items: center;    
}
.allText{
    font-size: 18px;
    margin-left: 15px;
    
}
.allRight{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.allIcon{
    width: 35px;
    height: 35px;
}
.payBtn{
    width: 100%;
    height: 50px;
    border: none;
    font-size: 21px;
    color: #fff;
    font-family: '微软雅黑';
    background:linear-gradient(to right, rgb(77, 170, 254),rgb(67, 216, 244)) ;
    border-radius: .08rem;
    cursor: pointer;
    border-radius: 6px;
}
.payBtn:hover{
    background:linear-gradient(to right, rgba(77, 171, 254, 0.801),rgb(67, 216, 244,0.8)) ;
}
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3); 
    border-top-color: #ffffff; 
    border-radius: 50%;
    animation: spin 1s infinite linear;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  #qrcode{
    /* width: 100%; */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #qrcode img{
    width: auto;
    height: auto;
  }
  .allMessageBox{
    position: absolute;
    height: 20px;
    top: -50px;
    font-size: 16px;
    border: 1px solid rgb(184, 184, 184);
    padding: 6px 20px;
    border-radius: 30px;
    background: #fff;
    transition: all .5s;
    left: 50%;
    transform: translateX(-50%);
}