
/* 博客样式 - 安全命名空间，避免与UEESHOP后台冲突 */
.kimone-blog-post * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.kimone-blog-post {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.kimone-blog-content {
    padding: 48px;
}

/* 正文H标签 - 严格从H2开始 */
.kimone-blog-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #1a2b3c;
    letter-spacing: -0.02em;
    line-height: 1.3;
    border-bottom: 2px solid #eef2f6;
    padding-bottom: 12px;
}

.kimone-blog-content h2:first-of-type {
    margin-top: 0;
}

.kimone-blog-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: #2c3e50;
}

.kimone-blog-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: #1a2b3c;
}

.kimone-blog-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #2c3e50;
}

.kimone-blog-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #2d3a4f;
    line-height: 1.7;
}

.kimone-blog-content p.lead {
    font-size: 20px;
    font-weight: 500;
    color: #1a2b3c;
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid #7ed386;
}

.kimone-blog-content strong {
    color: #1a2b3c;
    font-weight: 600;
}

.kimone-blog-content blockquote {
    background: #f0f7ff;
    padding: 24px;
    border-radius: 16px;
    margin: 32px 0;
    font-style: italic;
    border-left: 4px solid #4a6491;
    font-size: 18px;
    color: #2d3a4f;
}

.kimone-blog-content ul, 
.kimone-blog-content ol {
    margin: 24px 0 32px;
    padding-left: 28px;
}

.kimone-blog-content li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2d3a4f;
}

.kimone-blog-content li strong {
    color: #2c3e50;
}

/* 数据卡片 */
.kimone-data-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 32px;
    border-radius: 20px;
    margin: 40px 0;
    border: 1px solid #e2e8f0;
}

.kimone-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.kimone-data-item {
    text-align: center;
}

.kimone-data-number {
    font-size: 36px;
    font-weight: 700;
    color: #4a6491;
    margin-bottom: 8px;
}

.kimone-data-label {
    font-size: 16px;
    color: #4a5568;
}

/* 对比表格 - 安全类名 */
.kimone-compare-table {
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.kimone-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.kimone-compare-row:last-child {
    border-bottom: none;
}

.kimone-compare-col {
    padding: 24px;
}

.kimone-compare-col-left {
    background: #fff5f5;
    border-right: 1px solid #e2e8f0;
}

.kimone-compare-col-right {
    background: #f0f7f0;
}

.kimone-compare-col h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kimone-compare-col ul {
    margin: 0;
    padding-left: 20px;
}

.kimone-compare-col li {
    font-size: 16px;
    margin-bottom: 10px;
}

/* 特性卡片 */
.kimone-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.kimone-feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.2s;
}

.kimone-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0,0,0,0.1);
}

.kimone-feature-icon {
    width: 48px;
    height: 48px;
    background: #e6f7e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.kimone-chart-box {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
}

.kimone-chart-bar {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.kimone-chart-label {
    width: 120px;
    font-weight: 500;
}

.kimone-bar-bg {
    flex: 1;
    height: 24px;
    background: #edf2f7;
    border-radius: 12px;
    overflow: hidden;
}

.kimone-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4a6491, #6b8cbf);
    border-radius: 12px;
}

.kimone-bar-value {
    margin-left: 16px;
    font-weight: 600;
    min-width: 60px;
}

/* B2B 提示框 */
.kimone-b2b-box {
    background: #1a2b3c;
    color: white;
    padding: 32px;
    border-radius: 20px;
    margin: 40px 0;
}

.kimone-b2b-box h4 {
    color: #7ed386;
    margin-bottom: 16px;
    font-size: 24px;
}

.kimone-b2b-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.kimone-b2b-btn {
    display: inline-block;
    background: #7ed386;
    color: #1a2b3c;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.kimone-b2b-btn:hover {
    background: #6bc174;
    text-decoration: none;
    color: #1a2b3c;
}

/* 标签云 */
.kimone-tag-cloud {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.kimone-tag {
    display: inline-block;
    background: #edf2f7;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    color: #4a5568;
    margin-right: 8px;
    margin-bottom: 8px;
}

.kimone-tag-blue {
    background: #e6f0ff;
    color: #4a6491;
}

/* 响应式 */
@media (max-width: 768px) {
    .kimone-blog-content { padding: 32px 24px; }
    .kimone-blog-content h2 { font-size: 28px; }
    .kimone-blog-content p { font-size: 17px; }
    .kimone-compare-row { grid-template-columns: 1fr; }
    .kimone-compare-col-left { border-right: none; border-bottom: 1px solid #e2e8f0; }
}

@media (max-width: 480px) {
    .kimone-blog-content h2 { font-size: 24px; }
    .kimone-feature-grid { grid-template-columns: 1fr; }
}
