
.sm_login_methods_switch_btn{
    position: absolute;
    top: 0;
    right: 0;
    box-sizing: border-box;
    width: 0;
    height: 0;
    border-top: 90px solid red;
    border-left: 90px solid transparent;
}

.sm_wx_login_tip_icon{
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.sm_wx_login_tip_text{
    font-size: 12px;
    color: #333333;
    line-height: 24px;
    margin-bottom: 11px;
}

.sm_wx_login_tip_text_2{
    font-size: 12px;
    color: #8c8c8c;
    margin-top: 60px;
    width: 290px;
    height: 40px;
    background-color: #edf2ff;
    border-radius: 3px;
    line-height: 40px;
    text-align: center;
}

.sm_wx_login_tip_text_2 > span{
    color: #5D6BE8;
    cursor: pointer;
}

.sm_wx_login_tip_text_3{
    font-size: 12px;
    cursor: pointer;
    color: #8c8c8c;
    margin-top: 12px;
}

.sm_login_switch_btn_to_wx_icon{
    position: absolute;
    top: -2px;
    right: -3px;
    width: 72px;
    border-top-right-radius: 43px;
    cursor: pointer;
}

.sm_login_container{
    padding-left: 57px;
    padding-right: 57px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    width: 440px;
}

.sm_switch_account_list{
    box-sizing: border-box;
    height: 320px;
    overflow: auto;
    margin-top: 16px;
}

.bd-layer::-webkit-scrollbar {
    width: 4px;
}

.bd-layer::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

.bd-layer::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}

.sm_switch_account_item{
    width: 100%;
    height: 100px;
    background-color: #edf2ff;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 16px 12px;
    position: relative;
    margin-bottom: 10px;
}

.sm_switch_account_item_col_1{
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 7px;
    width: 200px;
}

.sm_switch_account_item_col_2{
    font-size: 12px;
    color: #999999;
    margin-bottom: 7px;
    width: 200px;
}

.sm_switch_account_item_col_3{
    font-size: 14px;
    color: #606266;
    display: flex;
    align-items: center;
}

.sm_switch_account_item_col_3 > span{
    max-width: 95px;
}

.sm_switch_account_item_col_3 > span:nth-child(1) {
    margin-right: 10px;
}

.sm_switch_account_item_col_icon{
    height: 13px;
}

.sm_switch_account_btn{
    width: 94px;
    height: 33px;
    background-color: #5d6be8;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    line-height: 33px;
    position: absolute;
    top: 34px;
    right: 16px;
}

.common_text_limit_1{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    word-break: break-all;

}

.common_text_limit_1_s{
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
    word-break: break-all;
}

.common_text_limit_2_s{
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    word-break: break-all;

}

.sm_layer_box{
    display: none;
    box-sizing: border-box;
    padding: 24px;
    padding-bottom: 0;
}

.lyx_popup_var_send{
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: transparent;
    border: none;
    font-size: 12px;
    text-align: left;
    color: #5d6be8;
    line-height: 22px;
}

.sm_register_checkbox{
    box-sizing: border-box;
    border: 1px solid #D1D2D4;
    border-radius: 1px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.sm_register_checkbox_active{
    width: 4px;
    height: 8px;
    border-color: #6565fb;
    border-style: solid;
    border-width: 0 2px 3px 0;
    transform: rotate(45deg);
    position: relative;
    left: 4px;
}

.lyx-register-check{
    display: flex;
    align-items: center;
}

.sm_select_dis{
    user-select: none;
}

.sm_register_agr {
    color: #4B484C;
    font-size: 12px;
    vertical-align: 1px;
    cursor: pointer;
}

.sm_register_agr_link {
    cursor: pointer;
    color: #3291FD;
    font-size: 12px;
    vertical-align: 1px;
}

.sm_popup_box{
    position: fixed;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);

    top: 0;
    left: 0;
}

/* 弹窗的动画开始 */
.sm_popup_box_open {
    -webkit-animation: fadeleftIn .4s;
    animation: fadeleftIn .4s;
    -webkit-animation-name: popIn;
    animation-name: popIn;
}

@-webkit-keyframes popIn {
    0% {
        -webkit-transform: scale3d(0, 0, 0);
        transform: scale3d(0.5, 0.5, 0.5);
        opacity: 0;
    }
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
        animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        -webkit-transform: scale3d(0, 0, 0);
        transform: scale3d(0.5, 0.5, 0.5);
        opacity: 0;
    }
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
        animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 1;
    }
}

.sm_popup_box_hide {
    -webkit-animation: fadeleftIn .5s;
    animation: fadeleftIn .5s;
    -webkit-animation-name: noPopIn;
    animation-name: noPopIn;
}

@-webkit-keyframes noPopIn {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale3d(0, 0, 0);
        transform: scale3d(0, 0, 0);
        opacity: 0;
    }
}

@keyframes noPopIn {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale3d(0, 0, 0);
        transform: scale3d(0, 0, 0);
        opacity: 0;
    }
}
/* 弹窗的动画结束 */

.sm_popup_content{
    background-color: #fff;
    /*padding: 40px;*/
    box-sizing: border-box;
    /*width: 360px;*/
    /*height: 278px;*/
    position: absolute;
    top: 0;
    bottom: 0;
    /* 为了不让页面出现滚动条，右侧区域空出了30个像素 */
    /*left: -30px;*/
    right: 0;
    margin: auto;
    border-radius: 6px;

    width: 382px;
    height: 264px;
    left: -393px;
    right: 0;
}

.sm_popup_btn{
    height: 40px;
    width: 280px;
    background-color: #6565FB;
    box-sizing: border-box;
    color: #fff;
    border: none;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
    cursor: pointer;
}

.sm_popup_btn:hover{
    background-color: #6E7AEA;
}

.sm_popup_btn:active{
    background-color: #6E7AEA;
}

.sm_popup_input{
    height: 40px;
    width: 280px;
    border: 1px solid #E1E1E1;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
    padding-left: 16px;
    padding-right: 100px;
}

.sm_popup_item{
    width: 280px;
}

.sm_popup_var_box{
    position: relative;
}

.sm_popup_var_send{
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: 10px;
    color: #0080FF;
    font-size: 14px;
    background-color: transparent;
    border: none;
}

.sm_popup_var_send::before{
    content: "";
    width: 1px;
    height: 20px;
    background-color: #E7E7E7;
    position: absolute;
    left: -10px;
}

.sm_phone_var_title{
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}

.sm_target_phone{
    font-size: 14px;
    text-align: center;
}

.sm_popup_box_close{
    color: #D2D2D2;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    user-select: none;
}

.clear_fix::after,.clear_fix::before{
    content: "";
    display: table;
    clear: both;
}

.sm_wx_login_left_phone_icon{
    float: left;
    width: 86px;
    margin-left: 20px;
    margin-right: 28px;
}

.sm_wx_login_right_area{
    float: left;
}

.sm_login_wx_code_iframe_box{
    position: absolute;
    height: 230px;
    width: 278px;
    pointer-events: none;
}

.sm_login_wx_code_iframe_box iframe{
    width: 100%;
    height: 100%;
}

.wx_bind_area_skin .layui-layer-btn0{
    background-color: transparent !important;
    border: none !important;
    color: #5D6BE8 !important;
    font-size: 14px;
    cursor: pointer;
}


.login_project_tab{
    display: flex;
}

.login_project_tab_switch{
    opacity: 0.4;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    transition: all 0.1s;
    flex: 1;
    text-align: center;
    line-height: 44px;
    cursor: pointer;
}

.login_project_tab_active{
    font-size: 24px;
    opacity: 1;
    position: relative;
}

.login_project_tab_active::after{
    content: "";
    width: 40px;
    height: 2px;
    background-color: #5d6be8;
    display: block;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    position: absolute;
}