body{background: #fff;}
.layui-container{width:100%;max-width:1024px}
.header{padding-top: 2px;height: 65px;}
.header .logo a{color:#1890ff;font-size:22px;line-height:55px;}
.header .menu {padding:5px 5px 0 0}
.header .menu span{display:none;text-align:right}
.header .menu span i{font-size:18px;line-height:35px;color:#1890ff;cursor:pointer}
.nav{background-color:#1890ff;}
.nav .layui-nav{background-color:#1890ff;padding:0}
.nav .layui-nav li{line-height:40px}
.nav .layui-nav li.active{background-color:#096dd9}
.nav .layui-nav a{color:#fff;font-size:14px}
/* ==================== 面包屑导航样式（Breadcrumb） ==================== */
/* 面包屑导航容器 */
.breadcrumb-container{
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 12px 0;
    margin-bottom: 20px;
}

/* 面包屑导航主体 */
.breadcrumb{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: #666;
}

/* 面包屑导航项 */
.breadcrumb-item{
    display: inline-flex;
    align-items: center;
}

/* 面包屑导航链接 */
.breadcrumb-item a{
    color: #1c86d1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover{
    color: #1890ff;
    text-decoration: underline;
}

/* 首页图标 */
.breadcrumb-item a i{
    margin-right: 5px;
    font-size: 16px;
}

/* 当前激活项（最后一项） */
.breadcrumb-item.active{
    color: #999;
    font-weight: 500;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 分隔符 */
.breadcrumb-separator{
    margin: 0 10px;
    color: #ccc;
    font-size: 12px;
}

/* 移动端面包屑导航适配 */
@media screen and (max-width: 768px){
    .breadcrumb-container{
        padding: 10px 0;
        margin-bottom: 15px;
    }
    .breadcrumb{
        font-size: 13px;
    }
    .breadcrumb-separator{
        margin: 0 6px;
    }
    .breadcrumb-item.active{
        max-width: 150px;
    }
}
.mainleft,.mainright{margin-top:30px;padding:5px;}
.article_list .item{
    margin-bottom:30px;
    border:1px dotted #eee;
    padding:15px;
    transition: all 0.3s ease;
}
.article_list .item:hover{
    border:1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* 文章列表缩略图 */
.article_list .item .article-thumb{
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #f5f5f5;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.article_list .item .article-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.article_list .item:hover .article-thumb img{
    transform: scale(1.05);
}
.article_list .item .article-thumb .no-image{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
    color: #999;
}
.article_list .item .article-thumb .no-image i{
    font-size: 36px;
    margin-bottom: 5px;
}
.article_list .item .article-thumb .no-image span{
    font-size: 12px;
}

/* 文章列表内容区 */
.article_list .item .article-list-content{
    padding-left: 15px;
}
.article_list .item .article-list-content .title{
    overflow:hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.article_list .item .article-list-content .title a{
    font-size:16px;
    font-weight:500;
    color: #333;
    text-decoration: none;
}
.article_list .item .article-list-content .title a:hover{
    color:#1c86d1;
}
.article_list .item .article-list-content .content{
    overflow:hidden;
    text-overflow: ellipsis;
    margin:10px 0;
    text-indent:0;
    color:#666;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 45px;
}
.article_list .item .article-list-content .info{
    color:#999;
    font-size: 12px;
}
.article_list .item .article-list-content .info i{
    margin-right: 5px;
}

/* 移动端文章列表适配 */
@media screen and (max-width: 768px){
    .article_list .item{
        padding: 10px;
    }
    .article_list .item .article-thumb{
        height: 150px;
        margin-bottom: 10px;
    }
    .article_list .item .article-list-content{
        padding-left: 0;
    }
    .article_list .item .article-list-content .title a{
        font-size: 15px;
    }
    .article_list .item .article-list-content .content{
        -webkit-line-clamp: 2;
        font-size: 13px;
    }
}
.page_content {
    word-break:break-all;
}
.page_content img{
    max-width:100%;
}
.article_content h1{
    word-break:break-all;
    text-align:center;
    font-size:18px;
}

/* 文章元信息样式 */
.article_content .article-meta{
    text-align: center;
    margin: 15px 0 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.article_content .article-meta .meta-item{
    display: inline-block;
    margin: 0 15px;
    color: #999;
    font-size: 14px;
}

.article_content .article-meta .meta-item i{
    margin-right: 5px;
    font-size: 14px;
}

/* 移动端文章元信息适配 */
@media screen and (max-width: 768px){
    .article_content .article-meta{
        margin: 10px 0 20px;
        padding-bottom: 10px;
    }
    .article_content .article-meta .meta-item{
        margin: 0 10px;
        font-size: 13px;
    }
}

.article_content .content{
    word-break:break-all;
}
.article_content .content img{
    max-width:100%;
}

/* 产品详情页简化布局样式 */
.article_content.product-detail-page{
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

/* 产品标题 */
.article_content.product-detail-page .product-detail-h1{
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #1c86d1;
}

/* 产品主要信息区 */
.article_content.product-detail-page .product-main-info{
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* 左侧：产品图片 */
.article_content.product-detail-page .product-image-section{
    flex: 0 0 400px;
    max-width: 400px;
}
.article_content.product-detail-page .product-main-image{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.article_content.product-detail-page .product-main-image img{
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.article_content.product-detail-page .product-main-image:hover img{
    transform: scale(1.05);
}
.article_content.product-detail-page .product-recommend-badge{
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff5722 0%, #ff784e 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255,87,34,0.3);
}

/* 右侧：产品信息 */
.article_content.product-detail-page .product-info-section{
    flex: 1;
    min-width: 300px;
}

/* 价格区域 */
.article_content.product-detail-page .product-price-section{
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 2px solid #ff5722;
}
.article_content.product-detail-page .product-price-section .price-label{
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}
.article_content.product-detail-page .product-price-section .price-value{
    font-size: 36px;
    color: #ff5722;
    font-weight: bold;
}

/* 简介区域 */
.article_content.product-detail-page .product-summary-section{
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #1c86d1;
}
.article_content.product-detail-page .product-summary-section .section-label{
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}
.article_content.product-detail-page .product-summary-section .section-content{
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 元信息区域 */
.article_content.product-detail-page .product-meta-section{
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 20px;
}
.article_content.product-detail-page .product-meta-section .meta-row{
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}
.article_content.product-detail-page .product-meta-section .meta-row:last-child{
    margin-bottom: 0;
}
.article_content.product-detail-page .product-meta-section .meta-label{
    color: #999;
    min-width: 80px;
}
.article_content.product-detail-page .product-meta-section .meta-value{
    color: #666;
}
.article_content.product-detail-page .product-meta-section .meta-value a{
    color: #1c86d1;
    text-decoration: none;
}
.article_content.product-detail-page .product-meta-section .meta-value a:hover{
    text-decoration: underline;
}

/* 操作按钮 */
.article_content.product-detail-page .product-actions{
    text-align: center;
}
.article_content.product-detail-page .product-actions .btn-back{
    padding: 12px 30px;
    font-size: 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.article_content.product-detail-page .product-actions .btn-back:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28,134,209,0.3);
}

/* 产品详情内容区 */
.article_content.product-detail-page .product-detail-content-section{
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px dashed #e9ecef;
}
.article_content.product-detail-page .product-detail-content-section .section-title{
    font-size: 22px;
    color: #333;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 5px solid #1c86d1;
    font-weight: bold;
}
.article_content.product-detail-page .product-detail-content-section .content{
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}
.article_content.product-detail-page .product-detail-content-section .content img{
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 15px 0;
}

/* 移动端适配 */
@media screen and (max-width: 768px){
    .article_content.product-detail-page{
        padding: 15px;
    }
    .article_content.product-detail-page .product-detail-h1{
        font-size: 22px;
        margin-bottom: 20px;
    }
    .article_content.product-detail-page .product-main-info{
        flex-direction: column;
        gap: 20px;
    }
    .article_content.product-detail-page .product-image-section{
        flex: none;
        max-width: 100%;
    }
    .article_content.product-detail-page .product-info-section{
        min-width: 100%;
    }
    .article_content.product-detail-page .product-price-section .price-value{
        font-size: 28px;
    }
    .article_content.product-detail-page .product-detail-content-section .section-title{
        font-size: 18px;
    }
}
.mainright .box{
    border:1px dotted #eee;
    padding:5px;
    margin-bottom:20px;
}
.mainright .box .title{
    font-size:16px;
    font-weight:500;
    margin-bottom:5px;
    color:#1c86d1;
}
.mainright .box li{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.mainright .box li.active a{
    color:#1c86d1;
}
.mainright .box li a{
    line-height:1.5;
}
.pagelist a{border: 1px solid #C9C9C9;background-color: #fff;color: #555;display: inline-block;height: 30px;line-height: 30px;padding: 0 10px;font-size: 12px;white-space: nowrap;text-align: center;border-radius: 2px;cursor: pointer;outline: 0;-webkit-appearance: none;-webkit-transition: all .3s;box-sizing: border-box;vertical-align: middle;font-style: inherit;font-weight: inherit;}
.pagelist a+a{margin-left:5px}
.pagelist a.active,.pagelist a:hover{background-color: #1c86d1;color:#fff;border: 1px solid #1c86d1;}
.footer{
    margin-top:120px;
    margin-bottom:0;
    text-align:center;
    background-color: #1a1a1a;
    padding: 40px 20px;
    color: #fff;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* 友情链接样式 */
.footer-friendlink{
    text-align: left;
    margin-bottom: 20px;
    font-size: 14px;
    color: #ccc;
}
.footer-friendlink .friendlink-label{
    color: #999;
    margin-right: 10px;
}
.footer-friendlink a{
    color: #ccc;
    text-decoration: none;
    margin-right: 15px;
    display: inline-block;
    margin-bottom: 5px;
}
.footer-friendlink a:hover{
    color: #fff;
    text-decoration: underline;
}

/* 页尾网站标题样式 */
.footer-site-title{
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

/* 页尾版权信息样式 */
.footer-copyright{
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}
.footer-copyright a{
	color: #66b1ff;
	text-decoration: none;
}
.footer-copyright a:hover{
	color: #fff;
	text-decoration: underline;
}
.footer-copyright .beian-split{
	margin: 0 10px;
	color: #999;
}
.footer-copyright a[href*="beian.miit.gov.cn"]{
	color: #999;
}
.footer-copyright a[href*="beian.miit.gov.cn"]:hover{
	color: #ccc;
}

/* 备案信息样式 */
.footer-beian{
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}
.footer-beian a{
    color: #999;
    text-decoration: none;
}
.footer-beian a:hover{
    color: #fff;
    text-decoration: underline;
}
.footer-beian .beian-split{
    margin: 0 10px;
    color: #ccc;
}
.footer-beian img{
    width: 16px;
    height: 16px;
}

/* 轮播图样式 */
.banner-carousel{
    margin-top: 0;
    width: 100%;
}
.banner-carousel .layui-carousel{
    background-color: transparent;
}
.banner-carousel .layui-carousel>[carousel-item]>div{
    background-size: cover;
    background-position: center;
}
.banner-item{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #fff;
}
.banner-content{
    padding: 20px;
}
.banner-content h2{
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.banner-content p{
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* 轮播图指示器样式 */
.banner-carousel .layui-carousel-ind{
    top: -30px;
}
.banner-carousel .layui-carousel-ind ul{
    background-color: transparent;
}
.banner-carousel .layui-carousel-ind li{
    background-color: rgba(255,255,255,0.5);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.banner-carousel .layui-carousel-ind li.layui-this{
    background-color: #fff;
}

/* 移动端轮播图适配 */
@media screen and (max-width: 992px){
    .banner-content h2{
        font-size: 24px;
    }
    .banner-content p{
        font-size: 14px;
    }
}

@media screen and (max-width: 992px){
  .header-container{padding:0}
  .header{padding-top: 0px;height: 40px;background-color:#1890ff;}
  .header .logo{text-indent:5px}
  .header .logo a{color:#fff;font-size:22px;line-height:40px}
  .header{border-bottom:1px solid #ccc}
  .header .menu span{display:block;text-indent:5px}
  .header .menu span i{color:#fff;}
  .nav{display:none;border:1px solid #eee;position:fixed;right:0;top:50px;z-index:999;background-color:#fff;padding:5px;}
  .nav .layui-nav{background-color:#fff}
  .nav .layui-nav .layui-nav-item{display:block}
  .nav .layui-nav li.active{background-color:#fff;color:#1890ff}
  .nav .layui-nav a{color:#333;font-weight:500}
  .nav .layui-nav li.active a{color:#1890ff}
  .nav .layui-nav li:hover a{color:#1890ff;background-color:#fff;}
}

/* ==================== 首页产品中心样式 ==================== */
.home-product-section{
    padding: 50px 0;
    background: #fff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}
.section-title{
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2{
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}
.section-title p{
    font-size: 14px;
    color: #666;
}
.home-product-list{
    margin: 0 -10px;
}
.home-product-item{
    padding: 10px;
}
.product-card{
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}
.product-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.product-image{
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card:hover .product-image img{
    transform: scale(1.05);
}
.product-image .no-image{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
}
.product-image .no-image i{
    font-size: 48px;
    color: #ccc;
}
.product-title{
    padding: 15px;
    text-align: center;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #fff;
}
.product-card:hover .product-title{
    color: #1c86d1;
}
.section-more{
    text-align: center;
    margin-top: 40px;
}
.section-more .layui-btn{
    padding: 0 40px;
    height: 44px;
    line-height: 44px;
    font-size: 16px;
    border-radius: 22px;
}

/* 移动端产品展示适配 */
@media screen and (max-width: 768px){
    .home-product-section{
        padding: 30px 0;
    }
    .section-title h2{
        font-size: 24px;
    }
    .product-image{
        height: 150px;
    }
    .product-title{
        padding: 10px;
        font-size: 14px;
    }
}

/* ==================== 首页文章中心样式 ==================== */
.home-article-section{
    padding: 50px 0;
    background: #fff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* 新版文章列表样式 - 左右两行布局 */
.home-article-list-new{
    display: flex;
    gap: 40px;
    justify-content: space-between;
}
.article-column{
    flex: 1;
    min-width: 0;
}
.article-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.article-list-item{
    border-bottom: 1px dashed #e0e0e0;
    transition: all 0.3s ease;
}
.article-list-item:hover{
    background: #f8f9fa;
}
.article-link{
    display: flex;
    align-items: center;
    padding: 12px 0;
    text-decoration: none;
    color: inherit;
}
.article-dot{
    width: 6px;
    height: 6px;
    background: #1c86d1;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}
.article-title-text{
    flex: 1;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 15px;
}
.article-link:hover .article-title-text{
    color: #1c86d1;
}
.article-date{
    font-size: 12px;
    color: #999;
    flex-shrink: 0;
    white-space: nowrap;
}

/* 旧版文章卡片样式（保留兼容） */
.home-article-list{
    margin: 0 -10px;
}
.home-article-item{
    padding: 10px;
    margin-bottom: 20px;
}
.article-card{
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
}
.article-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.article-image{
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.article-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.article-card:hover .article-image img{
    transform: scale(1.05);
}
.article-image .no-image{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
}
.article-image .no-image i{
    font-size: 48px;
    color: #ccc;
}
.article-info{
    padding: 15px;
}
.article-title{
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.article-card:hover .article-title{
    color: #1c86d1;
}
.article-content{
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.article-time{
    font-size: 12px;
    color: #999;
}
.article-time i{
    margin-right: 5px;
}

/* 移动端文章展示适配 */
@media screen and (max-width: 768px){
    .home-article-section{
        padding: 30px 0;
    }
    /* 移动端：左右两行改为上下堆叠 */
    .home-article-list-new{
        flex-direction: column;
        gap: 0;
    }
    .article-column{
        width: 100%;
    }
    .article-link{
        padding: 10px 0;
    }
    .article-title-text{
        font-size: 13px;
    }
    .article-date{
        font-size: 11px;
    }
    .article-image{
        height: 150px;
    }
    .article-info{
        padding: 12px;
    }
    .article-title{
        font-size: 15px;
    }
}

/* ==================== 产品列表样式 ==================== */

/* 栏目标题 */
.channel-title{
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}
.channel-title h1{
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}
.channel-title .channel-desc{
    font-size: 14px;
    color: #666;
}

/* 产品列表容器 */
.product-list{
    margin-bottom: 30px;
}

/* 单个产品项 - 网格布局 */
.product-item{
    margin-bottom: 20px;
    padding: 0;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
}
.product-item:hover{
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-color: #1c86d1;
}

/* 产品图片 */
.product-image{
    position: relative;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
    background: #f5f5f5;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-item:hover .product-image img{
    transform: scale(1.05);
}
.product-image .no-image{
    text-align: center;
    color: #999;
}
.product-image .no-image i{
    font-size: 36px;
    display: block;
    margin-bottom: 5px;
}
.product-image .no-image span{
    font-size: 12px;
}
.product-recommend{
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff5722;
    color: #fff;
    padding: 2px 8px;
    font-size: 11px;
    border-radius: 3px;
}

/* 产品信息 */
.product-info{
    padding: 12px;
}
.product-info .product-title{
    font-size: 14px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-info .product-title a{
    color: #333;
    text-decoration: none;
}
.product-info .product-title a:hover{
    color: #1c86d1;
}

/* 产品价格 */
.product-info .product-price{
    margin-bottom: 8px;
}
.product-info .product-price .price-label{
    color: #666;
    font-size: 12px;
}
.product-info .product-price .price-value{
    color: #ff5722;
    font-size: 16px;
    font-weight: bold;
}

/* 产品简介 */
.product-info .product-summary{
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 36px;
}

/* 产品元信息 */
.product-info .product-meta{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}
.product-info .product-time{
    color: #999;
    font-size: 11px;
}
.product-info .product-detail-link{
    color: #1c86d1;
    font-size: 12px;
    text-decoration: none;
}
.product-info .product-detail-link:hover{
    text-decoration: underline;
}

/* 空产品提示 */
.empty-products{
    text-align: center;
    padding: 60px 20px;
    color: #999;
}
.empty-products i{
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}
.empty-products p{
    font-size: 16px;
}

/* ==================== 产品详情页样式 ==================== */

/* 产品详情容器 */
.product-detail{
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 30px;
}

/* 产品详情图片 */
.product-detail-image{
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #f5f5f5;
}
.product-detail-image img{
    width: 100%;
    height: auto;
    display: block;
}
.product-detail-image .no-image-large{
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}
.product-detail-image .no-image-large i{
    font-size: 64px;
    margin-bottom: 15px;
}
.product-recommend-large{
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff5722;
    color: #fff;
    padding: 5px 15px;
    font-size: 14px;
    border-radius: 3px;
}

/* 产品详情信息 */
.product-detail-info{
    padding-left: 30px;
}
.product-detail-title{
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}
.product-detail-price{
    margin-bottom: 20px;
    padding: 15px;
    background: #fff5f5;
    border-radius: 4px;
}
.product-detail-price .price-label{
    color: #666;
    font-size: 14px;
}
.product-detail-price .price-value{
    color: #ff5722;
    font-size: 28px;
    font-weight: bold;
}
.product-detail-summary{
    margin-bottom: 20px;
}
.product-detail-summary h3{
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}
.product-detail-summary p{
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}
.product-detail-meta{
    margin-bottom: 20px;
}
.product-detail-meta .meta-item{
    margin-bottom: 8px;
    font-size: 14px;
}
.product-detail-meta .meta-label{
    color: #999;
}
.product-detail-meta .meta-value{
    color: #666;
}
.product-detail-meta .meta-value a{
    color: #1c86d1;
}
.product-detail-actions{
    margin-top: 20px;
}

/* 产品详情内容 */
.product-detail-content{
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}
.product-detail-content .content-header{
    margin-bottom: 20px;
}
.product-detail-content .content-header h2{
    font-size: 20px;
    color: #333;
    padding-left: 10px;
    border-left: 4px solid #1c86d1;
}
.product-detail-content .content-body{
    line-height: 1.8;
    color: #666;
}
.product-detail-content .content-body img{
    max-width: 100%;
    height: auto;
}

/* 上一篇下一篇 */
.product-prev-next{
    background: #fff;
    padding: 20px 30px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 30px;
}
.product-prev-next .prev-product,
.product-prev-next .next-product{
    margin-bottom: 10px;
    font-size: 14px;
}
.product-prev-next .prev-product span,
.product-prev-next .next-product span{
    color: #999;
}
.product-prev-next a{
    color: #1c86d1;
}
.product-prev-next a:hover{
    text-decoration: underline;
}

/* ==================== 文章上一篇下一篇导航样式 ==================== */
.article-prev-next{
    background: #fff;
    padding: 20px 30px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-prev-next .prev-article,
.article-prev-next .next-article{
    font-size: 14px;
    display: flex;
    align-items: center;
    flex: 1;
}

.article-prev-next .next-article{
    justify-content: flex-end;
}

.article-prev-next .nav-label{
    color: #666;
    font-weight: 500;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.article-prev-next .nav-label i{
    font-size: 12px;
    margin: 0 3px;
}

.article-prev-next a{
    color: #1c86d1;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px;
    display: inline-block;
}

.article-prev-next a:hover{
    text-decoration: underline;
    color: #1890ff;
}

.article-prev-next .no-article{
    color: #999;
}

/* 移动端文章上一篇下一篇适配 */
@media screen and (max-width: 768px){
    .article-prev-next{
        padding: 15px 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        flex-direction: column;
        gap: 10px;
    }
    .article-prev-next .prev-article,
    .article-prev-next .next-article{
        font-size: 13px;
        width: 100%;
    }
    .article-prev-next .next-article{
        justify-content: flex-start;
    }
    .article-prev-next a{
        max-width: 200px;
    }
}

/* 移动端产品样式适配 */
@media screen and (max-width: 768px){
    .product-image{
        height: 150px;
    }
    .product-info{
        padding: 10px;
    }
    .product-info .product-title{
        font-size: 13px;
    }
    .product-info .product-price .price-value{
        font-size: 14px;
    }
    .product-info .product-summary{
        -webkit-line-clamp: 1;
        height: 18px;
    }
    .product-detail-info{
        padding-left: 0;
        margin-top: 20px;
    }
    .product-detail{
        padding: 15px;
    }
    .product-detail-title{
        font-size: 20px;
    }
    .channel-title h1{
        font-size: 22px;
    }
}

/* ==================== 首页关于我们样式 ==================== */
.home-about-section{
    padding: 60px 0;
    background: #fff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.home-about-content{
    align-items: center;
}

/* 左侧图片区域 */
.home-about-image{
    padding: 0 15px;
    text-align: center;
}

.home-about-image img{
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 右侧文字区域 */
.home-about-text{
    padding: 0 15px;
}

.about-text-content{
    padding: 20px;
}

.about-text-content h3{
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1c86d1;
    font-weight: 600;
}

.about-text-content p{
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-indent: 2em;
}

/* 核心价值观列表 */
.about-values{
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-values li{
    font-size: 14px;
    color: #666;
    line-height: 2;
    padding-left: 20px;
    position: relative;
}

.about-values li:before{
    content: "✓";
    position: absolute;
    left: 0;
    color: #1c86d1;
    font-weight: bold;
    font-size: 16px;
}

/* 移动端关于我们适配 */
@media screen and (max-width: 768px){
    .home-about-section{
        padding: 40px 0;
    }
    .home-about-image{
        margin-bottom: 30px;
    }
    .about-text-content{
        padding: 15px;
    }
    .about-text-content h3{
        font-size: 18px;
    }
    .about-text-content p{
        font-size: 13px;
    }
    .about-values li{
        font-size: 13px;
    }
}