.loginWrapper{
    width: 100%;
    height: 100%;
    background: #EEF5FF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loginArea{
    width: 1200px;
    height: 640px;
    background: #FFFFFF;
    box-shadow: 0px 3px 5px 0px rgba(209,217,236,0.5);
    border-radius: 20px;
    display: flex;
}
.loginAreaLeft{
    width: 700px;
    height: 100%;
    position: relative;
}
    .loginAreaLeft p {
        position: absolute;
        top: 33px;
        left: 40px;
        color: #FFFFFF;
        font-weight: 600;
        font-size: 32px;
    }
.loginAreaLeft img{
    width: 100%;
    height: 100%;
}
.loginAreaRight{
    flex: 1;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loginOuter{
    width: 420px;
    height: 516px;
    border-radius: 10px;
    border: 1px solid #EDEDED;
    padding: 40px;
}
.loginWmTxt{
    font-size: 28px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 30px;
}
.loginTab{
    width: 340px;
    height: 40px;
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 12px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.loginTabItem{
    width: 113px;
    height: 28px;
    border-right:1px solid #EDEDED;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 18px;
    cursor: pointer;
    position: relative;
}
.loginTabItemActive{
    color: #333333;
    font-weight: bold;
}
.loginTabItemActive::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    background: #E75D53;
    border-radius: 2px;
    width: 100%;
    left: 0;
    bottom: -12px;
}
.loginInputContent{
    margin-top: 20px;
    width: 340px;
}
.loginInputContent .title{
    font-size: 20px;
    color: #333333;
    margin-bottom: 12px;
}
.loginInputContent .layui-input{
    /* height: 40px; */
    color: #333333;
}
.loginInputContent .layui-input:focus{
    border-color: #E75D53 !important;
    box-shadow: initial !important;
}
.loginInputContent .layui-input:hover{
    box-shadow: initial !important;
}
.loginInputContent .layui-input::placeholder{
    color: #C0C4CC;
    font-size: 14px;
}
.confirmBox{
    width: 100%;
    height: 40px;
    background: #E75D53;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 90px;
}