/* 第一步：先加载英文字体Inter（手机专用） */
@import url('https://lf6-cdn-tos.bytecdntp.com/cdn/expire-100-M/font-inter/1.0.0/inter.css');
/* 第二步：再加载中文思源黑体 */
@import url('https://lf6-cdn-tos.bytecdntp.com/cdn/expire-100-M/font-noto-sans-sc/1.0.0/noto-sans-sc.css');

/* ========== 全局通用渲染规则（两端共用，完全保留你原有设置） ========== */
* {
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
}

html, body {
  color: #111111;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

/* 菜单粗标题（Collections、导航栏大标题） */
.menu-title, nav a, h1,h2,h3,h4 {
  font-weight: 500 !important;
}

/* 正文、列表小字、产品文字 */
.body-text, p, div, span, .menu-item {
  font-weight: 400 !important;
}

/* ========== 媒体查询区分设备字体 ========== */
/* 手机端：宽度≤768px，强制优先Inter字体，原有手表官网字体效果不变 */
@media screen and (max-width: 1280px) {
  *, html, body {
    font-family: Arial, Inter,"Noto Sans SC", sans-serif !important;
  }
}

/* 移除电脑端专属字体媒体查询，电脑使用浏览器默认系统字体栈，无强制字体约束 */
.nav-link {
   
 /*菜单 新增下面这一行字体加粗 */
    font-weight: 500;
}

.dropdown li a {
 
 /* 下拉菜单 新增下面这一行字体加粗 */
    font-weight: 500;
}