/* English Fonts - Arial Family */
@font-face {
    font-family: 'CustomArial';
    src: url('../en/arial.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CustomArial';
    src: url('../en/arialbd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'CustomArial';
    src: url('../en/ariali.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'CustomArial';
    src: url('../en/arialbi.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'CustomArialBlack';
    src: url('../en/ariblk.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'CustomArialNarrow';
    src: url('../en/ARIALN.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CustomArialNarrow';
    src: url('../en/ARIALNB.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'CustomArialNarrow';
    src: url('../en/ARIALNI.TTF') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'CustomArialNarrow';
    src: url('../en/ARIALNBI.TTF') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'CustomArialRounded';
    src: url('../en/ARLRDBD.TTF') format('truetype');
}


@font-face {
    font-family: 'CustomArialUnicode';
    src: url('../en/ARIALUNI.TTF') format('truetype');
}

/* Chinese Fonts - Source Han Sans CN (思源黑体) */
@font-face {
    font-family: 'SourceHanSansCN';
    src: url('../cn/SourceHanSansCN-ExtraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'SourceHanSansCN';
    src: url('../cn/SourceHanSansCN-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'SourceHanSansCN';
    src: url('../cn/SourceHanSansCN-Normal.otf') format('opentype');
    font-weight: 350;
    font-style: normal;
}

@font-face {
    font-family: 'SourceHanSansCN';
    src: url('../cn/SourceHanSansCN-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SourceHanSansCN';
    src: url('../cn/SourceHanSansCN-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SourceHanSansCN';
    src: url('../cn/SourceHanSansCN-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'SourceHanSansCN';
    src: url('../cn/SourceHanSansCN-Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}


body {
    /* 优先使用CustomArial（英文），然后是思源黑体（中文），最后是CustomArialUnicode后备 */
    font-family: 'CustomArial', 'SourceHanSansCN', 'CustomArialUnicode' !important;
}

/* 英文模式特定样式调整 */
body.lang-en {
    /* 英文模式下优先使用 Arial */
    font-family: 'CustomArial', 'SourceHanSansCN', 'CustomArialUnicode' !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 针对标题和粗体的英文适配 */
body.lang-en h1, body.lang-en h2, body.lang-en h3, body.lang-en h4, body.lang-en h5, body.lang-en h6, body.lang-en strong, body.lang-en b {
    font-family: 'CustomArial', 'SourceHanSansCN', 'CustomArialUnicode' !important;
}

/* 英文版特定标题放大 */
body.lang-en .sidebar-title,
body.lang-en .column-header {
    font-size: 24px !important;
    white-space: nowrap; /* 强制不换行 */
}

/* 英文版 Industry News 内容高度自适应，防止与日期重叠 */
body.lang-en .ind-title {
    height: auto !important;
    min-height: 42px;
    margin-bottom: 20px !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
}

h1, h2, h3, h4, h5, h6, strong, b {
    font-family: 'CustomArial', 'SourceHanSansCN', 'CustomArialUnicode' !important;
    font-weight: bold;
}
