/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f7f8fa;
    color: #333;
}
a{text-decoration: none;color: #666}
li{list-style-type: none;}



/* 顶部容器 */
.header{
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #FFFFFF;
}
.header-container {
    max-width: 1280px;
    padding: 0px;
    padding-top: 15px;
    margin: auto;
}

.header_top{
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #FFFFFF;
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0px;
}

/* 第一行内容容器 */
.top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

/* Logo区域 */
.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 10px;
    padding-left: 10px;
}

.logo-text {
    font-size: 12px;
    color: #666666;
    line-height: 1.2;
}

/* 搜索框区域 */
.search-section {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 600px;
    margin: 0 20px;
}

.search-container {
    display: flex;
    align-items: center;
    border: 2px solid #ed1c24;
    border-radius: 4px 0 0 4px;
    overflow: hidden;
    flex: 1;
}

.search-dropdown {
    background-color: #f5f5f5;
    padding: 0 10px;
    height: 40px;
    display: flex;
    align-items: center;
    border-right: 1px solid #e0e0e0;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.search-input {
    flex: 1;
    height: 40px;
    border: none;
    padding: 0 15px;
    font-size: 14px;
    outline: none;
}

.search-input::placeholder {
    color: #999999;
}

.camera-icon {
    width: 24px;
    height: 24px;
    margin: 0 10px;
    cursor: pointer;
    opacity: 0.7;
}

.search-btn {
    background: linear-gradient(to right, #e64340, #ff8a00);
    color: white;
    border: none;
    height: 43px;
    width: 60px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background-color: #d9161e;
}

/* 功能按钮区域 */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.action-btn.rfq {
    color: #ed1c24;
    font-weight: bold;
}

.action-btn:hover {
    color: #ed1c24;
}

.action-btn i {
    font-size: 16px;
}

/* 第二行导航菜单 */
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.left-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}
.left-nav-i{display: inline-block}

.nav-item {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item:hover {
    color: #ed1c24;
}

.right-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

/* 下拉菜单样式 */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 响应式处理 */
@media (max-width: 1200px) {
    .action-buttons {
        gap: 10px;
    }

    .left-nav, .right-nav {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .top-row {
        flex-wrap: wrap;
    }

    .search-section {
        margin: 10px 0;
        max-width: 100%;
    }

    .action-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}



/* 页面主容器 */
.page-container {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    gap: 15px;
    margin-top: 15px;
}

/* ---------------- 左侧分类栏样式 ---------------- */
.categories-sidebar {
    width: 220px;
    background-color: #fff;
    border-radius: 6px;
    padding: 15px 0;
}

.category-header {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    padding: 0 15px;
    margin-bottom: 15px;
}

.category-header::before {
    content: "☰";
    margin-right: 8px;
    font-size: 14px;
}

/* 一级分类列表 */
.main-category-list {
    list-style: none;
    /* 固定高度 */
    height: 450px;
    /* 超出内容隐藏 */
    overflow: hidden;
    /* 仅垂直方向显示滚动条，水平方向隐藏 */
    overflow-y: scroll;
    /* 可选：优化滚动条样式（提升体验） */
    /* 滚动条整体宽度 */
    scrollbar-width: thin; /* 适配Firefox */
}

/* 超出5条的子项默认隐藏 */
.hidden-item {
    display: none;
}

/* 展开后显示隐藏项 */
.subcategory-list.expanded .hidden-item {
    display: list-item;
}

/* See More按钮样式（可选） */
.see-more {
    cursor: pointer;
    color: #0066cc;
    margin-top: 8px;
}
.see-more:hover {
    text-decoration: underline;
}


.main-category-item {
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    /* 4. 开启弹性盒模型辅助截断 */

    /* 5. 设置显示的行数（关键） */
    -webkit-line-clamp: 2;
    /* 6. 设置盒子内文本的排列方式为垂直 */
    -webkit-box-orient: vertical;
}

.main-category-item:hover {
    background-color: #f0f2f5;
}

.main-category-item.active {
    background-color: #fff0f0;
    color: #e63946;
    font-weight: 500;
}

.main-category-item .arrow {
    font-size: 12px;
    color: #999;
}

.main-category-item.active .arrow {
    color: #e63946;
}

/* 子分类容器 */
.subcategories-container {
    flex: 1;
    background-color: #fff;
    border-radius: 6px;
    padding: 20px;
    display: none; /* 默认隐藏 */
    position: absolute;
    left: 220px;
    top: 0;
    width: 800px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.subcategories-container.active {
    display: block;
}

/* 子分类网格布局 */
.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.subcategory-group h4 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #333;
}

.subcategory-list {
    list-style: none;
}

.subcategory-item {
    padding: 4px 0;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: color 0.2s;
}

.subcategory-item:hover {
    color: #e63946;
}

.see-more {
    color: #0066c0;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.see-more::after {
    content: "›";
    font-size: 10px;
    margin-left: 4px;
}

/* 分类父容器（用于定位子分类） */
.categories-wrapper {
    position: relative;
}

/* ---------------- 中间主内容区样式 ---------------- */
/* 轮播图容器 */
.main-content{
    width: 750px;
}
.carousel {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 6px;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 轮播图控制按钮 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255,255,255,0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #fff;
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

/* 轮播图指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s;
}

.indicator-dot.active {
    opacity: 1;
    background-color: #e63946;
}

/* 分类卡片区域 */
.category-cards {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.category-card {
    flex: 1;
    background-color: #fff;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.category-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card-img {
    width: 130px;
    height: 130px;
    margin: 0 auto 10px;
    object-fit: contain;
}

.card-title {
    font-size: 14px;
    color: #333;
}

/* ---------------- 右侧热门商品区样式 ---------------- */
.popular-sidebar {
    width: 280px;
    background-color: #fff;
    border-radius: 6px;
    padding: 15px;
}

.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.popular-title {
    font-size: 16px;
    font-weight: 600;
}

.see-all-link {
    font-size: 13px;
    color: #0066c0;
    text-decoration: none;
    cursor: pointer;
}

.see-all-link:hover {
    text-decoration: underline;
}


/* 轮播图指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s;
}

.indicator-dot.active {
    opacity: 1;
    background-color: #e63946;
}

/* 分类卡片区域 */
.category-cards {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.category-card {
    flex: 1;
    background-color: #fff;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.category-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card-img {
    width: 130px;
    height: 130px;
    margin: 0 auto 10px;
    object-fit: contain;
}

.card-title {
    font-size: 14px;
    color: #333;
    width: 148px;
    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
}

/* ---------------- 右侧热门商品区样式 ---------------- */
.popular-sidebar {
    width: 280px;
    background-color: #fff;
    border-radius: 6px;
    padding: 15px;
}

.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.popular-title {
    font-size: 16px;
    font-weight: 600;
}

.see-all-link {
    font-size: 13px;
    color: #0066c0;
    text-decoration: none;
    cursor: pointer;
}

.see-all-link:hover {
    text-decoration: underline;
}

/* 热门商品列表 */
.popular-list {
    list-style: none;
}

.popular-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
}

.popular-item:last-child {
    border-bottom: none;
}

.item-rank {
    font-size: 12px;
    color: #f8f5f5;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(to right, #e64340, #ff8a00);
    position: absolute;
    left: 4px;
    top: 4px;
    z-index: 10;
}
.item-ranks {
    font-size: 12px;
    color: #000000;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background: #cccccc;
    position: absolute;
    left: 4px;
    top: 4px;
    z-index: 10;
}

.item-img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-info {
    flex: 1;
}

.item-name {

    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 36px;
}
.item-name a{
    font-size: 13px;
    color: #333;
}

.item-price {
    font-size: 14px;
    font-weight: 600;
    color: #e63946;
    margin-bottom: 3px;
}

.item-moq {
    font-size: 12px;
    color: #999;
}
/*************/
/* 核心容器 */
.cate-container {
    width: 90%;
    max-width: 1280px;
    margin: 1rem auto;
}

/* 标题区域 */
.cate-header {
    margin-bottom: 1.5rem;
}

.cate-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.cate-subtitle {
    font-size: 0.9rem;
    color: #666;
}

/* 滚动容器（相对定位，承载箭头和内容） */
.cate-scroll-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* 左右箭头样式 */
.cate-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

/* 左箭头位置 */
.cate-prev {
    left: 10px;
}

/* 右箭头位置 */
.cate-next {
    right: 10px;
}

/* 箭头hover效果 */
.cate-arrow:hover {
    background-color: #f5f5f5;
}

/* 箭头图标样式 */
.cate-arrow i {
    font-size: 1rem;
    color: #333;
}

/* 分类内容容器（横向滚动） */
.cate-content {
    display: flex;
    gap: 1.5rem; /* 分类项之间的间距 */
    overflow-x: hidden; /* 隐藏横向滚动条 */
    scroll-behavior: smooth; /* 平滑滚动 */
    padding: 0.5rem 0;
    background: #FFFFFF;
}

/* 分类项样式 */
.cate-item {
    flex: 0 0 auto; /* 不收缩、不放大、自动宽度 */
    width: 100px; /* 固定宽度，可根据需求调整 */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

/* 分类项图片容器 */
.cate-item-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

/* 分类项图片 */
.cate-item-img img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

/* 分类项名称 */
.cate-item-name {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.2;
}

/***********/
/* 核心容器：紫色渐变背景+内边距+整体尺寸 */
.ipro-container {
    background: linear-gradient(90deg, #8729F9 0%, #D71919 100%);
    padding: 25px 30px;
    width: 100%;
    max-width: 1280px; /* 匹配原图宽高比 */
    margin: 0 auto;
    border-radius: 2px;
}

/* 顶部标题栏：flex布局实现左右对齐 */
.ipro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* 标题组：主副标题垂直排列 */
.ipro-title-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* 主标题样式：白色粗体，字号匹配原图 */
.ipro-main-title {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

/* 副标题样式：白色常规字重，浅透明度 */
.ipro-sub-title {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

/* View More按钮：白色背景+紫色文字+圆角 */
.ipro-view-more {
    background-color: #FFFFFF;
    color: #7A29F9;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

/* 分类卡片网格：8列等宽+紫色分隔线 */
.ipro-categories-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 原图视觉为9列（最后一列空白），精准匹配 */
    gap: 10px; /* 卡片间的紫色分隔线（继承容器背景色） */
}

/* 单个分类卡片：白色背景+居中对齐 */
.ipro-category-card {
    background-color: #FFFFFF;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px; /* 固定卡片高度，匹配原图 */
    text-align: center;
}

/* 卡片图片容器：控制图片尺寸和居中 */
.ipro-card-img {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* 卡片图片：自适应容器，保持比例 */
.ipro-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 卡片文字：黑色、字号/字重匹配原图 */
.ipro-card-text {

}
.ipro-card-text a{
    color: #000000;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    /* 3. 核心属性：设置文本溢出行为为省略号 */
    text-overflow: ellipsis;
    /* 4. 开启弹性盒模型辅助截断 */
    display: -webkit-box;
    /* 5. 设置显示的行数（关键） */
    -webkit-line-clamp: 2;
    /* 6. 设置盒子内文本的排列方式为垂直 */
    -webkit-box-orient: vertical;
}

/************/
/* 核心容器 */
.icom-supplier-container {
    width: 100%;
    max-width: 1280px;
    margin: 20px auto;
}

/* 顶部标题栏：标题+See All */
.icom-supplier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* 主标题 */
.icom-main-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
}

/* See All 链接 */
.icom-see-all {
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    font-weight: 500;
}

/* 供应商卡片列表：网格布局 */
.icom-supplier-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 单个供应商卡片 */
.icom-supplier-card {
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 15px;
    background-color: #ffffff;
}

/* 供应商名称 */
.icom-supplier-name {

    margin-bottom: 8px;
    line-height: 1.2;
}
.icom-supplier-name a{
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

/* 标签组：Premier/Super、年限、Verified等 */
.icom-tag-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

/* 基础标签样式 */
.icom-tag {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
}

/* Premier 标签 */
.icom-tag-premier {
    background-color: #e63946;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
}

/* Super 标签 */
.icom-tag-super {
    background-color: #ffb703;
    color: #333333;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
}

/* 年限/360VR/O2O 图标标签 */
.icom-tag-icon {
    height: 18px;
    width: auto;
    vertical-align: middle;
}

/* Verified 标签 */
.icom-tag-verified {
    color: #1d3557;
    font-weight: 500;
}

/* 供应商信息行：Business Type / No. of employees */
.icom-supplier-info {
    font-size: 12px;
    color: #666666;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* 产品图片网格 */
.icom-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

/* 产品图片容器 */
.icom-product-img {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border-radius: 2px;
    overflow: hidden;
}

/* 产品图片 */
.icom-product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 响应式适配：小屏幕改为单列 */
@media (max-width: 768px) {
    .icom-supplier-cards {
        grid-template-columns: 1fr;
    }
}


/**************/
/* 商品列表容器 - 核心改为Grid响应式布局，移除无效的flex-wrap */
.cpro-product-list {
    margin: auto;
    max-width: 1280px;
    display: grid;
    /* 默认大屏5列，列间距10px */
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* 单个商品卡片 */
.cpro-product-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%; /* 让卡片高度一致 */
}

/* 商品图片容器 */
.cpro-product-img {
    width: 100%;
    aspect-ratio: 1/1; /* 保持1:1比例 */
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4px;
}

.cpro-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 图片自适应裁剪，不拉伸 */
}

/* New标签 */
.cpro-tag-new {
    display: inline-block;
    background-color: #fef2f2;
    color: #dc2626;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 4px;
}

/* 商品标题 */
.cpro-product-title {
    font-size: 14px;
    color: #111827;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 最多显示2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}
.cpro-product-title a{
    font-size: 14px;
    color: #111827;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 最多显示2行 */
    -webkit-box-orient: vertical;
}
/* 价格区域 */
.cpro-product-price {
    font-size: 15px;
    color: #b91c1c;
    font-weight: 700;
    margin-bottom: 2px;
}

/* MOQ */
.cpro-moq {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

/* 厂商信息 */
.cpro-manufacturer {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #374151;
    margin-bottom: 4px;
    flex-wrap: wrap; /* 内容过长时换行 */
}

.cpro-manufacturer .cpro-badge-premier {
    background-color: #92400e;
    color: white;
    padding: 1px 4px;
    border-radius: 2px;
    font-size: 11px;
}

.cpro-manufacturer .cpro-badge-verified {
    background-color: #059669;
    color: white;
    padding: 1px 4px;
    border-radius: 2px;
    font-size: 11px;
}

.cpro-manufacturer .cpro-manufacturer-name {
    color: #4b5563;
}

/* 展会信息 */
.cpro-exhibition {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
}

/* 操作按钮区域 */
.cpro-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto; /* 按钮贴底 */
    padding-bottom: 4px; /* 增加底部内边距 */
    margin: auto;
}

.cpro-btn-inquire {
    background-color: white;
    color: #2563eb;
    border: 1px solid #2563eb;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0; /* 按钮不被压缩 */
}

.cpro-btn-inquire:hover {
    background-color: #eff6ff;
}

.cpro-order-btn {
    background-color: white;
    color: #ff370b;
    border: 1px solid #ff370b;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0; /* 按钮不被压缩 */
}

.cpro-order-btn:hover {
    background-color: #eff6ff;
}

.cpro-action-icons {
    display: flex;
    gap: 6px;
}

.cpro-action-icons i {
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
}

/* 响应式适配 - 按屏幕宽度调整Grid列数（核心修改） */
/* 大屏（1200px以下）：4列 */
@media (max-width: 1200px) {
    .cpro-product-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 平板（992px以下）：3列 */
@media (max-width: 992px) {
    .cpro-product-list {
        grid-template-columns: repeat(3, 1fr);
    }
    /* 适配平板字体 */
    .cpro-product-title {
        font-size: 13px;
    }
    .cpro-product-price {
        font-size: 14px;
    }
}

/* 小平板/大手机（768px以下）：2列 */
@media (max-width: 768px) {
    .cpro-product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px; /* 减小间距 */
    }
}

/* 手机（480px以下）：1列 */
@media (max-width: 480px) {
    .cpro-product-list {
        grid-template-columns: 1fr;
        padding: 8px;
    }
    /* 适配手机端字体和按钮 */
    .cpro-product-title {
        font-size: 14px;
    }
    .cpro-btn-inquire {
        padding: 8px 16px; /* 放大按钮，方便点击 */
        font-size: 13px;
    }
    .cpro-action-icons i {
        font-size: 15px;
    }
}


/***********/
.footer{
    max-width: 1280px;
    margin: auto
}
/* 热门搜索区域 */
.foot-popular-searches {
    padding: 20px 0px;
    border-bottom: 1px solid #e5e5e5;
}

.foot-popular-searches h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.foot-search-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.foot-search-item {
    color: #666;
    text-decoration: none;
    font-size: 13px;
}

.foot-search-item:hover {
    text-decoration: underline;
}

/* 底部主内容区域 */
.foot-main {
    padding: 30px 0px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* Logo和简介部分 */
.foot-logo-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.foot-logo {
    max-width: 200px;
}

.foot-desc {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

/* 底部栏目通用样式 */
.foot-column h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.foot-column ul {
    list-style: none;
}

.foot-column li {
    margin-bottom: 8px;
}

.foot-column a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
}

.foot-column a:hover {
    text-decoration: underline;
}

/* 二维码区域 */
.foot-qrcode-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.foot-qrcode {
    width: 80px;
    height: 80px;
    border: 1px solid #e5e5e5;
    padding: 5px;
}

.foot-qrcode-text {
    font-size: 12px;
    color: #666;
    text-align: center;
    line-height: 1.4;
}

/* 版权备案区域 */
.foot-copyright {
    padding: 15px 20px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.foot-copyright span {
    margin: 0 8px;
}

/* 整体容器 - 前缀new */
.new-guides-container {
    max-width: 1280px;
    margin: 20px auto;
}

/* 标题栏（含View more） - 前缀new */
.new-guides-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.new-guides-header h2 {
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

.new-guides-header a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.new-guides-header a::after {
    content: ">";
    margin-left: 5px;
    font-size: 12px;
}

/* 主体内容布局（问答列表 + 文章列表） - 前缀new */
.new-guides-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* 左侧问答列表样式 - 前缀new */
.new-faq-list {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #eee;
}

.new-faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.new-faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.new-faq-question {
    font-weight: 600;
    margin-bottom: 5px;
}
.new-faq-question a{
    font-size: 16px;
    color: #333;
}

.new-faq-answer {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    max-height: 40px;
    overflow: hidden; /* 溢出隐藏（保留） */
    text-overflow: ellipsis; /* 溢出部分显示省略号 */
}

/* 右侧文章列表通用样式 - 前缀new */
.new-articles-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #FFFFFF;
}

.new-article-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px;
    border-radius: 4px;
}

/* TOP文章特殊样式 - 突出显示 + 标题加粗 */
.new-article-item-top {
    background-color: #f0f8fb;
    border: 1px solid #e1f0f8;
}

.new-article-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.new-article-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* 普通文章标题样式 */
.new-article-title {
    font-size: 15px;
    color: #333;
    text-decoration: none;
}

/* TOP文章标题加粗 + 字号稍大 */
.new-article-title-top {
    font-size: 16px;
    color: #222;
    font-weight: bold;
    text-decoration: none;
}

.new-article-title:hover, .new-article-title-top:hover {
    text-decoration: underline;
}

.new-article-date {
    font-size: 12px;
    color: #999;
}



/* 导航行样式 */
.nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;

    height: 60px;

}

/* 左侧导航 */
.left-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.left-nav-i {
    height: 100%;
    display: flex;
    align-items: center;
}

/* 导航项通用样式 */
.nav-item {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    height: 100%;
    transition: background-color 0.2s;
}

.nav-item:hover {
    background-color: #f8f8f8;
}

.dropdown i.fa-chevron-down {
    font-size: 10px;
}

/* 下拉分类容器 - 核心：默认隐藏，绝对定位 */
.hc-dropdown-container {
    position: absolute;
    top: 60px; /* 与导航栏高度对齐 */
    width: 650px;
    background-color: #fff;
    border: 1px solid #eee;
    border-top: none;
    padding: 15px;
    z-index: 9999; /* 确保悬浮在最上层 */
    display: none; /* 默认隐藏 */
}

/* 下拉容器显示状态 */
.hc-dropdown-container.show {
    display: block;
}

/* 分类列表样式（复用之前的hc开头类名） */
.hc-category-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 0;
    list-style: none;
    max-height: 500px; /* 限制最大高度，超出滚动 */
    overflow-y: auto;
}

.hc-category-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px 8px;
    border-radius: 4px;
}

.hc-category-item:hover {
    color: #1890ff;
    background-color: #f0f8ff;
}

.hc-icon {
    margin-right: 8px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

/* 右侧导航 */
.right-nav {
    display: flex;
    align-items: center;
}


/* 语言列表容器 - 核心：一行显示3个 */
.lang-container {
    display: none;
    width: 387px;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    background: #FFFFFF;
    position: absolute;
    right: 0px;
    top: 39px;
    z-index: 999;
    padding: 10px;
    height: 350px;
    /* 核心修改：超出高度时显示垂直滚动条，横向超出隐藏 */
    overflow-y: auto;
    overflow-x: hidden;
    /* 可选优化：美化滚动条（提升体验） */
    scrollbar-width: thin; /* 火狐：窄滚动条 */
    scrollbar-color: #ccc #f5f5f5; /* 火狐：滚动条颜色/背景色 */
}

/* 语言选项样式 */
.lang-item a {
    font-size: 14px;
    color: #333;
    line-height: 28px; /* 行高匹配图片文字间距 */
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px 0;
}

/* hover效果（可选，提升体验） */
.lang-item a:hover {
    color: #1890ff;
}

/* 适配不同语言文字的对齐（图片中是左对齐） */
.lang-item span {
    display: inline-block;
    text-align: left;
}


.foot_main{width: 100%;background: #FFFFFF}




/* 核心容器 - 整体布局 */
.top-container {
    display: flex;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    padding:  10px;
    background: linear-gradient(90deg, #ece7f3 0%, #b9b3b3 100%);
}

/* 左侧Banner区域 */
.top-banner {
    width: 280px;
    position: relative;
    height: 200px;
}
.top-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.top-play-btn::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #333;
    margin-left: 5px;
}

/* 右侧内容区域 */
.top-right-section {
    width: 70%;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 公司头部信息 */
.top-company-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-company-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.top-company-logo {
    width: 40px;
    height: 40px;
}
.top-company-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.top-company-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.top-company-tags {
    display: flex;
    gap: 5px;
    align-items: center;
}
.top-tag {
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    color: white;
}
.top-tag-super {
    background: #f5a623;
}
.top-tag-360 {
    background: #0099ff;
}
.top-tag-2years {
    background: #ff4d4f;
    color: white;
}
.top-tag-verified {
    color: #666;
    font-size: 12px;
}
.top-company-actions {
    display: flex;
    gap: 10px;
}
.top-btn {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}
.top-btn-chat {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}
.top-btn-inquire {
    background: #ff4d4f;
    color: white;
}

/* 产品展示区域 */
.top-products {
    display: flex;
    gap: 10px;
    overflow: hidden;
}
.top-product-card {
    width: calc(100% / 7 - 10px); /* 6个产品 + 1个view all */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.top-product-img {
    width: 100%;
    max-height: 110px;
    object-fit: contain;
}
.top-product-viewall {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 110px;
    border: 1px dashed #ddd;
    color: #666;
    font-size: 14px;
    cursor: pointer;
}
.top-product-viewall::after {
    content: "→";
    margin-left: 5px;
}

/* 底部信息栏 */
.top-info-bar {
    display: flex;
    gap: 20px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}
.top-info-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.top-info-label {
    font-size: 12px;
    color: #999;
}
.top-info-value {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}
.top-info-icon {
    width: 16px;
    height: 16px;
}

.pl_cate_nav{background: #FFFFFF;width: 100%;}
.pc-nav{max-width: 1280px;margin: auto;}
.pl_cate{max-width: 1280px;margin: auto;background:#FFFFFF}
/* 顶部导航栏 */
.pc-nav {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.pc-nav-item {
    padding: 8px 15px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    margin-right: 5px;
    position: relative;
}

/* 选中状态 */
.pc-nav-item.active {
    color: #f40;
    font-weight: 600;
}

.pc-nav-item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #f40;
}

/* 筛选容器 */
.pc-filter-container {
    padding: 0 20px;
    margin-top: 10px;
}

/* 单个筛选行 */
.pc-filter-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

/* 筛选标签（左侧固定宽度） */
.pc-filter-label {
    width: 80px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-align: left;
}

/* 筛选选项容器 */
.pc-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* 选项之间的间距 */
    flex: 1;
}

/* 筛选选项 */
.pc-filter-options a{
    font-size: 14px;
    color: #333;
    cursor: pointer;
    padding: 2px 0;
}

.pc-filter-options a:hover {
    color: #f40;
    transform: translateY(-1px);
}
.pc-filter-options a.active:hover {
    color: #fff0f0;
}

.pc-filter-options .active{
    background: linear-gradient(to right, #e64340, #ff8a00);
    color: #FFFFFF;
    padding: 0px 5px;
}

/* 更多按钮样式 */
.pc-more-btn {
    padding: 2px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.pc-more-btn::after {
    content: "▼";
    font-size: 8px;
    margin-left: 5px;
}

/* 下拉箭头样式 */
.pc-dropdown-arrow {
    font-size: 8px;
    margin-left: 5px;
    color: #999;
}

/**********/
.res-rec{
    max-width: 1280px;
    margin: auto;
}
/* 顶部标题栏 - 对应截图"为你推荐+更多热卖"区域 */
.res-recommend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}
.res-recommend-title {
    color: #333;
    font-size: 18px;
    font-weight: bold;
}
.res-recommend-more {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.res-more-text {
    color: #666;
    margin-right: 8px;
}
.res-more-link {
    color: #ff4400;
    text-decoration: none;
}







/* 核心布局样式：让两个子元素并排 */
.fac-supplier-card {
    display: flex; /* 开启flex布局，子元素默认横向排列 */
    gap: 20px; /* 两个子元素之间的间距，可选，根据需要调整 */
    align-items: flex-start; /* 让两个子元素顶部对齐 */
    padding: 15px; /* 可选，增加内边距，让内容不贴边 */
    border: 1px solid #eee; /* 可选，增加边框，方便查看效果 */
    border-radius: 8px; /* 可选，圆角 */
    background: #FFFFFF;
}

/* 左侧信息区域宽度 */
.fac-products-left {
    flex: 1; /* 占据剩余空间，也可以设置固定宽度如 width: 300px; */
    min-width: 550px; /* 可选，设置最小宽度，防止缩得太窄 */
}

/* 右侧产品展示区域宽度 */
.fac-products-right {
    flex: 2; /* 宽度比例是左侧的2倍，也可以设置固定宽度 */
}



/* 响应式适配（可选，小屏幕下堆叠显示） */
@media (max-width: 768px) {
    .fac-supplier-card {
        flex-direction: column; /* 小屏幕下改为纵向排列 */
    }
    .fac-products-grid {
        grid-template-columns: repeat(2, 1fr); /* 小屏幕下2列 */
    }
}

/************/
.fac-div{
    max-width: 1280px;
    margin: auto;
}
/* 页面主容器：双列布局（供应商区 + 侧边栏） */
.fac-page-container {
    display: flex;
    margin: 0 auto;
    gap: 20px;
    padding: 10px;
    padding-right: 0px;
    padding-left: 0px;
}
.fac-products-left{
    display: inline-block;
}
.fac-products-right{
    display: inline-block;
}

/* 左侧供应商主内容区 */
.fac-suppliers-container {
    flex: 1;
}

/* 单个供应商卡片 */
.fac-supplier-card {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* 供应商头部（公司名 + 认证标签） */
.fac-supplier-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    background-color: #f8f9fa;
}

.fac-company-name {
    font-weight: bold;
    font-size: 15px;
    color: #2a588f;
    margin-left: 8px;
}

.fac-audited-badge {
    font-size: 12px;
    color: #666;
    background-color: #e3f2fd;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    margin-right: 8px;
}
.fac-year{
    color: red;
    font-size: 12px;
    background-color: #e3f2fd;
    padding: 2px 6px;
}

/* 供应商信息行 */
.fac-supplier-info-row {
    display: flex;
    margin-bottom: 6px;
    font-size: 14px;
}

.fac-info-label {
    width: 100px;
    color: #666;
    font-weight: 500;
}

.fac-info-value {
    color: #333;
    flex: 1;
}

/* 操作按钮组 */
.fac-action-buttons {
    margin: 12px 0 15px 0;
    display: flex;
    gap: 10px;
}

.fac-contact-btn {
    background-color: #e63946;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

.fac-chat-btn {
    background-color: white;
    color: #2196f3;
    border: 1px solid #2196f3;
    padding: 6px 12px;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

/* 产品展示区 */
.fac-products-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.fac-product-item {
    width: calc(33.33% - 10px);
    text-align: center;
}

.fac-product-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    margin-bottom: 6px;
}

.fac-product-title {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

/* 右侧侧边栏 */
.fac-sidebar {
    width: 200px;
    background: #fff;
    padding: 10px;
}

/* 侧边栏标题 */
.fac-sidebar-title {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

/* 侧边栏列表 */
.fac-sidebar-list {
    list-style: none;
    margin-bottom: 20px;
}

.fac-sidebar-item {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

/* More链接 */
.fac-more-link {
    color: #2196f3;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}



/* 面包屑整体容器 */
.nav_cate-breadcrumb {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666666; /* 匹配原图的浅灰色文字 */
    padding: 10px 0; /* 上下内边距，可根据页面布局调整 */
    line-height: 1.5;
    max-width: 1280px;
    margin: auto;
}

/* 面包屑项容器（用于控制项和分隔符的间距） */
.nav_cate-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* 适配小屏幕自动换行 */
}

/* 单个面包屑项 */
.nav_cate-item {
    text-decoration: none; /* 移除默认下划线 */
    color: #666666; /* 文字颜色与原图一致 */
    margin: 0 5px; /* 项左右间距 */
}

/* 第一个项取消左侧间距，更贴合原图 */
.nav_cate-item:first-child {
    margin-left: 0;
}

/* 分隔符样式 */
.nav_cate-separator {
    color: #666666; /* 分隔符颜色与文字一致 */
    margin: 0 5px; /* 分隔符左右间距 */
}

/* 可选：hover效果（原图无hover，保留扩展空间） */
.nav_cate-item:hover {
    color: #333333;
    text-decoration: underline;
}

.pd-container {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    padding-left: 0px;
    padding-right: 0px;
    gap: 20px;
}
/* 左侧图片区域 */
.pd-image-section {
    flex: 1.3;
    display: flex;
    gap: 10px;
}
.pd-thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow: hidden;
    height: 450px;
    overflow-y: auto; /* 开启垂直滚动 */
    overscroll-behavior-y: contain; /* 限制回弹仅在容器内 */
    scroll-behavior: smooth; /* 平滑滚动 */
}
.pd-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
}
.pd-thumbnail.active {
    border-color: #ff4400;
}
.pd-main-image-wrapper {
    flex: 1;
    position: relative;
    width: 450px;
}
.pd-main-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}
.pd-image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 20px;
}
.pd-prev-btn {
    left: 10px;
}
.pd-next-btn {
    right: 10px;
}
.pd-share {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    font-size: 12px;
}
.pd-favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 中间产品信息区域 */
.pd-product-info {
    flex: 1.5;
}
.pd-product-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.pd-lead-time {
    display: inline-block;
    background: #ff4400;
    color: white;
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 3px;
    margin-right: 10px;
}
.pd-lead-time-text {
    font-size: 12px;
    color: #666;
}
/* 价格区域 */
.pd-price-section {
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.pd-price-item {
    display: flex;
    flex-direction: column;
}
.pd-price {
    font-size: 20px;
    color: #ff4400;
    font-weight: bold;
}
.pd-quantity-range {
    font-size: 12px;
    color: #666;
}
.pd-latest-price-link {
    grid-column: 2;
    font-size: 12px;
    color: #0066cc;
    text-align: right;
    cursor: pointer;
}
/* 产品属性表格 */
.pd-product-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.pd-product-table td {
    border: 1px solid #eee;
    padding: 8px;
    font-size: 14px;
}
.pd-product-table td:first-child {
    background: #f5f5f5;
    font-weight: bold;
    width: 120px;
}
.pd-view-more-link {
    text-align: right;
    font-size: 12px;
    color: #0066cc;
    cursor: pointer;
    margin-bottom: 20px;
}
/* 数量和按钮 */
.pd-quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.pd-qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
}
.pd-qty-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ccc;
}
.pd-add-cart-btn {
    padding: 8px 20px;
    border: 1px solid #ff4400;
    background: white;
    color: #ff4400;
    border-radius: 3px;
    cursor: pointer;
}
.pd-action-buttons {
    display: flex;
    gap: 10px;
}
.pd-inquire-btn {
    padding: 10px 30px;
    background: #ff4400;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.pd-order-btn {
    padding: 10px 30px;
    background: #ffaa00;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

/* 右侧供应商信息区域 */
.pd-supplier-section {
    flex: 1;
    border: 1px solid #eee;
    padding: 15px;
}
.pd-supplier-name {
    font-size: 16px;
    margin-bottom: 10px;
}
.pd-supplier-tags {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 12px;
}
.pd-tag {
    padding: 2px 5px;
    border-radius: 3px;
    background: #e6f7ff;
    color: #0066cc;
}
.pd-tag.premier {
    background: #ff4400;
    color: white;
}
.pd-supplier-verified {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}
.pd-supplier-features {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 15px;
}
.pd-trade-shows {
    margin-bottom: 15px;
}
.pd-trade-shows-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}
.pd-trade-shows-text {
    font-size: 12px;
    color: #0066cc;
    cursor: pointer;
}
.pd-business-type {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}
.pd-business-type-text {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}
.pd-chat-btn, .pd-follow-btn {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}


.comp-card {
    font-family: Arial, sans-serif;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    margin-top: 10px;
}

/* 企业名称行 */
.comp-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.comp-logo {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.comp-name {

    margin-right: 8px;
}
.comp-name a{
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.comp-location-icon {
    margin-left: auto;
    color: #999;
}

/* 标签和能力列表 */
.comp-tags {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-tag {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.comp-tag-icon {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-tag-text {
    display: flex;
    align-items: center;
}

.comp-tag-highlight {
    color: #007bff;
    font-weight: 600;
    margin: 0 4px;
}

/* 能力列表 */
.comp-capabilities {
    margin-top: 8px;
    padding-left: 24px;
}

.comp-capability-item {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

/* 登录提示 */
.comp-login-tip {
    font-size: 14px;
    color: #007bff;
    cursor: pointer;
    margin-top: 8px;
}
.comp-ewm-tags{
    display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.comp-ewm{margin-right: 55px}
.comp-ewm img{
    width: 80px; height: 80px; display: block;margin: auto;
}
.comp-ewm p{
    text-align: center; margin:auto; font-size: 12px;
}

/* 价格列表容器 */
.comp-price-list {
    font-family: Arial, sans-serif;
    padding: 16px;
    margin-bottom: 10px;
    background: #FFFFFF;
}

/* 列表头部 */
.comp-price-header {
    display: grid;
    grid-template-columns: 330px 150px 100px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* 列表项 */
.comp-price-item {
    display: grid;
    grid-template-columns: 330px 150px 100px;
    align-items: center;
    margin-bottom: 8px;
}

/* 价格文字样式（还原图片中的红色） */
.comp-price-value {
    color: #e63946;
    font-weight: 600;
}

/* 数量范围样式 */
.comp-quantity-range {
    color: #666;
    font-size: 14px;
}

/* 获取最新价格按钮/文字 */
.comp-get-price {
    grid-column: 3;
    color: #0066cc;
    cursor: pointer;
    font-size: 14px;
    text-align: right;
    margin-top: 8px;
}

/* 核心容器 - 固定1280px宽度 */
.cprod-container {
    width: 1280px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
}

/* 标题样式 */
.cprod-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* 产品列表外层容器（控制溢出、承载按钮） */
.cprod-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: grab;
}
.cprod-slider-wrapper:active {
    cursor: grabbing;
}

/* 产品列表容器（用于滚动） */
.cprod-product-list {
    display: flex;
    gap: 20px; /* 产品卡片间距，与参考图一致 */
    list-style: none;
    transition: transform 0.3s ease;
}

/* 单个产品卡片样式 */
.cprod-product-item {
    flex: 0 0 calc((1280px - 100px) / 6); /* 6个产品均分宽度，扣除间距 */
}
.cprod-product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 2px;
}
.cprod-product-name {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    margin-bottom: 8px;
}
.cprod-product-price {
    font-size: 16px;
    color: #e63946;
    font-weight: 600;
    margin-bottom: 5px;
}
.cprod-product-moq {
    font-size: 12px;
    color: #999;
}

/* 左右切换按钮（默认隐藏） */
.cprod-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    cursor: pointer;
    display: block;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 18px;
    color: #666;
}
.cprod-nav-btn-left {
    left: 10px;
}
.cprod-nav-btn-right {
    right: 10px;
}
/* 鼠标悬停时显示按钮 */
.cprod-slider-wrapper:hover .cpro-nav-btn {
    display: flex;
}
.cprod-nav-btn:hover {
    background: #f5f5f5;
    border-color: #ddd;
}

/* 禁用按钮样式（滚动到边界时） */
.cprod-nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* 页面容器：固定1280px宽度，居中 */
.pds-container {
    width: 1280px;
    margin: 0 auto;
    position: relative;
    padding-right: 320px; /* 给右侧固定区域留空间 */
    background: #FFFFFF;
}

/* 左侧内容区：可滚动 */
.pds-left {
    width: 100%;
    padding: 20px 0;
}

/* 右侧固定区：初始隐藏，固定在页面右侧 */
.pds-right {
    width: 300px;
    position: fixed;
    top: 140px;
    right: calc(50% - 1280px/2 + 0px); /* 精准定位到1280px容器右侧 */
    display: none; /* 初始隐藏 */
    flex-direction: column;
    gap: 15px;
    transition: display 0.2s ease;
    background: #FFFFFF;
    z-index: 999;
}

/* 顶部标签栏 */
.pds-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}
.pds-tab {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}
.pds-tab.active {
    border-bottom-color: #000;
    color: #000;
}

/* 二级标签栏 */
.pds-sub-tabs {
    display: flex;
    margin-bottom: 20px;
    padding-left: 10px;
    gap: 25px;
    color: #666;
    font-size: 14px;
}
.pds-sub-tab {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pds-sub-tabs .active{
    font-weight: bold;
    color: #000c17;
}

.pds-sub-tab::before {
    content: "";
    font-size: 12px;
}

/* 产品标题 */
.pds-product-title {
    font-size: 22px;
    color: #0066cc;
    margin: 20px 0;
    line-height: 1.4;
}

/* 产品描述 */
.pds-product-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
.pds-desc-heading {
    font-weight: 700;
    color: #e64340;
    margin: 10px 0 5px;
}
.pds-desc-text {
    margin-bottom: 8px;
}

/* 右侧价格区域 */
.pds-price-card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 15px;
}
.pds-price {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pds-price img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}
.pds-min-order {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.pds-inquire-btn {
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(to right, #e64340, #ff8a00);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* 右侧供应商信息卡 */
.pds-supplier-card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 15px;
}
.pds-supplier-name {

    margin-bottom: 10px;
}
.pds-supplier-name a{
    font-size: 16px;
    font-weight: 600;
    color: #0066cc;
}
.pds-supplier-tags {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.pds-tag {
    padding: 2px 6px;
    background-color: #f0f0f0;
    border-radius: 3px;
    font-size: 12px;
    color: #666;
}
.pds-tag.verified {
    color: #0066cc;
}
.pds-supplier-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}
.pds-response-rate {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}
.pds-response-time {
    font-size: 14px;
    color: #009933;
    margin-bottom: 10px;
}
.pds-trade-show {
    font-size: 14px;
    color: #0066cc;
    margin-bottom: 15px;
}
.pds-trade-show a {
    color: #0066cc;
    text-decoration: none;
}
.pds-chat-btn {
    width: 100%;
    padding: 10px 0;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* 模拟左侧长内容，测试滚动效果 */
.pds-long-content {
    background-color: #FFFFFF;
    font-size: 14px;
    color: #666;
}

/* 基础样式，还原图片中的表格布局和字体样式 */
.pdesc-container {
    font-family: Arial, sans-serif;
    max-width: 960px;
}

.pdesc-section-title {
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 10px 0;
    color: #333;
}

.pdesc-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.pdesc-info-table td {
    padding: 12px 8px;
    border: 1px solid #e0e0e0;
    vertical-align: top;
}

.pdesc-info-label {
    width: 20%;
    background-color: #f5f5f5;
    font-weight: 500;
    color: #555;
}

.pdesc-info-value {
    width: 30%;
    color: #333;
}

/* 适配单行通栏的单元格 */
.pdesc-full-row td {
    width: 100%;
}







/* 核心容器：固定960px宽度，居中 */
.mes-container {
    width: 960px;
    margin: 20px auto;
}

/* 标题样式 */
.mes-section-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

/* 更新时间提示 */
.mes-update-info {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

/* 供应商信息表格 */
.mes-supplier-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.mes-supplier-table td {
    padding: 12px 10px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
}

.mes-table-label {
    width: 120px;
    background-color: #f5f5f5;
    color: #555;
    font-weight: 500;
}

.mes-table-value {
    color: #333;
}
.mes-table-value a{
    color: #333;
}
/* 询价表单标题 */
.mes-inquiry-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 30px 0 15px 0;
}

/* 表单容器 */
.mes-inquiry-form {
    padding: 0 10px;
}

/* 表单行样式 */
.mes-form-row {
    margin-bottom: 15px;
}

/* 表单标签 */
.mes-form-label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}

.mes-form-label .mes-required {
    color: #e64340;
}

.mes-to-label {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.mes-to-label span {
    font-weight: 500;
}

/* 文本域样式 */
.mes-message-input {
    width: 100%;
    height: 180px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
    resize: vertical;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
}

.mes-message-input::placeholder {
    color: #999;
}

/* 字符计数（文本域右下角） */
.mes-char-count {
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* 邮箱输入框（带红色边框） */
.mes-email-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 14px;
    box-sizing: border-box;
}

.mes-email-input::placeholder {
    color: #999;
}

/* 邮箱提示文本 */
.mes-email-tip {
    font-size: 12px;
    color: #e64340;
    margin-top: 3px;
}

/* 提交按钮 */
.mes-submit-btn {
    padding: 12px 30px;
    background: linear-gradient(to right, #e64340, #ff8a00);
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.mes-submit-btn:hover {
    opacity: 0.9;
}




/* 容器样式 - 固定宽度1280px，居中显示 */
.pros-container {
    width: 1280px;
    margin: 0 auto;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}
/* 标题样式 */
.pros-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}
/* 产品列表 - 弹性布局，自动换行，间距均匀 */
.pros-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px; /* 产品卡片之间的间距 */
    justify-content: flex-start;
}
/* 产品卡片样式 - 计算宽度适配5列布局 */
.pros-card {
    width: calc((100% - 4 * 16px) / 5); /* 5列 - 4个间距 */
    box-sizing: border-box;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}
/* 产品图片容器 */
.pros-img-wrapper {
    width: 100%;
    height: 200px; /* 固定图片高度，保持统一 */
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
/* 产品图片 */
.pros-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* 播放按钮占位（模拟原图的播放图标） */
.pros-play-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
/* 产品信息区域 */
.pros-info {
    padding: 10px;
}
/* 产品名称 */
.pros-name {

}
.pros-name a{
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 最多显示2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* 产品价格 */
.pros-price {
    font-size: 16px;
    color: #e63946;
    font-weight: bold;
    margin-bottom: 4px;
}
/* 最小起订量 */
.pros-moq {
    font-size: 12px;
    color: #666;
}




/* 核心容器 - 宽度960px，类名co开头 */
.co-container {
    width: 960px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #333;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    box-sizing: border-box;
    padding: 10px;
}

/* 左侧图片轮播区域 */
.co-carousel-wrapper {
    width: 350px;
    position: relative;
    overflow: hidden;
}

/* 轮播图片容器 */
.co-carousel {
    display: flex;
    transition: transform 0.5s ease;
    height: 300px;
}

/* 轮播单张图片 */
.co-carousel-item {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 轮播左右箭头 */
.co-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 50px;
    background-color: #ccc;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.8;
}

.co-carousel-btn:hover {
    opacity: 1;
}

.co-carousel-btn.prev {
    left: 0;
}

.co-carousel-btn.next {
    right: 0;
}

/* 轮播指示器 */
.co-carousel-indicators {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.co-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
}

.co-indicator.active {
    background-color: #f00;
}

/* 图片下方按钮 */
.co-tour-btn {
    width: 100%;
    padding: 10px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    cursor: pointer;
    margin-top: 10px;
    text-align: center;
}
.co-tour-btn a{
  color: #000c17;
}

/* 右侧公司信息区域 */
.co-info-wrapper {
    flex: 1;
    min-width: 500px;
}

/* 信息行样式 */
.co-info-row {
    display: flex;
    margin-bottom: 10px;
}

/* 信息标签（左） */
.co-info-label {
    width: 200px;
    font-weight: 500;
    color: #666;
}

/* 信息内容（右） */
.co-info-value {
    flex: 1;
}

/* 链接样式 */
.co-link {
    color: #0066cc;
    text-decoration: none;
}

.co-link:hover {
    text-decoration: underline;
}

/* 公司简介文本 */
.co-desc {
    width: 100%;
    margin-top: 20px;
    line-height: 1.5;
}


/* 核心容器 - 宽度1280px，类名fc开头 */
.fc-container {
    width: 1280px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #333;
    padding: 20px 0px;
    box-sizing: border-box;
}

/* 标题样式 */
.fc-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

/* 面包屑导航 */
.fc-breadcrumb {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
}

/* 各模块容器 */
.fc-section {
    margin: 0 0 20px 0;
}

/* 模块标题 */
.fc-section-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

/* 标签容器 - 自动换行 + 间距 */
.fc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* 单个标签样式 - 圆角边框 */
.fc-tag {
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
}

/* Less按钮样式 */
.fc-less-btn {
    font-size: 14px;
    color: #666;
    cursor: pointer;
    text-decoration: underline;
}









/* 核心容器，宽度670px */
.prodesc-container {
    width: 670px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.5;
    box-sizing: border-box;
    padding: 0 5px;
    background: #FFFFFF;
    margin-bottom: 10px;
}

/* 价格区域容器 - Flex布局实现一行3个 */
.prodesc-price-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* 价格项之间的间距 */
    margin-bottom: 30px;
}

/* 单个价格项样式 */
.prodesc-price-item {
    flex: 0 0 calc(33.333% - 10px); /* 一行3个，减去gap间距 */
    box-sizing: border-box;
    position: relative;
    padding-left: 10px;
}

/* 价格数值样式 */
.prodesc-price {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

/* 数量范围样式 */
.prodesc-quantity {
    font-size: 14px;
    color: #666;
    display: block;
    margin-top: 4px;
}

/* 获取最新价格链接 */
.prodesc-latest-price {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    position: absolute;
    top: 0;
    right: 0;
}

/* 产品信息标题 */
.prodesc-info-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* 查看更多链接 */
.prodesc-view-more {
    color: #0066cc;
    font-size: 14px;
    float: right;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}

/* 信息表格样式 */
.prodesc-info-table {
    width: 100%;
    border-collapse: collapse;
}

/* 表格单元格样式 */
.prodesc-info-cell {
    padding: 8px 12px;
    border: 1px solid #eee;
    font-size: 14px;
}

/* 表格标题单元格 */
.prodesc-info-label {
    background-color: #f5f5f5;
    font-weight: bold;
    width: 100px;
}
.Get_Latest_Price{height: 35px;line-height: 35px;text-align: right;}
.Get_Latest_Price a{color: #0066cc}






/* 按钮样式 */

.view-more-btn:hover {
    background-color: #0056b3;
}

/* 遮罩层 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; /* 默认隐藏 */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* 弹出框主体 */
.modal-container {
    width: 650px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 20px;
}

/* 关闭按钮 */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    border: none;
    background: none;
}

.close-btn:hover {
    color: #000;
}

/* 标题样式 */
.modal-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* 产品信息表格样式 */
.product-info-table {
    width: 100%;
    border-collapse: collapse;
}

.product-info-table td {
    padding: 10px;
    border: 1px solid #eee;
}

.product-info-table td:first-child {
    background-color: #f8f9fa;
    font-weight: 500;
    width: 120px;
}


/* 触发按钮样式 */


/* 遮罩层 - 控制弹出框显示/隐藏 */
.ptc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; /* 默认隐藏 */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* 弹出框主体 - 宽度550px */
.ptc-modal-container {
    width: 650px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    padding: 20px;
    max-height: 90vh;
    overflow-y: auto;
}

/* 关闭按钮 */
.ptc-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 18px;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.ptc-close-btn:hover {
    color: #333;
}

/* 供应商信息区域 */
.ptc-supplier-info {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.ptc-supplier-name {

    margin-bottom: 5px;
}
.ptc-supplier-name a{
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
.ptc-supplier-badges {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ptc-badge {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
    background-color: #f5f5f5;
    color: #666;
}

.ptc-badge-premier {
    background-color: #d92121;
    color: #fff;
}

.ptc-badge-verified {
    color: #008800;
}

/* 产品信息行 */
.ptc-product-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.ptc-product-img {

    background-color: #eee;

}
.ptc-product-img img{
    width: 50px;
    height: 50px;
    border-radius: 4px;
}

.ptc-product-desc {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.ptc-quantity-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ptc-quantity-input {
    width: 80px;
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.ptc-quantity-unit {
    font-size: 14px;
    color: #666;
}

/* 消息输入区域 */
.ptc-message-wrap {
    margin-bottom: 15px;
}

.ptc-message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.ptc-quick-msg-select {
    padding: 3px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.ptc-help-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #eee;
    color: #666;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ptc-message-textarea {
    width: 100%;
    height: 120px;
    padding: 10px;
    border-radius: 3px;
    resize: vertical;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 5px;
    border: 1px solid #cccccc; /* 红色边框对应必填提示 */
}

.ptc-message-hint {
    font-size: 12px;
    color: #999;
    text-align: right;
}

.ptc-required-hint {
    font-size: 13px;
    color: #d92121;
    margin-bottom: 15px;
}

/* 邮箱输入区域 */
.ptc-email-wrap {
    margin-bottom: 15px;
}

.ptc-email-label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.ptc-email-label span {
    color: #d92121;
}

.ptc-email-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #cccccc; /* 红色边框对应必填提示 */
    border-radius: 3px;
    font-size: 14px;
    margin-bottom: 5px;
}

.ptc-email-hint {
    font-size: 12px;
    color: #d92121;
}

/* 附件上传 */
.ptc-upload-wrap {
    margin-bottom: 15px;
}

.ptc-upload-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 复选框区域 */
.ptc-checkbox-group {
    margin-bottom: 20px;
}

.ptc-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.ptc-checkbox {
    margin-top: 2px;
}

.ptc-checkbox-link {
    color: #0066cc;
    text-decoration: none;
}

/* 提交按钮 */
.ptc-submit-btn {
    background:linear-gradient(to right, #e64340, #ff8a00);
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.ptc-submit-btn:hover {
    background-color: #e55c00;
}




/* 头部样式 */
.news-header {
    border-bottom: 2px solid #e53935;
    padding: 15px 0;
}

.news-header-container {
    width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-logo {
    color: #e53935;
    font-size: 24px;
    font-weight: bold;
}

.news-nav {
    display: flex;
    list-style: none;
}

.news-nav li {
    margin-left: 30px;
}

.news-nav li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.news-nav li a:hover, .news-nav li a.active {
    color: #e53935;
}

/* 主体内容样式 */
.news-main {
    width: 1280px;
    margin: 20px auto;
    display: flex;
}

/* 左侧内容区 */
.news-content {
    flex: 7;
    padding-right: 20px;
}
.news-content .article{
    background: #FFFFFF;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 10px;
}

.news-content-title {
    font-size: 20px;
    color: #e53935;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.news-article-title {
    font-size: 22px;
    color: #100f0f;
    margin-bottom: 15px;
    padding-top: 15px;
}
.news-article-title a {
    font-size: 22px;
    color: #100f0f;
}
.news-article-meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-article-brand {
    color: #e53935;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.news-article-brand-en {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.news-tag {
    background-color: #f5f5f5;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 14px;
    color: #666;
}

.news-article-content {
    line-height: 1.8;
    color: #333;
    font-size: 15px;
}

/* 右侧侧边栏 */
.news-sidebar {
    flex: 3;
}

.news-sidebar-section {
    border: 1px solid #eee;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.news-sidebar-title {
    background-color: #f9f9f9;
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #eee;
    font-weight: bold;
}

.news-sidebar-list {
    list-style: none;
    padding: 10px 15px;
}

.news-sidebar-list li {
    margin-bottom: 10px;
}

.news-sidebar-list li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.news-sidebar-list li a:hover {
    color: #e53935;
    text-decoration: underline;
}


/* 头部样式 */
.news-header {
    border-bottom: 2px solid #e53935;
    padding: 15px 0;
}

.news-header-container {
    width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-logo {
    color: #e53935;
    font-size: 24px;
    font-weight: bold;
}

.news-nav {
    display: flex;
    list-style: none;
}

.news-nav li {
    margin-left: 30px;
}

.news-nav li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.news-nav li a:hover, .news-nav li a.active ,.news-nav .active a{
    color: #e53935;
    font-weight: bold;
}

/* 主体内容样式 */
.news-main {
    width: 1280px;
    margin: 20px auto;
    display: flex;
    margin-top: 10px;
}

/* 左侧内容区 */
.news-content {
    flex: 7;
    padding-right: 20px;
}
.news-content .article_body{
    background: #FFFFFF;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 10px;
}

.news-article-title{text-align: left}

.news-content-title {
    font-size: 20px;
    color: #e53935;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.news-article-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.news-article-meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-article-brand {
    color: #e53935;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.news-article-brand-en {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.news-tag {
    background-color: #f5f5f5;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 14px;
    color: #666;
}

.news-article-content {
    line-height: 1.8;
    color: #333;
    font-size: 15px;
}

/* 右侧侧边栏 */
.news-sidebar {
    flex: 3;
}

.news-sidebar-section {
    border: 1px solid #eee;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.news-sidebar-title {
    background-color: #f9f9f9;
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #eee;
    font-weight: bold;
}

.news-sidebar-list {
    list-style: none;
    padding: 10px 15px;
}

.news-sidebar-list li {
    margin-bottom: 10px;
}

.news-sidebar-list li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.news-sidebar-list li a:hover {
    color: #e53935;
    text-decoration: underline;
}



/* 卡片容器 */
.nc-supplier-card {

    border-radius: 8px;
    padding: 16px;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

/* 公司名称 */
.nc-company-name {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.4;
}
.nc-company-name a{
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}
/* 标签栏 */
.nc-tag-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

/* 单个标签样式 */
.nc-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

/* Premier标签 */
.nc-tag-premier {
    background-color: #d92d20;
    color: #ffffff;
}

/* 年限标签 */
.nc-tag-years {
    background-color: #f0f0f0;
    color: #374151;
}

/* 认证信息行 */
.nc-verified-line {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 12px;
}

/* 优势信息列表 */
.nc-advantage-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

/* 优势列表项 */
.nc-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 13px;
    color: #374151;
    margin-bottom: 6px;
}

/* 绿色对勾图标 */
.nc-check-icon {
    color: #10b981;
    font-weight: bold;
    margin-top: 1px;
}

/* 展会信息模块 */
.nc-trade-show-section {
    margin-bottom: 16px;
}

/* 模块标题 */
.nc-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

/* 展会信息卡片 */
.nc-trade-show-card {
    background-color: #eff6ff;
    border-radius: 6px;
    padding: 10px;
    font-size: 13px;
}

/* 展会链接 */
.nc-link {
    color: #2563eb;
    text-decoration: underline;
    cursor: pointer;
}

/* 业务类型模块 */
.nc-business-type-section {
    margin-bottom: 20px;
}

/* 业务类型文本 */
.nc-business-type-text {
    font-size: 13px;
    color: #374151;
}

/* 蓝色对勾图标 */
.nc-blue-check {
    color: #2563eb;
    font-weight: bold;
    margin-left: 4px;
}

/* 按钮样式 */
.nc-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 0;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #ffffff;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    margin-bottom: 8px;
}

/* 按钮hover效果 */
.nc-action-btn:hover {
    background-color: #f9fafb;
}

/***************/
/* 容器整体样式 */
.ncr-related-products {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}

/* 标题样式 */
.ncr-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* 产品滚动容器 */
.ncr-products-container {
    display: flex;
    align-items: center;
    position: relative;
}

/* 左右箭头按钮 */
.ncr-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #666;
    outline: none;
    transition: all 0.2s ease;
    z-index: 10;
}

.ncr-nav-btn:hover {
    border-color: #999;
    color: #333;
}

.ncr-nav-btn-left {
    margin-right: 10px;
}

.ncr-nav-btn-right {
    margin-left: 10px;
}

/* 产品列表滚动区域 */
.ncr-products-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 5px 0;
    /* 隐藏滚动条 */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ncr-products-scroll::-webkit-scrollbar {
    display: none;
}

/* 单个产品卡片 */
.ncr-product-card {
    min-width: 220px;
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 产品图片容器 */
.ncr-product-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border: 1px solid #eee;
}

.ncr-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 产品文本信息区域 */
.ncr-product-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* 产品标题 */
.ncr-product-title {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 产品价格 */
.ncr-product-price {
    font-size: 16px;
    font-weight: 600;
    color: #e63946;
}

/* 最小起订量 */
.ncr-product-moq {
    font-size: 12px;
    color: #666;
}


/* 面包屑整体容器 */
.nav_cate-breadcrumb {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666666; /* 匹配原图的浅灰色文字 */
    padding: 10px 0; /* 上下内边距，可根据页面布局调整 */
    line-height: 1.5;
    max-width: 1280px;
    margin: auto;
}

/* 面包屑项容器（用于控制项和分隔符的间距） */
.nav_cate-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* 适配小屏幕自动换行 */
}

/* 单个面包屑项 */
.nav_cate-item {
    text-decoration: none; /* 移除默认下划线 */
    color: #666666; /* 文字颜色与原图一致 */
    margin: 0 5px; /* 项左右间距 */
}

/* 第一个项取消左侧间距，更贴合原图 */
.nav_cate-item:first-child {
    margin-left: 0;
}

/* 分隔符样式 */
.nav_cate-separator {
    color: #666666; /* 分隔符颜色与文字一致 */
    margin: 0 5px; /* 分隔符左右间距 */
}

/* 可选：hover效果（原图无hover，保留扩展空间） */
.nav_cate-item:hover {
    color: #333333;
    text-decoration: underline;
}

/* 表单容器 - 居中且宽度700px */
.reg-container {
    width: 700px;
    margin: 0 auto;
    padding: 20px;
}

/* 头部区域 */
.reg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.reg-title {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
}

.reg-signin-link {
    font-size: 14px;
    color: #666666;
}

.reg-signin-link a {
    color: #0066cc;
    text-decoration: none;
}

/* 表单组样式 */
.reg-form-group {
    margin-bottom: 20px;
}

/* 通用输入框样式 */
.reg-input, .reg-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333333;
    outline: none;
    transition: border-color 0.2s;
}

.reg-input:focus, .reg-select:focus {
    border-color: #0066cc;
}

/* 星号必填标识 */
.reg-required {
    color: #ff0000;
}

/* 行内表单组（First Name + Last Name / 手机号区域） */
.reg-inline-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.reg-inline-group .reg-form-item {
    flex: 1;
}

/* 手机号区域特殊样式 */
.reg-phone-group {
    display: flex;
    gap: 10px;
}

.reg-region-code {
    flex: 0 0 80px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
}

.reg-area-code {
    flex: 0 0 120px;
}

.reg-phone-number {
    flex: 1;
}

/* 密码提示文本 */
.reg-password-hint {
    font-size: 14px;
    color: #666666;
    margin-top: 5px;
    margin-bottom: 20px;
}

/* 注册按钮 */
.reg-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #e60000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.reg-submit-btn:hover {
    background-color: #cc0000;
}

/* 密码框图标占位（视觉效果） */
.reg-password-input {
    position: relative;
}

.reg-password-input input {
    padding-right: 40px;
}

.reg-password-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M12 15c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-9c2.76 0 5 2.24 5 5 0 .55-.1 1.07-.29 1.59l1.5 1.5c.58-.34 1.07-.78 1.46-1.31l-1.46-1.46C19.55 10.54 20 9.84 20 9c0-3.87-3.13-7-7-7S6 5.13 6 9c0 .84.45 1.54 1.14 2.04L6.7 10.6C6.31 10.07 5.82 9.63 5.24 9.29l1.5-1.5C7.93 8.1 7.41 8 6.86 8 4.14 8 2 10.14 2 12.86c0 2.72 2.14 4.86 4.86 4.86.55 0 1.07-.1 1.59-.29l-1.5-1.5c-.34.58-.78 1.07-1.31 1.46l1.46 1.46C8.46 19.55 9.16 20 9 20c3.87 0 7-3.13 7-7 0-.84-.45-1.54-1.14-2.04l1.46-1.46c.39.53.88 1.07 1.46 1.46l-1.5 1.5c.19-.52.29-1.04.29-1.59 0-2.72-2.14-4.86-4.86-4.86z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.7;
}


/* 登录窗口主容器 - 整体宽度匹配截图比例 */
.login-window {
    display: flex;
    width: 1280px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: auto;
    margin-top: auto;
    margin-bottom: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* 左侧欢迎区域（替换原产品图片） */
.login-banner {
    flex: 5;
    background-color: #ff8a98; /* 匹配截图的粉色背景色 */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: #ffffff;
}

.login-banner-text {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 右侧登录表单区域 */
.login-form-wrap {
    flex: 3;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}

/* 登录标题 */
.login-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
}

/* 邮箱输入框 */
.login-email-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.2s;
}

.login-email-input::placeholder {
    color: #999999;
}

.login-email-input:focus {
    border-color: #cccccc;
}

/* Next按钮 */
.login-next-btn {
    width: 100%;
    padding: 12px;
    background-color: #e50000; /* 匹配截图红色按钮 */
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 35px;
    transition: background-color 0.2s;
}

.login-next-btn:hover {
    background-color: #cc0000;
}

/* 第三方登录文本 */
.login-social-text {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
}

/* 第三方登录图标容器 */
.login-social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 45px;
}

/* 第三方图标通用样式 */
.login-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
}

/* 各平台图标颜色（精准匹配截图） */
.login-fb-icon {
    background-color: #1877f2;
}

.login-google-icon {
    background-color: #ea4335;
}

.login-linkedin-icon {
    background-color: #0077b5;
}

.login-x-icon {
    background-color: #14171a;
}

/* 注册提示文本 */
.login-register-tip {
    font-size: 14px;
    color: #666666;
    text-align: center;
    margin-bottom: 18px;
}

/* 注册按钮 */
.login-register-btn {
    width: 100%;
    padding: 12px;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.login-register-btn:hover {
    border-color: #cccccc;
}



/* 基础容器样式 */
.mess-form-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

/* 表单标题 */
.mess-form-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 16px;
}

/* 表单行样式 */
.mess-form-row {
    margin-bottom: 15px;
    position: relative;
}

/* 标签样式（包含必填星号） */
.mess-form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

/* 必填项星号 */
.mess-required {
    color: red;
    margin-right: 3px;
}

/* 输入框基础样式 */
.mess-form-input,
.mess-form-select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 14px;
    box-sizing: border-box;
}

/* 错误状态输入框 */
.mess-form-input.error,
.mess-form-select.error {
    border-color: #e74c3c;
}

/* 错误提示文本 */
.mess-error-text {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 3px;
    display: block;
}

/* 电话号码行（包含国家码下拉） */
.mess-phone-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mess-country-code {
    width: 80px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.mess-phone-input {
    flex: 1;
}

/* 多选下拉选择框样式（模拟） */
.mess-multi-select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 14px;
    box-sizing: border-box;
    position: relative;
}

.mess-multi-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
}

.mess-option-item {
    padding: 8px 10px;
    cursor: pointer;
}

.mess-option-item:hover {
    background-color: #f5f5f5;
}

.mess-option-item.selected {
    background-color: #e9f5ff;
    color: #0066cc;
}

/* 复选框行 */
.mess-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 20px 0;
}

.mess-form-checkbox {
    margin-top: 2px;
}

.mess-checkbox-label {
    font-size: 13px;
    color: #666;
}

/* 提交按钮 */
.mess-submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    cursor: pointer;
}

.mess-submit-btn:hover {
    background-color: #0069d9;
}



/* 给tags_0到tags_5分别设置不同的背景色 */
.tags_0 {
    background-color: #4e93df; /* 淡蓝色 */
    color: #ffffff; /* 文字白色，提高对比度 */
    padding: 4px 12px; /* 内边距，让标签更美观 */
    border-radius: 4px; /* 圆角 */
    margin-right: 8px; /* 标签之间的间距 */
    display: inline-block; /* 保证内边距生效 */
}

.tags_1 {
    background-color: #67c23a; /* 浅绿色 */
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    margin-right: 8px;
    display: inline-block;
}

.tags_2 {
    background-color: #e6a23c; /* 浅橙色 */
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    margin-right: 8px;
    display: inline-block;
}

.tags_3 {
    background-color: #f56c6c; /* 浅红色 */
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    margin-right: 8px;
    display: inline-block;
}

.tags_4 {
    background-color: #909399; /* 浅灰色 */
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    margin-right: 8px;
    display: inline-block;
}

.tags_5 {
    background-color: #722ed1; /* 浅紫色 */
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    margin-right: 8px;
    display: inline-block;
}

/* 可选：最后一个标签去掉右侧间距 */
.c-info-sub-title span:last-child {
    margin-right: 0;
}




/* 单个标签样式 */
.pds-tab {
    cursor: pointer;
}
/* 激活状态标签样式 */
.pds-tab.active {
    color: #e64340;
    border-bottom-color: #e64340;
    font-weight: 600;
}
/* 内容区域默认隐藏 */
.pds-content-item {
    display: none;
}
/* 激活状态的内容区域显示 */
.pds-content-item.active {
    display: block;
}


.pro_dc{
    width: 960px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #333;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    box-sizing: border-box;
    padding: 10px;
    padding-top: 0px;
}











/* 遮罩层样式 - intc开头 */
.intc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* 弹窗主体样式 */
.intc-modal-content {
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    max-height: 600px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    position: relative;
    overflow: hidden;
}

/* 关闭按钮 */
.intc-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background-color 0.2s;
    z-index: 10;
}

.intc-close-btn:hover {
    background-color: #f5f5f5;
}

/* 左侧分类栏 */
.intc-category-sidebar {
    max-width: 300px;
    min-width: 200px;
    background-color: #f8f8f8;
    padding: 20px 10px;
}

/* 主标题 */
.intc-main-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 0 10px;
    word-wrap: break-word; /* 标题过长自动换行 */
}

/* 分类列表 */
.intc-category-list {
    max-width: 300px;
    min-width: 200px;
    height: 450px;
    list-style: none;
    overflow-y: auto;
    flex-shrink: 0;
}

.intc-category-item {
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 5px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.intc-category-item.intc-active {
    background: linear-gradient(to right, #e64340, #ff8a00);
    font-weight: bold;
    border-left: 3px solid #e64340;
    color: #FFFFFF;
}

.intc-category-item:hover:not(.intc-active) {
    background-color: #e9e9e9;
}

/* 右侧内容区 */
.intc-content-area {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

/* 内容标题 */
.intc-content-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* 内容面板 - 默认隐藏 */
.intc-content-panel {
    display: none;
}

/* 激活的内容面板显示 */
.intc-content-panel.intc-show {
    display: block;
}

/* 图标网格布局 */
.intc-icon-grid {
    display: grid;
    gap: 20px;
}

/* 图标项样式 */
.intc-icon-item {

}

.intc-icon-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    overflow: hidden;
}

.intc-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intc-icon-name {
    font-size: 12px;
    color: #333;
    word-wrap: break-word;
}

/* 空内容提示 */
.intc-empty-tip {
    text-align: center;
    padding: 50px 0;
    color: #999;
    font-size: 14px;
}

.intc-icon-item a{
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 10px;
    display: inline-block;
    color: #333;
}
.intc-icon-item a:hover{
    border: 1px solid #e64340;
    background: linear-gradient(to right, #e64340, #ff8a00);
    font-weight: bold;
    color: #FFFFFF;
}

.icom-tag-group .auth_1{background: gold;padding: 3px 2px;color: #FFFFFF;border-radius: 5px;font-size: 12px;}
.icom-tag-group .auth_2{background: #0a2afa;padding: 3px 2px;color: #FFFFFF;border-radius: 5px;font-size: 12px;}
.icom-tag-group .auth_3{background: #f80397;padding: 3px 2px;color: #FFFFFF;border-radius: 5px;font-size: 12px;}
.icom-tag-group .auth_4{background: #000c17;padding: 3px 2px;color: #FFFFFF;border-radius: 5px;font-size: 12px;}

.icom-tag-group .vip {
    background: red;
    padding: 3px 2px;
    color: #FFFFFF;
    border-radius: 5px;
    font-size: 12px;
}


/* 加载弹窗容器样式 */
.pro_ajax_loading_modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

/* 加载弹窗内容框样式 */
.pro_ajax_loading_content {
    background: #fff;
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 加载旋转动画容器 */
.pro_ajax_loading_spinner {
    margin-left: 10px;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #666;
    border-top-color: transparent;
    border-radius: 50%;
    animation: pro_ajax_spin 1s linear infinite;
}

/* 加载动画关键帧（类名前缀统一） */
@keyframes pro_ajax_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 选中分类的红色样式（类名前缀统一） */
.pro_ajax_cate_active {
    color: red !important;
}

.search-dropdown {
    /* 清除默认样式 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background: transparent;
    font-size: inherit;
    color: inherit;
    padding: 0 20px 0 5px;
    cursor: pointer;
    /* 保留下拉箭头 */
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M15.3 9.3a1 1 0 0 1 1.4 1.4l-4 4a1 1 0 0 1-1.4 0l-4-4a1 1 0 0 1 1.4-1.4l3.3 3.29 3.3-3.3z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 12px;
}
/* 清除聚焦边框（可选） */
.search-dropdown:focus {
    outline: none;
}


/* 分页组件样式 */
/* 重置分页容器默认样式 */
.pagination {
    margin: 20px 0;
    padding: 0;
    text-align: center; /* 分页居中显示 */
}

/* 重置ul列表样式 */
.pagination ul {
    list-style: none; /* 移除li默认符号 */
    padding: 0;
    margin: 0;
    display: inline-flex; /* 横向排列li */
    border-radius: 4px;
    border: 1px solid #e1e4e8;
}

/* 分页项基础样式 */
.pagination li {
    margin: 0;
}

/* 分页链接/按钮样式 */
.pagination li a,
.pagination li span {
    display: block;
    padding: 8px 16px;
    text-decoration: none; /* 移除a标签下划线 */
    color: #333; /* 文字颜色 */
    border-right: 1px solid #e1e4e8; /* 分隔线 */
    font-size: 14px;
    line-height: 1.5;
    transition: background-color 0.2s ease; /* hover过渡效果 */
}

/* 最后一个元素移除右侧边框 */
.pagination li:last-child a,
.pagination li:last-child span {
    border-right: none;
}

/* 普通项hover效果 */
.pagination li a:hover {
    background-color: #f5f5f5;
    color: #007bff; /* hover时文字变主题色 */
}

/* 激活项（当前页）样式 */
.pagination li.active span {
    background-color: #007bff; /* 主题色背景 */
    color: #fff; /* 白色文字 */
    font-weight: 500;
}

/* 禁用状态（可选，比如首页的«、末页的»） */
.pagination li.disabled a {
    color: #999;
    cursor: not-allowed;
    background-color: #f9f9f9;
}

/* 禁用状态取消hover效果 */
.pagination li.disabled a:hover {
    background-color: #f9f9f9;
    color: #999;
}



/* 主容器 - 宽度修改为1280px，带立体感 */
.wp-container {
    width: 1280px; /* 宽度调整为1280px */
    height: 800px;
    background-color: #ffffff;
    box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.1),
            0 4px 15px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    overflow: hidden;
    position: relative;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* 左侧分类栏 */
.wp-category-sidebar {
    width: 280px;
    background: linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
    border-right: 1px solid #e1e5eb;
    padding: 20px 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.wp-category-title {
    font-size: 18px;
    font-weight: 600;
    padding: 0 25px 15px;
    color: #2d3748;
    border-bottom: 1px solid #e1e5eb;
    margin-bottom: 10px;
}

.wp-category-list {
    list-style: none;
}

.wp-category-list li {
    padding: 12px 25px;
    cursor: pointer;
    color: #4a5568;
    font-size: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

/* 分类项立体感和交互效果 */
.wp-category-list li:hover {
    background-color: #ffffff;
    color: #2563eb;
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wp-category-list li.active {
    background-color: #ffffff;
    color: #2563eb;
    border-left: 3px solid #2563eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* 右侧内容区 */
.wp-content-area {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    background-color: #ffffff;
}

.wp-content-header {
    font-size: 22px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e5eb;
}

.wp-content-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    /* 内容卡片立体感 */
    box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.08),
            0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-content-card:hover {
    transform: translateY(-3px);
    box-shadow:
            0 8px 20px rgba(0, 0, 0, 0.12),
            0 2px 6px rgba(0, 0, 0, 0.08);
}

.wp-content-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.wp-content-card-desc {
    color: #718096;
    line-height: 1.6;
    font-size: 14px;
}

/* 加载状态 */
.wp-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #4a5568;
    font-size: 16px;
}


/* 表单容器 - 增加立体感 + 宽度改为1000px */
.pmr-rfq-form {
    width: 1000px; /* 核心修改：宽度设为1000px */
    margin: 10px auto;
    background: #ffffff;
    padding: 40px; /* 适配宽度增加内边距 */
    /* 立体阴影效果 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid #e0e0e0;
}

/* 表单组样式 */
.pmr-form-group {
    margin-bottom: 25px;
}

/* 标签样式 */
.pmr-form-label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

/* 必填项星号 */
.pmr-required {
    color: #e74c3c;
}

/* 文本输入框样式 - 增加立体感 */
.pmr-form-input {
    width: 100%;
    padding: 8px 15px;
    /* 立体边框+阴影 */
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    height: 42px;
    outline: none;
    transition: all 0.3s ease;
    /* 内阴影增强立体 */
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.03);
    background: #fff;
}

.pmr-form-input:focus {
    border-color: #3498db;
    /* 聚焦时增强立体效果 */
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.03),
    0 0 8px rgba(52, 152, 219, 0.2);
}

/* 文本域样式（带字符计数容器）- 增加立体感 */
.pmr-textarea-container {
    position: relative;
}

.pmr-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    min-height: 180px;
    resize: vertical;
    outline: none;
    transition: all 0.3s ease;
    line-height: 1.5;
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.03);
    background: #fff;
}

.pmr-form-textarea:focus {
    border-color: #3498db;
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.03),
    0 0 8px rgba(52, 152, 219, 0.2);
}

/* 字符计数提示 */
.pmr-char-count {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 12px;
    color: #999;
}

/* 数量和单位行 */
.pmr-quantity-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.pmr-quantity-input {
    flex: 0 0 150px;
}

/* 下拉框立体样式 */
.pmr-quantity-select {
    flex: 1;
    height: 42px;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.03);
}

.pmr-quantity-select:focus {
    border-color: #3498db;
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.03),
    0 0 8px rgba(52, 152, 219, 0.2);
}

/* 复选框组 */
.pmr-checkbox-group {
    margin: 30px 0;
}

.pmr-form-checkbox {
    margin-right: 10px;
    vertical-align: middle;
    /* 复选框立体样式 */
    accent-color: #3498db;
}

.pmr-checkbox-label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

/* 提交按钮 - 加长+立体效果 */
.pmr-submit-btn {
    background: linear-gradient(to right, #e64340, #ff8a00);
    color: white;
    border: none;
    width: 100%; /* 加长：宽度100% */
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* 按钮立体阴影 */
    box-shadow: 0 3px 6px rgba(231, 76, 60, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pmr-submit-btn:hover {
    background: linear-gradient(to right, #e64340, #ff2f00);
    /* 悬浮时轻微下沉 */
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(231, 76, 60, 0.2);
}

.pmr-submit-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 2px rgba(231, 76, 60, 0.2);
}

/* 响应式适配 */
@media (max-width: 1024px) {
    .pmr-rfq-form {
        width: 95%;
        padding: 20px;
    }
}


/* 标题容器 */
.gcate-title-container {
    width: 1280px;
    margin:auto;
    margin-bottom: 16px;
}

/* 主标题样式 */
.gcate-main-title {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    display: inline-block;
    margin-right: 8px;
}

/* 结果数量提示文本 */
.gcate-result-text {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
}
.gcate-result-text b{color: red;padding: 0px 10px;}

/* 导航标签容器 */
.gcate-nav-tabs {
    width: 1280px;
    margin:auto;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0; /* 底部浅灰色边框 */
    position: relative;
}

/* 通用标签样式 */
.gcate-nav-tab {
    font-size: 14px;
    padding: 8px 16px;
    margin-right: 4px;
    cursor: pointer;
    color: #666666;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

/* 选中标签样式（Product List） */
.gcate-nav-tab.active {
    color: #e74c3c; /* 红色 */
    font-weight: 600;
}

/* 选中标签的底部红色下划线 */
.gcate-nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px; /* 对齐底部边框 */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e74c3c; /* 红色下划线 */
}

/* 标签hover效果 */
.gcate-nav-tab:not(.active):hover {
    color: #333333;
}


/* 核心样式：折叠容器 */
.gcate_desc {
    margin-top: 10px;
    width: 1280px; /* 可自定义宽度 */
    line-height: 1.6; /* 行高，决定3行的总高度 */
    font-size: 14px;
    color: #333;
    /* 关键：限制3行显示 */
    height: calc(1.6em * 4); /* 3行高度 = 行高 * 行数 */
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* 展开状态的样式 */
.gcate_desc.expanded {
    height: auto; /* 展开后高度自适应 */
    padding-bottom: 30px; /* 展开后给按钮留空间 */
}

/* 渐变遮罩（仅折叠时显示） */
.gcate_desc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2em;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none; /* 不影响点击 */
}

/* 展开后隐藏遮罩 */
.gcate_desc.expanded::after {
    display: none;
}

/* 按钮样式 - 居中放在容器内 */
.toggle-btn {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%); /* 水平居中 */
    color: #0066cc;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    background: #fff; /* 背景白色覆盖遮罩 */
    padding: 0 10px; /* 增加点击区域 */
}

.toggle-btn:hover {
    color: #004999;
    text-decoration: underline;
}



/* 页面容器 - 固定宽度1280px + 立体感边框 */
.ltg{
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}
.gds-container {
    width: 1280px;
    margin: 0 auto;
    padding: 20px;
    /* 立体感边框核心样式 */
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    /* 多层阴影营造立体效果 */
    box-shadow:
            0 2px 8px rgba(0, 0, 0, 0.05),
            0 4px 12px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.8),
            inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    /* 轻微的3D偏移效果 */
    transform: translateY(-2px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

/* 容器悬停增强立体感 */
.gds-container:hover {
    transform: translateY(-4px);
    box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.1),
            0 8px 20px rgba(0, 0, 0, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.9),
            inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

/* 产品展示标题区域 */
.gds-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* 产品展示标题 */
.gds-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    flex: 1;
}

/* 字母导航样式 */
.gds-alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

/* 字母链接基础样式 */
.gds-alphabet-nav a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 6px;
    background-color: #f5f5f5;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* 字母链接悬停效果 */
.gds-alphabet-nav a:hover {
    background-color: #e8e8e8;
    color: #333;
    transform: translateY(-1px);
}

/* 字母链接选中状态 */
.gds-alphabet-nav a.active {
    background-color: #007bff;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

/* 产品列表 - 弹性布局实现多列展示 */
.gds-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* 缩小间距适配5列布局 */
}

/* 产品卡片样式 - 横向布局 */
.gds-item {
    width: calc((100% - 60px) / 5); /* 精确计算5列宽度（4个间距，15*4=60） */
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px; /* 缩小内边距 */
    display: flex;
    gap: 10px; /* 缩小图片和文字间距 */
    align-items: flex-start;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-color: #ffffff;
}

/* 鼠标悬停效果 */
.gds-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* 产品图片容器 - 缩小为80px*80px */
.gds-img-box {
    flex-shrink: 0; /* 防止图片容器被压缩 */
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

/* 产品图片样式 */
.gds-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持图片比例 */
}

/* 产品文字内容容器 */
.gds-content {
    flex: 1; /* 占满剩余空间 */
    min-width: 0; /* 解决文字溢出问题 */
    cursor: pointer;
}

/* 产品名称 */
.gds-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 产品简介 - 精简行数和字号 */
.gds-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 仅显示2行简介 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 响应式适配 */
@media (max-width: 1280px) {
    .gds-container {
        width: 95%;
        padding: 20px 15px;
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    .gds-container:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .gds-item {
        width: calc((100% - 45px) / 4); /* 平板端一行4个 */
    }
    /* 移动端字母导航适配 */
    .gds-alphabet-link {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .gds-item {
        width: calc((100% - 15px) / 2); /* 移动端一行2个 */
    }
}

@media (max-width: 480px) {
    .gds-item {
        width: 100%; /* 小屏手机一行1个 */
        flex-direction: column; /* 切换为上下布局 */
    }
    .gds-img-box {
        margin: 0 auto 8px;
    }
    /* 小屏手机字母导航优化 */
    .gds-alphabet-nav {
        gap: 5px;
        justify-content: center;
    }
    .gds-alphabet-link {
        width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 12px;
    }
}



/* 导航栏容器 - 宽度1280px，居中 */
.sort-nav-container {
    width: 1280px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 导航列表 */
.sort-nav-list {
    display: flex;
    align-items: center;
    height: 60px;
}

/* 导航项通用样式 */
.sort-nav-item {
    position: relative; /* 为下拉菜单定位做准备 */
    height: 100%;
    padding: 0 24px;
    line-height: 60px;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px; /* 文字和箭头间距 */
}

/* 导航项hover效果 */
.sort-nav-item:hover {
    background-color: #f8f8f8;
}

/* 上下箭头容器 */
.sort-arrow-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 12px;
}

/* 箭头样式 */
.sort-arrow-up, .sort-arrow-down {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    font-size: 0;
    line-height: 0;
    transition: color 0.3s ease;
}

.sort-arrow-up {
    border-bottom: 5px solid #999;
    margin-bottom: 2px;
}

.sort-arrow-down {
    border-top: 5px solid #999;
}

/* hover时箭头变色 */
.sort-nav-item:hover .sort-arrow-up {
    border-bottom-color: #1890ff;
}

.sort-nav-item:hover .sort-arrow-down {
    border-top-color: #1890ff;
}

/* 下拉菜单容器 - 通用样式 */
.sort-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none; /* 默认隐藏 */
    z-index: 999;
}

/* 价格/时间排序下拉菜单宽度 */
.sort-dropdown-menu.normal {
    width: 160px;
}

/* 地区省份下拉菜单宽度调整为500px */
.sort-dropdown-menu.province {
    width: 650px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px; /* 省份栏和城市栏间距 */
    max-height: 300px; /* 限制下拉菜单整体高度 */
    overflow: hidden;
}

/* 通用下拉菜单项样式 */
.sort-dropdown-item {
    padding: 0 16px;
    height: 44px;
    line-height: 44px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}
.sort-dropdown-menu .active{
    background-color: #e6f7ff;
}

/* 省份栏容器 - 横向排列+可滚动 */
.sort-province-bar {
    display: flex;
    align-items: center;
    gap: 16px; /* 省份之间的间距 */
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    overflow-x: auto; /* 横向滚动 */
    overflow-y: hidden;
    scrollbar-width: thin; /* 精简滚动条（Firefox） */
    scrollbar-color: #1890ff #f5f5f5;
}

/* 自定义滚动条样式（Chrome/Safari） */
.sort-province-bar::-webkit-scrollbar {
    height: 6px;
}
.sort-province-bar::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}
.sort-province-bar::-webkit-scrollbar-thumb {
    background: #1890ff;
    border-radius: 3px;
}
.sort-province-bar::-webkit-scrollbar-thumb:hover {
    background: #096dd9;
}

/* 省份项样式 - 字号缩小 */
.sort-province-title {
    font-size: 14px; /* 字号缩小 */
    color: #666;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; /* 防止省份文字换行 */
    flex-shrink: 0; /* 防止省份项被压缩 */
}

/* 省份项hover/选中效果 */
.sort-province-title:hover, .sort-province-title.active {
    background-color: #e6f7ff;
    color: #1890ff;
}

/* 城市容器样式 - 默认隐藏，点击省份后显示 */
.sort-city-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 一行6个城市 */
    gap: 8px 12px;
    display: none; /* 默认隐藏 */
    max-height: 200px; /* 限制城市区域高度 */
    overflow-y: auto; /* 城市过多时纵向滚动 */
    padding-right: 4px;
}

/* 城市项显示时的样式 */
.sort-city-container.show {
    display: grid;
}

/* 城市项样式 */
.sort-city-item {
    font-size: 14px;
    padding: 2px 0;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 城市项hover效果 */
.sort-city-item:hover {
    background-color: #e6f7ff;
    color: #1890ff;
}

/* 下拉菜单项hover效果 */
.sort-dropdown-item:hover {
    background-color: #e6f7ff;
    color: #1890ff;
}

/* 显示下拉菜单 */
.sort-nav-item:hover .sort-dropdown-menu {
    display: block;
}


/* 列表容器 - 简洁大气的核心容器 */
.inquiry-list-container {
    max-width: 1280px;
    margin: 10px auto;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* 标题行 - 单独一行 */
.inquiry-list-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* 列表内容容器 - 内容行 */
.inquiry-list-content {
    list-style: none;
}

/* 单个列表项 */
.inquiry-list-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 15px;
    transition: box-shadow 0.3s;
}

.inquiry-list-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 列表项内的字段行 */
.inquiry-field-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* 字段标签 */
.inquiry-field-label {
    width: 120px;
    font-weight: 500;
    color: #555;
    flex-shrink: 0;
}

/* 字段值 */
.inquiry-field-value {
    flex: 1;
    color: #333;
    word-break: break-all;
}

/* 登录提示文字 */
.inquiry-login-tip {
    color: #999;
    font-size: 12px;
    margin-left: 8px;
}

/* 最后一行取消底部间距 */
.inquiry-field-row:last-child {
    margin-bottom: 0;
}






/* 核心容器 - 1280px居中 */
.ser-container {

    width: 1280px;
    margin: 10px auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* 头部样式 - 修改主色调渐变 */
.ser-header {
    background: linear-gradient(to right, #e64340, #ff8a00);
    color: #fff;
    padding: 40px 60px;
    text-align: center;
}

.ser-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.ser-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* 导航栏 */
.ser-nav {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 0 60px;
}

.ser-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    padding: 20px 0;
}

.ser-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

/* 导航hover颜色修改为新主色调 */
.ser-nav a:hover {
    color: #e64340;
}

/* 主要内容区 */
.ser-main {
    padding: 60px;
}

/* 板块通用样式 */
.ser-section {
    margin-bottom: 80px;
}

.ser-section-title {
    font-size: 28px;
    /* 标题颜色修改为新主色调 */
    color: #e64340;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.ser-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    /* 标题下划线颜色修改为新主色调 */
    background-color: #e64340;
}

.ser-section-content {
    font-size: 16px;
    line-height: 1.8;
}

/* 平台介绍 */
.ser-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.ser-intro-text {
    padding-right: 20px;
}

.ser-intro-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 合作优势 */
.ser-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.ser-advantage-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ser-advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 优势卡片图标颜色修改为新主色调 */
.ser-advantage-icon {
    font-size: 40px;
    color: #e64340;
    margin-bottom: 20px;
}

.ser-advantage-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

/* 预存方案（替换原提成方案） */
.ser-prepay-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.ser-prepay-table th,
.ser-prepay-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
}

/* 表格表头背景色修改为新主色调 */
.ser-prepay-table th {
    background: linear-gradient(to right, #e64340, #ff8a00);
    color: #fff;
    font-weight: 500;
}

.ser-prepay-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* 合作流程 */
.ser-process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
}

.ser-process-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: #eee;
    z-index: 1;
}

.ser-process-step {
    width: 18%;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* 流程步骤数字背景色修改为新主色调 */
.ser-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(to right, #e64340, #ff8a00);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.ser-step-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* 留言表单 */
.ser-form-container {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
}

.ser-form-group {
    margin-bottom: 25px;
}

.ser-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.ser-form-input,
.ser-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

/* 表单聚焦边框颜色修改为新主色调 */
.ser-form-input:focus,
.ser-form-textarea:focus {
    outline: none;
    border-color: #e64340;
}

.ser-form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* 提交按钮背景色修改为新主色调 */
.ser-submit-btn {
    background: linear-gradient(to right, #e64340, #ff8a00);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ser-submit-btn:hover {
    background: linear-gradient(to right, #d43a37, #e77f00);
}

/* 底部样式 - 背景色修改为新主色调深色系 */
.ser-footer {
    background: linear-gradient(to right, #d43a37, #e77f00);
    color: #fff;
    padding: 40px 60px;
    text-align: center;
}

.ser-footer-info {
    margin-bottom: 20px;
}

.ser-copyright {
    opacity: 0.7;
    font-size: 14px;
}

/*****弹出窗口******/
/* 遮罩层样式：新增隐藏类 */
.msg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* 无遮罩层时的样式：透明背景+不占满屏幕 */
.msg-overlay.no-overlay {
    background-color: transparent;
    pointer-events: none; /* 无遮罩时，遮罩层不拦截点击 */
}
.msg-overlay.active {
    opacity: 1;
    visibility: visible;
}
.msg-box {
    width: 380px;
    max-width: 90%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 24px;
    position: absolute;
    cursor: move;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9) translateY(-20px);
    opacity: 0;
    transition:
            transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
            opacity 0.4s ease;
    pointer-events: auto; /* 确保窗口本身可点击 */
}
.msg-overlay.active .msg-box {
    transform: translate(-50%, -50%) scale(1) translateY(0);
    opacity: 1;
}
.msg-box.dragging {
    transition: none !important;
}
.msg-title-wrap {
    cursor: move;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.msg-close-btn {
    position: static;
    width: 24px;
    height: 24px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 16px;
    color: #999;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.msg-close-btn:hover {
    background-color: #f5f5f5;
    color: #666;
}
.msg-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-right: 8px;
}
.msg-content {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    cursor: default;
}
.msg-btn-group {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    cursor: default;
}
.msg-btn {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}
.msg-btn-cancel {
    background-color: #f5f5f5;
    color: #666;
}
.msg-btn-cancel:hover {
    background-color: #e8e8e8;
}
.msg-btn-confirm {
    background-color: #409eff;
    color: #fff;
}
.msg-btn-confirm:hover {
    background-color: #3393f3;
}