/* 申请开店页面样式 */

.apply-shop-main {
  
    background: #f5f5f5;
    min-height: 100vh;
}

.top-right-links {
    display: flex;
    gap: 20px;
}

.top-right-links a {
    color: #333;
    font-size: 14px;
}

/* 提示横幅 */
.notice-banner {
    background: #fffbea;
    border: 1px solid #ffe58f;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    color: #333;
}

.notice-banner a {
    color: #ff4419;
}

/* 内容布局 */
.apply-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* 左侧边栏 */
.apply-sidebar {
    width: 200px;
    background: #fff;
    border-radius: 4px;
    flex-shrink: 0;
}

.sidebar-section {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-section h3 {
    padding: 15px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    background: #f8f8f8;
}

.sidebar-section ul {
    list-style: none;
}

.sidebar-section li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-section li:last-child {
    border-bottom: none;
}

.sidebar-section a {
    display: block;
    padding: 12px 15px;
    color: #666;
    font-size: 13px;
    transition: all 0.3s;
}

.sidebar-section a:hover {
    background: #f5f5f5;
    color: #ff4419;
}

/* 表单区域 */
.apply-form-area {
    flex: 1;
    background: #fff;
    border-radius: 4px;
    padding: 30px;
}

/* 步骤指示器 */
.steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d9d9d9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.step.active .step-number {
    background: #8b6914;
}

.step-text {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}

.step.active .step-text {
    color: #333;
    font-weight: bold;
}

.step-arrow {
    font-size: 24px;
    color: #d9d9d9;
    margin: 0 20px;
}

/* 表单样式 */
.shop-apply-form {
    max-width: 800px;
}

.form-group {
    display: flex;
    margin-bottom: 25px;
}

.form-label {
    width: 120px;
    padding-top: 8px;
    font-size: 14px;
    color: #333;
    text-align: right;
    padding-right: 15px;
    flex-shrink: 0;
}

.form-input {
    flex: 1;
}

.form-input input[type="text"],
.form-input textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-input input[type="text"]:focus,
.form-input textarea:focus {
    border-color: #ff4419;
    outline: none;
}

.form-input textarea {
    resize: vertical;
    font-family: inherit;
}

/* 上传区域 */
.upload-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.upload-btn {
    padding: 6px 15px;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.upload-btn:hover {
    border-color: #ff4419;
    color: #ff4419;
}

.upload-text {
    font-size: 13px;
    color: #999;
}

.form-hint {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

/* 图片预览区域 */
.image-preview-area {
    width: 200px;
    height: 150px;
    border: 1px dashed #d9d9d9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

.preview-placeholder {
    color: #999;
    font-size: 13px;
}

/* 复选框 */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.agreement-link {
    color: #ff4419;
}

/* 提交按钮 */
.submit-btn {
    padding: 10px 50px;
    background: #ff4419;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #ff5a2e;
}

/* 响应式 */
@media (max-width: 767px) {
    .apply-content {
        flex-direction: column;
    }

    .apply-sidebar {
        width: 100%;
    }

    .form-group {
        flex-direction: column;
    }

    .form-label {
        width: 100%;
        text-align: left;
        padding-right: 0;
        padding-bottom: 5px;
    }
}
