
      
        .tags-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .tags-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }
        .tags-hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: #fff;
        }
        .tags-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .tags-hero p {
            font-size: 18px;
            opacity: 0.9;
        }

        .tags-cloud-section {
            padding: 60px 0;
            background: #f8f9fa;
        }
        .tags-cloud-container {
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            margin-bottom: 40px;
        }
        .tags-cloud-title {
            text-align: center;
            margin-bottom: 30px;
        }
        .tags-cloud-title h2 {
            font-size: 32px;
            color: #333;
            margin-bottom: 10px;
        }
        .tags-cloud-title p {
            color: #666;
            font-size: 14px;
        }

        /* TAG标签样式 */
        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        .tag-item {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            background: #e0e0e0;
            color: #333;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
            cursor: pointer;
        }
        .tag-item:hover {
            background: #d0d0d0;
            transform: translateY(-2px);
        }
        .tag-name {
            font-weight: 500;
        }
        .tag-count {
            background: #fff;
            padding: 2px 8px;
            border-radius: 10px;
            margin-left: 8px;
            font-size: 12px;
            color: #666;
        }

        /* ===================================
           TEXT SELECTION
           =================================== */
        .tags-hero,
        .tags-cloud-section,
        .recommend-section,
        .cta-section,
        .sitemap-section,
        .tags-hero-content,
        .tags-cloud-container,
        .tags-cloud-title,
        .tags-list,
        .tag-item,
        .tag-name,
        .tag-count,
        .recommend-title,
        .product-grid,
        .product-card,
        .product-info,
        .product-title,
        .product-desc,
        .product-meta,
        .product-category,
        .sitemap-title,
        .sitemap-grid,
        .sitemap-column,
        .sitemap-list,
        .sitemap-list li,
        .sitemap-list li a {
            user-select: text !important;
            -webkit-user-select: text !important;
            -moz-user-select: text !important;
            -ms-user-select: text !important;
            cursor: text;
cursor: pointer;
        }

        /* 总标签数 */
        .tags-total {
            text-align: center;
            margin-top: 30px;
            padding: 15px;
            color: #666;
            font-size: 14px;
            background: #f8f9fa;
            border-radius: 4px;
        }

        /* 网站地图样式 */
        .sitemap-section {
            padding: 60px 0;
            background: #f8f9fa;
        }
        .sitemap-title {
            text-align: center;
            margin-bottom: 40px;
        }
        .sitemap-title h2 {
            font-size: 32px;
            color: #333;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        .sitemap-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .sitemap-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        .sitemap-column {
            background: #fff;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }
        .sitemap-column h3 {
            font-size: 18px;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-bottom-color: #667eea;
        }
        .sitemap-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sitemap-list li {
            margin-bottom: 10px;
        }
        .sitemap-list li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 12px;
            background: #f8f9fa;
            border-radius: 4px;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
        }
        .sitemap-list li a:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            transform: translateX(5px);
        }
        .sitemap-list li a span {
            font-size: 12px;
            color: #999;
        }
        .sitemap-list li a:hover span {
            color: rgba(255,255,255,0.8);
        }

        /* 猜你喜欢板块 */
        .recommend-section {
            padding: 60px 0;
            background: #fff;
        }
        .recommend-title {
            text-align: center;
            margin-bottom: 40px;
        }
        .recommend-title h2 {
            font-size: 32px;
            color: #333;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        .recommend-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .recommend-section .product-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
            align-items: start;
        }
        .articles-left,
        .articles-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .product-card {
            background: #fff;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        .product-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }
        .product-info {
            padding: 0;
        }
        .product-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .product-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        .product-category {
            font-size: 13px;
            color: #999;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .tags-hero h1 {
                font-size: 32px;
            }
            .tags-hero p {
                font-size: 14px;
            }
            .tags-cloud-container {
                padding: 20px;
            }
            .tags-list {
                gap: 10px;
            }
            .tag-item {
                padding: 8px 16px;
                font-size: 13px;
            }
            .recommend-section .product-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 480px) {
            .tags-hero {
                padding: 60px 0;
            }
            .tags-hero h1 {
                font-size: 24px;
            }
            .tags-cloud-container {
                padding: 15px;
            }
            .tag-item {
                padding: 6px 12px;
                font-size: 12px;
            }
            .recommend-section .product-grid {
                grid-template-columns: 1fr;
            }
            .sitemap-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 768px) and (max-width: 992px) {
            .recommend-section .product-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .articles-left,
            .articles-right {
                width: 100%;
            }
        }
