/* 相关产品 */

.solution-tab-word {
    display: none;
}

.solution-tabs {
    display: flex;
    justify-content: center;
}

.solution-tabs h3 {
    position: relative;
    padding: 12px 24px;
    color: var(--neutra-color);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    cursor: pointer;
}

.solution-tabs h3::after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var( --divide-color);
}

.solution-tabs h3.active {
    color: var( --dark-color);
    font-weight: 600;
    pointer-events: none;
}

.solution-tabs h3.active::after {
    background-color: var(--standard-red-color);
}

.porudct-conts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
    gap: 24px;
}

.product-card {
    position: relative;
    background-color: var(--white-color);
    text-align: center;
    border-radius: 4px;
    padding: 24px;
}

.product-card img {
    width: 250px;
}

.porduct-title {
    display: -webkit-box;
    margin: 12px 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    text-overflow: ellipsis;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 500;
}

.product-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    text-overflow: ellipsis;
    text-align: center;
    color: var(--neutra-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    min-height: 48px;
}

.product-card a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.product-card .transparent-commonlink {
    margin-top: 24px;
    justify-content: center;
}

@media screen and (max-width:1440px) {
    .porudct-conts {
        gap: 20px;
    }
    .product-card {
        padding: 20px;
    }
    .product-card img {
        width: 215px;
    }
}

@media screen and (max-width:1280px) {
    .porudct-conts {
        gap: 16px;
    }
    .product-card {
        padding: 16px;
    }
    .product-card img {
        width: 182px;
    }
    .product-card p {
        font-size: 14px;
        min-height: 42px;
    }
    .solution-tabs h3 {
        font-size: 16px;
        padding: 8px 20px;
    }
}

@media screen and (max-width:1068px) {
    .porudct-conts {
        grid-template-columns: repeat(2, 1fr);
    }
    .solution-tabs {
        display: none;
    }
    .solution-tab-word {
        display: flex;
        align-items: center;
        color: var(--dark-color);
        font-size: 16px;
        font-weight: 600;
        line-height: 150%;
        cursor: pointer;
        border-bottom: 1px solid #D5D5D5;
        padding: 12px 0;
    }
    .solution-tab-word::after {
        content: '';
        display: block;
        width: 24px;
        height: 24px;
        background-image: url(../img/toggle.svg);
        margin-left: 8px;
        transition: transform .16s linear;
    }
    .solution-tab-word.active::after {
        transform: rotate(180deg);
    }
    .solution-tabs h3 {
        text-align: left;
        padding: 8px 0;
        font-size: 14px;
    }
    .solution-tabs h3::after {
        display: none;
    }
}

@media screen and (max-width:768px) {
    .product-card img {
        width: 150px;
    }
    .product-card {
        padding: 12px;
    }
    .product-card p {
        min-height: 63px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

@media screen and (max-width:480px) {
    .product-card {
        padding: 6px;
    }
    .product-card p {
        min-height: 54px;
        font-size: 12px;
    }
    .product-card .transparent-commonlink {
        margin-top: 20px;
    }
    .porudct-conts {
        margin-top: 20px;
        gap: 12px;
    }
    .product-card img {
        width: 90%;
    }
    .porduct-title {
        font-size: 14px;
    }
    .product-card .transparent-commonlink {
        font-size: 14px;
    }
    .transparent-commonlink::after {
        width: 20px;
        height: 20px;
    }
}