@charset "utf-8";
*{
    margin: 0;
    padding: 0;
}
img{
    display: block;
    border: 0;
}
li{
    list-style: none;
}
a{
    text-decoration:none;
}
:root {
    --color-primary: #1976d2;
}
html{
    height: 100%;
    font-size: 100px;
   
}
body{
    height: 100%;
    font-size: 14px;
    font-family: 'Poppins-Regular';
}
#main{
    height: 100%;
    background: linear-gradient(135deg, #e3f2fd 0%, #f5f5f5 100%);
    min-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    min-height: 100vh;
}
.puture-wrap{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.8);
    height: 90%;
}
.puture-left{
    flex: 0 0 45%;
    padding: 80px 60px;
    background: linear-gradient(135deg, #2196f3 0%, var(--color-primary) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    height: 100%;
}
.puture-left-yaber{
    padding-left: 2%;
    min-width: 50%;
    padding-right: 5%;
}
.brand-logo {
    margin-bottom: 40px;
}

.brand-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.4;
}

.content-text {
    text-align: left;
    max-width: 320px;
    width: 100%;
}

.content-text .login-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.content-text .describe p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 17px;
    margin-bottom: 20px;
    padding: 0;
    font-weight: 500;
}

.content-text .details p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 0;
    padding: 0;
    font-weight: 400;
}
#tip{
    transform: translateX(-50%);
    min-width: 300px;
}
.puture-right{
    flex: 0 0 55%;
    padding: 80px 60px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f5f5f5 100%);
    height: 100%;
    overflow-y: auto;
}
.login-box .login-title{
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.login-box .yaber-login-title{
    height: 96px;
    line-height: 96px;
    background-color: #EE9F49;
    font-size: 36px;
    padding:0 4%;
    color: #FFFFFF;
    text-align: center;
}
.form-box{
    background-color: #ffffff;
    width: 100%;
    max-width: 480px;
    padding: 40px 36px;
    border-radius: 28px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.9);
    margin-top: 0;
    position: relative;
}

/* 当有Country字段时，调整表单容器 */
.form-box:has(.pcountry) {
    padding: 44px 40px;
    max-width: 500px;
}

@supports not selector(:has(*)) {
    /* 为不支持:has()的浏览器提供备用样式 */
    .form-box {
        padding: 44px 40px;
        max-width: 500px;
    }
}
.describe p{
    color: #424242;
    line-height: 1.6;
    font-size: 17px;
    margin-bottom: 20px;
    padding: 0;
    text-align: center;
    font-weight: 500;
}
.details p{
    color: #757575;
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 40px;
    padding: 0;
    text-align: center;
    font-weight: 400;
}
.form-item-box{
    padding: 0;
}
.form-item-box .control-label{
    color: #424242;
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.form-item-box #p-sumbit{
    height: 60px;
    background: linear-gradient(135deg, #2196f3 0%, var(--color-primary) 100%);
    margin-top: 32px;
    line-height: 60px;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.35);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.form-item-box #p-sumbit:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2196f3 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(33, 150, 243, 0.4);
}

.form-item-box #p-sumbit:active {
    transform: translateY(1px);
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.6);
}
.form-item-box .p-sumbit-yaber{
    background: #EE9F49 !important;
}
.m-sumbit-yaber{
    background: linear-gradient(135deg, #EE9F49 0%, #D4841A 100%) !important;
    box-shadow: 0 0.08rem 0.24rem rgba(238, 159, 73, 0.4) !important;
}

.m-sumbit-yaber:active {
    transform: translateY(0.04rem);
    box-shadow: 0 0.04rem 0.16rem rgba(238, 159, 73, 0.6) !important;
}

.m-sumbit-yaber:hover {
    background: linear-gradient(135deg, #D4841A 0%, #EE9F49 100%) !important;
    transform: translateY(-0.02rem);
    box-shadow: 0 0.12rem 0.32rem rgba(238, 159, 73, 0.5) !important;
}
#main-m{
    height: 100%;
    display: none;
}
.puture-wrap-m{
    height: 100%;
}
.loading{
    width: 0.32rem;
    height: 0.32rem;
    line-height: 56px;
    margin-left: 0.08rem;
}
.loading-box{
    display: none;
    align-items: center;
}
.pop-up-box{
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.36);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}
@media screen and (max-width:1024px){
    #main-m {
        display:block;
    }
    .pop-up-box{
        display: block;
    }
    #main {
        display:none;
    }
    
    /* 移动端表单样式 */
    .form-item-box-m .form-group {
        margin-bottom: 0.4rem;
    }
    
    .form-item-box-m .control-label {
        color: #424242;
        font-size: 0.28rem;
        font-weight: 500;
        margin-bottom: 0.12rem;
        display: block;
    }
    
    .form-item-box-m .form-control {
        height: 0.96rem;
        border: 0.02rem solid #e0e0e0;
        border-radius: 0.16rem;
        padding: 0.24rem 0.32rem;
        font-size: 0.28rem;
        background-color: #fafafa;
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
        box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.04);
    }
    
    .form-item-box-m .form-control:focus {
        border-color: #2196f3;
        box-shadow: 0 0 0 0.08rem rgba(33, 150, 243, 0.12);
        background-color: #ffffff;
        outline: none;
        transform: translateY(-0.02rem);
    }
    
    .form-item-box-m .form-control::placeholder {
        color: #9e9e9e;
        font-size: 0.26rem;
    }
    
    .form-item-box-m .help-block {
        color: #757575;
        font-size: 0.22rem;
        margin-top: 0.12rem;
        line-height: 0.32rem;
    }
}
.puture-wrap-m{
    height: 100%;
}
.login-box-m{
    padding: 0.4rem 0.4rem 1.2rem 0.4rem;
    position: relative;
    background: linear-gradient(135deg, #e3f2fd 0%, #f5f5f5 100%);
    min-height: 100vh;
}

.product-showcase-m {
    position: relative;
    margin-bottom: 0.8rem;
    margin-inline: -0.4rem;
    margin-top: -1.4rem;
    overflow: hidden;
    box-shadow: 0 0.16rem 0.64rem rgba(0, 0, 0, 0.12);
}
.showcase-image-m {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.32rem;
}
.showcase-text-m {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 0.3rem 0.32rem 0.32rem;
    text-align: center;
    backdrop-filter: blur(3px);
}

.showcase-text-m h2 {
    font-size: 0.36rem;
    font-weight: 600;
    margin: 0 0 0.16rem 0;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.showcase-text-m p {
    font-size: 0.24rem;
    margin: 0;
    line-height: 1.4;
    opacity: 1;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.form-box-m {
    background: #ffffff;
    border-radius: 0.32rem;
    padding: 0.48rem;
    margin-top: 0.4rem;
    box-shadow: 0 0.16rem 0.64rem rgba(0, 0, 0, 0.08);
    border: 0.02rem solid rgba(255, 255, 255, 0.8);
}

.login-title-m{
    font-size: 0.48rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 0.24rem;
    font-weight: 600;
    line-height: 1.3;
}

.login-title-m img {
    max-width: 2.4rem;
    height: auto;
    display: block;
    margin: 0 auto;
}

.describe-m p{
    margin-top: 0.16rem;
    line-height: 0.44rem;
    color: #424242;
    font-size: 0.28rem;
    text-align: center;
    font-weight: 500;
}

.details-m p{
    color: #757575;
    line-height: 0.4rem;
    font-size: 0.24rem;
    text-align: center;
    margin-bottom: 0.32rem;
    font-weight: 400;
}
.sumbit-m{
    height: 1.0rem;
    line-height: 1.0rem;
    color: #ffffff;
    font-size: 0.32rem;
    font-weight: 600;
    position: relative;
    margin-top: 0.48rem;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #2196f3 0%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.16rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 0.12rem 0.32rem rgba(33, 150, 243, 0.3);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.01rem;
}

.sumbit-m:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1565c0 100%);
    transform: translateY(-0.04rem);
    box-shadow: 0 0.16rem 0.48rem rgba(33, 150, 243, 0.4);
}

.sumbit-m:active {
    transform: translateY(0.02rem);
    box-shadow: 0 0.08rem 0.24rem rgba(33, 150, 243, 0.5);
}
.loading-m{
    width: 0.4rem;
    height: 0.4rem;
    line-height: 56px;
    margin-left: 0.08rem;
}
.loading-m-box{
    display: none;
    align-items: center;
}
.help-block{
    color: #999 !important;
}
.control-label{
    display: flex;
}
.control-label::after {
    content: "*";
    display: inline-block;
    margin-left: 4px;
    line-height: 1;
    font-family: SimSun;
    font-size: 12px;
    color: #ed4014;
    font-weight: 500;
}
.form-group{
    position: relative;
    margin-bottom: 25px;
}

/* 当显示Country字段时的特殊布局优化 */
.p-form-group {
    margin-bottom: 28px;
}

.p-form-group:first-child {
    margin-bottom: 32px;
}

.p-form-group .control-label {
    font-weight: 600;
    color: #424242;
    margin-bottom: 12px;
    font-size: 15px;
    display: block;
}

.form-control {
    height: 52px;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fafafa;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    width: 100%;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #2196f3;
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.12);
    background-color: #ffffff;
    outline: none;
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: #9e9e9e;
    font-size: 14px;
}

/* 优化下拉框样式 */
select.form-control {
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

select.form-control:focus {
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%232196f3" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
}

/* Country下拉框特殊优化 */
.pcountry, .mcountry {
    background-color: #ffffff;
    border: 2px solid #e3f2fd;
    font-weight: 500;
    color: #424242;
}

.pcountry:focus, .mcountry:focus {
    border-color: #2196f3;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.12);
}

.pcountry option, .mcountry option {
    padding: 12px;
    background-color: #ffffff;
    color: #424242;
    font-size: 15px;
}
.name-box{
    display: flex;
}
.right-border{
    width: 34px;
    border: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E5E5;
    margin-left: 12px;
    cursor: pointer;
}
.man-icon{
    color: #5478FF;
}
.girl-icon{
    color: #FD64DB;
}
.sex-active{
    background-color: var(--color-primary);
}
.girl-sex-active{
    background-color: #FD64DB;
}
.sex-active-icon{
    color: #fff;
}
.form-group-left{
    width: 100%;
}
.form-group-right{
    display: flex;
}
#pname-error,#peamil-error,#porder-error,#psex-error,#pmodel-error,#p-variant-theme-error,#pcountry-error{

    color: #FF4D4F;
    position:absolute;
    top: 5px;
    right: 10px;
}
#mname-error,#meamil-error,#morder-error,#msex-error,#mmodel-error,#m-variant-theme-error,#mcountry-error{
    color: #FF4D4F;
}
.has-error .form-control{
    border-color:#FF4D4F;
}
[v-cloak] {
    display: none !important;
}
.pop-up{
    height: 5.3rem;
    position: fixed;
    width: calc(100% - 1.3rem);
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 4px;
}
input[type=checkbox]:checked:after {
    content: "";
    font-size: 12px;
    background-color: var(--color-primary);
}
        
input[type=radio] {
    margin-right: 0.35rem;
    cursor: pointer;
    width: 14px;
    height: 14px;
    position: relative;
    margin-top: -3px;
}
input[type=radio]:after {
    position: absolute;
    width: 14px;
    height: 14px;
    top: 0;
    content: " ";
    background-color: #fff;
    display: inline-block;
    visibility: visible;
    padding: 0px 3px;
    border-radius: 50%;
    border: 1px solid #BBBBBB;
}
input[type=radio]:checked:before {
    content: "";
    display: block;
    position: relative;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
    font-weight: 400;
    z-index: 1;
}
.pop-up-c{
    padding-top: 0.3rem;
    padding-left: 0.65rem;
}
.language-item{
    margin-bottom: 0.3rem;
}
.language-item label{
    display: flex;
    align-items: center;
}
.sure-select{
    position: absolute;
    bottom: 0.25rem;
    right: 0.2rem;
    margin: 0px;
}
.sure-select span{
    font-size: 0.36rem;
    color: var(--color-primary);
    padding-right: 0.3rem;
}
.el-loading-spinner{
    transform: translateY(-50%);
}
.el-loading-spinner .el-loading-text{
    padding: 0 50px;
    font-size: 14px;
}
.help-block-m{
    color: #999;
}
.is-one-department{
    margin-bottom: 20px;
}
.is-one-department img{
    width: 120px;
}