@CHARSET "UTF-8"; 

/* ============================================
   现代化登录页面样式
   ============================================ */

/* 基础样式重置 */
body {
    margin: 0;
    padding: 0;
    min-width: 1200px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    min-height: 100vh;
    position: relative;
}

/* 登录页面主容器 - 只有登录注册页面使用蓝色背景 */
.wst-login-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:  linear-gradient(90deg,#7170BC 0%,#3a38b3 100%);
}

/* 顶部导航栏 */
.wst-login-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.wst-header-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.wst-logo-section {
    display: flex;
    align-items: center;
}

.wst-logo-link {
    display: inline-block;
    text-decoration: none;
}

.wst-logo-img {
    max-height: 50px;
    width: auto;
    display: block;
}

.wst-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wst-register-text {
    color: #666;
    font-size: 14px;
}

.wst-register-btn {
    display: inline-block;
    padding: 10px 24px;
    background:  linear-gradient(90deg,#7170BC 0%,#3a38b3 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.wst-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

/* 主内容区域 */
.wst-login-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.wst-login-container {
    width: 1200px;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* 左侧装饰区域 */
.wst-login-left {
    color: #fff;
    padding: 40px;
}

.wst-left-content {
    max-width: 500px;
}

.wst-welcome-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.wst-welcome-desc {
    font-size: 18px;
    margin: 0 0 50px 0;
    opacity: 0.9;
    line-height: 1.6;
}

.wst-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wst-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.wst-feature-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.wst-feature-text h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
}

.wst-feature-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.5;
}

/* 右侧登录卡片 */
.wst-login-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wst-login-card {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wst-login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

/* 标签页样式 */
.wst-tab-box {
    width: 100%;
    overflow: hidden;
}

.wst-tab-nav {
    width: 100%;
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    background: #fafafa;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wst-tab-nav li {
    flex: 1;
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.wst-tab-nav li:hover {
    color:  #7170BC ;
    background: rgba(74, 144, 226, 0.05);
}

.wst-tab-nav li.on {
    color:  #7170BC ;
    border-bottom-color:  #7170BC ;
    background: #fff;
    font-weight: 600;
}

.wst-tab-content {
    padding: 40px;
}

.wst-tab-item {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 表单样式 */
.wst-form-group {
    margin-bottom: 24px;
}

.wst-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 56px;
}

.wst-input-wrapper:focus-within {
    border-color:  #7170BC ;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.wst-input-icon {
    width: 24px;
    height: 24px;
    margin: 0 16px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.wst-input-wrapper:focus-within .wst-input-icon {
    opacity: 1;
}

.wst-input-icon.login-img {
    background: url(../img/icon_name.png) no-repeat center;
    background-size: contain;
}

.wst-input-icon.password-img {
    background: url(../img/icon_passard.png) no-repeat center;
    background-size: contain;
}

.wst-input-icon.yanzheng-img {
    background: url(../img/icon_yanzhengma.png) no-repeat center;
    background-size: contain;
}

/* 输入框样式 */
input.wst-login-input-1 {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 15px;
    outline: none;
    height: 100%;
    color: #333;
}

input.wst-login-input-1::placeholder {
    color: #999;
}

/* 验证码输入组 */
.wst-verify-wrapper {
    height: auto;
    min-height: 56px;
    padding: 0;
    background: transparent;
    border: 0;
}

.wst-verify-wrapper:focus-within {
    border: 0;
    box-shadow: none;
}

.wst-verify-input-group,
.wst-login-code-1 {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 91%;
    height: 56px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0 16px;
    transition: all 0.3s ease;
}

.wst-verify-input-group:focus-within,
.wst-login-code-1:focus-within {
    border-color:  #7170BC ;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.wst-verify-input-group .wst-input-icon,
.wst-login-code-1 .wst-input-icon {
    margin: 0;
    margin-right: 12px;
}

input.wst-regist-codemo,
input.wst-login-codein-1 {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 15px;
    outline: none;
    height: 100%;
    color: #333;
}

input.wst-regist-codemo::placeholder,
input.wst-login-codein-1::placeholder {
    color: #999;
}

/* 验证码图片 */
.wst-login-codeim-1 {
    width: 120px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.wst-login-codeim-1:hover {
    border-color:  #7170BC ;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
}

/* 短信验证码按钮 */
.wst-sms-btn,
.wst-regist-obtain {
    padding: 0 16px;
    height: 40px;
    background:  linear-gradient(90deg,#7170BC 0%,#3a38b3 100%);
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
}

.wst-sms-btn:hover,
.wst-regist-obtain:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.wst-sms-btn:disabled,
.wst-regist-obtain:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 表单选项 */
.wst-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.wst-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.wst-login-ch {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    accent-color:  #7170BC ;
}

.wst-checkbox-text {
    color: #666;
}

.wst-form-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wst-link {
    color:  #7170BC ;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.wst-link:hover {
    color: #357abd;
    text-decoration: underline;
}

.wst-link-divider {
    color: #ddd;
}

/* 登录按钮 */
.wst-submit-group {
    margin-top: 32px;
    margin-bottom: 0;
}

.wst-login-but {
    display: block;
    width: 100%;
    height: 56px;
    line-height: 56px;
    text-align: center;
    background:  linear-gradient(90deg,#7170BC 0%,#3a38b3 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 0;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    letter-spacing: 1px;
}

.wst-login-but:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

.wst-login-but:active {
    transform: translateY(0);
}

/* 二维码登录样式 */
.qrcode-main {
    text-align: center;
    padding: 20px 0;
}

.qrcode-img {
    width: 220px;
    height: 220px;
    margin: 0 auto 24px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qrcode-img img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
}

.qrcode-tip {
    font-size: 15px;
    color: #666;
    margin: 0 0 30px 0;
}

.qrcode-app-name {
    color:  #7170BC ;
    font-weight: 600;
}

.qr-coagent {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.qr-coagent li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.qr-coagent li i {
    width: 24px;
    height: 24px;
    background: url(../img/qr-coagent.png) no-repeat;
    background-size: contain;
}

.qr-coagent li .faster {
    background-position: -27px 0;
}

.qr-coagent li .more-safe {
    background-position: -54px 0;
}

.qr-coagent li em {
    font-style: normal;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .wst-login-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .wst-login-left {
        text-align: center;
        padding: 20px;
    }
    
    .wst-welcome-title {
        font-size: 36px;
    }
    
    .wst-features {
        align-items: center;
    }
}

@media (max-width: 768px) {
    body {
        min-width: auto;
    }
    
    .wst-header-container {
        width: 100%;
        padding: 0 20px;
    }
    
    .wst-login-container {
        width: 100%;
        padding: 0 20px;
    }
    
    .wst-login-card {
        max-width: 100%;
    }
    
    .wst-tab-content {
        padding: 30px 20px;
    }
    
    .wst-welcome-title {
        font-size: 28px;
    }
}

/* 保留原有样式以兼容其他页面 */
.wst-login_l {
    width: 1200px;
    height: 525px;
    margin: 0 auto;
}

.wst-login_l_shop {
    width: 99.9%;
    height: 475px;
}

.wst-login_r {
    margin-top: 3%;
    background: white;
    padding-bottom: 10px;
}

input.wst-login-input {
    padding: 0px;
    padding-left: 5px;
    font-size: 15px;
    outline: none;
    width: 300px;
    height: 36px;
    border: 1px solid #eee;
}

input.wst-regist-input {
    height: 50px;
    padding: 2px;
    font-size: 16px;
    outline: none;
    border: 1px solid #eee;
    border-radius: 5px;
    text-indent: 10px;
}

.wst-login-input:focus,
.wst-regist-input:focus,
.wst-login-codein:focus,
.wst-regist-codein:focus {
    border: 1px solid #eb654a;
}

.wst-table {
    color: #666;
    font: 12px/150% "Hiragino Sans GB", "Microsoft Yahei", arial, 宋体, "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
    margin: 0 auto;
}

.wst-login-tr {
    height: 50px;
}

.wst-login-tr .wst-login-input {
    width: 180px;
}

.wst-login-code,
.wst-regist-code {
    height: 36px;
    border: 1px solid #eee;
}

input.wst-login-codein,
input.wst-regist-codein {
    padding: 0px;
    padding-left: 5px;
    width: 180px;
    height: 36px;
    position: absolute;
    font-size: 15px;
    outline: none;
    border: 0;
}

.wst-item {
    position: relative;
    margin-bottom: 20px;
}

.wst-item-box {
    border: 1px solid #eee;
    height: 50px;
    line-height: 50px;
    width: 300px;
    margin: 20px auto;
    border-radius: 8px;
}

/* 注册相关样式 */
.wst-regist {
    padding: 35px 20px 50px 20px;
}

.wst-regist-b {
    margin-top: 3px;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}

.wst-regist-c {
    width: 448px;
    margin: 0 auto;
    padding: 35px;
    border-radius: 20px;
    border: 1px #eee solid;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.wst-regist-c:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.wst-regist-head {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2;
    color: #1a1a1a;
    text-align: center;
}

input.wst-regist-input {
    width: 410px;
}

.wst-regist-td {
    text-align: left;
    width: 150px;
    font-size: 16px;
    color: #626262;
}

.wst-regist-code-1 {
    margin-left: 20px;
}

input.wst-regist-codein {
    width: 150px;
}

.wst-regist-codeim {
    margin-left: 288px;
}

.wst-regist-but {
    outline: none;
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 2px;
}

.wst-regist-but:hover {
    background: #1a1a1a;
}

.wst-regist-but:not(.disabled):not(:disabled):active,
.wst-regist-but.active {
    background: #1a1a1a;
    background-clip: padding-box;
}

/* 找回密码样式 */
.stepflex {
    border-top: 5px solid #f1f1f1;
    text-align: center;
    width: 640px;
    margin: 60px auto 50px;
}

.stepflex dl {
    border-top: 5px solid #f1f1f1;
    float: left;
    position: relative;
    top: -5px;
    width: 160px;
}

dl.doing {
    border-top-color: #04bd3d;
}

.doing .s-num {
    background-position: -23px 0;
}

.s-num,
.s-num1 {
    color: #fff;
    font-weight: 700;
    height: 23px;
    line-height: 23px;
    margin: -15px auto 0;
    position: relative;
    width: 23px;
    border-radius: 25px;
}

.s-num {
    background: #04bd3d;
}

.s-num1 {
    background: #f1f1f1;
}

.s-text {
    line-height: 30px;
}

.forget-pwd {
    width: 750px;
    margin: 50px auto 50px;
    padding: 25px 0px 48px 0px;
    border: 1px solid #bac4c3;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

input.wst-forget-input {
    margin: 0 0 0 20px;
    padding-left: 5px;
    font-size: 15px;
    outline: none;
    width: 300px;
    height: 36px;
    border-radius: 3px;
    border: 1px solid #bac4c3;
}

.wst-forget-code,
.wst-forget-code2 {
    float: left;
    width: 300px;
    height: 36px;
    border-radius: 3px;
    margin-left: 20px;
    border: 1px solid #bac4c3;
}

input.wst-forget-codein,
input.wst-forget-codein2 {
    padding: 0px;
    padding-left: 5px;
    width: 180px;
    height: 36px;
    position: absolute;
    font-size: 15px;
    outline: none;
    border: 0;
    border-radius: 6px;
}

.wst-forget-input:focus,
.wst-forget-codein:focus,
.wst-forget-codein2:focus {
    border-radius: 3px;
    border: 1px solid #eb654a;
}

.wst-forget-codeim,
.wst-forget-codeim2 {
    width: 116px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    margin-left: 183px;
}

.wst-forget-code2 {
    width: 230px;
}

input.wst-forget-codein2 {
    width: 120px;
}

.wst-forget-codeim2 {
    width: 112px;
    margin-left: 118px;
}

.email-verify {
    display: none;
}

.wst-forget-td {
    text-align: right;
    width: 160px;
    font-size: 15px;
    color: #626262;
}

.wst-forget-te {
    margin-left: 20px;
    font-size: 15px;
}

.wst-forget-select {
    margin-left: 20px;
    font-size: 15px;
    outline: none;
    width: 230px;
    height: 36px;
    border-radius: 3px;
    border: 1px solid #bac4c3;
}

.wst-forget-obtain {
    width: 134px;
    height: 36px;
    background: #f0efef;
    border-radius: 3px;
    border: 1px solid #d3c8c7;
    padding: 10px 0px;
    cursor: pointer;
    color: #110f0f;
}

.wst-forget-c {
    text-align: center;
}

.wst-forget-ct {
    font-size: 16px;
    color: #2d2727;
}

.wst-register_r .wst-tab-box {
    overflow: hidden;
    text-align: center;
}

.wst-register_r .wst-tab-nav {
    width: 100%;
    margin: 0px auto;
    overflow: hidden;
}

.wst-register_r .wst-tab-nav li {
    min-width: 32.5%;
    margin: 0px auto;
    padding: 20px 0px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
    cursor: pointer;
}

.wst-register_r .wst-tab-nav li:after {
    content: "|";
    float: right;
    color: #ccc;
    font-weight: normal;
}

.wst-register_r .wst-tab-nav li:last-child:after {
    content: "";
}

.wst-register_r .wst-tab-nav .on {
    color: #E45050;
    font-weight: bold;
}

/* 消息提示框样式 */
.n-default .n-left,
.n-default .n-right {
    margin-top: 18px;
    position: absolute;
}

.n-default .msg-wrap {
    position: absolute;
   /* left: 300px; */
    /* top: -17px; */
}

.wst-login-code-1 .msg-box {
    top: 0px;
    left: 180px;
}

/* Footer样式 */
.wst-footer {
    width: 100%;
    /*background: #000;*/
    backdrop-filter: blur(10px);
    padding: 30px 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.wst-footer .wst-container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.wst-footer-hp-ck3 {
    text-align: center;
}

.wst-footer .links {
    margin-bottom: 15px;
}

.wst-footer .links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.wst-footer .links a:hover {
    color:  #7170BC ;
}

.wst-footer .copyright {
    color: #999;
    font-size: 12px;
    line-height: 1.8;
}

.wst-clear {
    clear: both;
}

/* ============================================
   注册页面样式
   ============================================ */

/* 注册页面容器 */
.wst-regist-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.wst-regist-card {
    width: 100%;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
}

.wst-regist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

/* 注册标题 */
.wst-regist-head {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    padding: 40px 40px 30px;
    margin: 0;
    letter-spacing: 1px;
}

/* 注册表单标签 */
.wst-form-label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.wst-required {
    color: #ff4757;
    margin-right: 4px;
}

/* 注册输入框现代化样式 */
.wst-regist-input-modern {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 15px;
    outline: none;
    height: 100%;
    color: #333;
    width: 100%;
}

.wst-regist-input-modern::placeholder {
    color: #999;
}

/* 注册按钮现代化样式 */
.wst-regist-but-modern {
    display: block;
    width: 100%;
    height: 56px;
    line-height: 56px;
    text-align: center;
    background:  linear-gradient(90deg,#7170BC 0%,#3a38b3 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 0;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    letter-spacing: 1px;
    margin-top: 10px;
}

.wst-regist-but-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

.wst-regist-but-modern:active {
    transform: translateY(0);
}

/* 注册页面标签页样式 */
.wst-register_r .wst-tab-box {
    width: 100%;
    overflow: hidden;
}

.wst-register_r .wst-tab-nav {
    width: 100%;
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    background: #fafafa;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wst-register_r .wst-tab-nav li {
    flex: 1;
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.wst-register_r .wst-tab-nav li:hover {
    color:  #7170BC ;
    background: rgba(74, 144, 226, 0.05);
}

.wst-register_r .wst-tab-nav li.on {
    color:  #7170BC ;
    border-bottom-color:  #7170BC ;
    background: #fff;
    font-weight: 600;
}

.wst-register_r .wst-tab-content {
    padding: 40px;
}

/* 注册页面表单选项 */
.wst-register_r .wst-form-options {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    flex-wrap: wrap;
}

.wst-register_r .wst-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.wst-register_r .wst-checkbox-text {
    color: #666;
    margin-right: 4px;
}

/* 注册页面验证码区域特殊处理 */
.wst-register_r .wst-verify-wrapper .wst-login-code-1 {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 93%;
    height: 56px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0 16px;
    transition: all 0.3s ease;
}

.wst-register_r .wst-verify-wrapper .wst-login-code-1:focus-within {
    border-color:  #7170BC ;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.wst-register_r .wst-verify-wrapper .wst-login-code-1 .wst-input-icon {
    margin: 0;
    margin-right: 12px;
}

.wst-register_r .wst-verify-wrapper .wst-login-code-1 input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 15px;
    outline: none;
    height: 100%;
    color: #333;
}

.wst-register_r .wst-verify-wrapper .wst-login-code-1 .wst-login-codeim-1 {
    width: 120px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.wst-register_r .wst-verify-wrapper .wst-login-code-1 .wst-login-codeim-1:hover {
    border-color:  #7170BC ;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
}

/* 兼容旧版注册样式 */
.wst-login-banner-regist {
    display: none;
}

.wst-regist-b {
    display: none;
}

/* 确保注册页面表格样式不影响新布局 */
.wst-register_r .wst-table {
    display: none;
}

.wst-register_r .wst-login-tr {
    display: none;
}

.wst-register_r .wst-regist-td {
    display: none;
}

/* 响应式设计 - 注册页面 */
@media (max-width: 768px) {
    .wst-regist-container {
        padding: 0 15px;
    }
    
    .wst-regist-card {
        border-radius: 16px;
    }
    
    .wst-regist-head {
        font-size: 24px;
        padding: 30px 20px 20px;
    }
    
    .wst-register_r .wst-tab-content {
        padding: 30px 20px;
    }
}
