/* 走马探花 - 服务页面SEO区块样式 */

/* SEO区块主容器 */
.service-seo-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.service-seo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-seo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* SEO内容网格布局 */
.service-seo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* 主要内容区域 */
.service-seo-content {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-seo-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FF2E6C 0%, #FF7AB6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-seo-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-seo-description p {
    margin-bottom: 1.5rem;
}

.service-seo-description p:last-child {
    margin-bottom: 0;
}

/* 关键词标签区域 */
.service-seo-keywords {
    margin-top: 2rem;
}

.service-seo-keywords-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-keywords-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-keyword-tag {
    background: linear-gradient(135deg, #FF2E6C 0%, #FF7AB6 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-keyword-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 46, 108, 0.4);
}

/* 侧边栏统计区域 */
.service-seo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-stats-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.service-stats-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.service-stats-grid {
    display: grid;
    gap: 1.5rem;
}

.service-stat-item {
    text-align: center;
}

.service-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF2E6C 0%, #FF7AB6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.service-stat-label {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
}

/* 服务优势卡片 */
.service-advantages-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-advantages-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-advantage-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.service-advantage-item:last-child {
    border-bottom: none;
}

.service-advantage-icon {
    font-size: 1.25rem;
    margin-right: 0.75rem;
    width: 24px;
    text-align: center;
}

.service-advantage-text {
    font-size: 0.875rem;
    color: #4a5568;
    font-weight: 500;
}

/* 城市覆盖区域 */
.service-cities-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-cities-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.service-city-item {
    background: #f7fafc;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.875rem;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-city-item:hover {
    background: linear-gradient(135deg, #FF2E6C 0%, #FF7AB6 100%);
    color: white;
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .service-seo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-seo-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-seo-section {
        padding: 3rem 0;
    }
    
    .service-seo-container {
        padding: 0 1rem;
    }
    
    .service-seo-content {
        padding: 2rem;
    }
    
    .service-seo-title {
        font-size: 1.875rem;
    }
    
    .service-seo-description {
        font-size: 1rem;
    }
    
    .service-stats-card,
    .service-advantages-card,
    .service-cities-card {
        padding: 1.5rem;
    }
    
    .service-stat-number {
        font-size: 2rem;
    }
    
    .service-cities-grid {
        grid-template-columns: 1fr;
    }
    
    .service-seo-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-seo-content {
        padding: 1.5rem;
    }
    
    .service-seo-title {
        font-size: 1.5rem;
    }
    
    .service-keywords-grid {
        gap: 0.5rem;
    }
    
    .service-keyword-tag {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }
}
