/* 小三分离页面样式 */

/* 页面头部 */
.fenlei-header {
    background: linear-gradient(135deg, #ff9f8f 0%, #ff7e66 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
}

.fenlei-page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.fenlei-breadcrumb {
    font-size: 16px;
    opacity: 0.9;
}

.fenlei-breadcrumb a {
    color: #fff;
}

.fenlei-breadcrumb span {
    margin: 0 10px;
}

/* 服务介绍 */
.fenlei-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.fenlei-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.fenlei-section-title.text-center {
    text-align: center;
}

.fenlei-intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 2;
    color: #555;
    text-align: center;
}

/* 服务内容 */
.fenlei-services {
    padding: 80px 0;
}

.fenlei-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fenlei-service-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s;
}

.fenlei-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background: #fff;
}

.fenlei-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff9f8f, #ff7e66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin-bottom: 25px;
}

.fenlei-service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.fenlei-service-card > p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.fenlei-service-list {
    list-style: none;
}

.fenlei-service-list li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.fenlei-service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff9f8f;
    font-weight: 700;
}

/* 适用场景 */
.fenlei-scenarios {
    padding: 80px 0;
    background: #f8f9fa;
}

.fenlei-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fenlei-scenario-item {
    background: #fff;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.fenlei-scenario-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.fenlei-scenario-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 159, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ff9f8f;
    font-size: 26px;
}

.fenlei-scenario-item h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fenlei-scenario-item p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 14px;
}

/* 成功案例 */
.fenlei-cases {
    padding: 80px 0;
}

.fenlei-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fenlei-case-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s;
}

.fenlei-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.fenlei-case-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff9f8f;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.fenlei-case-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.fenlei-case-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.fenlei-case-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #7f8c8d;
}

.fenlei-case-info i {
    color: #ff9f8f;
    margin-right: 5px;
}

/* 服务流程 */
.fenlei-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.fenlei-process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fenlei-process-step {
    text-align: center;
    flex: 0 0 150px;
}

.fenlei-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff9f8f, #ff7e66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.fenlei-process-step h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.fenlei-process-step p {
    font-size: 14px;
    color: #7f8c8d;
}

.fenlei-process-arrow {
    font-size: 24px;
    color: #ff9f8f;
    font-weight: 700;
}

/* CTA */
.fenlei-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff9f8f, #ff7e66);
    color: #fff;
    text-align: center;
}

.fenlei-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.fenlei-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* 响应式 */
@media (max-width: 992px) {
    .fenlei-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fenlei-scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fenlei-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .fenlei-process-arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .fenlei-page-title {
        font-size: 32px;
    }
    
    .fenlei-section-title {
        font-size: 28px;
    }
    
    .fenlei-services-grid {
        grid-template-columns: 1fr;
    }
    
    .fenlei-scenarios-grid {
        grid-template-columns: 1fr;
    }
}

