a {
    text-decoration: none !important;
}

/* 面包屑 */
.bread-box {
    width: 100%;
    height: 48rem;
    font-size: 14rem;
    background-color: rgba(255, 255, 255, 0.21);
}

.bread {
    width: 100%;
    height: auto;
    max-width: 1440rem;
    margin: 0 auto;
}

/* 自定义面包屑样式 */
.breadcrumb {
    width: 100%;
    height: 48rem;
    font-size: 12rem;
    text-align: left;
    line-height: 48rem;
    cursor: pointer;
    color: #666666;
}

.breadcrumb-item:hover {
    color: #0068D7 !important;
}

.breadcrumb-item.active {
    color: #333333;
    font-size: 12rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    padding: 0 10rem;
}

.titleContainer {
    width: 100%;
    background-color: #ffffff;
}

.titleBox-3 {
    max-width: 1440rem;
    margin: 0 auto;
    margin-top: 16rem;
}

.desc-title {
    font-size: 40rem;
    font-family: Inter, Inter-500;
    font-weight: 500;
    color: #333333;
    margin-top: 23rem;
}

.desc-detail {
    font-family: Inter, Inter-400;
    color: #333333;
    line-height: 20rem;
    display: flex;
    align-items: flex-start;
}

.desc-detail-left {
    font-size: 14rem;
    white-space: wrap;
    height: 185rem;
    overflow: hidden;
    margin-top: 20rem;
    max-width: 700rem;
}

.productImgBox {
    width: 475rem;
    height: 475rem;
}

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

/* ================================ */
/* 图片容器样式 */
.container-custom {
    max-width: 1440rem;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    box-sizing: border-box;
    margin-top: 24rem;
}

.left-panel {
    width: 300rem;
    flex-shrink: 0;
}

.right-panel {
    flex-grow: 1;
    padding: 0;
}

/* 图片容器样式 */
.image-wrapper {
    width: 264rem;
    height: 230rem;
    border-radius: 4rem;
    border: 1rem solid #f5f5f5;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper img {
    max-width: 200rem;
    max-height: 200rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.image-wrapper img:hover {
    transform: scale(1.05);
}

.prod3-item {
    display: inline-block;
    margin-left: 20rem;
}

/* 描述文字样式 */
.description {
    text-align: center;
    border: 1px solid #f5f5f5;
    border-top: none;
    background-color: #f5f5f5;
    max-width: 264rem;
    height: 80rem;
    padding-top: 10rem;
    text-align: left;
    padding-left: 10rem;
    border-bottom-right-radius: 4rem;
    border-bottom-left-radius: 4rem;
}

.prod3-item:hover .desc_title1 {
    color: #0068D7;
    text-decoration: underline;
    text-decoration-color: #0068D7;
}

.prod3-item:hover {
    box-shadow: 0 20rem 20rem rgba(0, 0, 0, 0.1);
}

#headingMake,
#headingModel,
#headingType,
#headingYear,
#headingEngine,
#headingPower {
    width: 267rem;
    height: 44rem;
    line-height: 44rem;
}

#collapseMake,
#collapseModel,
#collapseType,
#collapseYear,
#collapseEngine,
#collapsePower {
    width: 267rem;
    background-color: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 4rem;
}

/* 右侧内容布局 */
.right-panel .row {
    display: flex;
    margin: 0;
}

.right-panel .col-md-4 {
    flex: 0 0 33.333%;
    box-sizing: border-box;
}

/* 左侧单选 */
.select_title {
    font-size: 18rem;
    font-family: Inter, Inter-500;
    font-weight: 500;
    color: #333333;
    line-height: 21rem;
}

.select_form {
    font-size: 16rem;
    font-family: Inter, Inter-400;
    color: #333333;
    line-height: 19rem;
    width: 264rem;
    height: 340rem;
    overflow-y: auto;
    overflow-x: hidden;
}

.brand {
    width: 264rem;
    height: 48rem;
    font-size: 16rem;
    font-family: Inter, Inter-400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333333;
    cursor: pointer;
}

.brand.active {
    color: #0068d7;
}

.brand img {
    width: 16rem;
    height: 16rem;
}

/*自定义单选框样式 */
.p3-custom-radio {
    position: relative;
    padding-left: 40rem;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    height: 34rem;
    line-height: 34rem;
    font-size: 13rem;
    font-family: Inter, Inter-400;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
}

.p3-custom-radio.active {
    color: #333333;
}

.p3-custom-radio:hover {
    background-color: #0E2A58;
    color: #ffffff;
}

/* 隐藏原生单选框 */
.p3-custom-radio input[type="radio"] {
    position: absolute;
    display: none;
    cursor: pointer;
}

/* 自定义单选框的外观 */
.p3-custom-radio .checkmark {
    display: inline-block;
    position: absolute;
    top: 8rem;
    left: 8rem;
    width: 16rem;
    height: 16rem;
    background-color: #ffffff;
}

/* 鼠标悬停时的样式 */
.p3-custom-radio:hover input~.checkmark {
    border-color: #0A1D3D;
}

/* 选中状态的样式 */
.p3-custom-radio input:checked~.checkmark {
    background-color: #0E2A58;
    border-color: #0E2A58;
}

/* 选中状态的内圆点 */
.p3-custom-radio .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    width: 16rem;
    height: 16rem;
    transform: translate(-50%, -50%);
    background-image: url(/static/frontend/pc/images/yes.webp);
    background-size: contain;
    /* 图片自适应 */
    background-repeat: no-repeat;
    z-index: 1;
}

/* 显示内圆点 */
.p3-custom-radio input:checked~.checkmark::after {
    display: block;
}

.borderBox {
    width: 100%;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    margin-top: 20rem;
}

#accordionContent {
    margin-top: 28rem;
}

.productAccItem {
    margin-bottom: 20rem !important;
}

.productAccItem,
.productAccBtn {
    font-size: 16rem;
}

.productThreeForm {
    margin-top: 10rem;
}

.accordion-item {
    border: none !important;
}

.productAccBtn {
    background-color: #ffffff !important;
    box-shadow: none !important;
    font-family: Inter, Inter-400 !important;
    color: #333333 !important;
    border: 1px solid #ccc;
    padding: 0 10rem;
}

.productAccBtn::after {
    background-image: url("/static/frontend/pc/images/bottomArrow.webp");
    width: 16rem;
    height: 16rem;
    background-size: 16rem;
}

.productAccBtn:not(.collapsed)::after {
    background-image: url("/static/frontend/pc/images/down-checked.webp");
    width: 16rem;
    height: 16rem;
    background-size: 16rem;
}

/* 展开状态下的字体颜色 */
.productAccBtn:not(.collapsed) {
    color: #0E2A58 !important;
}

/* ---------right------------ */
.product-box {
    margin-bottom: 14rem !important;
    font-size: 16rem;
    font-family: Inter, Inter-400;
    font-weight: 400;
    color: #999999;
    padding-left: 20rem;
}

.desc_title1 {
    font-size: 16rem;
    font-weight: 600;
    font-family: Inter, Inter-600;
    color: #0A1D3D;
}

.desc_title2 {
    font-size: 14rem;
    font-family: Inter, Inter-500;
    font-weight: 500;
    color: #333333;
}

.pagination-container {
    margin-top: 30rem !important;
}

#page-numbers {
    display: flex;
    margin: 0 5rem;
    padding: 0;
    list-style: none;
}

.page-item {
    margin: 0 2rem;
    width: 40rem;
    height: 40rem;
}

.page-link {
    color: #0A1D3D;
    min-width: 40rem;
    height: 40rem;
    text-align: center;
    font-size: 16rem;
    line-height: 40rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-link span {
    display: flex;
}

.page-link img {
    width: 16rem;
    height: 16rem;
}

.page-item.active .page-link {
    background-color: #ffffff;
    border-color: #0A1D3D;
    color: #0A1D3D;
}

.prod-row>.col-md-6:nth-child(n+5) {
    margin-top: 44rem;
}

/* 在小屏幕上调整布局 */
@media (max-width: 1160px) {
    .container-custom {
        width: 1100rem;
    }

    .titleBox-3 {
        width: 1100rem;
    }
}

/* ============================== */
/* 在小屏幕下保持列间距 */
@media (max-width: 1280px) {
    .bread-box {
        width: 1100rem;
        height: 48rem;
        font-size: 14rem;
        background-color: rgba(255, 255, 255, 0.21);
        padding-left: 10rem;
    }

    .right-panel .col-md-4 {
        flex: 0 0 50%;
    }

    .prod-row>.col-md-4:nth-child(n+3) {
        margin-top: 44rem;
    }
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 12rem;
}

.pagination li {
    margin: 0 5rem;
    width: 40rem;
    height: 40rem;
}

.pagination a,
.pagination span {
    display: inline-block;
    width: 40rem;
    height: 40rem;
    padding: 5rem 10rem;
    border: 1rem solid #F6F7F7;
    text-decoration: none;
    color: #0A1D3D;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination a:hover {
    background-color: #f5f5f5;
}

.pagination .active {
    color: white;
    color: #0A1D3D;
    border: 1rem solid #0A1D3D;
}

.pagination .disabled {
    color: #0A1D3D;
    cursor: not-allowed;
}

.pagination .ellipsis {
    border: none;
    cursor: pointer;
}

.pagination .page-input {
    width: 40rem;
    padding: 5rem;
    text-align: center;
    border: 1rem solid #ddd;
    border-radius: 3rem;
}

.noSpec {
    white-space: nowrap;
    color: #666666;
}

.NoOneSelected3 {
    display: inline-block;
    width: 230rem;
    height: 28rem;
    color: #666666;
    font-size: 12px;
    font-family: Inter, Inter-400;
    text-align: center;
    line-height: 28rem;
    margin-left: 17rem;
}

#accordionContent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 富文本显示区域 */
.product-textArea {
    max-width: 1400rem;
    height: auto;
    margin: 0 auto;
    margin-top: 100rem;
    font-size: 16rem;
    display: flex;
}

.textAreaLeft {
    width: 300rem;
}

.textAreaRight {
    max-width: 1100rem;
}

.product-textArea p {
    font-size: 14rem;
}

.product-textArea h2 {
    margin-top: 20rem;
    margin-bottom: 10rem;
}

#scrollBox {
    scroll-margin-top: 140rem;
}

.product-textArea p,
.product-textArea span {
    font-size: 14rem !important;
    font-family: Arial;
}

.tagBox {
    width: 100%;
    display: flex;
    margin-top: 10rem;
    flex-wrap: wrap;
}

.tagLi {
    width: auto;
    display: flex;
    margin-right: 10rem;
    align-items: center;
    justify-content: center;
    height: 30rem;
    background-color: #f9f9f9;
    border-radius: 44rem;
    padding: 0 10rem;
    margin-top: 10rem;
    color: #333333;
}

.tagLi img {
    width: 16rem;
    margin-left: 6rem;
    cursor: pointer;
}

#stickyBox {
    position: sticky;
    top: 100rem;
}