html{
    padding: 0;
    margin: 0;
    touch-action: none;
}
body{
    padding: 0;
    margin: 0;
}
#app{
    display: flex;
    justify-content: center;
}

.conatiner_bg{
    background: url('./imgs//bg.png') no-repeat;
    background-size: auto 100%;
    background-position: center;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 495px;
    max-height: 895px;
    position: relative;
}

/* 假设设计稿宽度为750px，1rem = 100px */
html {
  font-size: calc(100vw / 7.5);
}

/* 限制最大最小值 */
@media screen and (max-width: 320px) {
  html {
    font-size: 42.667px;
  }
}

@media screen and (min-width: 750px) {
  html {
    font-size: 100px;
  }
}


.main_img_container{
    display: flex;
    justify-content: center;
    padding-top: 0.4rem;
    
}
.main_img_container img{
    width: 6.4rem;
    margin-right: -0.1rem;
    max-width: 455px;
}

.icon_container{
    margin-top: -1.4rem;
    display: flex;
    justify-content: center;
}

.icon_container img{
    width: 7rem;
    max-width: 454px;
}

.text_contianer{
    margin-top:0.2rem;
    display: flex;
    justify-content: center;
}

.text_contianer img{
    width: 6rem;
    margin-left: -0.3rem;
    max-width:380px;
}

.btn_container{
    width: 100vw;
    display: flex;
    justify-content: space-between;
    padding: 0 0.9rem;
    padding-top: 0.2rem;
    box-sizing: border-box;
    max-width: 480px;
}

.position_container{
    width: 2.6rem;    
    box-sizing: border-box;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 0.4rem;
    padding: 0.19rem 0;
}

.position_container img{
    width: 0.4rem;
    margin-right: 0.1rem;
}

.position_container span{
    margin-left: 0.1rem;
}

.btn_container_mt{
    padding-top: 0.2rem;
}
.androi_container{
    background: url('./imgs/androi_bg.png') no-repeat;
    background-size: 100% auto;
    background-position: center;

}

.ios_container{
    background: url('./imgs/ios_bg.png') no-repeat;
    background-size: 100% auto;
    background-position: center;

}

.ioslight_container{
    background: url('./imgs/light_bg.png') no-repeat;
    background-size: 100% auto;
    background-position: center;
}

.wangpan_container{
        background: url('./imgs/wangpan_bg.png') no-repeat;
    background-size: 100% auto;
    background-position: center;
}

.ioslight_container span{
    margin-left: 0 !important;
}
.wangpan_container span{
    margin-left: 0 !important;
}

.zoomed{
   transform: scale(1.2);  
}




.progress_conatiner{
    height: 0.2rem;
    background: #fff;   
    width:6em;
    border-radius: 0.3rem;
    margin: 0 auto;
    max-width: 434px;
    margin-top: 0.3rem;
}
.progress_conatiner_item{
    /* width: 90%; */
    height: 100%;
    background-color: #00c71a;
    border-radius: 0.3rem;

}

.progress_text{
    font-size: 0.3rem;
    color: #009814;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    margin-top: 0.1rem;
}

.progress_text_width{
    width: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toast{
    font-size: 0.3rem;
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    left: 50%;
    top:20%;
    transform: translate(-50%,-50%);    
    width: 3.5rem;
    padding:0.2rem;
    border-radius: 0.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


.fade-enter-active, .fade-leave-active {
  transition: opacity .5s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
  opacity: 0;
}

.qrcode_container{
    position: absolute;
    top:10px;
    right: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background: #fff; */
}
#qrcode{
    display: flex;
}
.qrcode_text{
    align-items: center;
    background: #fff;
    display: flex;
    justify-content: center;
    color: #000;
}

@media (min-width:480px){
    .conatiner_bg{
        width: 495px;
        background-size: 100% auto;
    }
    .icon_container{
        margin-top:-0.9rem;
    }
    .btn_container{
        padding-left:50px;
        padding-right: 50px;
        padding-top:10px;
    }

    .position_container{
        font-size: 20px;
        width: 170px;
        padding:18px 0;
    }


    .qrcode_container{
        right: 12px;
    }
    .progress_conatiner{
        margin-top:10px;
        height: 12px;
    }
    .progress_text{
        font-size: 16px;
        margin-top:5px
    }
    .progress_text_width{
        width: 84px;
    }
}

