/* 页面顶部横幅 */
.page-banner {
    background: linear-gradient(135deg, #e4f8d7 0%, #c2e7a5 100%);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.page-banner p {
    font-size: 18px;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* 入驻申请区域 */
.apply-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.apply-wrapper {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 40px;
}

/* 步骤指示器 */
.apply-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: var(--white);
}

.step-text {
    font-size: 14px;
    color: var(--light-text);
}

.step.active .step-text {
    color: var(--primary-color);
    font-weight: 500;
}

.step-line {
    flex: 1;
    height: 2px;
    background-color: #f5f5f5;
    margin: 0 10px;
    position: relative;
    top: -20px;
}

/* 表单区域 */
.apply-form h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.form-note {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 30px;
}

.required {
    color: #ff5252;
    margin-left: 3px;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group.half {
    flex: 1;
    margin-bottom: 0;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--white);
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(123, 195, 74, 0.1);
    outline: none;
}

select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox input {
    margin-right: 8px;
}

/* 文件上传区域 */
.upload-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.upload-item {
    flex: 1;
    min-width: 200px;
}

.upload-label {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.upload-area {
    border: 2px dashed #ddd;
    border-radius: 4px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background-color: #f9f9f9;
}

.upload-area:hover {
    border-color: var(--primary-color);
    background-color: rgba(123, 195, 74, 0.05);
}

.upload-area i {
    font-size: 30px;
    color: var(--light-text);
    margin-bottom: 10px;
}

.upload-area p {
    font-size: 14px;
    color: var(--light-text);
}

.file-input {
    display: none;
}

.preview-image {
    max-width: 100%;
    max-height: 120px;
    margin-top: 10px;
    border-radius: 4px;
}

.agree-terms {
    margin: 30px 0;
}

.agree-terms a {
    color: var(--primary-color);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.submit-btn, .reset-btn {
    padding: 12px 30px;
    font-size: 16px;
}

/* 入驻流程 */
.apply-process {
    padding: 80px 0;
    background-color: var(--white);
}

.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.process-item {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    text-align: center;
    padding: 20px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.process-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.process-item p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.5;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    color: var(--light-text);
}

/* 常见问题 */
.apply-faq {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

.faq-question i {
    color: var(--light-text);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--light-text);
    line-height: 1.6;
}

/* 联系信息 */
.contact-info {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 26px;
}

.contact-card h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .apply-wrapper {
        padding: 30px;
    }
    
    .process-flow {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .process-item {
        display: flex;
        align-items: center;
        text-align: left;
        max-width: 100%;
        width: 100%;
    }
    
    .process-icon {
        margin: 0 20px 0 0;
        width: 60px;
        height: 60px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .apply-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step {
        margin: 10px 20px;
    }
    
    .step-line {
        display: none;
    }
    
    .form-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .upload-group {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .apply-wrapper {
        padding: 20px;
    }
    
    .page-banner h1 {
        font-size: 28px;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
} 