﻿/* 顶部导航 */
.header-nav {
    height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #eb5922;
    padding: 0 calc(var(--theme-pd) + var(--theme-pd) * 1.25);
}
.header-nav a,.header-nav i {
    color: #fff;
    font-size: 14px;
}

/* 详情 */
.detail {
    padding: 32px calc(var(--theme-pd) + var(--theme-pd) * 1.25);

}
.detail .product-img-text {
    display: flex;
    gap: 74px;
}
.detail .product-img-text .img {
    --imgHeight: 503px;
    width: 503px;
    height: var(--imgHeight);
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 69px 134px 76px 141px; */
    padding-top: var(--imgHeight);
    position: relative;
}
.detail .product-img-text .img img {
    object-fit: contain;
    position: absolute;
    inset: 0;
}
.detail .product-img-text .info {
    flex: 1;
}
.detail .product-img-text .info .title {
    font-size: 28px;
    font-weight: 700;
    margin: 42px 0 33px;
}
.detail .product-img-text .info .title ~ div {
    line-height: 25px;
    margin-bottom: 40px;
    color: #999;
    font-size: 14px;
}
.detail .product-img-text .info .title ~ div .name {
    font-weight: 700;
    font-size: 16px;
}
.detail .product-img-text .info .title ~ div p {
    font-size: 14px;
}
.detail .product-detail {color: #999;font-size: 14px;}
.detail .product-detail .title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    border-bottom: 1px solid #ebebeb;
    padding: 33px 0 17px;
    color: #333;
}
.detail .product-detail .title .iconfont {
    font-size: 30px;
    color: #ee733f;
}
.detail .product-detail .block{
    line-height: 25px;
    margin-bottom: 40px;
    color: #666;
}
.detail .product-detail .block .name {
    font-weight: 700;
    font-size: 16px;
}
.detail .product-detail .block p {
    font-size: 14px;
}
.detail .product-detail table {
    width: 100%;
}
.detail .product-detail table .table-title {
    text-align: center;
    background: #E7E6E6;
}
.detail .product-detail table tr td:first-child {
    min-width: 20%;
}
.detail .product-detail table tr td {
    min-width: 30%;
}
.btn-box .btn {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #e6e6e6;
}
.btn-box .btn-back {
    width: 128px;
    height: 38px;
    background: #fff;
    color: #eb5922;
    border: 1px solid #eb5922;
    border-radius: 20px;
    cursor: pointer;
}
.btn-box .btn-back:hover {
    color: #fff;
    background: #eb5922;
}


@media only screen and (max-width: 1100px) {
    .header-nav a, .header-nav i {
        font-size: 12px;
    }
    .detail .product-img-text .img {
        width: auto;
        height: auto;
    }
    .detail .product-img-text {
        flex-direction: column;
        gap: 20px;
    }
}