/* 媒体查询 做移动端适配*/
/* @media only screen and (max-width: 1080px), only screen and (max-device-width: 1080px) {
    .bind_window{
        font-size: 288px;
    }
}
@media only screen and (max-width: 960px), only screen and (max-device-width: 960px) {
    .bind_window{
        font-size: 256px;
    }
}
@media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {
    .bind_window{
        font-size: 213.3333px;
    }
}
@media only screen and (max-width: 720px), only screen and (max-device-width: 720px) {
    .bind_window{
        font-size: 192px;
    }
}
@media only screen and (max-width: 640px), only screen and (max-device-width: 640px) {
    .bind_window{
        font-size: 170.6667px;
    }
}
@media only screen and (max-width: 600px), only screen and (max-device-width: 600px) {
    .bind_window{
        font-size: 160px;
    }
}
@media only screen and (max-width: 540px), only screen and (max-device-width: 540px) {
    .bind_window{
        font-size: 144px;
    }
}
@media only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
    .bind_window{
        font-size: 128px;
    }
}
@media only screen and (max-width: 414px), only screen and (max-device-width: 414px) {
    .bind_window{
        font-size: 110.4px;
    }
}
@media only screen and (max-width: 400px), only screen and (max-device-width: 400px) {
    .bind_window{
        font-size: 106.6667px;
    }
}
@media only screen and (max-width: 375px), only screen and (max-device-width: 375px) {
    .bind_window{
        font-size: 100px;
    }
}
@media only screen and (max-width: 360px), only screen and (max-device-width: 360px) {
    .bind_window{
        font-size: 96px;
    }
}
@media only screen and (max-width: 320px), only screen and (max-device-width: 320px) {
    .bind_window{
        font-size: 85.3333px;
    }
}
@media only screen and (max-width: 240px), only screen and (max-device-width: 240px) {
    .bind_window{
        font-size: 64px;
    }
}  */

/* 弹框样式 */
.bind_window{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 1000;
}
.bind_window_main{
    width: 18.625rem;
    height: 11.1rem;
    background-color: #fff;
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.bind_window_main .bwm_top{
    text-align: center;
}
.bind_window_main .bwm_top h3{
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 2.25rem;
    margin-bottom: 1.3rem;
}
.bind_window_main .bwm_top p{
    font-size: 0.9375rem;
    color: #9D9D9D;
}
.bind_window .bwm_bottom{
    position: absolute;
    bottom: 0;
    width: 100%;
}
.bind_window .bwm_bottom a{
    box-sizing: border-box;
    width: 50%;
    display: inline-block;
    float: left;
    text-align: center;
    height: 3rem;
    line-height: 3rem;
    border-top: 1px solid #e6e6e6;
    font-size: 1rem;
    color: #ff9000;
}
.bind_window .bwm_bottom .left{
    border-right: 1px solid #e6e6e6;
    color: #9d9d9d;
}

/* 账号合并成功 */
.bind_success_bg{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    top: 0;
    z-index: 2000;
    display: none;
}
.bind_true{
    width: 5.5rem;
    height: 2.5rem;
    background-color: #ff9000;
    color: #fff;
    line-height: 2.5rem;
    border-radius: 30px;
    margin: 0 auto;
}
.bind_success{
    width: 10.1rem;
    height: 8.6rem;
    border-radius: 10px;
    background-color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    text-align: center;
    line-height: 3.1875rem;
}
.bind_success p{
    font-size: 1.0625rem;    
}

/* 账号合并失败 */
.bind_fail{
    /* width: 15.5rem; */
    height: 3.1875rem;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.82);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    text-align: center;
    line-height: 3.1875rem;
    display: none;
    padding: 0 2.2rem;
}
.bind_fail p{
    font-size: 1.0625rem;    
}