﻿@charset "UTF-8";
<style>
/* 服务部分样式 */
.services-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(26, 111, 176, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(239, 124, 27, 0.05) 0%, transparent 25%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin: 20px;
    margin-bottom: 60px;
}
.section-title1 {
    text-align: center;
    
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-title1 h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}
.section-title h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.section-title .highlight {
    color: #2f287b;
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2f287b, transparent);
    border-radius: 3px;
}

.section-title .subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(26, 111, 176, 0.2);
    border-color: rgba(26, 111, 176, 0.25);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2f287b, #e53935);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: rgba(99,26,176,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: #2f287b;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(26, 111, 176, 0.15);
    box-shadow: 0 5px 15px rgba(26, 111, 176, 0.15);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #1a6fb0;
}

.card-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.card-description::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #2f287b;
    border-radius: 2px;
}

.badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.badge-premium {
    background: linear-gradient(45deg, #2f287b #8372cd);
    color: white;
}

.badge-fast {
    background: rgba(239,27,27, 0.15);
    color: #e53935;
    border: 1px solid rgba(239, 124, 27, 0.3);
}

.badge-pro {
    background: linear-gradient(45deg, #2c3e50, #1c2833);
    color: white;
}

.badge-bga {
    background: rgba(239,27,27, 0.15);
    color: #e53935;
    border: 1px solid rgba(239, 124, 27, 0.3);
}

.badge-express {
    background: linear-gradient(45deg, #2f287b, #2f287b);
    color: white;
}

.badge-24h {
    background: rgba(44, 62, 80, 0.1);
    color: #2c3e50;
    border: 1px solid rgba(44, 62, 80, 0.15);
}

.capabilities {
    background: rgba(99,26,176,0.04);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 3px solid #2f287b;
}

.capability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.capability-list li:last-child {
    border-bottom: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #2f287b;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
    background: rgba(99,26,176,0.04);
    padding: 15px;
    border-radius: 8px;
    border-right: 3px solid #2f287b;
}

.spec {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.spec:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.spec-value {
    color: #8372cd;
    font-weight: 600;
}

.action-area {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #2f287b;
    color: white;
    border: 1px solid #2f287b;
}

.btn-primary:hover {
    background: #155a8c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 111, 176, 0.2);
}

.btn-secondary {
    background: white;
    color: #2c3e50;
    border: 1px solid rgba(44, 62, 80, 0.2);
}

.btn-secondary:hover {
    background: #f0f0f0;
    border-color: rgba(44, 62, 80, 0.3);
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .action-area {
        flex-direction: column;
    }
}