/* 精品CN2 专题页（精品CN2服务器 / 精品CN2裸机云）专属样式
 * 还原 Confluence 设计稿（CN2物理服务器.html / CN2裸机云.html）：
 * Material Design 3 橙色主题 + Plus Jakarta Sans / Inter 字体 + Material Symbols 图标。
 * 主题色板/间距/字号 token 由模板内联的 tailwind.config 提供（配合 Tailwind CDN）。
 * 此文件只承载非 Tailwind 的静态样式：字体默认值、图标字体类、装饰类。
 * 仅作用于带 .cn2-page 包裹的两个新页面，不影响导航/页尾/其它页面。
 */

/* ===== 页面默认字体（正文 Inter，标题类由 tailwind fontFamily 切到 Plus Jakarta） ===== */
.cn2-page {
    font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: #191c1e;
    /* 对齐设计稿 body 的 font-body-md：16px / 24px / 400 */
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

/* ===== Material Symbols 图标字体类 ===== */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
}

/* ===== 设计稿装饰类 ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 143, 50, 0.1);
}
.hero-pattern {
    background-color: #f8f9fb;
    background-image: radial-gradient(#FF8F32 0.5px, transparent 0.5px);
    background-size: 24px 24px;
    background-position: 0 0;
}
.active-tab {
    box-shadow: 0 4px 12px rgba(255, 143, 50, 0.15);
}
.transition-all-custom {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 横向滚动条（地区切换） */
.custom-scrollbar::-webkit-scrollbar { height: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(255, 143, 50, 0.2); border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: rgba(255, 143, 50, 0.4); }

/* 设计稿用到的 active:scale-98（非默认 Tailwind 刻度） */
.cn2-page .active\:scale-98:active { transform: scale(0.98); }
