/* 产品分类富文本描述样式 */

/* 富文本描述容器 */
.taxonomy-richtext-description {
    margin: 20px auto;
    padding: 15px;
    max-width: 1400px;
    text-align: center;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

/* 富文本中的标题样式 */
.taxonomy-richtext-description h1,
.taxonomy-richtext-description h2,
.taxonomy-richtext-description h3,
.taxonomy-richtext-description h4,
.taxonomy-richtext-description h5,
.taxonomy-richtext-description h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #222;
    font-weight: 600;
}

.taxonomy-richtext-description h1 {
    font-size: 24px;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.taxonomy-richtext-description h2 {
    font-size: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.taxonomy-richtext-description h3 {
    font-size: 18px;
}

/* 富文本中的段落样式 */
.taxonomy-richtext-description p {
    margin-bottom: 15px;
}

/* 富文本中的列表样式 */
.taxonomy-richtext-description ul,
.taxonomy-richtext-description ol {
    margin: 15px 0;
    padding-left: 30px;
}

.taxonomy-richtext-description ul li {
    margin-bottom: 8px;
    list-style-type: disc;
}

.taxonomy-richtext-description ol li {
    margin-bottom: 8px;
    list-style-type: decimal;
}

/* 富文本中的链接样式 */
.taxonomy-richtext-description a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s;
}

.taxonomy-richtext-description a:hover {
    color: #004080;
    text-decoration: underline;
}

/* 富文本中的图片样式 */
.taxonomy-richtext-description img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 富文本中的表格样式 */
.taxonomy-richtext-description table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    overflow-x: auto;
}

.taxonomy-richtext-description table,
.taxonomy-richtext-description th,
.taxonomy-richtext-description td {
    border: 1px solid #ddd;
}

.taxonomy-richtext-description th,
.taxonomy-richtext-description td {
    padding: 12px;
    text-align: left;
}

.taxonomy-richtext-description th {
    background-color: #f2f2f2;
    font-weight: 600;
}

.taxonomy-richtext-description tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* 富文本中的引用样式 */
.taxonomy-richtext-description blockquote {
    margin: 15px 0;
    padding: 15px 20px;
    border-left: 4px solid #0066cc;
    background-color: #f5f5f5;
    font-style: italic;
}

/* 富文本中的代码样式 */
.taxonomy-richtext-description code {
    padding: 2px 4px;
    background-color: #f1f1f1;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
}

.taxonomy-richtext-description pre {
    padding: 15px;
    background-color: #f1f1f1;
    border-radius: 4px;
    overflow-x: auto;
    margin: 15px 0;
}

.taxonomy-richtext-description pre code {
    background-color: transparent;
    padding: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .taxonomy-richtext-description {
        padding: 12px;
        font-size: 15px;
    }
    
    .taxonomy-richtext-description h1 {
        font-size: 22px;
    }
    
    .taxonomy-richtext-description h2 {
        font-size: 18px;
    }
    
    .taxonomy-richtext-description h3 {
        font-size: 16px;
    }
    
    .taxonomy-richtext-description table {
        font-size: 14px;
    }
    
    .taxonomy-richtext-description th,
    .taxonomy-richtext-description td {
        padding: 8px;
    }
}

/* 打印样式 */
@media print {
    .taxonomy-richtext-description {
        background-color: white;
        border: none;
    }
    
    .taxonomy-richtext-description a {
        color: black;
        text-decoration: none;
    }
}