/*点击跳转页面样式*/
.click-jump {
  width: 56%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.click-jump button {
  width: 2em;
  height: 2em;
  font-size: 1.4em;
  border: none!important;
  background: none!important;
  cursor: pointer;
  margin: 0 0.5em;
}
.click-jump-container {
  width: 90%;
  position: relative;
  overflow: hidden;
}
/* 左右渐变遮罩 */
.click-jump-container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5em;
  height: 100%;
  background: linear-gradient(to right, #fff, transparent);
  pointer-events: none;
  z-index: 1;
}
.click-jump-container::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 2.5em;
  height: 100%;
  background: linear-gradient(to left, #fff, transparent);
  pointer-events: none;
  z-index: 1;
}
.click-jump-container a:first-child {
  border-left: none;
}
.click-jump-container a:last-child {
  border-right: none!important;
}
.jump-box {
  display: flex;
  gap: 1.5em;
  border: 2ps solid blue;
  transition: left 0.3s linear;
  overflow: hidden;
  position: relative;
}
.jump-box a {
  padding: 0 2em;
  display: block;
  width: calc((100% - 4em) / 5);
  height: 2em;
  line-height: 2em;
  color: #003300;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 500;
  border: 1px solid #ccc;
  display: flex;
  flex-shrink: 1;
  transition: border-color 0.3s ease-in-out;
}
.jump-box a:hover {
  border: 1px solid #222;
}
/* 媒体查询： */
@media (max-width: 991px) and (min-width: 768px) {
  .page-container p {
    padding: 0.2em;
    letter-spacing: normal;
  }
  .page-container p a {
    font-size: 0.8em;
  }
  .page-container p span {
    font-size: 0.8em;
  }
  .click-jump {
    width: 90%;
  }
  .click-jump-container {
    width: 85%;
  }
  .jump-box {
    gap: 1em;
  }
  .jump-box a {
    padding: 0 1em;
  }
}
/* 媒体查询： */
@media (max-width: 767px) {
  .page-container p {
    padding: 0.2em;
    letter-spacing: normal;
    font-size: 0.8em;
  }
  .click-jump {
    width: 100%;
  }
  .click-jump-container {
    width: 100%;
  }
  .jump-box {
    gap: 0.5em;
  }
  .jump-box a {
    padding: 0 1em;
    width: calc((100% - 2em) / 3);
    font-size: 0.95em;
  }
}
