/* 选址委托页专属样式 */

/* 顶部横幅区 */
.entrust-hero {
    position: relative;
    padding: 0;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* 背景图片 - 全铺开 */
.entrust-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.entrust-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 遮罩层 - 浅色，让文字清晰 */
.entrust-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0.5) 100%);
    z-index: 2;
}

.entrust-hero .container {
    position: relative;
    z-index: 3;
    padding: 60px 20px;
}

.entrust-hero-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    width: 100%;
}

.entrust-hero-left {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.platform-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #e74c3c;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.entrust-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 15px;
    text-align: left;
}

.entrust-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    text-align: left;
}

.entrust-form {
    display: flex;
    max-width: 450px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.entrust-input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
}

.entrust-input::placeholder {
    color: #999;
}

.entrust-btn {
    padding: 14px 30px;
    background: #e74c3c;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.entrust-btn:hover {
    background: #c0392b;
}

/* 选址服务流程 */
.entrust-process {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title h2::before,
.section-title h2::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    margin: 0 12px;
    vertical-align: middle;
}

.section-title p {
    font-size: 16px;
    color: #999;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    width: 160px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #fff5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-icon svg {
    width: 36px;
    height: 36px;
    color: #e74c3c;
}

.step-num {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h3 {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-top: 10px;
}

.process-arrow {
    color: #e74c3c;
    flex-shrink: 0;
}

.process-arrow svg {
    width: 24px;
    height: 24px;
}

/* 核心服务能力 */
.entrust-capability {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.capability-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.capability-item {
    text-align: center;
    padding: 20px 40px;
}

.capability-num {
    margin-bottom: 10px;
}

.capability-num .num {
    font-size: 48px;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
}

.capability-num .unit {
    font-size: 18px;
    color: #e74c3c;
    font-weight: 500;
}

.capability-desc {
    font-size: 14px;
    color: #666;
}

.capability-divider {
    width: 1px;
    height: 80px;
    background: #ddd;
}

/* 底部CTA */
.entrust-cta {
    padding: 40px 0;
    background: #fff;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-content span {
    font-size: 20px;
    color: #333;
    font-weight: 500;
}

.cta-btn {
    padding: 12px 32px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #c0392b;
}

/* 响应式 */
@media (max-width: 768px) {
    .entrust-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .entrust-hero-left {
        max-width: 100%;
    }

    .entrust-title {
        font-size: 28px;
    }

    .entrust-form {
        max-width: 100%;
        margin: 0 auto;
    }

    .entrust-hero-right {
        width: 100%;
        max-width: 300px;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .capability-stats {
        flex-direction: column;
        gap: 20px;
    }

    .capability-divider {
        width: 80px;
        height: 1px;
    }

    .capability-num .num {
        font-size: 36px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}