/* 产品与服务卡片样式 */
@keyframes service-glow {
    0% { box-shadow: 0 15px 40px rgba(0, 174, 255, 0.3), 0 0 20px rgba(0, 174, 255, 0.2); }
    50% { box-shadow: 0 15px 40px rgba(0, 174, 255, 0.5), 0 0 30px rgba(0, 174, 255, 0.4); }
    100% { box-shadow: 0 15px 40px rgba(0, 174, 255, 0.3), 0 0 20px rgba(0, 174, 255, 0.2); }
}

.services-card-item-style2 {
    background: rgba(5, 10, 20, 0.7);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 174, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    padding: 30px;
}

.services-card-item-style2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 174, 255, 0.3), 0 0 20px rgba(0, 174, 255, 0.2);
    border: 1px solid rgba(0, 174, 255, 0.5);
    /*
    background: rgba(8, 20, 40, 0.8);
    */
    background: #000 !important;
    animation: service-glow 2s infinite;
}

.services-card-item-style2 .icon {
    margin-bottom: 20px;
    color: #00aeff;
    text-shadow: 0 0 15px rgba(0, 174, 255, 0.7);
}

.services-card-item-style2 .icon div {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0, 174, 255, 0.1);
    border: 1px solid rgba(0, 174, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 174, 255, 0.2);
    margin-bottom: 20px;
}

.services-card-item-style2 .icon div i {
    font-size: 32px;
    color: #00aeff;
}

.services-card-item-style2 .content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 174, 255, 0.5);
}

.services-card-item-style2 .content h2 a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-card-item-style2 .content h2 a:hover {
    color: #00aeff;
}

.services-card-item-style2 .content p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.services-card-item-style2 .content .read-more {
    color: #00aeff;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.services-card-item-style2 .content .read-more:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 174, 255, 0.7);
}

.services-card-item-style2 .content .read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.services-card-item-style2 .content .read-more:hover i {
    transform: translateX(5px);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .services-card-item-style2 {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .services-card-item-style2 .icon div {
        width: 60px;
        height: 60px;
        line-height: 60px;
        margin: 0 auto 15px;
    }
    
    .services-card-item-style2 .icon div i {
        font-size: 28px;
    }
    
    .services-card-item-style2 .content h2 {
        font-size: 18px;
        text-align: center;
    }
    
    .services-card-item-style2 .content p {
        font-size: 14px;
        text-align: center;
    }
    
    .services-card-item-style2 .content .read-more {
        display: block;
        text-align: center;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .services-card-item-style2 {
        padding: 15px;
    }
    
    .services-card-item-style2 .icon div {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    
    .services-card-item-style2 .icon div i {
        font-size: 24px;
    }
    
    .services-card-item-style2 .content h2 {
        font-size: 16px;
    }
    
    .services-card-item-style2 .content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
}
