
/* 仅本篇10H陶瓷涂层博客内部生效，全局彻底隔离 */
.ceramic-10h-blog * {
    box-sizing: border-box;
}
.ceramic-10h-blog {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    max-width: 1400px;
    margin: 0 auto;
    color: #333;
}
.ceramic-10h-blog .container {
    padding: 20px 40px;
}
/* 标题样式 */
.ceramic-10h-blog h1 {
    font-size: 3em;
    color: #2c3e50;
    margin: 40px 0 30px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.5px;
}
.ceramic-10h-blog h2 {
    font-size: 2.2em;
    color: #34495e;
    margin: 60px 0 25px;
    font-weight: 600;
    border-left: 6px solid #3498db;
    padding-left: 15px;
}
.ceramic-10h-blog h3 {
    font-size: 1.6em;
    color: #2980b9;
    margin: 40px 0 15px;
    font-weight: 600;
}
/* 首字母特写 */
.ceramic-10h-blog .first-letter::first-letter {
    font-size: 3.5em;
    float: left;
    color: #3498db;
    font-weight: 700;
    line-height: 0.8;
    margin-right: 8px;
}
/* 图文排版 */
.ceramic-10h-blog .img-text-wrap {
    display: flex;
    margin: 40px 0;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}
.ceramic-10h-blog .img-left {
    flex-direction: row;
}
.ceramic-10h-blog .img-right {
    flex-direction: row-reverse;
}
.ceramic-10h-blog .img-box {
    flex: 1;
    min-width: 300px;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* 调整图片容器高度 */
.ceramic-10h-blog .img-box.standard {
    height: 300px;
}
.ceramic-10h-blog .img-box.tall {
    height: 450px;
}
.ceramic-10h-blog .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ceramic-10h-blog .text-box {
    flex: 1.2;
    min-width: 300px;
}
/* 图片说明 */
.ceramic-10h-blog .img-caption {
    margin: 10px 0 0;
    padding: 12px 15px;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.9em;
    border-radius: 0 0 8px 8px;
}
.ceramic-10h-blog .img-with-caption {
    display: flex;
    flex-direction: column;
}
/* 表格样式 */
.ceramic-10h-blog table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.ceramic-10h-blog th, .ceramic-10h-blog td {
    border: 1px solid #dee2e6;
    padding: 14px;
    text-align: left;
}
.ceramic-10h-blog th {
    background-color: #3498db;
    color: white;
    font-weight: 600;
}
.ceramic-10h-blog tr:nth-child(even) {
    background-color: #f8f9fa;
}
/* 提示框 */
.ceramic-10h-blog .callout {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 15px 20px;
    margin: 30px 0;
    border-radius: 4px;
}
/* 步骤有序列表 */
.ceramic-10h-blog .steps {
    counter-reset: step;
    list-style-type: none;
    padding-left: 0;
}
.ceramic-10h-blog .steps li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 1.1em;
}
.ceramic-10h-blog .steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
/* 文本基础 */
.ceramic-10h-blog p {
    margin-bottom: 20px;
    font-size: 1.1em;
}
.ceramic-10h-blog ul {
    margin-bottom: 20px;
    padding-left: 25px;
}
.ceramic-10h-blog ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}
/* 移动端适配 */
@media (max-width: 768px) {
    .ceramic-10h-blog .img-text-wrap {
        flex-direction: column !important;
    }
    .ceramic-10h-blog h1 {
        font-size: 2em;
    }
    .ceramic-10h-blog h2 {
        font-size: 1.6em;
    }
    .ceramic-10h-blog h3 {
        font-size: 1.3em;
    }
    .ceramic-10h-blog .container {
        padding: 15px;
    }
    .ceramic-10h-blog .img-box.standard,
    .ceramic-10h-blog .img-box.tall {
        height: 260px;
    }
}
