
    /* 严格样式隔离，避免与网站原有样式冲突 */
    .rdltc-module * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    }

    /* 核心配色变量（严格按要求） */
    :root {
        --rdltc-primary: #959c3a;        /* 主色调 */
        --rdltc-title: #1f2937;          /* 大标题颜色 */
        --rdltc-text: #4b5563;           /* 正文颜色 */
        --rdltc-bg: #ffffff;             /* 白色背景 */
        --rdltc-white: #ffffff;
        --rdltc-accent-bg: rgba(149, 156, 58, 0.05); /* 浅背景色 */
    }

    /* 模块容器 */
    .rdltc-module {
        width: 100%;
        padding: 5px 0; /* 上下5px紧凑空白 */
        background-color: var(--rdltc-bg);
        overflow: hidden;
    }

    .rdltc-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 16px;
        width: 100%;
    }

    /* 内容卡片容器 */
    .rdltc-card {
        background-color: var(--rdltc-accent-bg);
        border-radius: 24px;
        padding: 40px 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        text-align: center;
    }

    /* 标题样式（严格按字体尺寸要求） */
    .rdltc-main-title {
        font-size: 38px; /* 电脑端标题38px */
        font-weight: 700;
        color: var(--rdltc-title);
        margin-bottom: 24px;
        line-height: 1.2;
    }

    /* 正文样式 */
    .rdltc-desc {
        font-size: 14px; /* 电脑端正文14px */
        color: var(--rdltc-text);
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto 32px auto;
    }

    /* 特性标签组 */
    .rdltc-tags {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        margin-bottom: 32px;
    }

    /* 特性标签样式 + 图标渲染修复 */
    .rdltc-tag {
        background-color: var(--rdltc-white);
        padding: 8px 20px;
        border-radius: 50px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* 核心修复：强制指定Font Awesome字体，确保图标显示 */
    .rdltc-tag-icon {
        color: var(--rdltc-primary);
        font-size: 16px;
        font-family: 'FontAwesome' !important; /* 强制使用图标字体 */
        font-style: normal !important; /* 取消斜体，避免图标变形 */
        display: inline-block; /* 确保图标正确占位 */
    }

    /* 单独为i标签加固样式，防止覆盖 */
    .rdltc-tag-icon i {
        font-family: 'FontAwesome' !important;
        font-style: normal !important;
    }

    .rdltc-tag-text {
        font-size: 14px; /* 电脑端正文14px */
        color: var(--rdltc-text);
    }

    /* 底部文本 */
    .rdltc-bottom-text {
        font-size: 14px; /* 电脑端正文14px */
        color: var(--rdltc-text);
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto;
    }

    /* 动画效果 */
    .rdltc-fade-in {
        animation: rdltcFadeIn 0.8s ease-in-out forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    @keyframes rdltcFadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 响应式适配 - 电脑端 (≥1025px) */
    @media (min-width: 1025px) {
        .rdltc-card {
            padding: 60px 40px;
        }
    }

    /* 响应式适配 - 平板端 (769px-1024px) */
    @media (min-width: 769px) and (max-width: 1024px) {
        .rdltc-main-title {
            font-size: 32px; /* 平板端过渡尺寸 */
        }
        .rdltc-card {
            padding: 50px 30px;
        }
    }

    /* 响应式适配 - 手机端 (≤768px) 严格按要求 */
    @media (max-width: 768px) {
        .rdltc-main-title {
            font-size: 25px; /* 手机端标题25px */
        }
        .rdltc-desc, .rdltc-tag-text, .rdltc-bottom-text {
            font-size: 15px; /* 手机端正文15px */
        }
        .rdltc-card {
            padding: 30px 16px;
            border-radius: 16px;
        }
        .rdltc-tags {
            gap: 12px;
        }
        .rdltc-tag {
            padding: 6px 16px;
        }
        .rdltc-tag-icon {
            font-size: 14px; /* 手机端图标略缩小，适配布局 */
        }
    }
