.banner {
  position: relative;
  width: 100%;
  margin-top: 80px;
}
.banner img {
  width: 100%;
  object-fit: cover;
}
.banner .info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.banner .info .subTit {
  color: var(--textColor);
}
.banner .info .tit {
  color: #333;
}
.banner .info .mes {
  color: #333;
}
.banner .info .toPage a {
  border-color: var(--textColor);
  background: var(--textColor);
  color: #fff;
}
.banner .info .toPage a img {
  width: 14px;
  height: auto;
  filter: brightness(0) invert(1);
}
.fixed.act {
  position: fixed;
  top: 80px;
  width: 100%;
  background-color: #fff;
  box-shadow: -5px 0px 15px 5px rgba(0, 91, 254, 0.04);
  border-radius: 0 0 5px 5px;
  z-index: 3;
  transition: all 0.2s linear;
  border-top: 1px solid rgba(13, 19, 26, 0.1);
}
.fixed.act .wrap {
  position: static;
  transform: none;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}
.fixed.act.top {
  top: 0;
  border-top: none;
}
.fixed.act1 {
  position: absolute;
  bottom: 0;
}
.mt15 {
  margin-top: 15px;
}
.bread {
  width: 100%;
  position: relative;
}
.bread .wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 60px;
  background: #fff;
  border-radius: 5px;
  box-shadow: -5px 0px 15px 5px rgba(0, 91, 254, 0.04);
}
.bread .wrap .d_l {
  flex: 0 0 auto;
  color: #777;
  align-self: center;
}
.bread .wrap .d_l a {
  color: #777;
}
.bread .wrap .d_l a:last-child {
  color: #333;
}
.bread .wrap .d_r {
  gap: 40px;
}
.bread .wrap .d_r a {
  color: #333;
  transition: all 0.2s linear;
}
.bread .wrap .d_r a:hover {
  opacity: 0.8;
  color: var(--textColor);
}
.bread .wrap .d_r .toPage a {
  color: #fff;
}
.bread .wrap .d_r .act {
  color: var(--textColor);
}
.bread .toPage a {
  color: #fff;
  border-color: var(--textColor);
  background: var(--textColor);
}
.bread .moBread {
  display: none;
  position: relative;
  height: 100%;
  color: #777;
}
.bread .moBread p {
  color: var(--textColor);
  justify-content: space-between;
}
.bread .moBread p img {
  width: 12px;
  margin-left: 10px;
}
.bread .moBread ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  min-width: 100%;
  padding: 20px;
  border-radius: 0 0 10px 10px;
  background: #fff;
  width: max-content;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}
.bread .moBread ul a {
  display: block;
  margin: 10px 0;
}
.swiper {
  width: 100%;
}
.con {
  position: relative;
  width: 100%;
}
.con .navTit {
  color: #333;
  font-weight: 600;
  text-align: center;
}
.con .navTit span {
  color: var(--textColor);
}
.con .page1 {
  background: #F6F9FC;
}
.con .page1 .p_l {
  width: 630px;
}
.con .page1 .p_l .swiper1_thumbs .swiper-pagination-progressbar {
  bottom: auto;
  top: 0;
  left: 0;
  height: 3px;
  background-color: #fff;
}
.con .page1 .p_l .swiper1_thumbs .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--textColor);
}
.con .page1 .p_l .swiper1_thumbs .swiper-slide {
  font-weight: 400;
  text-align: left;
  color: #777777;
  cursor: pointer;
  padding-top: 14px;
}
.con .page1 .p_l .swiper1_thumbs .swiper-slide span {
  width: 100%;
  height: 3px;
  display: block;
  margin-bottom: 14px;
  position: relative;
  background-color: #fff;
}
.con .page1 .p_l .swiper1_thumbs .swiper-slide span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  background: var(--textColor);
  border-radius: 2px;
}
.con .page1 .p_l .swiper1_thumbs .swiper-slide:hover {
  color: var(--textColor);
  font-weight: 600;
}
.con .page1 .p_l .swiper1_thumbs .swiper-slide.active {
  color: var(--textColor);
  font-weight: 600;
}
.con .page1 .p_l .swiper1_thumbs .swiper-slide.active span::after {
  animation: pagination_w 5s linear;
  animation-fill-mode: forwards;
}
@keyframes pagination_w {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.con .page1 .p_l .swiper1_gallery .swiper-slide {
  padding: 12px;
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.4);
}
.con .page1 .p_l .swiper1_gallery .swiper-slide .image {
  overflow: hidden;
  height: 0;
  border-radius: 12px;
  padding-top: 63%;
  position: relative;
}
.con .page1 .p_l .swiper1_gallery .swiper-slide .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  transition: all 0.4s linear;
}
.con .page1 .p_l .swiper1_gallery .swiper-slide:hover .image img {
  transform: scale(1.05);
}
.con .page1 .p_l .swiper1_gallery .swiper-slide .playVideo {
  position: absolute;
  right: 30px;
  width: 48px;
  bottom: 30px;
  cursor: pointer;
}
.con .page1 .p_l .swiper1_gallery .swiper-slide .playVideo img {
  width: 100%;
  transition: all 0.4s linear;
}
.con .page1 .p_l .swiper1_gallery .swiper-slide .playVideo:hover img {
  transform: rotate(180deg);
}
.con .page1 .navTit {
  text-align: left;
}
.con .page1 .p_r {
  flex: 1;
  margin-left: 5.5%;
}
.con .page1 .p_r .mes {
  color: #777;
  line-height: 1.6;
}
.con .page1 .p_r .gap {
  gap: 20px;
}
.con .page1 .p_r .toPage a {
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.con .page1 .p_r .toPage a.white {
  border-color: var(--textColor);
  color: var(--textColor);
}
.con .page1 .p_r .toPage a.blue {
  background-color: var(--textColor);
  border-color: var(--textColor);
}
.con .page1 .p_r .toPage a.blue:hover {
  opacity: 0.8;
}
.con .page2 .p_c .list {
  flex: 0 0 calc((100% - 120px)/3);
  color: #333;
  display: flex;
  flex-wrap: wrap;
  margin-right: 60px;
}
.con .page2 .p_c .list:hover .tit {
  color: var(--textColor);
}
.con .page2 .p_c .list .tit {
  transition: all 0.2s linear;
}
.con .page2 .p_c .list:nth-child(3n) {
  margin-right: 0;
}
.con .page2 .p_c .list span {
  flex: 0 0 16px;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #005bfe;
  position: relative;
  transform: translateY(10px);
}
.con .page2 .p_c .list span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #005bfe;
}
.con .page2 .p_c .list div {
  flex: 1;
  margin-left: 20px;
}
.con .page2 .p_c .list .mes {
  color: #777;
}
.con .page3 {
  background: #F6F9FC;
}
.con .page3 .p_c {
  gap: 20px;
}
.con .page3 .p_c .list {
  padding: 60px;
  flex: 0 0 calc((100% - 40px)/3);
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(196, 242, 255, 0.5);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background-image: linear-gradient(135deg, rgba(196, 242, 255, 0) 40%, rgba(196, 242, 255, 0.5) 100%);
  transition: all 0.4s linear;
}
.con .page3 .p_c .list .info {
  flex: 1;
}
.con .page3 .p_c .list .tit {
  color: #333;
  font-weight: 600;
  transition: all 0.2s linear;
}
.con .page3 .p_c .list:hover .tit {
  color: var(--textColor);
}
.con .page3 .p_c .list:hover .image img {
  transform: translateY(-10px);
}
.con .page3 .p_c .list .mes {
  color: #777;
}
.con .page3 .p_c .list .image {
  width: 80px;
}
.con .page3 .p_c .list .image img {
  width: 100%;
  transition: all 0.4s linear;
}
.con .page4 .p_c .p_tab {
  justify-content: center;
}
.con .page4 .p_c .p_tab p {
  color: #222;
  transition: all 0.2s linear;
  cursor: pointer;
  position: relative;
  margin: 0 20px;
}
.con .page4 .p_c .p_tab p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--textColor);
  transition: all 0.2s linear;
}
.con .page4 .p_c .p_tab p:hover {
  color: var(--textColor);
  font-weight: 600;
}
.con .page4 .p_c .p_tab p.act {
  color: var(--textColor);
  font-weight: 600;
}
.con .page4 .p_c .p_tab p.act:after {
  width: 100%;
}
.con .page4 .p_c .p_info > div:not(:first-child) {
  display: none;
}
.con .page4 .p_c .p_info .list {
  width: 100%;
}
.con .page4 .p_c .p_info .list .c_l {
  width: 50%;
  padding-right: 7%;
}
.con .page4 .p_c .p_info .list .c_l .tit {
  font-weight: 600;
  color: #333;
}
.con .page4 .p_c .p_info .list .c_l .mes {
  color: #777;
}
.con .page4 .p_c .p_info .list .c_l .p_related .mt10 {
  margin-top: 10px;
}
.con .page4 .p_c .p_info .list .c_l .p_related .fnt_16 div {
  background: #f7f7f7;
  border-radius: 3px;
  overflow: hidden;
  padding: 6px 10px;
  margin-top: 10px;
  margin-right: 10px;
  transition: all 0.2s linear;
  display: flex;
  align-items: center;
}
.con .page4 .p_c .p_info .list .c_l .p_related .fnt_16 div:hover {
  background-color: var(--textColor);
}
.con .page4 .p_c .p_info .list .c_l .p_related .fnt_16 div:hover a {
  color: #fff;
}
.con .page4 .p_c .p_info .list .c_l .p_related .fnt_16 div:hover b {
  color: #fff;
}
.con .page4 .p_c .p_info .list .c_l .p_related .fnt_16 div img {
  height: 24px;
  max-width: 24px;
  border-radius: 3px;
  overflow: hidden;
}
.con .page4 .p_c .p_info .list .c_l .p_related .fnt_16 div b {
  color: #999;
  font-weight: 400;
}
.con .page4 .p_c .p_info .list .c_l .p_related .fnt_16 div span {
  margin-left: 4px;
}
.con .page4 .p_c .p_info .list .c_l .toPage a {
  background-color: var(--textColor);
  border-color: var(--textColor);
}
.con .page4 .p_c .p_info .list .c_l .toPage a img {
  filter: brightness(0) invert(1);
}
.con .page4 .p_c .p_info .list .c_r {
  width: 50%;
}
.con .page4 .p_c .p_info .list .c_r .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  background: #F6F9FC;
}
.con .page4 .p_c .p_info .list .c_r .swiper-slide:hover .image img {
  transform: translate(-50%, -50%) scale(0.85);
}
.con .page4 .p_c .p_info .list .c_r .image {
  position: relative;
  height: 0;
  padding-top: 72%;
}
.con .page4 .p_c .p_info .list .c_r .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 90%;
  max-height: 90%;
  transform: translate(-50%, -50%) scale(0.95);
  object-fit: cover;
  transition: all 0.4s linear;
}
.con .page4 .p_c .p_info .list .c_r .playVideo {
  position: absolute;
  width: 48px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.con .page4 .p_c .p_info .list .c_r .playVideo img {
  width: 100%;
  transition: all 0.4s linear;
}
.con .page4 .p_c .p_info .list .c_r .playVideo:hover img {
  transform: rotate(180deg);
}
.con .page4 .p_c .parent-pagination,
.con .page4 .p_c .swiper-pagination {
  bottom: 30px;
}
.con .page4 .p_c .parent-pagination .swiper-pagination-bullet,
.con .page4 .p_c .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  background: #ffffff;
  border-radius: 0;
}
.con .page4 .p_c .parent-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.con .page4 .p_c .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.con .page4 .p_c .parent-pagination {
  display: none;
}
.con .page5 {
  background: #F6F9FC;
}
.con .page5 .subTit {
  color: #777;
  text-align: center;
}
.con .page5 .image {
  text-align: center;
}
.con .page5 .image img {
  max-width: 1300px;
  width: 100%;
  cursor: pointer;
}
.con .page6 .p_c {
  gap: 20px;
}
.con .page6 .p_c .list {
  flex: 0 0 calc((100% - 20px)/2);
  padding: 60px;
  background: #f6f9fc;
  border-radius: 10px;
  transition: all 0.45s linear;
}
.con .page6 .p_c .list .c_l {
  flex: 0 0 80px;
  width: 80px;
}
.con .page6 .p_c .list .c_l img {
  width: 100%;
  transition: all 0.45s linear;
}
.con .page6 .p_c .list:hover .c_l img {
  transform: translateY(-10px);
}
.con .page6 .p_c .list:hover .c_r .tit {
  color: var(--textColor);
}
.con .page6 .p_c .list .c_r {
  flex: 1;
  margin-left: 50px;
}
.con .page6 .p_c .list .c_r .tit {
  color: #222;
}
.con .page6 .p_c .list .c_r .mes {
  color: #777;
}
.con .page6 .toPage a {
  border-color: #ccc;
  color: #222;
}
.con .page6 .toPage a img {
  filter: brightness(0);
}
.con .page6 .toPage a:hover {
  border-color: var(--textColor);
}
.con .page6 .toPage a:hover img {
  filter: brightness(0) invert(1);
}
.con .page7 {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transition: background-image 0.2s ease-in-out;
  background: #000;
}
.con .page7 .navTit {
  color: #fff;
}
.con .page7::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
}
.con .page7 .wrap {
  position: relative;
  z-index: 2;
}
.con .page7 .swiper_pro_tabBox {
  position: relative;
}
.con .page7 .swiper_pro_tab {
  max-width: 1300px;
  margin: auto;
}
.con .page7 .swiper_pro_tabBox .swiper-button-prev {
  left: 0;
}
.con .page7 .swiper_pro_tabBox .swiper-button-prev::after {
  font-size: 14px;
  color: #fff;
}
.con .page7 .con .swiper_pro_tabBox .swiper-button-next {
  right: 0;
}
.con .page7 .swiper_pro_mes_btn {
  position: absolute;
  left: calc((100% - 1440px)/2);
  bottom: 60px;
  display: flex;
  z-index: 2;
}
.con .page7 .swiper_pro_tabBox .swiper-button-next::after {
  font-size: 14px;
  color: #fff;
}
.con .page7 .swiper_pro_mes_btn .prev img {
  transform: rotate(180deg);
}
.con .page7 .swiper_pro_mes_btn .next,
.con .page7 .swiper_pro_mes_btn .prev {
  width: 44px;
  height: 44px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  transition: all 0.2s linear;
  margin: 0;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 10px;
}
.con .page7 .swiper_pro_mes_btn .next img,
.con .page7 .swiper_pro_mes_btn .prev img {
  width: 16px;
}
.con .page7 .swiper_pro_mes_btn .next:hover,
.con .page7 .swiper_pro_mes_btn .prev:hover {
  background: var(--textColor);
  color: #ffff;
  border-color: var(--textColor);
}
.con .page7 .swiper_pro_mes_btn .swiper-button-next {
  margin-left: 10px;
}
.con .page7 .swiper_pro_mes_btn .swiper-button-next::after,
.con .page7 .swiper_pro_mes_btn .swiper-button-prev::after {
  font-size: 14px;
  color: #fff;
}
.con .page7 .section_tit {
  color: #fff;
}
.con .page7 .swiper_pro_tab {
  padding-bottom: 1px;
}
.con .page7 .swiper_pro_tab .swiper-slide {
  width: auto;
  color: #fff;
  cursor: pointer;
  font-weight: 400;
}
.con .page7 .swiper_pro_tab .swiper-slide:hover {
  font-weight: 600;
}
.con .page7 .swiper_pro_tab .swiper-slide:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.2s linear;
}
.con .page7 .swiper_pro_tab .swiper-slide-thumb-active {
  font-weight: 600;
}
.con .page7 .swiper_pro_tab .swiper-slide-thumb-active::after {
  width: 100%;
}
.con .page7 .info .logo {
  height: 80px;
}
.con .page7 .info .logo img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
.con .page7 .swiper_pro_mes {
  color: #fff;
  height: 460px;
}
.con .page7 .swiper_pro_mes .image {
  height: 0;
  position: relative;
  padding-top: 56%;
}
.con .page7 .swiper_pro_mes .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s linear;
  object-fit: cover;
}
.con .page7 .gap20 {
  gap: 20px;
}
.con .page7 .swiper_pro_mes .subTit {
  line-height: 2;
  max-width: 630px;
}
.con .page7 .swiper_pro_mes .toPage3 {
  display: flex;
}
.con .page7 .swiper_pro_mes .toPage3 a {
  background-color: #fff;
  color: #222;
}
.con .page7 .swiper_pro_mes .toPage3 a img {
  filter: brightness(0.1);
}
.con .page7 .swiper_pro_mes .toPage3 a:hover {
  color: #fff;
}
.con .page7 .swiper_pro_mes .toPage3 a:hover img {
  filter: brightness(0) invert(1);
}
.con .page7 .toPage2 a {
  color: #fff;
  cursor: pointer;
}
.con .page7 .toPage2 a img {
  filter: brightness(0) invert(1);
  opacity: 1;
}
.con .page7 .toPage2 a:hover {
  border-color: #fff;
}
.con .page7 .toPage2 a:hover img {
  filter: brightness(0) invert(1);
  transform: translateX(0px);
  margin-left: 14px;
}
.con .page7 .playVideo .icon {
  width: 44px;
  cursor: pointer;
  transition: all 0.4s linear;
}
.con .page7 .playVideo .icon:hover {
  transform: rotate(60deg);
}
.con .page7 .other {
  width: 100%;
}
.con .page7 .other .tit {
  color: #fff;
}
.con .page7 .other .other_f .other_logo {
  align-items: center;
}
.con .page7 .other .other_f .other_logo img {
  max-height: 32px;
  margin-right: 40px;
}
.con .page8 {
  background: #F6F9FC;
}
.con .page8 .swiper-pagination {
  position: static;
  width: 100%;
  text-align: center;
}
.con .page8 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 0;
  margin: 0 10px;
}
.con .page8 .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 91, 254, 0.06);
}
.con .page8 .swiper-slide .image {
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 56%;
  overflow: hidden;
}
.con .page8 .swiper-slide .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transition: all 0.4s linear;
}
.con .page8 .swiper-slide .image:hover img {
  transform: scale(1.05);
}
.con .page8 .swiper-slide:hover .tit a {
  color: var(--textColor);
}
.con .page8 .swiper-slide .info {
  background-color: #fff;
  padding: 30px;
  color: #333;
}
.con .page8 .swiper-slide .info .tit {
  line-height: 1.5;
  height: 3em;
}
.con .page8 .swiper-slide .info .p_f {
  color: #777;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.con .page8 .swiper-slide .info .p_f a {
  color: #777;
}
.con .page8 .swiper-slide .info .p_f a:hover {
  color: var(--textColor);
}
.con .page8 .swiper-slide .info .toPage2 a {
  cursor: pointer;
}
.con .page8 .swiper-slide .info .toPage2 a::after {
  background: var(--textColor);
}
.con .page9 .p_l {
  flex: 1;
  overflow: hidden;
}
.con .page9 .p_l .p_c ul li {
  padding: 42px 0;
  color: #222;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.con .page9 .p_l .p_c ul li:nth-child(n+6) {
  display: none;
}
.con .page9 .p_l .p_c ul li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.con .page9 .p_l .p_c ul li.on svg {
  transform: rotate(180deg);
}
.con .page9 .p_l .p_c ul li.on svg path {
  fill: var(--textColor);
}
.con .page9 .p_l .p_c ul li.on p {
  color: var(--textColor);
}
.con .page9 .p_l .p_c ul li .dis_flex {
  flex: 1;
  padding-right: 20px;
}
.con .page9 .p_l .p_c ul li .dis_flex p {
  flex: 1;
}
.con .page9 .p_l .p_c ul li span {
  width: 8px;
  height: 8px;
  background-color: var(--textColor);
  margin-right: 12px;
  transform: translateY(12px);
}
.con .page9 .p_l .p_c ul li svg {
  width: 14px;
  align-self: flex-start;
  transform: translateY(6px);
  transition: all 0.4s linear;
}
.con .page9 .p_l .p_c ul li .info {
  margin-top: 20px;
  padding-left: 20px;
  color: #777;
  display: none;
}
.con .page9 .p_l .p_c ul li .info a {
  color: #777;
  text-decoration: underline;
}
.con .page9 .p_l .p_c ul li .info a:hover {
  color: var(--textColor);
}
.con .page9 .p_l .p_c ul.on li:nth-child(n+6) {
  display: block;
  /* 或 block，根据实际布局调整 */
}
.con .page9 .p_l .p_c .toPage2 svg {
  margin-left: 10px;
  transition: all 0.4s linear;
}
.con .page9 .p_l .p_c .toPage2 a:hover svg path {
  fill: #005bfe;
}
.con .page9 .p_l .p_c ul.on ~ div .toPage2 a svg {
  transform: rotate(180deg);
}
.con .page10 {
  background: url(../img/productJZ_p8-1.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
}
.con .page10 .tit {
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.con .page10 .subTit {
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
.con .page10 svg {
  margin: 0 20px;
}
.con .page10 .toPage3 a {
  background: #fff;
  color: #333;
  font-weight: 600;
  min-width: 200px;
  justify-content: center;
  height: 52px;
}
.con .page10 .toPage3 a:hover {
  background: var(--textColor);
  border-color: #fff;
}
.con .page10 .toPage3 a:hover img {
  filter: brightness(0) invert(1);
}
.downinfo {
  position: absolute;
  left: 0;
  top: 100%;
  border-radius: 5px;
  background-color: #fff;
  padding: 10px 0;
  display: none;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}
.downinfo a {
  color: #333 !important;
  height: auto;
  line-height: 2;
  border: none !important;
  background: transparent !important;
}
.downinfo a:hover {
  color: var(--textColor) !important;
}
.downinfo a::before {
  content: none;
}
body.JX {
  overflow-x: hidden;
  background: #F6F9FC;
}
body.JX .con .page1 .p_l .swiper1_gallery .swiper-slide .image {
  padding: 0;
  height: auto;
}
body.JX .con .page1 .p_l .swiper1_gallery .swiper-slide .image img {
  position: static;
}
body.JX .con .page1 .p_l .swiper1_gallery .swiper-slide {
  background: #deecff;
}
body.JX .con .page1 .p_l .swiper1_gallery .swiper-slide:hover img {
  transform: scale(1);
}
body.JX .con .page1 .p_l {
  width: 920px;
  order: 1;
}
body.JX .con .page1 .p_r {
  flex: 1;
  margin-left: 0;
  margin-right: 5.5%;
}
.con .page7 .swiper_pro_mes .moShow {
  display: none !important;
}
#videoPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}
#videoPopup .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#videoPopup .videoCon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#videoPopup .videoCon #closeVideoBtn {
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 10px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
#videoPopup .videoCon #closeVideoBtn svg {
  transition: all 0.2s linear;
}
#videoPopup .videoCon #closeVideoBtn:hover svg {
  transform: rotate(90deg);
}
#videoPopup .videoCon .video-container {
  width: 100%;
}
#videoPopup .videoCon .video-container video {
  width: 100%;
}
#formPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}
#formPopup .tit {
  text-align: center;
}
#formPopup .tit:after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #277ff2;
  margin: 10px auto 0;
}
#formPopup .layui-form .layui-form-select .layui-edge {
  display: inline-block;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border: none;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,<svg t='1700470070458' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2473' xmlns:xlink='http://www.w3.org/1999/xlink' width='32' height='32'><path d='M542.4 689.152L246.656 393.344a32 32 0 0 0-45.312 45.312l316.8 316.8a31.936 31.936 0 0 0 24.256 9.28 31.936 31.936 0 0 0 24.256-9.344l316.8-316.8a32 32 0 0 0-45.312-45.248l-295.744 295.808z' fill='%23999999' p-id='2474'></path></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0;
  background-position: center center;
  pointer-events: none;
  /* 确保点击穿透到按钮 */
}
#formPopup .layui-form input {
  border: none;
  height: 100%;
  width: 100%;
  background: transparent;
}
#formPopup .layui-form input::placeholder {
  color: #777;
}
#formPopup .layui-form .form_tit {
  color: #FF0000;
}
#formPopup .layui-form .form_input {
  margin-bottom: 20px;
  position: relative;
}
#formPopup .layui-form .reading {
  position: relative;
}
#formPopup .layui-form i.danger {
  visibility: hidden;
  position: absolute;
  left: 20px;
  top: 100%;
  font-size: 12px;
  color: red;
  transition: all 0.2s linear;
}
#formPopup .layui-form .danger.act,
#formPopup .layui-form .layui-form-danger ~ .danger {
  visibility: visible !important;
}
#formPopup .layui-form .layui-input {
  width: 100%;
  height: 44px;
  border-radius: 5px;
  padding: 0 20px;
  border: none;
  border: solid 1px #e1ecf6;
}
#formPopup .layui-form .layui-input:focus {
  border-color: var(--textColor) !important;
  box-shadow: none;
}
#formPopup .layui-form .tips {
  position: absolute;
  left: 30px;
  top: 100%;
  color: red;
  font-size: 10px;
}
#formPopup .layui-form .gap10 {
  gap: 10px;
}
#formPopup .layui-form .flex_1 {
  flex: 1;
  position: relative;
}
#formPopup .layui-form .flex_3 {
  flex: 0 0 33.33%;
  position: relative;
}
#formPopup .layui-form .layui-form-select dl {
  top: calc(100% + 5px);
  bottom: auto;
  border-radius: 5px;
}
#formPopup .layui-form .layui-form-select dl::-webkit-scrollbar {
  width: 6px;
  border-radius: 8px;
}
#formPopup .layui-form .layui-form-select dl::-webkit-scrollbar-thumb {
  width: 100%;
  background: var(--textColor);
  border-radius: 8px;
  cursor: pointer;
}
#formPopup .layui-form .layui-form-select dl dt {
  font-size: 14px;
}
#formPopup .layui-form .layui-form-select dl dd.layui-this {
  color: var(--textColor);
  font-weight: 400;
}
#formPopup .layui-form .sub button {
  position: relative;
}
#formPopup .layui-form .sub_img {
  width: 36px;
  position: absolute;
  right: 20%;
  bottom: 0;
  /* 波纹动画关键帧 */
}
#formPopup .layui-form .sub_img img {
  transform: translateY(10px);
  width: 100%;
}
#formPopup .layui-form .sub_img::after {
  content: "";
  position: absolute;
  right: 20%;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 0;
  animation: wave 2s infinite;
}
#formPopup .layui-form .sub_img::before {
  content: "";
  position: absolute;
  right: 20%;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
  animation: wave 2s infinite 0.5s;
}
@keyframes wave {
  0% {
    transform: scale(1);
    /* 初始大小（与图片一致） */
    opacity: 1;
    /* 初始不透明 */
  }
  100% {
    transform: scale(3);
    /* 最终放大3倍（扩散范围） */
    opacity: 0;
    /* 最终透明（模拟波纹消失） */
  }
}
#formPopup .layui-form .layui-form-checkbox {
  margin-top: 4px;
}
#formPopup .layui-form .layui-form-checkbox:hover i {
  border-color: var(--textColor);
}
#formPopup .layui-form .layui-form-checkbox.layui-form-checked i {
  border-color: var(--textColor) !important;
  background: var(--textColor);
}
#formPopup .layui-form .layui-btn-primary {
  color: var(--textColor);
}
#formPopup .layui-form .layui-form-mid {
  position: absolute;
  right: 5px;
  top: 5px;
  height: calc(100% - 10px);
  padding: 0 !important;
  margin: 0;
}
#formPopup .layui-form .layui-form-mid button {
  height: 100%;
  line-height: normal;
  background: var(--textColor);
  border-radius: 5px;
  color: #fff;
  border: none;
  transition: all 0.2s linear;
}
#formPopup .layui-form .layui-form-mid button:hover,
#formPopup .layui-form .layui-form-mid button:focus {
  border: none;
  opacity: 1;
  box-shadow: 0px 0px 10px 6px rgba(0, 91, 254, 0.2);
}
#formPopup .layui-form .sub button {
  width: 100%;
  height: 50px;
  background: var(--textColor);
  border-radius: 5px;
  transition: all 0.2s linear;
}
#formPopup .layui-form .sub button:hover,
#formPopup .layui-form .sub button:focus {
  opacity: 1;
  box-shadow: 0px 0px 10px 6px rgba(0, 91, 254, 0.2);
}
#formPopup .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#formPopup .videoCon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 500px;
  padding: 40px 60px;
  transform: translate(-50%, -50%);
  background: #fff;
}
#formPopup .videoCon #closeVideoBtn {
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 10px;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}
#formPopup .videoCon #closeVideoBtn svg {
  transition: all 0.2s linear;
}
#formPopup .videoCon #closeVideoBtn:hover svg {
  transform: rotate(90deg);
}
#formPopup .videoCon .video-container {
  width: 100%;
}
#formPopup .videoCon .video-container video {
  width: 100%;
}
/*图片放大*/
#iv-viewer {
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  opacity: 0;
  display: none;
}
#iv-viewer.iv-active {
  opacity: 1;
  display: block;
}
#iv-viewer > div {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#iv-viewer .iv-close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
#iv-viewer .zoom-controls {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  display: flex;
  align-items: center;
}
#iv-viewer img {
  max-width: 100%;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
#iv-viewer .zoom-controls div {
  margin: 0 10px;
  cursor: pointer;
}
#iv-viewer .zoom-controls div svg {
  height: 24px;
}
@media only screen and (max-width: 1200px) {
  #iv-viewer .iv-close {
    position: absolute;
    right: 20px;
    top: calc(13.33vw + 20px);
  }
}
.layui-layer-setwin .layui-layer-close2:hover {
  background-color: var(--textColor);
}
.layui-layer-page {
  max-width: 1440px;
}
.layui-layer-page .layui-layer-content {
  height: 100%;
  padding: 40px;
  max-height: 80vh;
}
.layui-layer-msg {
  display: none !important;
}
#subMes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}
#subMes > div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#subMes div {
  position: relative;
}
#subMes .close {
  position: absolute;
  width: 86px;
  height: 58px;
  border-radius: 11px;
  background: rgba(20, 20, 20, 0.6);
  top: 0;
  right: -54px;
  z-index: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  cursor: pointer;
}
#subMes .close svg {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#subMes .info {
  padding: 30px;
  z-index: 2;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  position: relative;
}
#subMes .info h1 {
  font-weight: 600;
  text-align: center;
}
#subMes .info p {
  text-align: center;
}
#subMes .info img {
  max-width: 140px;
  width: 100%;
  margin-top: 15px;
}
.hide {
  display: none;
}
@media only screen and (max-width: 1920px) {
  .con .bread .wrap {
    padding: 10px 3vw;
  }
  .fixed.act .wrap {
    padding: 10px 0;
  }
  .con .bread .wrap .d_r {
    gap: 2vw;
  }
  .con .page9 .p_l .p_c ul li {
    padding: 2.1vw 0;
  }
  .con .page8 .swiper-slide .info {
    padding: 1.5vw;
  }
  .con .page2 .p_c .list {
    flex: 0 0 calc((100% - 6vw) / 3);
    margin-right: 3vw;
  }
  .con .page3 .p_c .list {
    padding: 3vw;
  }
  .con .page6 .p_c .list {
    padding: 3vw;
  }
  .con .page6 .p_c .list .c_r {
    margin-left: 2.5vw;
  }
  .con .page10 svg {
    margin: 0 1vw;
  }
}
@media screen and (max-width: 1440px) {
  .banner {
    margin-top: 60px;
  }
  .con .page7 .info .logo {
    height: 60px;
  }
  .fixed.act {
    top: 60px;
  }
  .fixed.act.top {
    top: 0;
  }
  .con .page7 .info .logo {
    height: 40px;
  }
  body.JX .con .page1 .p_l,
  .con .page1 .p_l {
    width: 50%;
  }
  .con .page7 .other .other_f .other_logo img {
    max-height: 26px;
    margin-right: 20px;
  }
  .con .page6 .p_c .list .c_l {
    width: 60px;
    flex: 0 0 60px;
  }
  .con .page3 .p_c .list .image {
    width: 60px;
  }
  .con .page4 .p_c .p_info .list .c_l .p_related a img {
    height: 20px;
    max-width: 20px;
  }
  .con .page2 .p_c .list span {
    transform: translateY(8px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .banner {
    margin-top: 80px;
  }
  .fixed.act {
    top: 80px;
  }
  .fixed.act.top {
    top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .bread .wrap .d_l img {
    height: 28px;
  }
  .con .page4 .p_c .p_info .list .c_l .p_related .fnt_16 div {
    background: #fff;
  }
  .con .page7 .info .logo {
    height: 40px;
  }
  .bread .wrap .d_btn .toPage a img {
    width: 16px;
  }
  .bread .wrap .d_l span {
    font-size: 16px;
  }
  .banner .info {
    top: 10%;
    transform: translateX(-50%);
  }
  .banner .info .tit {
    text-align: center;
    color: #333;
  }
  .fixed.act {
    top: 13.33vw;
  }
  .fixed.act.top {
    top: 0;
  }
  .banner {
    position: relative;
  }
  .banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  }
  .banner .info .mes,
  .banner .info .subTit {
    text-align: center;
  }
  .banner .info .mes {
    color: #333;
  }
  .banner .info .toPage {
    justify-content: center;
  }
  .bread .moBread {
    align-self: center;
  }
  .bread .wrap .d_btn .toPage:nth-child(2) {
    display: none;
  }
  .bread .wrap .d_l {
    gap: 10px;
  }
  .bread .wrap .d_btn {
    order: 2;
    margin-left: 10px;
  }
  .bread .wrap .d_btn .toPage a {
    min-width: auto;
    padding: 0 12px;
    height: 30px;
  }
  .con .page1 .p_l .swiper1_thumbs .swiper-slide span {
    margin-bottom: 10px;
  }
  .bread {
    border-bottom: 1px solid rgba(13, 19, 26, 0.1);
  }
  .con .bread .wrap {
    padding: 10px 0;
  }
  .banner .info {
    text-align: center;
  }
  .banner .info .toPage a img {
    width: 10px;
  }
  .bread .wrap .d_r {
    display: none;
  }
  .bread .moBread {
    display: block;
  }
  .bread .wrap .d_l span {
    display: none;
  }
  .bread .wrap .d_l a:not(:last-child) {
    display: none;
    visibility: hidden;
  }
  .bread .moBread ul {
    top: 30px;
  }
  .bread {
    background: transparent;
  }
  .bread .wrap .d_l {
    align-self: center;
  }
  .bread .wrap {
    flex-wrap: wrap;
    position: static;
    transform: none;
    width: 90%;
    padding: 20px 0;
    box-shadow: none;
    background: transparent;
  }
  .bread .wrap .d_r {
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    align-items: normal;
    line-height: 1;
  }
  .banner {
    margin-top: 13.33vw;
  }
  .banner img {
    height: auto;
  }
  .con .page4 .p_c .p_info .list .c_l {
    width: 100%;
    flex: 0 0 100%;
    padding: 4vw 4vw 8vw 4vw;
    order: 1;
    margin-top: 0;
    text-align: center;
  }
  .con .page4 .p_c .p_info .list .c_r {
    width: 100%;
  }
  .con .page4 .p_c .p_info .list .c_l .tit {
    text-align: center;
  }
  .con .page4 .p_c .p_info .list .c_r .playVideo {
    width: 40px;
    height: 40px;
  }
  .con .page6 .p_c .list {
    flex: 0 0 100%;
    padding: 6vw;
  }
  .con .page6 .p_c .list .c_l {
    width: 40px;
    flex: 0 0 40px;
  }
  .con .page6 .p_c .list .c_r {
    margin-left: 5vw;
  }
  .con .page7 .swiper_pro_mes {
    height: auto;
  }
  .con .page7 .swiper_pro_mes .subTit {
    max-width: 100%;
  }
  .con .page7 .swiper_pro_mes .moShow {
    display: block !important;
  }
  .con .page2 .p_c {
    margin-top: 8vw;
  }
  .con .page2 .p_c .list {
    flex: 0 0 100%;
    margin-top: 20px;
  }
  .con .page2 .p_c .list:first-child {
    margin: 0;
  }
  .con .page2 .p_c .list span {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
  }
  .con .page2 .p_c .list div {
    margin-left: 10px;
  }
  .con .page3 .p_c .list {
    padding: 6vw;
    flex: 0 0 100%;
  }
  .con .page3 .p_c .list .image {
    width: 40px;
  }
  .con .page4 .p_c .p_tab {
    justify-content: flex-start;
    font-size: 16px;
  }
  .con .page4 .p_c .p_tab p {
    margin: 0;
    margin-bottom: 10px;
    margin-right: auto;
  }
  .con .page7 {
    height: auto;
    background: #fff;
    padding-top: 0;
    padding-bottom: 10vw;
  }
  .con .page7::before {
    content: none;
  }
  .con .page7 .section_tit {
    color: #222;
  }
  .con .page7 .toPage2 {
    transform: none;
  }
  .con .page7 .swiper_pro_tab .swiper-slide {
    color: #777;
    width: 33.33%;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .con .page7 .swiper_pro_tab .swiper-slide:nth-child(n + 9) {
    display: none;
  }
  .con .page7 .swiper_pro_tab .swiper-wrapper {
    flex-wrap: wrap;
  }
  .con .page7 .onBtn {
    width: 33.33%;
    position: absolute;
    bottom: 12px;
    right: 0;
    z-index: 2;
    font-size: 16px;
  }
  .con .page7 .offBtn {
    width: 33.33%;
    position: absolute;
    bottom: 12px;
    right: 0;
    z-index: 2;
    font-size: 16px;
    display: none;
    color: #777;
  }
  .con .page7 .toPage2 {
    position: static;
  }
  .con .page7 .swiper-pagination {
    position: static;
    margin-top: 6vw;
  }
  .con .page7 .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 0.1;
    background: #000;
    border-radius: 0;
    transition: all 0.4s linear;
  }
  .con .page7 .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--textColor);
  }
  .con .page7 .swiper_pro_mes {
    background: #f6f9fc;
    border-radius: 10px;
    margin-top: 6vw;
  }
  .con .page7 .swiper_pro_mes .toPage a {
    border-color: #777;
    color: #777;
    background: transparent;
  }
  .con .page7 .swiper_pro_mes .toPage a img {
    opacity: 0.8;
  }
  .con .page7 .swiper_pro_mes .swiper-slide .info {
    padding: 8vw;
    background: #6481ce;
  }
  .con .page7 .swiper_pro_mes .swiper-slide .info .tit {
    color: #222;
    font-size: 18px;
  }
  .con .page7 .playVideo .icon {
    width: 40px;
  }
  .con .page7 .other .other_f .other_logo img {
    max-height: 20px;
    margin-right: 10px;
  }
  .con .page7 .toPage2 {
    margin-top: 6vw;
  }
  .con .page7 .toPage2 a:hover {
    color: #fff;
  }
  .con .page7 .swiper_pro_mes .swiper-slide .info .other_f {
    flex-wrap: wrap;
  }
  .con .page7 .swiper_pro_mes .swiper-slide .info .subTit {
    color: #fff;
  }
  .con .page7 .swiper_pro_tab .swiper-slide-thumb-active span {
    border-bottom: 1px solid var(--textColor);
  }
  .con .page7 .swiper_pro_tab .swiper-slide-thumb-active {
    font-weight: 600;
    color: var(--textColor);
    border: none;
  }
  .con .page7 .toPage2 {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .con .page7 .toPage2 a {
    color: #fff;
  }
  .con .page7 .toPage2 a img {
    opacity: 1;
  }
  .con .page7 .offBtn {
    position: static;
    margin-left: auto;
  }
  .con .page7 .swiper_pro_mes_btn {
    display: none;
  }
  .con .page7 .offBtn {
    display: none;
  }
  .con .page7 .swiper_pro_mes .toPage.moShow {
    display: inline-block !important;
  }
  .con .page7 .swiper_pro_mes .toPage.moShow a {
    border-color: #fff;
    color: #fff;
    background: transparent;
  }
  .con .page7 .swiper_pro_mes .toPage.moShow a img {
    opacity: 1;
    filter: brightness(0) invert(1);
  }
  .con .page7 .swiper_pro_mes .toPage.moShow a:hover img {
    filter: brightness(0) invert(1);
  }
  .con .page9 .p_l .p_c ul li span {
    margin-right: 10px;
    transform: translateY(10px);
  }
  .con .page8 {
    overflow: hidden;
  }
  .con .page8 .swiper-slide {
    flex: 0 0 100%;
    box-shadow: 0 4px 6px rgba(0, 91, 254, 0.06);
  }
  body.JX .con .page1 .p_l,
  .con .page1 .p_l {
    width: 100%;
  }
  .con .page1 .p_l {
    order: 1;
  }
  .con .page1 .p_r .mes {
    font-size: 16px;
  }
  .con .page1 .navTit {
    text-align: center;
  }
  .con .page1 .p_r .gap {
    justify-content: center;
  }
  .con .page1 .p_r {
    order: 0;
    margin-right: 0;
    padding-top: 0;
  }
  .con .page1 .p_l {
    margin-top: 6vw;
  }
  .con .page1 .p_r {
    margin-left: 0%;
  }
  .con .page1 .p_r .toPage a {
    min-width: auto;
  }
  .con .page1 .p_r .gap {
    flex-wrap: wrap;
  }
  .con .page9 .p_l .p_c ul li {
    padding: 2.5vw 0;
  }
  .con .page9 .p_l .p_c ul {
    padding-right: 6vw;
  }
  .con .page8 .swiper-slide .info {
    padding: 3vw;
  }
  .con .page7 .navTit {
    color: #333;
  }
  .con .page9 .p_l {
    flex: 0 0 100%;
  }
  .con .page9 .p_l .p_c ul {
    height: auto;
  }
  .con .page9 .gap {
    gap: 20px;
  }
  .con .page10 .toPage3 a {
    min-width: 120px;
    height: 40px;
  }
  .con .page8 .swiper-slide .info .tit {
    font-size: 16px;
  }
  .con .page7 .swiper_pro_mes .other {
    margin-top: 0;
  }
  .con .page9 .p_l .p_c ul li {
    font-size: 16px;
  }
  .con .page7 .swiper_pro_tab .swiper-slide {
    text-align: center;
  }
  .con .page4 .p_c .p_tab p {
    text-align: center;
    margin-right: 10px;
  }
  .con .page4 .p_c .p_tab p:last-child {
    margin-right: 0;
  }
  .con .page4 .p_c .parent-pagination {
    display: flex;
    position: static;
    margin-top: 6vw;
    justify-content: center;
  }
  .con .page4 .p_c .p_info .list {
    background: #f6f9fc;
    border-radius: 10px;
  }
  .con .page4 .p_c .parent-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 0.1;
    background: #000;
    border-radius: 0;
    transition: all 0.4s linear;
  }
  .con .page4 .p_c .parent-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--textColor);
  }
  .con .page4 .p_c .p_tab {
    justify-content: center;
  }
  .con .page4 .p_c .p_info .list .c_l .p_related .fnt_20 {
    text-align: center;
  }
  .con .page4 .p_c .p_info .list .c_l .p_related .mt10 {
    justify-content: center;
  }
}
