@CHARSET "UTF-8";

/* ============================================
   商家入驻页面 - 全新绿色沉浸式主题
   主色: #1AA844  浅色: #CAE6D7
   布局: 左右分栏 + 竖向时间轴 + 卡片网格
   ============================================ */

/* ========== 流程步骤条（shop_join_step用） ========== */
.stepflex{float:right;border-top:5px solid #f1f1f1;text-align:center;margin:60px 0px 0px 50px;}
.flow-container{ width: 1200px;display: flex;flex-direction: row;justify-content: center;}
.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-text1{line-height:30px;}
.s-text{line-height:30px;color:#1AA844;}
select{height:29px;}
.webuploader-container{overflow:hidden;}

/* ========== 全屏Hero区域 - 左右分栏 ========== */
.shop-join-hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    margin-top: -8px;
    overflow: hidden;
    background: linear-gradient(160deg, #0a3d1e 0%, #1AA844 40%, #28d45a 70%, #1AA844 100%);
    display: flex;
    align-items: center;
    isolation: isolate;
}

/* 背景动态渐变 */
.shop-join-hero::before {
    content: '';
    position: absolute;
    top: -25%; left: -25%;
    width: 150%; height: 150%;
    background:
        radial-gradient(ellipse 500px 500px at 15% 60%, rgba(202,230,215,0.3) 0%, transparent 70%),
        radial-gradient(ellipse 350px 350px at 85% 25%, rgba(255,255,255,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 600px 400px at 50% 90%, rgba(26,168,68,0.35) 0%, transparent 60%);
    animation: heroBgFloat 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes heroBgFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(40px, -25px) rotate(1deg); }
    50% { transform: translate(-25px, 35px) rotate(-1deg); }
    75% { transform: translate(25px, 25px) rotate(0.5deg); }
}

/* 浮动装饰 */
.shop-hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
.shop-hero-deco.c1 { width: 280px; height: 280px; background: rgba(255,255,255,0.06); top: -80px; left: -100px; animation: shopFloat1 16s ease-in-out infinite; }
.shop-hero-deco.c2 { width: 200px; height: 200px; background: rgba(202,230,215,0.1); bottom: -50px; right: -40px; animation: shopFloat2 19s ease-in-out infinite; }
.shop-hero-deco.c3 { width: 120px; height: 120px; background: rgba(255,255,255,0.05); top: 20%; right: 35%; animation: shopFloat3 13s ease-in-out infinite; }
.shop-hero-deco.c4 { width: 70px; height: 70px; background: rgba(202,230,215,0.08); bottom: 25%; left: 20%; animation: shopFloat1 11s ease-in-out infinite reverse; }
.shop-hero-deco.c5 { width: 160px; height: 160px; background: rgba(255,255,255,0.04); top: 10%; right: 10%; animation: shopFloat2 15s ease-in-out infinite; }
@keyframes shopFloat1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(40px, -30px) scale(1.1); } }
@keyframes shopFloat2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-30px, 40px) scale(0.9); } }
@keyframes shopFloat3 { 0%, 100% { transform: translate(0, 0); } 33% { transform: translate(20px, -20px); } 66% { transform: translate(-15px, 15px); } }

.shop-hero-diamond {
    position: absolute;
    width: 50px; height: 50px;
    border: 2px solid rgba(255,255,255,0.08);
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 1;
    animation: shopDiamondSpin 20s linear infinite;
}
.shop-hero-diamond.d1 { top: 18%; left: 6%; animation-duration: 25s; }
.shop-hero-diamond.d2 { bottom: 12%; right: 8%; width: 35px; height: 35px; animation-duration: 18s; animation-direction: reverse; }
.shop-hero-diamond.d3 { top: 55%; left: 40%; width: 28px; height: 28px; animation-duration: 22s; border-color: rgba(202,230,215,0.12); }
@keyframes shopDiamondSpin { 0% { transform: rotate(45deg) scale(1); opacity: 0.5; } 50% { transform: rotate(225deg) scale(1.2); opacity: 1; } 100% { transform: rotate(405deg) scale(1); opacity: 0.5; } }

.shop-hero-star {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    color: rgba(255,255,255,0.15);
    animation: shopStarTwinkle 3s ease-in-out infinite;
}
.shop-hero-star.s1 { top: 8%; left: 22%; animation-delay: 0s; }
.shop-hero-star.s2 { top: 32%; right: 15%; animation-delay: 1s; }
.shop-hero-star.s3 { bottom: 18%; left: 10%; animation-delay: 2s; }
.shop-hero-star.s4 { top: 50%; right: 5%; animation-delay: 0.5s; }
.shop-hero-star.s5 { bottom: 8%; right: 25%; animation-delay: 1.5s; }
@keyframes shopStarTwinkle { 0%, 100% { opacity: 0.15; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.3); } }

/* 底部波浪 */
.shop-hero-wave {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 80px;
    pointer-events: none;
    z-index: 2;
}
.shop-hero-wave svg { width: 100%; height: 100%; }

/* 隐藏轮播背景（改为纯渐变） */
.shop-join-hero-bg { display: none; }

/* ========== Hero内部左右分栏 ========== */
.shop-join-hero .wst-container {
    position: relative;
    z-index: 10;
    width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    align-items: stretch;
    gap: 60px;
}

/* 左侧品牌展示区 */
.shop-join-brand-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: brandSlideLeft 0.8s ease-out;
}
@keyframes brandSlideLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}
.shop-join-brand-left h1 {
    font-size: 38px;
    color: #fff;
    font-weight: 300;
    margin: 0 0 12px;
    letter-spacing: 3px;
    line-height: 1.3;
}
.shop-join-brand-left h1 strong {
    font-weight: 700;
    display: block;
    font-size: 42px;
}
.shop-join-brand-left .brand-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin: 0 0 35px;
    max-width: 420px;
}

/* 左侧优势卡片网格 */
.brand-advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 420px;
}
.brand-adv-item {
    padding: 18px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    animation: advFadeIn 0.6s ease-out both;
}
.brand-adv-item:nth-child(1) { animation-delay: 0.2s; }
.brand-adv-item:nth-child(2) { animation-delay: 0.35s; }
.brand-adv-item:nth-child(3) { animation-delay: 0.5s; }
.brand-adv-item:nth-child(4) { animation-delay: 0.65s; }
@keyframes advFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.brand-adv-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.brand-adv-item .adv-icon {
    font-size: 28px;
    margin-bottom: 8px;
}
.brand-adv-item .adv-title {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
}
.brand-adv-item .adv-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

/* 右侧操作卡片 */
.shop-join-welcome-card {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    width: 460px;
    flex-shrink: 0;
    margin-left: 0;
    animation: cardSlideIn 0.8s ease-out;
    align-self: center;
}
@keyframes cardSlideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* 确保按钮可点击 */
.welcome-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 20;
}
.btn-apply-primary,
.btn-apply-secondary {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 1px;
    position: relative;
    z-index: 20;
}

.welcome-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #CAE6D7;
}
.welcome-header h2 {
    font-size: 22px;
    color: #1AA844;
    margin: 0 0 8px 0;
    font-weight: 700;
}
.welcome-subtitle {
    font-size: 14px;
    color: #1AA844;
    margin: 0;
    font-weight: 500;
    opacity: 0.7;
}

.welcome-content { margin-bottom: 25px; }
.welcome-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 14px 16px;
    background: #f5f8f6;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.welcome-item:hover {
    background: #eef5f0;
    transform: translateX(5px);
    border-color: #CAE6D7;
}
.welcome-icon { font-size: 26px; margin-right: 14px; flex-shrink: 0; margin-top: 3px; }
.welcome-text { flex: 1; }
.welcome-text p { margin: 2px 0; color: #555; line-height: 1.6; font-size: 14px; }
.welcome-text .highlight { color: #1AA844; font-weight: 600; }

/* ========== 按钮 ========== */
.welcome-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.btn-apply-primary,
.btn-apply-secondary {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 1px;
}
.btn-apply-primary {
    background: linear-gradient(135deg, #1AA844 0%, #15a83e 50%, #1fbf50 100%);
    background-size: 200% 200%;
    color: #fff;
    box-shadow: 0 4px 15px rgba(26, 168, 68, 0.3);
    animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.btn-apply-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26, 168, 68, 0.4); }
.btn-apply-secondary { background: #fff; color: #1AA844; border: 2px solid #1AA844; }
.btn-apply-secondary:hover { background: #1AA844; color: #fff; box-shadow: 0 4px 15px rgba(26, 168, 68, 0.3); }
.btn-apply-disabled { display: inline-block; padding: 13px 28px; border-radius: 12px; text-decoration: none; font-size: 15px; font-weight: 600; background: #e0e0e0; color: #999; cursor: not-allowed; }

/* ========== 贴心提示 - 改为三列卡片 ========== */
.shop-join-tips {
    background: linear-gradient(180deg, #f0f7f2 0%, #fff 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.shop-join-tips::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #1AA844, #CAE6D7, #1AA844);
}
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.tips-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(26, 168, 68, 0.06);
    border: 1px solid #e8f0eb;
    transition: all 0.3s ease;
    text-align: center;
}
.tips-card:hover {
    box-shadow: 0 12px 35px rgba(26, 168, 68, 0.12);
    transform: translateY(-5px);
}
.tips-icon {
    font-size: 48px;
    margin-bottom: 30px;
    display: block;
}
.tips-content h3 {
    font-size: 18px;
    color: #1AA844;
    margin: 0 0 10px 0;
    font-weight: 700;
}
.tips-content p {
    color: #888;
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

/* ========== 主要内容区域 ========== */
.shop-join-main {
    background: #fff;
    padding: 60px 0 80px;
}

/* ========== 入驻流程 - 竖向时间轴 ========== */
.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #1AA844;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #CAE6D7;
}
.title-icon { font-size: 26px; margin-right: 12px; }
.section-title h3 { font-size: 22px; color: #333; margin: 0; font-weight: 700; }

.apply-step-timeline {
    position: relative;
    padding: 10px 0 10px 60px;
    margin: 0 0 50px;
}
/* 竖线 */
.apply-step-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(180deg, #1AA844 0%, #CAE6D7 50%, #e8f0eb 100%);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    padding: 0 0 35px 50px;
    animation: timelineFadeIn 0.5s ease-out both;
}
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.25s; }
.timeline-item:nth-child(3) { animation-delay: 0.4s; }
.timeline-item:nth-child(4) { animation-delay: 0.55s; }
.timeline-item:nth-child(5) { animation-delay: 0.7s; }
@keyframes timelineFadeIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}
.timeline-item:last-child { padding-bottom: 0; }
/* 圆点 */
.timeline-dot {
    position: absolute;
    left: -42px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: #1AA844;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #CAE6D7, 0 2px 8px rgba(26,168,68,0.3);
    z-index: 2;
}
.timeline-item:last-child .timeline-dot {
    background: #CAE6D7;
    box-shadow: 0 0 0 3px #e8f0eb, 0 2px 8px rgba(26,168,68,0.15);
}
.timeline-card {
    background: #fff;
    border: 1px solid #e8f0eb;
    border-radius: 14px;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.timeline-card:hover {
    border-color: #CAE6D7;
    box-shadow: 0 8px 25px rgba(26,168,68,0.1);
    transform: translateX(5px);
}
.timeline-card .tc-icon {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    background: #f5f8f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}
.timeline-card:hover .tc-icon {
    background: #e8f5ed;
    transform: scale(1.05);
}
.timeline-card .tc-icon i {
    background: url(../img/btn_80x80.png) no-repeat;
    display: block;
    width: 65px;
    height: 65px;
    background-size: cover;
}
.timeline-card .tc-icon i.a { background-position: -12px 0px; background-size: auto; }
.timeline-card .tc-icon i.b { background-position: -94px 0px; background-size: auto; }
.timeline-card .tc-icon i.c { background-position: -176px 0px; background-size: auto; }
.timeline-card .tc-icon i.d { background-position: -258px 0px; background-size: auto; }
.timeline-card .tc-icon i.e { background-position: -340px 0px; background-size: auto; }
.timeline-card .tc-info { flex: 1; }
.timeline-card .tc-step { font-size: 12px; color: #1AA844; font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.timeline-card .tc-title { font-size: 16px; color: #333; font-weight: 600; }
.timeline-card .tc-desc { font-size: 13px; color: #999; margin-top: 3px; }

/* ========== 入驻指南 - Tab样式 ========== */
.guide-tabs {
    background: #f5f8f6;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid #e8f0eb;
}
.guide-tabs .wst-tab-nav {
    margin: 0;
    padding: 0;
    display: flex;
    background: #fff;
    border-bottom: 2px solid #e8f0eb;
    height: auto;
    top: auto;
    z-index: auto;
}
.guide-tabs .wst-tab-nav li {
    flex: 1;
    list-style: none;
    padding: 16px 20px;
    text-align: center;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    line-height: 1.4;
}
.guide-tabs .wst-tab-nav li:hover { color: #1AA844; background: #f5f8f6; }
.guide-tabs .wst-tab-nav li.on { color: #1AA844; background: #f5f8f6; border-bottom-color: #1AA844; font-weight: 600; }
.guide-tabs .wst-tab-content {
    padding: 30px;
    min-height: 300px;
    background: #fff;
    line-height: 1.8;
    color: #555;
    border: none;
    border-top: none;
    width: 100%;
    height: auto;
}
.guide-tabs .wst-tab-item { display: none; line-height: 1.8; color: #666; }
.guide-tabs .wst-tab-item:first-child { display: block; }

/* ===================================================
   shop_join_step 页面 - 全新沉浸式设计
   =================================================== */

/* ========== 全新 Banner 区域 ========== */
.step-page-banner {
    background: linear-gradient(135deg, #0a3d1e 0%, #1AA844 35%, #28d45a 65%, #1AA844 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-top: -8px;
    min-height: 200px;
    display: flex;
    align-items: center;
}
.step-page-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background:
        radial-gradient(ellipse 400px 400px at 20% 50%, rgba(202,230,215,0.25) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 80% 30%, rgba(255,255,255,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 250px 250px at 60% 80%, rgba(26,168,68,0.2) 0%, transparent 60%);
    animation: heroBgFloat 20s ease-in-out infinite;
    pointer-events: none;
}

/* Banner 浮动装饰圆 */
.step-banner-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.step-banner-deco.c1 { width: 180px; height: 180px; background: rgba(255,255,255,0.06); top: -60px; left: -40px; animation: shopFloat1 14s ease-in-out infinite; }
.step-banner-deco.c2 { width: 120px; height: 120px; background: rgba(202,230,215,0.1); bottom: -30px; right: 15%; animation: shopFloat2 17s ease-in-out infinite; }
.step-banner-deco.c3 { width: 80px; height: 80px; background: rgba(255,255,255,0.05); top: 20%; right: 40%; animation: shopFloat3 11s ease-in-out infinite; }

/* Banner 菱形装饰 */
.step-banner-diamond {
    position: absolute;
    width: 40px; height: 40px;
    border: 2px solid rgba(255,255,255,0.08);
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 0;
    animation: shopDiamondSpin 20s linear infinite;
}
.step-banner-diamond.d1 { top: 15%; left: 8%; animation-duration: 22s; }
.step-banner-diamond.d2 { bottom: 20%; right: 10%; width: 28px; height: 28px; animation-duration: 16s; animation-direction: reverse; }

/* Banner 星星装饰 */
.step-banner-star {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    color: rgba(255,255,255,0.2);
    font-size: 14px;
    animation: shopStarTwinkle 3s ease-in-out infinite;
}
.step-banner-star.s1 { top: 12%; left: 25%; animation-delay: 0s; }
.step-banner-star.s2 { top: 25%; right: 20%; animation-delay: 0.8s; }
.step-banner-star.s3 { bottom: 25%; left: 15%; animation-delay: 1.6s; }
.step-banner-star.s4 { top: 40%; right: 8%; animation-delay: 0.4s; }

/* Banner 波浪 */
.step-banner-wave {
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%; height: 60px;
    pointer-events: none;
    z-index: 2;
}
.step-banner-wave svg { width: 100%; height: 100%; display: block; }

/* Banner 内部内容 */
.step-banner-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 30px 55px;
    display: flex;
    align-items: center;
    gap: 25px;
    animation: bannerSlideDown 0.6s ease-out;
}
@keyframes bannerSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-banner-icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    animation: bannerIconFloat 4s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
@keyframes bannerIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

.step-banner-text {
    flex: 1;
}
.step-banner-text h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.step-banner-text p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 8px 0 0;
    letter-spacing: 0.5px;
}

/* Banner 右侧进度条 */
.step-banner-progress {
    flex-shrink: 0;
    text-align: center;
    min-width: 160px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 16px 22px;
    border: 1px solid rgba(255,255,255,0.12);
}
.banner-progress-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.banner-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}
.banner-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #CAE6D7, #fff, #CAE6D7);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progressShine 2s ease-in-out infinite;
    transition: width 0.6s ease;
}
@keyframes progressShine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.banner-progress-text {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ========== 主内容区 - 左右分栏布局 ========== */
.step-page-body {
    background: #f5f8f6;
    min-height: 600px;
    padding: 30px 0 60px;
}
.step-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* 左侧主内容列 */
.step-main-col {
    flex: 1;
    min-width: 0;
    animation: mainColFadeIn 0.5s ease-out;
}
@keyframes mainColFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== 步骤导航条 - 胶囊式卡片 ========== */
.flow-container {
    background: linear-gradient(135deg, #fff 0%, #f5f8f6 100%);
    padding: 28px 35px;
    border-radius: 18px;
    margin: 0 0 25px;
    max-width: 100%;
    width: auto;
    box-shadow: 0 6px 30px rgba(26, 168, 68, 0.08);
    border: 1px solid #e0ebe4;
    position: relative;
    overflow: hidden;
    display: block;
}
.flow-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #1AA844, #CAE6D7, #1AA844);
}
.flow-container .stepflex {
    margin: 0 auto;
    float: none;
    display: flex;
    justify-content: center;
    gap: 0;
    width: 100%;
}
.flow-container .stepflex dl {
    border-top: none;
    float: none;
    position: relative;
    top: auto;
    width: auto;
    flex: 1;
    text-align: center;
    padding: 0 10px;
}
.flow-container .stepflex dl::after {
    content: '→';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-70%);
    color: #CAE6D7;
    font-size: 16px;
    font-weight: bold;
}
.flow-container .stepflex dl:last-child::after {
    display: none;
}
dl.doing {
    border-top-color: transparent;
}
.doing .s-num {
    background-position: -23px 0;
}
.s-num, .s-num1 {
    color: #fff;
    font-weight: 700;
    height: 36px;
    line-height: 36px;
    margin: 0 auto 10px;
    position: relative;
    width: 36px;
    border-radius: 50%;
    font-size: 15px;
    transition: all 0.3s ease;
}
.s-num {
    background: linear-gradient(135deg, #1AA844, #15a83e);
    box-shadow: 0 3px 12px rgba(26, 168, 68, 0.35);
}
.s-num1 {
    background: #d0d0d0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.s-text1 {
    line-height: 30px;
    color: #aaa;
    font-size: 13px;
    font-weight: 400;
}
.s-text {
    line-height: 30px;
    color: #1AA844;
    font-weight: 600;
    font-size: 13px;
}

/* ========== 主标题 - 左侧绿色竖条卡片 ========== */
.main-head {
    font-size: 20px;
    font-weight: 700;
    height: auto;
    line-height: 1.4;
    text-align: left;
    color: #333;
    padding: 20px 28px;
    background: #fff;
    border-bottom: none;
    margin-bottom: 0;
    position: relative;
    border-radius: 16px 16px 0 0;
    border: 1px solid #e8f0eb;
    border-bottom: 2px solid #CAE6D7;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(26, 168, 68, 0.05);
}
.main-head::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #1AA844, #CAE6D7);
    border-radius: 16px 0 0 0;
}
.main-head::after {
    display: none;
}
.main-head-icon {
    font-size: 24px;
}

/* ========== 表单区域 ========== */
.apply-box {
    border: 1px solid #e8f0eb;
    border-top: none;
    border-radius: 0 0 16px 16px;
    padding: 35px 30px 25px;
    background: #fff;
    box-shadow: 0 6px 30px rgba(26, 168, 68, 0.06);
    animation: formFadeIn 0.5s ease-out;
}
@keyframes formFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.apply-box2 {
    border-top: none;
    border-radius: 16px;
    border: 1px solid #e8f0eb;
    background: #fff;
    box-shadow: 0 6px 30px rgba(26, 168, 68, 0.06);
}

/* ========== 协议区域 ========== */
.apply-agreement-box {
    height: 350px;
    border: 1px solid #e8f0eb;
    border-radius: 16px 16px 0 0;
    padding: 28px;
    overflow: auto;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 6px 30px rgba(26, 168, 68, 0.06);
    line-height: 1.8;
    animation: formFadeIn 0.5s ease-out;
    border-bottom: 2px solid #CAE6D7;
}
.apply-agreement-box .tip { color: #999; }

/* ========== 表格样式 ========== */
.agreement-table {
    width: 100%;
    margin-bottom: 10px;
    border-collapse: collapse;
    border-spacing: 0;
}
.agreement-table th {
    text-align: right;
    width: 180px;
    padding: 18px 20px 18px 0;
    color: #555;
    font-weight: 500;
    vertical-align: top;
    font-size: 14px;
    white-space: nowrap;
}
.agreement-table td {
    text-align: left;
    padding: 12px 0 12px 10px;
}
.agreement-table .head-ititle {
    background: none;
    padding-left: 0;
    padding-bottom: 5px;
    font-weight: bold;
    color: #1AA844;
    font-size: 15px;
}
.agreement-table input[type=text] {
    margin: 0;
    width: 100%;
    max-width: 420px;
    height: 44px;
    border: 2px solid #e8ede9;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
}
.agreement-table input[type=text]:focus {
    border-color: #1AA844;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 168, 68, 0.08);
}
.agreement-table textarea {
    margin: 0;
    border: 2px solid #e8ede9;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
    background: #fafafa;
    width: 100%;
}
.agreement-table textarea:focus {
    border-color: #1AA844;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 168, 68, 0.08);
}
.agreement-table select {
    height: 44px;
    border: 2px solid #e8ede9;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
}
.agreement-table select:focus {
    border-color: #1AA844;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 168, 68, 0.08);
}

/* ========== 协议勾选 ========== */
.agreement_box {
    text-align: center;
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f5f8f6 0%, #e8f0eb 100%);
    border-radius: 14px;
    border: 1px solid #e0ebe4;
}
.agreement_box label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}
.agreement_box input[type="checkbox"] {
    accent-color: #1AA844;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* ========== 底部操作栏 ========== */
.agreement-bottom {
    padding: 30px 10px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    margin-top: 25px;
    box-shadow: 0 4px 20px rgba(26, 168, 68, 0.06);
    border: 1px solid #e8f0eb;
}
.btn-cancel {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    background: #fff;
    color: #666;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
    margin: 0 12px;
}
.btn-cancel:hover {
    border-color: #1AA844;
    color: #1AA844;
    background: #f5f8f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26,168,68,0.1);
}
.btn-submit {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #1AA844 0%, #15a83e 50%, #1fbf50 100%);
    background-size: 200% 200%;
    color: #fff;
    border: none;
    transition: all 0.4s ease;
    animation: gradientShift 3s ease infinite;
    margin: 0 12px;
    box-shadow: 0 4px 15px rgba(26, 168, 68, 0.25);
}
.btn-submit:hover {
    box-shadow: 0 8px 25px rgba(26, 168, 68, 0.4);
    transform: translateY(-2px);
}

/* ========== 审核提示 ========== */
.examine-tips {
    text-align: center;
    width: 100%;
    padding: 80px 20px;
    font-weight: 600;
    font-size: 16px;
    color: #666;
    line-height: 2;
}
.examine-tips img { vertical-align: middle; margin-right: 10px; }

/* ========== 支付区域 ========== */
.pay-box {
    border: 1px solid #e8f0eb;
    border-top: none;
    border-radius: 0 0 16px 16px;
    padding: 20px 0 15px 10px;
    background: #fff;
    box-shadow: 0 6px 30px rgba(26, 168, 68, 0.06);
}
.pay-boxs { padding: 0 20px; border-bottom: 1px solid #f5f8f6; }
.pay-box ul { padding-left: 15px; }
.pay-box ul li { width: 1185px; }
.pay-box .label { width: 200px; float: left; height: 30px; line-height: 30px; color: #555; }
.pay-box .txt { height: auto; line-height: 30px; width: 985px; float: left; color: #999; }
.pay-sbox { border: 1px solid #e8f0eb; border-radius: 14px; padding: 15px 0; background: #fff; }
.pay-sbox-head { border-bottom: 2px solid #CAE6D7; line-height: 35px; color: #1AA844; font-weight: 600; padding: 0 15px; }
.pay-tip1 { height: 37px; width: 760px; text-align: center; margin: 10px auto; background: url(../img/pay_liucheng.png) no-repeat 0px -10px; background-size: cover; }
.pay-tip2 { height: 37px; width: 760px; text-align: center; margin: 10px auto; background: url(../img/pay_liucheng.png) no-repeat 0px -71px; background-size: cover; }
.pay-tip3 { height: 37px; width: 760px; text-align: center; margin: 10px auto; background: url(../img/pay_liucheng.png) no-repeat 0px -132px; background-size: cover; }
.pay-sbox .qrcode-box { min-height: 300px; height: auto; }
.pay-sbox .tips-box { line-height: 35px; text-align: left; font-weight: bold; padding: 5px 10px; color: #333; }
.pay-sbox .qrcode-box .pbox { text-align: center; margin-top: 10px; font-weight: bold; }
.pay-sbox .wst-qrcode { width: 260px; height: 260px; text-align: center; margin: 0 auto; }
.pay-sbox .wst-qrcode img { width: 260px; height: 260px; }
.pay-sbox .bnt-box { text-align: center; font-weight: bold; padding: 5px 10px; line-height: 50px; }
.pay-sbox .pay-type { line-height: 35px; text-align: left; font-weight: bold; padding: 5px 10px; color: #333; }
.pay-sbox .pay-list { text-align: left; font-weight: bold; padding: 5px 10px; }
.pay-sbox .succ-box { text-align: center; padding: 50px; }
.wst-payCode-weixinpays { height: 69px; width: 167px; text-align: center; margin: 10px auto; background: url(../img/weixinpays.png) no-repeat 0px 0px; background-size: cover; float: left; margin-right: 10px; cursor: pointer; }
.wst-payCode-weixinpays-curr { height: 69px; width: 167px; text-align: center; margin: 10px auto; background: url(../img/weixinpays.png) no-repeat 0px -75px; background-size: cover; float: left; margin-right: 10px; cursor: pointer; }
.wst-payCode-alipays { height: 69px; width: 167px; text-align: center; margin: 10px auto; background: url(../img/alipays.png) no-repeat 0px 0px; background-size: cover; float: left; margin-right: 10px; cursor: pointer; }
.wst-payCode-alipays-curr { height: 69px; width: 167px; text-align: center; margin: 10px auto; background: url(../img/alipays.png) no-repeat 0px -75px; background-size: cover; float: left; margin-right: 10px; cursor: pointer; }
.wst-payCode-wallets { height: 69px; width: 167px; text-align: center; margin: 10px auto; background: url(../img/wallets.png) no-repeat 0px 0px; background-size: cover; float: left; margin-right: 10px; cursor: pointer; }
.wst-payCode-wallets-curr { height: 69px; width: 167px; text-align: center; margin: 10px auto; background: url(../img/wallets.png) no-repeat 0px -75px; background-size: cover; float: left; margin-right: 10px; cursor: pointer; }
.pay-sbox .balance-box { min-height: 300px; height: auto; }
.pay-sbox .balance-box .pbox { text-align: center; padding-top: 40px; font-weight: bold; }
.pay-sbox .balance-box .pbox2 { text-align: center; padding-top: 10px; font-weight: bold; }
.pbox-tip { color: #1AA844; margin-left: 10px; }
.pay-btn { background: linear-gradient(135deg, #1AA844 0%, #15a83e 100%); border: none; border-radius: 10px; color: #ffffff; cursor: pointer; outline: none; font-weight: 600; transition: all 0.3s ease; padding: 0 20px; }
.pay-btn:hover { box-shadow: 0 4px 15px rgba(26, 168, 68, 0.3); }
.pay-sbox .wst-pay-bnt { height: 40px; width: 132px; text-align: center; margin: 10px auto; background: url(../img/btn_pay.png) no-repeat 0px 0px; cursor: pointer; }
.pay-sbox .wst-pay-bnt:hover { height: 40px; width: 132px; text-align: center; margin: 10px auto; background: url(../img/btn_pay.png) no-repeat 0px -57px; cursor: pointer; }
.wst-wallet-box { border: 1px solid #e8f0eb; border-radius: 10px; margin: 10px; padding: 8px 12px; line-height: 35px; height: auto; background: #f5f8f6; }
.wst-wallet-box .wst-wallte-item { background: url("../img/icon_qianbaoyue.png") no-repeat; padding-left: 30px; height: 30px; margin-top: 5px; float: left; }

/* ========== Tab组件 ========== */
.wst-tab-box { width: 100%; height: auto; margin: 0 auto; background: #ffffff; margin-top: 10px; border-radius: 14px; overflow: hidden; border: 1px solid #e8f0eb; }
.wst-tab-nav { margin: 0; padding: 0; height: auto; top: auto; z-index: auto; background: #f5f8f6; width: 100%; border-bottom: 2px solid #e8f0eb; display: flex; }
.wst-tab-nav li { flex: 1; cursor: pointer; margin: 0; list-style: none; line-height: 1.4; text-align: center; color: #666; padding: 14px 10px; font-size: 14px; transition: all 0.3s; border-bottom: 2px solid transparent; }
.wst-tab-nav li:hover { color: #1AA844; background: rgba(26, 168, 68, 0.05); }
.wst-tab-nav .on { border-top: none; border-bottom: 2px solid #1AA844; color: #1AA844; font-weight: bold; background: #fff; }
.wst-tab-content { padding: 15px; width: 100%; height: auto; border: none; border-top: none; background: #FFF; }

/* ========== 上传组件 ========== */
.upload-picker div:nth-child(2) { top: 0!important; left: 0!important; width: 200px!important; height: 100%!important; }
#totalCatFee { color: #E45050; font-weight: 700; font-size: 20px; }

/* ========== 右侧侧边栏 ========== */
.step-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    animation: sidebarFadeIn 0.6s ease-out 0.2s both;
}
@keyframes sidebarFadeIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(26, 168, 68, 0.06);
    border: 1px solid #e8f0eb;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.step-sidebar-card:hover {
    box-shadow: 0 8px 30px rgba(26, 168, 68, 0.1);
    transform: translateY(-3px);
}
.step-sidebar-card:last-child {
    margin-bottom: 0;
}
.step-sidebar-card h4 {
    font-size: 15px;
    color: #1AA844;
    margin: 0 0 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #CAE6D7;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.step-sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.step-sidebar-card ul li {
    padding: 9px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    border-bottom: 1px dashed #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transition: all 0.2s;
}
.step-sidebar-card ul li:hover {
    color: #1AA844;
    padding-left: 5px;
}
.step-sidebar-card ul li:last-child {
    border-bottom: none;
}
.step-sidebar-card ul li::before {
    content: '✓';
    color: #1AA844;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 12px;
}
.step-sidebar-card .sidebar-tip {
    background: linear-gradient(135deg, #f5f8f6, #eef5f0);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    border-left: 3px solid #CAE6D7;
}
.step-sidebar-card .sidebar-tip strong {
    color: #1AA844;
}

/* 高亮卡片 */
.step-sidebar-card.sidebar-highlight {
    background: linear-gradient(135deg, #f0f7f2, #e8f5ed);
    border-color: #CAE6D7;
}
.step-sidebar-card.sidebar-highlight h4 {
    color: #15a83e;
    border-bottom-color: #1AA844;
}

/* 当前步骤展示 */
.sidebar-current-step {
    text-align: center;
    padding: 15px 0;
    margin-bottom: 5px;
}
.sidebar-step-num {
    font-size: 28px;
    font-weight: 700;
    color: #1AA844;
    margin-bottom: 10px;
}
.sidebar-step-name {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* ========== 通用 ========== */
label { margin-right: 20px; }
.webuploader-pick { padding: 3px 10px; }
.goodsCat { width: 200px; margin-right: 20px; float: left; }
.wst-clear { clear: both; }

/* 隐藏旧样式 */
.apply-banner { display: none; }
.apply-msg-box { display: none; }
.apply-tips { display: none; }
.apply-step { display: none; }
.apply-step-head { display: none; }
