/* Product Details CSS */

/* Breadcrumb */
.breadcrumb-section {
    width: 100%;
    min-width: 1300px;
    /* padding: 20px 0; */
    padding: 20px 0 12px 0;
    background: rgba(246, 246, 246, 1);
}

.breadcrumb {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 36px;
    color: rgba(0, 0, 0, 0.5);
}

.breadcrumb a {
    text-decoration: none;
    /* color: #666; */
    color: rgba(0, 0, 0, 0.5);
}

.breadcrumb a:hover {
    color: rgba(23, 93, 173, 1);
}

.breadcrumb .separator {
    margin: 0 10px;
    color: #ccc;
}

.breadcrumb .current {
    color: rgba(23, 93, 173, 1);
    font-weight: 500;
}

/* Product Intro Section */
.product-intro-section {
    /* padding: 60px 0; */
    padding-bottom: 31px;
    background: rgba(246, 246, 246, 1);
    min-width: 1300px;
}

.product-intro-content {
    display: flex;
    justify-content: space-between;
}

.product-intro-image {
    width: 420px;
}

.main-image {
    width: 420px;
    height: 420px;
    /* border: 1px solid #eee; */
    /* margin-bottom: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 10px; */
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.image-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.image-thumbnails img {
    width: 80px;
    height: 80px;
    border: 1px solid #eee;
    cursor: pointer;
    object-fit: cover;
}

.image-thumbnails img:hover {
    border-color: #2563eb;
}

.product-intro-details {
    width: 620px;
}

.product-title {
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 44.87px;
    color: rgba(1, 92, 171, 1);
    margin-bottom: 43px;
    padding-top: 18px;
}

.product-desc h4 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 36px;
    color: rgba(56, 56, 56, 1);
}

.product-desc p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 36px;
    color: rgba(56, 56, 56, 0.7);
}

.product-nav-buttons {
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

.nav-btn {
    display: inline-block;
    width: 130px;
    height: 45px;
    opacity: 1;
    border: 1px solid rgba(23, 93, 173, 1);
    text-decoration: none;
    text-align: center;
    line-height: 45px;
    font-size: 15px;
    font-weight: 400;
    color: rgba(23, 93, 173, 1);
}

.nav-btn:hover {
    background: rgba(23, 93, 173, 0.1);
    color: rgba(23, 93, 173, 1);
    border: none;
}

/* About Product Section */
.about-product-section {
    padding: 50px 0;
    background-color: #fff;
    min-width: 1300px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 39.59px;
    color: rgba(56, 56, 56, 1);
}

.product-specs-table {
    background-color: #fff;
    margin-bottom: 30px;
}

.product-specs-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(0, 0, 0, 0.2);
}


.product-specs-table td {

    border: 1px solid rgba(0, 0, 0, 0.2);
}

.spec-label {
    width: 230px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 33px;
    color: rgba(0, 0, 0, 0.8);
    background: rgba(238, 238, 238, 0.8);
    padding: 16px 16px 16px 59px;
    box-sizing: border-box;
}

.spec-value {
    background: rgba(238, 238, 238, 0.3);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 33px;
    color: rgba(0, 0, 0, 0.6);
    padding: 16px 16px 16px 54px;
    box-sizing: border-box;
}

.company-intro-text {
    width: 100%;
    margin: 0 auto;
}

.company-intro-text p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 36px;
    color: rgba(0, 0, 0, 0.8);
}

/* Related Products Section */
.related-products-section {
    padding: 40px 0 80px;
    background: rgba(245, 248, 251, 1);
    min-width: 1300px;
}

.related-products-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.product-card {
    background-color: #fff;
    padding: 9px 55px 31px 55px;
    transition: transform 0.3s;
    width: calc(25% - 15px);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-name {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 21.12px;
    color: rgba(56, 56, 56, 1);
    text-align: center;
    white-space: nowrap;
    /* 禁止换行 */
    overflow: hidden;
    /* 超出隐藏 */
    text-overflow: ellipsis;
    /* 显示省略号 */
}