* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    'Noto Sans SC',
    'Noto Sans SC',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  width: 100%;
  font-size: 14px;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  display: block;
  max-width: 100%;
  border: 0;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
}

p {
  margin: 0;
  line-height: 1.6;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button {
  cursor: pointer;
}
/* ============ 分页 ============ */
.pager {
  margin: 40px 0 0;
  padding: 0;
  text-align: center;
  box-sizing: border-box;
}

.pager a,
.pager .ellipsis {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 8px 0 0;
  font-size: 14px;
  font-family: inherit;
  color: #666;
  text-align: center;
  border-radius: 4px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.pager a:last-child {
  margin-right: 0;
}

.pager .ellipsis {
  border: none;
  background: transparent;
}

/* 数字页码：带边框 */
.pager a:not(:first-child):not(:last-child) {
  border: 1px solid #e5eaf0;
  background: #fff;
}

/* 左右箭头：无边框 */
.pager a:first-child,
.pager a:last-child {
  border: none;
  background: transparent;
  font-family: '宋体', sans-serif;
}

.pager a:not(:first-child):not(:last-child):hover {
  border-color: #0f4799;
  color: #0f4799;
}

.pager a.act {
  background: #0f4799 !important;
  border-color: #0f4799 !important;
  color: #fff;
}

.pager a.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.pager a:first-child:hover,
.pager a:last-child:hover {
  color: #0f4799;
}

.pager a.disabled:hover {
  color: #ccc;
}
