@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ty_overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
}

.ty_overlay .ty_login_box {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -300px;
    margin-top: -250px;
    width: 588px;
    height: 320px;
    text-align: center;
    background: #fff;
    display: none;
    overflow: hidden;
}

.ty_overlay .ty_login_box iframe {
    border: none;
    width: 400px;
    height: 419px;
}

.ty_overlay .ty_login_box .pop_close {
    position: absolute;
    top: 1px;
    right: -46px;
}

.ty_overlay .ty_area_box {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -250px -250px;
    padding: 0 50px;
    height: 250px;
    background: #fff;
    border-radius: 5px;
    display: none;
}

.ty_overlay .ty_area_box .area_content {
    width: 400px;
    font-size: 16px;
    border-radius: 25px;
    margin: 0 auto;
}

.ty_overlay .ty_area_box .area_content h3 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
    background: none;
    color: #f39700;
    text-align: center;
    height: 80px;
    font-size: 36px;
    line-height: 80px;
    margin-top: 10px;
}

.ty_overlay .ty_area_box .area_content .area_select {
    width: 380px;
    height: 45px;
    line-height: 60px;
    padding-left: 10px;
    margin: 0 auto 15px auto;
    display: block;
    font-size: 18px;
    color: #666;
}

.ty_overlay .ty_area_box .area_content .area_role {
    width: 380px;
    height: 45px;
    line-height: 60px;
    padding-left: 10px;
    margin: 0 auto 15px auto;
    display: block;
    font-size: 18px;
    color: #f39700;
}

.ty_overlay .ty_area_box .area_content .btn_confirm_area {
    text-decoration: none;
    cursor: pointer;
    float: left;
    width: 180px;
    margin: 15px 10px;
    line-height: 45px;
    font-size: 24px;
    background: #f39700;
    border-radius: 5px;
    display: block;
    color: #ffffff;
    text-align: center;
}

.ty_overlay .ty_area_box .area_content .btn_cancel_area {
    text-decoration: none;
    cursor: pointer;
    float: left;
    width: 180px;
    margin: 15px 10px;
    line-height: 45px;
    font-size: 24px;
    background: #999;
    border-radius: 5px;
    display: block;
    color: #ffffff;
    text-align: center;
}

@media (max-width:750px) {
    .ty_login_box {
        left: 0 !important;
        right: 0 !important;
        width: 95% !important;
        margin: -225px auto !important;
    }
    .ty_overlay .ty_login_box iframe {
        width: 90% !important;
    }
    .ty_overlay .ty_login_box .pop_close {
        top: -35px !important;
        right: 5px !important;
    }
}