body {
  /* background: #ededed; */
}

.content_div {
  width: 1200px;
  height: auto;
  margin: 0 auto 20px auto;
}

.page-banner {
  background: url(banner.jpg) no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 300px;
}

.interpretationForm {
  position: relative;
  margin-top: 20px;
}

.interpretationForm .interpretation {
  position: absolute;
  bottom: 10%;
  left: 20%;
  width: 60%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}

.interpretationForm .interpretation a {
  display: block;
  width: 160px;
  height: 50px;
  border-radius: 25px;
  border: solid 5px #ffffff;
  text-align: center;
  font-size: 21px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 40px;
  letter-spacing: 0px;
  color: #ffffff;
  box-shadow: 0px 2px 3px 0px rgba(172, 18, 0, 0.6);
  background-image:
    linear-gradient(0deg, #f39920 0%, #f9c06a 46%, #ffe7b3 100%),
    linear-gradient(#ffffff, #ffffff);
  background-blend-mode: normal, normal;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-image 0.3s ease, filter 0.3s ease;
}

/* 悬停：整体上浮、阴影加深、渐变提亮、文字微放大 */
.interpretationForm .interpretation a:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0px 6px 14px 0px rgba(172, 18, 0, 0.55);
  background-image:
    linear-gradient(0deg, #f7a833 0%, #ffce82 46%, #fff1cf 100%),
    linear-gradient(#ffffff, #ffffff);
  filter: brightness(1.05);
}

/* 点击：轻微下沉反馈 */
.interpretationForm .interpretation a:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0px 2px 6px 0px rgba(172, 18, 0, 0.5);
}

.fiveYears {
  margin-top: 20px;
  background: url(fgf.png) no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 73px;
  text-align: center;
  font-size: 30px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 70px;
  letter-spacing: 3px;
  color: #fefeff;
  font-weight: bold;
}

.fiveList {
  margin-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* .fiveList li {
  display: block;
  background: url(zq.png) no-repeat;
  width: 191px;
  height: 208px;
  font-size: 30px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 200px;
  letter-spacing: 3px;
  color: #ffffff;
  text-align: center;
} */
.fiveList a {
  position: relative;
  /* 为伪元素定位 */
  display: block;
  width: 200px;
  height: 200px;
  font-size: 30px;
  line-height: 200px;
  letter-spacing: 3px;
  text-align: center;
  overflow: hidden;
  /* 隐藏旋转溢出的部分 */
}

.fiveList a span {
  font-weight: bold;
  font-stretch: normal;
  color: #ffffff;
}

/* 用伪元素承载背景图 */
.fiveList a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(zq.png) no-repeat;
  z-index: 1;
}

.fiveList a span {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* 悬停时背景图缓慢旋转，并平滑放大图标、淡入高亮 */
.fiveList a {
  transition: transform 0.35s ease;
}
.fiveList a::before {
  transition: transform 0.6s ease, filter 0.35s ease, opacity 0.35s ease;
}
.fiveList a:hover {
  transform: scale(1.06);
}
.fiveList a:hover::before {
  animation: rotate 4s linear infinite;
  filter: brightness(1.12) drop-shadow(0 6px 12px rgba(28, 100, 181, 0.45));
  cursor: pointer;
}
.fiveList a span {
  transition: transform 0.35s ease, text-shadow 0.35s ease;
}
.fiveList a:hover span {
  transform: scale(1.08);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.otherList {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.titleList {
  width: 100%;
  height: 48px;
  background: url(bq.png) no-repeat;
  background-size: auto 100%;
  color: #ffffff;
  font-weight: bold;
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 48px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 20px;
}

.titleList span {
  display: flex;
  align-items: center;
}

.titleList span img {
  width: 27px;
  height: 27px;
  margin-right: 20px;
  margin-left: 20px;
}

.titleList a {
  float: right;
  font-size: 16px;
  color: #006dc1;
}

.otherList ul {
  margin-right: 2%;
  width: 48%;
  height: auto;
}

.otherList ul li {
  display: block;
  padding: 15px 0;
  padding-left: 30px;
  position: relative;
  border-bottom: dashed 1px #999999;
}

.otherList ul li span:first-child {
  width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.otherList ul li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  position: absolute;
  left: 10px;
  top: 23px;
  background: #1c64b5;
}

.otherList ul li a {
  display: flex;
  justify-content: space-between;
}

/* 整行平滑左移、背景淡入高亮 */
.otherList ul li {
  transition: transform 0.3s ease, background-color 0.3s ease, padding-left 0.3s ease;
}
.otherList ul li:hover {
  transform: translateX(6px);
  background-color: rgba(17, 93, 178, 0.06);
  padding-left: 36px;
}
/* 前导圆点平滑放大、变色 */
.otherList ul li:before {
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.otherList ul li:hover:before {
  transform: scale(1.8);
  background: #115db2;
}
/* 标题平滑变色加粗 */
.otherList ul li a span {
  transition: color 0.3s ease, font-weight 0.3s ease;
}
.otherList ul li:hover span {
  color: #115db2;
  font-weight: bold;
}
/* 偏好减少动态效果时，关闭旋转动画，仅保留轻量过渡 */
@media (prefers-reduced-motion: reduce) {
  .fiveList a,
  .fiveList a::before,
  .fiveList a span,
  .otherList ul li,
  .otherList ul li:before,
  .otherList ul li a span {
    transition: none !important;
  }
  .fiveList a:hover::before {
    animation: none;
  }
}
.interpretationForm img{
  width:1200px;
  height:230px;
}
/*适老化*/
.newStyle .interpretation a {
  font-size: 40px;
  width: 300px;
}

.newStyle .fiveYears,
.newStyle .fiveList a span,
.newStyle .titleList span,
.newStyle .titleList a {
  font-size: 40px;
}

.newStyle .otherList ul {
  width: 100%;
}

.newStyle .otherList ul li a {
  font-size: 30px;
}

.newStyle .otherList ul li:before {
  display: none;
}

.newStyle .otherList ul li {
  padding: 20px 0;
}

/* 手机端 */
@media only screen and (max-width: 768px) {
  .content_div {
    width: 100%;
    margin: 0 auto 10px auto;
    padding: 0 12px;
  }

  /* banner 等比缩放，不写死高度避免拉伸 */
  .page-banner {
    height: auto;
    padding-top: 25%;
  }

  /* 解读区：隐藏原图，改为纯按钮区，不再依赖绝对定位 */
  .interpretationForm {
    height: auto;
    margin-top: 12px;
  }

  .interpretationForm img {
    display: none;
  }

  .interpretationForm .interpretation {
    position: static;
    width: 100%;
    flex-wrap: wrap;
    bottom: auto;
    left: auto;
    padding: 15px 0;
  }

  .interpretationForm .interpretation a {
    width: 30%;
    height: 42px;
    min-width: 92px;
    line-height: 32px;
    font-size: 15px;
    border-width: 3px;
    border-radius: 21px;
    margin: 0 auto;
  }

  /* 五年规划标题：转为普通文字标题，字号缩小 */
  .fiveYears {
    background: none;
    color: #115db2;
    height: auto;
    line-height: 1.4;
    font-size: 20px;
    letter-spacing: 1px;
    margin-top: 16px;
    padding: 8px 0;
    border-bottom: 2px solid #115db2;
    text-align: left;
  }

  /* 五年列表：每个占满一行，图标自适应缩小 */
  .fiveList {
    flex-wrap: wrap;
    margin-top: 12px;
  }

  .fiveList a {
    font-size: 22px;
    margin: 0 auto 16px auto;
  }

  /* 其他规划列表：单列铺满，标题与日期合理排布 */
  .otherList {
    margin-top: 12px;
  }

  .otherList ul {
    width: 100%;
    margin: 0;
  }

  .titleList {
    height: auto;
    line-height: 40px;
    font-size: 18px;
    background-size: auto 100%;
    padding-right: 12px;
  }

  .titleList span img {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    margin-left: 12px;
  }

  .titleList a {
    font-size: 14px;
  }

  .otherList ul li {
    padding: 12px 0;
    padding-left: 22px;
  }

  .otherList ul li:before {
    left: 6px;
    top: 18px;
  }
  .otherList ul li a span:first-child {
    flex: 1 1 auto;
    font-size: 15px;
    line-height: 1.4;
  }

  .otherList ul li a span:last-child {
    flex: 0 0 auto;
    font-size: 13px;
    color: #999999;
  }
}

/* 超窄屏微调 */
@media only screen and (max-width: 360px) {
  .content_div {
    padding: 0 8px;
  }

  .interpretationForm .interpretation a {
    font-size: 13px;
    min-width: 84px;
  }

  .fiveList a {
    height: 120px;
    line-height: 120px;
    font-size: 20px;
  }
}