/* 产品与服务区域样式 */
.product-item {
    margin-bottom: var(--spacing-xl);
}

.product-item:last-child {
    margin-bottom: 0;
}

.product-name {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-desc-title {
    font-size: 23px;
    font-weight: 600;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 18px;
    position: relative;
}


.product-desc-content p {
    color: rgba(102, 102, 102, 1);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 22px;
    font-family: 'SimSun', '宋体', serif;
}

/* 二维码区域 */
.qr-codes {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.qr-item {
    text-align: center;
}

.qr-item img {
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 8px;
    transition: var(--transition);
}

.qr-item span {
    display: block;
    font-size: 18px;
    color: red;
}

.qr-item:hover img {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

/* 反向布局支持 (VidPop) */
.product-item.reverse .product-info {
    order: 1;
}

.product-item.reverse .product-image {
    order: 2;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .grid-2-v-center {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-item.reverse .product-info,
    .product-item.reverse .product-image {
        order: initial;
    }

    .product-image {
        text-align: center;
    }

    .product-image img {
        max-width: 80%;
        margin: 0 auto;
    }

    .qr-codes {
        justify-content: center;
    }
}

/* 移动端申请试用按钮缩小并居中 */
@media (max-width: 768px) {
    .product-info .btn-primary-2 {
        font-size: 16px !important;
        padding: 16px 32px !important;
        margin-top: 20px !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .product-info .btn-primary-2 {
        font-size: 14px !important;
        padding: 14px 28px !important;
        margin-top: 15px !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: fit-content;
    }
}