
/* --- 1. 全局变量与重置 --- */
:root {
    /* 高级配色方案 */
    --primary-dark: #0a192f;       /* 深蓝黑背景 */
    --primary-blue: #112240;       /* 卡片背景 */
    --accent-cyan: #64ffda;        /* 科技青（强调） */
    --accent-blue: #0077b6;        /* 品牌蓝 */
    --text-main: #e6f1ff;          /* 浅色主文字 */
    --text-secondary: #8892b0;     /* 次要文字 */
    --text-dark: #1a202c;          /* 深色文字（浅色模式用） */
    
    /* 浅色模式变量（默认使用） */
    --bg-body: #f5f7fa;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --border-light: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.08);
    
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 页面容器 - 适配原有的 .tag-page-container */
.tag-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 100px;
    background-color: var(--bg-body);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
}

/* 链接样式 */
.tag-page-container a {
    color: var(--accent-blue);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}
.tag-page-container a:hover {
    color: var(--primary-blue);
}
/* --- 2. 英雄区域 - 卡片悬浮样式 --- */
.tag-hero-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fbff 0%, #edf5ff 100%);
    position: relative;
    overflow: hidden;
}

/* 背景装饰 */
.tag-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(173, 216, 230, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 206, 235, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.tag-hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tag-hero-card {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 
        0 20px 60px rgba(70, 130, 180, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.tag-hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(70, 130, 180, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* 装饰性圆圈 */
.tag-hero-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}


.inner-banner .tit {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 1px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 添加动画效果 */
.inner-banner .tit {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(135, 206, 235, 0.1);
}

.decor-circle-1 {
    width: 120px;
    height: 120px;
    top: -60px;
    right: -60px;
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.05), rgba(135, 206, 235, 0.02));
}

.decor-circle-2 {
    width: 80px;
    height: 80px;
    bottom: 20px;
    left: -40px;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.03), rgba(173, 216, 230, 0.01));
}

.decor-circle-3 {
    width: 60px;
    height: 60px;
    bottom: -30px;
    right: 20%;
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.04), transparent);
}

/* 内容区域 */
.tag-hero-content {
    position: relative;
    z-index: 3;
}

.tag-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.title-accent-left,
.title-accent-right {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-blue),
        var(--accent-cyan),
        transparent);
    border-radius: 2px;
    opacity: 0.8;
}

.title-accent-left {
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-blue));
}

.title-accent-right {
    background: linear-gradient(90deg, 
        var(--accent-cyan),
        transparent);
}

/* 标题样式 - 浅蓝色渐变 */
.tag-title {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        #5dade2 0%,
        #85c1e9 25%,
        #aed6f1 50%,
        #85c1e9 75%,
        #5dade2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    text-shadow: 0 2px 4px rgba(91, 173, 226, 0.1);
    letter-spacing: -0.5px;
}

.tag-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-blue),
        var(--accent-cyan),
        transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 25px 0 35px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    opacity: 0.5;
}

.editor-content-1 {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.7;
    color: #495057;
    font-size: 1.1rem;
}

/* 底部装饰线条 */
.hero-bottom-line {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.hero-bottom-line span {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--accent-blue), 
        var(--accent-cyan));
    border-radius: 2px;
    opacity: 0.3;
}

.hero-bottom-line span:nth-child(2) {
    width: 60px;
    opacity: 0.5;
}

.hero-bottom-line span:nth-child(3) {
    width: 40px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .tag-hero-card {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .tag-title {
        font-size: 2.5rem;
    }
    
    .tag-title-wrapper {
        gap: 10px;
    }
    
    .title-accent-left,
    .title-accent-right {
        width: 30px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .tag-hero-section {
        padding: 20px 10px;
    }
    
    .tag-title {
        font-size: 2rem;
    }
    
    .tag-title-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .title-accent-left,
    .title-accent-right {
        width: 80px;
        height: 2px;
    }
}

 /*--- 2. 英雄区域 --- 
.tag-hero-section {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.tag-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
}*/






.tag-title {
    font-size: clamp(2.5rem, 5vw, 4rem); /* 响应式字体 */
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-section-p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
}

.editor-content-1 {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
}


/* 推荐产品区域 */
.recommended-products-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.recommended-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* 标题区域 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    background: rgba(91, 173, 226, 0.1);
    padding: 10px 24px;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue));
}

.section-tag::before {
    left: -60px;
}

.section-tag::after {
    right: -60px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
}

.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    margin: 0 auto;
    border-radius: 2px;
}

/* 产品网格布局 - 固定2行3列 */
.products-grid.fixed-grid {
    display: grid;
    /* 固定3列 */
    grid-template-columns: repeat(3, 1fr);
    /* 固定2行，根据内容自动调整高度 */
    grid-template-rows: repeat(2, auto);
    gap: 40px;
    margin-bottom: 60px;
}

/* 产品卡片 */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 2px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    border: 1px solid rgba(91, 173, 226, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(91, 173, 226, 0.15),
        0 5px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(91, 173, 226, 0.2);
}

/* 产品图片 */
.product-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(91, 173, 226, 0) 0%,
        rgba(91, 173, 226, 0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.view-btn {
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.product-card:hover .view-btn {
    transform: translateY(0);
}

/* 产品内容 */
.product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info {
    margin-bottom: 20px;
}

.product-title {
    margin: 0 0 12px 0;
}

.title-link {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.title-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    transition: width 0.3s ease;
}

.title-link:hover {
    color: var(--accent-blue);
}

.title-link:hover::after {
    width: 100%;
}

.product-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 产品操作区域 */
.product-action {
    display: flex;
    justify-content: flex-end;
}

.action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(91, 173, 226, 0.3);
}

.action-link:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(91, 173, 226, 0.4);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.action-link:hover .arrow-icon {
    transform: translateX(3px);
}

/* 查看全部按钮 */
.view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(91, 173, 226, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(91, 173, 226, 0.4);
    gap: 15px;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.view-all-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .products-grid.fixed-grid {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    /* 平板端改为2列 */
    .products-grid.fixed-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto); /* 3行 */
    }
}

@media (max-width: 768px) {
    .recommended-products-section {
        padding: 60px 15px;
    }
    
    .products-grid.fixed-grid {
        gap: 25px;
    }
    
    .section-tag::before,
    .section-tag::after {
        display: none;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .title-link {
        font-size: 18px;
    }
    
    .product-description {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    /* 手机端改为1列 */
    .products-grid.fixed-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto); /* 6行 */
        gap: 20px;
    }
    
    .product-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .recommended-products-section {
        padding: 40px 10px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-tag {
        font-size: 16px;
        padding: 8px 20px;
    }
    
    .view-all-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}





/* 推荐产品区域 */
.recommended-products-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.recommended-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* 标题区域 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    background: rgba(91, 173, 226, 0.1);
    padding: 10px 24px;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue));
}

.section-tag::before {
    left: -60px;
}

.section-tag::after {
    right: -60px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
}

.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    margin: 0 auto;
    border-radius: 2px;
}

/* 产品网格布局 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* 产品卡片 */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 2px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    border: 1px solid rgba(91, 173, 226, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(91, 173, 226, 0.15),
        0 5px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(91, 173, 226, 0.2);
}

/* 产品图片 */
.product-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(91, 173, 226, 0) 0%,
        rgba(91, 173, 226, 0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.view-btn {
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.product-card:hover .view-btn {
    transform: translateY(0);
}

/* 产品内容 */
.product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info {
    margin-bottom: 20px;
}

.product-title {
    margin: 0 0 12px 0;
}

.title-link {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.title-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    transition: width 0.3s ease;
}

.title-link:hover {
    color: var(--accent-blue);
}

.title-link:hover::after {
    width: 100%;
}

.product-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 产品操作区域 */
.product-action {
    display: flex;
    justify-content: flex-end;
}

.action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(91, 173, 226, 0.3);
}

.action-link:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(91, 173, 226, 0.4);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.action-link:hover .arrow-icon {
    transform: translateX(3px);
}

/* 查看全部按钮 */
.view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(91, 173, 226, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(91, 173, 226, 0.4);
    gap: 15px;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.view-all-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .recommended-products-section {
        padding: 60px 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .section-tag::before,
    .section-tag::after {
        display: none;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .title-link {
        font-size: 18px;
    }
    
    .product-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .recommended-products-section {
        padding: 40px 10px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-tag {
        font-size: 16px;
        padding: 8px 20px;
    }
    
    .view-all-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}


/* --- 3. 产品推荐区域 --- */
.prodet-4 {
    margin-bottom: 100px;
    padding: 0 40px;
}

.baseTag {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 30px;
    padding-left: 140px; /* 保持原有 padding 逻辑 */
}

/* 产品卡片重新设计 */
.baseProBox {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.baseProBox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.baseProBox:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.baseProBox:hover::before {
    transform: scaleX(1);
}

.img-box {
    width: 100%;
    height: 240px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f2f5;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.baseProBox:hover .img-box img {
    transform: scale(1.05);
}

.hover-text a {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
    transition: color 0.3s;
}
.hover-text a:hover {
    color: var(--accent-blue);
}

.size {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
    line-height: 1.5;
}

.flex-s a img {
    transition: transform 0.3s;
}
.flex-s a:hover img {
    transform: translateX(5px);
}

/* 内容矩阵 - 垂直布局 */
.content-matrix.vertical-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 内容块 */
.content-block {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(91, 173, 226, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(91, 173, 226, 0.12),
        0 5px 20px rgba(0, 0, 0, 0.04);
    border-color: rgba(91, 173, 226, 0.2);
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 20px 20px 0 0;
}

/* 内容块标题区域 */
.content-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.content-header .section-tag {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    background: rgba(91, 173, 226, 0.1);
    padding: 10px 24px;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
}

.content-header .section-tag::before,
.content-header .section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue));
}

.content-header .section-tag::before {
    left: -60px;
}

.content-header .section-tag::after {
    right: -60px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
}

.content-header .section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    margin: 0 auto;
    border-radius: 2px;
}

/* 内容主体样式 */
.content-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* 通用编辑器模块样式 */
.editor-module,
.editor-module1,
.editor-module-service {
    padding: 20px;
    border-radius: 12px;
    background: rgba(248, 250, 252, 0.5);
}

/* 标题样式 */
.editor-module h1,
.editor-module1 h1,
.editor-module-service h1,
.editor-module h2,
.editor-module1 h2,
.editor-module-service h2,
.editor-module h3,
.editor-module1 h3,
.editor-module-service h3 {
    color: var(--accent-blue);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(91, 173, 226, 0.2);
    position: relative;
}

.editor-module h1::after,
.editor-module1 h1::after,
.editor-module-service h1::after,
.editor-module h2::after,
.editor-module1 h2::after,
.editor-module-service h2::after,
.editor-module h3::after,
.editor-module1 h3::after,
.editor-module-service h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
}

/* 段落样式 */
.editor-module p,
.editor-module1 p,
.editor-module-service p {
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 3px solid rgba(91, 173, 226, 0.1);
    padding-left: 15px;
}

.editor-module p:last-child,
.editor-module1 p:last-child,
.editor-module-service p:last-child {
    margin-bottom: 0;
}

/* 列表样式 */
.editor-module ul,
.editor-module1 ul,
.editor-module-service ul,
.editor-module ol,
.editor-module1 ol,
.editor-module-service ol {
    margin: 20px 0;
    padding-left: 25px;
}

.editor-module li,
.editor-module1 li,
.editor-module-service li {
    margin-bottom: 10px;
    position: relative;
}

.editor-module li::before,
.editor-module1 li::before,
.editor-module-service li::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--accent-cyan);
    font-weight: bold;
}

/* 链接样式 */
.editor-module a,
.editor-module1 a,
.editor-module-service a {
    color: var(--accent-blue);
    text-decoration: none;
    border-bottom: 1px dashed rgba(91, 173, 226, 0.3);
    transition: all 0.3s ease;
}

.editor-module a:hover,
.editor-module1 a:hover,
.editor-module-service a:hover {
    color: var(--accent-cyan);
    border-bottom: 1px solid var(--accent-cyan);
}

/* 表格样式 */
.editor-module table,
.editor-module1 table,
.editor-module-service table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.editor-module th,
.editor-module1 th,
.editor-module-service th {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: white;
    font-weight: 500;
    padding: 15px;
    text-align: left;
}

.editor-module td,
.editor-module1 td,
.editor-module-service td {
    padding: 15px;
    border-bottom: 1px solid rgba(91, 173, 226, 0.1);
}

.editor-module tr:nth-child(even),
.editor-module1 tr:nth-child(even),
.editor-module-service tr:nth-child(even) {
    background: rgba(91, 173, 226, 0.05);
}

.editor-module tr:hover,
.editor-module1 tr:hover,
.editor-module-service tr:hover {
    background: rgba(91, 173, 226, 0.1);
}

/* FAQ样式 */
.editor-module-faq {
    padding: 20px;
}

.editor-module-faq ul {
    list-style: none;
    padding: 0;
}

.editor-module-faq li {
    margin-bottom: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(91, 173, 226, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.editor-module-faq li.question {
    background: rgba(91, 173, 226, 0.08);
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.editor-module-faq li.question::after {
    content: '+';
    font-size: 20px;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.editor-module-faq li.question.expanded::after {
    content: '−';
    transform: rotate(180deg);
}

.editor-module-faq li.answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    border: none;
    background: rgba(248, 250, 252, 0.8);
    transition: all 0.5s ease;
}

.editor-module-faq li.answer.active {
    max-height: 500px;
    padding: 20px;
    margin-top: -10px;
    border-top: 1px solid rgba(91, 173, 226, 0.1);
}

.editor-module-faq li.answer p {
    margin: 10px 0;
}

.editor-module-faq li:hover {
    border-color: rgba(91, 173, 226, 0.3);
    box-shadow: 0 5px 15px rgba(91, 173, 226, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-matrix.vertical-layout {
        padding: 40px 15px;
    }
    
    .content-block {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .content-header .section-tag::before,
    .content-header .section-tag::after {
        display: none;
    }
    
    .content-body {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .editor-module,
    .editor-module1,
    .editor-module-service {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .content-matrix.vertical-layout {
        padding: 30px 10px;
    }
    
    .content-block {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 15px;
    }
    
    .content-header .section-tag {
        font-size: 16px;
        padding: 8px 20px;
        letter-spacing: 1px;
    }
    
    .editor-module-faq li {
        padding: 15px;
    }
    
    .editor-module-faq li.answer {
        padding: 0 15px;
    }
    
    .editor-module-faq li.answer.active {
        padding: 15px;
    }
}

/* 动画效果 */
.content-block {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.content-block:nth-child(1) { animation-delay: 0.1s; }
.content-block:nth-child(2) { animation-delay: 0.2s; }
.content-block:nth-child(3) { animation-delay: 0.3s; }
.content-block:nth-child(4) { animation-delay: 0.4s; }
.content-block:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- 4. 内容矩阵 --- */
/*.content-matrix {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 100px;
}*/

.main-content-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-content-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* --- 5. 编辑器模块 (核心容器) --- */
.editor-module,
.editor-module1,
.editor-module-service {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
}

.editor-module:hover,
.editor-module1:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

/* 内部标题样式 */
.editor-module h2,
.editor-module1 h2,
.editor-module h3,
.editor-module1 h3 {
    color: var(--primary-blue);
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.editor-module h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-blue);
    margin-top: 15px;
    border-radius: 2px;
}

/* 表格样式 */
.info-column1 table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--border-light);
}

.info-column1 table th,
.info-column1 table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    text-align: left;
}

.info-column1 table th {
    background: var(--primary-blue);
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.info-column1 table tbody tr:hover {
    background-color: #f8fafd;
}

/* --- 6. FAQ 模块 (手风琴) --- */
.editor-module-faq {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    overflow: hidden; /* 防止圆角溢出 */
}

.editor-module-faq ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.editor-module-faq li {
    border-bottom: 1px solid var(--border-light);
}

.editor-module-faq li:first-child {
    padding: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    background: #fcfdfe;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.editor-module-faq li:first-child:hover {
    background: #f0f4f8;
}

/* 加号减号样式 */
.editor-module-faq li:first-child::after {
    content: '+';
    font-size: 24px;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.editor-module-faq li:first-child.expanded::after {
    content: '-';
    transform: rotate(180deg);
}

.editor-module-faq li:last-child {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 20px;
    background: #fff;
    color: var(--text-secondary);
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    line-height: 1.6;
}

.editor-module-faq li:last-child.active {
    padding: 20px;
    max-height: 500px;
    opacity: 1;
    border-bottom: none;
}


/* Material Selection Guide 部分 */
.material-selection-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.material-selection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
}

.material-selection-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* 标题区域 - 与前面部分一致 */
.material-selection-section .content-header {
    text-align: center;
    margin-bottom: 50px;
}

.material-selection-section .section-tag {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    background: rgba(91, 173, 226, 0.1);
    padding: 10px 24px;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
}

.material-selection-section .section-tag::before,
.material-selection-section .section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue));
}

.material-selection-section .section-tag::before {
    left: -60px;
}

.material-selection-section .section-tag::after {
    right: -60px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
}

.material-selection-section .section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    margin: 0 auto;
    border-radius: 2px;
}

/* 内容块 */
.material-selection-section .content-block {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(91, 173, 226, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.material-selection-section .content-block:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(91, 173, 226, 0.12),
        0 5px 20px rgba(0, 0, 0, 0.04);
    border-color: rgba(91, 173, 226, 0.2);
}

.material-selection-section .content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 20px 20px 0 0;
}

/* 内容主体样式 */
.more-info-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* 标题样式 */
.more-info-content h1,
.more-info-content h2,
.more-info-content h3,
.more-info-content h4 {
    color: var(--accent-blue);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(91, 173, 226, 0.2);
    position: relative;
}

.more-info-content h1::after,
.more-info-content h2::after,
.more-info-content h3::after,
.more-info-content h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
}

/* 段落样式 */
.more-info-content p {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid rgba(91, 173, 226, 0.1);
}

.more-info-content p:last-child {
    margin-bottom: 0;
}

/* 列表样式 */
.more-info-content ul,
.more-info-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.more-info-content li {
    margin-bottom: 10px;
    position: relative;
}

.more-info-content li::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--accent-cyan);
    font-weight: bold;
}

/* 链接样式 */
.more-info-content a {
    color: var(--accent-blue);
    text-decoration: none;
    border-bottom: 1px dashed rgba(91, 173, 226, 0.3);
    transition: all 0.3s ease;
}

.more-info-content a:hover {
    color: var(--accent-cyan);
    border-bottom: 1px solid var(--accent-cyan);
}

/* 表格样式 */
.more-info-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.more-info-content th {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: white;
    font-weight: 500;
    padding: 15px;
    text-align: left;
}

.more-info-content td {
    padding: 15px;
    border-bottom: 1px solid rgba(91, 173, 226, 0.1);
}

.more-info-content tr:nth-child(even) {
    background: rgba(91, 173, 226, 0.05);
}

.more-info-content tr:hover {
    background: rgba(91, 173, 226, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .material-selection-section {
        padding: 60px 15px;
    }
    
    .material-selection-section .content-block {
        padding: 30px;
    }
    
    .material-selection-section .section-tag::before,
    .material-selection-section .section-tag::after {
        display: none;
    }
    
    .more-info-content {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .material-selection-section {
        padding: 40px 10px;
    }
    
    .material-selection-section .content-block {
        padding: 20px;
        border-radius: 15px;
    }
    
    .material-selection-section .section-tag {
        font-size: 16px;
        padding: 8px 20px;
        letter-spacing: 1px;
    }
}

/* 动画效果 */
.material-selection-section .content-block {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 7. SEO About --- */
.Auxil-about {
    background: #fff;
    padding: 80px 40px;
    margin-bottom: 80px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
}

.Auxil-about .title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 50px;
    font-weight: 800;
}

.Auxil-about .img {
    height: 300px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.Auxil-about .img:hover {
    transform: scale(1.02);
}

.Auxil-about .h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.Auxil-about .text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* --- 8. More Info (Det6) --- */
.more-info {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    text-align: center;
}

.more-info h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.more-info a {
    display: inline-block;
    margin: 5px;
    padding: 8px 16px;
    background: #f0f4f8;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 500;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.more-info a:hover {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
    transform: translateY(-2px);
}

/* 推荐链接 - 创新设计 */
.recommended-links-modern {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fbff 0%, #edf3ff 100%);
    position: relative;
    overflow: hidden;
}

/* 背景装饰 */
.recommended-links-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 标题区域 */
.links-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.links-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.title-decor-left,
.title-decor-right {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    border-radius: 2px;
    opacity: 0.6;
}

.linksys {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.linksys::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.links-subtitle {
    font-size: 14px;
    color: #6c757d;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 25px;
}

/* 链接网格 */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

/* 链接卡片 */
.link-card {
    display: block;
    background: white;
    border-radius: 16px;
    padding: 25px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.link-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(102, 126, 234, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(102, 126, 234, 0.3);
}

/* 卡片装饰 */
.card-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
}

.decor-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0.6;
}

.dot-1 {
    top: 0;
    right: 0;
    animation: pulse 2s ease infinite;
}

.dot-2 {
    bottom: 0;
    left: 0;
    animation: pulse 2s ease infinite 0.5s;
}

.decor-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.9; }
}

/* 卡片内容 */
.card-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #667eea22, #764ba222);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.link-card:hover .card-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: rotate(10deg);
}

.product-icon {
    color: #667eea;
    transition: all 0.3s ease;
}

.link-card:hover .product-icon {
    color: white;
    transform: scale(1.1);
}

/* 文本区域 */
.card-text {
    flex-grow: 1;
    min-width: 0;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.link-card:hover .product-title {
    color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.meta-tag {
    background: linear-gradient(135deg, #667eea22, #764ba222);
    color: #667eea;
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #667eea;
    opacity: 0.5;
}

.meta-info {
    color: #6c757d;
    transition: color 0.3s ease;
}

.link-card:hover .meta-info {
    color: #667eea;
}

/* 卡片箭头 */
.card-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.link-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.arrow-right {
    color: #667eea;
}

.link-card:hover .arrow-right {
    animation: arrowSlide 0.6s ease;
}

@keyframes arrowSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* 3D效果层 */
.card-3d-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%,
        rgba(102, 126, 234, 0.03) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.link-card:hover .card-3d-layer {
    opacity: 1;
}

/* 悬停效果层 */
.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hover-ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
}

.link-card:hover .hover-ripple:nth-child(1) {
    animation: ripple 1.5s ease-out infinite;
    top: -50px;
    left: -50px;
}

.link-card:hover .hover-ripple:nth-child(2) {
    animation: ripple 1.5s ease-out infinite 0.5s;
    bottom: -50px;
    right: -50px;
}

@keyframes ripple {
    0% { transform: scale(0.5); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

/* 底部区域 */
.links-footer {
    text-align: center;
    margin-top: 40px;
}

.footer-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.footer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #667eea;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.footer-dot:nth-child(2) {
    opacity: 0.6;
    transform: scale(1.2);
}

.footer-dot:nth-child(3) {
    opacity: 0.9;
    transform: scale(1.4);
}

.footer-text {
    font-size: 14px;
    color: #6c757d;
    letter-spacing: 1px;
}

.footer-text .count {
    font-weight: 600;
    color: #667eea;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 4px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .link-card {
        padding: 20px;
    }
    
    .card-content {
        gap: 15px;
    }
    
    .card-icon {
        width: 48px;
        height: 48px;
    }
    
    .product-title {
        font-size: 16px;
    }
    
    .linksys {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .recommended-links-modern {
        padding: 40px 15px;
    }
    
    .links-title-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .title-decor-left,
    .title-decor-right {
        width: 80px;
    }
    
    .links-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
}

/* 暗色模式支持 */
@media (prefers-color-scheme: dark) {
    .recommended-links-modern {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }
    
    .link-card {
        background: #222831;
        border-color: rgba(102, 126, 234, 0.2);
    }
    
    .product-title {
        color: #e6e6e6;
    }
    
    .product-meta .meta-info {
        color: #b0b0b0;
    }
    
    .footer-text {
        color: #b0b0b0;
    }
}

 /*--- 9. 推荐链接 --- 
.recommended-links-modern {
    text-align: center;
    padding: 40px 0;
    background: #fff;
}

.linksys {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.recommended-links-modern a {
    display: inline-block;
    margin: 5px 15px;
    padding: 10px 20px;
    color: var(--primary-blue);
    font-weight: 500;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    transition: all 0.3s;
}

.recommended-links-modern a:hover {
    background: var(--primary-blue);
    color: #fff;
}*/

/* --- 10. 动画类 --- */
.wow {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.wow.animated {
    opacity: 1;
    transform: translateY(0);
}

/* --- 11. 响应式 --- */
@media (max-width: 991px) {
    .content-matrix {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tag-page-container {
        padding: 40px 20px;
    }
    
    .prodet-4 {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .tag-title {
        font-size: 2rem;
    }
    
    .editor-module,
    .editor-module1,
    .editor-module-service {
        padding: 25px;
    }
}
