@CHARSET "UTF-8";
/* ========== 商家入驻页面 - 全新样式 ========== */
/* 主题色: #173396 (深蓝) #FFE617 (亮黄) */

/* ========== 入驻首页 Banner区域 ========== */
.apply-banner {
    width: 100%;
    min-height: 500px;
    position: relative;
    background: linear-gradient(135deg, #173396 0%, #1a3a9e 50%, #0f2670 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* 3D粒子动画Canvas */
#joinParticleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.apply-banner .wst-container {
    position: relative;
    z-index: 2;
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
}

/* 左侧消息框 */
.apply-msg-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    width: 380px;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.apply-msg-box h3 {
    color: #FFE617;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.apply-msg-box .title {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.apply-msg-box ul {
    color: rgba(255,255,255,0.9);
    padding: 0;
    margin: 0 0 25px 0;
    list-style: none;
}

.apply-msg-box ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    font-size: 14px;
}

.apply-msg-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFE617;
    font-weight: bold;
}

.apply-msg-box ul li span {
    color: #FFE617;
    font-weight: 600;
}

.apply-msg-box .bottom {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.apply-msg-box .bottom a {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit {
    background: linear-gradient(135deg, #FFE617 0%, #ffd700 100%);
    color: #173396;
    box-shadow: 0 4px 15px rgba(255,230,23,0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,230,23,0.4);
}

.btn-cancel {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-cancel:hover {
    background: rgba(255,255,255,0.25);
}

/* 右侧装饰区域 */
.apply-banner .banner-visual {
    width: 500px;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-visual .visual-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,230,23,0.2);
    animation: rotate 20s linear infinite;
}

.banner-visual .visual-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    animation-duration: 25s;
}

.banner-visual .visual-circle:nth-child(2) {
    width: 220px;
    height: 220px;
    animation-duration: 20s;
    animation-direction: reverse;
}

.banner-visual .visual-circle:nth-child(3) {
    width: 140px;
    height: 140px;
    animation-duration: 15s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.banner-visual .visual-icon {
    font-size: 80px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* 隐藏旧版轮播 */
.wst-slide,
.wst-slide-items,
.wst-slide-numbox,
.wst-slide-controls {
    display: none !important;
}

/* ========== 贴心提示 ========== */
.apply-tips {
    background: linear-gradient(90deg, #173396 0%, #1e3faa 100%);
    width: 100%;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.apply-tips .wst-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.apply-tips .title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 30px;
    flex-shrink: 0;
}

.apply-tips .title i {
    display: block;
    width: 40px;
    height: 40px;
    background: rgba(255,230,23,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FFE617;
    border: 2px solid rgba(255,230,23,0.3);
}

.apply-tips .title h3 {
    color: #FFE617;
    font-size: 18px;
    margin: 0;
}

.apply-tips .content {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    line-height: 1.8;
}

/* ========== 入驻流程 ========== */
.apply-step-head {
    margin-top: 40px;
    font-size: 24px;
    font-weight: 700;
    color: #173396;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.apply-step-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #173396, #FFE617);
    border-radius: 2px;
}

.apply-step {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.apply-step span.step {
    text-align: center;
    width: 120px;
    position: relative;
}

.apply-step span.step i {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #173396 0%, #1e3faa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(23,51,150,0.3);
    transition: all 0.3s ease;
}

.apply-step span.step:hover i {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(23,51,150,0.4);
}

.apply-step span.step {
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
}

.apply-step span.arrow {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #173396, #FFE617);
    position: relative;
    margin-top: -30px;
}

.apply-step span.arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid #FFE617;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* ========== 入驻指南Tab ========== */
#applyTab {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.wst-tab-nav {
    margin: 0;
    padding: 0;
    display: flex;
    background: #f8f9fb;
    border-bottom: 2px solid #e8ecf1;
    list-style: none;
}

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

.wst-tab-nav li:hover {
    color: #173396;
    background: rgba(23,51,150,0.05);
}

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

.wst-tab-content {
    padding: 30px;
    background: #fff;
    min-height: 300px;
}

.wst-tab-item {
    line-height: 1.8;
    color: #4a5568;
}

/* ========== 入驻步骤页 ========== */
.flow-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}

.stepflex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-top: none;
    margin: 0;
    float: none;
}

.stepflex dl {
    flex: 1;
    max-width: 200px;
    text-align: center;
    position: relative;
    padding-top: 30px;
    border-top: 4px solid #e8ecf1;
    float: none;
    width: auto;
    top: auto;
}

.stepflex dl.doing {
    border-top-color: #173396;
}

.stepflex dl.first.doing {
    border-top-color: #173396;
}

.s-num, .s-num1 {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin: -22px auto 15px;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    background: none;
}

.s-num {
    background: linear-gradient(135deg, #173396 0%, #1e3faa 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(23,51,150,0.3);
}

.s-num1 {
    background: #e8ecf1;
    color: #a0aec0;
}

.s-text {
    color: #173396;
    font-weight: 600;
    font-size: 14px;
}

.s-text1 {
    color: #a0aec0;
    font-size: 14px;
}

/* 主标题 */
.main-head {
    font-size: 22px;
    font-weight: 700;
    color: #173396;
    text-align: center;
    padding: 30px 0 20px;
    position: relative;
}

.main-head::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #173396, #FFE617);
    border-radius: 2px;
}

/* 协议框 */
.apply-agreement-box {
    max-width: 1000px;
    margin: 20px auto;
    height: 400px;
    border: 1px solid #e8ecf1;
    border-radius: 12px;
    padding: 25px;
    overflow: auto;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    line-height: 1.8;
    color: #4a5568;
}

.apply-agreement-box .tip {
    color: #718096;
}

/* 表单区域 */
.apply-box, .apply-box2 {
    max-width: 1000px;
    margin: 20px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 30px;
    border: none;
}

.apply-box2 {
    border-top: 4px solid #173396;
}

/* 表格样式 */
.agreement-table {
    width: 100%;
    border-collapse: collapse;
}

.agreement-table th {
    text-align: right;
    width: 200px;
    padding: 15px 20px;
    color: #4a5568;
    font-weight: 500;
    vertical-align: top;
}

.agreement-table td {
    padding: 12px 20px;
    text-align: left;
}

.agreement-table input[type=text],
.agreement-table textarea,
.agreement-table select {
    width: 100%;
    max-width: 400px;
    padding: 12px 15px;
    border: 2px solid #e8ecf1;
    border-radius: 10px;
    font-size: 14px;
    color: #2d3748;
    transition: all 0.3s ease;
    font-family: inherit;
}

.agreement-table input[type=text]:focus,
.agreement-table textarea:focus,
.agreement-table select:focus {
    border-color: #173396;
    box-shadow: 0 0 0 4px rgba(23,51,150,0.08);
    outline: none;
}

.agreement-table .c-tip {
    padding-top: 8px;
    color: #718096;
    font-size: 13px;
}

.agreement-table .head-ititle {
    background: linear-gradient(90deg, #173396, #1e3faa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-left: 0;
    font-weight: 700;
    font-size: 16px;
}

/* 复选框和单选框 */
.agreement-table label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 25px;
    cursor: pointer;
    color: #4a5568;
}

.agreement-table input[type=radio],
.agreement-table input[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: #173396;
    cursor: pointer;
}

/* 协议确认 */
.agreement_box {
    text-align: center;
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fb;
    border-radius: 12px;
}

.agreement_box label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #4a5568;
    cursor: pointer;
}

.agreement_box input[type=checkbox] {
    width: 20px;
    height: 20px;
    accent-color: #173396;
}

/* 底部按钮 */
.agreement-bottom {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.agreement-bottom a {
    padding: 14px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.agreement-bottom .btn-submit {
    background: linear-gradient(135deg, #173396 0%, #1e3faa 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(23,51,150,0.3);
}

.agreement-bottom .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23,51,150,0.4);
}

.agreement-bottom .btn-cancel {
    background: #f8f9fb;
    color: #718096;
    border: 2px solid #e8ecf1;
}

.agreement-bottom .btn-cancel:hover {
    border-color: #173396;
    color: #173396;
}

/* ========== 支付区域 ========== */
.pay-box {
    border: 1px solid #e8ecf1;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
}

.pay-sbox {
    border: 1px solid #e8ecf1;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
}

.pay-sbox .tips-box {
    background: linear-gradient(90deg, rgba(23,51,150,0.05) 0%, rgba(255,230,23,0.05) 100%);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #173396;
}

.pay-sbox .pay-type {
    font-size: 16px;
    font-weight: 600;
    color: #173396;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #FFE617;
}

.pay-sbox .qrcode-box .pbox {
    color: #173396;
    font-weight: 600;
}

.pay-sbox .wst-qrcode {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* 钱包支付 */
.balance-box .wst-wallet-box {
    background: linear-gradient(90deg, rgba(23,51,150,0.05) 0%, rgba(255,230,23,0.05) 100%);
    border: 1px solid #e8ecf1;
    border-radius: 10px;
}

.pay-btn {
    background: linear-gradient(135deg, #173396 0%, #1e3faa 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    padding: 10px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23,51,150,0.3);
}

/* ========== 审核状态卡片（已有新样式，更新主题色） ========== */
.review-status-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.review-status-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(23,51,150,0.1);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(23,51,150,0.08);
}

.review-status-title {
    color: #173396;
}

.review-status-title.rejected-title {
    color: #e53e3e;
}

.review-status-title.approved-title {
    color: #38a169;
}

.review-btn-primary {
    background: linear-gradient(135deg, #173396 0%, #1e3faa 100%);
    box-shadow: 0 4px 15px rgba(23,51,150,0.3);
}

.review-btn-primary:hover {
    background: linear-gradient(135deg, #1e3faa 0%, #2a4bc0 100%);
    box-shadow: 0 8px 25px rgba(23,51,150,0.4);
}

/* ========== 上传组件 ========== */
.upload-picker {
    background: linear-gradient(135deg, #f8f9fb 0%, #fff 100%);
    border: 2px dashed #c5cee0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    color: #718096;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-picker:hover {
    border-color: #173396;
    color: #173396;
    background: rgba(23,51,150,0.02);
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .apply-banner .wst-container {
        flex-direction: column;
        text-align: center;
    }
    .apply-msg-box {
        width: 100%;
        max-width: 500px;
        margin-bottom: 30px;
    }
    .apply-banner .banner-visual {
        display: none;
    }
    .apply-step {
        flex-wrap: wrap;
        gap: 30px;
    }
    .apply-step span.arrow {
        display: none;
    }
    .stepflex {
        flex-wrap: wrap;
    }
    .stepflex dl {
        min-width: 120px;
    }
}

/* ========== 通用覆盖 ========== */
.wst-fred {
    color: #e53e3e;
    font-weight: 700;
}

.examine-tips {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #718096;
}

/* 商品分类 */
.goodsCat {
    background: #f8f9fb;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.goodsCat:hover {
    background: rgba(23,51,150,0.05);
}

/* 地图容器 */
#container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
