        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #f8f8f8;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo a {
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            color: #c0392b;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 32px;
        }
        
        .menu {
            display: flex;
            list-style: none;
        }
        
        .menu li {
            margin-left: 35px;
        }
        
        .menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            transition: color 0.3s;
        }
        
        .menu a:hover {
            color: #c0392b;
        }
        
        .menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #c0392b;
            transition: width 0.3s;
        }
        
        .menu a:hover::after,
        .menu a.active::after {
            width: 100%;
        }
        
        .menu a.active {
            color: #c0392b;
        }
        
        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: #c0392b;
        }
        
        .intro-section {
            background: linear-gradient(135deg, #c0392b 0%, #a83123 100%);
            color: #fff;
            padding: 30px 0;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .intro-section::before {
            content: "";
            position: absolute;
            top: -20%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .intro-section::after {
            content: "";
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 250px;
            height: 250px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .intro-content {
            max-width: 850px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .intro-content h1 {
            font-size: 36px;
            margin-bottom: 25px;
            font-weight: 800;
        }
        
        .intro-content p {
            font-size: 18px;
            margin-bottom: 18px;
            opacity: 0.92;
            line-height: 1.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .main-content {
            display: flex;
            gap: 15px;
            margin: 40px auto 20px;
        }
        
        .content-left {
            flex: 5;
        }
        
        .content-right {
            flex: 2;
        }
        
        .ranking-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 35px;
            position: relative;
        }
        
        .rank-tag {
            position: absolute;
            top: 0;
            left: 0;
            padding: 6px 15px;
            font-size: 15px;
            font-weight: bold;
            border-bottom-right-radius: 8px;
            color: white;
            z-index: 2;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
/* 第一名 - 耀眼金 */
.rank-tag.first {
  background: linear-gradient(135deg, #FFA500 0%, #FFA600 100%);
}

/* 第二名 - 深邃蓝 */
.rank-tag.second {
  background: linear-gradient(135deg, #4A7BFF 0%, #1A4FDB 100%);
}

/* 第三名 - 优雅紫 */
.rank-tag.third {
  background: linear-gradient(135deg, #A05CE3 0%, #6C3BC4 100%);
}

/* 普通名次 - 浅谈红 */
.rank-tag.normal {
  background: linear-gradient(135deg, #e1402e 0%, #d94635 100%); 
}
        
        .card-content {
            padding: 25px;
        }
        
        .brand-info {
            display: flex;
            gap: 15px;
        }
        
        /* 修改图片容器样式 */
        .brand-image {
            width: 240px;
            height: 160px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
            position: relative;
            display: flex;
            justify-content: center;
            background-color: white;
        }
        
        /* 修改图片样式 */
        .brand-image img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }
        
        .brand-text {
            flex: 1;
            position: relative;
        }
        
        .brand-header {
            display: flex;
            align-items: flex-end;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        
        .brand-name {
            font-size: 24px;
            font-weight: bold;
            margin-right: 15px;
            color: #333;
            line-height: 1.4;
        }
        
        .brand-name a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .brand-name a:hover {
            color: #c0392b;
        }
        
        .company-name {
            font-size: 15px;
            color: #777;
            position: relative;
        }
        
        .brand-description {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.7;
            width: 85%;
        }
        
        .brand-data-stack {
            position: absolute;
            right: 0;
            top: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .data-card {
            background: rgba(192, 57, 43, 0.05);
            border-radius: 10px;
            padding: 12px 18px;
            min-width: 100px;
            text-align: center;
            border: 1px solid rgba(192, 57, 43, 0.1);
        }
        
        
        .data-title {
            font-size: 12px;
            color: #777;
            margin-bottom: 3px;
            font-weight: 500;
        }
        
        .data-value {
            font-size: 22px;
            font-weight: 700;
            color: #c0392b;
            line-height: 1.2;
        }
        
/* 优化后的标签样式 */
.tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, #c0392b 0%, #a83123 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.tag:hover::before {
    transform: translateX(0);
}
        
        .sidebar {
            background: #fff;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
        }
        
        .sidebar-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #c0392b;
            color: #333;
        }
        
        .sidebar-item {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            transition: all 0.3s;
        }
        
        .sidebar-item:hover {
            border-color: #c0392b;
        }
        
        .sidebar-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .sidebar-img {
            width: 120px;
            height: 80px;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: white;
        }
        
        .sidebar-img img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }
        
        .sidebar-content {
            flex: 1;
        }
        
        .sidebar-content h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            transition: color 0.3s;
        }
        
        .sidebar-content h3 a {
            color: #333;
            text-decoration: none;
        }
        
        .sidebar-item:hover .sidebar-content h3 a {
            color: #c0392b;
        }
        
        .sidebar-content p {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
        }
        
        footer {
            background: #2a2a2a;
            color: #aaa;
            padding: 30px 0 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .footer-column {
            flex: 1;
        }
        
        .footer-column h3 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 25px;
            padding-bottom: 10px;
            position: relative;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #c0392b;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #c0392b;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .contact-item i {
            color: #c0392b;
            font-size: 18px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 14px;
            color: #777;
        }
        
        @media (max-width: 992px) {
            .main-content {
                flex-direction: column;
            }
            
            .footer-content {
                flex-wrap: wrap;
            }
            
            .footer-column {
                flex: 1 0 50%;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #fff;
                flex-direction: column;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            .menu.active {
                display: flex;
            }
            
            .menu li {
                margin: 0;
                border-bottom: 1px solid #eee;
                padding: 0 20px;
            }
            
            .menu a {
                display: block;
                padding: 10px 0px;
            }
            
            .brand-info {
                flex-direction: column;
            }
            
            .brand-image {
                width: 100%;
                height: auto;
                max-width: 300px;
                margin: 0 auto;
            }
            
            .header-container {
                padding: 16px 20px;
            }
            
            .brand-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .company-name {
                top: 0;
            }
            
            .brand-description {
                width: 100%;
            }
            
            .brand-text {
                position: relative;
            }
            
            .brand-data-stack {
                position: static;
                flex-direction: row;
                margin: 15px 0;
                justify-content: center;
                gap: 15px;
                order: 2;
            }
            
            .tags {
                order: 1;
                margin-bottom: 15px;
            }
            
            .brand-image img {
                width: 100%;
                height: auto;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 10px;
            }
            
            .header-container {
                padding: 12px 15px;
            }
            
            .data-card {
                min-width: 100px;
                padding: 10px 15px;
            }
            
            .data-value {
                font-size: 18px;
            }
            
            .intro-content h1 {
                font-size: 28px;
            }
            
            .intro-content p {
                font-size: 16px;
            }
			.card-content {
            padding: 15px;
             }
        }
		
/* 在@media (max-width: 576px) 添加分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0 50px;
    flex-wrap: wrap;
}

.page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-numbers:hover:not(.current) {
    background-color: rgba(192, 57, 43, 0.1);
    border-color: rgba(192, 57, 43, 0.3);
    color: #c0392b;
    transform: translateY(-2px);
}

.page-numbers.current {
    background: linear-gradient(135deg, #c0392b 0%, #a83123 100%);
    color: white;
    border: none;
    box-shadow: 0 3px 8px rgba(192, 57, 43, 0.3);
}

.page-numbers.dots {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #777;
    width: auto;
    padding: 0 5px;
}

.pagination .prev,
.pagination .next {
    padding: 0 15px;
    border-radius: 30px;
    gap: 8px;
}

.pagination i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .page-numbers {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    }

@media (max-width: 576px) {
    .page-numbers {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .pagination .prev,
    .pagination .next {
        font-size: 14px;
    }
    
    .page-numbers.dots {
        display: none;
    }
}

        /* 面包屑导航 */
        .breadcrumbs {
            background: linear-gradient(135deg, #c0392b 0%, #a83123 100%);
            color: #fff;
            padding: 20px 0;
            margin-bottom: 40px;
        }
        
        .breadcrumbs-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .breadcrumbs a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .breadcrumbs a:hover {
            color: white;
            text-decoration: underline;
        }
        
        .breadcrumbs span {
            color: rgba(255, 255, 255, 0.85);
            margin: 0 8px;
        }

        /* 新增产品详情页样式 */
        .product-detail-container {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .product-top {
            display: flex;
            gap: 30px;
            margin-bottom: 10px;
        }
        
        
        .product-info {
            flex: 2;
        }
        
        .product-header {
            display: flex;
            align-items: baseline;
            flex-wrap: wrap;
        }
        
        .product-title {
            font-size: 28px;
            font-weight: 800;
            color: #333;
            margin-right: 15px;
        }
        
        .product-company {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
        }
        
        .info-row-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .info-group {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .info-label {
            font-weight: 600;
            color: #555;
            margin-right: 3px;
        }
        
        .info-value {
            color: #333;
            flex-grow: 1;
        }
        
        .info-value a {
            color: #c0392b;
            text-decoration: none;
        }
        
        .info-value a:hover {
            text-decoration: underline;
        }
        
        .rating-row {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .rating-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .rating-stars {
            color: #FFC107;
			font-size: 17px; /* 增大星星尺寸 */
            letter-spacing: 2px; /* 增加星星间距 */
        }
/* 确保评分数字不受影响 */
.rating-stars .info-value {
    font-size: 17px; /* 保持原有大小 */
    letter-spacing: normal; /* 重置字母间距 */
    margin-left: 1px; /* 增加与星星的间距 */
    color: #c0392b; /* 保持原有颜色 */
    font-weight: 600; /* 加粗显示 */
}

/*鼠标悬停显示评分效果*/
.rating-stars.interactive {
    cursor: pointer;
}

.rating-stars.interactive i:hover {
    transform: scale(1.2);
    transition: transform 0.2s;
}


        .rating-heart {
            color: #e74c3c;
        }
/* 点赞人数样式 */
.rating-heart .info-value {
    font-size: 17px; /* 保持原有大小 */
    color: #c0392b; /* 保持原有颜色 */
    font-weight: 600; /* 加粗显示 */
}
		

        .product-description h2 {
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #c0392b;
            color: #333;
        }
        
        .product-description p {
            margin-bottom: 15px;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .product-top {
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .product-top {
                flex-direction: column;
            }
            
            .product-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .product-company {
                margin-top: 5px;
            }
            
            .rating-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }
        
       @media (max-width: 576px) {
            .product-top {
                padding-left: 0;
                padding-right: 0;
            }
            
            .product-info {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .info-row-container {
                width: 100%;
            }
            
            .product-description {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .info-group {
                display: flex;
                flex-direction: row;
                align-items: center;
                width: 100%;
                margin-bottom: 5px;
            }
            
            .info-label {
                min-width: 80px;
                text-align: right;
                flex-shrink: 0;
                font-weight: 600;
            }
            
            .info-value {
                flex-grow: 1;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            
            .brand-data-stack {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .product-detail-container {
                padding: 20px 0;
            }
        }
		
.info-group-tags {
    display: flex;
    align-items: center; /* 确保标签和文字垂直居中 */
    flex-wrap: wrap; /* 允许标签换行 */
    gap: 10px; /* 标签间距 */
}

@media (max-width: 576px) {
    .info-group-tags {
        flex-direction: row; /* 确保标签水平排列 */
        align-items: center; /* 保持垂直居中 */
    }
}	

        /* ===== 新增文章详情页样式 ===== */
        .article-detail-container {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .article-title {
            font-size: 26px;
            font-weight: 800;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .article-meta {
            color: #666;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .article-meta .separator {
            margin: 0 5px;
            color: #999;
        }
        
        .article-divider {
            height: 2px;
            background: #c0392b;
            margin-bottom: 20px;
        }
        
        .article-content {
            line-height: 1.8;
            color: #333;
            margin-bottom: 40px;
        }
        
        .article-content p {
            margin-bottom: 15px;
        }
        
        .article-navigation {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            padding: 20px 0;
            margin-bottom: 40px;
        }
        
        .prev-article, .next-article {
            align-items: center;
        }
        
        .prev-article span, .next-article span {
            color: #666;
            font-weight: 500;
        }
        
        .prev-article a, .next-article a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .prev-article a:hover, .next-article a:hover {
            color: #c0392b;
        }
        
        .next-article {
            text-align: right;
        }
        
        .related-articles h3 {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #c0392b;
            color: #333;
        }
        
        .related-list {
            list-style: none;
        }
        
        .related-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
        }
        
        .related-list li:last-child {
            border-bottom: none;
        }
        
        .related-list a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
            flex-grow: 1;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .related-list a:hover {
            color: #c0392b;
        }
        
        .related-date {
            color: #999;
            font-size: 14px;
            flex-shrink: 0;
            margin-left: 15px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .article-navigation {
                flex-direction: column;
                gap: 15px;
            }
            .next-article {
                text-align: left;
            }
    .article-detail-container {
        padding: 12px;
    }
	.article-title {
            font-size: 22px;
        }
        }
        
        /* ====== 新增文章列表页样式 ====== */
        .article-card {
            transition: all 0.3s ease;
            position: relative;
        }

        /* 文章卡片内容区域 - 独立内边距 */
        .article-card .card-content {
        padding: 15px; /* 自定义内边距 */
        }

        .article-card .brand-image {
            width: 240px;
            height: 160px;
            flex-shrink: 0;
            background: #fff;
        }
        
        .article-card .brand-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 1px;
        }
        
        .article-card .brand-name {
            font-size: 20px;
            margin-bottom: 8px;
			line-height: 2;
        }
        
        .article-card .brand-name a:hover {
            color: #c0392b;
            text-decoration: none;
        }
        
        .article-card .article-excerpt {
            color: #555;
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .article-card .article-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #777;
            font-size: 14px;
        }
        
        .article-card .article-meta i {
            color: #c0392b;
            margin-right: 5px;
        }
        
        
        @media (max-width: 768px) {
            .article-card .brand-image {
                width: 100%;
                height: auto;
                max-width: 100%;
            }
            
            .article-card .article-excerpt {
                -webkit-line-clamp: 2;
            }
        }
        /* ===== 新增首页样式 ===== */
        
        /* 搜索框样式 */
        .search-container {
            max-width: 700px;
            margin: 30px auto 0;
            position: relative;
        }
        
        .search-form {
            display: flex;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }
        
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 16px;
            outline: none;
        }
        
        .search-button {
            background: #fff;
            color: #c0392b;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s;
        }
        
        .search-button:hover {
            background: #f5f5f5;
        }
        
        /* 分类导航样式 */
        .category-section {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #c0392b;
            color: #333;
        }
        
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .category-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
            border: 1px solid #eee;
        }
        
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-color: #c0392b;
        }
        
        .category-link {
            display: block;
            text-decoration: none;
            color: #333;
            padding: 20px;
            text-align: center;
        }
        
        .category-icon {
            font-size: 36px;
            color: #c0392b;
            margin-bottom: 15px;
            display: block;
        }
        
        .category-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .category-count {
            font-size: 13px;
            color: #777;
        }
        
        /* 热门分类样式 */
        .hot-categories {
            margin-top: 40px;
        }
        
        .hot-categories .section-title {
            border-bottom-color: #c0392b;
        }
        
        .hot-categories .category-icon {
            color: #c0392b;
        }
        
        .hot-categories .category-card:hover {
            border-color: #c0392b;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .category-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .search-input {
                padding: 12px 15px;
                font-size: 14px;
            }
            
            .search-button {
                padding: 0 15px;
            }
        }
        
        @media (max-width: 576px) {
            .category-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
        .category-section {
            padding: 15px;
            margin-bottom: 10px;
        }
            
            .category-link {
                padding: 15px 10px;
            }
            
            .category-icon {
                font-size: 28px;
                margin-bottom: 10px;
            }
            
            .category-name {
                font-size: 14px;
            }
            
            .section-title {
                font-size: 20px;
            }
        }
    /* ===== 友情链接样式 ===== */
    .friend-links {
        background: #fff;
        padding: 30px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-bottom: 30px;
    }
    
    .friend-links-title {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid #c0392b;
        color: #333;
    }
    
    .friend-links-container {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin: 0 auto;
    }
    
    .friend-links-container a {
        color: #555;
        text-decoration: none;
        padding: 5px 10px;
        border-radius: 4px;
        transition: all 0.3s;
        border: 1px solid #eee;
    }
    
    .friend-links-container a:hover {
        color: #c0392b;
        border-color: #c0392b;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .friend-links-container {
            gap: 10px;
        }
        
        .friend-links-container a {
            padding: 6px 12px;
            font-size: 14px;
        }
    }
	
/* 产品页与文章页添加图片响应式处理 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.product-description img {
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
	
/* 底部备案号样式 */
.link {
    color: #777;          /* 默认文字颜色 */
    text-decoration: none;   /* 去除下划线 */
    transition: color 0.3s ease; /* 专门针对颜色的过渡效果 */
}

.link:hover {
    color: #c0392b;             /* 悬停时变为白色 */
}



/* 点赞和踩按钮样式 */
#like-btn {
    background: linear-gradient(135deg, #ff4d4d, #ff6f61);  /* 渐变红色背景 */
    border: none;
    border-radius: 20px;  /* 圆角 */
    color: white;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.2s ease, background 0.3s ease;
    box-shadow: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
}

/* 踩按钮样式 */
#dislike-btn {
    background: linear-gradient(135deg, #6c757d, #5a6268);  /* 渐变灰色背景 */
    border: none;
    border-radius: 20px;  /* 圆角 */
    color: white;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.2s ease, background 0.3s ease;
    box-shadow: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
}

/* 鼠标悬停时，按钮背景反转，按钮微微上升 */
#like-btn:hover, #dislike-btn:hover {
    transform: translateY(-2px);  /* 鼠标悬停时按钮微微上升 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  /* 悬停时添加阴影 */
}

#like-btn:hover {
    background: linear-gradient(135deg, #ff6f61, #ff4d4d);  /* 点赞按钮悬停时渐变背景反转 */
}

#dislike-btn:hover {
    background: linear-gradient(135deg, #5a6268, #6c757d);  /* 踩按钮悬停时渐变背景反转 */
}

/* 按钮点击时稍微缩小 */
#like-btn:active, #dislike-btn:active {
    transform: scale(0.95);  /* 按钮点击时稍微缩小 */
}

/* 点赞按钮和踩按钮图标样式 */
#like-btn i, #dislike-btn i {
    font-size: 16px;
    margin-right: 6px;  /* 图标和文本之间的间距 */
}

/* 让点赞次数和按钮在同一行显示 */
.right {
    display: inline-flex;
    align-items: center;
}

/* 让已点击的踩按钮显示不同的样式（如果有需要） */
#dislike-btn[disabled] {
    background-color: #b3b3b3;  /* 灰色背景 */
    cursor: not-allowed;  /* 禁用状态 */
}

/* 如果需要禁用点赞按钮时，添加类似的样式 */
#like-btn[disabled] {
    background-color: #b3b3b3;  /* 灰色背景 */
    cursor: not-allowed;  /* 禁用状态 */
}




/* ===== 评论区域样式 ===== */
:root {
    --primary-color: #c0392b;
    --dark-pink: #a83123;        /* 主色调的深色变体 */
    --light-pink: rgba(192, 57, 43, 0.1); /* 主色调的浅色透明变体 */
    --radius-sm: 16px;           /* 小圆角 */
    --radius-lg: 30px;           /* 大圆角 */
}

.comments-area {
    margin-top: 30px;
    background: white;
    border-radius: var(--radius-lg);
}

.comments-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0;
    display: flex;
    align-items: center;
}

.comments-title span {
    color: var(--primary-color);
    margin-left: 3px;
	margin-right: 3px;
    font-size: 20px;
}

.comments-title i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* 四行布局评论表单 */
.comment-respond {
    margin-bottom: 10px;
    padding: 5px;
    background: #f9f9f9;
    border-radius: var(--radius-sm);
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

/* 第一行：评论内容框 */
.comment-form-comment {
    order: 1;
}

.comment-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: var(--radius-sm);
    min-height: 120px;
    font-size: 14px;
    resize: vertical;
    transition: all 0.3s;
    background: white;
}

.comment-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 36, 76, 0.1);
}

/* 第二行：昵称和邮箱输入框（在同一行） */
.comment-form .author-email-container {
    order: 2;
    display: flex;
    gap: 15px;
    width: 100%;
}

.comment-form-author {
    flex: 1;
}

.comment-form-email {
    flex: 1;
}

.comment-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: all 0.3s;
    background: white;
}

.comment-form input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 36, 76, 0.1);
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* 第三行：记住我的信息 */
.comment-form-cookies-consent {
    order: 3;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

.comment-form-cookies-consent input {
    margin: 0 8px 0 0;
    width: auto;
}

.comment-form-cookies-consent label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
    display: inline;
    line-height: 1.4;
}

/* 第四行：提交按钮 */
.form-submit {
    order: 4;
    text-align: right;
}

.submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.submit:hover {
    background: var(--dark-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 36, 76, 0.3);
}

/* 评论列表样式 */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #f0f0f0;
}

.comment {
    position: relative;
    padding: 15px 0;
    border-bottom: 1px solid #f7f7f7;
}

.comment:last-child {
    border-bottom: none;
}

.comment-body {
    padding: 15px;
    background: #fafafa;
    border-radius: 12px;
    position: relative;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3px;
    align-items: center;
}

.comment-author {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
}

.comment-author .fn {
    color: var(--primary-color);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.comment-metadata {
    font-size: 12px;
    color: #999;
}

.comment-content {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.comment-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1px;
}

.reply {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--primary-color);
    background: rgba(255, 36, 76, 0.08);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.reply:hover {
    background: var(--primary-color);
    color: white;
}

.reply i {
    margin-right: 4px;
    font-size: 12px;
}

/* ===== 嵌套评论样式 - 固定两层缩进 ===== */
/* 所有回复评论使用相同的缩进 */
.children {
    list-style: none;
    padding-left: 40px; /* 固定缩进量 */
    margin-top: 1px;
}

/* 更深层嵌套不再增加缩进 */
.children .children,
.children .children .children,
.children .children .children .children {
    padding-left: 0; /* 取消额外缩进 */
}

/* 所有嵌套评论使用相同样式 */
.children .comment-body,
.children .children .comment-body,
.children .children .children .comment-body {
    background: #f5f5f5;
}

/* 使用类名标记层级 */
.comment.depth-2,
.comment.depth-3,
.comment.depth-4 {
    position: relative;
}

/* 添加视觉指示器 */
.comment.depth-2:before,
.comment.depth-3:before,
.comment.depth-4:before {
    content: "↳ ";
    color: #999;
    position: absolute;
    left: -20px;
    top: 20px;
    font-size: 16px;
}

/* 查看更多评论按钮 */
.show-more-comments {
    display: block;
    margin-top: 15px;
    padding: 8px 16px;
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--light-pink);
    border-radius: 30px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.show-more-comments:hover {
    background: var(--light-pink);
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(255, 36, 76, 0.15);
}

/* 折叠状态 */
.comment-list.collapsed > .comment:nth-child(n+4) {
    display: none;
}

/* 媒体查询 */
@media (max-width: 768px) {
    .comment-form .author-email-container {
        flex-direction: column;
        gap: 15px;
    }
	
.comments-area {
    padding: 10px;
}

    .comment-form-cookies-consent {
        margin: 10px 0;
    }
    
    .children {
        padding-left: 15px; /* 移动端减少缩进 */
    }
    
    .comment-body {
        padding: 10px;
    }
    
    .comment-author .fn {
        max-width: 90px;
    }
    
    .comment.depth-2:before,
    .comment.depth-3:before,
    .comment.depth-4:before {
        left: -15px;
        top: 15px;
    }
}

/* 添加评论区域样式部分 */
.comment-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 36, 76, 0.2);
    outline: none;
}

/* 品牌介绍正文下方  评论区上方 实线隔开 */
.solid-divider {
    height: 1px;
    background-color: #e0e0e0; /* 浅灰色 */
    margin: 30px 0; /* 上下间距30px */
    width: 100%;
}
