/* 此css用于所有说明书样式的修正 */

/* 2025-03-06 11:55:08 TaoJie 自带的样式影响 */



/* 主页/下载/语言 从组件中迁移过来的 */
.menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* 2025-03-06 16:51:51 TaoJie damn! 终于发现了这个问题，又朝着完美更近一步 */
@media all and (max-width: 800px){
    table{
        width: 100%;
    }
}
@media all and (min-width: 800px){
    table{
        width: unset;
    }
}

/* 2025-03-06 11:55:14 TaoJie 因为站点的默认字体往往会覆盖说明书字体，所以在此设置默认字体 Mont For Anker Book*/
body{
    font-family: "Mont For Anker Book","HarmonyOS Sans SC Regular", sans-serif !important;
}

/* 2025-03-06 11:56:18 TaoJie 设置PC边距 居中展示*/
.manual_section {
    max-width: 1300px;
    margin: 0px auto;
}

/* 2025-03-06 11:57:02 TaoJie 标题H1字体被站点覆盖，需要设置 */
.title {
    font-family: "Mont For Anker Book","HarmonyOS Sans SC Regular", sans-serif !important;
}

/* 序号大小 在小屏幕上会因为最大宽度变小*/
/* .基本表 img {
    max-width: none;
} */

/* 设置展示说明书的容器宽度，避免因为内容3：7的比例失效 */
.disco{
    width: 100%;
    display: inline-block;
}

/* 带目录的正文中的图片, 避免缩放导致变形 */
._idGenObjectStyleOverride-1 img{
    height:auto !important;
    cursor: pointer;
    vertical-align :unset;
}

/* 不带目录的正文中的图片, 避免缩放导致变形 */
.基本文本框架 img{
    height:auto !important;
    cursor: pointer;
    vertical-align :unset;
}

.Basic-Text-Frame img{
    height:auto !important;
    cursor: pointer;
    vertical-align :unset;
}

/* 标题对齐方式 一些文本自动换行造成中间间隙过大 */
p.基本段落 {
    text-align: unset !important;
}

/* 标题需要换行 */
span.CharOverride-1{
    /* word-break: break-word; */
    overflow-wrap: break-word;
    hyphens: auto;
}

/* 一些符号salesforce自带了下边距，需要取消 */
.slds-rich-text-editor__output img {
    margin-bottom: 0 !important;
}

/* 目录按钮的边距 */
.settings{
    margin-right: 10px;
}

/* 2025-03-06 14:20:33 TaoJie 设置锚点链接 颜色 */
._idGenObjectStyleOverride-1 a{
    color: black ;
    text-decoration: none;
}

._idGenObjectStyleOverride-1 a:hover{
    color: #2673ff !important;
}

._idGenObjectStyleOverride-1 .二级标题 a{
    color: #919191 ;
}
._idGenObjectStyleOverride-1 .二级标题1 a{
    color: #919191 ;
}
._idGenObjectStyleOverride-1 .三级标题 a{
    color: #919191 ;
}
._idGenObjectStyleOverride-1 .四级标题 a{
    color: #919191 ;
}

._idGenObjectStyleOverride-1 .二级目录 a{
    color: #919191 ;
}
._idGenObjectStyleOverride-1 .三级目录 a{
    color: #919191 ;
}




/* 2023-12-08 11:58:47 TaoJie 标题需要添加前后间距 */
.基本文本框架 .一级标题 {
    margin-top: 20px;
    margin-bottom: 12px;
}
.基本文本框架 .二级标题 {
    margin-top: 20px;
    margin-bottom: 12px;
}
.基本文本框架 .三级标题 {
    margin-top: 20px;
    margin-bottom: 12px;
}
.Basic-Text-Frame .一级标题 {
    margin-top: 20px;
    margin-bottom: 12px;
}
.Basic-Text-Frame .二级标题 {
    margin-top: 20px;
    margin-bottom: 12px;
}
.Basic-Text-Frame .三级标题 {
    margin-top: 20px;
    margin-bottom: 12px;
}