/* 服务页面新样式 */
.services-section {
    margin: 40px 0 80px;
    position: relative;
    z-index: 1;
}

.service-block {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 20px rgba(52, 152, 219, 0.05);
    margin-bottom: 60px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-block:hover {
    transform: translateY(-10px) perspective(1000px) rotateX(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 25px rgba(52, 152, 219, 0.25);
    border-color: rgba(52, 152, 219, 0.3);
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(52, 152, 219, 0) 50%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-block:hover::before {
    opacity: 1;
}

.service-header {
    padding: 40px 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 250, 255, 0.9));
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.service-icon {
    font-size: 2.8rem;
    color: #fff;
    background: linear-gradient(135deg, #3498db, #2980b9, #1a5276);
    width: 120px;
    height: 120px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 40px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.25), 0 0 0 8px rgba(52, 152, 219, 0.05);
    border: 3px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    top: -50%;
    left: -50%;
    transition: all 0.5s ease;
    opacity: 0;
}

.service-block:hover .service-icon {
    transform: translateZ(30px) scale(1.08);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.4), 0 0 0 12px rgba(52, 152, 219, 0.08);
    background: linear-gradient(135deg, #3498db, #2980b9, #1a5276);
    border-color: rgba(255, 255, 255, 0.9);
}

.service-block:hover .service-icon::after {
    top: -20%;
    left: -20%;
    opacity: 1;
}

.service-title {
    flex: 1;
}

.service-title h3 {
    font-size: 2.2rem;
    color: #0a2b5f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.service-title h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #8e44ad, transparent);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 3px;
}

.service-block:hover .service-title h3 {
    color: #1e56a0;
    transform: translateY(-2px);
}

.service-block:hover .service-title h3::after {
    width: 100%;
}

.service-title p {
    color: #5a6a7f;
    font-size: 1.15rem;
    line-height: 1.7;
    transition: all 0.4s ease;
    max-width: 95%;
    margin-top: 5px;
}

.service-block:hover .service-title p {
    color: #333;
    transform: translateZ(5px);
}

.service-content {
    display: flex;
    padding: 40px 50px;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.service-block:hover .service-content {
    background: linear-gradient(135deg, #f8f9fa, #f0f8ff);
}

/* 左右交替布局 */
.reverse-layout .service-content {
    flex-direction: row-reverse;
}

.reverse-layout .service-image {
    margin-left: 0;
    margin-right: 30px;
}

.feature-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 20px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateX(0);
    opacity: 1;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.feature-list li:hover {
    background: rgba(52, 152, 219, 0.08);
    transform: translateX(15px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 0 10px rgba(52, 152, 219, 0.25);
    border-left-color: #3498db;
    border-color: rgba(52, 152, 219, 0.2);
}

.reverse-layout .feature-list li:hover {
    transform: translateX(-15px);
    border-right: 3px solid #3498db;
    border-color: rgba(52, 152, 219, 0.2);
}

.feature-list li i {
    color: white;
    margin-right: 15px;
    margin-top: 2px;
    font-size: 1rem;
    background: linear-gradient(135deg, #3498db, #1e56a0, #0a2b5f);
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.feature-list li:hover i {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.5);
}

.feature-list li i::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-list li:hover i::after {
    opacity: 1;
}

.feature-list li strong {
    color: #0a2b5f;
    margin-right: 5px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.service-image {
    flex: 1;
    margin-left: 30px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 43, 95, 0.2), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-image:hover::before {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(1);
}

.service-image:hover img {
    transform: scale(1.08);
}

.service-block:hover .service-image {
    transform: translateZ(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 15px rgba(52, 152, 219, 0.2);
}

/* 企业服务部分样式 */
.enterprise-section {
    margin: 80px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    color: #0a2b5f;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #8e44ad);
    border-radius: 4px;
}

.enterprise-block {
    background: linear-gradient(145deg, #f8f9fa, #f0f8ff);
    border: 1px solid rgba(52, 152, 219, 0.15);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 24px;
    overflow: hidden;
}

.enterprise-block:hover {
    transform: translateY(-10px) perspective(1000px) rotateX(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 30px rgba(10, 43, 95, 0.25);
    border-color: rgba(10, 43, 95, 0.3);
}

.enterprise-icon {
    background: linear-gradient(135deg, #0a2b5f, #1e56a0, #3498db);
    border: 3px solid rgba(255, 255, 255, 0.8);
    color: white;
    width: 130px;
    height: 130px;
    font-size: 3rem;
    transform-style: preserve-3d;
}

.enterprise-block:hover .enterprise-icon {
    transform: translateZ(25px) scale(1.05);
    box-shadow: 0 15px 30px rgba(10, 43, 95, 0.3);
    background: linear-gradient(135deg, rgba(10, 43, 95, 0.2), rgba(52, 152, 219, 0.3));
    border-color: rgba(10, 43, 95, 0.3);
}

.enterprise-content {
    background: linear-gradient(135deg, #f0f8ff, #ffffff);
    transition: all 0.4s ease;
}

.enterprise-block:hover .enterprise-content {
    background: linear-gradient(135deg, #f0f8ff, #f8fcff);
}

.enterprise-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform-style: preserve-3d;
}

.enterprise-features .feature-list li {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.enterprise-block:hover .enterprise-features .feature-list li {
    transform: translateZ(10px);
}

.enterprise-image {
    flex: 1;
    margin-left: 30px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.enterprise-block:hover .enterprise-image {
    transform: translateZ(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 20px rgba(10, 43, 95, 0.2);
}

.enterprise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: perspective(1000px) rotateY(-5deg);
    border: 5px solid white;
    filter: saturate(0.9);
}

.enterprise-image:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    filter: saturate(1.1) brightness(1.05);
    border-color: rgba(52, 152, 219, 0.3);
}

/* 响应式样式 */
@media (max-width: 992px) {
    .service-content {
        flex-direction: column;
    }
    
    .service-image {
        margin-left: 0;
        margin-top: 30px;
        max-height: 300px;
    }
    
    .enterprise-content {
        flex-direction: column;
    }
    
    .enterprise-image {
        margin-left: 0;
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .service-block {
        margin-bottom: 40px;
    }
    
    .feature-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .service-title h3 {
        font-size: 1.5rem;
    }
    
    .service-title p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-content {
        padding: 25px 30px;
    }
    
    .feature-list li {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .feature-list li i {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        margin-right: 10px;
    }
    
    .feature-list li strong {
        font-size: 1rem;
    }
    
    .enterprise-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .service-block {
        border-radius: 20px;
    }
    
    .service-header {
        padding: 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-title h3 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .feature-list li {
        padding: 12px;
        border-radius: 10px;
    }
    
    .enterprise-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}