html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
  margin-block: 0;
  margin-inline: 0;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}
a {
	color: inherit; /* 继承父元素的文本颜色 */
	text-decoration: none; /* 移除下划线 */
}
/* 字体 */
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/NotoSansRegular.woff2') format('woff2');
}

/* 通用设置 */
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-gray: #f6f6f6;
  --color:#3c77a0;
  --transition: all .3s ease-out;
	--font-color: #666;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background:transparent;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(60, 119, 160, 0.8);
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}
html {
	font-size: 100px;
	scroll-behavior: smooth;
	-webkit-user-select: none; /* Safari */  
  -moz-user-select: none; /* Firefox */  
  -ms-user-select: none; /* IE10+/Edge */  
  user-select: none; /* Standard */  
}
html body {
  font-family:'Noto Sans SC',arial,verdana; 
  font-size: 0.14rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5em;
  color: var(--font-color);
  font-variant:normal;
	overflow-x: hidden;
	/* background-color: var(--color); */
}
img {
	width: 100%;
	max-width: 100%;
	max-height: 100%;
	height: auto;
}

.display_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.display_none {
	display: none;
}
.container {
	margin: 0 auto;
}
@media (min-width: 767px){
	.container {
			width: 750px;
	}
}
@media (min-width: 992px){
	.container {
			width: 970px;
	}
}
@media (min-width: 1210px){
	.container{width: 1180px;}
}
@media (min-width: 1310px){
	.container{width: 1280px;}
}
@media (min-width: 1410px){
	.container{width: 1380px;}
}
@media (min-width: 1510px){
	.container{width: 1480px;}
}
@media (min-width: 1610px){
	.container{width: 1580px;}
}
@media (min-width: 1710px){
	.container{width: 1680px;}
}

@media (max-width:767px) {
	.container{padding-left: 15px;padding-right: 15px;width: 100%;}
}

@media(max-width: 350px) {
	.container{padding-left: 10px;padding-right: 10px;width: 100%;}
}

@media (max-width: 767px){ 
	html {
		font-size: 80px;
	}
}
@media (max-width: 992px){
	main {
		overflow: hidden;
	}
}
