/* 全局默认字体：方正标雅宋简体优先，微软雅黑兜底 */
body { font-family: '方正标雅宋简体', 'Microsoft YaHei', '微软雅黑', sans-serif; }

/* 1. 更直观的 box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. 清除默认边距 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* 3. 更易读的行高 */
  line-height: 1.5;
  /* 4. 改善文字渲染 */
  -webkit-font-smoothing: antialiased;
  min-width: 1920px;
  overflow-x: hidden;
}

/* 5. 改善媒体默认样式 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 6. 表单控件继承字体 */
input, button, textarea, select {
  font: inherit;
}

/* 7. 避免文字溢出 */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 8. 改善换行 */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/* 9. 创建根层叠上下文 */
#root, #__next {
  isolation: isolate;
}

body {
	line-height: 1.5;   

}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* reset 结束 */

/* 链接样式 */
a {
  text-decoration: none;
  color: inherit;
  line-height: 1;
}

/* 统一重置 a 标签样式 */
a, .link, .link-text {
  text-decoration: none;
  color: inherit;
  line-height: 1;
}