@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-family: 'MicrosoftYaHei';
}

/* 保持图片缩小后不模糊 */
img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.container {
  margin: 0 auto;
  max-width: 1220px;
}

.img {
  font-size: 0;
}

.img img {
  max-width: 100%;
}

.shade {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.6);
}

.pageChange {
  display: flex;
  margin: auto;
  justify-content: center;
  margin-top: 68px;
  padding-bottom: 87px;
}

.pageChange .border {
  width: 35px;
  height: 35px;
  background-color: #ffffff;
  border: solid 1px #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: all 0.3s;
  font-size: 14px;
  font-family: Manrope-Regular;
  color: #5f5f5f;
}

.pageChange .border:hover {
  background-color: var(--theme-color);
  color: #FFF;
}

.pageChange .icon svg {
  width: 7px;
  height: 12px;
}

.pageChange .icon svg path {
  fill: #5f5f5f;
  transition: all 0.3s;
}

.pageChange .icon:hover svg path {
  fill: #FFF;
}

.pageChange .item {
  margin-right: 10px;
}

.pageChange .active {
  background-color: var(--theme-color) !important;
  color: #FFF !important;
}

.pageChange .prev {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .pageChange {
    margin-top: 30px;
    padding-bottom: 50px;
  }
}
