/* 基础样式优化 */
:root {
    --primary-color: #004a99;
    --secondary-color: #007bff;
    --accent-color: #00a8ff; /* 新增强调色 */
    --light-bg: #f8fafc;
    --card-bg: white;
    --text-color: #2d3748;
    --text-light: #718096;
    --soft-border: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #004a99 0%, #007bff 100%);
    --gradient-secondary: linear-gradient(135deg, #007bff 0%, #00a8ff 100%);
    --shadow-elevation: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 头部优化 */
header {
    background: var(--gradient-primary);
    color: white;
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::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 1200 600" opacity="0.1"><path d="M0,0 L1200,0 L1200,600 Q600,400 0,600 Z" fill="white"/></svg>') no-repeat center bottom;
    background-size: cover;
}

.header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.breadcrumb {
    background: linear-gradient(to right, #f8fafc, #edf2f7);
    padding: 16px 30px;
    font-size: 0.95em;
    border-bottom: 1px solid var(--soft-border);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--text-light);
    margin: 0 10px;
}

/* 页面容器优化 */
.tag-page-container {
    max-width: 1430px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

.tag-hero-section {
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.tag-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    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-secondary);
    border-radius: 2px;
}

.tag-hero-section .hero-section-p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* 主要内容区域优化 */
.content-matrix {
    display: grid;
    gap: 50px;
    grid-template-columns: 2fr 1fr;
    margin-top: 40px;
}

.editor-content-1 {
    font-size: 18px;
    color: var(--text-color);
    padding: 30px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius);
    line-height: 1.9;
    border-left: 6px solid var(--secondary-color);
    box-shadow: var(--shadow-elevation);
    margin-bottom: 30px;
    text-align: left;
}

.editor-content-1 strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 编辑器模块优化 */
.editor-module {
    background: var(--card-bg);
    padding: 35px;
    border-radius: var(--radius);
    margin-bottom: 40px;
    box-shadow: var(--shadow-elevation);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.editor-module:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.editor-module h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 30px;
    padding-bottom: 20px;
    position: relative;
    font-weight: 700;
}

.editor-module h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.editor-module h3, .editor-module h4 {
    color: var(--primary-color);
    margin: 30px 0 20px;
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.editor-module h3::before, .editor-module h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 24px;
    background: var(--gradient-secondary);
    border-radius: 4px;
}

/* 列表样式优化 */
.editor-module ul {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    margin-bottom: 10px;
}

.editor-module li {
    padding: 15px 0 15px 40px;
    border-bottom: 1px solid var(--soft-border);
    position: relative;
    transition: var(--transition);
}

.editor-module li:hover {
    background: rgba(0, 123, 255, 0.03);
    padding-left: 45px;
}

.editor-module li::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 22px;
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: var(--transition);
}

.editor-module li:hover::before {
    transform: scale(1);
}

/* 表格样式优化 */
.info-column1 table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 25px 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-size: 18px;
    overflow: auto;
}

.info-column1 table th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.info-column1 table th,
.info-column1 table td {
    padding: 18px 20px;
    border: 1px solid var(--soft-border);
    text-align: left;
}

.info-column1 table tbody tr {
    transition: var(--transition);
}

.info-column1 table tbody tr:hover {
    background: rgba(0, 123, 255, 0.05);
}

/* 特色模块优化 */
.editor-module1 {
    margin: 50px 0;
    position: relative;
}

.editor-module1 h3, .editor-module1 h4 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

.editor-module1 h3::after, .editor-module1 h4::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.jinfeng-ul-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.jinfeng-ul-1 li {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    padding: 30px 25px;
    display: flex;
    align-items: center;
    text-align: left;
    box-shadow: var(--shadow-elevation);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.jinfeng-ul-1 li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.jinfeng-ul-1 li:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.jinfeng-ul-1 li::after {
    content: '✦';
    font-size: 2.5rem;
    margin-right: 20px;
    color: var(--secondary-color);
    opacity: 0.8;
    flex-shrink: 0;
}

.jinfeng-ul-1 li span {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.6;
}

/* 产品预览优化 */
.product-preview-section {
    padding: 60px 0;
    position: relative;
}

.product-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--soft-border), transparent);
}

.product-preview-section h2 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.product-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.preview-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow-elevation);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.preview-card:hover::before {
    transform: scaleX(1);
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.preview-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    transition: var(--transition);
}

.preview-card:hover img {
    transform: scale(1.03);
}

.preview-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 15px 0 10px;
    font-weight: 700;
    line-height: 1.5;
}

.preview-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.preview-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient-secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.preview-card a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.preview-card a:hover::before {
    opacity: 1;
}

/* FAQ 模块优化 */
.editor-module-faq {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px;
    border-radius: var(--radius);
    margin: 50px auto;
    box-shadow: var(--shadow-elevation);
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 900px;
}

.editor-module-faq h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 35px;
    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-secondary);
    border-radius: 2px;
}

.editor-module-faq ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid var(--soft-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.editor-module-faq li {
    border-bottom: 1px solid var(--soft-border);
    transition: var(--transition);
}

.editor-module-faq li:last-child {
    border-bottom: none;
}

.editor-module-faq li:first-child {
    padding: 25px;
    background: linear-gradient(to right, #f8fafc, #edf2f7);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.editor-module-faq li:first-child::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.editor-module-faq li:first-child.expanded::after {
    transform: rotate(180deg);
}

.editor-module-faq li:last-child {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: white;
    color: var(--text-color);
    line-height: 1.8;
}

.editor-module-faq li:last-child.active {
    max-height: 1000px;
    padding: 25px;
}

/* 更多信息优化 */
.more-info {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-elevation);
    padding: 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.more-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.more-info h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
}

.more-info p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.more-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.more-info li {
    margin: 0;
}

.more-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid var(--soft-border);
}

.more-info a:hover {
    background: var(--gradient-secondary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

/* 链接样式优化 */
.tag-page-container a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    color: inherit;
    margin-left: 10px;
    margin-bottom: 10px;
}

.tag-page-container a:hover {
    color: var(--primary-color);
}

/* 响应式优化 */
@media (max-width: 1200px) {
    .tag-page-container {
        padding: 40px 20px 60px;
    }
    
    .content-matrix {
        gap: 40px;
    }
}




@media (max-width: 900px) {
    .content-matrix {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tag-title {
        font-size: 2.8rem;
    }
    
    .tag-hero-section {
        padding: 40px 0 30px;
    }
    
    .editor-module,
    .editor-module-faq,
    .more-info {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .tag-title {
        font-size: 2.2rem;
    }
    
    .tag-hero-section .hero-section-p {
        font-size: 1.1rem;
    }
    
    .editor-module h2 {
        font-size: 1.8rem;
    }
    
    .editor-module h3,
    .editor-module h4 {
        font-size: 1.4rem;
    }
    
    .product-preview-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .jinfeng-ul-1 {
        grid-template-columns: 1fr;
    }
    
    .preview-card {
        padding: 20px;
    }
    
    header {
        padding: 40px 20px;
    }
    
    .header-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .tag-title {
        font-size: 1.8rem;
    }
    
    .editor-content-1,
    .editor-module,
    .editor-module-faq {
        padding: 20px 15px;
    }
    
    .more-info ul {
        flex-direction: column;
    }
    
    .more-info a {
        width: 100%;
        justify-content: center;
    }
    
    .breadcrumb {
        font-size: 0.85em;
        padding: 12px 15px;
    }
}

/* 动画增强 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.editor-module,
.preview-card,
.jinfeng-ul-1 li {
    animation: fadeInUp 0.6s ease-out forwards;
}

.editor-module:nth-child(2) { animation-delay: 0.1s; }
.editor-module:nth-child(3) { animation-delay: 0.2s; }
.jinfeng-ul-1 li:nth-child(1) { animation-delay: 0.1s; }
.jinfeng-ul-1 li:nth-child(2) { animation-delay: 0.2s; }
.jinfeng-ul-1 li:nth-child(3) { animation-delay: 0.3s; }
.preview-card:nth-child(1) { animation-delay: 0.1s; }
.preview-card:nth-child(2) { animation-delay: 0.2s; }
.preview-card:nth-child(3) { animation-delay: 0.3s; }

li.bintai-li {
    font-size: 18px;
    margin-bottom: 10px;
    list-style: disc;
    list-style-position: inside;
}

p.bintai-p{
    font-size: 18px;
    margin-bottom: 10px;

}



@media (max-width: 900px) {
    .content-matrix{

       display: inline;
          gap: 20px;

    }
       
    

}