:root {
    --primary-color: #004a99;    
    --secondary-color: #007bff;     
    --accent-color: #ff6b35;
    --light-bg: #f8fafc;            
    --card-bg: #ffffff;              
    --text-color: #2d3748;          
    --text-light: #718096;
    --soft-border: #e2e8f0;        
    --gradient-primary: linear-gradient(135deg, #004a99 0%, #007bff 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff9a3d 100%);
    --shadow-elevation: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); 
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;             
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tag-page-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 头部和面包屑 */
header {
    background: var(--gradient-primary);
    color: white;
    padding: 24px 0;
    position: relative;
    overflow: hidden;
}

.breadcrumb {
    background-color: var(--card-bg);
    padding: 16px 20px;
    font-size: 0.9em;
    border-bottom: 1px solid var(--soft-border);
    backdrop-filter: blur(10px);
}

/* 英雄区域 */
.tag-hero-section {
    padding: 60px 0 40px;
    margin-bottom: 40px;
    text-align: center;
}

.tag-title {
    font-size: 3em;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.tag-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.hero-section-p {
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0;
    color: var(--primary-color);
    display: block;
}

.editor-content-1 {
    font-size: 17px;
    color: var(--text-light);
    padding: 32px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    line-height: 1.8;
    border-left: 6px solid var(--accent-color);
    box-shadow: var(--shadow-elevation);
    margin: 30px auto 0;
    max-width: 1300px;
    position: relative;
    overflow: hidden;
}

.editor-content-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

/* 内容矩阵 */
.content-matrix {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 350px;
    margin: 60px 0;
}

@media (max-width: 1024px) {
    .content-matrix {
        grid-template-columns: 1fr;
    }
    li.tiannvv {
    width: 100%!important;
}
}

/* 通用编辑器模块样式 */
.editor-module {
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevation);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

.editor-module:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 123, 255, 0.2);
}

.editor-module h2 {
    font-size: 1.8em;
    color: var(--text-color);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--soft-border);
    position: relative;
    font-weight: 700;
}

.editor-module h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-accent);
}

.editor-module h3,
.editor-module h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.5em;
    position: relative;
}

.editor-module h3 {
    text-align: center;
    padding-bottom: 10px;
}

.editor-module h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 1.5px;
}

/* 列表样式 */
.editor-module ul {
    list-style: none;
    padding-left: 0;
}

.editor-module li {
    padding: 12px 0 12px 32px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    line-height: 1.6;
    transition: var(--transition);
}

.editor-module li:hover {
    background: rgba(0, 123, 255, 0.04);
    padding-left: 36px;
}

.editor-module li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* 表格样式 */
.info-column1 table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-elevation);
}

.info-column1 table th,
.info-column1 table td {
    padding: 15px;
    border: 1px solid var(--soft-border);
    text-align: left;
}

.info-column1 table th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
}

.info-column1 table tbody tr:nth-child(even) {
    background: rgba(0, 123, 255, 0.02);
}

/* 推荐产品 - 修复部分 */
.recommend-product {
    margin: 60px 0;
    padding: 40px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevation);
    position: relative;
    overflow: hidden;
}

.recommend-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.pro-title {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.pro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 1.5px;
}

.piclist {
    display: inline;
    
    list-style: none;
    padding: 0;
    margin: 0;
}

.piclist li {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.piclist li:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 123, 255, 0.3);
}

.piclist li a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.piclist .zoom-box {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: var(--light-bg);
}

.piclist .zoom-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.piclist li:hover .zoom-box img {
    transform: scale(1.05);
}

.piclist .pic-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 74, 153, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.piclist li:hover .pic-zoom {
    opacity: 1;
}

.litit {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    padding: 20px 20px 10px;
    margin: 0;
    line-height: 1.4;
    flex: 0 0 auto;
}

.liintro {
    font-size: 14px;
    color: var(--text-light);
    padding: 0 20px 20px;
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

/* 特色列表 */
.editor-module1 {
    margin: 30px 0;
}

.editor-module1 h3,
.editor-module1 h4 {
    text-align: center;
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-top: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.editor-module1 h3::after,
.editor-module1 h4::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    margin: 8px auto 0;
    border-radius: 2px;
}

.jinfeng-ul-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.jinfeng-ul-1 li {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-elevation);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.6);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.jinfeng-ul-1 li:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 53, 0.3);
}

.jinfeng-ul-1 li span {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.6;
}

/* FAQ 模块 */
.editor-module-faq {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevation);
    padding: 40px;
    margin: 40px 0;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.editor-module-faq h4 {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.editor-module-faq h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 1.5px;
}

.tainnv-ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    background: rgba(248, 250, 252, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.tainnv-ul li {
    padding: 0;
}

.tainnv-p {
    margin: 0;
    padding: 24px;
    line-height: 1.7;
}

.tainnv-ul li p:first-child {
    background: rgba(0, 123, 255, 0.05);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    font-weight: 600;
    color: var(--primary-color);
}

.tainnv-ul li p:last-child {
    background: var(--card-bg);
    color: var(--text-light);
}

.tainnv-ul li p:last-child strong {
    color: var(--accent-color);
}

/* 更多信息 */
.more-info {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 60px;
    box-shadow: var(--shadow-elevation);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.more-info h2 {
    font-size: 1.5em;
    color: var(--text-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.more-info p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 15px;
}

.more-info ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.more-info a {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(0, 123, 255, 0.08);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.more-info a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    border-color: transparent;
}

/* 链接样式 */
.tag-page-container a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.tag-page-container a:hover {
    color: var(--accent-color);
}

/* 产品预览部分 */
.product-preview-section {
    margin: 60px 0;
    padding-top: 40px;
    border-top: 1px solid var(--soft-border);
}

.product-preview-section h2 {
    font-size: 1.8em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .tag-page-container {
        padding: 20px 15px;
    }
    
    .tag-title {
        font-size: 2.2em;
    }
    
    .content-matrix {
        gap: 20px;
    }
    
    .editor-module,
    .recommend-product,
    .more-info,
    .editor-module-faq {
        padding: 24px;
    }
    
    .piclist {
        grid-template-columns: 1fr;
    }
    
    .jinfeng-ul-1 {
        grid-template-columns: 1fr;
    }
    
    .tainnv-p {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .tag-title {
        font-size: 1.8em;
    }
    
    .editor-content-1 {
        padding: 20px;
    }
    
    .more-info ul {
        flex-direction: column;
        align-items: stretch;
    }
    
    .more-info a {
        width: 100%;
        justify-content: center;
    }
    
    .pro-title {
        font-size: 1.5em;
    }
}