/* 产品详情页底部相关推荐 Swiper 轮播 */

.related-products {
    max-width: 1420px;
    margin: 46px auto -100px;
    padding: 0 0 44px;
    background: #fff;
}

.related-products__inner {
    width: 100%;
}

.related-products__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
}

.related-products__title {
    position: relative;
    margin: 0;
    padding-left: 20px;
    color: #07172f;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
}

.related-products__title::before {
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 0;
    width: 5px;
    background: #0798f2;
    border-radius: 1px;
    content: "";
}

.related-products__nav {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.related-products__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0 0 3px;
    border: 1px solid #dbe3eb;
    border-radius: 50%;
    background: #fff;
    color: #07172f;
    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.related-products__btn--next {
    border-color: #1598f5;
    color: #078df0;
}

.related-products__btn:hover:not(.related-products__btn--disabled),
.related-products__btn:focus:not(.related-products__btn--disabled) {
    border-color: #078df0;
    background: #078df0;
    color: #fff;
    outline: none;
}

.related-products__btn--disabled {
    opacity: .45;
    cursor: default;
}

.related-products__swiper {
    overflow: hidden;
    padding: 1px;
}

.related-products__swiper .swiper-wrapper {
    align-items: stretch;
}

.related-product-card {
    display: flex;
    height: auto;
}

.related-product-card__link {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 382px;
    overflow: hidden;
    border: 1px solid #dfe6ed;
    border-radius: 8px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.related-product-card__link:hover,
.related-product-card__link:focus {
    border-color: #bfcddb;
    box-shadow: 0 8px 24px rgba(7, 23, 47, .08);
    color: inherit;
    text-decoration: none;
    transform: translateY(-2px);
}

.related-product-card__img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 230px;
    margin: 14px 16px 0;
    overflow: hidden;
    background: #fff;
}

.related-product-card__img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 4px 8px;
    background: #fff;
    object-fit: contain;
}

.related-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 18px 22px;
}

.related-product-card__title {
    display: -webkit-box;
    min-height: 50px;
    margin: 0;
    overflow: hidden;
    color: #07172f;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.related-product-card__badge {
    display: inline-block;
    align-self: flex-start;
    min-width: 72px;
    height: 29px;
    margin-top: 14px;
    padding: 0 11px;
    border-radius: 2px;
    background: #555b61;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 29px;
    text-align: center;
    white-space: nowrap;
}

.related-product-card__badge[data-badge="CE-IVD"],
.related-product-card__badge[data-badge="IVDR"] {
    background: linear-gradient(90deg, #0067aa 0%, #057dd3 100%);
}

.related-product-card__badge[data-badge="NMPA"] {
    background: #4b9f20;
}

.related-product-card__badge[data-badge="RUO"] {
    background: #f5f2ed;
    color: #5a554c;
}

.related-product-card__more {
    display: none;
}

@media screen and (max-width: 1199px) {
    .related-product-card__link {
        min-height: 360px;
    }

    .related-product-card__img-wrap {
        height: 210px;
    }
}

@media screen and (max-width: 767px) {
    .related-products {
        margin-top: 34px;
        padding-bottom: 34px;
    }

    .related-products__header {
        margin-bottom: 22px;
    }

    .related-products__title {
        padding-left: 15px;
        font-size: 22px !important;
    }

    .related-products__title::before {
        top: 0.125em;
        bottom: auto;
        width: 4px;
        height: 1em;
    }

    @supports (top: 1lh) {
        .related-products__title::before {
            top: calc((1lh - 1em) / 2);
        }
    }

    .related-products__btn {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}

@media screen and (max-width: 479px) {
    .related-products__title {
        font-size: 20px !important;
    }

    .related-product-card__link {
        min-height: 350px;
    }

    .related-product-card__img-wrap {
        height: 205px;
    }

    .related-product-card__title {
        min-height: 45px;
        font-size: 16px;
    }
}
