/* 产品标题样式 */
.product-title {
    width: 100%;
    padding: 20px 0;
}

.product-title .main-title,
.product-title .sub-title {
    width: 1024px;
    margin: 0 auto;
    font-size: 1.6rem;
    color: #333;
    text-align: center;
    padding: 0;
}

.product-title .main-title {
    font-weight: 600;
}

.product-title .sub-title {
    padding: 0;
    font-size: 0.9rem;
    color: #666;
}

/* 通栏背景容器 */
.product-list-wrapper {
    width: 100%;
    background-color: #F4f4f4;
    padding: 20px 0;
}

.product-list {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
    padding: 0 15px;
}

.product-list .product-item {
    display: flex;
    width: calc(33.33% - 20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.product-list .product-item img {
    box-sizing: border-box;
    width: 50%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.product-list .product-item p {
    font-weight: 600;
    padding: 20px 0;
    font-size: 0.9rem;
}

.product-list .product-item span {
    font-size: 0.75rem;
}

/* 产品大图配文本容器 */
.productCol2 {
    max-width: 1024px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.productCol2 img {
    width: 70%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.productCol2 p {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

.productCol2 p span {
    display: block;
    font-size: 0.65rem;
}

.a {
    width: 100%;
    padding: 20px 0;
}

.b {
    width: 1024px;
    margin: 0 auto;
    padding: 20px 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.c {
    text-align: center;
    padding: 20px;
}

.c img {
    box-sizing: border-box;
    width: 60%;
}

.c p {
    padding: 30px 10px 10px 10px;
    text-align: center;
}

.c span {
    padding: 5px;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
    color: #666;
}

.col2 {
    max-width: 1024px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.col2_1,
.col2_2 {
    width: 50%;
    height: 100%;
    box-sizing: border-box;
}

.col2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.col2_1 {}

.col2_2 {}

/* 小于768px的移动设备 - 强制显示两列 */
@media (max-width: 768px) {
    .product-title {
        width: 100%;
        padding: 20px 0;
    }

    .product-title .main-title,
    .product-title .sub-title {
        width: 100%;
        margin: 0 auto;
        font-size: 1.6rem;
        color: #333;
        text-align: center;
        padding: 0;
    }

    .product-title .sub-title {
        padding: 0;
        font-size: 0.9rem;
        color: #666;
    }

    .a {
        width: 100%;
        padding: 20px 0;
    }

    .b {
        width: 100%;
    }

    .c {
        text-align: center;
        padding: 20px;
    }

    /* 调整标题样式 */
    .product-title {
        padding: 15px 0 !important;
    }

    .product-title .main-title {
        font-size: 1.3rem !important;
    }

    .product-title .sub-title {
        font-size: 0.8rem !important;
    }

    .productCol2 {
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        align-items: center;
        position: relative;
    }

    .productCol2 img {
        width: 100%;
        height: auto;
        object-fit: contain;
        flex-shrink: 0;
    }

    .productCol2 p {
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 100%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        height: 100%;
        box-sizing: border-box;
    }

    .product-list {
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 5px;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .product-list .product-item {
        display: flex;
        width: calc(50% - 5px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .product-list .product-item img {
        box-sizing: border-box;
        width: 50%;
        height: auto;
        object-fit: contain;
        flex-shrink: 0;
    }

    .product-list .product-item p {
        font-size: 0.9rem;
    }

    .product-list .product-item span {
        font-size: 0.6rem;
    }
}

/* 优化中等屏幕下的显示效果 */
@media (max-width: 1024px) and (min-width: 768px) {
    .product-title {
        width: 100%;
        padding: 20px 0;
    }

    .product-title .main-title,
    .product-title .sub-title {
        width: 100%;
        margin: 0 auto;
    }

    .product-list {
        max-width: 1024px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .product-list .product-item {
        display: flex;
        width: calc(33.33% - 10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .product-list .product-item img {
        box-sizing: border-box;
        width: 40%;
        height: auto;
        object-fit: contain;
        flex-shrink: 0;
    }
}