@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);
}

.pageNav {
  background: #f8f8f8;
  border-bottom: 1px solid #dcdcdc;
}

.pageNav .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pageNav .content .selects {
  display: flex;
}

.pageNav .content .selects .item {
  min-width: 220px;
  box-sizing: border-box;
  padding: 0 10px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-bottom: 4px solid transparent;
  /* font-family: OPPOSans-M; */
  font-size: 18px;
  /* color: #313131; */
  color: #737b83;
  border-left: 1px solid #dcdcdc;
  cursor: pointer;
}

.pageNav .content .selects .item.active {
  background: #FFF;
  border-bottom-color: var(--theme-color);
}

.pageNav .content .selects .item:not(:first-child) {
  border-right: 1px solid #dcdcdc;
}

.pageNav .content .selects .item:last-child {
  border-right: 1px solid #dcdcdc;
}

.pageNav .content .crumbs {
  display: flex;
  align-items: center;
}

.pageNav .content .crumbs .item {
  display: flex;
  align-items: center;
  /* font-family: OPPOSans-M; */
  font-size: 16px;
  /* color: #313131; */
  color: #737b83;
}

.pageNav .content .crumbs .item .icon {
  margin-right: 11px;
  width: 15px;
}

.pageNav .content .crumbs .item:not(:last-child) {
  margin-right: 12px;
}

.pageChange {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageChange .pageLength {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  margin-right: 22px;
}

.pageChange .pageLength .mySelects {
  display: flex;
  align-items: center;
  height: 40px;
  width: 117px;
  border-radius: 6px;
  background-color: #ffffff;
  border: solid 1px #d2d2d2;
}

.pageChange .pageLength .mySelects .selected {
  font-family: OPPOSans-M;
  font-size: 16px;
  width: 100%;
  height: 100%;
  padding-left: 16px;
  display: flex;
  align-items: center;
  background-image: url("../images/pagesChangeSelect.png");
  background-repeat: no-repeat;
  background-position: center right 19px;
  cursor: pointer;
}

.pageChange .pageLength .mySelects .list {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #ffffff;
  border-radius: 6px;
  border: solid 1px #d2d2d2;
  padding: 6px 0;
}

.pageChange .pageLength .mySelects .list .option {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  font-family: OPPOSans-M;
  font-size: 16px;
  color: #313131;
  padding-left: 33px;
  cursor: pointer;
}

.pageChange .pageLength .mySelects .list .option:hover {
  background-color: #f5f7fa;
}

.pageChange .pageLength .mySelects .list .option[data-selected="true"] {
  background-color: #f5f7fa;
  background-image: url(../images/confirm.png);
  background-repeat: no-repeat;
  background-position: center left 11px;
}

.pageChange .item {
  background: #f5f7fa;
  margin-right: 12px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.3s;
}

.pageChange .item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Gilroy-Regular;
  font-size: 18px;
  color: #313131;
  transition: all 0.3s;
}

.pageChange .item a .img {
  display: block;
}

.pageChange .item:hover {
  background-color: var(--theme-color);
}

.pageChange .item:hover a {
  color: #FFF;
}

.pageChange .item.active {
  background-color: var(--theme-color);
}

.pageChange .item.active a {
  color: #FFF;
}

.pageChange .item.prev {
  background: transparent;
}

.pageChange .item:last-child {
  /* background: transparent; */
  margin-right: 0;
}

.title_3 {
  text-align: center;
  font-family: OPPOSans-B;
  font-size: 48px;
  position: relative;
  padding-bottom: 22px;
  line-height: 1;
  width: fit-content;
  margin: auto;
  color: #253745;
}

.title_3::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 27.60%;
  height: 3px;
  background: var(--theme-color);
  transition: all 0.3s;
}

.title_3:hover::after {
  width: 76%;
}

.center {
  align-items: center;
}

@media (max-width: 1024px) {
  .title_3 {
    font-size: 36px;
    padding-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .pageNav .content .selects .item {
    width: 100px;
    height: 35px;
    font-size: 14px;
  }
  .pageNav .content .crumbs {
    flex-wrap: wrap;
  }
  .pageNav .content .crumbs .item {
    font-size: 12px;
    flex-shrink: 0;
  }
  .title_3 {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .pageChange .item {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }
  .pageChange .item a {
    font-size: 12px;
  }
  .pageChange .pageLength .mySelects {
    width: 95px;
    height: 35px;
  }
  .pageChange .pageLength .mySelects .selected {
    font-size: 12px;
    padding-left: 8px;
    background-position: center right 8px;
    background-size: 10%;
  }
  .pageChange .pageLength .mySelects .list .option {
    font-size: 12px;
    padding-left: 25px;
  }
  .pageChange .pageLength .mySelects .list .option[data-selected="true"] {
    background-position: center left 10px;
    background-size: 10%;
  }
}

@media (max-width: 576px) {
  .pageNav .content {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .pageNav .content .crumbs {
    margin-bottom: 3%;
    margin-top: 3%;
  }
  .pageNav .content .selects {
    border-top: 1px solid #dcdcdc;
  }
}
