.jiaohu_AA {
    margin-left: 150px;
    width: calc(100% - 150px);
    height: 399px;
    background-color: #d4f8e8;
    /* 清新绿色背景 */
    display: flex;
    /* 弹性父级 */
    gap: 7.5px;
    /* 弹性子级之间的间距 */
}

.tan_AA {
    flex: 3;
    display: flex;
    flex-direction: column;
    /* 竖着分 */
    height: 100%;
    /*占满父级容器，这里要注意，后面还要细分*/
    min-width: 700px;
    /*设置最小宽度，记一下，要复用*******************/
}

/*.tan_AA和.tan_BB 分了.jiaohu_AA 一个作为选车模块，一个作为视频模块*/
.xilie_AA {
    flex: 1;
    width: 100%;
    grid-template-columns: repeat(9, 1fr);
    /* 9列 */
    display: grid;
}

.xilie_AA>div {
    display: flex;
    flex-direction: column;
    /* 竖向排列内容 */
    align-items: center;
    /* 水平居中 */
    justify-content: center;
    /* 垂直居中 */
    height: 100%;
    text-align: center;
    max-height: 66.5px;
    /* 限制最大高度，根据实际情况调整 */
    overflow: auto;
    /* 超出时滚动 */
}

/*！！！！！！！！！！！！！！下面是交互式布局！！！！！！！！！！！！！！！！！！！！！！！*/
.xilie_BB {
    flex: 5;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* 在父容器中分配5份空间，宽度占满父容器，高度占满父容器，弹性布局，竖直排列品牌行  子元素纵向排列*/
}

.brand-row {
    flex: 1;
    display: flex;
    align-items: center;
    /* 每一行平均分配父容器高度，行内横向排列品牌名和车型列表  垂直居中对齐内容 */
}

.brand-title {
    min-width: 100px;
    text-align: center;
    /* 品牌名最小宽度，避免太窄   品牌名居中显示 */
}

.chexing-list {
    display: flex;
    /* 横向排列车型格子 */
    flex: 1;
    /* 填满剩余空间 */
    min-width: 0;
    /* 防止内容溢出撑破父容器 */
    overflow-x: auto;
    /* 超出部分横向滚动 */
    scroll-behavior: smooth;
    /* 滚动时平滑过渡 */
    scrollbar-width: none;
    /* Firefox 隐藏滚动条 */
}

.chexing-list::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Edge 隐藏滚动条 */
}

.chexing-item {
    min-width: 151px;
    /* 每个车型格子的最小宽度 */
    height: 66.5px;
    /* 固定高度 */
    display: flex;
    /* 竖直排列内容 */
    flex-direction: column;
    /* 车型名称在上，按钮在下 */
    align-items: center;
    /* 水平居中内容 */
    justify-content: center;
    /* 垂直居中内容 */
    position: relative;
    /* 方便后续绝对定位等扩展 */
}

.chexingmingcheng_A {
    margin-bottom: 8px;
    /* 名称和按钮之间的间距 */
    transition: color 0.2s, font-weight 0.2s;
    /* 悬停时平滑变色/加粗 */
    cursor: pointer;
    /* 悬停变手型 */
}

.chexing-btn-group {
    display: flex;
    /* 横向排列按钮 */
    flex-direction: row;
    /* 按钮横向排列 */
    gap: 12px;
    /* 按钮之间的间距 */
}

.show-param-btn,
.show-img-btn {
    font-size: 14px;
    /* 按钮字体大小 */
    cursor: pointer;
    /* 悬停变手型 */
    border: none;
    /* 去掉按钮边框 */
    transition: color 0.2s, background 0.2s;
    /* 悬停时平滑变色 */
}



.brand-title:hover {
    font-weight: bold;
    /* 悬停时加粗 */
    color: #1976d2;
    /* 悬停时变色 */
}

.chexingmingcheng_A:hover {
    font-weight: bold;
    /* 悬停时加粗 */
    color: #1976d2;
    /* 悬停时变色 */
}

.show-param-btn:hover,
.show-img-btn:hover {
    color: #4342a7;
    /* 按钮悬停时变色 */
}

.chexing-list-wrapper {
    display: flex;
    /* 横向排列箭头和车型列表 */
    align-items: center;
    /* 垂直居中 */
    flex: 1;
    /* 填满剩余空间 */
    position: relative;
    /* 方便后续绝对定位等扩展 */
    max-width: 100%;
    /* 最大宽度不超过父容器 */
    overflow: hidden;
    /* 超出部分隐藏，防止格子溢出 */
}

.chexing-arrow {
    flex-shrink: 0;
    /* 不被压缩 */
    width: 20px;
    /* 按钮宽度，适配SVG大小 */
    height: 20px;
    /* 按钮高度，适配SVG大小 */
    background: #eee;
    /* 默认背景色（灰） */
    color: #888;
    /* 默认字体色（深灰），SVG继承 */
    border: none;
    /* 去掉边框 */
    cursor: pointer;
    /* 悬停变手型 */
    z-index: 2;
    /* 保证箭头在上层 */
    border-radius: 4px;
    /* 圆角 */

    display: flex;
    /* 让SVG居中 */
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    /* 悬停时平滑变色 */
    padding: 0;
    /* 去除多余内边距 */
}

.chexing-arrow:hover {
    background: #1976d2;
    /* 悬停时背景变蓝 */
    color: #fff;
    /* 悬停时SVG变白 */
}

.chexing-arrow.active {
    background: #222;
    /* 能滑动时背景为粗黑 */
    color: #fff;
    /* 字体/SVG变白 */
}

.chexing-arrow:disabled {
    background: #ccc;
    /* 不能滑动时背景更浅灰 */
    color: #aaa;
    /* 字体/SVG更浅灰 */
    cursor: not-allowed;
    /* 鼠标变禁止 */
}

.chexing-arrow svg {
    display: block;
    margin: auto;
    width: 20px;
    height: 20px;
    pointer-events: none;
    /* 防止SVG阻挡按钮事件 */
}

.xilie_AA>div:hover {
    cursor: pointer;
    color: rgb(13, 13, 14);
    font-weight: bold;
    border-bottom: 3px solid #0c23a37c;
    /* 鼠标悬停时添加下划线 这里是设置悬停系列模块的设置*/
}

#xilie_A>div.active {
    background: #a8e6cf !important;
    /* 柔和的浅绿色背景 */
    color: #fff !important;
    font-weight: bold !important;
}

/*CSS优先级只在“同一个属性”有冲突时才起作用，不同属性各自独立。*/
/* 让active悬停时字体依然是白色 */
#xilie_A>div.active:hover {
    color: #fff !important;
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!下面为每日优惠和重磅新车!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.tan_BB {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* 让子元素上下排列 */
}

.xuanzemokuai_A {
    width: 100%;
    height: 15%;
    background-color: rgb(34, 190, 86);
    display: flex;
}

.xinche_A,
.meiriyouhui_A {
    flex: 1;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
}

.xinche_A.active,
.meiriyouhui_A.active {
    font-weight: bold;
    border-bottom: 3px solid #0c23a37c;
    background-color: #44c22b;
    /*使用js来选切换高亮*/
}

.xinche_A:hover,
.meiriyouhui_A:hover {
    cursor: pointer;
    /*保留光标悬停样式*/
}

.chexing_list {
    /* 这里是设置选车模块的设置*/
    width: 100%;
    height: 85%;
    display: block;
    overflow-y: auto;
    /* 允许竖向滚动 */
    overflow-x: hidden;
    /* 禁止横向滚动（可选） */
    scrollbar-width: none;
    /* Firefox 隐藏滚动条 */
}

.chexing_list::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Edge 隐藏滚动条 */
}

/*.以下为 chexing_list 的内容动态渲染小模版*/
.chexing_item {
    width: 100%;
    height: 100px;
    background-color: #fff;
    display: flex;
    margin-bottom: 7.5px;
    /* 竖排时的间距   复用*/
}

.chexing_item_A {
    flex: 1;
    height: 100%;
    /*复用*/
}

.chexing_name {
    width: 100%;
    height: 33px;
    align-items: center;
    padding-left: 12px;
    display: flex;
    font-size: 18px;
    font-weight: bold;
}

.chexing_price {
    width: 150px;
    height: 33px;
    align-items: center;
    padding-left: 12px;
    display: flex;
    color: #00000080;
    font-size: 18px;
}

.chexing_yuyue {
    width: 100px;
    height: 34px;
    background-color: rgb(7, 238, 103);
    align-items: center;
    padding-left: 12px;
    display: flex;
    font-size: 20px;

}

.chexing_yuyue:hover {
    cursor: pointer;
    border-bottom: 3px solid #0c23a37c;
    /* 鼠标悬停时添加下划线 */
    background-color: #44c22b;

}

.chexing_img {
    flex: 1;
    height: 100%;
    background: linear-gradient(to right, #fff 0%, #87ceeb 100%);
    display: flex;
    align-items: center;
    /* 垂直居中 */
    justify-content: flex-end;
    /* 图片靠右 */
    overflow: hidden;
    /* 防止图片溢出   复用*/
}

.chexing_img img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    /* 保持比例缩放 */
    display: block;
    /*复用*/
}

.chexing_list_A {
    display: none;
}

.chexing_list.active,
.chexing_list_A.active {
    display: block;
}

/*---每日特惠得内容*/

.chexing_list_A {
    background-color: #fff;
    width: 100%;
    height: 85%;
    display: block;
    overflow-y: auto;
    /* 允许竖向滚动 */
    overflow-x: hidden;
    /* 禁止横向滚动（可选） */
    scrollbar-width: none;
    /* Firefox 隐藏滚动条 */
}

.chexing_shijian {
    width: auto;
    height: 25px;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    font-size: 18px;
    background-color: #222;
    color: #fff;
    display: inline-flex;
    /* 或 inline-block */
    border-radius: 5px;
}

.chexing_mingcheng_A {
    width: 100%;
    height: 40px;
    align-items: center;
    padding-left: 12px;
    display: flex;
    font-size: 25px;
}

.chexing_jiage {
    width: 180px;
    height: 33px;
    align-items: center;
    padding-left: 12px;
    display: flex;
    color: #2318bbaf;
    font-size: 18px;
}