/* 全局样式 */
body {
    font-family: "Microsoft YaHei", sans-serif;
    padding-top: 50px;
}

/* 导航栏样式 */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 0;
}

.navbar-brand img {
    max-height: 40px;
    margin-top: -10px;
}






/* 轮播图样式优化 */
#mainCarousel {
    max-height: 500px;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
}

.carousel .item {
    height: 600px;
}

.carousel .item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    max-height: 500px;
}

.carousel-caption {
    background: none;
    padding: 20px;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    text-align: center;
}

.carousel-caption h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-caption p {
    font-size: 24px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 面包屑导航样式 */
.breadcrumb-wrapper {
    background: #f8f8f8;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}
.breadcrumb{margin-bottom:0;}
/* 文章列表样式优化 */
.article-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.article-item:last-child {
    border-bottom: none;
}

.article-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.article-item h3 {
    margin: 15px 0;
}

.article-item h3 a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
}

.article-meta {
    color: #999;
    margin-bottom: 15px;
    font-size: 14px;
}

.article-meta span {
    margin-right: 15px;
}

.article-meta i {
    margin-right: 5px;
}

.summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .article-section {
        padding: 20px 0;
    }
    
    .article-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .article-item .row {
        margin: 0;
    }
    
    .article-item .col-md-4,
    .article-item .col-md-8 {
        padding: 0;
    }
    
    .article-item img {
        height: 180px; /* 固定移动端缩略图高度 */
        margin-bottom: 15px;
        border-radius: 6px;
    }
    
    .article-item h3 {
        margin: 10px 0;
    }
    
    .article-item h3 a {
        font-size: 16px;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .article-meta {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .article-meta span {
        margin-right: 10px;
    }
    
    .summary {
        font-size: 14px;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 42px;
    }
    
    .article-item .btn {
        padding: 6px 15px;
        font-size: 13px;
    }
}

/* 超小屏幕适配 */
@media (max-width: 480px) {
    .article-item img {
        height: 160px; /* 更小屏幕缩略图高度 */
    }
    
    .article-meta span:last-child {
        display: none; /* 隐藏最后一个meta信息 */
    }
    
    .summary {
        font-size: 13px;
        height: 38px;
    }
}

/* 文章分类侧边栏移动端适配 */
@media (max-width: 768px) {
    .category-sidebar {
        margin-bottom: 30px;
        padding: 15px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
		display: none;
    }
    
    .category-sidebar h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .list-group-item {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .hot-articles {
        margin-top: 20px;
    }
    
    .hot-articles h3 {
        font-size: 16px;
    }
    
    .hot-articles ul li {
        padding: 10px 0;
    }
    
    .hot-articles ul li a {
        font-size: 14px;
    }
}

/* 产品列表样式优化 */
.product-item {
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.product-item img {
    width: 100%;
    height: 200px; /* 降低图片高度 */
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 16px;
    margin: 0 0 10px;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
    min-height: 40px; /* 固定描述文字高度 */
}

.product-info .btn {
    padding: 8px 25px;
}

/* 联系我们页面样式 */
.contact-info {
    background: #f8f8f8;
    padding: 30px;
    margin-bottom: 30px;
}

.contact-info li {
    margin-bottom: 20px;
}

.contact-form {
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* 404页面样式 */
.error-page {
    padding: 100px 0;
    background: #f8f8f8;
}

.error-code {
    font-size: 150px;
    color: #337ab7;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.error-page h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.error-page .lead {
    color: #666;
    margin-bottom: 30px;
}

.error-actions {
    margin: 30px 0;
}

.error-actions .btn {
    margin: 0 10px;
}

/* 其他通用样式 */
.section-title {
    margin-bottom: 30px;
    position: relative;
}

.title-border {
    width: 50px;
    height: 3px;
    background: #337ab7;
    margin: 15px 0;
}

.title-border.center {
    margin: 15px auto;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .carousel .item {
        height: 200px;
    }
    
    .carousel-caption h1 {
        font-size: 24px;
    }
} 

/* 关于我们页面样式 */
.timeline {
    position: relative;
    padding: 30px 0;
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
    padding-left: 100px;
}

.timeline .year {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    text-align: right;
    font-weight: bold;
    color: #333;
}

/* 企业文化样式 */
.culture-item {
    padding: 30px;
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.culture-item i {
    font-size: 40px;
    color: #337ab7;
    margin-bottom: 20px;
}

/* 产品分类侧边栏样式 */
.category-sidebar {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.category-sidebar h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #337ab7;
}

.category-sidebar .list-group-item {
    border: none;
    padding: 10px 15px;
}

.category-sidebar .list-group-item.active {
    background-color: #337ab7;
    border-color: #337ab7;
}

.category-sidebar .list-group-item a {
    color: inherit;
    text-decoration: none;
}

/* 小型产品项目样式 */
.product-item-small {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
	overflow: hidden;
	zoom: 1;
}

.product-item-small img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    float: left;
    margin-right: 10px;
}
img{max-width: 100%;}
.product-item-small h4 {
    margin: 0;
    padding-top: 30px;
    font-size: 14px;
}

/* 产品筛选器样式 */
.products-filter {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.products-filter select {
    width: auto;
    display: inline-block;
}

/* 产品详情页样式 */
.product-gallery {
    margin-bottom: 30px;
}
.profile-content img{max-width:100%;height:auto !important;}
.product-gallery .main-image {
    margin-bottom: 15px;
    border: 1px solid #eee;
    padding: 5px;
}

.product-gallery .thumbnail-list {
    margin: 0 -5px;
}

.product-gallery .thumbnail-list img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 5px;
    border: 1px solid #eee;
    cursor: pointer;
}

.product-gallery .thumbnail-list img.active {
    border-color: #337ab7;
}

.product-meta {
    color: #666;
    margin: 15px 0;
}

.product-meta span {
    margin-right: 20px;
}

.product-desc {
    margin: 20px 0;
}

.product-contact {
    margin: 30px 0;
}

.product-contact .btn {
    margin-right: 15px;
}

/* 产品选项卡样式 */
.product-tabs {
    margin: 50px 0;
}

.product-tabs .nav-tabs {
    margin-bottom: 20px;
}

/* 产品导航样式 */
.product-nav {
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 30px 0;
}

.product-nav a {
    color: #333;
}

.product-nav a:hover {
    color: #337ab7;
    text-decoration: none;
}

/* 相关产品样式 */
.related-products {
    margin: 50px 0;
}

.related-products .section-title {
    margin-bottom: 30px;
}

/* 热门文章列表样式 */
.hot-articles ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.hot-articles ul li:last-child {
    border-bottom: none;
}

.hot-articles ul li a {
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.hot-articles ul li a:hover {
    color: #337ab7;
}

.hot-articles .date {
    color: #999;
    font-size: 12px;
}

/* 文章详情页样式 */
.article-content {
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.article-title {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: bold;
}

.article-text {
    margin: 30px 0;
    line-height: 1.8;
}

.article-text img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.article-text h3 {
    margin: 30px 0 15px;
    font-weight: bold;
}

/* 文章导航样式 */
.article-nav {
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 30px 0;
}

.article-nav a {
    color: #333;
    text-decoration: none;
}

.article-nav a:hover {
    color: #337ab7;
}

/* 相关文章样式 */
.related-articles {
    margin-top: 30px;
}

.related-articles h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #337ab7;
}

.article-item-small {
    margin-bottom: 20px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.article-item-small img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

.article-item-small h4 {
    margin: 0 0 5px;
    font-size: 16px;
}

.article-item-small h4 a {
    color: #333;
    text-decoration: none;
}

.article-item-small h4 a:hover {
    color: #337ab7;
}

.article-item-small .date {
    color: #999;
    font-size: 12px;
}

/* 公司简介页面样式 */
.company-intro {
    padding: 70px 0 50px;
    position: relative;
    background: linear-gradient(to bottom, #f8f8f8, #fff);
}

.company-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.05) 50%,
        rgba(0,0,0,0) 100%
    );
}

.company-intro .container {
    position: relative;
}

.company-intro .section-title {
    position: relative;
    display: inline-block;
}

.company-intro .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #337ab7;
}

.company-intro .lead {
    font-size: 20px;
    color: #337ab7;
    margin-bottom: 20px;
}

.company-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.company-intro .btn {
    padding: 12px 30px;
    font-size: 16px;
}

.company-intro img {
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 5px;
}

/* 荣誉资质样式 */
.honor-item {
    text-align: center;
    margin-bottom: 30px;
}

.honor-item img {
    margin-bottom: 15px;
    border: 1px solid #eee;
    padding: 5px;
    transition: all 0.3s ease;
}

.honor-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.honor-item h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

/* 联系我们页面样式 */
.contact-section {
    padding: 10px 0;
}

.contact-info {
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-info ul li {
    margin-bottom: 30px;
    position: relative;
    padding-left: 45px;
}

.contact-info ul li:last-child {
    margin-bottom: 0;
}

.contact-info ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 24px;
    color: #337ab7;
}

.contact-info ul li h4 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: bold;
}

.contact-info ul li p {
    margin: 0;
    color: #666;
}

/* 联系表单样式 */
.contact-form {
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: normal;
    color: #333;
}

.contact-form .form-control {
    border-radius: 0;
    height: 45px;
}

.contact-form textarea.form-control {
    height: auto;
}

.contact-form .btn {
    padding: 12px 30px;
}

/* 地图容器样式 */
.map-section {
    padding: 50px 0;
    background: #f8f8f8;
}

.map-container {
    margin-top: 30px;
    border: 1px solid #eee;
    padding: 5px;
    background: #fff;
}

/* 推荐链接样式 */
.recommended-links {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.recommended-links h3 {
    margin-bottom: 30px;
    color: #333;
}

.recommend-item {
    display: block;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.recommend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    color: #337ab7;
}

.recommend-item i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #337ab7;
}

.recommend-item h4 {
    margin: 0;
    font-size: 16px;
}

/* 在线客服样式优化 */
.online-service {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}
.popup p{color:#333;text-align:left;}

.service-item {
    display: block;
    width: 50px;
    height: 50px;
    background: #337ab7;
    color: #fff;
    text-align: center;
    line-height: 50px;
    margin-bottom: 2px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #23527c;
}

.service-item i {
    font-size: 24px;
}

.service-item .popup {
    position: absolute;
    right: 60px;
    top: 0;
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: none;
    white-space: nowrap;
    z-index: 9999;
}

.service-item:hover .popup {
    display: block;
}

/* 返回顶部按钮样式优化 */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: #337ab7;
    color: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 9999;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #23527c;
    transform: translateY(-3px);
}

/* 页脚样式补充 */
.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.qrcode {
    text-align: center;
}

.qrcode img {
    margin-bottom: 10px;
}

/* 优势板块样式优化 */
.features {
    padding: 80px 0;
    background: #f8f8f8;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    top: 0;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #337ab7, #23527c);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.feature-box:hover {
    top: -10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box i {
    font-size: 48px;
    color: #337ab7;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-box:hover i {
    color: #fff;
    transform: rotateY(360deg);
}

.feature-box h3 {
    font-size: 20px;
    margin: 20px 0;
    color: #333;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-box:hover h3,
.feature-box:hover p {
    color: #fff;
}

/* 新闻资讯样式优化 */
.news {
    padding: 80px 0;
    background: #fff;
}

.news-container {
    display: flex;
    justify-content: space-between;
    margin: 0 -15px;
}

.news-column {
    flex: 0 0 calc(50% - 30px);
    margin: 0 15px;
}

.news-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-list-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-item:hover {
    background: #f8f8f8;
    transform: translateX(10px);
}

.news-date {
    min-width: 100px;
    text-align: center;
    margin-right: 20px;
}

.news-date .day {
    font-size: 24px;
    font-weight: bold;
    color: #337ab7;
    line-height: 1;
}

.news-date .month {
    font-size: 14px;
    color: #666;
}

.news-content {
    flex: 1;
}

.news-content h3 {
    font-size: 16px;
    margin: 0 0 5px;
}

.news-content h3 a {
    color: #333;
    text-decoration: none;
}

.news-content h3 a:hover {
    color: #337ab7;
}

.news-content p {
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.news-meta {
    min-width: 150px;
    text-align: right;
    color: #999;
    font-size: 12px;
}

.news-meta i {
    margin-right: 5px;
}

/* 页脚样式优化 */
.bg-dark {
    background: #2c3e50 !important; /* 更深的蓝色背景 */
    padding: 60px 0 30px;
    color: #fff;
}

.bg-dark h5 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #337ab7;
    display: inline-block;
}

.bg-dark p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.bg-dark .list-unstyled li {
    margin-bottom: 10px;
}

.bg-dark .list-unstyled a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.bg-dark .list-unstyled a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #337ab7;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

/* 实力见证板块样式优化 */
.statistics {
    background: #fff;
    padding: 60px 0;
    position: relative;
}

.stat-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px 20px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.stat-item .red-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(51, 122, 183, 0.1);
    border: 2px solid #337ab7;
}

.stat-item .red-box i {
    font-size: 32px;
    color: #337ab7;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    margin: 15px 0;
}

.stat-number span {
    font-size: 18px;
    margin-left: 5px;
}

.stat-text {
    font-size: 16px;
    color: #666;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .statistics {
        padding: 20px 0;
        background: #fff;
    }
    
    .statistics .container {
        padding: 15px;
    }
    
    .statistics .row {
        margin: -8px;
    }
    
    .statistics .col-xs-12 {
        padding: 8px;
        width: 100%;
    }
    
    .stat-item {
        margin: 0;
        padding: 25px 20px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .stat-item .red-box {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(51, 122, 183, 0.1);
        border: 2px solid #337ab7;
    }
    
    .stat-item .red-box i {
        font-size: 24px;
        color: #337ab7;
    }
    
    .stat-content {
        text-align: center;
    }
    
    .stat-number {
        font-size: 24px;
        margin: 0 0 5px;
        line-height: 1.2;
        font-weight: bold;
    }
    
    .stat-number span {
        font-size: 15px;
    }
    
    .stat-text {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

    .friend-links {
            display: none;
        }

}

/* 超小屏幕适配 */
@media (max-width: 480px) {
    .statistics {
        padding: 15px 0;
    }
    
    .statistics .container {
        padding: 10px;
    }
    
    .statistics .row {
        margin: -6px;
    }
    
    .statistics .col-xs-12 {
        padding: 6px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-item .red-box {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .stat-item .red-box i {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-text {
        font-size: 13px;
    }
}

/* 移除之前的分隔线和边框样式 */
.statistics .col-xs-12:not(:last-child) .stat-item::after {
    display: none;
}

/* 移除可能冲突的样式 */
.statistics .col-xs-12:last-child {
    margin-bottom: 0;
}

/* 产品展示样式优化 */
.products {
    padding: 80px 0;
    background: #f8f8f8;
}

.product-item {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #333;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
    min-height: 40px;
}

.product-info .btn {
    padding: 8px 25px;
    border-radius: 20px;
}

/* 添加波分隔线样式 */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px; /* 波浪高度 */
    background: url('../images/wave.svg') repeat-x;
    background-size: 1920px 70px;
    z-index: 2;
} 