body {
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    font-family:'微软雅黑';
	height: 100%;
    background: transparent;
}
html{
    width: 100%;
    font-size: 16px;
	height: 100%;
    background: transparent;
}
.header {
    width: 100%;
    display: flex;
    justify-content: center;
   	min-height: 100%;
    height: auto;
}
.headerBox {
    max-width: 1080px;
    width: 100%;
    box-sizing: border-box;
	min-height: 100%;
    height: auto;
	background-color: transparent;
    
}

.message {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    width: 100%;
    text-align: center;
    z-index: 100;
}

.message span {
    background: rgb(0 0 0 / 70%);
    color: white;
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 14px;
    text-align: center;
    box-sizing: border-box;
    display: none;
}

.modal{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.40);
}

.modal-content{
    width: 100%;
    height: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #fff;
    border-radius: 16px 16px 0 0;
    box-sizing: border-box;
    padding: 16px 16px 24px 16px;
    
}

.close{
    width: 28px;
    height: 28px;
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
}

.modal-title{
    font-size: 22px;
    color: #333333;
}

.modal-remark{
    font-size: 18px;
    margin-top: 10px;
}

.code-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 16px 0;
}

.code-remark{
    margin-top: 8px;
    font-size: 20px;
}

#qr_code{
    border: 1px solid #999999;
    border-radius: 12px;
    padding: 8px;
    box-sizing: border-box;
}

.qr_code_img{
    width: 132px;
    height: 132px;
    display: block;
}

.wx-box{
    width: 100%;
    height: 49px;
    background-color: #F4F6FA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    box-sizing: border-box;
    font-size: 16px;
    margin-bottom: 16px;
}

.copy-btn{
    display: flex;
    align-items: center;
}

.copy-img{
    width: 13px;
    height: 13px;
    display: block;
    margin-right: 3px;
}

.btn{
    width: 199px;
    height: 48px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    background-image: linear-gradient(to left,#FA4477,#FD66B0);
    margin: auto;
}