/* 软件产品板块样式 */
#software-products .services-item {
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

#software-products .services-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#software-products .services-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.software-img {
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.software-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#software-products .services-item:hover .software-img img {
    transform: scale(1.05);
}

#software-products .services-body {
    padding: 25px;
    background-color: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#software-products .services-body h4 {
    color: #0045E1;
    margin-bottom: 15px;
    font-weight: 600;
}

#software-products .services-body p {
    margin-bottom: 20px;
    color: #666;
    flex: 1;
}

.software-link {
    color: #0045E1 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.software-link:hover, #software-products .services-item:hover .software-link {
    color: #3a31f0 !important;
    text-decoration: none;
}

.software-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.software-link:hover i, #software-products .services-item:hover .software-link i {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .software-img {
        height: 180px;
    }
} 

.bg-grey {
    background: #eaeaea;
}
