/* 商品列表页 */
.pro-page-breadcrumb {
    padding: 12px 0;
    background: #F9F9F9;
    font-size: 14px;
    color: #666;
}
.pro-crumb-box a {
    color: #0092A1;
    text-decoration: none;
}
.pro-crumb-box span {
    margin: 0 6px;
    color: #ccc;
}

/* 筛选 */
.pro-product-filter {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #F3F3F3;
}
.pro-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}
.pro-cate-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pro-cate-list a {
    padding: 7px 16px;
    border-radius: 50px;
    background: #F3F3F3;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.pro-cate-list a.pro-active {
    background: #0092A1;
    color: #fff;
}

/* 搜索框 */
.pro-search-form {
    display: flex;
    align-items: center;
    height: 40px;
    width: 260px;
    border-radius: 50px;
    background: #F3F3F3;
    overflow: hidden;
}
.pro-search-form input {
    flex: 1;
    padding: 0 15px;
    border: none;
    background: transparent;
    outline: none;
}
.pro-search-form button {
    width: 40px;
    height: 40px;
    background: #0092A1;
    color: #fff;
    border: none;
}

/* 商品卡片 */
.pro-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.pro-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 146, 161, 0.08);
}
.pro-p-img {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FCFCFC;
    /* padding: 10px; */
}
.pro-p-img img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}
.pro-p-info {
    padding: 18px 14px;
    text-align: center;
}
.pro-p-name {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
}
.pro-p-name a {
    color: #333;
    text-decoration: none;
}

/* ========= 价格美化（核心） ========= */
.pro-p-price {
    font-size: 20px;
    font-weight: 700;
    color: #39888d;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.pro-p-btn {
    display: inline-block;
    padding: 7px 18px;
    background: #0092A1;
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    text-decoration: none;
}

/* 无商品 */
.pro-no-data {
    padding: 60px 0;
    color: #999;
}
.pro-no-data i {
    font-size: 42px;
    margin-bottom: 10px;
}

/* 分页 */
.pro-pagination-wrap {
    margin-top: 40px;
}
/* ========== 商品详情页专用 ========== */
.pro-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #F3F3F3;
    color: #0092A1;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}
.pro-back-btn:hover {
    background: #0092A1;
    color: #fff;
}

/* 详情图片 */
.pro-detail-img {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}
.pro-detail-img img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

/* 标题 */
.pro-detail-title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
}
.pro-company-name {
    font-size: 14px;
    color: #999;
    margin-bottom: 25px;
}

/* 详情表格 */
.pro-detail-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}
.pro-detail-table tr {
    border-bottom: 1px solid #F3F3F3;
}
.pro-detail-table th {
    width: 110px;
    padding: 14px 12px;
    background: #F9F9F9;
    color: #333;
    font-weight: 500;
    text-align: left;
}
.pro-detail-table td {
    padding: 14px 12px;
    color: #333;
}
.pro-text-price {
    font-size: 22px;
    font-weight: bold;
    color: #39888d !important;
}

/* 详情内容 */
.pro-detail-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}
.pro-detail-sub-title {
    font-size: 20px;
    color: #0092A1;
    margin-bottom: 20px;
    font-weight: 600;
}
.pro-detail-desc {
    line-height: 1.9;
    color: #333;
    font-size: 15px;
}
.pro-detail-desc img {
    max-width: 100% !important;
    height: auto !important;
    margin: 10px 0;
}
/* 分页强制显示数字 */
.pro-pagination-wrap {
    margin-top: 40px;
    text-align: center;
}
.pro-pagination {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.pro-pagination li {
    display: inline-block;
}
.pro-pagination a {
    display: inline-block;
    padding: 14px;
    border: 1px solid #DCDCDC;
    background: #fff;
    color: #333 !important;
    font-size: 14px !important;
    text-decoration: none;
    border-radius: 6px;
    min-width: 20px;
    text-align: center;
}
.pro-pagination a.pro-active {
    background: #0092A1 !important;
    color: #fff !important;
    border-color: #0092A1;
}
.pro-pagination a:hover {
    background: #F3F3F3;
}/* ============================== */
/* 商品详情页 proinfo 专用样式 - 全新class 无冲突 */
/* ============================== */
.product-breadcrumb {
    padding: 12px 0;
    background: #F9F9F9;
    font-size: 14px;
    color: #666;
}
.product-crumb-wrapper a {
    color: #0092A1;
    text-decoration: none;
}
.product-crumb-wrapper span {
    margin: 0 6px;
    color: #ccc;
}

/* 返回按钮 */
.product-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #F3F3F3;
    color: #0092A1;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}
.product-back-btn:hover {
    background: #0092A1;
    color: #fff;
}

/* 商品详情区域 */
.product-detail-section {
    padding: 30px 0;
}
.product-detail-image {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}
.product-detail-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

/* 标题 & 公司信息 */
.product-detail-title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
}
.product-company-name {
    font-size: 14px;
    color: #999;
    margin-bottom: 25px;
}

/* 商品信息表格 */
.product-detail-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}
.product-detail-table tr {
    border-bottom: 1px solid #F3F3F3;
}
.product-detail-table th {
    width: 110px;
    padding: 14px 12px;
    background: #F9F9F9;
    color: #333;
    font-weight: 500;
    text-align: left;
}
.product-detail-table td {
    padding: 14px 12px;
    color: #333;
}
.product-price-text {
    font-size: 22px;
    font-weight: bold;
    color: #39888d !important;
}

/* 详情内容区 */
.product-detail-content {
    padding: 40px 0;
}
.product-detail-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}
.product-detail-subtitle {
    font-size: 20px;
    color: #0092A1;
    margin-bottom: 20px;
    font-weight: 600;
}
.product-detail-description {
    line-height: 1.9;
    color: #333;
    font-size: 15px;
}
.product-detail-description img {
    max-width: 100% !important;
    height: auto !important;
    margin: 10px 0;
}