/* 主题基础样式 */
:root {
    --theme-color: #7A501E;
    --theme-light: #9B6A2E;
    --theme-dark: #5d3c17;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* 通用样式 */
.bzchhx-cigarette39-www-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.bzchhx-cigarette39-www-section {
    padding: 60px 0;
}

.bzchhx-cigarette39-www-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.bzchhx-cigarette39-www-section-title h2 {
    color: var(--theme-color);
    font-size: 2.5em;
    margin-bottom: 10px;
}

.bzchhx-cigarette39-www-section-title p {
    color: #666;
    font-size: 1.1em;
}

/* Header样式 */
.bzchhx-cigarette39-www-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.bzchhx-cigarette39-www-header.sticky {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.bzchhx-cigarette39-www-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0;
}

/* Logo样式 */
.bzchhx-cigarette39-www-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.bzchhx-cigarette39-www-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.bzchhx-cigarette39-www-logo img {
    max-height: 50px;
    width: auto;
    margin-right: 10px;
}

.bzchhx-cigarette39-www-logo h1 {
    margin: 0;
    font-size: 2em;
    color: var(--theme-color);
    font-weight: 600;
    line-height: 1.2;
}

.bzchhx-cigarette39-www-logo .subname {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    display: block;
}

/* 主导航样式 */
.bzchhx-cigarette39-www-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-left: 40px;
}

.bzchhx-cigarette39-www-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bzchhx-cigarette39-www-nav-list li {
    position: relative;
    margin: 0 5px;
}

.bzchhx-cigarette39-www-nav-list li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.bzchhx-cigarette39-www-nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--theme-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.bzchhx-cigarette39-www-nav-list li:hover > a::after,
.bzchhx-cigarette39-www-nav-list li.active > a::after {
    width: 100%;
}

.bzchhx-cigarette39-www-nav-list li:hover > a,
.bzchhx-cigarette39-www-nav-list li.active > a {
    color: var(--theme-color);
}

/* 子菜单样式 */
.bzchhx-cigarette39-www-nav-list ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
}

.bzchhx-cigarette39-www-nav-list li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bzchhx-cigarette39-www-nav-list ul li {
    margin: 0;
}

.bzchhx-cigarette39-www-nav-list ul a {
    padding: 8px 20px;
    font-size: 14px;
}

/* 移动端菜单按钮 */
.bzchhx-cigarette39-www-mobile-menu {
    display: none;
}

.bzchhx-cigarette39-www-menu-toggle {
    border: none;
    background: none;
    padding: 10px;
    cursor: pointer;
}

.bzchhx-cigarette39-www-menu-toggle .line {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.bzchhx-cigarette39-www-menu-toggle.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.bzchhx-cigarette39-www-menu-toggle.active .line:nth-child(2) {
    opacity: 0;
}

.bzchhx-cigarette39-www-menu-toggle.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* 移动端导航 */
.bzchhx-cigarette39-www-mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.bzchhx-cigarette39-www-mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.bzchhx-cigarette39-www-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bzchhx-cigarette39-www-mobile-nav li {
    margin: 10px 0;
}

.bzchhx-cigarette39-www-mobile-nav a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.bzchhx-cigarette39-www-mobile-nav a:hover {
    color: var(--theme-color);
}

/* 响应式布局 */
@media (max-width: 768px) {
    .bzchhx-cigarette39-www-header-wrap {
        height: 60px;
    }
    
    .bzchhx-cigarette39-www-nav {
        display: none;
    }
    
    .bzchhx-cigarette39-www-mobile-menu {
        display: block;
    }
    
    .bzchhx-cigarette39-www-logo img {
        max-height: 40px;
    }
    
    .bzchhx-cigarette39-www-logo h1 {
        font-size: 1.8em !important;
    }
    .bzchhx-cigarette39-www-banner{
        height: 350px !important;
    }
    .bzchhx-cigarette39-www-banner-content h1{
        font-size: 1.8em !important;
    }
    .bzchhx-cigarette39-www-section{
        padding: 20px 0 !important;
    }
    .bzchhx-cigarette39-www-section-title h2{
        font-size: 1.8em !important;
    }
    
    
    .bzchhx-cigarette39-www-mobile-nav {
        top: 60px;
    }
    
    .bzchhx-cigarette39-www-banner {
        margin-top: 60px !important;
    }
}

/* 列表页样式 */
.bzchhx-cigarette39-www-page {
    margin-top: 80px;
}

.bzchhx-cigarette39-www-page-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.bzchhx-cigarette39-www-page-header h1 {
    font-size: 2.5em;
    margin: 0 0 20px;
}

.bzchhx-cigarette39-www-category-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
}

.bzchhx-cigarette39-www-breadcrumb {
    margin-top: 20px;
}

.bzchhx-cigarette39-www-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.bzchhx-cigarette39-www-breadcrumb i {
    margin: 0 10px;
}

.bzchhx-cigarette39-www-content-wrap {
    display: grid;
    gap: 30px;
    padding: 40px 0;
}

@media (max-width: 768px) {
    .bzchhx-cigarette39-www-content-wrap {
        grid-template-columns: 1fr;
    }
    
    .bzchhx-cigarette39-www-page {
        margin-top: 60px;
    }
    
    .bzchhx-cigarette39-www-page-header {
        padding: 40px 0;
    }
    
    .bzchhx-cigarette39-www-page-header h1 {
        font-size: 2em;
    }
}

/* Banner样式 */
.bzchhx-cigarette39-www-banner {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-top: 80px;
}

.bzchhx-cigarette39-www-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.bzchhx-cigarette39-www-banner-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.bzchhx-cigarette39-www-banner-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* 产品列表样式 */
.bzchhx-cigarette39-www-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 0 -15px;
}

.bzchhx-cigarette39-www-product-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.bzchhx-cigarette39-www-product-item:hover {
    transform: translateY(-5px);
}

.bzchhx-cigarette39-www-product-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.bzchhx-cigarette39-www-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bzchhx-cigarette39-www-product-image:hover img {
    transform: scale(1.05);
}

.bzchhx-cigarette39-www-product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--theme-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
}

.bzchhx-cigarette39-www-product-info {
    padding: 20px;
}

.bzchhx-cigarette39-www-product-info h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.4;
}

.bzchhx-cigarette39-www-product-info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.bzchhx-cigarette39-www-product-info h3 a:hover {
    color: var(--theme-color);
}

.bzchhx-cigarette39-www-price {
    margin: 10px 0;
    color: #e74c3c;
}

.bzchhx-cigarette39-www-price .amount {
    font-size: 20px;
    font-weight: bold;
}

.bzchhx-cigarette39-www-price .unit {
    font-size: 14px;
    color: #666;
    margin-left: 5px;
}

.bzchhx-cigarette39-www-rating {
    margin-top: 10px;
}

.bzchhx-cigarette39-www-rating .rating-wrap {
    display: flex;
    align-items: center;
}

.bzchhx-cigarette39-www-rating .rating-bar {
    flex: 1;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    margin-right: 10px;
    overflow: hidden;
}

.bzchhx-cigarette39-www-rating .rating-fill {
    height: 100%;
    background: var(--theme-color);
}

.bzchhx-cigarette39-www-rating .rating-text {
    font-size: 14px;
    color: #666;
}

/* 资讯列表样式 */
.bzchhx-cigarette39-www-article-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.bzchhx-cigarette39-www-article-card:hover {
    transform: translateY(-5px);
}

.bzchhx-cigarette39-www-article-wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 250px;
}

.bzchhx-cigarette39-www-article-image {
    position: relative;
    height: 300px;
}

.bzchhx-cigarette39-www-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bzchhx-cigarette39-www-article-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
}
.bzchhx-cigarette39-www-article .bzchhx-cigarette39-www-article-content{
    padding: 0;
}

.bzchhx-cigarette39-www-article-title {
    margin: 0 0 15px;
    font-size: 22px;
    line-height: 1.4;
}

.bzchhx-cigarette39-www-article-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bzchhx-cigarette39-www-article-title a:hover {
    color: var(--theme-color);
}

.bzchhx-cigarette39-www-article-meta,
.bzchhx-cigarette39-www-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
}

.bzchhx-cigarette39-www-article-meta span,
.bzchhx-cigarette39-www-product-meta span {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.bzchhx-cigarette39-www-article-meta i,
.bzchhx-cigarette39-www-product-meta i {
    margin-right: 5px;
}

.bzchhx-cigarette39-www-article-intro {
    color: #666;
    line-height: 1.6;
    <!-- margin-bottom: 20px; -->
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bzchhx-cigarette39-www-product-intro p,.bzchhx-cigarette39-www-article-intro p {
    margin: 0;
}

.bzchhx-cigarette39-www-article-tags {
    margin-bottom: 20px;
}

.bzchhx-cigarette39-www-tag {
    display: inline-block;
    padding: 4px 12px;
    margin: 0 5px 5px 0;
    background: #f5f5f5;
    color: #666;
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.bzchhx-cigarette39-www-tag:hover {
    background: var(--theme-color);
    color: #fff;
}

.bzchhx-cigarette39-www-article-action {
    margin-top: auto;
    text-align: right;
}

.bzchhx-cigarette39-www-btn-readmore {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--theme-color);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s;
    font-size: 14px;
}

.bzchhx-cigarette39-www-btn-readmore:hover {
    background: var(--theme-dark);
}

.bzchhx-cigarette39-www-btn-readmore i {
    margin-left: 5px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .bzchhx-cigarette39-www-article-wrap {
        grid-template-columns: 1fr;
    }
    
    .bzchhx-cigarette39-www-article-image {
        height: 200px;
    }
    
    .bzchhx-cigarette39-www-article-content {
        padding: 20px;
    }
    
    .bzchhx-cigarette39-www-article-title {
        font-size: 20px;
    }
    
    .bzchhx-cigarette39-www-article-meta,
    .bzchhx-cigarette39-www-product-meta {
        gap: 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .bzchhx-cigarette39-www-article-image {
        height: 180px;
    }
    
    .bzchhx-cigarette39-www-article-content {
        padding: 15px;
    }
    
    .bzchhx-cigarette39-www-article-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .bzchhx-cigarette39-www-article-meta,
    .bzchhx-cigarette39-www-product-meta {
        gap: 8px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .bzchhx-cigarette39-www-article-meta span,
    .bzchhx-cigarette39-www-product-meta span {
        white-space: nowrap;
    }
    
    .bzchhx-cigarette39-www-article-intro {
        font-size: 14px;
        margin-bottom: 15px;
        -webkit-line-clamp: 2;
    }
    
    .bzchhx-cigarette39-www-btn-readmore {
        padding: 6px 15px;
        font-size: 13px;
    }
}

/* 服务介绍样式 */
.bzchhx-cigarette39-www-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.bzchhx-cigarette39-www-service-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.bzchhx-cigarette39-www-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

/* 资讯列表样式 */
.bzchhx-cigarette39-www-news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bzchhx-cigarette39-www-news-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.bzchhx-cigarette39-www-news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bzchhx-cigarette39-www-news-info {
    padding: 20px;
}

.bzchhx-cigarette39-www-news-info h3 {
    margin: 0 0 10px;
}

.bzchhx-cigarette39-www-news-info a {
    color: #333;
    text-decoration: none;
}

.bzchhx-cigarette39-www-news-info a:hover {
    color: var(--theme-color);
}

.bzchhx-cigarette39-www-news-info time {
    color: #666;
    font-size: 0.9em;
}

/* 价格列表样式 */
.bzchhx-cigarette39-www-price-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bzchhx-cigarette39-www-price-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.bzchhx-cigarette39-www-price-item h3 {
    margin: 0 0 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.8;
}
.bzchhx-cigarette39-www-price-item p {
    margin: 0 0 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.8;
}

.bzchhx-cigarette39-www-price-item a {
    color: #333;
    text-decoration: none;
}

.bzchhx-cigarette39-www-price-item a:hover {
    color: var(--theme-color);
}

/* 问答样式 */
.bzchhx-cigarette39-www-qa-list {
    max-width: 800px;
    margin: 0 auto;
}

.bzchhx-cigarette39-www-qa-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.bzchhx-cigarette39-www-qa-item a {
    color: #333;
    text-decoration: none;
}

.bzchhx-cigarette39-www-qa-item a:hover {
    color: var(--theme-color);
}

/* Footer样式 */
.bzchhx-cigarette39-www-footer {
    background: #333;
    color: #fff;
    padding: 60px 0 30px;
}

.bzchhx-cigarette39-www-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.bzchhx-cigarette39-www-footer-info h3,
.bzchhx-cigarette39-www-footer-links h3 {
    color: #fff;
    margin: 0 0 20px;
}

.bzchhx-cigarette39-www-footer-info p {
    margin: 10px 0;
    color: #999;
}

.bzchhx-cigarette39-www-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bzchhx-cigarette39-www-footer-links a {
    color: #999;
    text-decoration: none;
    padding: 5px 0;
}

.bzchhx-cigarette39-www-footer-links a:hover {
    color: #fff;
}

.bzchhx-cigarette39-www-copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 30px;
}

.bzchhx-cigarette39-www-copyright p {
    margin: 5px 0;
    color: #999;
}

/* 详情页样式 */
.bzchhx-cigarette39-www-detail {
    max-width: 1200px;
    margin: 100px auto 40px;
    padding: 0 20px;
}

.bzchhx-cigarette39-www-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.bzchhx-cigarette39-www-detail-header h1 {
    color: var(--theme-color);
    margin: 0 0 20px;
}

.bzchhx-cigarette39-www-meta {
    color: #666;
}

.bzchhx-cigarette39-www-meta span {
    margin-right: 20px;
}

.bzchhx-cigarette39-www-detail-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.bzchhx-cigarette39-www-product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.bzchhx-cigarette39-www-product-image img {
    width: 100%;
    border-radius: 8px;
}

.bzchhx-cigarette39-www-related {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.bzchhx-cigarette39-www-related h3 {
    margin-bottom: 20px;
}

.bzchhx-cigarette39-www-related ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bzchhx-cigarette39-www-related li {
    margin-bottom: 10px;
}

.bzchhx-cigarette39-www-related a {
    color: #333;
    text-decoration: none;
}

.bzchhx-cigarette39-www-related a:hover {
    color: var(--theme-color);
}

/* 香烟产品卡片样式 */
.bzchhx-cigarette39-www-product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    align-items: stretch;
}

.bzchhx-cigarette39-www-product-card:hover {
    transform: translateY(-5px);
}

.bzchhx-cigarette39-www-product-card .bzchhx-cigarette39-www-product-image {
    flex: 0 0 300px;
    position: relative;
    padding: 20px;
    height: 415px;
}

.bzchhx-cigarette39-www-product-card .bzchhx-cigarette39-www-product-image img {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.bzchhx-cigarette39-www-product-card .bzchhx-cigarette39-www-product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--theme-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
}

.bzchhx-cigarette39-www-product-card .bzchhx-cigarette39-www-product-info {
    flex: 1;
    padding: 25px;
}

.bzchhx-cigarette39-www-product-card .bzchhx-cigarette39-www-product-title {
    margin: 0 0 15px;
    font-size: 24px;
}

.bzchhx-cigarette39-www-product-card .bzchhx-cigarette39-www-product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.bzchhx-cigarette39-www-product-card .bzchhx-cigarette39-www-product-title a:hover {
    color: var(--theme-color);
}

.bzchhx-cigarette39-www-product-specs {
    margin-bottom: 10px;
}

.bzchhx-cigarette39-www-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.bzchhx-cigarette39-www-spec-item {
    background: #f8f8f8;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
}

.bzchhx-cigarette39-www-spec-item .label {
    display: block;
    color: #666;
    font-size: 14px;
    <!-- margin-bottom: 5px; -->
}

.bzchhx-cigarette39-www-spec-item .value {
    display: block;
    color: #333;
    font-weight: bold;
    font-size: 16px;
}

.bzchhx-cigarette39-www-product-prices {
    margin-bottom: 10px;
}

.bzchhx-cigarette39-www-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.bzchhx-cigarette39-www-price-tag {
    background: #fff5f5;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
}

.bzchhx-cigarette39-www-price-tag .label {
    display: block;
    color: #666;
    font-size: 14px;
    <!-- margin-bottom: 5px; -->
}

.bzchhx-cigarette39-www-price-tag .amount {
    display: block;
    color: #e74c3c;
    font-weight: bold;
    font-size: 20px;
}

.bzchhx-cigarette39-www-price-tag .unit {
    display: inline-block;
    color: #666;
    font-size: 14px;
    margin-left: 2px;
}

.bzchhx-cigarette39-www-product-rating {
    margin-bottom: 10px;
}

.bzchhx-cigarette39-www-product-rating .rating-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bzchhx-cigarette39-www-product-rating .rating-label {
    color: #666;
    font-size: 14px;
}

.bzchhx-cigarette39-www-product-rating .rating-bar {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.bzchhx-cigarette39-www-product-rating .rating-fill {
    height: 100%;
    background: var(--theme-color);
}

.bzchhx-cigarette39-www-product-rating .rating-value {
    color: #333;
    font-weight: bold;
    font-size: 16px;
}

.bzchhx-cigarette39-www-product-intro {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.bzchhx-cigarette39-www-product-action {
    text-align: right;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .bzchhx-cigarette39-www-product-card {
        flex-direction: column;
    }
    
    .bzchhx-cigarette39-www-product-card .bzchhx-cigarette39-www-product-image {
        flex: 0 0 auto;
        height: 300px;
        padding: 15px;
    }
    
    .bzchhx-cigarette39-www-product-card .bzchhx-cigarette39-www-product-image img {
        min-height: 200px;
    }
    
    .bzchhx-cigarette39-www-product-card .bzchhx-cigarette39-www-product-info {
        padding: 20px;
    }

    .bzchhx-cigarette39-www-specs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .bzchhx-cigarette39-www-price-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .bzchhx-cigarette39-www-price-tag {
        padding: 10px;
    }

    .bzchhx-cigarette39-www-price-tag .amount {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .bzchhx-cigarette39-www-product-card .bzchhx-cigarette39-www-product-image {
        height: 250px;
    }

    .bzchhx-cigarette39-www-product-card .bzchhx-cigarette39-www-product-title {
        font-size: 20px;
    }

    .bzchhx-cigarette39-www-spec-item .label {
        font-size: 12px;
    }

    .bzchhx-cigarette39-www-spec-item .value {
        font-size: 14px;
    }

    .bzchhx-cigarette39-www-price-tag .label {
        font-size: 12px;
    }

    .bzchhx-cigarette39-www-price-tag .amount {
        font-size: 16px;
    }
}

/* 面包屑导航 */
.bzchhx-cigarette39-www-breadcrumb {
    margin-bottom: 20px;
    color: #666;
}

.bzchhx-cigarette39-www-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.bzchhx-cigarette39-www-breadcrumb a:hover {
    color: var(--theme-color);
}

.bzchhx-cigarette39-www-breadcrumb i {
    margin: 0 10px;
    font-size: 12px;
}

/* 香烟产品详情页样式 */
.bzchhx-cigarette39-www-product-header {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.bzchhx-cigarette39-www-product-main {
    display: grid;
    grid-template-columns: minmax(250px, 1.5fr) 2fr; /* 调整列宽比例 */
    gap: 20px; /* 减小间距 */
    margin-bottom: 20px;
}

.bzchhx-cigarette39-www-product-gallery {
    background: #fff;
    padding: 15px; /* 减小内边距 */
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px; /* 减小最小高度 */
    position: sticky;
    top: 80px; /* 调整吸顶位置 */
}

.bzchhx-cigarette39-www-product-gallery .main-image {
    max-width: 100%;
    max-height: 300px; /* 减小最大高度 */
    width: auto;
    height: auto;
    border-radius: 4px;
    object-fit: contain;
}

.bzchhx-cigarette39-www-product-info {
    background: #fff;
    padding: 20px; /* 减小内边距 */
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.bzchhx-cigarette39-www-product-title {
    font-size: 1.6em; /* 减小标题字号 */
    margin: 0 0 15px; /* 减小下边距 */
    color: #333;
    line-height: 1.4;
}

.bzchhx-cigarette39-www-specs-section {
    margin-bottom: 20px; /* 减小下边距 */
}

.bzchhx-cigarette39-www-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px; /* 减小间距 */
}

.bzchhx-cigarette39-www-spec-item {
    background: #f8f8f8;
    padding: 12px; /* 减小内边距 */
    border-radius: 8px;
    text-align: center;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .bzchhx-cigarette39-www-product-main {
        grid-template-columns: 1fr;
    }

    .bzchhx-cigarette39-www-product-gallery {
        position: static;
        min-height: 250px; /* 移动端减小高度 */
    }

    .bzchhx-cigarette39-www-product-gallery .main-image {
        max-height: 250px; /* 移动端减小图片高度 */
    }

    .bzchhx-cigarette39-www-product-title {
        font-size: 1.4em; /* 移动端减小标题字号 */
    }
}

@media (max-width: 480px) {
    .bzchhx-cigarette39-www-product-gallery {
        min-height: 200px; /* 小屏幕进一步减小高度 */
        padding: 10px;
    }

    .bzchhx-cigarette39-www-product-gallery .main-image {
        max-height: 200px; /* 小屏幕进一步减小图片高度 */
    }

    .bzchhx-cigarette39-www-product-info {
        padding: 15px;
    }

    .bzchhx-cigarette39-www-specs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

/* 标签页样式优化 */
.bzchhx-cigarette39-www-product-tabs {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.bzchhx-cigarette39-www-tab-nav {
    display: flex;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
    border-radius: 8px 8px 0 0;
    padding: 0;
}

.bzchhx-cigarette39-www-tab-nav a {
    padding: 12px 25px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
    border-right: 1px solid #eee;
}

.bzchhx-cigarette39-www-tab-nav a:last-child {
    border-right: none;
}

.bzchhx-cigarette39-www-tab-nav a:hover {
    color: var(--theme-color);
    background: rgba(122, 80, 30, 0.05);
}

.bzchhx-cigarette39-www-tab-nav a.active {
    color: var(--theme-color);
    background: #fff;
    font-weight: 500;
}

.bzchhx-cigarette39-www-tab-nav a.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--theme-color);
}

.bzchhx-cigarette39-www-tab-content {
    padding: 20px;
}

.bzchhx-cigarette39-www-tab-content .tab-pane {
    display: none;
}

.bzchhx-cigarette39-www-tab-content .tab-pane.active {
    display: block;
}

.bzchhx-cigarette39-www-params-table {
    width: 100%;
    border-collapse: collapse;
}

.bzchhx-cigarette39-www-params-table th,
.bzchhx-cigarette39-www-params-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    line-height: 1.4;
}

.bzchhx-cigarette39-www-params-table th {
    width: 120px;
    color: #666;
    font-weight: normal;
    background: #f8f8f8;
}

.bzchhx-cigarette39-www-params-table td {
    color: #333;
}

.bzchhx-cigarette39-www-params-table tr:last-child th,
.bzchhx-cigarette39-www-params-table tr:last-child td {
    border-bottom: none;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .bzchhx-cigarette39-www-product-main {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .bzchhx-cigarette39-www-product-gallery {
        min-height: 180px;
        max-height: 300px;
        position: static;
    }

    .bzchhx-cigarette39-www-product-gallery .main-image {
        max-height: 300px;
    }

    .bzchhx-cigarette39-www-product-title {
        font-size: 1.8em;
    }

    .bzchhx-cigarette39-www-price-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bzchhx-cigarette39-www-price-item.wholesale {
        display: none;
    }

    .bzchhx-cigarette39-www-specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bzchhx-cigarette39-www-product-info {
        max-height: none;
        overflow-y: visible;
    }

    .bzchhx-cigarette39-www-tab-nav {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .bzchhx-cigarette39-www-tab-nav a {
        padding: 10px 15px;
        font-size: 13px;
    }

    .bzchhx-cigarette39-www-tab-content {
        padding: 15px;
    }

    .bzchhx-cigarette39-www-params-table th {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .bzchhx-cigarette39-www-product-gallery {
        min-height: 150px;
        max-height: 250px;
    }

    .bzchhx-cigarette39-www-product-gallery .main-image {
        max-height: 180px;
    }

    .bzchhx-cigarette39-www-tab-nav a {
        padding: 8px 12px;
        font-size: 12px;
    }

    .bzchhx-cigarette39-www-params-table th,
    .bzchhx-cigarette39-www-params-table td {
        padding: 10px;
        font-size: 13px;
    }
}

/* 普通文章详情页样式 */
.bzchhx-cigarette39-www-article-header {
    text-align: center;
    margin-bottom: 40px;
}

.bzchhx-cigarette39-www-article-header h1 {
    font-size: 2.5em;
    margin: 20px 0;
    color: #333;
}

.bzchhx-cigarette39-www-article {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.bzchhx-cigarette39-www-article-content {
    line-height: 1.8;
    color: #333;
}

.bzchhx-cigarette39-www-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 20px 0;
}

.bzchhx-cigarette39-www-article-tags {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.bzchhx-cigarette39-www-article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.bzchhx-cigarette39-www-nav-prev,
.bzchhx-cigarette39-www-nav-next {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    max-width: 45%;
}

.bzchhx-cigarette39-www-nav-prev:hover,
.bzchhx-cigarette39-www-nav-next:hover {
    color: var(--theme-color);
}

.bzchhx-cigarette39-www-nav-prev i {
    margin-right: 10px;
}

.bzchhx-cigarette39-www-nav-next i {
    margin-left: 10px;
}

.bzchhx-cigarette39-www-related-articles {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.bzchhx-cigarette39-www-related-articles ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bzchhx-cigarette39-www-related-articles li {
    border-bottom: 1px solid #eee;
}

.bzchhx-cigarette39-www-related-articles li:last-child {
    border-bottom: none;
}

.bzchhx-cigarette39-www-related-articles a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
}

.bzchhx-cigarette39-www-related-articles a:hover {
    color: var(--theme-color);
}

.bzchhx-cigarette39-www-related-articles .title {
    flex: 1;
    margin-right: 20px;
}

.bzchhx-cigarette39-www-related-articles .date {
    color: #666;
    font-size: 14px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .bzchhx-cigarette39-www-detail {
        margin: 80px auto 30px;
    }

    .bzchhx-cigarette39-www-product-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bzchhx-cigarette39-www-product-title {
        font-size: 2em;
    }

    .bzchhx-cigarette39-www-product-meta {
        gap: 15px;
    }

    .bzchhx-cigarette39-www-product-meta span {
        font-size: 13px;
    }

    .bzchhx-cigarette39-www-product-gallery {
        min-height: 300px;
    }

    .bzchhx-cigarette39-www-product-gallery .main-image {
        max-height: 300px;
    }

    .bzchhx-cigarette39-www-price-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bzchhx-cigarette39-www-price-item:last-child {
        display: none; /* 隐藏批发价格 */
    }

    .bzchhx-cigarette39-www-specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .bzchhx-cigarette39-www-detail {
        padding: 0 15px;
    }

    .bzchhx-cigarette39-www-product-title {
        font-size: 1.8em;
    }


    .bzchhx-cigarette39-www-product-gallery {
        min-height: 250px;
    }

    .bzchhx-cigarette39-www-product-gallery .main-image {
        max-height: 250px;
    }

    .bzchhx-cigarette39-www-price-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .bzchhx-cigarette39-www-specs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .bzchhx-cigarette39-www-spec-item {
        padding: 10px;
    }

    .bzchhx-cigarette39-www-article-header h1 {
        font-size: 1.8em;
    }

    .bzchhx-cigarette39-www-article-meta span {
        display: block;
        margin: 5px 0;
    }

    .bzchhx-cigarette39-www-article-nav {
        flex-direction: column;
        gap: 15px;
    }

    .bzchhx-cigarette39-www-nav-prev,
    .bzchhx-cigarette39-www-nav-next {
        max-width: 100%;
    }
}

.bzchhx-cigarette39-www-rating-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.bzchhx-cigarette39-www-rating-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bzchhx-cigarette39-www-rating-item {
    display: grid;
    grid-template-columns: 60px 1fr 45px;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f8f8f8;
    border-radius: 6px;
}

.bzchhx-cigarette39-www-rating-item.highlight {
    background: #fff5f5;
}

.bzchhx-cigarette39-www-rating-item .label {
    color: #666;
    font-size: 13px;
}

.bzchhx-cigarette39-www-rating-item .rating-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}

.bzchhx-cigarette39-www-rating-item .rating-fill {
    height: 100%;
    background: var(--theme-color);
    border-radius: 3px;
}

.bzchhx-cigarette39-www-rating-item .value {
    color: #333;
    font-weight: 500;
    font-size: 13px;
    text-align: right;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .bzchhx-cigarette39-www-rating-item {
        grid-template-columns: 50px 1fr 40px;
        padding: 8px 10px;
    }

    .bzchhx-cigarette39-www-rating-item .label {
        font-size: 12px;
    }

    .bzchhx-cigarette39-www-rating-item .value {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .bzchhx-cigarette39-www-rating-item {
        grid-template-columns: 45px 1fr 35px;
        padding: 6px 8px;
        gap: 8px;
    }

    .bzchhx-cigarette39-www-rating-item .rating-bar {
        height: 5px;
    }
}

.bzchhx-cigarette39-www-related-products {
    margin-top: 30px;
}

.bzchhx-cigarette39-www-section-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.bzchhx-cigarette39-www-section-title:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--theme-color);
}

.bzchhx-cigarette39-www-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bzchhx-cigarette39-www-product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.bzchhx-cigarette39-www-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.bzchhx-cigarette39-www-product-card .product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f8f8;
}

.bzchhx-cigarette39-www-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bzchhx-cigarette39-www-product-card:hover .product-image img {
    transform: scale(1.05);
}

.bzchhx-cigarette39-www-product-card .product-info {
    padding: 15px;
}

.bzchhx-cigarette39-www-product-card .product-info h4 {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.4;
}

.bzchhx-cigarette39-www-product-card .product-info h4 a {
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bzchhx-cigarette39-www-product-card .product-info h4 a:hover {
    color: var(--theme-color);
}

.bzchhx-cigarette39-www-product-card .product-price {
    color: #e74c3c;
    font-size: 16px;
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .bzchhx-cigarette39-www-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .bzchhx-cigarette39-www-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .bzchhx-cigarette39-www-product-card .product-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .bzchhx-cigarette39-www-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .bzchhx-cigarette39-www-product-card .product-image {
        height: 140px;
    }
    
    .bzchhx-cigarette39-www-product-card .product-info h4 {
        font-size: 13px;
    }
}

/* 内容区域表格样式 */
.bzchhx-cigarette39-www-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.bzchhx-cigarette39-www-article-content th,
.bzchhx-cigarette39-www-article-content td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #eee;
}

.bzchhx-cigarette39-www-article-content thead th {
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.bzchhx-cigarette39-www-article-content tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.bzchhx-cigarette39-www-article-content tbody tr:hover {
    background-color: #f5f5f5;
}

.bzchhx-cigarette39-www-article-content td {
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* 价格相关的单元格样式 */
.bzchhx-cigarette39-www-article-content td:nth-child(2),
.bzchhx-cigarette39-www-article-content td:nth-child(3),
.bzchhx-cigarette39-www-article-content td:nth-child(4) {
    color: #e74c3c;
    font-weight: 500;
}

/* 引用块样式 */
.bzchhx-cigarette39-www-article-content blockquote {
    margin: 20px 0;
    padding: 20px 30px 20px 20px;
    background: #f8f9fa;
    border-left: 4px solid var(--theme-color);
    border-radius: 0 8px 8px 0;
    color: #666;
    font-style: italic;
    position: relative;
}

.bzchhx-cigarette39-www-article-content blockquote:before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 60px;
    color: var(--theme-color);
    opacity: 0.2;
    position: absolute;
    right: 20px;
    top: 10px;
}

.bzchhx-cigarette39-www-article-content blockquote p {
    margin: 0;
    line-height: 1.6;
}

/* 其他内容标签样式 */
.bzchhx-cigarette39-www-article-content h2 {
    font-size: 24px;
    color: #333;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.bzchhx-cigarette39-www-article-content h2:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--theme-color);
}

.bzchhx-cigarette39-www-article-content h3 {
    font-size: 20px;
    color: #444;
    margin: 25px 0 15px;
}

.bzchhx-cigarette39-www-article-content h4 {
    font-size: 18px;
    color: #555;
    margin: 20px 0 12px;
}

.bzchhx-cigarette39-www-article-content ul,
.bzchhx-cigarette39-www-article-content ol {
    padding-left: 20px;
    margin: 15px 0;
}

.bzchhx-cigarette39-www-article-content li {
    margin: 8px 0;
    color: #666;
    line-height: 1.6;
}

.bzchhx-cigarette39-www-article-content hr {
    margin: 30px 0;
    border: none;
    border-top: 1px solid #eee;
}

.bzchhx-cigarette39-www-article-content code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--theme-color);
    font-family: Consolas, Monaco, 'Andale Mono', monospace;
    font-size: 0.9em;
}

.bzchhx-cigarette39-www-article-content pre {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.bzchhx-cigarette39-www-article-content pre code {
    background: none;
    padding: 0;
    color: #333;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .bzchhx-cigarette39-www-article-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .bzchhx-cigarette39-www-article-content th,
    .bzchhx-cigarette39-www-article-content td {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .bzchhx-cigarette39-www-article-content blockquote {
        padding: 15px 20px 15px 15px;
        font-size: 14px;
    }
    
    .bzchhx-cigarette39-www-article-content h2 {
        font-size: 20px;
    }
    
    .bzchhx-cigarette39-www-article-content h3 {
        font-size: 18px;
    }
    
    .bzchhx-cigarette39-www-article-content h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .bzchhx-cigarette39-www-article-content th,
    .bzchhx-cigarette39-www-content-body td {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .bzchhx-cigarette39-www-article-content blockquote {
        padding: 12px 15px 12px 12px;
        font-size: 13px;
    }
}