@CHARSET "UTF-8";

/* ============================================
   登录/注册页面 - 全新沉浸式绿色主题
   主色: #1AA844  浅色: #CAE6D7
   设计: 全屏背景 + 毛玻璃卡片 + CSS动画
   ============================================ */

/* ========== 全局重置（仅限登录/注册页作用域） ========== */
.wst-login-banner,
.wst-login-banner-regist {
    width: 100%;
    position: relative;
    z-index: 10;
}

/* ========== 登录页顶部导航 ========== */
.wst-login-banner {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    border-bottom: none;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.wst-login-banner .wst-icon-banner {
    width: 1200px;
    margin: 0 auto;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.wst-login-banner .img-banner {
    width: 180px;
    float: none;
}
.wst-login-banner .img-banner img {
    width: 100%;
    max-height: 45px;
    object-fit: contain;
}
.wst-login-banner .wst-right-action {
    float: none;
    height: auto;
    line-height: 70px;
    font-size: 14px;
    color: #666;
}
.wst-login-banner .wst-right-action .wst-location {
    margin-left: 10px;
    color: #1AA844;
    font-weight: bold;
    padding: 6px 18px;
    border: 2px solid #1AA844;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.4;
}
.wst-login-banner .wst-right-action .wst-location:hover {
    background: #1AA844;
    color: #fff;
    box-shadow: 0 4px 15px rgba(26,168,68,0.3);
}

/* ========== 登录页主体 - 全屏沉浸式背景 ========== */
.wst-login-middle {
    width: 100%;
    min-height: calc(100vh - 70px);
    background: linear-gradient(160deg, #0d5c2a 0%, #1AA844 35%, #23c94e 65%, #1AA844 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 背景动态渐变动画 */
.wst-login-middle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse 600px 600px at 20% 50%, rgba(202,230,215,0.25) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 500px 300px at 60% 80%, rgba(26,168,68,0.3) 0%, transparent 60%);
    animation: bgFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(1deg); }
    50% { transform: translate(-20px, 30px) rotate(-1deg); }
    75% { transform: translate(20px, 20px) rotate(0.5deg); }
}

/* 浮动装饰圆圈 */
.wst-login-middle .wst-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* 装饰粒子（通过HTML添加） */
.wst-deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.08;
}
.wst-deco-circle.c1 {
    width: 300px; height: 300px;
    background: #fff;
    top: -80px; left: -100px;
    animation: floatCircle1 15s ease-in-out infinite;
}
.wst-deco-circle.c2 {
    width: 200px; height: 200px;
    background: #CAE6D7;
    bottom: -60px; right: -50px;
    animation: floatCircle2 18s ease-in-out infinite;
}
.wst-deco-circle.c3 {
    width: 120px; height: 120px;
    background: #fff;
    top: 30%; right: 15%;
    animation: floatCircle3 12s ease-in-out infinite;
}
.wst-deco-circle.c4 {
    width: 80px; height: 80px;
    background: #CAE6D7;
    bottom: 20%; left: 10%;
    animation: floatCircle1 10s ease-in-out infinite reverse;
}
.wst-deco-circle.c5 {
    width: 160px; height: 160px;
    background: #fff;
    top: 15%; right: 40%;
    animation: floatCircle2 14s ease-in-out infinite;
}

@keyframes floatCircle1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.1); }
}
@keyframes floatCircle2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 40px) scale(0.9); }
}
@keyframes floatCircle3 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -20px); }
    66% { transform: translate(-15px, 15px); }
}

/* ========== 登录页左右分栏布局 ========== */
.wst-login_l {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 60px;
}

/* 左侧品牌展示区 */
.wst-login-brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 0;
    animation: slideInLeft 0.8s ease-out;
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}
.wst-login-brand-logo {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.wst-login-brand-logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}
.wst-login-brand h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 300;
    margin: 0 0 15px;
    letter-spacing: 2px;
    line-height: 1.3;
}
.wst-login-brand h2 strong {
    font-weight: 700;
    display: block;
}
.wst-login-brand p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin: 0 0 40px;
    max-width: 380px;
}
.wst-login-brand-features {
    display: flex;
    gap: 30px;
}
.wst-login-brand-features .feature-item {
    text-align: center;
    padding: 20px 25px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.3s ease;
    min-width: 110px;
}
.wst-login-brand-features .feature-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.wst-login-brand-features .feature-item .fi-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: rgba(202,230,215,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.wst-login-brand-features .feature-item .fi-text {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

/* 右侧登录卡片 - 毛玻璃效果 */
.wst-login_r {
    width: 440px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 45px 40px 35px;
    box-shadow:
        0 25px 80px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.3) inset;
    margin-top: 0;
    animation: slideInRight 0.8s ease-out;
    align-self: center;
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ========== 登录页 Tab 切换 ========== */
.wst-login_r .wst-tab-box {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.wst-login_r .wst-tab-nav {
    width: 100%;
    margin: 0 auto 30px;
    border-bottom: none;
    overflow: hidden;
    display: flex;
    background: #f5f8f6;
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}
.wst-login_r .wst-tab-nav li {
    flex: 1;
    margin: 0;
    padding: 10px 0;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    cursor: pointer;
    color: #888;
    transition: all 0.35s ease;
    position: relative;
    border-radius: 10px;
}
.wst-login_r .wst-tab-nav li::after {
    content: '';
    display: none;
}
.wst-login_r .wst-tab-nav li:hover {
    color: #1AA844;
}
.wst-login_r .wst-tab-nav .on {
    color: #fff;
    font-weight: bold;
    background: #1AA844;
    box-shadow: 0 4px 12px rgba(26,168,68,0.3);
    margin-bottom: 0;
}

/* ========== 登录表单输入框 ========== */
.wst-item {
    position: relative;
    margin-bottom: 20px;
}
.wst-item-box {
    border: 2px solid #e8ede9;
    height: 50px;
    line-height: 50px;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    background: #fff;
}
.wst-item-box:focus-within {
    border-color: #1AA844;
    box-shadow: 0 0 0 4px rgba(26,168,68,0.08);
}
.wst-item-box .login-img,
.wst-item-box .password-img,
.wst-item-box .yanzheng-img {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
    background: transparent;
    transition: background 0.3s ease;
}
.wst-item-box:focus-within .login-img,
.wst-item-box:focus-within .password-img,
.wst-item-box:focus-within .yanzheng-img {
    background: #CAE6D7;
}
.wst-item-box .login-img {
    background: transparent url(../img/icon_name.png) center center no-repeat;
    background-size: 45%;
}
.wst-item-box:focus-within .login-img {
    background: #CAE6D7 url(../img/icon_name.png) center center no-repeat;
    background-size: 45%;
}
.wst-item-box .password-img {
    background: transparent url(../img/icon_passard.png) center center no-repeat;
    background-size: 45%;
}
.wst-item-box:focus-within .password-img {
    background: #CAE6D7 url(../img/icon_passard.png) center center no-repeat;
    background-size: 45%;
}
.wst-item-box .yanzheng-img {
    background: transparent url(../img/icon_yanzhengma.png) center center no-repeat;
    background-size: 45%;
}
.wst-item-box:focus-within .yanzheng-img {
    background: #CAE6D7 url(../img/icon_yanzhengma.png) center center no-repeat;
    background-size: 45%;
}
input.wst-login-input-1 {
    margin: 0;
    float: none;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
    width: 100%;
    height: 50px;
    border: 0;
    background: transparent;
    color: #333;
}
input.wst-login-input-1::placeholder {
    color: #bbb;
}

/* ========== 验证码区域 ========== */
.wst-login-code-1 {
    height: 50px;
    display: flex;
    align-items: center;
    flex: 1;
}
input.wst-login-codein-1 {
    padding: 0 10px;
    width: 140px;
    height: 50px;
    position: static;
    font-size: 14px;
    outline: none;
    border: 0;
    background: transparent;
    flex-shrink: 0;
}
.wst-login-codeim-1 {
    width: 120px;
    height: 42px;
    border-radius: 8px;
    float: right;
    margin-top: 0;
    margin-left: auto;
    cursor: pointer;
    flex-shrink: 0;
    border: 1px solid #e8ede9;
}

/* ========== 记住密码/链接行 ========== */
.wst-login_r .wst-table {
    margin-top: 8px;
    margin-bottom: 20px;
    width: 100%;
    color: #999;
    font-size: 13px;
}
.wst-login_r .wst-table td {
    padding: 0;
}
.wst-login-ch {
    border: 2px solid #1AA844 !important;
    accent-color: #1AA844;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
    cursor: pointer;
    border-radius: 4px;
}
.wst-login_r .wst-table label {
    font-size: 13px;
    color: #999;
    cursor: pointer;
}
.wst-login_r .wst-table a {
    color: #1AA844;
    font-size: 13px;
    transition: color 0.3s;
}
.wst-login_r .wst-table a:hover {
    color: #158c38;
}

/* ========== 登录按钮 ========== */
.wst-item .wst-login-but {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(135deg, #1AA844 0%, #15a83e 50%, #1fbf50 100%);
    background-size: 200% 200%;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    border: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 3px;
    animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.wst-item .wst-login-but:hover {
    box-shadow: 0 8px 25px rgba(26,168,68,0.4);
    transform: translateY(-2px);
}
.wst-item .wst-login-but:active {
    transform: translateY(0);
}
.wst-item .wst-login-but:before {
    display: none;
}

/* ========== 扫码登录 ========== */
.qrcode-main {
    width: 100%;
    margin: 25px auto;
    overflow: hidden;
    text-align: center;
}
.qrcode-main .qrcode-img {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border: 3px solid #CAE6D7;
    border-radius: 16px;
    padding: 12px;
    display: inline-block;
    background: #fff;
    transition: transform 0.3s ease;
}
.qrcode-main .qrcode-img:hover {
    transform: scale(1.05);
}
.qrcode-main .qrcode-img img {
    width: 100%;
    height: 100%;
}
.qrcode-main p {
    text-align: center;
    font-size: 14px;
    color: #666;
}
.qrcode-main p span {
    color: #1AA844;
    font-weight: bold;
}
.wst-login_r .wst-tab-box .qr-coagent {
    width: 100%;
    margin: 25px auto 0;
    padding: 0;
    line-height: 25px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.wst-login_r .wst-tab-box .qr-coagent li {
    float: none;
    text-align: center;
    position: relative;
    height: 25px;
    width: auto;
}
.wst-login_r .wst-tab-box .qr-coagent li i {
    width: 25px;
    height: 25px;
    display: block;
    background: url(../img/qr-coagent.png) no-repeat;
    position: relative;
    left: auto;
    margin: 0 auto 5px;
}
.wst-login_r .wst-tab-box .qr-coagent li em {
    font-style: normal;
    padding-left: 0;
    font-size: 12px;
    color: #999;
}

/* ========== 注册页顶部导航 ========== */
.wst-login-banner-regist {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    border-bottom: none;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.wst-login-banner-regist .wst-icon-banner {
    width: 1200px;
    margin: 0 auto;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.wst-login-banner-regist .img-banner {
    height: 45px;
    margin: 0;
    float: none;
}
.wst-login-banner-regist .img-banner img {
    height: 100%;
    width: auto;
}
.wst-login-banner-regist .wst-login-action {
    width: auto;
    height: auto;
    float: none;
    margin: 0;
}
.wst-login-banner-regist .wst-icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    margin-top: 0;
    gap: 8px;
}
.wst-login-banner-regist .wst-icon .wst-img-icon {
    width: 22px;
    height: 22px;
    background: url(../img/icon_login02.png) no-repeat;
    background-size: contain;
    margin-top: 0;
}
.wst-login-banner-regist .wst-icon .wst-remind {
    color: #666 !important;
    font-size: 14px;
    padding-left: 0;
    height: auto;
    line-height: normal;
}
.wst-login-banner-regist .wst-icon .wst-remind a {
    color: #1AA844 !important;
    font-weight: bold;
    padding: 6px 18px;
    border: 2px solid #1AA844;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.4;
}
.wst-login-banner-regist .wst-icon .wst-remind a:hover {
    background: #1AA844;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(26,168,68,0.3);
}

/* ========== 注册页主体 - 全屏沉浸式左右分栏 ========== */
.wst-regist-b {
    background: linear-gradient(160deg, #0d5c2a 0%, #1AA844 35%, #23c94e 65%, #1AA844 100%);
    margin-top: 0;
    border-top: none;
    border-bottom: none;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 70px);
    /* display: flex; */
    align-items: center;
    justify-content: center;
}
.wst-regist-b::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse 500px 500px at 70% 30%, rgba(202,230,215,0.2) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 20% 70%, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: bgFloat 20s ease-in-out infinite reverse;
    pointer-events: none;
}

/* 注册页浮动装饰 - 增加更多元素 */
.wst-regist-b .wst-deco-circle.c1 {
    top: -80px; right: -100px; left: auto;
    animation: floatCircle2 15s ease-in-out infinite;
}
.wst-regist-b .wst-deco-circle.c2 {
    bottom: -60px; left: -50px; right: auto;
    animation: floatCircle1 18s ease-in-out infinite;
}
.wst-regist-b .wst-deco-circle.c3 {
    top: 25%; left: 12%; right: auto;
    animation: floatCircle3 12s ease-in-out infinite;
}
.wst-regist-b .wst-deco-circle.c4 {
    bottom: 15%; right: 8%; left: auto;
    animation: floatCircle1 10s ease-in-out infinite reverse;
}
.wst-regist-b .wst-deco-circle.c5 {
    top: 10%; left: 35%; right: auto;
    animation: floatCircle2 14s ease-in-out infinite;
}

/* 注册页额外装饰 - 菱形旋转 */
.wst-deco-diamond {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255,255,255,0.1);
    transform: rotate(45deg);
    pointer-events: none;
    animation: diamondSpin 20s linear infinite;
}
.wst-deco-diamond.d1 {
    top: 15%; left: 5%;
    animation-duration: 25s;
}
.wst-deco-diamond.d2 {
    bottom: 20%; right: 10%;
    width: 40px; height: 40px;
    animation-duration: 18s;
    animation-direction: reverse;
}
.wst-deco-diamond.d3 {
    top: 60%; left: 25%;
    width: 30px; height: 30px;
    animation-duration: 22s;
    border-color: rgba(202,230,215,0.15);
}
@keyframes diamondSpin {
    0% { transform: rotate(45deg) scale(1); opacity: 0.6; }
    25% { transform: rotate(135deg) scale(1.2); opacity: 1; }
    50% { transform: rotate(225deg) scale(1); opacity: 0.6; }
    75% { transform: rotate(315deg) scale(0.8); opacity: 1; }
    100% { transform: rotate(405deg) scale(1); opacity: 0.6; }
}

/* 注册页额外装饰 - 波浪线 */
.wst-deco-wave {
    position: absolute;
    pointer-events: none;
    opacity: 0.06;
}
.wst-deco-wave svg {
    width: 100%;
    height: 100%;
}
.wst-deco-wave.w1 {
    bottom: 0; left: 0; width: 100%; height: 120px;
    animation: waveFloat 8s ease-in-out infinite;
}
.wst-deco-wave.w2 {
    bottom: 0; left: 0; width: 100%; height: 80px;
    opacity: 0.04;
    animation: waveFloat 6s ease-in-out infinite reverse;
}
@keyframes waveFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* 注册页额外装饰 - 星星闪烁 */
.wst-deco-star {
    position: absolute;
    pointer-events: none;
    color: rgba(255,255,255,0.2);
    font-size: 16px;
    animation: starTwinkle 3s ease-in-out infinite;
}
.wst-deco-star.s1 { top: 12%; left: 18%; animation-delay: 0s; font-size: 14px; }
.wst-deco-star.s2 { top: 30%; right: 22%; animation-delay: 1s; font-size: 18px; }
.wst-deco-star.s3 { bottom: 25%; left: 8%; animation-delay: 2s; font-size: 12px; }
.wst-deco-star.s4 { top: 50%; right: 5%; animation-delay: 0.5s; font-size: 20px; }
.wst-deco-star.s5 { bottom: 10%; right: 30%; animation-delay: 1.5s; font-size: 14px; }
.wst-deco-star.s6 { top: 8%; left: 45%; animation-delay: 2.5s; font-size: 16px; }
@keyframes starTwinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.3); }
}

/* ========== 注册页左右分栏布局 ========== */
.wst-regist {
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 60px;
}

/* 注册页左侧品牌展示区 */
.wst-regist-brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 0;
    animation: slideInRight 0.8s ease-out;
}

/* 注册页右侧卡片容器 */
.wst-regist-c {
    width: 520px;
    max-width: 100%;
    flex-shrink: 0;
    margin: 0;
    padding: 40px 40px 35px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow:
        0 25px 80px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.3) inset;
    animation: cardFadeIn 0.8s ease-out;
    align-self: center;
}
@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* 注册页左侧品牌元素 */
.wst-regist-brand-logo {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.wst-regist-brand-logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}
.wst-regist-brand h2 {
    font-size: 34px;
    color: #fff;
    font-weight: 300;
    margin: 0 0 15px;
    letter-spacing: 2px;
    line-height: 1.3;
}
.wst-regist-brand h2 strong {
    font-weight: 700;
    display: block;
}
.wst-regist-brand p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin: 0 0 35px;
    max-width: 380px;
}

/* 注册页左侧优势列表 */
.wst-regist-brand-steps {
    width: 100%;
    max-width: 400px;
}
.wst-regist-brand-steps .step-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    animation: stepFadeIn 0.6s ease-out both;
}
.wst-regist-brand-steps .step-row:nth-child(1) { animation-delay: 0.3s; }
.wst-regist-brand-steps .step-row:nth-child(2) { animation-delay: 0.5s; }
.wst-regist-brand-steps .step-row:nth-child(3) { animation-delay: 0.7s; }
.wst-regist-brand-steps .step-row:nth-child(4) { animation-delay: 0.9s; }
@keyframes stepFadeIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
.wst-regist-brand-steps .step-row:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.wst-regist-brand-steps .step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(202,230,215,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.2);
}
.wst-regist-brand-steps .step-info {
    flex: 1;
}
.wst-regist-brand-steps .step-info .step-title {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 3px;
}
.wst-regist-brand-steps .step-info .step-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

/* 注册页左侧底部统计 */
.wst-regist-brand-stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.wst-regist-brand-stats .stat-item {
    text-align: left;
}
.wst-regist-brand-stats .stat-num {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.wst-regist-brand-stats .stat-num span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    margin-left: 2px;
}
.wst-regist-brand-stats .stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

.wst-regist-head {
    font-size: 26px;
    font-family: "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
    color: #1AA844;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}
.wst-regist-subtitle {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-bottom: 25px;
}

/* ========== 注册页 Tab 切换 ========== */
.wst-register_r .wst-tab-box {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
}
.wst-register_r .wst-tab-nav {
    width: 100%;
    margin: 0 auto;
    border-bottom: none;
    overflow: hidden;
    display: flex;
    background: #f5f8f6;
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 25px;
}
.wst-register_r .wst-tab-nav li {
    flex: 1;
    margin: 0;
    padding: 10px 0;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    cursor: pointer;
    color: #888;
    transition: all 0.35s ease;
    position: relative;
    border-radius: 10px;
}
.wst-register_r .wst-tab-nav li::after {
    content: '';
    display: none;
}
.wst-register_r .wst-tab-nav li:hover {
    color: #1AA844;
}
.wst-register_r .wst-tab-nav .on {
    color: #fff;
    font-weight: bold;
    background: #1AA844;
    box-shadow: 0 4px 12px rgba(26,168,68,0.3);
    margin-bottom: 0;
}

/* ========== 注册表单 ========== */
.wst-regist .wst-table {
    margin-top: 10px;
    color: #555;
    font-size: 14px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
.wst-regist .wst-table tr.wst-login-tr {
    height: auto;
    margin-bottom: 5px;
}
.wst-regist .wst-table td {
    padding: 6px 0;
    vertical-align: middle;
}
.wst-regist-td {
    text-align: right;
    width: 90px;
    font-size: 14px;
    color: #666;
    padding-right: 12px;
    white-space: nowrap;
}
.wst-regist-td font {
    color: #E45050;
}
input.wst-regist-input {
    width: 100%;
    max-width: 340px;
    margin-left: 0;
    height: 48px;
    border: 2px solid #e8ede9;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 14px;
    outline: none;
    background: #fff;
    transition: all 0.35s ease;
    float: none;
}
input.wst-regist-input:focus {
    border-color: #1AA844;
    box-shadow: 0 0 0 4px rgba(26,168,68,0.08);
}
input.wst-regist-input::placeholder {
    color: #bbb;
}

/* ========== 注册验证码 ========== */
.wst-regist .wst-login-code-1,
.wst-regist .wst-regist-code {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
}
input.wst-regist-codemo {
    padding: 0 12px;
    font-size: 14px;
    outline: none;
    width: 160px;
    height: 48px;
    border: 2px solid #e8ede9;
    border-radius: 12px;
    background: #fff;
    transition: all 0.35s ease;
}
input.wst-regist-codemo:focus {
    border-color: #1AA844;
    box-shadow: 0 0 0 4px rgba(26,168,68,0.08);
}
.wst-regist-obtain {
    width: auto;
    padding: 0 20px;
    height: 48px;
    line-height: 48px;
    background: #CAE6D7;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    color: #1AA844;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    float: none;
}
.wst-regist-obtain:hover {
    background: #b8dcc8;
    color: #158c38;
    box-shadow: 0 4px 12px rgba(26,168,68,0.15);
}

/* ========== 注册协议 ========== */
.wst-regist .wst-table label {
    font-size: 13px;
    color: #999;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 0;
    padding-right: 0;
}
.wst-regist .wst-table label input[type="checkbox"] {
    accent-color: #1AA844;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.wst-regist .wst-table label a {
    color: #1AA844;
    text-decoration: none;
    transition: color 0.3s;
}
.wst-regist .wst-table label a:hover {
    text-decoration: underline;
    color: #158c38;
}

/* ========== 注册按钮 ========== */
.wst-regist-but {
    outline: none;
    background: linear-gradient(135deg, #1AA844 0%, #15a83e 50%, #1fbf50 100%);
    background-size: 200% 200%;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 4px;
    transition: all 0.4s ease;
    height: 50px;
    line-height: 50px;
    padding: 0 50px;
    animation: gradientShift 3s ease infinite;
}
.wst-regist-but:hover {
    box-shadow: 0 8px 25px rgba(26,168,68,0.4);
    transform: translateY(-2px);
}
.wst-regist-but:active {
    transform: translateY(0);
}

/* ========== 注册页提交行 ========== */
.wst-regist .wst-table tr td[colspan] {
    padding-left: 102px;
}

/* ========== 聚焦状态统一 ========== */
.wst-login-input:focus,
.wst-login-input-1:focus,
.wst-regist-input:focus,
.wst-login-codein-1:focus,
.wst-login-codein:focus,
.wst-regist-codein:focus,
.wst-regist-codemo:focus {
    border-color: #1AA844;
    box-shadow: 0 0 0 4px rgba(26,168,68,0.08);
}

/* ========== 验证器提示样式 ========== */
.wst-login_r .n-default .n-left,
.wst-login_r .n-default .n-right {
    margin-top: 10px;
    position: absolute;
}
.n-default .msg-wrap {
    position: absolute;
    right: 4px;
}
.wst-login-code-1 .msg-box {
    top: 46px;
    left: 0;
}

/* ========== 找回密码相关 ========== */
.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: #1AA844; }
.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: #1AA844; }
.s-num1 { background: #f1f1f1; }
.s-text { line-height: 30px; }
.forget-pwd {
    width: 750px; margin: 50px auto 50px; padding: 25px 0 48px 0;
    border: 1px solid #CAE6D7; border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26,168,68,0.1);
}
input.wst-forget-input {
    margin: 0 0 0 20px; padding-left: 5px; font-size: 15px; outline: none;
    width: 300px; height: 36px; border-radius: 8px; border: 1px solid #ddd;
    transition: all 0.3s ease;
}
input.wst-forget-input:focus { border-color: #1AA844; box-shadow: 0 0 0 3px rgba(26,168,68,0.1); }
.wst-forget-code, .wst-forget-code2 {
    float: left; width: 300px; height: 36px; border-radius: 8px;
    margin-left: 20px; border: 1px solid #ddd;
}
input.wst-forget-codein, input.wst-forget-codein2 {
    padding: 0; padding-left: 5px; width: 180px; height: 36px;
    position: absolute; font-size: 15px; outline: none; border: 0; border-radius: 8px;
}
.wst-forget-input:focus, .wst-forget-codein:focus, .wst-forget-codein2:focus {
    border-radius: 8px; border: 1px solid #1AA844;
}
.wst-forget-codeim, .wst-forget-codeim2 {
    width: 116px; border-top-right-radius: 8px; border-bottom-right-radius: 8px; 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: #666; }
.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: 8px; border: 1px solid #ddd;
}
.wst-forget-obtain {
    width: 134px; height: 36px; background: #CAE6D7; border-radius: 8px;
    border: 1px solid #b8dcc8; padding: 10px 0; cursor: pointer;
    color: #1AA844; font-weight: bold;
}
.wst-forget-c { text-align: center; }
.wst-forget-ct { font-size: 16px; color: #333; }

/* ========== 通用辅助（保持兼容） ========== */
.wst-icon-banner { width: 1200px; margin: 0 auto; overflow: visible; }
.wst-login-banner .wst-stript { display: none; }
.wst-login-action .wst-left { display: none; }
.wst-color { background: white; }
.regist-border { border: 1px solid #CAE6D7; }
.bottom-stript { width: 100%; height: 20px; }
.wst-login-three { height: 30px; display: block; margin-top: 15px; }
.wst-login-u { margin: 0 auto; width: 120px; height: 36px; display: block; font-size: 25px; }
.wst-login-code, .wst-regist-code { height: 36px; border: 1px solid #ddd; }
.wst-login-codeim { margin-left: 130px; }
input.wst-login-codein {
    padding: 0; padding-left: 5px; width: 180px; height: 36px;
    position: absolute; font-size: 15px; outline: none; border: 0;
}
.wst-login-l-shop { width: 99.9%; height: 475px; }
.wst-login-middle-shop { height: 477px; background: #1AA844; }
.wst-regist-code-1 { margin-left: 0; }
input.wst-regist-codein { width: 150px; }
.wst-regist-codeim { margin-left: 0; }

/* ========== 页脚覆盖（登录/注册页内） ========== */
.wst-login-banner + .wst-login-middle ~ .wst-footer,
.wst-login-banner-regist + .wst-regist-b ~ .wst-footer {
    background: #0a4a22;
}
