.product_center_page {
    color: #ca2e2f;
}

/* .details_body {
    height: 200vh;
} */

.product_category_banner_box {
    width: 100%;
    height: 70vh;
    background: url(../imgs/product_bj1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}







.product_breadcrumb_box {
    position: absolute;
    bottom: 20%;
    left: 10%;
}

.product_category_show_box {
    padding: 3rem 5rem;
}

.product_category_details_box {
    width: 75%;
}

.product_category_details_first {
    border-bottom: 3px solid rgb(221, 221, 221);
    display: flex;
    justify-content: space-between;
    padding-bottom: 2rem;
}

.product_details_picture_box {
    width: 40%;
}

.product_details_picture {
    width: 90%;
    height: 20rem;
    margin: 1rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.product_details_picture img {
    width: 80%;
}

.product_details_swiper_box {
    position: relative;
}

.product-swiper-container {
    width: 100%;
    height: 8rem;
    overflow: hidden;
}

.product-swiper-container .swiper-slide {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: #ccc 1px solid;
    border-radius: 10px;
}

.product-swiper-container .swiper-slide img {
    width: 80%;
    height: 100%;
    object-fit: contain;
}

.swiper-button-next {
    background-image: url(../imgs/arrow_right.png);
    background-size: contain;
}

.swiper-button-prev {
    background-image: url(../imgs/arrow_left.png);
    background-size: contain;
}

.product_details_swiper_box .swiper-button-prev,
.product_details_swiper_box .swiper-button-next {
    width: 2rem;
    height: 2rem;
    top: 50%;
}

.product_details_swiper_box .swiper-button-prev {
    left: -2rem;
}

.product_details_swiper_box .swiper-button-next {
    right: -2rem;
}

.product_details_message_box {
    width: 50%;
}

.product_details_message_title {
    font-weight: bold;
    font-size: 1.8rem;
    padding: 1.5rem 0;
}

.product_details_message_content {
    padding: 1.5rem 0;
}

.product_details_message_relation {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(221, 221, 221, 1);
    border-top: 1px solid rgba(221, 221, 221, 1);
}

.product_details_message_email {
    margin-bottom: 1rem;
}

.product_details_message_email,
.product_details_message_phone,
.email_title,
.phone_title {
    display: flex;
    align-items: center;
}

.email_title::before,
.phone_title::before {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.2rem;
    background: url(../imgs/email_black.png) no-repeat;
    background-size: contain;
    background-position: center;
}

.phone_title::before {
    background: url(../imgs/phone_black.png) no-repeat;
    background-size: contain;
}

.product_details_message_button {
    margin-top: 3rem;
    border-top: 1px solid rgba(221, 221, 221, 1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-around;
    flex-flow: wrap;
}

.product_details_message_button .button {
    padding: 0.8rem 4rem;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    transition: all 1s;
    margin-bottom: 1rem;
}

.online_consultant {
    /* margin-right: 20px; */
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
}

.related_products {
    background-color: #ca2e2f;
    border: 2px solid #ca2e2f;
    color: #fff;
}

.online_consultant:hover {
    color: #000;
    background-color: transparent;
}

.related_products:hover {
    background-color: transparent;
    color: #000;
}



.product_category_details_second {
    margin-top: 2rem;
}

.product_name {
    font-size: 0.8rem;
    margin: 1rem 0;
}

.product_pic img {
    max-width: 100%;
}

.product_description {
    border-top: 1px solid rgba(221, 221, 221, 1);
    border-bottom: 1px solid rgba(221, 221, 221, 1);
    padding: 1rem 0;
    margin: 1.5rem 0;
    width: 70%;
    font-size: 0.8rem;
}

.product_description p {
    margin: 0.5rem 0;
}

.product_description_gray {
    color: rgba(74, 74, 74, 1);
    font-weight: bold;
    margin: 1rem 0 0.5rem;
}

.data_presentation {
    margin-bottom: 1rem;
}

.data_presentation_table {
    width: 100%;
    max-height: 60vh;
    overflow: auto;
}

/* 针对特定div的滚动条样式 */
.data_presentation_table::-webkit-scrollbar {
    width: 5px;
    /* 滚动条宽度 */
    height: 5px;
    /* 横向滚动条高度 */
}

.data_presentation_table::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* 轨道背景色 */
    border-radius: 5px;
}

.data_presentation_table::-webkit-scrollbar-thumb {
    background: #aaa9a9;
    /* 滑块颜色 */
    border-radius: 5px;
}

.data_presentation_table::-webkit-scrollbar-thumb:hover {
    background: #8d8c8c;
    /* 滑块悬停颜色 */
}


/* 为表格添加边框 */
table {
    border-collapse: collapse;
    /* 合并边框 */
    width: 100%;
}

/* 为表格单元格添加边框 */
table,
th,
td {
    border: 1px solid #c5c4c4;
    /* 1像素灰色实线边框 */
}

/* 可选：表头样式 */
th {
    background-color: #dbdada;
    /* 浅灰色背景 */
    padding: 1rem;
}

tr:nth-child(2n) {
    /* background-color: #f2f2f2; */
    /* 浅灰色 */
}

/* 可选：表格单元格内边距 */
td {
    padding: 1rem;
    text-align: center;
}









.related_products_show_title {
    text-align: center;
}

.related_products_show_picture_pro_box {
    padding: 5rem 10rem;
    position: relative;
}

.related-product-swiper-container {
    width: 100%;
    height: 20rem;
    overflow: hidden;
}

.related-product-swiper-container .swiper-button-prev {
    left: 8rem;
}

.related-product-swiper-container .swiper-button-next {
    right: 8rem;
}

.related_products_show_picture_pro {
    width: 22%;
    height: 20rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.related_products_show_picture_pro_top {
    height: 70%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related_products_show_picture_pro_top img {
    width: 80%;
    transition: all 1s;
}

.related_products_show_picture_pro_bottom {
    height: 30%;
    width: 100%;
    background-color: rgba(209, 208, 208, 0.2);
    transition: all 1s;
}

.related_products_show_picture_pro_bottom_content {
    width: 80%;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: auto;
    padding: 1.5rem 0px;
}

.related_products_show_picture_pro_bottom_content::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 10%;
    height: 2px;
    background-color: gray;
    transition: 1s;
}

.bottom_content_text {
    font-weight: bold;
    transition: all 1s;
}

.bottom_content_eye {
    width: 25px;
    background: url(../imgs/eye_gray.png) no-repeat;
    background-size: contain;
    background-position: center;
}

.related_products_show_picture_pro:hover .related_products_show_picture_pro_top img {
    width: 100%;
}

.related_products_show_picture_pro:hover .related_products_show_picture_pro_bottom {
    background-color: #ca2e2f
}

.related_products_show_picture_pro:hover .related_products_show_picture_pro_bottom_content::after {
    width: 100%;
    background-color: #fff;
}

.related_products_show_picture_pro:hover .bottom_content_eye {
    background: url(../imgs/eye_white.png) no-repeat;
    background-size: contain;
}

.related_products_show_picture_pro:hover .bottom_content_text {
    color: #fff;
}
















@media (max-width: 899px) {
    .details_body {
        margin-bottom: 6rem;
    }

    .product_category_select_box {
        display: none;
    }

    .product_category_details_box {
        width: 100%;
    }

    .product_description {
        width: 100%;
        font-size: 1rem;
    }

    .related_products_show_picture_pro_box {
        padding: 5rem;
    }
}

@media (max-width: 500px) {
    .product_category_show_box {
        padding: 3rem 2rem;
    }

    .product_category_details_first {
        flex-flow: wrap;
        position: relative;
    }

    .product_details_picture_box,
    .product_details_message_box {
        width: 100%;
    }

    .product_details_picture {
        display: none;
    }

    .product-swiper-container {
        height: 20rem;
    }

    .product-swiper-container .swiper-slide {
        border: none;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .related_products_show_picture_pro_box {
        padding: 5rem 2rem;
    }
}