.mobile-homepage {
    width: 100vw;
    height: 100vh;
    background: #0D0D0D;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-homepage-background {
    width: 100%;
}

.mobile-download-button {
    position: fixed;
    width: calc(100% - 40px);
    bottom: 28px;
    height: 48px;
    background: linear-gradient(333deg, #F0B000 0%, #0BD58A 100%);
    border-radius: 6px 6px 6px 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 999;
}
.mobile-download-button-ios{
    position: fixed;
    width: calc(100% - 40px);
    bottom: 28px;
    height: 48px;
    background: linear-gradient(333deg, #F0B000 0%, #0BD58A 100%);
    border-radius: 6px 6px 6px 6px;
    justify-content: center;
    align-items: center;
    left: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 999;
    display: none;
}

.mobile-download-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

.copy-wrapper{
    width: calc(100% - 40px);
    height: 48px;
    background: #FFFFFF;
    margin-left: 20px;
    border-radius: 6px 6px 6px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
}
.copy-text{
    font-weight: 600;
    font-size: 16px;
    color: #000000;
}
.copy-button{
    width: 60px;
    height: 32px;
    background: #0BD58A;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    cursor: pointer;
}

.wechat-wrapper{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0,0,0,0.6);
    inset: 0;
    display: none;

}
.tips-container{
    color:#FFFFFF;
    font-size: 16px;
    margin-top: 20px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.tips-container-label{
    margin-right: 8px;
}
.tips-container-image{
    width: 100px;
}