.sort-f {
    background: #fff;
    border: 1px solid #eee;
    padding: 12px 16px;
    margin-bottom: 16px;
}
.sort {
    margin-bottom: 10px;
}
.sort:last-child {
    margin-bottom: 0;
}
.sort-k {
    display: inline-block;
    width: 60px;
    color: #666;
    font-size: 14px;
    margin-right: 12px;
}
.sort-v ul {
    display: inline;
    margin: 0;
    padding: 0;
}
.sort-v li {
    display: inline-block;
    margin-right: 16px;
    font-size: 14px;
}
.sort-v li.on a {
    color: #e60012;
    font-weight: bold;
}
.sort-v a {
    color: #333;
    text-decoration: none;
}
.sort-v a:hover {
    color: #e60012;
}

        .cp-list-wrap {
            width: 1200px;
            margin: 30px auto;
            display: flex;
            gap: 20px;
            position: relative;
        }

        .cp-list-left {
            width: 880px;
        }

        .cp-list-right {
            width: 300px;
            border: 1px solid #eee;
            background: #fff;
            position: sticky;
            top: 30px;
            height: fit-content;
            padding: 12px;
        }
        .cp-list-right .head-sub {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            margin-bottom: 12px;
        }
        .cp-list-right .list-txt {
            margin-bottom: 16px;
        }
        .cp-list-right .list-txt ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .cp-list-right .list-txt li {
            padding: 6px 0;
            font-size: 14px;
            color: #666;
        }
        .cp-list-right .list-txt a {
            color: #333;
            text-decoration: none;
        }
        .cp-list-right .list-txt a:hover {
            color: #e60012;
        }
        .cp-list-right .list-txt .f_red {
            color: #e60012;
        }

        /* ========== 卡片容器 ========== */
        .cp-list-card {
            display: flex;
            align-items: flex-start;
            padding: 10px;
            border: 1px solid #eee;
            margin-bottom: 12px;
            transition: background-color 0.25s;
            cursor: pointer;
            background: #ffffff;
        }
        .cp-list-card:hover {
            background-color: #eef6ff;
        }

        .cp-list-card-img {
            width: 200px;
            height: 130px;
            flex-shrink: 0;
            margin-right: 18px;
            overflow: hidden;
            border: 1px solid #e8e8e8;
        }
        .cp-list-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cp-list-card-info {
            flex: 1;
            min-width: 0;
        }

        .cp-list-card-title {
            font-size: 16px;
            color: #222;
            margin: 0 0 10px;
            font-weight: 500;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .cp-list-card-price-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        .cp-list-card-price {
            font-size: 24px;
            color: #e60012;
            font-weight: bold;
        }
        .cp-list-card-inquiry-btn {
            border: 1px solid #ff7820;
            color: #ff7820;
            background: #fff;
            padding: 6px 16px;
            border-radius: 18px;
            cursor: pointer;
            font-size: 14px;
            white-space: nowrap;
        }
        .cp-list-card-inquiry-btn:hover {
            background-color: #fff6ee;
        }

        /* ========== 参数区域【一行并排：品牌|值 产地|值 同一水平线，无上下换行】 ========== */
        .cp-list-card-param-box {
            max-width: 420px;
            border: 1px solid #eee;
            transition: border-color 0.25s;
        }
        .cp-list-card-param-row {
            display: flex;
            flex-wrap: nowrap;
        }
        .cp-list-card-param-col {
            display: flex;
            flex: 1 1 50%;
            min-width: 0;
        }
        .cp-list-card-param-col label {
            width: 70px;
            flex-shrink: 0;
            color: #666;
            padding: 4px 8px;
            background: #f5f5f5;
            border-right: 1px solid #eee;
            transition: background 0.25s, border-color 0.25s;
        }
        .cp-list-card-param-col span {
            flex: 1;
            padding: 4px 8px;
            color: #333;
            background: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* hover变色 */
        .cp-list-card:hover .cp-list-card-param-box {
            border-color: #F30;
        }
        .cp-list-card:hover .cp-list-card-param-col label {
            border-right-color: #F30;
            background: #e5e5e5;
        }
        .cp-list-card:hover .cp-list-card-param-col span {
            background: #ffffff;
        }

        .cp-list-card-desc {
            font-size: 14px;
            color: #777;
            margin-top: 10px;
        }

        /* ========== 右侧公司栏 ========== */
        .cp-list-card-company {
            width: 190px;
            flex-shrink: 0;
            text-align: left;
            padding-left: 12px;
            border-left: 1px solid #eee;
            margin-left: 10px;
        }
        .cp-list-card-company-name {
            font-size: 14px;
            color: #222;
            margin-bottom: 10px;
            line-height: 1.4;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .cp-list-card-company-text {
            font-size: 13px;
            color: #777;
            line-height: 1.6;
            margin-bottom: 16px;
            min-height: 20px;
        }

        /* 三个图标居中 */
        .cp-list-card-contact {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        .cp-list-card-contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            text-decoration: none;
            color: #666;
            font-size: 12px;
        }
        .cp-list-card-circle-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            transition: opacity 0.2s;
        }
        .cp-list-card-circle-icon.chat {
            background-color: #409eff;
        }
        .cp-list-card-circle-icon.quote {
            background-color: #ff9800;
        }
        .cp-list-card-circle-icon.phone {
            background-color: #22c55e;
        }
        .cp-list-card-contact-item:hover .cp-list-card-circle-icon {
            opacity: 0.8;
        }
        .cp-list-card-contact-item:hover {
            color: #222;
        }

        /* ========== 右侧推荐列表 ========== */
        .cp-list-right-item {
            display: flex;
            padding: 12px 8px;
            border-bottom: 1px solid #eee;
            gap: 10px;
            cursor: pointer;
            transition: background-color 0.25s;
        }
        .cp-list-right-item:last-child {
            border-bottom: none;
        }
        .cp-list-right-item:hover {
            background-color: #eef6ff;
        }
        .cp-list-right-item-img {
            width: 90px;
            height: 70px;
            flex-shrink: 0;
            border: 1px solid #eee;
            overflow: hidden;
        }
        .cp-list-right-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .cp-list-right-item-text {
            flex: 1;
            min-width: 0;
        }
        .cp-list-right-item-title {
            font-size: 14px;
            color: #222;
            margin: 0 0 6px;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .cp-list-right-item-price {
            font-size: 15px;
            color: #e60012;
            font-weight: bold;
        }
        .cp-list-right-item-price.face {
            color: #444;
            font-size: 14px;
        }
		
/* 主容器 .cp-show 1200px居中 */
.cp-show{
	width: 1200px;
	display: flex;
	gap: 40px;
	align-items: flex-start;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
/* 左侧860px */
.cp-show-left{
    width:860px;
}
/* 右侧320px */
.cp-show-right{
    width:320px;
    position:relative;
}
.cp-show-right-inner{
    width:100%;
}

/* 标题 */
.cp-show-title{
    font-size:26px;
    color:#222;
    margin-bottom:20px;
    font-weight:bold;
}
/* 上部图文信息行 */
.cp-show-top-row{
    display:flex;
    gap:30px;
    background:#fff;
    padding:20px;
    border-radius:6px;
}
/* 图片预览区域 */
.cp-show-gallery{
    width:340px;
}
/* 大图 */
.cp-show-main-img{
    width:100%;
    height:420px;
    background:#eee;
    margin-bottom:12px;
    overflow:hidden;
}
.cp-show-main-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ===== 缩略图容器【相对定位，箭头放在这一层左右】===== */
.cp-show-thumb-wrap{
    position:relative;
    width:100%;
    display:flex;
    align-items:center;
}
/* 左右箭头 */
.cp-show-arrow{
    width:30px;
    height:30px;
    background:rgba(255,255,255,0.6);
    border:none;
    font-size:16px;
    cursor:pointer;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#333;
    transition:all 0.2s;
    z-index:2;
    flex-shrink:0;
}
.cp-show-arrow:hover{
    background:#ff7800;
    color:#fff;
}
.cp-show-arrow-prev{
    margin-right:4px;
}
.cp-show-arrow-next{
    margin-left:4px;
}

/* 缩略图列表 隐藏滚动条 */
.cp-show-thumb-list{
    display:flex;
    gap:8px;
    overflow-x:auto;
    flex:1;
    scrollbar-width:none;
}
.cp-show-thumb-list::-webkit-scrollbar{
    display:none;
}
.cp-show-thumb-item{
    width:76px;
    height:76px;
    background:#eee;
    flex-shrink:0;
    border:2px solid transparent;
    cursor:pointer;
    overflow:hidden;
}
.cp-show-thumb-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.cp-show-thumb-item.active{
    border-color:#ff7800;
}

/* 参数信息区域 */
.cp-show-info{
    flex:1;
}
.cp-show-info-item{
    display:flex;
    padding:10px 0;
    border-bottom:1px solid #eee;
}
.cp-show-info-label{
    width:90px;
    color:#666;
}
.cp-show-info-value{
    flex:1;
    color:#333;
}
.cp-show-info-row-right{
    color:#999;
}
.cp-show-btn-inquiry{
    margin-top:30px;
    width:180px;
    height:46px;
    background:#ff7800;
    color:#fff;
    border:none;
    font-size:16px;
    border-radius:4px;
    cursor:pointer;
}

/* 产品详情区域 */
.cp-show-detail-wrap{
    background:#fff;
    padding:24px;
    margin-top:20px;
    border-radius:6px;
}
.cp-show-detail-title{
    font-size:18px;
    font-weight:bold;
    margin-bottom:16px;
    padding-bottom:10px;
    border-bottom:1px solid #eee;
}
.cp-show-detail-text p{
    line-height:1.8;
    font-size:16px;
    color:#333;
    margin-bottom:12px;
}

/* ===== 互动工具栏（点赞、举报、收藏、评论、分享）===== */
.cp-show-tool-bar{
    background:#fff;
    padding:24px;
    margin-top:20px;
    border-radius:6px;
    display:flex;
    justify-content:center;
    gap:48px;
}
.cp-show-tool-item{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:18px;
    color:#444;
    cursor:pointer;
}

/* ===== 本企业其它产品板块 ===== */
.cp-show-other-product{
    background:#fff;
    padding:24px;
    margin-top:20px;
    border-radius:6px;
}
.cp-show-other-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}
.cp-show-other-title{
    font-size:24px;
    font-weight:bold;
    display:flex;
    align-items:center;
    gap:8px;
}
.cp-show-other-title::before{
    content:"";
    width:6px;
    height:24px;
    background:#3666ee;
}
.cp-show-more-link{
    font-size:18px;
    color:#222;
    cursor:pointer;
}
.cp-show-other-list{
    display:grid;
    grid-template-columns: repeat(5,1fr);
    gap:20px;
}
.cp-show-other-item{
    text-align:center;
    cursor:pointer;
}
.cp-show-other-img{
    width:100%;
    height:180px;
    border:1px solid #ddd;
    margin-bottom:12px;
    overflow:hidden;
}
.cp-show-other-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.cp-show-other-name{
    font-size:16px;
    color:#222;
    line-height:1.5;
}

/* 右侧联系卡片 */
.cp-show-side-card{
    background:#fffcf0;
    border:1px solid #f9e4b7;
    border-radius:6px;
    padding:20px;
}
.cp-show-side-title{
    font-size:18px;
    font-weight:bold;
    margin-bottom:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.cp-show-follow{
    display:flex;
    align-items:center;
    gap:4px;
    font-size:14px;
    color:#666;
    border:1px solid #ddd;
    padding:3px 10px;
    border-radius:16px;
}
.cp-show-company-name{
    font-size:16px;
    margin-bottom:12px;
}
.cp-show-tag-row{
    display:flex;
    margin-bottom:16px;
}
.cp-show-tag-left{
    width:60%;
    background:#ffe8b3;
    text-align:center;
    padding:8px 0;
    border-radius:4px 0 0 4px;
    font-weight:bold;
}
.cp-show-tag-right{
    width:40%;
    background:#fff1cc;
    text-align:center;
    padding:8px 0;
    border-radius:0 4px 4px 0;
}
.cp-show-auth-row{
    display:flex;
    margin-bottom:16px;
}
.cp-show-auth-green{
    width:60%;
    background:#39b54a;
    color:#fff;
    text-align:center;
    padding:10px 0;
    border-radius:4px 0 0 4px;
}
.cp-show-auth-gray{
    width:40%;
    background:#f0f0f0;
    text-align:center;
    padding:10px 0;
    border-radius:0 4px 4px 0;
}
.cp-show-contact-line{
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px 0;
    color:#333;
}
.cp-show-icon-group{
    display:flex;
    gap:12px;
    margin:12px 0;
}
.cp-show-icon-item{
    width:32px;
    height:32px;
    background:#eee;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}
.cp-show-side-buttons{
    display:flex;
    gap:10px;
    margin-top:16px;
}
.cp-show-side-btn{
    flex:1;
    height:38px;
    border:1px solid #ddd;
    background:#fff;
    border-radius:4px;
    cursor:pointer;
}