*{
	margin: 0;padding: 0;border:0;box-sizing: border-box;
}
html,body{
	font-size:12px;color:#333;
	background:#fff;
	font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	max-width: 1920px;margin: 0 auto;
}
ul li{
	list-style:none;
}
img{
	border:0; vertical-align:top; /* transition: all 1s ease 0s; */
}
/* img:hover{
	transform: scale(1.05,1.05);
} */
textarea:focus,
input:focus { 
	outline: none; 
}
a{
	text-decoration:none;color:#333;
}
.w1400{
	width:1400px;margin:0 auto;
}
.fl{
	float:left;	
}
.fr{
	float:right;	
}
.en{
	text-transform: uppercase;
}
.clearfix:after{
	content:"."; display:block; height:0; clear:both; visibility:hidden;
}
.page {
    text-align: center;
    padding: 20px 0;
}

.page .pagination {
    margin: 0;
    padding: 0;
}

.page .pagination li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px #efefef solid;
    color: #333;
    border-radius: 5px;
    box-sizing: border-box;
    margin: 0 5px;
}

.page .pagination li.active {
    background: #1a4c97;
    color: #fff;
    border: none;
}

/* ========== 1. Firefox 标准兼容（Firefox 64+） ========== */
html {
  /* 参数：滑块颜色 轨道背景色 */
  scrollbar-color: #1a4c97 #f1f1f1;
  /* 滚动条宽度 thin/none/auto */
  scrollbar-width: thin;
}

/* ========== 2. WebKit内核：Chrome / Edge / Safari / 国产webkit浏览器 ========== */
/* 滚动条整体宽高 */
body::-webkit-scrollbar {
  width: 5px;    /* 垂直滚动条宽度 */
  height: 10px;  /* 水平滚动条高度 */
  background-color: transparent;
}

/* 滚动条轨道（底层背景） */
body::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

/* 滚动条滑块 */
body::-webkit-scrollbar-thumb {
  background-color: #1a4c97;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/* 滑块hover加深（可选增强） */
body::-webkit-scrollbar-thumb:hover {
  background-color: #1589ce;
}

/* 上下左右箭头按钮（可选） */
body::-webkit-scrollbar-button {
  background: #f2f2f3;
  border-radius: 5px;
}

/* ========== 3. 旧IE兼容 IE6~IE11（现代浏览器已废弃，仅做兜底） ========== */
body {
  scrollbar-arrow-color: #f2f2f3;    /* 上下箭头 */
  scrollbar-track-color: #f1f1f1;    /* 轨道底层背景 */
  scrollbar-face-color: #1a4c97;     /* 滑块主体 */
  scrollbar-shadow-color: #1589ce;   /* 滚动条边线阴影 */
  scrollbar-highlight-color: #1589ce;/* 高亮边线 */
}