/* 产品卡片 - 统一样式（保持图片左右布局） */
.product-service .item {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15,172,243,0.08) 0%, rgba(0,160,233,0.12) 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(0,160,233,0.15);
}
.product-service .cover {
    width: 50%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,160,233,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-service .cover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,160,233,0.3);
}
.product-service .text {
    width: 50%;
}
.product-service .title {
    padding: 0 2rem;
    box-sizing: border-box;
}
.product-service .desc {
    padding: 0 2rem;
    margin-top: 1rem;
    box-sizing: border-box;
}

/* 图片左右交替布局 */
.product-service .item:nth-child(2n) {
    flex-direction: row-reverse;
}
.product-service .item:nth-child(2n) .cover {
    order: 2;
}
.product-service .item:nth-child(2n) .text {
    order: 1;
}

.brand {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.brand  > div{
    width: 24%;
    min-width: 150px;
    height: 80px;
    line-height: 80px;
    box-sizing: border-box;
    box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.4);
    text-align: center;
    padding: 0 10px;
}

.brand > div img {
    max-height: 100%;
    object-fit: contain;
    background-color: #fff;
}

.more-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 30px;
    background-color: #0facf3;
    color: #fff;
}

.more-btn:hover {
    color: #fff;
}

.section-partner .container .item .cover {
    width: 100%;
    object-fit: contain;
    /* display: none; */
    opacity: 0;
}

.bg-cover {
    position: relative;
    background-color: #eee;
}
.bg-cover .cover {
    opacity: 0;
}
.bg-cover .more-tip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
}

.brand-btn {
    margin: 0 auto;
    width: 150px;
    text-align: center;
    display: block;
}

.section-partner .section-header {
    max-width: 100%;
}

@media (max-width: 768px){
    .product-service .item{
      /* display: flex; */
      width: 100%;
      flex-wrap: wrap;
    }
    
    .product-service .cover {
        width: 100%;
        margin-bottom: 1rem;
    }
    .product-service .text {
        width: 100%;
    }
    .pro-content .item {
        width: 25%;
    }
    .brand  > div {
        width: 48%;
    }

    .product-service .item:nth-child(2n) .cover {
        order: 1;
    }

    .product-service .item:nth-child(2n) .text {
        order: 2;
    }

    .more-btn {
        margin-bottom: 20px;
    }
}
/* 软件定制服务 */
.advantage {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.advantage .item {
    border: 1px solid #aaaaaa;
    width: 20%;
    padding: 0.8rem 0;
}
@media (max-width: 768px){
    .advantage .item {
        width: 45%;
        
    }
    .advantage .item:nth-child(1) {
        margin-bottom: 1rem;
    }
    .advantage .item:nth-child(2) {
        margin-bottom: 1rem;
    }

    .bg-cover .more-tip {
        width: 100%;
        height: 100%;
        left: 0;
    }
}

@media (max-width: 992px) {
    .section-partner .container .item {
        width: 100%;
    }
}