@charset "UTF-8";
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
}

@font-face {
  font-family: "Mont For Anker";
  font-weight: 600;
  src: url("../font/MONTFORANKER-REGULAR.TTF") format("truetype");
}
@font-face {
  font-family: "Mont For Anker";
  font-weight: 700;
  src: url("../font/MONTFORANKER-SEMIBOLD.TTF") format("truetype");
}
@font-face {
  font-family: "Mont For Anker";
  font-weight: 800;
  src: url("../font/MONTFORANKER-BOLD.TTF") format("truetype");
}
body, html {
  font-size: 0.8333333333vw;
}

@media (min-width: 1024px) and (max-width: 1366px) {
  body, html {
    font-size: 1vw;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  body, html {
    font-size: 1.1111111111vw;
  }
}
@media (max-width: 767px) {
  body, html {
    font-size: 14px;
  }
}
body {
  font-family: "Mont For Anker", sans-serif !important;
}
body * {
  outline: none;
}

p {
  padding: 0;
  margin: 0;
}

:root {
  --color-bs: #fff;
  --color-ys: #1D1D1D;
  --color-zt: #0E6AAB;
  --head-height: 8.125rem;
  --cbasta: 5.729%;
  --pandrd: 5.375rem;
}
@media (max-width: 768px) {
  :root {
    --cbasta: 4%;
    --pandrd: 2rem;
  }
}

.wh {
  padding: 0 var(--cbasta);
}

.flex {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-z {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_left {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_left1 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex2 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex3 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex21 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.more-msl {
  display: inline-block;
  color: var(--color-zt);
  text-decoration: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  font: 400 1rem/3.125rem "Mont For Anker";
  border-radius: 1.5625rem;
  width: 10rem;
  text-align: center;
  border: 1px solid var(--color-zt);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
       transition-duration: 0.3s;
}
@media (max-width: 768px) {
  .more-msl {
    line-height: 2.8rem;
    width: 9rem;
    font-size: 0.875rem;
  }
}
.more-msl:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-zt);
  border-radius: 100%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
   -ms-transform: scale(0);
    -o-transform: scale(0);
       transform: scale(0);
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
  -webkit-transition-duration: 0.6s;
  -moz-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
       transition-duration: 0.6s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
       transition-timing-function: ease-out;
}
.more-msl:hover {
  color: #fff;
}
.more-msl:hover::before {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
   -ms-transform: scale(2);
    -o-transform: scale(2);
       transform: scale(2);
}
.more-msl.bs {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}
.more-msl.bs:before {
  background: #fff;
}
.more-msl.bs:hover {
  color: var(--color-zt);
}
.more-msl.hs {
  color: #8E8E8E;
  background: transparent;
  border-color: #8E8E8E;
}
.more-msl.hs:before {
  background: var(--color-zt);
}
.more-msl.hs:hover {
  color: #fff;
  border-color: var(--color-zt);
}
.more-msl.ls {
  color: var(--color-zt);
  background: transparent;
  border-color: var(--color-zt);
}
.more-msl.ls:before {
  background: var(--color-zt);
}
.more-msl.ls:hover {
  color: #fff;
}

.more-b {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.25rem 3.375rem;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  line-height: 1.5em;
  border: 1px solid var(--color-zt);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-zt);
  border-radius: 0.375rem;
  letter-spacing: 1.4px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 768px) {
  .more-b {
    padding: 0.85rem 1.85rem;
  }
}
.more-b:hover {
  background: var(--color-zt);
  color: #fff;
}
.more-b.hs {
  border-color: #13315B;
  background: #13315B;
  color: #fff;
}
.more-b.hs::after {
  background: #fff;
}
.more-b.hs:hover {
  color: #13315B;
}
.more-b.bs {
  color: #fff;
  border-color: #fff;
}
.more-b.bs:hover {
  background: #fff;
  color: var(--color-zt);
}

@media (max-width: 990px) {
  body {
    padding-bottom: 0;
    overflow: hidden;
  }
}
@media (max-width: 990px) {
  .pc-hidden {
    display: none;
  }
}
.m-hidden {
  display: none;
}

@media (max-width: 990px) {
  .m-hidden {
    display: block;
  }
}
@media (max-width: 990px) {
  .m-img {
    padding-bottom: 66%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-imgny {
    padding-bottom: 70%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-imgny > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .pc-banner .swiper-slide.a {
    padding-bottom: -webkit-calc(70vh - 60px);
    padding-bottom: -moz-calc(70vh - 60px);
    padding-bottom: calc(70vh - 60px);
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .pc-banner .swiper-slide.a .img {
    position: static !important;
  }
  .pc-banner .swiper-slide.a .img > img {
    position: absolute !important;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-img-news {
    padding-bottom: 68.202764977%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img-news img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
body {
  padding-top: -webkit-calc(var(--head-height) + 3.75rem);
  padding-top: -moz-calc(var(--head-height) + 3.75rem);
  padding-top: calc(var(--head-height) + 3.75rem);
}

.head {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 99;
}
.head .head1 {
  height: var(--head-height);
  position: relative;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  background: #fff;
}
.head .head1 .logo {
  height: var(--head-height);
}
.head .head1 .logo a img {
  height: 3.3506rem;
}
.head .head1 .formm {
  border: 1px solid #D9D9D9;
  border-radius: 0.375rem;
  margin: 0 4% 0 10%;
  -webkit-flex: auto;
     -moz-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.head .head1 .formm .conx button {
  width: 3.125rem;
  background: transparent;
}
.head .head1 .formm .conx button i {
  color: #1D1D1D;
  font-size: 1.35rem;
  line-height: 3.125rem;
}
.head .head1 .formm .conx input {
  width: -webkit-calc(99% - 3.125rem);
  width: -moz-calc(99% - 3.125rem);
  width: calc(99% - 3.125rem);
  line-height: 3.125rem;
  font-size: 1rem;
  background: transparent;
}
.head .head1 .toubuas a.more-sxa {
  gap: 0.75rem;
  border: 1px solid var(--color-zt);
  border-radius: 0.375rem;
  padding: 0.75em 3.25rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.head .head1 .toubuas a.more-sxa i {
  display: block;
  font-size: 0;
  width: 1.5rem;
}
.head .head1 .toubuas a.more-sxa i img {
  width: 100%;
}
.head .head1 .toubuas a.more-sxa p {
  color: var(--color-zt);
  font-size: 0.875rem;
  line-height: 1.9285714286em;
  font-weight: 600;
}
.head .head1 .toubuas a.more-sxa:hover {
  background: var(--color-zt);
}
.head .head1 .toubuas a.more-sxa:hover i img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.head .head1 .toubuas a.more-sxa:hover p {
  color: #fff;
}
.head .head1 .toubuas a.more-sxb {
  display: block;
  margin-left: 2rem;
}
.head .head1 .toubuas a.more-sxb i {
  display: block;
  font-size: 0;
  width: 1.5rem;
}
.head .head1 .toubuas a.more-sxb i img {
  width: 100%;
}
.head .head1 .toubuas a.more-sxb span {
  display: block;
  background: var(--color-zt);
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  color: #fff;
  font-size: 0.625rem;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: -0.25rem;
  left: 1rem;
}

.logsxa-cont {
  position: relative;
}
.logsxa-cont .cont-p {
  position: absolute;
  right: -50%;
  top: -webkit-calc(100% + 2rem);
  top: -moz-calc(100% + 2rem);
  top: calc(100% + 2rem);
  width: 14.375rem;
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
  z-index: 1;
  line-height: 1.5em;
  padding: 1.25rem 1.25rem;
}
.logsxa-cont .cont-p .tit {
  color: #1D1D1D;
  font-size: 0.875rem;
  line-height: 1.5em;
  padding: 0 0.75rem;
  font-weight: 800;
}
.logsxa-cont .cont-p a.gb-z {
  position: absolute;
  right: 1rem;
  top: 0.75rem;
  display: block;
  color: #A2A2A2;
}
.logsxa-cont .cont-p a.gb-z i {
  font-size: 1.125rem;
  font-weight: 600;
}
.logsxa-cont .cont-p .asx_list1 {
  margin-top: 1rem;
}
.logsxa-cont .cont-p .asx_list1 li a {
  display: block;
  color: #000000;
  font-size: 0.8125rem;
  line-height: 1.5em;
  padding: 0.65rem 0.75rem;
}
.logsxa-cont .cont-p .asx_list1 li a:hover {
  background: var(--color-zt);
  color: #fff;
}

.weha-a {
  background-color: #292929;
}
.weha-a .logsxa-cont .cont-p {
  z-index: 9;
  top: -webkit-calc(100% + 1rem);
  top: -moz-calc(100% + 1rem);
  top: calc(100% + 1rem);
}

.weha-a .toubuas {
  gap: 2rem;
  padding: 1.125rem 0;
}

.weha-a .toubuas a.more-ax {
  color: #FEFFFF;
  font-size: 1rem;
  line-height: 1.5em;
  position: relative;
}

.weha-a .toubuas a.more-ax span {
  display: block;
  background: var(--color-zt);
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  color: #fff;
  font-size: 0.625rem;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: -0.25rem;
  right: -0.5rem;
}

.weha-a .toubuas a.more-ax i {
  font-size: 1rem;
}
.weha-a .toubuas a.more-ax i img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.weha-a .toubuas .logsxa-cont a.more-ax i {
  font-size: 1.5rem;
}

.m-ssk {
  background: #F5F6F7;
  padding: 0.85rem 4%;
}
.m-ssk form {
  width: 100%;
  line-height: 2.5rem;
  overflow: hidden;
  position: relative;
}
.m-ssk form .conx input {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 0.875rem;
  line-height: 2.85rem;
  border: none;
  background: transparent;
  padding: 0 1em;
  color: #333;
  border: 1px solid rgba(51, 51, 51, 0.4);
  border-right: none;
}
.m-ssk form .conx button {
  width: 6.25rem;
  background: var(--color-zt);
  color: #fff;
  font-size: 0.875rem;
  line-height: 2.85rem;
  height: -webkit-calc(2.85rem + 2px);
  height: -moz-calc(2.85rem + 2px);
  height: calc(2.85rem + 2px);
  border: 1px solid var(--color-zt);
}

.head2 {
  background: #F5F6F7;
  position: relative;
}
.head2 .nav_a1 > li {
  float: left;
  position: relative;
}
.head2 .nav_a1 > li:nth-child(1) {
  position: static;
}
.head2 .nav_a1 > li a {
  display: block;
  color: #1D1D1D;
}
.head2 .nav_a1 > li > a {
  font-size: 1rem;
  padding: 0 2rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  font-weight: 700;
  line-height: 3.75rem;
  position: relative;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
}
.head2 .nav_a1 > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0.3125rem;
  background: var(--color-zt);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.head2 .nav_a1 > li > a i {
  font-size: 0.75rem;
  margin-left: 0.25rem;
}
.head2 .nav_a1 > li > a span {
  position: relative;
  display: block;
}
.head2 .nav_a1 > li > a span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  height: 0.5rem;
  width: 100%;
}
.head2 .nav_a1 > li .sec {
  position: absolute;
  top: 100%;
  width: 160%;
  max-width: inherit;
  left: 0%;
  background: #fff;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(0) translateY(20px);
     -moz-transform: translateX(0) translateY(20px);
      -ms-transform: translateX(0) translateY(20px);
       -o-transform: translateX(0) translateY(20px);
          transform: translateX(0) translateY(20px);
  padding: 1rem 0;
  text-align: left;
}
.head2 .nav_a1 > li .sec > a {
  color: rgba(29, 29, 29, 0.7);
  font-size: 1rem;
  line-height: 1.35em;
  padding: 0.85rem 1em;
}
.head2 .nav_a1 > li .sec > a:hover {
  color: var(--color-zt);
  background: #f0f0f0;
}
.head2 .nav_a1 > li .sec1 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
     -moz-transform: translateY(20px);
      -ms-transform: translateY(20px);
       -o-transform: translateY(20px);
          transform: translateY(20px);
  padding: 2rem 0 4rem;
  text-align: left;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b1 {
  width: 29.4117647059%;
  padding-right: 6.1176470588%;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b1 a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 700;
  color: #1D1D1D;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b1 a p {
  width: -webkit-calc(95% - 1rem);
  width: -moz-calc(95% - 1rem);
  width: calc(95% - 1rem);
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b1 a i {
  font-size: 0.75rem;
  color: #333;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b1 a.on {
  color: var(--color-zt);
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 {
  width: 70.5882352941%;
  height: 100%;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li {
  display: none;
  width: 100%;
  height: 100%;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 {
  height: 100%;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d1 {
  width: 40%;
  padding: 0 4.5% 0 8.3333333333%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d1 a {
  display: block;
  font-size: 1.125rem;
  line-height: 2.7777777778em;
  color: #1D1D1D;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d1 a:hover {
  color: var(--color-zt);
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d2 {
  width: 60%;
  padding-left: 7.0833333333%;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d2 a.ashxts {
  color: var(--color-zt);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.35rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d2 a.ashxts i {
  font-size: 0.65rem;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d2 .jahas {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 2rem;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d2 .jahas li {
  width: 48.5668789809%;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d2 .jahas li a.img-ax {
  display: block;
  border-radius: 0.625rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.08);
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d2 .jahas li a.img-ax .asta {
  overflow: hidden;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d2 .jahas li a.img-ax .asta img {
  aspect-ratio: 304/276;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d2 .jahas li a.img-ax .cont-p {
  padding: 1rem 8.1967213115% 1.5rem;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d2 .jahas li a.img-ax .cont-p .txt-axt .ftit {
  color: rgba(29, 29, 29, 0.5);
  font-size: 1rem;
  line-height: 1.5em;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d2 .jahas li a.img-ax .cont-p .txt-axt .name {
  color: rgba(29, 29, 29, 0.9);
  font-size: 1.375rem;
  line-height: 1.5em;
  font-weight: 700;
  margin-top: 0.25rem;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d2 .jahas li a.img-ax .cont-p .txt-axt .jgda {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35em;
  margin-top: 0.75rem;
}
.head2 .nav_a1 > li .sec1 .sec1-a1 .sec1-b2 > li .sec1-c1 .sec1-d2 .jahas li a.img-ax:hover .cont-p .txt-axt .name {
  color: var(--color-zt);
}
.head2 .nav_a1 > li:hover .sec {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateX(0) translateY(0);
     -moz-transform: translateX(0) translateY(0);
      -ms-transform: translateX(0) translateY(0);
       -o-transform: translateX(0) translateY(0);
          transform: translateX(0) translateY(0);
}
.head2 .nav_a1 > li:hover .sec1 {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}
.head2 .nav_a1 > li:hover > a, .head2 .nav_a1 > li.active > a {
  background: #EEE;
}
.head2 .nav_a1 > li:hover > a::after, .head2 .nav_a1 > li.active > a::after {
  width: 100%;
}

/* 搜索 */
.sskbj {
  padding: 0;
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}
.sskbj .searchbox1 {
  width: 100%;
  padding: 40px 10.4%;
  height: 28.125rem;
  background-color: #fff;
  text-align: right;
  display: none;
}
.sskbj .searchbox1 .searchs {
  width: 80%;
  max-width: 800px;
  margin-top: 2vw;
}
.sskbj .searchbox1 .searchs dt {
  font-size: 2rem;
  line-height: 1.5em;
  text-align: left;
  margin-bottom: 1em;
}
.sskbj .searchbox1 .searchs .sertext {
  width: 75%;
  border-radius: 1.875rem;
  font-size: 1rem;
  text-indent: 1em;
}
.sskbj .searchbox1 .searchs .serbtn {
  border-radius: 1.875rem;
}
.sskbj .search-close-btn {
  width: 3rem;
  height: 3rem;
  text-align: center;
  line-height: 3rem;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: poMont For Anker;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.sskbj .search-close-btn:hover {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sskbj .search-close-btn i {
  color: #000;
  font-size: 1.8rem;
  font-weight: 600;
}
.sskbj .serbtn {
  background: var(--color-zt);
}

.sticky {
  position: fixed;
  top: 0;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  -webkit-animation: sticky 1s;
     -moz-animation: sticky 1s;
       -o-animation: sticky 1s;
          animation: sticky 1s;
}

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@-moz-keyframes sticky {
  0% {
    -moz-transform: translateY(-100%);
         transform: translateY(-100%);
  }
  100% {
    -moz-transform: translateY(0%);
         transform: translateY(0%);
  }
}

@-o-keyframes sticky {
  0% {
    -o-transform: translateY(-100%);
       transform: translateY(-100%);
  }
  100% {
    -o-transform: translateY(0%);
       transform: translateY(0%);
  }
}

@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
         -o-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
       -moz-transform: translateY(0%);
         -o-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/*手机端头部*/
.m-bm-head {
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  right: 0;
}
.m-bm-head .m-bm-head-box {
  position: relative;
  height: 60px;
}
.m-bm-head .m-bm-head-box .m-bm-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto 4%;
  max-width: 100%;
  height: 40px;
}
.m-bm-head .m-bm-head-box .m-bm-logo h1, .m-bm-head .m-bm-head-box .m-bm-logo a {
  display: inline;
  font-size: 0;
}
.m-bm-head .m-bm-head-box .m-bm-logo img {
  height: 40px;
  max-width: 40%;
}
.m-bm-head .m-bm-head-box .m-bm-logo a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.m-bm-head .m-bm-head-box .m-bm-logo a p {
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: 0.5rem;
}
.m-bm-head .m-bm-head-box .sskza {
  color: #000;
  font-family: "Mont For Anker";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  right: 15%;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.m-bm-head .m-bm-head-box .sskza i {
  font-size: 1.25rem;
  margin-right: 0.25rem;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 4% auto 0;
  width: 20px;
  height: 15px;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span, .m-bm-head .m-bm-head-box .m-bm-navbtn:after, .m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: 4.5px 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn:after, .m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  content: "";
  -webkit-transform-origin: 7.5%;
  -moz-transform-origin: 7.5%;
  -ms-transform-origin: 7.5%;
  -o-transform-origin: 7.5%;
  transform-origin: 7.5%;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked span {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.m-bm-head .m-bm-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  height: 100vh;
  background: var(--color-zt);
}
.m-bm-head .m-bm-menu .m-bm-menu-box {
  height: -webkit-calc(100vh - 60px);
  height: -moz-calc(100vh - 60px);
  height: calc(100vh - 60px);
  overflow: auto;
  padding-bottom: 80px;
}
.m-bm-head .mrhgxt {
  color: #fff;
  font: 500 1.125rem/60px "helvetica";
  margin-left: 63%;
  position: relative;
  z-index: 9;
}
.m-bm-head .mrhgxt i {
  font-size: 1.125rem;
  margin-right: 0.25em;
}

.m-bm-nav > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.m-bm-nav > li > a {
  display: block;
  line-height: 50px;
  font-size: 14px;
  color: #fff;
  font-family: "Mont For Anker";
  padding: 0 4%;
  font-weight: 600;
}
.m-bm-nav > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "Mont For Anker";
  font-weight: 500;
}
.m-bm-nav > li .sec {
  display: none;
  padding: 10px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.m-bm-nav > li .sec .tit1 {
  position: relative;
}
.m-bm-nav > li .sec .tit1 .aniut {
  height: 35px;
  line-height: 35px;
}
.m-bm-nav > li .sec .tit1 .aniut i {
  font-size: 1.125rem;
}
.m-bm-nav > li .sec a {
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 35px;
}
.m-bm-nav > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}
.m-bm-nav .aniut {
  position: absolute;
  width: 40px;
  height: 50px;
  line-height: 50px;
  right: 2%;
  top: 0;
  text-align: center;
  z-index: 9;
}
.m-bm-nav .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #fff;
}

.m-bm-head.white {
  background: #fff;
}
.m-bm-head.white .m-bm-head-box .m-bm-navbtn span, .m-bm-head.white .m-bm-head-box .m-bm-navbtn:after, .m-bm-head.white .m-bm-head-box .m-bm-navbtn:before {
  background: #000;
}
.m-bm-head.white .m-bm-menu {
  background: #fff;
}
.m-bm-head.white .m-bm-nav > li, .m-bm-head.white .m-bm-nav > li .sec {
  border-color: rgba(51, 51, 51, 0.1);
}
.m-bm-head.white .m-bm-nav > li > a, .m-bm-head.white .m-bm-nav .aniut i, .m-bm-head.white .m-bm-nav > li .sec a, .m-bm-head.white .mrhgxt {
  color: #000;
}

.cp_sort1 {
  background: #F4F5F5;
  border-radius: 2rem;
  border: 1px solid #DBDBDB;
  padding: 1rem;
}
.cp_sort1 > li {
  position: relative;
}
.cp_sort1 > li + li {
  margin-top: 1rem;
}
.cp_sort1 > li > .sec {
  padding: 0;
}
.cp_sort1 > li > .sec > .tit1 > a.clicked {
  border-bottom: 1px solid #DEDEDE;
}
.cp_sort1 > li > .sec > .tit1 > a.clicked, .cp_sort1 > li > .sec > .tit1 > a:hover {
  color: #13315B;
}
.cp_sort1 > li > .sec > .tit1 > .sec {
  padding: 0;
  border-bottom: 1px solid #DEDEDE;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 {
  padding: 0 2%;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 .aniut {
  right: 2%;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a {
  font-size: 0.875rem;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a.clicked {
  border-bottom: 1px solid #DEDEDE;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a.clicked, .cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a:hover {
  color: #13315B;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec {
  padding: 0;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec > .tit1 > a {
  font-size: 0.75rem;
  line-height: 2rem;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec > .tit1 > a.clicked, .cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec > .tit1 > a:hover {
  color: #13315B;
}
.cp_sort1 > li > a {
  display: block;
  line-height: 3.5rem;
  font-size: 1rem;
  color: #020202;
  font-family: "Mont For Anker";
  padding: 0 8%;
  font-weight: 600;
  background: #FFFFFF;
  box-shadow: 0px 0px 0.5rem 0px rgba(0, 0, 0, 0.05);
  border-radius: 1.875rem;
}
.cp_sort1 > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "Mont For Anker";
  font-weight: 500;
}
.cp_sort1 > li > a.clicked {
  background: #13315B;
  color: #fff;
}
.cp_sort1 > li > a.clicked + .aniut i {
  color: #fff;
}
.cp_sort1 > li .sec {
  display: none;
  padding: 1rem 0 0.1rem;
}
.cp_sort1 > li .sec .tit1 {
  position: relative;
  padding: 0 8%;
}
.cp_sort1 > li .sec .tit1 .aniut {
  height: 2.8125rem;
  line-height: 2.8125rem;
  right: 8%;
}
.cp_sort1 > li .sec .tit1 .aniut i {
  font-size: 1.125rem;
}
.cp_sort1 > li .sec .tit1 a {
  color: #020202;
  font-size: 1rem;
  line-height: 2.8125rem;
}
.cp_sort1 > li .sec a {
  display: block;
  font-size: 12px;
  color: #020202;
  line-height: 35px;
}
.cp_sort1 > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}
.cp_sort1 .aniut {
  position: absolute;
  width: auto;
  height: 3.5rem;
  line-height: 3.5rem;
  right: 8%;
  top: 0;
  text-align: center;
  z-index: 9;
}
.cp_sort1 .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  color: #888888;
}

@media (max-width: 990px) {
  body {
    padding: 60px 0 0 !important;
  }
}
/* end */
.pc-banner {
  position: relative;
  overflow: hidden;
}
.pc-banner .mySwipera {
  position: relative;
}
.pc-banner .mySwipera .swiper-slide {
  overflow: hidden;
}
.pc-banner .mySwipera .swiper-slide .img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.pc-banner .mySwipera .swiper-slide .img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .swiper-slide .img > img {
    aspect-ratio: 16/14;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.pc-banner .mySwipera .banwez1 {
  width: 100%;
  z-index: 99;
  color: #FFFFFF;
}
.pc-banner .mySwipera .banwez1 .cont-pa {
  width: 28.2941176471%;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .cont-pa {
    width: 100%;
  }
}
.pc-banner .mySwipera .banwez1 .tit {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.08em;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .tit {
    font-size: 2rem;
    line-height: 1.2em;
  }
}
.pc-banner .mySwipera .banwez1 .txt {
  font-size: 1.5rem;
  line-height: 1.25em;
  padding: 0.75rem 0;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .txt {
    font-size: 1.125rem;
  }
}
.pc-banner .mySwipera .banwez1 .more-b {
  margin-top: 1rem;
}
.pc-banner .mySwipera .swiper-pagination1 {
  position: absolute;
  left: 50%;
  bottom: 5%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.pc-banner .mySwipera .swiper-pagination1 span {
  width: 0.6rem;
  height: 0.6rem;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 0.4rem;
}
.pc-banner .mySwipera .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #fff;
}
.pc-banner a.mouse {
  position: absolute;
  left: 0;
  bottom: 2rem;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  display: block;
  z-index: 9;
}
.pc-banner a.mouse p {
  color: #FFFFFF;
  font: 400 0.875rem/1.5em "Mont For Anker";
  margin-top: 0.5em;
}
.pc-banner a.mouse .xdt {
  background: rgba(255, 255, 255, 0.6);
  width: 0.0625rem;
  height: 2rem;
  margin: 0 auto;
  position: relative;
}
.pc-banner a.mouse .xdt::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 0.4rem;
  border-radius: 50%;
  background: white;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: scroll2 1s linear infinite;
     -moz-animation: scroll2 1s linear infinite;
       -o-animation: scroll2 1s linear infinite;
          animation: scroll2 1s linear infinite;
}

@-webkit-keyframes circ {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-moz-keyframes circ {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-o-keyframes circ {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes circ {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes run {
  from {
    bottom: 70%;
    opacity: 0;
  }
  to {
    bottom: 35%;
    opacity: 1;
  }
}
@-moz-keyframes run {
  from {
    bottom: 70%;
    opacity: 0;
  }
  to {
    bottom: 35%;
    opacity: 1;
  }
}
@-o-keyframes run {
  from {
    bottom: 70%;
    opacity: 0;
  }
  to {
    bottom: 35%;
    opacity: 1;
  }
}
@keyframes run {
  from {
    bottom: 70%;
    opacity: 0;
  }
  to {
    bottom: 35%;
    opacity: 1;
  }
}
@-webkit-keyframes wiht {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-moz-keyframes wiht {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-o-keyframes wiht {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes wiht {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}
@-moz-keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}
@-o-keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}
@keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-moz-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -moz-transform: scale(1);
         transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -moz-transform: scale(1.2);
         transform: scale(1.2);
  }
  75% {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
         transform: scale(1);
  }
}
@-o-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -o-transform: scale(1);
       transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -o-transform: scale(1.1);
       transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -o-transform: scale(1.2);
       transform: scale(1.2);
  }
  75% {
    -o-transform: scale(1.1);
       transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
       transform: scale(1);
  }
}
@keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
         -o-transform: scale(1.2);
            transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}
.swiper {
  overflow: hidden;
}

.overa {
  overflow: hidden;
}

/* 图片动画 */
.fang {
  overflow: hidden;
  display: block;
}

.fang img {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}

.fang:hover img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}

.xz img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.xz:hover img {
  -webkit-transform: rotateY(180deg);
     -moz-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.top {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.top:hover {
  -webkit-transform: translateY(-1rem);
     -moz-transform: translateY(-1rem);
      -ms-transform: translateY(-1rem);
       -o-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.gong-pagination span {
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin: 0 0.25rem;
}
.gong-pagination span.swiper-pagination-bullet-active {
  background: #fff;
}
.gong-pagination.hs span {
  background: rgba(0, 0, 0, 0.3);
}
.gong-pagination.hs span.swiper-pagination-bullet-active {
  background: #13315B;
}

.gong-p {
  color: #7A7A7A;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.75em;
  text-align: justify;
}
@media (max-width: 768px) {
  .gong-p {
    font-size: 1rem;
  }
}
.gong-p.bs {
  color: #fff;
}

.title1 .tit {
  color: #1D1D1D;
  font-size: 2.9375rem;
  line-height: 1.125em;
  font-weight: 800;
}
@media (max-width: 768px) {
  .title1 .tit {
    font-size: 2rem;
  }
}
.title1.bs .tit {
  color: #fff;
}

.iconfont1 {
  font-family: "iconfont" !important;
}

.text_effect {
  position: relative;
  cursor: pointer;
}
.text_effect p {
  position: relative;
}
.text_effect .fist {
  overflow: hidden;
}
.text_effect .fist div {
  min-width: 5px;
}
.text_effect .fist:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
  white-space: nowrap;
}
.text_effect .fist:nth-child(2) div {
  -webkit-transform: translate3d(0, 101%, 0);
     -moz-transform: translate3d(0, 101%, 0);
          transform: translate3d(0, 101%, 0);
  min-width: 5px;
  opacity: 0;
}
.text_effect:hover .fist:first-child div {
  -webkit-transform: translate3d(0, -101%, 0);
     -moz-transform: translate3d(0, -101%, 0);
          transform: translate3d(0, -101%, 0);
  opacity: 0;
}
.text_effect:hover .fist:nth-child(2) div {
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

.gong-pagination {
  text-align: center;
}
.gong-pagination span {
  background: rgba(0, 0, 0, 0.1);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  opacity: 1;
  margin: 0 0.5rem !important;
}
.gong-pagination span.swiper-pagination-bullet-active {
  background: var(--color-zt);
}

.jt-asmta {
  gap: 1rem;
}
.jt-asmta > div {
  width: 4.5625rem;
  height: 4.5625rem;
  border-radius: 50%;
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.03);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .jt-asmta > div {
    width: 3.5625rem;
    height: 3.5625rem;
    box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
  }
}
.jt-asmta > div i {
  color: #B0B0B0;
  font-size: 1.25rem;
  font-weight: 500;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .jt-asmta > div i {
    font-size: 1.125rem;
  }
}
.jt-asmta > div:hover {
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
}
.jt-asmta > div:hover i {
  color: #1D1D1D;
}

.cont1 {
  padding: 2.875rem 0;
}
@media (max-width: 768px) {
  .cont1 {
    padding: 1.65rem 0;
  }
}
.cont1 .tit {
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.5em;
  text-align: center;
}
@media (max-width: 768px) {
  .cont1 .tit {
    font-size: 1.35rem;
  }
}
.cont1 .mySwiper1 {
  padding: 0 1px;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .cont1 .mySwiper1 {
    margin-top: 1.25rem;
  }
}
.cont1 .mySwiper1 .swiper-slide .img u {
  display: block;
  font-size: 0;
  border-radius: 1.25rem;
  border: 1px solid #E3E3E3;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 768px) {
  .cont1 .mySwiper1 .swiper-slide .img u {
    border-radius: 1rem;
  }
}
.cont1 .mySwiper1 .swiper-slide .img u img {
  width: 100%;
}
.cont1 .mySwiper1 .swiper-pagination1 {
  margin-top: 1rem;
}

.cont2 {
  padding: 1rem 0 0;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .title1 {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.cont2 .a2v2 {
  padding-left: var(--cbasta);
}
@media (max-width: 768px) {
  .cont2 .a2v2 {
    padding: 0 var(--cbasta);
  }
}
.cont2 .a2v2 .mySwiper2 {
  padding: 0.5rem;
  padding-right: var(--cbasta);
  margin-top: 1.5rem;
  position: relative;
  padding-bottom: 6.25rem;
}
@media (max-width: 768px) {
  .cont2 .a2v2 .mySwiper2 {
    padding: 0.5rem;
    margin-top: 1rem;
  }
}
.cont2 .a2v2 .mySwiper2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 50%;
  opacity: 0.2;
  background: -webkit-radial-gradient(70% 70%, 349.54% 71.45%, rgba(205, 231, 233, 0.6) 0%, rgba(205, 231, 233, 0) 50%), -webkit-linear-gradient(315deg, #F8FAFA 0%, #EAF3F4 40%, #CDE7E9 100%);
  background: -moz-radial-gradient(70% 70%, 349.54% 71.45%, rgba(205, 231, 233, 0.6) 0%, rgba(205, 231, 233, 0) 50%), -moz-linear-gradient(315deg, #F8FAFA 0%, #EAF3F4 40%, #CDE7E9 100%);
  background: -o-radial-gradient(70% 70%, 349.54% 71.45%, rgba(205, 231, 233, 0.6) 0%, rgba(205, 231, 233, 0) 50%), -o-linear-gradient(315deg, #F8FAFA 0%, #EAF3F4 40%, #CDE7E9 100%);
  background: radial-gradient(349.54% 71.45% at 70% 70%, rgba(205, 231, 233, 0.6) 0%, rgba(205, 231, 233, 0) 50%), linear-gradient(135deg, #F8FAFA 0%, #EAF3F4 40%, #CDE7E9 100%);
}
.cont2 .a2v2 .mySwiper2 .swiper-slide a.img-ax {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.08);
}
.cont2 .a2v2 .mySwiper2 .swiper-slide a.img-ax u {
  display: block;
  font-size: 0;
  overflow: hidden;
}
.cont2 .a2v2 .mySwiper2 .swiper-slide a.img-ax u img {
  width: 100%;
}
.cont2 .a2v2 .mySwiper2 .swiper-slide a.img-ax .cont-p {
  padding: 0.625rem 1.5625rem 2rem;
}
@media (max-width: 768px) {
  .cont2 .a2v2 .mySwiper2 .swiper-slide a.img-ax .cont-p {
    padding: 1.25rem 1.5625rem 1.5rem;
  }
}
.cont2 .a2v2 .mySwiper2 .swiper-slide a.img-ax .cont-p .name {
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25em;
  padding: 0.5em 0;
  color: rgba(29, 29, 29, 0.9);
}
@media (max-width: 768px) {
  .cont2 .a2v2 .mySwiper2 .swiper-slide a.img-ax .cont-p .name {
    font-size: 1.25rem;
  }
}
.cont2 .a2v2 .mySwiper2 .swiper-slide a.img-ax .cont-p .hwca {
  border: 1px solid var(--color-zt);
  border-radius: 0.375rem;
  margin-top: 0.65rem;
  color: var(--color-zt);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 1rem 0.5rem;
}
.cont2 .a2v2 .mySwiper2 .swiper-slide a.img-ax .cont-p .hwca i {
  font-size: 1.25rem;
  font-weight: 500;
  margin-right: 1rem;
}

@-webkit-keyframes bannerLun {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@-moz-keyframes bannerLun {
  0% {
    opacity: 0;
    -moz-transform: translateY(100px);
         transform: translateY(100px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0px);
         transform: translateY(0px);
    filter: blur(0px);
  }
}

@-o-keyframes bannerLun {
  0% {
    opacity: 0;
    -o-transform: translateY(100px);
       transform: translateY(100px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0px);
       transform: translateY(0px);
    filter: blur(0px);
  }
}

@keyframes bannerLun {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
       -moz-transform: translateY(100px);
         -o-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
         -o-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}
.cont3 {
  padding: 4.375rem 0 6.25rem;
}
@media (max-width: 768px) {
  .cont3 {
    padding: 2rem 0;
  }
}
.cont3 .a3_list1 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.625rem;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 {
    margin-top: 1.25rem;
  }
}
.cont3 .a3_list1 li {
  position: relative;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 0.625rem;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li {
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
.cont3 .a3_list1 li u {
  display: block;
  font-size: 0;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li u {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}
.cont3 .a3_list1 li u img {
  width: 100%;
  height: 34.875rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li u img {
    height: 100%;
  }
}
.cont3 .a3_list1 li .cont-p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 4.0781648258% 3rem;
  color: #fff;
  opacity: 0;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li .cont-p {
    opacity: 1;
    padding: 4rem 6% 2rem;
    position: static;
  }
}
.cont3 .a3_list1 li .cont-p .ast1 {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 10%;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li .cont-p .ast1 {
    padding-right: 0;
    width: 100%;
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.cont3 .a3_list1 li .cont-p .ast1 .tit {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li .cont-p .ast1 .tit {
    font-size: 1.35rem;
  }
}
.cont3 .a3_list1 li .cont-p .ast1 .txt {
  font-size: 1.25rem;
  line-height: 1.6em;
  font-weight: 700;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li .cont-p .ast1 .txt {
    font-size: 1rem;
    line-height: 1.35em;
    margin: 0.5rem 0;
  }
}
.cont3 .a3_list1 li .cont-p .ast2 a.more-b {
  padding: 1.25rem 2.25rem;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li .cont-p .ast2 a.more-b {
    padding: 0.95rem 1.5rem;
  }
}
@media (min-width: 767px) {
  .cont3 .a3_list1 li.active {
    -webkit-flex: 8;
       -moz-box-flex: 8;
        -ms-flex: 8;
            flex: 8;
  }
  .cont3 .a3_list1 li.active .cont-p {
    -webkit-animation: bannerLun 0.6s ease both 0.2s;
       -moz-animation: bannerLun 0.6s ease both 0.2s;
         -o-animation: bannerLun 0.6s ease both 0.2s;
            animation: bannerLun 0.6s ease both 0.2s;
  }
}

.cont4 {
  background: #F8F8F8;
  padding-top: 7.5rem;
}
@media (max-width: 768px) {
  .cont4 {
    padding-top: 3.25rem;
  }
}
.cont4 .a4v1 .a4b1 {
  width: 24.2352941176%;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .cont4 .a4v1 .a4b1 {
    width: 100%;
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
}
.cont4 .a4v1 .a4b1 .tita-a {
  background: var(--color-zt);
  color: #fff;
  font-size: 0.875rem;
  line-height: 2.25rem;
  padding: 0 2.125em;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
}
.cont4 .a4v1 .a4b1 .title1 {
  padding: 1.5rem 0 1rem;
}
@media (max-width: 768px) {
  .cont4 .a4v1 .a4b1 .title1 {
    padding: 1rem 0 0.65rem;
  }
}
.cont4 .a4v1 .a4b1 .tit2 {
  color: #1D1D1D;
  font-size: 1.25rem;
  line-height: 1.6em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .cont4 .a4v1 .a4b1 .tit2 {
    font-size: 1.125rem;
  }
}
.cont4 .a4v1 .a4b1 .more-b {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .cont4 .a4v1 .a4b1 .more-b {
    margin-top: 1.35rem;
  }
}
.cont4 .a4v1 .a4b2 {
  width: 59.5294117647%;
}
@media (max-width: 768px) {
  .cont4 .a4v1 .a4b2 {
    width: 100%;
  }
}
.cont4 .a4v1 .a4b2 img {
  width: 100%;
}

.cont5 {
  padding-top: 6.25rem;
}
@media (max-width: 768px) {
  .cont5 {
    padding-top: 2.5rem;
  }
}
@media (max-width: 768px) {
  .cont5 .a5v1 .title1 {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.cont5 .a5v2 {
  padding-left: var(--cbasta);
}
@media (max-width: 768px) {
  .cont5 .a5v2 {
    padding: 0 var(--cbasta);
  }
}
.cont5 .a5v2 .mySwiper3 {
  padding: 0.5rem;
  padding-right: var(--cbasta);
  margin-top: 1.5rem;
  position: relative;
  padding-bottom: 6.25rem;
}
@media (max-width: 768px) {
  .cont5 .a5v2 .mySwiper3 {
    padding-bottom: 2rem;
    padding-right: 0;
  }
}
.cont5 .a5v2 .mySwiper3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 50%;
  opacity: 0.2;
  background: -webkit-radial-gradient(70% 70%, 349.54% 71.45%, rgba(205, 231, 233, 0.6) 0%, rgba(205, 231, 233, 0) 50%), -webkit-linear-gradient(315deg, #F8FAFA 0%, #EAF3F4 40%, #CDE7E9 100%);
  background: -moz-radial-gradient(70% 70%, 349.54% 71.45%, rgba(205, 231, 233, 0.6) 0%, rgba(205, 231, 233, 0) 50%), -moz-linear-gradient(315deg, #F8FAFA 0%, #EAF3F4 40%, #CDE7E9 100%);
  background: -o-radial-gradient(70% 70%, 349.54% 71.45%, rgba(205, 231, 233, 0.6) 0%, rgba(205, 231, 233, 0) 50%), -o-linear-gradient(315deg, #F8FAFA 0%, #EAF3F4 40%, #CDE7E9 100%);
  background: radial-gradient(349.54% 71.45% at 70% 70%, rgba(205, 231, 233, 0.6) 0%, rgba(205, 231, 233, 0) 50%), linear-gradient(135deg, #F8FAFA 0%, #EAF3F4 40%, #CDE7E9 100%);
}
.cont5 .a5v2 .mySwiper3 .swiper-slide a.img-ax {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.08);
}
.cont5 .a5v2 .mySwiper3 .swiper-slide a.img-ax .asta {
  display: block;
  font-size: 0;
  overflow: hidden;
  position: relative;
}
.cont5 .a5v2 .mySwiper3 .swiper-slide a.img-ax .asta img {
  width: 100%;
}
.cont5 .a5v2 .mySwiper3 .swiper-slide a.img-ax .asta .tita-a {
  background: var(--color-zt);
  color: #fff;
  font-size: 0.875rem;
  line-height: 2.25rem;
  padding: 0 1.25em;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 1.5rem;
}
.cont5 .a5v2 .mySwiper3 .swiper-slide a.img-ax .cont-p {
  padding: 2rem 1.5625rem 2rem;
}
.cont5 .a5v2 .mySwiper3 .swiper-slide a.img-ax .cont-p .txt-axt {
  padding: 0 0.75rem;
}
.cont5 .a5v2 .mySwiper3 .swiper-slide a.img-ax .cont-p .ftit {
  color: rgba(29, 29, 29, 0.5);
  font-size: 1rem;
  line-height: 1.25em;
}
.cont5 .a5v2 .mySwiper3 .swiper-slide a.img-ax .cont-p .name {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25em;
  padding: 0.4em 0;
  color: rgba(29, 29, 29, 0.9);
}
.cont5 .a5v2 .mySwiper3 .swiper-slide a.img-ax .cont-p .jgda {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25em;
  margin-top: 2.125rem;
}
@media (max-width: 768px) {
  .cont5 .a5v2 .mySwiper3 .swiper-slide a.img-ax .cont-p .jgda {
    margin-top: 1.5rem;
  }
}
.cont5 .a5v2 .mySwiper3 .swiper-slide a.img-ax .cont-p .hwca {
  border: 1px solid var(--color-zt);
  border-radius: 0.375rem;
  margin-top: 1.25rem;
  color: var(--color-zt);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 1rem 0.5rem;
}
.cont5 .a5v2 .mySwiper3 .swiper-slide a.img-ax .cont-p .hwca i {
  font-size: 1.25rem;
  font-weight: 500;
  margin-right: 1rem;
}
.cont5 .a5v2 .mySwiper3 .swiper-slide a.img-ax:hover .cont-p .name {
  color: var(--color-zt);
}

.cont6 {
  padding: 5.25rem 0 7.1875rem;
}
@media (max-width: 768px) {
  .cont6 {
    padding: 2.125rem 0;
  }
}
.cont6 .a6b1 {
  gap: 0.75rem 2.25rem;
  margin-top: 1.625rem;
}
@media (max-width: 768px) {
  .cont6 .a6b1 {
    margin-top: 1.25rem;
    gap: 0.75rem 1.25rem;
  }
}
.cont6 .a6b1 li .tit {
  color: rgba(29, 29, 29, 0.5);
  font-size: 1.25rem;
  line-height: 1.65em;
  font-weight: 700;
  position: relative;
  padding: 0.35rem 0;
}
@media (max-width: 768px) {
  .cont6 .a6b1 li .tit {
    font-size: 1.125rem;
  }
}
.cont6 .a6b1 li .tit {
  cursor: pointer;
}
.cont6 .a6b1 li .tit::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: var(--color-zt);
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.cont6 .a6b1 li.on .tit {
  color: var(--color-zt);
}
.cont6 .a6b1 li.on .tit::after {
  width: 100%;
}
.cont6 .a6b2 {
  margin-top: 2.25rem;
}
@media (max-width: 768px) {
  .cont6 .a6b2 {
    margin-top: 1.65rem;
  }
}
.cont6 .a6b2 li {
  display: none;
  background: #F8F8F8;
}
.cont6 .a6b2 li .a6b2c1 .a6b2c1d1 {
  width: 37.0588235294%;
  padding: 1.5rem 4.1176470588%;
}
@media (max-width: 768px) {
  .cont6 .a6b2 li .a6b2c1 .a6b2c1d1 {
    width: 100%;
    padding: 1.85rem 2rem;
  }
}
.cont6 .a6b2 li .a6b2c1 .a6b2c1d1 .tit {
  color: #1D1D1D;
  font-size: 2.125rem;
  line-height: 1.1764705882em;
  font-weight: 800;
}
@media (max-width: 768px) {
  .cont6 .a6b2 li .a6b2c1 .a6b2c1d1 .tit {
    font-size: 1.5rem;
  }
}
.cont6 .a6b2 li .a6b2c1 .a6b2c1d1 .txt {
  color: rgba(29, 29, 29, 0.7);
  font-size: 1.25rem;
  line-height: 1.6em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .cont6 .a6b2 li .a6b2c1 .a6b2c1d1 .txt {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
}
.cont6 .a6b2 li .a6b2c1 .a6b2c1d2 {
  width: 62.9411764706%;
}
@media (max-width: 768px) {
  .cont6 .a6b2 li .a6b2c1 .a6b2c1d2 {
    width: 100%;
  }
}
.cont6 .a6b2 li .a6b2c1 .a6b2c1d2 img {
  width: 100%;
}

.cont7 {
  position: relative;
}
@media (max-width: 768px) {
  .cont7 .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
.cont7 .img img {
  width: 100%;
}
@media (max-width: 768px) {
  .cont7 .img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.cont7 .a7v1 {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 768px) {
  .cont7 .a7v1 {
    position: static;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
    padding-top: 2.5rem;
  }
}
.cont7 .a7v1 .a7v1c1 {
  width: 38.1176470588%;
  color: #fff;
}
@media (max-width: 768px) {
  .cont7 .a7v1 .a7v1c1 {
    width: 100%;
  }
}
.cont7 .a7v1 .a7v1c1 .tit {
  font-size: 2.9375rem;
  font-weight: 800;
}
@media (max-width: 768px) {
  .cont7 .a7v1 .a7v1c1 .tit {
    font-size: 2rem;
  }
}
.cont7 .a7v1 .a7v1c1 .txt {
  font-size: 1.25rem;
  line-height: 1.6em;
  margin: 0.75rem 0 1.5rem;
}
@media (max-width: 768px) {
  .cont7 .a7v1 .a7v1c1 .txt {
    font-size: 1rem;
    margin: 0.5rem 0 1rem;
  }
}
.cont7 .a7v1 .a7v1c1 .more-b {
  padding: 1.25rem 2rem;
}
@media (max-width: 768px) {
  .cont7 .a7v1 .a7v1c1 .more-b {
    padding: 1rem 1.5rem;
  }
}
.cont7 .a7v2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 33.3333333333%;
  background: rgba(255, 255, 255, 0.9);
  height: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}
@media (max-width: 768px) {
  .cont7 .a7v2 {
    width: 100%;
    position: relative;
    z-index: 1;
    display: block;
    padding: 1.5rem 0;
    margin-top: 5rem;
  }
}
.cont7 .a7v2 .a7v2-st1 {
  width: 100%;
}
@media (max-width: 768px) {
  .cont7 .a7v2 .a7v2-st1 {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.cont7 .a7v2 .a7v2-st1 li {
  padding: 0 1% 0 23.125%;
}
@media (max-width: 768px) {
  .cont7 .a7v2 .a7v2-st1 li {
    padding: 0.5rem 4%;
    width: 49%;
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    text-align: center;
  }
}
.cont7 .a7v2 .a7v2-st1 li + li {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .cont7 .a7v2 .a7v2-st1 li + li {
    margin-top: 0;
  }
}
.cont7 .a7v2 .a7v2-st1 li .tit {
  color: var(--color-zt);
  font-size: 5.25rem;
  line-height: 1em;
}
@media (max-width: 768px) {
  .cont7 .a7v2 .a7v2-st1 li .tit {
    font-size: 2.78rem;
    font-weight: 700;
  }
}
.cont7 .a7v2 .a7v2-st1 li p {
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .cont7 .a7v2 .a7v2-st1 li p {
    font-size: 1.125rem;
    line-height: 1.35em;
  }
}

.cont8 {
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .cont8 {
    padding-top: 2.25rem;
  }
}
.cont8 .a8_list1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.1875rem;
}
@media (max-width: 768px) {
  .cont8 .a8_list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.75rem;
  }
}
.cont8 .a8_list1 li {
  border-radius: 0.625rem;
  border: 1px solid #DEDEDE;
  padding: 4.6875rem 8.1374321881%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 768px) {
  .cont8 .a8_list1 li {
    padding: 2.5rem 7.5%;
  }
}
.cont8 .a8_list1 li u {
  display: block;
  font-size: 0;
  width: 5.125rem;
}
@media (max-width: 768px) {
  .cont8 .a8_list1 li u {
    width: 4rem;
  }
}
.cont8 .a8_list1 li u img {
  width: 100%;
}
.cont8 .a8_list1 li .tit {
  color: rgba(0, 0, 0, 0.9);
  font-size: 1.875rem;
  line-height: 1.25em;
  margin-top: 1.25rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .cont8 .a8_list1 li .tit {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}
.cont8 .a8_list1 li .txt {
  color: rgba(29, 29, 29, 0.7);
  font-size: 1.125rem;
  line-height: 1.3333333333em;
  margin-top: 0.75rem;
}
.cont8 .a8_list1 li:hover {
  background: #E3F3FF;
}

.cont9 {
  padding-top: 5.3125rem;
}
@media (max-width: 768px) {
  .cont9 {
    padding-top: 2.5rem;
  }
}
@media (max-width: 768px) {
  .cont9 .a9v1 .title1 {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.cont9 .a9v2 {
  padding-left: var(--cbasta);
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .cont9 .a9v2 {
    padding: 0 var(--cbasta);
    margin-top: 1.75rem;
  }
}
.cont9 .a9v2 .mySwiper4 {
  padding-right: var(--cbasta);
}
@media (max-width: 768px) {
  .cont9 .a9v2 .mySwiper4 {
    padding-right: 0;
  }
}
.cont9 .a9v2 .mySwiper4 .swiper-slide .img-ax {
  background: #EAEAEC;
  border-radius: 0.625rem;
  overflow: hidden;
}
.cont9 .a9v2 .mySwiper4 .swiper-slide .img-ax a.img {
  display: block;
  font-size: 0;
  width: 52.0238095238%;
}
@media (max-width: 768px) {
  .cont9 .a9v2 .mySwiper4 .swiper-slide .img-ax a.img {
    width: 100%;
  }
}
.cont9 .a9v2 .mySwiper4 .swiper-slide .img-ax a.img img {
  width: 100%;
  aspect-ratio: 437/390;
  -o-object-fit: cover;
     object-fit: cover;
}
.cont9 .a9v2 .mySwiper4 .swiper-slide .img-ax .cont-p {
  width: 47.9761904762%;
  padding: 1rem 3.5% 1rem 6%;
}
@media (max-width: 768px) {
  .cont9 .a9v2 .mySwiper4 .swiper-slide .img-ax .cont-p {
    width: 100%;
    padding: 1.75rem 7.5%;
  }
}
.cont9 .a9v2 .mySwiper4 .swiper-slide .img-ax .cont-p .data {
  color: rgba(29, 29, 29, 0.5);
  font-size: 1.125rem;
  line-height: 1.3333333333em;
}
@media (max-width: 768px) {
  .cont9 .a9v2 .mySwiper4 .swiper-slide .img-ax .cont-p .data {
    font-size: 1rem;
  }
}
.cont9 .a9v2 .mySwiper4 .swiper-slide .img-ax .cont-p a.name {
  color: #1D1D1D;
  font-size: 1.375rem;
  line-height: 1.4545454545em;
  font-weight: 700;
  margin: 1.125rem 0 1.5rem;
  display: block;
}
@media (max-width: 768px) {
  .cont9 .a9v2 .mySwiper4 .swiper-slide .img-ax .cont-p a.name {
    font-size: 1.25rem;
  }
}
.cont9 .a9v2 .mySwiper4 .swiper-slide .img-ax .cont-p a.name:hover {
  color: var(--color-zt);
}
.cont9 .a9v2 .mySwiper4 .swiper-slide .img-ax .cont-p .weh-sx {
  color: var(--color-zt);
  font-size: 0.875rem;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.125rem;
}
.cont9 .a9v2 .mySwiper4 .swiper-slide .img-ax .cont-p .weh-sx i {
  font-size: 0.65rem;
}

.cont10 {
  padding: 5.3125rem 0 7.625rem;
}
@media (max-width: 768px) {
  .cont10 {
    padding: 2.5rem 0;
  }
}
@media (max-width: 768px) {
  .cont10 .a10v1 .title1 {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.cont10 .a10v2 {
  padding-left: var(--cbasta);
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .cont10 .a10v2 {
    padding: 0 var(--cbasta);
    margin-top: 1.35rem;
  }
}
.cont10 .a10v2 .mySwiper5 {
  padding-right: var(--cbasta);
}
@media (max-width: 768px) {
  .cont10 .a10v2 .mySwiper5 {
    padding-right: 0;
  }
}
.cont10 .a10v2 .mySwiper5 .swiper-slide {
  background: #E3F3FF;
  padding: 1.625rem;
}
.cont10 .a10v2 .mySwiper5 .swiper-slide .as-xata1 .xxt {
  gap: 0.25rem;
}
.cont10 .a10v2 .mySwiper5 .swiper-slide .as-xata1 .xxt i {
  display: block;
  font-size: 0;
  width: 1.0625rem;
}
.cont10 .a10v2 .mySwiper5 .swiper-slide .as-xata1 .xxt i img {
  width: 100%;
}
.cont10 .a10v2 .mySwiper5 .swiper-slide .as-xata1 .img {
  width: 3.125rem;
  border-radius: 50%;
}
.cont10 .a10v2 .mySwiper5 .swiper-slide .as-xata1 .img img {
  width: 100%;
}
.cont10 .a10v2 .mySwiper5 .swiper-slide .name {
  padding: 0 1rem;
  color: #1D1D1D;
  font-size: 1.6875rem;
  line-height: 1.25em;
  font-weight: 700;
  margin-top: 2.5rem;
  height: 8.75em;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .cont10 .a10v2 .mySwiper5 .swiper-slide .name {
    font-size: 1.35rem;
    height: 6.25em;
  }
}
.cont10 .a10v2 .mySwiper5 .swiper-slide .ast-x1 {
  background: #fff;
  padding: 1rem;
}
.cont10 .a10v2 .mySwiper5 .swiper-slide .ast-x1 u {
  display: block;
  font-size: 0;
  width: 25%;
}
.cont10 .a10v2 .mySwiper5 .swiper-slide .ast-x1 u img {
  width: 100%;
}
.cont10 .a10v2 .mySwiper5 .swiper-slide .ast-x1 .tit {
  color: #1D1D1D;
  font-size: 1.125rem;
  width: 67.6829268293%;
  font-weight: 700;
}

.cont11 {
  background: #EAEAEC;
  padding: 3.25rem 0;
}
@media (max-width: 768px) {
  .cont11 {
    padding: 2.5rem 0;
  }
}
.cont11 .ast1 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cont11 .ast1 {
    gap: 1.25rem 0;
  }
}
.cont11 .ast1 li {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .cont11 .ast1 li {
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 33.3333333333%;
  }
  .cont11 .ast1 li:nth-child(4) {
    border-left: none;
  }
}
.cont11 .ast1 li + li {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.cont11 .ast1 li u {
  display: block;
  font-size: 0;
  width: 4.8125rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cont11 .ast1 li u {
    width: 3.75rem;
  }
}
.cont11 .ast1 li u img {
  width: 100%;
}
.cont11 .ast1 li .tit {
  color: rgba(29, 29, 29, 0.2);
  font-size: 1.5rem;
  line-height: 1.35em;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .cont11 .ast1 li .tit {
    font-size: 1.35rem;
  }
}
.cont11 .ast1 li .ftit {
  color: #1D1D1D;
  font-size: 1.25rem;
  line-height: 1.25em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .cont11 .ast1 li .ftit {
    font-size: 1rem;
  }
}

.foot-fot {
  position: relative;
  background: #1D1D1D;
}
.foot-fot .foota1 {
  position: relative;
  z-index: 1;
  padding: 3.75rem 0 12.3125rem;
}
@media (max-width: 990px) {
  .foot-fot .foota1 {
    display: none;
  }
}
.foot-fot .foota1 .foota1-a .d-logo img {
  height: 5.625rem;
}
.foot-fot .foota1 .foota1-a a.tops {
  width: 4.75rem;
  height: 4.75rem;
  background: #fff;
  border-radius: 50%;
}
.foot-fot .foota1 .foota1-a a.tops img {
  width: 1.25rem;
}
.foot-fot .foota1 .foota1-b {
  margin-top: 4.0625rem;
}
.foot-fot .foota1 .foota1-b .d_nav:nth-child(2) {
  margin-right: 5%;
}
.foot-fot .foota1 .foota1-b .d_nav li a {
  display: block;
  font-size: 1.125rem;
  line-height: 2.2222222222em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.foot-fot .foota1 .foota1-b .d_nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0%;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.foot-fot .foota1 .foota1-b .d_nav li a:hover::after {
  width: 100%;
}
.foot-fot .foota1 .foota1-b .dm_maxa {
  width: 50.5882352941%;
}
.foot-fot .foota1 .foota1-b .dm_maxa .tit {
  color: #FFFFFF;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25em;
}
.foot-fot .foota1 .foota1-b .dm_maxa form {
  border-bottom: 1px solid #FFFFFF;
  margin-top: 1.25rem;
}
.foot-fot .foota1 .foota1-b .dm_maxa form .conx input {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 4.375rem;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
}
.foot-fot .foota1 .foota1-b .dm_maxa form .conx button {
  border: none;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 4.375rem;
  background: transparent;
  color: #fff;
  gap: 1.35rem;
  text-transform: uppercase;
}
.foot-fot .foota1 .foota1-b .dm_maxa form .conx button i {
  display: block;
  font-size: 0;
  width: 1.3125rem;
}
.foot-fot .foota1 .foota1-b .dm_maxa form .conx button i img {
  width: 100%;
}
.foot-fot .foota1 .foota1-b .dm_maxa .d_fenx {
  margin-top: 2rem;
  gap: 1.25rem;
}
.foot-fot .foota1 .foota1-b .dm_maxa .d_fenx li a {
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.foot-fot .foota1 .foota1-b .dm_maxa .d_fenx li a img {
  width: 37.5%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.foot-fot .foota1 .foota1-b .dm_maxa .d_fenx li a:hover {
  background: rgba(255, 255, 255, 0.2);
}
.foot-fot .foota2 {
  color: #fff;
  font-size: 1rem;
  line-height: 1.65em;
  padding: 1.5em 0;
}
.foot-fot .foota2 .asta1 {
  gap: 0.4375rem;
  margin-right: 2rem;
}
.foot-fot .foota2 .asta1 img {
  height: 1.5rem;
}
.foot-fot .foota2 a {
  color: #fff;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.foot-fot .foota2 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  background: #fff;
}
.foot-fot .foota2 a:hover {
  color: #fff;
}
.foot-fot .foota2 a:hover::after {
  width: 100%;
}
.foot-fot .foota2 a:hover {
  color: #fff;
}
.foot-fot .foota2 p + p {
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .foot-fot .foota2 p + p {
    margin-left: 0;
  }
}
.foot-fot .foota2 p + p span:last-child {
  display: none;
}

.foot1-m {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (max-width: 990px) {
  .d_nav {
    display: none;
  }
  .fix-gonga {
    display: none !important;
  }
}
/*手机底部*/
@media (max-width: 991px) {
  .foot1-m {
    display: block;
  }
}
.hidden {
  display: none;
}

.zd_erha {
  position: fixed;
  right: 1.82292%;
  bottom: 12%;
  z-index: 999;
}
@media (max-width: 768px) {
  .zd_erha .aat_list {
    display: none;
  }
}
.zd_erha .aat_list li {
  position: relative;
}
.zd_erha .aat_list li + li::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 70%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background: rgba(63, 63, 63, 0.1);
}
.zd_erha .aat_list li > a {
  display: block;
  width: 100%;
  position: relative;
  background: #13315B;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  box-shadow: 0 0.125rem 1rem 0.125rem rgba(0, 20, 60, 0.2);
}
.zd_erha .aat_list li > a i {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.zd_erha .aat_list li > a i img {
  height: 1.875rem;
}
.zd_erha .aat_list li .erghgsa {
  position: absolute;
  z-index: -1;
  padding: 0.5em 1.5rem;
  width: auto;
  text-align: center;
  right: -webkit-calc(110% + 5px);
  right: -moz-calc(110% + 5px);
  right: calc(110% + 5px);
  top: 10%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(110%);
     -moz-transform: translateX(110%);
      -ms-transform: translateX(110%);
       -o-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
  box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
  color: #333;
  font-size: 1.125rem;
  background: #fff;
  border-radius: 0.4rem;
  white-space: nowrap;
}
.zd_erha .aat_list li .erghgsb {
  width: 7rem;
  padding: 0.3rem;
}
.zd_erha .aat_list li .erghgsb img {
  width: 100%;
}
.zd_erha .aat_list li:hover .erghgsa {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

/*内页css*/
.loadmore-nodata {
  margin: 0 auto 9em;
}

.text-center {
  text-align: center;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 0 0;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .pagination {
    margin: 0 0 0;
  }
}

.pagination > li {
  display: inline;
}

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  margin-left: -1px;
  line-height: 2.375rem;
  color: #666666;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  margin: 0 0.2rem;
  font-weight: 500;
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
  margin-left: 0;
  line-height: 2.1;
  background: #fff;
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
  line-height: 2.1;
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
  z-index: 2;
  color: var(--color-zt);
  background-color: #eee;
  border-color: #ddd;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: var(--color-zt);
  border-color: var(--color-zt);
  vertical-align: middle;
}

.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a, .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a, .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 2.6875rem 0;
  text-align: center;
  list-style: none;
}
@media (max-width: 768px) {
  .pager {
    margin: 1.5rem 0;
  }
}

.pager li {
  display: inline;
}

.pager li > a, .pager li > span {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 2.375rem;
  height: 2.375rem;
  background: #fff;
}
.pager li > a i, .pager li > span i {
  line-height: 2.375rem;
  font-weight: 700;
  font-size: 0.875rem;
}

.pager li > a:focus, .pager li > a:hover {
  text-decoration: none;
  background-color: #eee;
}

.pager .next > a, .pager .next > span {
  float: right;
}

.pager .previous > a, .pager .previous > span {
  float: left;
}

.pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hover, .pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: transparent;
}

.ajhhsd {
  color: #A4A4A4;
  font: 400 1rem/2rem "Mont For Anker";
  padding: 1.25em 0;
}
@media (max-width: 768px) {
  .ajhhsd {
    line-height: 1.5em;
    padding: 0.75em 0;
  }
}
.ajhhsd span {
  padding: 0 0.05em;
}
.ajhhsd span:last-child {
  display: none;
}
.ajhhsd a {
  color: #A4A4A4;
}
.ajhhsd a:hover {
  color: var(--color-zt);
}

.xw_ny_banner {
  background: #333;
  -o-background-size: cover;
     background-size: cover;
  padding: 16.5rem 0 7.25rem;
}
@media (max-width: 990px) {
  .xw_ny_banner {
    padding: 7.25rem 0;
  }
}
@media (max-width: 768px) {
  .xw_ny_banner {
    padding: 4rem 0;
  }
}
.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em "Mont For Anker";
}
@media (max-width: 768px) {
  .xw_ny_banner h2 {
    font-size: 1.8rem;
  }
}

.nav-page li {
  padding-bottom: 1em;
}
.nav-page li + li {
  border-top: 1px solid #f0f0f0;
  padding-top: 1em;
}
.nav-page li > a {
  display: block;
  font: 600 1.35rem/1.5em "Mont For Anker";
  color: #333;
}
@media (max-width: 768px) {
  .nav-page li > a {
    font-size: 1.25rem;
  }
}
.nav-page li .sec {
  margin-top: 0.5em;
}
.nav-page li .sec a {
  display: inline-block;
  font: 500 1rem/1.6em "Mont For Anker";
  color: #777;
  margin-right: 1em;
}
.nav-page li .sec a:hover {
  color: var(--color-zt);
}

@media (max-width: 768px) {
  .mt40 {
    margin-top: 1rem;
  }
}
.ssy-sskaa {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .ssy-sskaa {
    margin-bottom: 1.5rem;
  }
}
.ssy-sskaa .searchsa form {
  width: 50%;
  border: 1px solid #999;
  padding: 0 1.5em;
  border-radius: 2rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form {
    width: 90%;
  }
}
.ssy-sskaa .searchsa form input {
  width: 70%;
  font: 500 1.25rem/4rem "Mont For Anker";
  background: transparent;
  color: #999;
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form input {
    font-size: 1.125rem;
    line-height: 3rem;
  }
}
.ssy-sskaa .searchsa form button {
  width: auto;
  outline: none;
  border: none;
  background: transparent;
}
.ssy-sskaa .searchsa form button i {
  font: 500 1.6rem/4rem "Mont For Anker";
  color: #333;
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form button i {
    font-size: 1.35rem;
    line-height: 3rem;
  }
}

.ss-list li {
  padding: 1rem 0;
}
.ss-list li + li {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .ss-list li + li {
    margin-top: 0.5rem;
  }
}
.ss-list li div.img {
  width: 25%;
}
@media (max-width: 768px) {
  .ss-list li div.img {
    width: 100%;
  }
}
.ss-list li div.img a.img {
  display: block;
  border: 1px solid #f2f2f2;
}
.ss-list li .xw-nycont {
  width: 72%;
}
.ss-list li .xw-nycont.w100 {
  width: 100%;
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont {
    width: 100%;
    margin-top: 1.2em;
  }
}
.ss-list li .xw-nycont h2 a {
  display: block;
  color: #656363;
  font: 500 1.25rem/1.35em "Mont For Anker";
  overflow: hidden;
  margin-bottom: 0.2em;
}
.ss-list li .xw-nycont h2 a:hover {
  color: var(--color-zt);
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont h2 a {
    font-size: 1.125rem;
  }
}
.ss-list li .xw-nycont .datea {
  color: #999999;
  font: 500 0.95rem/1.5em "Mont For Anker";
}
.ss-list li .xw-nycont .p {
  color: #999999;
  font: 500 1rem/1.5em "Mont For Anker";
  margin-top: 0.5em;
}
.ss-list li .xw-nycont a.more-b {
  margin-top: 1em;
}

.shzr-content {
  color: #454545;
  font: 400 1rem/2em "Mont For Anker";
  padding: 1rem 0 3rem;
}
.shzr-content strong {
  color: #333;
}
.shzr-content h4 {
  margin-bottom: 0.5em;
}

/*内页end*/
.nbanner {
  position: relative;
}
.nbanner .img {
  width: 100%;
  font-size: 0;
}
.nbanner .img img {
  width: 100%;
}
@media (max-width: 768px) {
  .nbanner .img img {
    aspect-ratio: 16/10;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.nbanner .nbanner-wen1 {
  position: absolute;
  width: 100%;
  z-index: 1;
  color: #fff;
  left: 0;
  bottom: 15%;
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 {
    bottom: 10%;
  }
}
.nbanner .nbanner-wen1 .tit {
  font-size: 3.125rem;
  font-weight: 900;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .tit {
    font-size: 2rem;
  }
}
.nbanner .nbanner-wen1 .txt {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25em;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .txt {
    font-size: 1rem;
  }
}

.mbx {
  color: rgba(29, 29, 29, 0.4);
  font-size: 0.875rem;
  line-height: 1.5em;
  padding: 1.65rem 0;
  text-transform: capitalize;
}
.mbx span {
  padding: 0 0.35em;
}
.mbx a {
  color: rgba(29, 29, 29, 0.4);
}
.mbx a:hover {
  color: var(--color-zt);
}
.mbx a:last-child {
  color: rgba(29, 29, 29, 0.7);
}
.mbx a:last-child:hover {
  color: var(--color-zt);
}

.list_content {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .list_content {
    padding: 2rem 0;
  }
}

@-webkit-keyframes scale2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fang-img {
  -webkit-animation: scale2 4s infinite linear;
  -moz-animation: scale2 4s infinite linear;
  -o-animation: scale2 4s infinite linear;
  animation: scale2 4s infinite linear;
}

#abt1, #abt2, #abt3, #abt4, #abt5, #abt6 {
  height: var(--head-height);
  margin-top: -webkit-calc(var(--head-height) * -1);
  margin-top: -moz-calc(var(--head-height) * -1);
  margin-top: calc(var(--head-height) * -1);
}
@media (max-width: 990px) {
  #abt1, #abt2, #abt3, #abt4, #abt5, #abt6 {
    height: 60px;
    margin-top: -60px;
  }
}

.ny-title {
  color: #9F9E9F;
  font-weight: 700;
}
.ny-title .tit {
  color: #020202;
  font-size: 2.5rem;
  line-height: 1.35em;
}
@media (max-width: 768px) {
  .ny-title .tit {
    font-size: 1.85rem;
  }
}
.ny-title .entit {
  font-size: 1.5rem;
  line-height: 1.25em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .ny-title .entit {
    font-size: 1.25rem;
  }
}
.ny-title.bs {
  color: #fff;
}
.ny-title.bs .tit {
  color: #fff;
}

@keyframes bannerLun {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
       -moz-transform: translateY(100px);
         -o-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
         -o-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}
@media (max-width: 768px) {
  .cp-cont1 .cp-a1v1 .title1 {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.cp-cont1 .cp-a1v2 {
  padding-left: var(--cbasta);
}
@media (max-width: 768px) {
  .cp-cont1 .cp-a1v2 {
    padding: 0 var(--cbasta);
  }
}
.cp-cont1 .cp-a1v2 .mySwiper6 {
  padding-right: var(--cbasta);
  margin-top: 1.35rem;
}
.cp-cont1 .cp-a1v2 .mySwiper6 .swiper-slide a.imgax {
  display: block;
}
.cp-cont1 .cp-a1v2 .mySwiper6 .swiper-slide a.imgax u {
  display: block;
  font-size: 0;
  border-radius: 0.625rem;
  overflow: hidden;
}
.cp-cont1 .cp-a1v2 .mySwiper6 .swiper-slide a.imgax u img {
  width: 100%;
}
.cp-cont1 .cp-a1v2 .mySwiper6 .swiper-slide a.imgax p {
  color: rgba(29, 29, 29, 0.9);
  font-size: 1.375rem;
  line-height: 1.35em;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .cp-cont1 .cp-a1v2 .mySwiper6 .swiper-slide a.imgax p {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
}
.cp-cont1 .cp-a1v2 .mySwiper6 .swiper-slide a.imgax:hover p {
  color: var(--color-zt);
}
.cp-cont1 .cp-a1v2 .mySwiper6 .xian {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.cp-cont2 {
  padding: 3.375rem 0 1rem;
}
@media (max-width: 768px) {
  .cp-cont2 {
    padding: 2.65rem 0 1rem;
  }
}
.cp-cont2 .cp-a2v1 .cp-a2b1 {
  width: 23.6470588235%;
}
@media (max-width: 768px) {
  .cp-cont2 .cp-a2v1 .cp-a2b1 {
    width: 100%;
  }
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.08);
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .tit-axt {
  padding: 1.65rem 7%;
  border-bottom: 1px solid rgba(29, 29, 29, 0.1);
}
@media (max-width: 768px) {
  .cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .tit-axt {
    padding: 1.35rem 7%;
  }
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .tit-axt .tit {
  color: #1D1D1D;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .tit-axt .tit {
    font-size: 1.35rem;
  }
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .tit-axt a.mre-sx {
  color: #1D1D1D;
  font-size: 0.875rem;
  line-height: 1.25em;
  text-decoration: underline;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .tit-axt a.mre-sx:hover {
  color: var(--color-zt);
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li {
  padding: 1.65rem 7%;
  position: relative;
}
@media (max-width: 768px) {
  .cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li {
    padding: 1rem 7%;
  }
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li > a {
  color: #1D1D1D;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.875rem;
  display: block;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li > a:hover {
  color: var(--color-zt);
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .aniut {
  position: absolute;
  width: 40px;
  height: 2.875rem;
  line-height: 2.875rem;
  right: 7%;
  top: 1.65rem;
  text-align: center;
  z-index: 9;
  cursor: pointer;
}
@media (max-width: 768px) {
  .cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .aniut {
    top: 1rem;
  }
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  color: #0E6AAB;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec {
  display: none;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .tit1 {
  position: relative;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .tit1 > a {
  color: rgba(29, 29, 29, 0.7);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.5rem;
  display: block;
  width: -webkit-calc(98% - 40px);
  width: -moz-calc(98% - 40px);
  width: calc(98% - 40px);
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .tit1 > a:hover {
  color: var(--color-zt);
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .tit1 .aniutk {
  position: absolute;
  width: 40px;
  height: 2.5rem;
  line-height: 2.5rem;
  right: 0;
  top: 0;
  text-align: center;
  z-index: 9;
  cursor: pointer;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .tit1 .aniutk i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0.65rem;
  color: #333333;
  font-weight: 900;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .sec {
  margin-left: 1rem;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .sec a {
  display: block;
  color: rgba(29, 29, 29, 0.6);
  font-size: 0.875rem;
  line-height: 2.2857142857em;
  padding-left: 1em;
  position: relative;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .sec a:hover {
  color: var(--color-zt);
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .sec a::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .form-check {
  padding-left: 0;
  position: relative;
  cursor: pointer;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .form-check .form-check-input {
  width: 1rem;
  height: 1rem;
  position: absolute;
  margin-left: 0;
  margin-right: 0.5rem;
  z-index: 1;
  opacity: 0;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .form-check .form-check-input::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .form-check .form-check-input:checked + .gasx i {
  opacity: 1;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .form-check .gasx {
  width: 1rem;
  height: 1rem;
  margin-left: 0;
  margin-right: 0.5rem;
  border: 1px solid rgba(29, 29, 29, 0.7);
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .form-check .gasx i {
  font-size: 0.65rem;
  opacity: 0;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .form-check label {
  color: rgba(29, 29, 29, 0.6);
  font-size: 0.875rem;
  line-height: 2.2857142857em;
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li .sec .form-check label span {
  color: rgba(29, 29, 29, 0.4);
}
.cp-cont2 .cp-a2v1 .cp-a2b1 .cp-a2b1c1 .product-sort > li + li {
  border-top: 1px solid rgba(29, 29, 29, 0.1);
}
.cp-cont2 .cp-a2v1 .cp-a2b2 {
  width: 74.8235294118%;
}
@media (max-width: 768px) {
  .cp-cont2 .cp-a2v1 .cp-a2b2 {
    width: 100%;
    margin-top: 1.65rem;
  }
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-a2b2c1 > p {
  color: #B4B4B4;
  font-size: 1rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .cp-cont2 .cp-a2v1 .cp-a2b2 .cp-a2b2c1 > p {
    width: 100%;
  }
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-a2b2c1 > p span {
  color: #5E5E5E;
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-a2b2c1 .wej1-a {
  color: #646764;
  font-size: 1rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .cp-cont2 .cp-a2v1 .cp-a2b2 .cp-a2b2c1 .wej1-a {
    margin-top: 1rem;
  }
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-a2b2c1 .wej1-a .form-select1 {
  color: #000000;
  font-size: 1rem;
  line-height: 1.5em;
  height: auto;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  border: 1px solid #D9D9D9;
  margin-left: 0.5rem;
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-a2b2c1 .wej1-a .form-select1 .current {
  min-width: 7.5rem;
  display: inline-block;
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-a2b2c1 .wej1-a .form-select1 .option {
  line-height: 1.5em;
  min-height: inherit;
  padding: 0.5em 1em;
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-list1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .cp-cont2 .cp-a2v1 .cp-a2b2 .cp-list1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 450px) {
  .cp-cont2 .cp-a2v1 .cp-a2b2 .cp-list1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-list1 li a.img-ax {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.08);
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-list1 li a.img-ax .asta {
  display: block;
  font-size: 0;
  overflow: hidden;
  position: relative;
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-list1 li a.img-ax .asta img {
  width: 100%;
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-list1 li a.img-ax .asta .tita-a {
  background: var(--color-zt);
  color: #fff;
  font-size: 0.875rem;
  line-height: 2.25rem;
  padding: 0 1.25em;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 1.5rem;
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-list1 li a.img-ax .cont-p {
  padding: 1.125rem 1.5rem 2rem;
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-list1 li a.img-ax .cont-p .ftit {
  color: rgba(29, 29, 29, 0.5);
  font-size: 1rem;
  line-height: 1.25em;
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-list1 li a.img-ax .cont-p .name {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25em;
  padding: 0.4em 0;
  color: rgba(29, 29, 29, 0.9);
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-list1 li a.img-ax .cont-p .jgda {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25em;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .cp-cont2 .cp-a2v1 .cp-a2b2 .cp-list1 li a.img-ax .cont-p .jgda {
    margin-top: 1.125rem;
  }
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-list1 li a.img-ax .cont-p .hwca {
  border: 1px solid var(--color-zt);
  border-radius: 0.375rem;
  margin-top: 1rem;
  color: var(--color-zt);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 1rem 0.5rem;
}
.cp-cont2 .cp-a2v1 .cp-a2b2 .cp-list1 li a.img-ax .cont-p .hwca i {
  font-size: 1.25rem;
  font-weight: 500;
  margin-right: 1rem;
}

input[type=checkbox] {
  accent-color: var(--color-zt);
}

.form-check-input:focus {
  border-color: rgba(29, 29, 29, 0.7);
  outline: 0;
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--color-zt);
  border-color: var(--color-zt);
}

.form-check-input {
  margin-top: 0;
}

.cp-show-cont1 {
  padding-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .cp-show-cont1 {
    padding-bottom: 1.25rem;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 {
  width: 60.8823529412%;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 {
    width: 100%;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li {
  background: #F5F5F7;
  aspect-ratio: 1035/690;
  height: 0;
  overflow: hidden;
  border-radius: 0.625rem;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li {
    aspect-ratio: 1035/818;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .mySwiper4a {
  padding-right: 41.0628019324%;
  position: relative;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .mySwiper4a .swiper-slide .img {
  border-radius: 0.625rem;
  overflow: hidden;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .mySwiper4a .swiper-slide .img img {
  width: 100%;
  aspect-ratio: 605/550;
  -o-object-fit: cover;
     object-fit: cover;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .mySwiper4a .jt-asmta1 > div {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.875rem;
  height: 2.875rem;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  left: 2%;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .mySwiper4a .jt-asmta1 > div.swiper-button-next1 {
  left: auto;
  right: 2%;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .mySwiper4a .jt-asmta1 > div i {
  color: #fff;
  font-size: 0.75rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .mySwiper4a .jt-asmta1 > div:hover {
  background: rgba(14, 106, 171, 0.8);
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .ast-cyytt {
  padding: 0.875rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .ast-cyytt .mySwiper3a .swiper-slide .img {
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .ast-cyytt .mySwiper3a .swiper-slide .img img {
  width: 100%;
  aspect-ratio: 102/93;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .ast-cyytt .mySwiper3a .swiper-slide.swiper-slide-thumb-active .img {
  border-color: var(--color-zt);
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .ast-cyytt .ast1-xa {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .ast-cyytt .ast1-xa {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .ast-cyytt .ast1-xa li {
  cursor: pointer;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .ast-cyytt .ast1-xa li .img {
  border-radius: 0.625rem;
  overflow: hidden;
  border: 1px solid transparent;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .ast-cyytt .ast1-xa li .img img {
  width: 100%;
  aspect-ratio: 102/93;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li .ast-cyytt .ast1-xa li.active .img {
  border-color: var(--color-zt);
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast1 > li.a {
  height: auto;
  opacity: 1;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast2 {
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast2 li {
  border-radius: 0.3125rem;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast2 li a {
  gap: 0.35rem;
  padding: 0.2125rem 1.125rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast2 li a img {
  width: 1rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast2 li a p {
  color: #0A0A0A;
  font-size: 0.875rem;
  line-height: 2.0625rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast2 li:hover {
  background: #f0f0f0;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast2 li.on {
  background: #0E6AAB;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast2 li.on a img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .imgas1 .pt-ast2 li.on a p {
  color: #fff;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .content {
  padding-top: 3.75rem;
  color: #1D1D1D;
  font-size: 1rem;
  line-height: 1.65em;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .content {
    padding-top: 1.75rem;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .content .tit {
  font-size: 1.6875rem;
  line-height: 2.0740740741em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .content .tit {
    font-size: 1.35rem;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .content .table-cont tr td {
  padding: 0.75rem !important;
  border-left: none;
  border-right: none;
  font-size: 1rem;
  line-height: 1.65em;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .content .ftit {
  font-size: 1.125rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .content .p1 {
  margin-top: 0.5rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .content .p1 p {
  padding: 0.35rem 0;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 {
  width: 35.8823529412%;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 {
    width: 100%;
    margin-top: 2rem;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .ftit {
  color: rgba(29, 29, 29, 0.5);
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .tit {
  color: #1D1D1D;
  font-size: 2.9375rem;
  line-height: 1.125em;
  font-weight: 700;
  margin-top: 0.125rem;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .tit {
    font-size: 1.85rem;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .tit1 {
  color: #1D1D1D;
  font-size: 1.125rem;
  line-height: 1.5em;
  font-weight: 700;
  margin-top: 1.5rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .as1t1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .as1t1 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .as1t1 li {
  color: rgba(29, 29, 29, 0.5);
  font-size: 1rem;
  line-height: 3.25rem;
  border-radius: 0.3125rem;
  border: 1px solid rgba(29, 29, 31, 0.2);
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .as1t1 li:hover, .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .as1t1 li.active {
  border-color: #0E6AAB;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .morexa {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .morexa .btn {
  font-size: 1.5rem;
  color: var(--color-zt);
  padding: 0.75rem 1.75rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .morexa input {
  border: none;
  text-align: center;
  padding: 0.75rem 0.75rem;
  height: -webkit-calc(1.5em + 2.25rem + 2px);
  height: -moz-calc(1.5em + 2.25rem + 2px);
  height: calc(1.5em + 2.25rem + 2px);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .data {
  color: #000000;
  font-size: 2.25rem;
  line-height: 1.5em;
  padding: 1.5rem 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-weight: 700;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .data {
    font-size: 2rem;
    padding: 1rem 0;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 a.more-sxa {
  background: #0E6AAB;
  border-radius: 0.625rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.25em;
  padding: 1.25rem 0;
  color: #fff;
  gap: 1rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 a.more-sxa i {
  display: block;
  font-size: 0;
  width: 1.5rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 a.more-sxa i img {
  width: 100%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .asta1 {
  gap: 0.4375rem;
  margin-top: 1.25rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .asta1 img {
  height: 1.5rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat1 {
  margin-top: 1.75rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat1 .tit-a {
  color: #1D1D1D;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.5em;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat1 .txt-a {
  color: rgba(29, 29, 31, 0.7);
  font-size: 1rem;
  line-height: 1.6875em;
  margin-top: 0.5rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat1 .astads {
  margin-top: 1.65rem;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat1 .astads {
    margin-top: 1.125rem;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat1 .astads dl {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.75rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat1 .astads dl dt {
  width: 1.4169rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat1 .astads dl dt img {
  width: 100%;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat1 .astads dl dd {
  font-size: 0.875rem;
  line-height: 1.35em;
  color: #414450;
  width: -webkit-calc(100% - 2rem);
  width: -moz-calc(100% - 2rem);
  width: calc(100% - 2rem);
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat1 .astads dl dd a {
  color: var(--color-zt);
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat2 {
  background: #F5F6F7;
  border-radius: 0.625rem;
  padding: 1.875rem 7.5%;
  margin-top: 1.5625rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat2 u {
  display: block;
  font-size: 0;
  width: 3.875rem;
  border-radius: 50%;
  overflow: hidden;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat2 u img {
  width: 100%;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat2 .cont-p {
  width: -webkit-calc(95% - 3.875rem);
  width: -moz-calc(95% - 3.875rem);
  width: calc(95% - 3.875rem);
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat2 .cont-p .tit-a {
  color: #1D1D1F;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5ems;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .contat2 .cont-p .txt-a {
  color: rgba(29, 29, 31, 0.7);
  font-size: 1rem;
  line-height: 1.6875em;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .d_fenx {
  margin-top: 2rem;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .d_fenx {
    margin-top: 1.25rem;
    gap: 0.75rem;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .d_fenx li a {
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .d_fenx li a {
    width: 2.85rem;
    height: 2.85rem;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .d_fenx li a img {
  width: 37.5%;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .d_fenx li a img {
    width: 50%;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .d_fenx li a:hover {
  background: #000;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .d_fenx li a:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.cp-show-cont2 {
  border-top: 1px solid #D9D9D9;
  padding: 2.25rem 0 5rem;
}
@media (max-width: 768px) {
  .cp-show-cont2 {
    padding: 2rem 0 2.25rem;
  }
}
.cp-show-cont2 .a5v2 {
  padding: 0 var(--cbasta);
}
.cp-show-cont2 .a5v2 .mySwiper3 {
  padding-right: 0;
  padding-bottom: 1.5rem;
}
.cp-show-cont2 .a5v2 .mySwiper3:after {
  display: none;
}

.app-cont1 .img {
  position: relative;
}
.app-cont1 .img u {
  display: block;
  font-size: 0;
  border-radius: 0.625rem;
  overflow: hidden;
}
.app-cont1 .img u img {
  width: 100%;
}
@media (max-width: 768px) {
  .app-cont1 .img u img {
    aspect-ratio: 16/7;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.app-cont1 .img .tit {
  position: absolute;
  left: 0;
  bottom: 1.5rem;
  width: 100%;
  padding: 0 3.5%;
  color: #fff;
  font-size: 2.9375rem;
  font-weight: 900;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .app-cont1 .img .tit {
    font-size: 1.8rem;
    line-height: 1.25em;
    padding: 0 6%;
  }
}

.news-cont1 {
  width: 78.9411764706%;
}
@media (max-width: 768px) {
  .news-cont1 {
    width: 100%;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 2rem;
  }
}
.news-cont1 .news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8125rem 1.0625rem;
}
@media (max-width: 768px) {
  .news-cont1 .news-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.news-cont1 .news-list li a {
  display: block;
}
.news-cont1 .news-list li a .img {
  border-radius: 0.625rem;
  overflow: hidden;
}
.news-cont1 .news-list li a .img img {
  width: 100%;
  aspect-ratio: 437/287;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-cont1 .news-list li a .data {
  color: rgba(29, 29, 29, 0.7);
  font-size: 1.125rem;
  line-height: 1.3333333333em;
  padding: 1.25rem 0 0.75rem;
}
.news-cont1 .news-list li a .name {
  color: #1D1D1D;
  font-size: 1.375rem;
  line-height: 1.4545454545em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .news-cont1 .news-list li a .name {
    font-size: 1.125rem;
  }
}
.news-cont1 .news-list li a:hover .name {
  color: var(--color-zt);
}

.news-cont2 {
  width: 19.7647058824%;
}
@media (max-width: 768px) {
  .news-cont2 {
    width: 100%;
  }
}
.news-cont2 .tit-a {
  color: #1D1D1D;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.5em;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(29, 29, 29, 0.1);
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .news-cont2 .tit-a {
    padding: 1.25rem 1.5rem;
  }
}
.news-cont2 .news-a2b1 {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
}
.news-cont2 .news-a2b1 .new-sort {
  padding: 1rem 1.5rem 2rem;
}
@media (max-width: 768px) {
  .news-cont2 .news-a2b1 .new-sort {
    padding: 0.75rem 1.5rem 1.5rem;
  }
}
.news-cont2 .news-a2b1 .new-sort li a {
  display: block;
  color: rgba(29, 29, 29, 0.7);
  font-size: 1.125rem;
  line-height: 1.5em;
  padding: 0.5em 0;
  font-weight: 700;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .news-cont2 .news-a2b1 .new-sort li a {
    font-size: 1rem;
    padding: 0.35em 0;
  }
}
.news-cont2 .news-a2b1 .new-sort li a:hover {
  color: var(--color-zt);
}
.news-cont2 .news-a2b2 {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
  margin-top: 1.25rem;
}
.news-cont2 .news-a2b2 form {
  padding: 2rem 1.5rem 2.35rem;
}
@media (max-width: 768px) {
  .news-cont2 .news-a2b2 form {
    padding: 1.125rem 1.5rem 1.5rem;
  }
}
.news-cont2 .news-a2b2 form input {
  width: 100%;
  border: 1px solid rgba(29, 29, 29, 0.2);
  border-radius: 0.625rem;
  padding: 0 1em;
  font-size: 1rem;
  line-height: 3.75rem;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .news-cont2 .news-a2b2 form input {
    line-height: 3.35rem;
  }
}
.news-cont2 .news-a2b2 form button {
  width: 100%;
  border: none;
  border-radius: 0.625rem;
  padding: 1.25rem 1em;
  line-height: 1.5rem;
  background: #0E6AAB;
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .news-cont2 .news-a2b2 form button {
    padding: 1rem 1em;
  }
}

.news-show-content {
  padding: 1rem 0 7.125rem;
}
@media (max-width: 768px) {
  .news-show-content {
    padding: 0.5rem 0 2rem;
  }
}
.news-show-content a.fh-more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-zt);
  font-size: 1.125rem;
  line-height: 1.5em;
}
.news-show-content a.fh-more i {
  font-weight: 900;
  font-size: 0.75rem;
  margin-right: 0.35rem;
}
.news-show-content .cont-tentx {
  padding: 0 17.6470588235%;
  margin-top: -1.5rem;
}
@media (max-width: 768px) {
  .news-show-content .cont-tentx {
    margin-top: 1rem;
    padding: 0;
  }
}
.news-show-content .cont-tentx .title-a {
  color: #1D1D1D;
  font-size: 2.9375rem;
  font-weight: 900;
  line-height: 1.0638297872em;
}
@media (max-width: 768px) {
  .news-show-content .cont-tentx .title-a {
    font-size: 1.85rem;
    line-height: 1.25em;
  }
}
.news-show-content .cont-tentx .title-b {
  margin-top: 1rem;
  gap: 1rem 1.5rem;
}
.news-show-content .cont-tentx .title-b p {
  color: rgba(51, 51, 51, 0.7);
  font-size: 1.125rem;
  line-height: 1.3333333333em;
}
.news-show-content .cont-tentx .title-b .d_fenx {
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .news-show-content .cont-tentx .title-b .d_fenx {
    gap: 0.5rem;
  }
}
.news-show-content .cont-tentx .title-b .d_fenx li a {
  width: 3.125rem;
  height: 3.125rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .news-show-content .cont-tentx .title-b .d_fenx li a {
    width: 2.85rem;
    height: 2.85rem;
  }
}
.news-show-content .cont-tentx .title-b .d_fenx li a img {
  width: 42%;
}
@media (max-width: 768px) {
  .news-show-content .cont-tentx .title-b .d_fenx li a img {
    width: 50%;
  }
}
.news-show-content .cont-tentx .title-b .d_fenx li a:hover {
  background: #000;
}
.news-show-content .cont-tentx .title-b .d_fenx li a:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.news-show-content .cont-tentx .content {
  margin-top: 2.625rem;
  color: rgba(29, 29, 29, 0.9);
  font-size: 1.125rem;
  line-height: 1.7777777778em;
}
@media (max-width: 768px) {
  .news-show-content .cont-tentx .content {
    margin-top: 1.5rem;
  }
}
.news-show-content .cont-tentx .content strong {
  font-size: 1.6875rem;
  font-weight: 900;
  margin-bottom: 0.5em;
  display: block;
}
.news-show-content .cont-tentx .content img {
  width: 100%;
  border-radius: 0.625rem;
}
.news-show-content .cont-tentx .fenyxz {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .news-show-content .cont-tentx .fenyxz {
    margin-top: 1.5rem;
  }
}
.news-show-content .cont-tentx .fenyxz a {
  color: rgba(29, 29, 29, 0.7);
  font-size: 1.125rem;
  line-height: 1.5em;
  gap: 0.5rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.news-show-content .cont-tentx .fenyxz a i {
  font-size: 1.65rem;
}
.news-show-content .cont-tentx .fenyxz a:hover {
  color: var(--color-zt);
}

.news-show-cont2 {
  padding: 3.875rem 0 5.625rem;
  border-top: 1px solid #D9D9D9;
}
@media (max-width: 768px) {
  .news-show-cont2 {
    padding: 2.25rem 0;
  }
}
@media (max-width: 768px) {
  .news-show-cont2 .a5v1 .title1 {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.news-show-cont2 .a5v2 {
  margin-top: 1.75rem;
}
@media (max-width: 768px) {
  .news-show-cont2 .a5v2 {
    margin-top: 1.25rem;
  }
}
.news-show-cont2 .a5v2 .mySwiper6 .swiper-slide a {
  display: block;
}
.news-show-cont2 .a5v2 .mySwiper6 .swiper-slide a .img {
  border-radius: 0.625rem;
  overflow: hidden;
}
.news-show-cont2 .a5v2 .mySwiper6 .swiper-slide a .img img {
  width: 100%;
  aspect-ratio: 437/287;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-show-cont2 .a5v2 .mySwiper6 .swiper-slide a .data {
  color: rgba(29, 29, 29, 0.7);
  font-size: 1.125rem;
  line-height: 1.3333333333em;
  padding: 1.25rem 0 0.75rem;
}
.news-show-cont2 .a5v2 .mySwiper6 .swiper-slide a .name {
  color: #1D1D1D;
  font-size: 1.375rem;
  line-height: 1.4545454545em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .news-show-cont2 .a5v2 .mySwiper6 .swiper-slide a .name {
    font-size: 1.125rem;
  }
}
.news-show-cont2 .a5v2 .mySwiper6 .swiper-slide a:hover .name {
  color: var(--color-zt);
}

.support-cont1 {
  padding: 3.65rem 0 6.875rem;
}
@media (max-width: 768px) {
  .support-cont1 {
    padding: 0.5rem 0 2rem;
  }
}
.support-cont1 .support-a1v1 {
  padding: 0 15.2941176471%;
}
@media (max-width: 768px) {
  .support-cont1 .support-a1v1 {
    padding: 0;
  }
}
.support-cont1 .support-a1v1 .title-a {
  text-align: center;
  font-size: 2.9375rem;
  font-weight: 900;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .support-cont1 .support-a1v1 .title-a {
    font-size: 2rem;
  }
}
.support-cont1 .support-a1v1 .ast_list1 li {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
  padding: 1.5625rem 2.25rem;
  margin-top: 1.65rem;
}
@media (max-width: 768px) {
  .support-cont1 .support-a1v1 .ast_list1 li {
    padding: 1.25rem 1.85rem;
    margin-top: 1.35rem;
  }
}
.support-cont1 .support-a1v1 .ast_list1 li .dt .tit {
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.25em;
  font-weight: 700;
  width: -webkit-calc(98% - 1.8rem);
  width: -moz-calc(98% - 1.8rem);
  width: calc(98% - 1.8rem);
}
@media (max-width: 768px) {
  .support-cont1 .support-a1v1 .ast_list1 li .dt .tit {
    font-size: 1.25rem;
  }
}
.support-cont1 .support-a1v1 .ast_list1 li .dt i {
  color: var(--color-zt);
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 768px) {
  .support-cont1 .support-a1v1 .ast_list1 li .dt i {
    font-size: 1.35rem;
  }
}
.support-cont1 .support-a1v1 .ast_list1 li .wehha-job {
  color: rgba(29, 29, 29, 0.9);
  font-size: 1.125rem;
  line-height: 1.7777777778em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .support-cont1 .support-a1v1 .ast_list1 li .wehha-job {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
}

.support-cont2 {
  background-repeat: no-repeat;
  background-position: center;
  -o-background-size: cover;
     background-size: cover;
  padding: 13.5625rem 0;
}
@media (max-width: 768px) {
  .support-cont2 {
    padding: 3.85rem 0;
    position: relative;
  }
  .support-cont2::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
  }
}
@media (max-width: 768px) {
  .support-cont2 .support-a2v1 {
    position: relative;
    z-index: 1;
  }
}
.support-cont2 .support-a2v1 .cont-p {
  width: 39.8235294118%;
  color: #1D1D1D;
}
@media (max-width: 768px) {
  .support-cont2 .support-a2v1 .cont-p {
    width: 100%;
  }
}
.support-cont2 .support-a2v1 .cont-p .tit {
  font-size: 3.125rem;
  font-weight: 900;
  line-height: 1.08em;
  text-transform: capitalize;
  padding-right: 40%;
}
@media (max-width: 768px) {
  .support-cont2 .support-a2v1 .cont-p .tit {
    padding-right: 0;
    font-size: 2rem;
  }
}
.support-cont2 .support-a2v1 .cont-p .txt {
  font-size: 1.5rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .support-cont2 .support-a2v1 .cont-p .txt {
    font-size: 1.125rem;
  }
}
.support-cont2 .support-a2v1 .cont-p a.more-bx {
  border-radius: 0.625rem;
  border: 1px solid var(--color-zt);
  background: var(--color-zt);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 1.5em;
  padding: 0.85rem 2.25em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: #fff;
  margin-top: 2.125rem;
}
@media (max-width: 768px) {
  .support-cont2 .support-a2v1 .cont-p a.more-bx {
    margin-top: 1.25rem;
  }
}

.contact-cont1 {
  padding-top: 1.875rem;
}
@media (max-width: 768px) {
  .contact-cont1 {
    padding-top: 0.5rem;
  }
}
.contact-cont1 form {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
  width: 72.9411764706%;
  margin: 0 auto;
  padding: 3.75rem 6% 5.3125rem;
}
@media (max-width: 768px) {
  .contact-cont1 form {
    width: 100%;
    padding: 1.75rem 7%;
  }
}
.contact-cont1 form .tit-a {
  color: #333333;
  font-size: 2.9375rem;
  line-height: 1.0638297872em;
  text-align: center;
  font-weight: 800;
  padding: 0 18%;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .contact-cont1 form .tit-a {
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
    padding: 0;
  }
}
.contact-cont1 form .form-floating input {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #1D1D1D;
  color: #1d1d1d;
  font-size: 1rem;
  padding: 1rem 0;
}
.contact-cont1 form .form-floating input:focus {
  box-shadow: none;
}
.contact-cont1 form .form-floating textarea {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #1D1D1D;
  color: #1d1d1d;
  font-size: 1rem;
  padding: 1rem 0;
  height: 11.25rem;
}
@media (max-width: 768px) {
  .contact-cont1 form .form-floating textarea {
    height: 7.5rem;
  }
}
.contact-cont1 form .form-floating textarea:focus {
  box-shadow: none;
}
.contact-cont1 form .form-floating label {
  color: rgba(29, 29, 29, 0.7);
  font-size: 1rem;
  padding: 1rem 0;
}
.contact-cont1 form .form-floating label span {
  color: var(--color-zt);
}
.contact-cont1 form .check-toggle {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  cursor: pointer;
}
.contact-cont1 form .check-toggle input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-zt);
}
.contact-cont1 form .check-toggle span {
  display: block;
  color: rgba(29, 29, 29, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
  width: -webkit-calc(100% - 1.5rem);
  width: -moz-calc(100% - 1.5rem);
  width: calc(100% - 1.5rem);
}
.contact-cont1 form .gg-tjmore {
  display: block;
  width: 47.947761194%;
  margin: 3rem auto 0;
  background: var(--color-zt);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
}
@media (max-width: 768px) {
  .contact-cont1 form .gg-tjmore {
    margin-top: 1.25rem;
  }
}

.contact-cont2 {
  padding: 6.5rem 0 6.375rem;
}
@media (max-width: 768px) {
  .contact-cont2 {
    padding: 2.25rem 0;
  }
}
.contact-cont2 .contact-a2v1 {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
}
.contact-cont2 .contact-a2v1 .contact-a2b1 {
  width: 48.8235294118%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact-cont2 .contact-a2v1 .contact-a2b1 {
    width: 100%;
  }
}
.contact-cont2 .contact-a2v1 .contact-a2b1 #map {
  width: 100%;
  aspect-ratio: 830/536;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .contact-cont2 .contact-a2v1 .contact-a2b1 #map {
    aspect-ratio: 16/15;
  }
}
.contact-cont2 .contact-a2v1 .contact-a2b2 {
  width: 51.1764705882%;
  padding: 1.5rem 5%;
}
@media (max-width: 768px) {
  .contact-cont2 .contact-a2v1 .contact-a2b2 {
    width: 100%;
  }
}
.contact-cont2 .contact-a2v1 .contact-a2b2 .tit {
  color: #1D1D1D;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .contact-cont2 .contact-a2v1 .contact-a2b2 .tit {
    font-size: 1.5rem;
  }
}
.contact-cont2 .contact-a2v1 .contact-a2b2 .lx-contas {
  color: #1D1D1D;
  font-size: 1.25rem;
  line-height: 2em;
  margin-top: 0.65rem;
}
@media (max-width: 768px) {
  .contact-cont2 .contact-a2v1 .contact-a2b2 .lx-contas {
    font-size: 1.125rem;
    line-height: 1.5em;
  }
}
.contact-cont2 .contact-a2v1 .contact-a2b2 .lx-contas dl {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .contact-cont2 .contact-a2v1 .contact-a2b2 .lx-contas dl + dl {
    margin-top: 0.65rem;
  }
}
.contact-cont2 .contact-a2v1 .contact-a2b2 .lx-contas dl dt {
  width: 1.375rem;
}
.contact-cont2 .contact-a2v1 .contact-a2b2 .lx-contas dl dt img {
  width: 100%;
}
.contact-cont2 .contact-a2v1 .contact-a2b2 .lx-contas dl dd {
  width: -webkit-calc(100% - 2.35rem);
  width: -moz-calc(100% - 2.35rem);
  width: calc(100% - 2.35rem);
}

.leaflet-control-attribution {
  display: none;
}

.tech-cont1 {
  padding: 1.5rem 0 7.8125rem;
}
@media (max-width: 768px) {
  .tech-cont1 {
    padding: 0.5rem 0 2rem;
  }
}
.tech-cont1 .title-a {
  color: #333333;
  font-size: 2.9375rem;
  font-weight: 800;
  line-height: 1.0638297872em;
  width: 48.8235294118%;
}
@media (max-width: 768px) {
  .tech-cont1 .title-a {
    font-size: 2rem;
    width: 100%;
  }
}
.tech-cont1 .tech-a1v1 .as-st1 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3.75rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .tech-cont1 .tech-a1v1 .as-st1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.6rem;
  }
}
.tech-cont1 .tech-a1v1 .as-st1 li {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
  position: relative;
  height: 10.9375rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}
@media (max-width: 768px) {
  .tech-cont1 .tech-a1v1 .as-st1 li {
    height: auto;
    padding: 1.5rem 0;
  }
}
.tech-cont1 .tech-a1v1 .as-st1 li:last-child img {
  display: none;
}
.tech-cont1 .tech-a1v1 .as-st1 li p {
  text-align: center;
  width: 100%;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .tech-cont1 .tech-a1v1 .as-st1 li p {
    font-size: 1.125rem;
  }
}
.tech-cont1 .tech-a1v1 .as-st1 li img {
  position: absolute;
  right: -2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5625rem;
}
@media (max-width: 768px) {
  .tech-cont1 .tech-a1v1 .as-st1 li img {
    display: none;
  }
}
@media (min-width: 769px) {
  .tech-cont1 .tech-a1v1 .as-st1 li:nth-child(1) {
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .tech-cont1 .tech-a1v1 .as-st1 li:nth-child(2) {
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .tech-cont1 .tech-a1v1 .as-st1 li:nth-child(3) {
    -webkit-order: 3;
       -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .tech-cont1 .tech-a1v1 .as-st1 li:nth-child(4) {
    -webkit-order: 4;
       -moz-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .tech-cont1 .tech-a1v1 .as-st1 li:nth-child(5) {
    -webkit-order: 5;
       -moz-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .tech-cont1 .tech-a1v1 .as-st1 li:nth-child(6) {
    -webkit-order: 6;
       -moz-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .tech-cont1 .tech-a1v1 .as-st1 li:nth-child(6) img {
    right: 38%;
    top: auto;
    bottom: -2.5rem;
    -webkit-transform: translateX(-50%) rotate(90deg);
       -moz-transform: translateX(-50%) rotate(90deg);
        -ms-transform: translateX(-50%) rotate(90deg);
         -o-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
  .tech-cont1 .tech-a1v1 .as-st1 li:nth-child(7) {
    -webkit-order: 12;
       -moz-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .tech-cont1 .tech-a1v1 .as-st1 li:nth-child(8) {
    -webkit-order: 11;
       -moz-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .tech-cont1 .tech-a1v1 .as-st1 li:nth-child(9) {
    -webkit-order: 10;
       -moz-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .tech-cont1 .tech-a1v1 .as-st1 li:nth-child(10) {
    -webkit-order: 9;
       -moz-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .tech-cont1 .tech-a1v1 .as-st1 li:nth-child(11) {
    -webkit-order: 8;
       -moz-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .tech-cont1 .tech-a1v1 .as-st1 li:nth-child(12) {
    -webkit-order: 7;
       -moz-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .tech-cont1 .tech-a1v1 .as-st1 li:nth-child(n+7) img {
    left: -2.5rem;
    right: auto;
    -webkit-transform: translateY(-50%) rotate(180deg);
       -moz-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
         -o-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
}
.tech-cont1 .tech-a1v2 {
  margin-top: 6.125rem;
}
@media (max-width: 768px) {
  .tech-cont1 .tech-a1v2 {
    margin-top: 2.5rem;
  }
}
.tech-cont1 .tech-a1v2 .as-st1 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2.75rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .tech-cont1 .tech-a1v2 .as-st1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.6rem;
  }
}
.tech-cont1 .tech-a1v2 .as-st1 li {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
  position: relative;
  height: 10.9375rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}
@media (max-width: 768px) {
  .tech-cont1 .tech-a1v2 .as-st1 li {
    height: auto;
    padding: 1.5rem 0;
  }
}
.tech-cont1 .tech-a1v2 .as-st1 li:last-child img {
  display: none;
}
.tech-cont1 .tech-a1v2 .as-st1 li p {
  text-align: center;
  width: 100%;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .tech-cont1 .tech-a1v2 .as-st1 li p {
    font-size: 1.125rem;
  }
}
.tech-cont1 .tech-a1v2 .as-st1 li img {
  position: absolute;
  right: -1.95rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5625rem;
}
@media (max-width: 768px) {
  .tech-cont1 .tech-a1v2 .as-st1 li img {
    display: none;
  }
}

.tech-cont2 {
  background: #F8F8F8;
  padding: 6.25rem 0 3.75rem;
}
@media (max-width: 768px) {
  .tech-cont2 {
    padding: 2.5rem 0 1.5rem;
  }
}
@media (max-width: 768px) {
  .tech-cont2 .tech-a2v1 .title1 {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.tech-cont2 .tech-a2v2 {
  margin-top: 1.5rem;
}
.tech-cont2 .tech-a2v2 .mySwiper7 .swiper-slide a.imgwea {
  display: block;
}
.tech-cont2 .tech-a2v2 .mySwiper7 .swiper-slide a.imgwea .img {
  position: relative;
}
.tech-cont2 .tech-a2v2 .mySwiper7 .swiper-slide a.imgwea .img img {
  width: 100%;
}
.tech-cont2 .tech-a2v2 .mySwiper7 .swiper-slide a.imgwea .img u {
  display: block;
  font-size: 0;
  width: 3.25rem;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.tech-cont2 .tech-a2v2 .mySwiper7 .swiper-slide a.imgwea p {
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 500;
  text-transform: capitalize;
  text-align: center;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .tech-cont2 .tech-a2v2 .mySwiper7 .swiper-slide a.imgwea p {
    font-size: 1.125rem;
  }
}

.tech-cont3 {
  padding: 4.0625rem 0;
}
@media (max-width: 768px) {
  .tech-cont3 {
    padding: 1.5rem 0;
  }
}
.tech-cont3 .a3_sdlt1 li {
  padding: 4.0625rem 0;
}
@media (max-width: 768px) {
  .tech-cont3 .a3_sdlt1 li {
    padding: 1rem 0;
  }
}
@media (max-width: 768px) {
  .tech-cont3 .a3_sdlt1 li .tech-a3v1 .title1 {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.tech-cont3 .a3_sdlt1 li .tech-a3v2 {
  margin-top: 1.95rem;
}
@media (max-width: 768px) {
  .tech-cont3 .a3_sdlt1 li .tech-a3v2 {
    margin-top: 1.125rem;
  }
}
.tech-cont3 .a3_sdlt1 li .tech-a3v2 .mySwiper8 .swiper-slide a.imgax {
  display: block;
  background: #F8F8F8;
  padding: 6% 5.5% 0;
}
.tech-cont3 .a3_sdlt1 li .tech-a3v2 .mySwiper8 .swiper-slide a.imgax .img {
  font-size: 0;
  overflow: hidden;
}
.tech-cont3 .a3_sdlt1 li .tech-a3v2 .mySwiper8 .swiper-slide a.imgax .img img {
  width: 100%;
  aspect-ratio: 460/344;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.tech-cont3 .a3_sdlt1 li .tech-a3v2 .mySwiper8 .swiper-slide a.imgax .img:hover img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.tech-cont3 .a3_sdlt1 li .tech-a3v2 .mySwiper8 .swiper-slide a.imgax p {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5em;
  text-align: center;
  padding: 1.5rem 0 2rem;
}
@media (max-width: 768px) {
  .tech-cont3 .a3_sdlt1 li .tech-a3v2 .mySwiper8 .swiper-slide a.imgax p {
    font-size: 1.125rem;
    padding: 1rem 0 1.35rem;
  }
}

.sust-cont1 {
  padding: 6.375rem 0 5rem;
}
@media (max-width: 768px) {
  .sust-cont1 {
    padding: 1rem 0 2.5rem;
  }
}
.sust-cont1 .sust-list li {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F8F8F8;
  border-radius: 0.625rem;
  overflow: hidden;
}
.sust-cont1 .sust-list li + li {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .sust-cont1 .sust-list li + li {
    margin-top: 1.85rem;
  }
}
.sust-cont1 .sust-list li .img {
  display: block;
  font-size: 0;
  width: 56.7058823529%;
}
@media (max-width: 768px) {
  .sust-cont1 .sust-list li .img {
    width: 100%;
  }
}
.sust-cont1 .sust-list li .img img {
  width: 100%;
}
.sust-cont1 .sust-list li .cont-p {
  width: 43.2941176471%;
  padding: 1.5rem 4.65%;
}
@media (max-width: 768px) {
  .sust-cont1 .sust-list li .cont-p {
    width: 100%;
    padding: 1.75rem 7%;
  }
}
.sust-cont1 .sust-list li .cont-p .tit {
  color: #333333;
  font-size: 2.9375rem;
  font-weight: 800;
  line-height: 1.125em;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .sust-cont1 .sust-list li .cont-p .tit {
    font-size: 2rem;
  }
}
.sust-cont1 .sust-list li .cont-p .txt {
  color: rgba(29, 29, 29, 0.9);
  font-size: 1.25rem;
  line-height: 1.6em;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .sust-cont1 .sust-list li .cont-p .txt {
    font-size: 1.125rem;
    margin-top: 0.75rem;
  }
}
@media (min-width: 767px) {
  .sust-cont1 .sust-list li:nth-child(2) .img {
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.sust-cont1 .sust-list li:nth-child(3) .img {
  width: 100%;
}
@media (max-width: 768px) {
  .sust-cont1 .sust-list li:nth-child(3) .img img {
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.sust-cont1 .sust-list li:nth-child(3) .cont-p {
  width: 100%;
  padding: 3.75rem 4.125% 4rem;
}
@media (max-width: 768px) {
  .sust-cont1 .sust-list li:nth-child(3) .cont-p {
    padding: 1.75rem 7%;
  }
}

.tit-abt {
  color: #333333;
  font-size: 2.9375rem;
  line-height: 1.0638297872em;
  font-weight: 800;
  text-transform: capitalize;
}
.tit-abt.xgaz {
  font-weight: 700;
}
@media (max-width: 768px) {
  .tit-abt {
    font-size: 1.85rem;
  }
}

.txt-abt {
  color: rgba(29, 29, 29, 0.9);
  font-size: 1.125rem;
  line-height: 1.7777777778em;
}
@media (max-width: 768px) {
  .txt-abt {
    font-size: 1rem;
  }
}

.abt-cont1 {
  padding: 3rem 0 3.4375rem;
}
@media (max-width: 768px) {
  .abt-cont1 {
    padding: 1rem 0 2.25rem;
  }
}
.abt-cont1 .abt-a1v1 .abt-a1b1 {
  width: 49.3529411765%;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a1b1 {
    width: 100%;
  }
}
.abt-cont1 .abt-a1v1 .abt-a1b1 img {
  width: 100%;
}
.abt-cont1 .abt-a1v1 .abt-a1b2 {
  width: 44.6470588235%;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a1b2 {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.abt-cont1 .abt-a1v1 .abt-a1b2 .txt-abt {
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a1b2 .txt-abt {
    margin-top: 1rem;
  }
}

.abt-cont2 {
  padding: 2.375rem 0;
}
@media (max-width: 768px) {
  .abt-cont2 {
    padding: 1rem 0;
  }
}
.abt-cont2 .abt-a2v1 .tit-abt {
  width: 37.4117647059%;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .tit-abt {
    width: 100%;
  }
}
.abt-cont2 .abt-a2v1 .txt-abt {
  width: 44.6470588235%;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .txt-abt {
    width: 100%;
    margin-top: 0.75rem;
  }
}
.abt-cont2 .abt-a2v2 .as_asta1 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 3.4375rem;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v2 .as_asta1 {
    margin-top: 1.85rem;
  }
}
.abt-cont2 .abt-a2v2 .as_asta1 li {
  width: 33.3333333333%;
  text-align: center;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v2 .as_asta1 li {
    width: 100%;
  }
}
.abt-cont2 .abt-a2v2 .as_asta1 li + li {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v2 .as_asta1 li + li {
    border-left: none;
    margin-top: 1.85rem;
  }
}
.abt-cont2 .abt-a2v2 .as_asta1 li .tit {
  color: var(--color-zt);
  font-size: 4rem;
  line-height: 1.125em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v2 .as_asta1 li .tit {
    font-size: 2.75rem;
  }
}
.abt-cont2 .abt-a2v2 .as_asta1 li p {
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.35em;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v2 .as_asta1 li p {
    font-size: 1.125rem;
    margin-top: 0.25rem;
  }
}

.abt-cont3 {
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .abt-cont3 {
    padding: 1.35rem 0;
  }
}
.abt-cont3 .abt-a3_list1 li + li {
  margin-top: 5.875rem;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3_list1 li + li {
    margin-top: 1.5rem;
  }
}
.abt-cont3 .abt-a3_list1 li .img {
  width: 49.3529411765%;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3_list1 li .img {
    width: 100%;
  }
}
.abt-cont3 .abt-a3_list1 li .img img {
  width: 100%;
}
.abt-cont3 .abt-a3_list1 li .cont-p {
  width: 44.6470588235%;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3_list1 li .cont-p {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.abt-cont3 .abt-a3_list1 li .cont-p .tit-abt {
  padding-right: 15%;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3_list1 li .cont-p .tit-abt {
    padding-right: 0;
  }
}
.abt-cont3 .abt-a3_list1 li .cont-p .txt-abt {
  margin-top: 0.75rem;
}
@media (min-width: 767px) {
  .abt-cont3 .abt-a3_list1 li:nth-child(2n) .img {
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.abt-cont4 {
  padding: 1rem 0 8.75rem;
}
@media (max-width: 768px) {
  .abt-cont4 {
    padding: 0.5rem 0 2.5rem;
  }
}
.abt-cont4 .abt-a4_list1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .abt-cont4 .abt-a4_list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.abt-cont4 .abt-a4_list1 li {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 4.0625rem 5%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .abt-cont4 .abt-a4_list1 li {
    padding: 2.75rem 5%;
  }
}
.abt-cont4 .abt-a4_list1 li u {
  display: block;
  font-size: 0;
  width: 7.75rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .abt-cont4 .abt-a4_list1 li u {
    width: 4.75rem;
  }
}
.abt-cont4 .abt-a4_list1 li u img {
  width: 100%;
}
.abt-cont4 .abt-a4_list1 li .tit {
  color: #1D1D1D;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25em;
  margin: 1.25rem 0 0.35rem;
}
@media (max-width: 768px) {
  .abt-cont4 .abt-a4_list1 li .tit {
    font-size: 1.65rem;
    margin: 1rem 0 0.35rem;
  }
}
.abt-cont4 .abt-a4_list1 li .txt {
  color: rgba(29, 29, 29, 0.9);
  font-size: 1.125rem;
  line-height: 1.7777777778em;
  text-wrap: balance;
}
.abt-cont4 .abt-a4_list1 li:hover {
  background: #D9EAED;
}

.tydy-cont1 {
  padding: 0 0 5rem;
  color: rgba(29, 29, 29, 0.9);
  font-size: 1.125rem;
  line-height: 1.7777777778em;
}
.tydy-cont1 .tydy-a1v1 {
  padding: 0 15%;
}
@media (max-width: 768px) {
  .tydy-cont1 .tydy-a1v1 {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .tydy-cont1 {
    padding-bottom: 2rem;
    padding-top: 0.5rem;
  }
}

.msg-gong .form-floating input {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #1D1D1D;
  color: #1d1d1d;
  font-size: 1rem;
  padding: 1rem 0;
}
.msg-gong .form-floating input:focus {
  box-shadow: none;
}
.msg-gong .form-floating select {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #1D1D1D;
  color: #1d1d1d;
  font-size: 1rem;
}
.msg-gong .form-floating select:focus {
  box-shadow: none;
}
.msg-gong .form-floating textarea {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #1D1D1D;
  color: #1d1d1d;
  font-size: 1rem;
  padding: 1rem 0;
  height: 11.25rem;
}
@media (max-width: 768px) {
  .msg-gong .form-floating textarea {
    height: 7.5rem;
  }
}
.msg-gong .form-floating textarea:focus {
  box-shadow: none;
}
.msg-gong .form-floating label {
  color: rgba(29, 29, 29, 0.7);
  font-size: 1rem;
  padding: 1rem 0;
}
.msg-gong .form-floating label span {
  color: var(--color-zt);
}
.msg-gong .check-toggle {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  cursor: pointer;
}
.msg-gong .check-toggle input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-zt);
}
.msg-gong .check-toggle span {
  display: block;
  color: rgba(29, 29, 29, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
  width: -webkit-calc(100% - 1.5rem);
  width: -moz-calc(100% - 1.5rem);
  width: calc(100% - 1.5rem);
}
.msg-gong .gg-tjmore {
  display: block;
  width: 47.947761194%;
  margin: 3rem auto 0;
  background: var(--color-zt);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
}
@media (max-width: 768px) {
  .msg-gong .gg-tjmore {
    margin-top: 1.25rem;
  }
}

.account-content {
  padding: 7.8125rem 0;
}
@media (max-width: 768px) {
  .account-content {
    padding: 2.5rem 0;
  }
}
.account-content .account-a1v1 {
  padding: 0 19.4117647059%;
}
@media (max-width: 768px) {
  .account-content .account-a1v1 {
    padding: 0;
  }
}
.account-content .account-a1v1 .tit-abt {
  text-align: center;
}
.account-content .account-a1v1 form {
  margin-top: 2.75rem;
}
@media (max-width: 768px) {
  .account-content .account-a1v1 form {
    margin-top: 1rem;
  }
}
.account-content .account-a1v1 .as-tat1 {
  text-align: center;
  color: rgba(29, 29, 29, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 1.75rem;
}
@media (max-width: 768px) {
  .account-content .account-a1v1 .as-tat1 {
    margin-top: 1rem;
  }
}
.account-content .account-a1v1 .as-tat1 a {
  text-decoration: underline;
  color: #72747D;
}
.account-content .account-a1v1 .as-tat1 a:hover {
  color: var(--color-zt);
}
.account-content .account-a1v1 .as-tat1 a.hover-a {
  color: var(--color-zt);
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.account-content .account-a1v1 .as-tat1 a.hover-a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-zt);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.account-content .account-a1v1 .as-tat1 a.hover-a:hover::after {
  width: 100%;
}
.account-content .account-a1v1 .as-tat1 p {
  padding: 0.3rem 0;
}

.position-relative {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  color: #6c757d;
  padding: 0.5rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.password-toggle i {
  font-size: 1.25rem;
}
.password-toggle:hover {
  color: #333;
}

.sign-cont1 .sign-a1v1 {
  width: clamp(320px, 90%, 32.125rem);
  margin: 0 auto;
}
.sign-cont1 .sign-a1v1 a.mreo-ast1 {
  border: 1px solid #000000;
  border-radius: 0.625rem;
  gap: 0.6rem;
  padding: 1rem 0;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .sign-cont1 .sign-a1v1 a.mreo-ast1 {
    padding: 1rem 0;
  }
}
.sign-cont1 .sign-a1v1 a.mreo-ast1 img {
  width: 1.25rem;
}
@media (max-width: 768px) {
  .sign-cont1 .sign-a1v1 a.mreo-ast1 img {
    width: 1.5rem;
  }
}
.sign-cont1 .sign-a1v1 a.mreo-ast1 p {
  color: #5B5966;
  font-size: 1rem;
  line-height: 1.5em;
}
.sign-cont1 .sign-a1v1 form .gg-tjmore {
  width: 100%;
  margin-top: 1.85rem;
  padding: 1rem 1rem;
}
.sign-cont1 .sign-a1v1 .sign-v1 {
  color: #72747D;
  font-size: 1rem;
  line-height: 1.65em;
  padding: 1rem 0;
}
.sign-cont1 .sign-a1v1 .sign-v1 a {
  color: var(--color-zt);
  position: relative;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.sign-cont1 .sign-a1v1 .sign-v1 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-zt);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.sign-cont1 .sign-a1v1 .sign-v1 a:hover::after {
  width: 100%;
}
.sign-cont1 .sign-a1v1 .ast1-a a {
  color: var(--color-zt);
  position: relative;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.125rem auto 0;
}
.sign-cont1 .sign-a1v1 .ast1-a a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-zt);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.sign-cont1 .sign-a1v1 .ast1-a a:hover::after {
  width: 100%;
}

.cart-content {
  padding: 4.375rem 0;
}
@media (max-width: 768px) {
  .cart-content {
    padding: 2rem 0;
  }
}
.cart-content .cart-vt1 {
  padding: 0 21.4705882353%;
}
@media (max-width: 1280px) {
  .cart-content .cart-vt1 {
    padding: 0;
  }
}
.cart-content .cart-vt1 .p1.txt-abt {
  margin-top: 0.45rem;
  color: rgba(29, 29, 29, 0.5);
  font-size: 1.125rem;
}
.cart-content .cart-vt1 .cart-list1 {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .cart-list1 {
    margin-top: 0;
  }
}
.cart-content .cart-vt1 .cart-list1 > li {
  border-bottom: 1px solid rgba(29, 29, 29, 0.1);
  padding: 2.8125rem 0;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .cart-list1 > li {
    padding: 1.75rem 0;
  }
}
.cart-content .cart-vt1 .cart-list1 > li .img {
  width: 25%;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .cart-list1 > li .img {
    width: 100%;
  }
}
.cart-content .cart-vt1 .cart-list1 > li .img u {
  display: block;
  font-size: 0;
  margin-right: 15%;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .cart-list1 > li .img u {
    margin-right: 0;
  }
}
.cart-content .cart-vt1 .cart-list1 > li .img u img {
  width: 100%;
}
.cart-content .cart-vt1 .cart-list1 > li > .cont-p {
  width: 75%;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .cart-list1 > li > .cont-p {
    width: 100%;
    margin-top: 1rem;
  }
}
.cart-content .cart-vt1 .cart-list1 > li > .cont-p .ftit {
  color: rgba(29, 29, 29, 0.5);
  font-size: 1rem;
  line-height: 1.5em;
}
.cart-content .cart-vt1 .cart-list1 > li > .cont-p .cont-pa1 {
  color: #1D1D1D;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .cart-list1 > li > .cont-p .cont-pa1 {
    gap: 1rem;
  }
}
.cart-content .cart-vt1 .cart-list1 > li > .cont-p .cont-pa1 .ascxt {
  width: 50%;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .cart-list1 > li > .cont-p .cont-pa1 .ascxt {
    width: 100%;
  }
}
.cart-content .cart-vt1 .cart-list1 > li > .cont-p .cont-pa1 .tit {
  font-size: 1.5rem;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .cart-list1 > li > .cont-p .cont-pa1 .tit {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
}
.cart-content .cart-vt1 .cart-list1 > li > .cont-p .cont-pa1 select {
  border: none;
  font-size: 1.6875rem;
  line-height: 1.5em;
  width: 1.5em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/xxjt.svg) no-repeat right 0.25rem center;
  -o-background-size: 16px 12px;
     background-size: 16px 12px;
}
.cart-content .cart-vt1 .cart-list1 > li > .cont-p .cont-pa1 select + .nice-select {
  border: none;
  font-size: 1.6875rem;
  line-height: 1.5em;
  height: auto;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .cart-list1 > li > .cont-p .cont-pa1 select + .nice-select {
    font-size: 1.35rem;
    height: auto;
  }
}
.cart-content .cart-vt1 .cart-list1 > li > .cont-p .cont-pa1 select + .nice-select .current {
  margin-right: 0.2em;
}
.cart-content .cart-vt1 .cart-list1 > li > .cont-p .cont-pa1 select + .nice-select:after {
  border-color: #72747D;
  height: 0.5rem;
  width: 0.5rem;
  top: 40%;
}
.cart-content .cart-vt1 .cart-list1 > li > .cont-p .cont-pa1 select + .nice-select .list li {
  font-size: 1.125rem;
}
.cart-content .cart-vt1 .cart-list1 > li > .cont-p .cont-pa1 .tit-ast {
  font-size: 1.5rem;
  line-height: 1.5em;
  color: #1D1D1D;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .cart-list1 > li > .cont-p .cont-pa1 .tit-ast {
    font-size: 1.85rem;
  }
}
.cart-content .cart-vt1 .cart-list1 > li > .cont-p .mmore-sxt {
  color: var(--color-zt);
  font-size: 1.125rem;
  line-height: 1.5em;
  text-decoration: underline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-left: auto;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  margin-top: 1.5rem;
}
.cart-content .cart-vt1 .cart-list1 > li > .cont-p .mmore-sxt:hover {
  color: #000;
}
.cart-content .cart-vt1 .cart-list1 > li > .cont-p .txt-axz {
  color: rgba(29, 29, 29, 0.7);
  font-size: 1.125rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .cart-list1 > li > .cont-p .txt-axz {
    margin-top: 0.5rem;
  }
}
.cart-content .cart-vt1 .js-vontat1 {
  width: 75%;
  margin-left: auto;
  color: #0A0A0A;
  font-size: 1rem;
  line-height: 2em;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .js-vontat1 {
    width: 100%;
  }
}
.cart-content .cart-vt1 .js-vontat1 .js-vo-ast1 {
  padding: 2.625rem 0 5.3125rem;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .js-vontat1 .js-vo-ast1 {
    padding: 1rem 0 1.5rem;
  }
}
.cart-content .cart-vt1 .js-vontat1 .js-vo-ast1 div.pr .weha-t {
  position: absolute;
  left: -1.5rem;
  top: 0;
}
@media (max-width: 1248px) {
  .cart-content .cart-vt1 .js-vontat1 .js-vo-ast1 div.pr .weha-t {
    display: none;
  }
}
.cart-content .cart-vt1 .js-vontat1 .js-vo-ast1 select + .nice-select {
  border: none;
  font-size: 0.875rem;
  line-height: 1.5em;
  height: auto;
  color: var(--color-zt);
}
.cart-content .cart-vt1 .js-vontat1 .js-vo-ast1 select + .nice-select .current {
  margin-right: 0.2em;
}
.cart-content .cart-vt1 .js-vontat1 .js-vo-ast1 select + .nice-select:after {
  border-color: var(--color-zt);
  height: 0.4rem;
  width: 0.4rem;
  top: 44%;
}
.cart-content .cart-vt1 .js-vontat1 .js-vo-ast1 select + .nice-select .list li {
  font-size: 0.875rem;
  color: #0A0A0A;
}
.cart-content .cart-vt1 .js-vontat2 {
  border-top: 1px solid rgba(63, 63, 63, 0.1);
}
.cart-content .cart-vt1 .js-vontat2 .js-vontat2-at {
  padding: 2.5rem 0 2rem;
  color: #0A0A0A;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .js-vontat2 .js-vontat2-at {
    padding: 1.25rem 0 1.125rem;
  }
}
.cart-content .cart-vt1 .js-vontat2 .js-vontat2-at .tit {
  font-size: 1.6875rem;
  line-height: 1.125em;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .js-vontat2 .js-vontat2-at .tit {
    font-size: 1.35rem;
  }
}
.cart-content .cart-vt1 .js-vontat2 .js-vontat2-at .jgzs {
  font-size: 1.5rem;
  line-height: 1.125em;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .js-vontat2 .js-vontat2-at .jgzs {
    font-size: 1.45rem;
  }
}
.cart-content .cart-vt1 .js-vontat2 .more-a {
  margin-left: auto;
}
.cart-content .cart-vt1 .weha-cont1 {
  padding: 4.6875rem 0 1.35rem;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .weha-cont1 {
    padding: 2rem 0;
  }
}
.cart-content .cart-vt1 .weha-cont1 .show-a2_list1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .weha-cont1 .show-a2_list1 {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.25rem;
  }
}
.cart-content .cart-vt1 .weha-cont1 .show-a2_list1 li a.img u {
  display: block;
  font-size: 0;
  border-radius: 0.625rem;
  overflow: hidden;
}
.cart-content .cart-vt1 .weha-cont1 .show-a2_list1 li a.img u img {
  width: 100%;
  aspect-ratio: 304/276;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-content .cart-vt1 .weha-cont1 .show-a2_list1 li a.img .txt-axt {
  margin-top: 1rem;
}
.cart-content .cart-vt1 .weha-cont1 .show-a2_list1 li a.img .txt-axt .ftit {
  color: rgba(29, 29, 29, 0.5);
  font-size: 1rem;
  line-height: 1.25em;
}
.cart-content .cart-vt1 .weha-cont1 .show-a2_list1 li a.img .txt-axt .name {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25em;
  padding: 0.35rem 0;
  color: #1D1D1D;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .weha-cont1 .show-a2_list1 li a.img .txt-axt .name {
    font-size: 1.125rem;
  }
}
.cart-content .cart-vt1 .weha-cont1 .show-a2_list1 li a.img .txt-axt .jgda {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25em;
  color: #1D1D1D;
}
@media (max-width: 768px) {
  .cart-content .cart-vt1 .weha-cont1 .show-a2_list1 li a.img .txt-axt .jgda {
    font-size: 1.25rem;
  }
}
.cart-content .cart-vt1 .weha-cont1 .show-a2_list1 li a.img:hover .txt-axt .name {
  color: var(--color-zt);
}

.more-a {
  background: #0E6AAB;
  border-radius: 0.625rem;
  padding: 1rem 1.5rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.5em;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .more-a {
    font-size: 1rem;
  }
}
.more-a:hover {
  color: #fff;
}

.check-body {
  background: #F5F5F7;
  color: #0A0A0A;
  overflow: visible;
  padding: 0;
}
@media (max-width: 990px) {
  .check-body {
    padding: 0 !important;
  }
}
.check-body .check-content {
  min-height: 100vh;
}
@media (max-width: 768px) {
  .check-body .check-content {
    min-height: inherit;
  }
}
.check-body .check-cont1 {
  width: 50%;
  background: #fff;
  border-right: 1px solid #DCDCDC;
  min-height: 100vh;
  padding: 2.5rem 4% 2.5rem var(--cbasta);
}
.check-body .check-cont1 .wehsx1 {
  margin-right: 1rem;
  margin-top: 0.5rem;
}
.check-body .check-cont1 .wehsx1 .wehs-a1b1c1 {
  width: 75%;
}
@media (max-width: 768px) {
  .check-body .check-cont1 .wehsx1 .wehs-a1b1c1 {
    width: 100%;
  }
}
.check-body .check-cont1 .wehsx1 .wehs-a1b1c1 label {
  display: block;
  color: #505050;
  font-size: 1rem;
  line-height: 1.65em;
}
.check-body .check-cont1 .wehsx1 .wehs-a1b1c1 label input {
  margin-right: 0.35rem;
}
@media (max-width: 768px) {
  .check-body .check-cont1 .wehsx1 .wehs-a1b1c2 {
    width: 100%;
  }
}
.check-body .check-cont1 .wehsx1 .wehs-a1b1c2 a {
  display: block;
  color: #4C4948;
  font-size: 1rem;
  line-height: 1em;
  margin-top: 0.5rem;
  text-decoration: underline;
}
.check-body .check-cont1 .wehsx1 .wehs-a1b1c2 a:hover {
  color: var(--color-zt);
}
.check-body .check-cont2 {
  width: 50%;
  padding: 7.25rem var(--cbasta) 2.5rem 4%;
}
.check-body .logo1 {
  display: inline-block;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .check-body .logo1 {
    margin-bottom: 1.25rem;
  }
}
.check-body .logo1 img {
  height: 3.8125rem;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .check-body .logo1 img {
    height: 3.25rem;
  }
}
.check-body .checkout-form {
  width: 100%;
}
.check-body .signin-row {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.5rem;
}
.check-body .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
}
.check-body .section-title1 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
}
.check-body .signin-link {
  font-size: 0.875rem;
  color: #000000;
  text-decoration: underline;
}
.check-body .signin-link:hover {
  color: var(--color-zt);
}
.check-body .form-group {
  margin-bottom: 0.9rem;
}
.check-body .form-control {
  border-radius: 0.5rem;
  border: 1px solid #E1E1E1;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  box-shadow: none;
  width: 100%;
}
.check-body .form-control:focus {
  border-color: #0E6AAB;
  box-shadow: 0 0 0 0.15rem rgba(14, 106, 171, 0.18);
}
.check-body .form-floating > label {
  padding: 1rem 1.5rem;
}
.check-body .asjhtx {
  display: block;
  position: absolute;
  right: 3%;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.25rem;
}
.check-body .asjhtx img {
  width: 100%;
}
.check-body .check-toggle {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #808080;
  margin: 0.4rem 0 1rem;
}
.check-body .check-toggle input {
  accent-color: var(--color-zt);
  width: 1rem;
  height: 1rem;
}
.check-body .mt-30 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .check-body .mt-30 {
    margin-top: 2rem;
  }
}
.check-body .mt-20 {
  margin-top: 1.2rem;
}
.check-body .mt-10 {
  margin-top: 0.85rem;
}
.check-body .ship-card {
  border: 1px solid #D9D9D9;
  border-radius: 0.6rem;
  padding: 0.9rem 1rem;
  background: #fff;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.75rem;
}
.check-body .ship-card.flex2 {
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.check-body .ship-option {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}
.check-body .ship-option.flex2 {
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.check-body .ship-option input {
  accent-color: var(--color-zt);
}
.check-body .ship-label {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.check-body .ship-label strong {
  font-size: 0.875rem;
  color: #000000;
  font-weight: 500;
}
.check-body .ship-label em {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 0.1rem;
}
.check-body .ship-price {
  font-size: 0.875rem;
  color: #000000;
  font-weight: 600;
}
.check-body .pay-card {
  margin-top: 0.75rem;
}
.check-body .pay-option {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border: 1px solid #D9D9D9;
  border-radius: 0.3125rem;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}
.check-body .pay-option + .pay-option {
  margin-top: 0.5rem;
}
.check-body .pay-option input {
  accent-color: var(--color-zt);
  margin-top: 0;
}
.check-body .pay-name {
  font-size: 0.95rem;
  color: #111;
}
.check-body .pay-brand {
  margin-left: auto;
  font-weight: 700;
  color: #2b2b2b;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.check-body .pay-brand img {
  height: 1.25rem;
}
.check-body .form-floating {
  position: relative;
}
.check-body .weha-t {
  position: absolute;
  right: 6%;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.check-body .weha-t i {
  display: block;
  font-size: 0;
  width: 1.25rem;
  cursor: pointer;
}
.check-body .weha-t i img {
  width: 100%;
}
.check-body .pay-fields {
  padding: 1rem;
  background: #F5F5F7;
  border: 1px solid #D9D9D9;
  border-radius: 0.3125rem;
  overflow: hidden;
  display: none;
}
.check-body .pay-card.is-card .pay-fields {
  display: block;
}
.check-body .legal-note {
  font-size: 0.875rem;
  color: #72747D;
}
.check-body .legal-note a {
  color: #72747D;
  text-decoration: underline;
}
.check-body .legal-note a:hover {
  color: var(--color-zt);
}
.check-body .btn-pay {
  width: 100%;
  border: 0;
  border-radius: 0.3125rem;
  background: var(--color-zt);
  color: #fff;
  font-weight: 700;
  padding: 0.95rem 1rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.check-body .btn-pay:hover {
  background: #000;
  color: #fff;
}
.check-body .foot-links {
  text-align: center;
  font-size: 0.875rem;
  color: #72747D;
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.check-body .foot-links a {
  color: #72747D;
  text-decoration: none;
}
.check-body .foot-links a:hover {
  color: var(--color-zt);
}
.check-body .order-card {
  position: sticky;
  top: 2rem;
}
.check-body .lba-zs_list1 > li {
  border-bottom: 1px solid rgba(29, 29, 29, 0.1);
  padding: 2.8125rem 0;
}
@media (max-width: 768px) {
  .check-body .lba-zs_list1 > li {
    padding: 1.75rem 0;
  }
}
.check-body .lba-zs_list1 > li .img {
  width: 25%;
}
@media (max-width: 768px) {
  .check-body .lba-zs_list1 > li .img {
    width: 100%;
  }
}
.check-body .lba-zs_list1 > li .img u {
  display: block;
  font-size: 0;
  margin-right: 15%;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .check-body .lba-zs_list1 > li .img u {
    margin-right: 0;
  }
}
.check-body .lba-zs_list1 > li .img u img {
  width: 100%;
}
.check-body .lba-zs_list1 > li > .cont-p {
  width: 75%;
}
@media (max-width: 768px) {
  .check-body .lba-zs_list1 > li > .cont-p {
    width: 100%;
    margin-top: 1rem;
  }
}
.check-body .lba-zs_list1 > li > .cont-p .ftit {
  color: rgba(29, 29, 29, 0.5);
  font-size: 1rem;
  line-height: 1.5em;
}
.check-body .lba-zs_list1 > li > .cont-p .cont-pa1 {
  color: #1D1D1D;
}
@media (max-width: 768px) {
  .check-body .lba-zs_list1 > li > .cont-p .cont-pa1 {
    gap: 1rem;
  }
}
.check-body .lba-zs_list1 > li > .cont-p .cont-pa1 .ascxt {
  width: 50%;
}
@media (max-width: 768px) {
  .check-body .lba-zs_list1 > li > .cont-p .cont-pa1 .ascxt {
    width: 100%;
  }
}
.check-body .lba-zs_list1 > li > .cont-p .cont-pa1 .tit {
  font-size: 1.5rem;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .check-body .lba-zs_list1 > li > .cont-p .cont-pa1 .tit {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
}
.check-body .lba-zs_list1 > li > .cont-p .cont-pa1 select {
  border: none;
  font-size: 1.6875rem;
  line-height: 1.5em;
  width: 1.5em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/xxjt.svg) no-repeat right 0.25rem center;
  -o-background-size: 16px 12px;
     background-size: 16px 12px;
}
.check-body .lba-zs_list1 > li > .cont-p .cont-pa1 select + .nice-select {
  border: none;
  font-size: 1.6875rem;
  line-height: 1.5em;
  height: auto;
  background: transparent;
}
@media (max-width: 768px) {
  .check-body .lba-zs_list1 > li > .cont-p .cont-pa1 select + .nice-select {
    font-size: 1.35rem;
    height: auto;
  }
}
.check-body .lba-zs_list1 > li > .cont-p .cont-pa1 select + .nice-select .current {
  margin-right: 0.2em;
}
.check-body .lba-zs_list1 > li > .cont-p .cont-pa1 select + .nice-select:after {
  border-color: #72747D;
  height: 0.5rem;
  width: 0.5rem;
  top: 40%;
}
.check-body .lba-zs_list1 > li > .cont-p .cont-pa1 select + .nice-select .list li {
  font-size: 1.125rem;
}
.check-body .lba-zs_list1 > li > .cont-p .cont-pa1 .tit-ast {
  font-size: 1.5rem;
  line-height: 1.5em;
  color: #1D1D1D;
}
@media (max-width: 768px) {
  .check-body .lba-zs_list1 > li > .cont-p .cont-pa1 .tit-ast {
    font-size: 1.85rem;
  }
}
.check-body .lba-zs_list1 > li > .cont-p .mmore-sxt {
  color: var(--color-zt);
  font-size: 1.125rem;
  line-height: 1.5em;
  text-decoration: underline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-left: auto;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  margin-top: 1.5rem;
}
.check-body .lba-zs_list1 > li > .cont-p .mmore-sxt:hover {
  color: #000;
}
.check-body .lba-zs_list1 > li > .cont-p .txt-axz {
  color: rgba(29, 29, 29, 0.7);
  font-size: 1.125rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .check-body .lba-zs_list1 > li > .cont-p .txt-axz {
    margin-top: 0.5rem;
  }
}
.check-body .form-floating .jsta1 {
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  gap: 0.4rem;
}
.check-body .form-floating .jsta1 li {
  width: 2.375rem;
}
.check-body .form-floating .jsta1 li img {
  width: 100%;
}
.check-body .order-summary {
  padding-top: 1rem;
}
.check-body .sum-row {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1rem;
  color: #0A0A0A;
  padding: 0.3rem 0;
}
.check-body .sum-row em {
  font-style: normal;
  color: var(--color-zt);
}
@media (max-width: 1024px) {
  .check-body .check-cont1,
  .check-body .check-cont2 {
    width: 100%;
    padding: 2rem 6%;
    border-right: 0;
  }
  .check-body .check-cont2 {
    background: #f5f5f7;
  }
}
@media (max-width: 768px) {
  .check-body .checkout-form {
    max-width: 100%;
  }
  .check-body .order-card {
    border-radius: 0.75rem;
  }
  .check-body .item-price {
    margin-left: 0;
  }
}

.address-cont1 {
  padding: 2rem 0 8.5625rem;
}
@media (max-width: 768px) {
  .address-cont1 {
    padding: 1.5rem 0 2.5rem;
  }
}
.address-cont1 .address-a1b1 {
  width: 23.6470588235%;
}
@media (max-width: 768px) {
  .address-cont1 .address-a1b1 {
    width: 100%;
  }
}
.address-cont1 .address-a1b1 .address-a1-act1 {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
}
.address-cont1 .address-a1b1 .address-a1-act1 .tit-ax {
  padding: 1.35rem 1.75rem;
  color: #1D1D1D;
  font-size: 1.5rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(29, 29, 29, 0.1);
}
@media (max-width: 768px) {
  .address-cont1 .address-a1b1 .address-a1-act1 .tit-ax {
    font-size: 1.35rem;
  }
}
.address-cont1 .address-a1b1 .address-a1-act1 .ast1 {
  padding: 1.5rem 1.75rem 2.85rem;
}
@media (max-width: 768px) {
  .address-cont1 .address-a1b1 .address-a1-act1 .ast1 {
    padding: 1rem 1.75rem 2rem;
  }
}
.address-cont1 .address-a1b1 .address-a1-act1 .ast1 li a.name {
  gap: 0.75rem;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .address-cont1 .address-a1b1 .address-a1-act1 .ast1 li a.name {
    padding: 0.7rem 0;
  }
}
.address-cont1 .address-a1b1 .address-a1-act1 .ast1 li a.name i {
  width: 1.5rem;
}
.address-cont1 .address-a1b1 .address-a1-act1 .ast1 li a.name i img {
  width: 100%;
}
.address-cont1 .address-a1b1 .address-a1-act1 .ast1 li a.name p {
  color: #1D1D1D;
  font-size: 1.125rem;
  line-height: 1.5em;
}
.address-cont1 .address-a1b1 .address-a1-act1 .ast1 li a.name:hover i img, .address-cont1 .address-a1b1 .address-a1-act1 .ast1 li a.name.active i img {
  -webkit-filter: invert(28%) sepia(88%) saturate(6441%) hue-rotate(193deg) brightness(90%) contrast(89%);
          filter: invert(28%) sepia(88%) saturate(6441%) hue-rotate(193deg) brightness(90%) contrast(89%);
}
.address-cont1 .address-a1b1 .address-a1-act1 .ast1 li a.name:hover p, .address-cont1 .address-a1b1 .address-a1-act1 .ast1 li a.name.active p {
  color: var(--color-zt);
}
.address-cont1 .address-a1b2 {
  width: 74.5882352941%;
}
@media (max-width: 768px) {
  .address-cont1 .address-a1b2 {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.address-cont1 .address-a1b2 .tit-ax1a {
  color: #1D1D1D;
  font-size: 2.125rem;
  line-height: 1.5em;
  font-weight: 800;
  padding: 0.935rem 0;
}
@media (max-width: 768px) {
  .address-cont1 .address-a1b2 .tit-ax1a {
    font-size: 1.75rem;
  }
}
.address-cont1 .address-a1b2 .address-a1b2v1 {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
  padding: 3.1875rem 4% 3.75rem;
}
@media (max-width: 768px) {
  .address-cont1 .address-a1b2 .address-a1b2v1 {
    padding: 1.85rem 5%;
  }
}
.address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li + li {
  margin-top: 2.625rem;
}
@media (max-width: 768px) {
  .address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li + li {
    margin-top: 1.65rem;
  }
}
.address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li .tit {
  color: #1D1D1D;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25em;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li .tit {
    font-size: 1.35rem;
  }
}
.address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li form {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li form {
    margin-top: 0.5rem;
  }
  .address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li form .col {
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li form .mb-a {
    margin-bottom: 0 !important;
  }
}
.address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li form .gg-tjmore {
  margin: 0;
  margin-top: 1.125rem;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  color: var(--color-zt);
  border: 1px solid var(--color-zt);
  padding: 0.8rem 3.25em;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li form .gg-tjmore {
    padding: 0.8rem 2.5em;
  }
}
.address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li form .gg-tjmore:hover {
  color: #fff;
  background: var(--color-zt);
}
.address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li .p1-txt {
  color: #1D1D1D;
  font-size: 1rem;
  line-height: 1.5em;
}
.address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li .p2-txt {
  color: #1D1D1D;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li .p2-txt {
    margin-top: 0.5rem;
  }
}
.address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li .social-row {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li .social-row {
    margin-top: 1rem;
  }
}
.address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li .google-item {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #222;
}
.address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li .google-item img {
  width: 1.25rem;
}
.address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li .asjhx-ax {
  font-size: 1rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 4px;
}
.address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li .disconnect-link {
  font-size: 1rem;
  color: var(--color-zt);
  text-decoration: none;
  cursor: pointer;
  text-decoration: underline;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.address-cont1 .address-a1b2 .address-a1b2v1 .ash-at1 li .disconnect-link:hover {
  color: #000;
}

.order-vt1 .tit-a {
  color: #1D1D1D;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: capitalize;
}
.order-vt1 .ord-navlist {
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .order-vt1 .ord-navlist {
    gap: 1rem;
  }
}
.order-vt1 .ord-navlist li a {
  color: #1A1A1A;
  font-size: 1rem;
  line-height: 1.5em;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.35rem;
  text-transform: capitalize;
}
.order-vt1 .ord-navlist li:hover a, .order-vt1 .ord-navlist li.active a {
  color: var(--color-zt);
  border-color: var(--color-zt);
}
.order-vt1 .dd-a1v1 {
  margin-top: 2rem;
  gap: 1rem 0;
}
@media (max-width: 768px) {
  .order-vt1 .dd-a1v1 {
    margin-top: 0.5rem;
  }
}
.order-vt1 .dd-a1v1 form {
  width: 44.8096885813%;
}
@media (max-width: 768px) {
  .order-vt1 .dd-a1v1 form {
    width: 100%;
  }
}
.order-vt1 .dd-a1v1 form > div {
  width: -webkit-calc(98% - 6.25rem);
  width: -moz-calc(98% - 6.25rem);
  width: calc(98% - 6.25rem);
  border: 1px solid var(--color-zt);
  border-radius: 0.25rem;
}
@media (max-width: 768px) {
  .order-vt1 .dd-a1v1 form > div {
    width: -webkit-calc(98% - 7rem);
    width: -moz-calc(98% - 7rem);
    width: calc(98% - 7rem);
  }
}
.order-vt1 .dd-a1v1 form > div i {
  width: 2rem;
  color: #404040;
  font-size: 1.25rem;
  text-align: right;
}
.order-vt1 .dd-a1v1 form > div .form-floating {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.order-vt1 .dd-a1v1 form > div input {
  color: #717171;
  font-size: 1rem;
  line-height: 2.5625rem;
  height: 2.5625rem;
  background: #fff;
  border: none;
}
.order-vt1 .dd-a1v1 form > div input:focus {
  box-shadow: none;
}
.order-vt1 .dd-a1v1 form button {
  width: 6.25rem;
  padding: 0;
  line-height: 2.5625rem;
  background: var(--color-zt);
}
.order-vt1 .dd-a1v1 form button p {
  text-align: center;
  width: 100%;
  color: #fff;
}
@media (max-width: 768px) {
  .order-vt1 .dd-a1v1 form button {
    width: 7rem;
  }
}
.order-vt1 .dd-a1v2 {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .order-vt1 .dd-a1v2 {
    margin-top: 1rem;
  }
}
.order-vt1 .dd-a1v2 .p1 {
  color: #4C4948;
  font-size: 1rem;
  line-height: 1.5em;
}
.order-vt1 .dd-a1v2 select {
  width: 7.3125rem;
  color: #717171;
  font-size: 1rem;
  line-height: 2.65em;
  height: 2.65em;
  border-radius: 3.75rem;
  padding: 0 1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/jtax.svg) no-repeat 92% center #F5F5F5;
  -o-background-size: 1.25rem auto;
     background-size: 1.25rem auto;
  border: none;
  margin-left: 1rem;
}
.order-vt1 .dd-a1v2 select + .nice-select {
  border: none;
  font-size: 0.875rem;
  line-height: 1.5em;
  height: auto;
  color: #0A0A0A;
}
@media (max-width: 768px) {
  .order-vt1 .dd-a1v2 select + .nice-select {
    font-size: 1rem;
  }
}
.order-vt1 .dd-a1v2 select + .nice-select .current {
  margin-right: 0.2em;
}
.order-vt1 .dd-a1v2 select + .nice-select:after {
  border-color: #0A0A0A;
  height: 0.4rem;
  width: 0.4rem;
  top: 44%;
}
.order-vt1 .dd-a1v2 select + .nice-select .list li {
  font-size: 0.875rem;
  color: #0A0A0A;
}
.order-vt1 .asj_asjt1 {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .order-vt1 .asj_asjt1 {
    margin-top: 1.5rem;
  }
}
.order-vt1 .asj_asjt1 li + li {
  margin-top: 2.875rem;
}
@media (max-width: 768px) {
  .order-vt1 .asj_asjt1 li + li {
    margin-top: 1.5rem;
  }
}
.order-vt1 .asj_asjt1 .has-tit {
  background: #F5F6F7;
  padding: 1rem 1.5rem;
}
.order-vt1 .asj_asjt1 .has-tit .has-tit-ax {
  width: 50%;
  gap: 1rem 4rem;
}
@media (max-width: 768px) {
  .order-vt1 .asj_asjt1 .has-tit .has-tit-ax {
    width: 100%;
    gap: 1rem 1.25rem;
  }
}
.order-vt1 .asj_asjt1 .has-tit .has-tit-ax .p1 {
  color: #1D1D1D;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.order-vt1 .asj_asjt1 .has-tit .has-tit-ax .p1 p {
  text-transform: capitalize;
}
.order-vt1 .asj_asjt1 .has-tit .has-tit-ax .wehxa a.ashx-a {
  color: #292929;
  font-size: 1rem;
  line-height: 1.5em;
}
.order-vt1 .asj_asjt1 .has-tit .has-tit-ax .wehxa a.ashx-a i {
  font-size: 0.75rem;
  margin-left: 0.25rem;
  font-weight: 600;
}
.order-vt1 .asj_asjt1 .has-tit .has-tit-ax .wehxa .cont-p {
  position: absolute;
  top: 100%;
  left: 0;
  width: 22.625rem;
  padding: 1rem 1.25rem;
  border-radius: 0.625rem;
  border: 1px solid #ECECEC;
  background: #FEFFFF;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.2);
  color: #636363;
  font-size: 0.875rem;
}
.order-vt1 .asj_asjt1 .has-tit .has-tit-ax .wehxa .cont-p b {
  color: #1D1D1D;
}
@media (max-width: 768px) {
  .order-vt1 .asj_asjt1 .has-tit .has-tit-ax .wehxa .cont-p {
    left: auto;
    right: 0;
    width: 15rem;
    padding: 0.75rem 1rem;
  }
}
.order-vt1 .asj_asjt1 .has-tit .has-tit-ax .wehxa:hover .cont-p {
  display: block;
}
.order-vt1 .asj_asjt1 .has-tit .p2 {
  width: 30%;
  text-align: center;
  color: #1A1A1A;
  font-size: 0.875rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .order-vt1 .asj_asjt1 .has-tit .p2 {
    width: 100%;
    margin-top: 1rem;
  }
}
.order-vt1 .asj_asjt1 .has-tit .p2 .asxt {
  gap: 0.25rem 2rem;
}
.order-vt1 .asj_asjt1 .has-tit .p2 .asxt a {
  color: #1A1A1A;
  font-size: 1rem;
  line-height: 1.5em;
  display: block;
}
.order-vt1 .asj_asjt1 .has-tit .p2 .asxt a:hover {
  color: var(--color-zt);
}
@media (max-width: 768px) {
  .order-vt1 .asj_asjt1 .table-cont {
    overflow-x: auto;
  }
}
.order-vt1 .asj_asjt1 .table-cont table {
  border-color: rgba(26, 26, 26, 0.1);
}
@media (max-width: 768px) {
  .order-vt1 .asj_asjt1 .table-cont table {
    min-width: 768px;
  }
}
.order-vt1 .asj_asjt1 .table-cont table tr td {
  border-color: rgba(26, 26, 26, 0.1);
  vertical-align: middle;
  padding: 0.75rem !important;
  color: #0A0A0A;
  font-size: 1.25rem;
  text-align: center;
}
.order-vt1 .asj_asjt1 .table-cont table tr td .img img {
  width: clamp(60px, 80%, 135px);
  margin: 0 auto;
  border-radius: 0.625rem;
  overflow: hidden;
}
.order-vt1 .asj_asjt1 .table-cont table tr td:nth-child(1) {
  border-right: none;
  width: 15%;
}
.order-vt1 .asj_asjt1 .table-cont table tr td:nth-child(2) {
  border-left: none;
}
.order-vt1 .asj_asjt1 .table-cont table tr td .tit {
  color: #0A0A0A;
  font-size: 1.25rem;
}
.order-vt1 .asj_asjt1 .table-cont table tr td .paxt {
  text-align: left;
}
.order-vt1 .asj_asjt1 .table-cont table tr td .paxt .ftit {
  color: #414450;
  font-size: 0.75rem;
  line-height: 1.25em;
}
.order-vt1 .asj_asjt1 .table-cont table tr td .paxt .tit {
  color: #0A0A0A;
  font-size: 1rem;
  line-height: 1.125em;
  padding: 0.25em 0;
}
.order-vt1 .asj_asjt1 .table-cont table tr td .paxt .p1 {
  color: rgba(10, 10, 10, 0.7);
  font-size: 0.875rem;
}
.order-vt1 .asj_asjt1 .table-cont table tr td .p2 {
  color: #1D1D1D;
  font-size: 0.875rem;
  line-height: 1.5em;
  text-transform: capitalize;
}
.order-vt1 .asj_asjt1 .table-cont table tr td .p2 a.more-b {
  margin: 1rem auto 0;
  color: var(--color-zt);
  padding: 0.8rem 2.35rem;
  border-color: var(--color-zt);
  background: transparent;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 800;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.order-vt1 .asj_asjt1 .table-cont table tr td .p2 a.more-b:hover {
  background: var(--color-zt);
  color: #fff;
}
@media (max-width: 768px) {
  .order-vt1 .asj_asjt1 .table-cont table tr td .p2 a.more-b {
    padding: 0.8rem 1.25rem;
  }
}
.order-vt1 .asj_asjt1 .table-cont table tr td .p2 a.more-b.ls {
  background: var(--color-zt);
  color: #fff;
}
.order-vt1 .asj_asjt1 .table-cont table tr td .p2 a.more-b.ls:hover {
  background: #fff;
  color: var(--color-zt);
}
.order-vt1 .asj_asjt1 .table-cont table tr td[rowspan="2"] {
  width: 28.5833333333%;
}

.checkouts-body .titax-x {
  color: #1D1D1D;
  font-size: 1.875rem;
  line-height: 1.5em;
  padding: 1.25rem 0;
  background: #fff;
  border-bottom: 1px solid rgba(124, 124, 124, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .checkouts-body .titax-x {
    font-size: 1.35rem;
    padding: 1rem 0;
  }
}
.checkouts-body .check-cont1, .checkouts-body .check-cont2 {
  padding-top: 6rem;
}
@media (max-width: 768px) {
  .checkouts-body .check-cont1, .checkouts-body .check-cont2 {
    padding-top: 1rem;
  }
}
@media (max-width: 768px) {
  .checkouts-body .check-cont1 {
    padding-top: 4rem;
  }
}
.checkouts-body .section-title .tit {
  color: #0E6AAB;
}
.checkouts-body .section-title .ftit {
  color: #77685E;
  font-size: 1rem;
  font-weight: 400;
}
.checkouts-body .pay-option .flex_left {
  gap: 0.6rem;
}
.checkouts-body .pay-option .jsta1 {
  gap: 0.4rem;
}
.checkouts-body .pay-option .jsta1 li {
  width: 2.375rem;
}
.checkouts-body .pay-option .jsta1 li img {
  width: 100%;
}
.checkouts-body .pay-option {
  border: none;
  border-top: 1px solid #D9D9D9;
  border-radius: 0;
}
.checkouts-body .pay-option:first-child {
  border-top: none;
}
.checkouts-body .pay-fields {
  background: transparent;
  border: none;
  border-top: 1px solid #D9D9D9;
  border-radius: 0;
}
.checkouts-body .pay-card {
  border: 1px solid #D9D9D9;
  border-radius: 0.3125rem;
  overflow: hidden;
  background: #fff;
}
.checkouts-body .form-control {
  border-radius: 3rem;
}
.checkouts-body .check-cont1 {
  background: #F5F6F7;
}
@media (max-width: 768px) {
  .checkouts-body .check-cont1 {
    min-height: auto;
  }
}
.checkouts-body .check-cont2 {
  background: #fff;
}
.checkouts-body .order-card .lba-zs_list1 > li {
  padding-bottom: 0;
  border: none;
}
.checkouts-body .order-card .lba-zs_list1 > li .cont-p .cont-pa1 .tit-ast {
  color: #686868;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.checkouts-body .order-card .sum-row {
  color: #686868;
}
.checkouts-body .zhast-a {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 2rem;
}
.checkouts-body .zhast-a .tit {
  color: #0E6AAB;
}
.checkouts-body .zhast-a .jg {
  color: #686868;
}
.checkouts-body .check-toggle {
  margin-top: 1rem;
}
.checkouts-body .check-toggle a {
  color: #686868;
  border-bottom: 1px solid #686868;
}
.checkouts-body .check-toggle a:hover {
  color: var(--color-zt);
  border-color: var(--color-zt);
}

.order-vyt .tit-a {
  color: #1D1D1D;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: capitalize;
}
.order-vyt .dd-a1list1 {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .order-vyt .dd-a1list1 {
    margin-top: 1.25rem;
    gap: 0.5rem;
    display: none;
  }
  .order-vyt .dd-a1list1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4.85rem;
    width: 100%;
    height: 2px;
    background: #292929;
    z-index: -1;
  }
}
.order-vyt .dd-a1list1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 100%;
  height: 2px;
  background: var(--color-zt);
  z-index: -1;
}
.order-vyt .dd-a1list1 li {
  text-align: center;
}
.order-vyt .dd-a1list1 li b {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 0.75rem;
  line-height: 1.35rem;
  background: var(--color-zt);
  color: #fff;
  font-size: 400;
}
.order-vyt .dd-a1list1 li p {
  color: #686868;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}
.order-vyt .dd-a1list1 li.active b {
  background: var(--color-zt);
  color: #fff;
}
.order-vyt .dd-a1list1 li.active p {
  color: var(--color-zt);
}
.order-vyt .dd-a1v1 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .order-vyt .dd-a1v1 {
    margin-top: 1rem;
  }
}
.order-vyt .dd-a1v1 .dd-a1b1 {
  color: #4B4B4B;
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 500;
  gap: 2rem;
}
@media (max-width: 768px) {
  .order-vyt .dd-a1v1 .dd-a1b1 {
    gap: 0.5rem;
  }
}
.order-vyt .dd-a1v1 .dd-a1b2 {
  background: #F5F5F5;
  border-radius: var(--borderRadius);
  padding: 2.65rem 3%;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .order-vyt .dd-a1v1 .dd-a1b2 {
    padding: 1.65rem 6%;
    margin-top: 1rem;
  }
}
.order-vyt .dd-a1v1 .dd-a1b2 .dd-a1b2c1 {
  font-size: 0.875rem;
  line-height: 1.75em;
  width: 30%;
  color: #000000;
}
.order-vyt .dd-a1v1 .dd-a1b2 .dd-a1b2c2 {
  width: 35%;
}
@media (max-width: 768px) {
  .order-vyt .dd-a1v1 .dd-a1b2 .dd-a1b2c2 {
    width: 100%;
    margin-top: 0.75rem;
  }
}
.order-vyt .dd-a1v1 .dd-a1b2 .dd-a1b2c2 dl {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.order-vyt .dd-a1v1 .dd-a1b2 .dd-a1b2c2 dl dt, .order-vyt .dd-a1v1 .dd-a1b2 .dd-a1b2c2 dl dd {
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.85em;
  font-weight: 400;
}
.order-vyt .gasxat1 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .order-vyt .gasxat1 {
    margin-top: 1.5rem;
  }
}
.order-vyt .gasxat1 .table-cont {
  overflow-x: auto;
}
.order-vyt .gasxat1 .table-cont table {
  border-color: #ECECEC;
  min-width: 768px;
}
.order-vyt .gasxat1 .table-cont table tr td {
  border-color: #ECECEC;
  vertical-align: middle;
  padding: 0.75rem !important;
  color: #858585;
  font-size: 0.8125rem;
  text-align: center;
}
.order-vyt .gasxat1 .table-cont table tr td .img {
  width: 80%;
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .order-vyt .gasxat1 .table-cont table tr td .img {
    border-radius: 1rem;
  }
}
.order-vyt .gasxat1 .table-cont table tr td .img img {
  width: 100%;
}
.order-vyt .gasxat1 .table-cont table tr td a.more-b {
  margin: 0 auto;
  background: var(--color-zt);
  padding: 1.5rem 2.25rem;
}
.order-vyt .gasxat1 .table-cont table tr td a.more-b p {
  color: #fff;
  font-weight: 800;
  line-height: 1.125em;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.order-vyt .gasxat1 .table-cont table tr td:nth-child(1) {
  border-right: none;
  width: 15%;
}
.order-vyt .gasxat1 .table-cont table tr td:nth-child(2) {
  border-left: none;
}
.order-vyt .gasxat1 .table-cont table tr td .ftit {
  color: #414450;
  font-size: 0.75rem;
}
.order-vyt .gasxat1 .table-cont table tr td .tit {
  color: #0A0A0A;
  font-size: 1rem;
  line-height: 1.2em;
  padding: 0.125rem 0;
}
.order-vyt .gasxat1 .table-cont table tr td .paxt {
  text-align: left;
}
.order-vyt .gasxat1 .table-cont table tr td .p1 {
  color: #414450;
  font-size: 0.875rem;
  line-height: 1.5em;
  text-transform: capitalize;
}
.order-vyt .gasxat1 .table-cont table tr td .p1 a.more-b {
  margin: 1rem auto 0;
}
.order-vyt .gasxat1 .table-cont table tr td[rowspan="2"] {
  width: 28.5833333333%;
  color: #1A1A1A;
}
.order-vyt .dd-a1v2a {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .order-vyt .dd-a1v2a {
    margin-top: 1.5rem;
  }
}
.order-vyt .dd-a1v2a .tit {
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 600;
}
.order-vyt .dd-a1v2a .dd-a1v2a-ast1 {
  margin-top: 0;
  border-radius: 0.625rem;
  background: #F5F6F7;
  padding: 1.625rem 6%;
}
.order-vyt .dd-a1v2a .dd-a1v2a-ast1 u {
  display: block;
  font-size: 0;
  width: 2rem;
}
.order-vyt .dd-a1v2a .dd-a1v2a-ast1 u img {
  width: 100%;
}
.order-vyt .dd-a1v2a .dd-a1v2a-ast1 .cont-asop {
  width: 100%;
  color: #4B4B4B;
  font-size: 1.125rem;
  line-height: 1.75em;
}
.order-vyt .dd-a1v2a .dd-a1v2a-ast1 .cont-asop a {
  color: var(--color-zt);
  text-decoration: underline;
}
.order-vyt .dd-a1v2a .dd-a1v2a-ast1 .cont-asop .p1 p {
  padding-left: 1rem;
  position: relative;
}
.order-vyt .dd-a1v2a .dd-a1v2a-ast1 .cont-asop .p1 p + p {
  margin-top: 0.25rem;
}
.order-vyt .dd-a1v2a .dd-a1v2a-ast1 .cont-asop .p1 p::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 700;
}
.order-vyt .dd-a1v2a .ashx_lusdt1 {
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .order-vyt .dd-a1v2a .ashx_lusdt1 {
    margin-top: 1.25rem;
  }
}
.order-vyt .dd-a1v2a .ashx_lusdt1::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 0;
  width: 1px;
  height: -webkit-calc(100% - 2rem);
  height: -moz-calc(100% - 2rem);
  height: calc(100% - 2rem);
  border-left: 1px dotted #000000;
  z-index: -1;
}
.order-vyt .dd-a1v2a .ashx_lusdt1 li {
  gap: 1.125rem;
}
.order-vyt .dd-a1v2a .ashx_lusdt1 li + li {
  margin-top: 6em;
}
@media (max-width: 768px) {
  .order-vyt .dd-a1v2a .ashx_lusdt1 li + li {
    margin-top: 2rem;
  }
}
.order-vyt .dd-a1v2a .ashx_lusdt1 li .asjhx {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #292929;
}
.order-vyt .dd-a1v2a .ashx_lusdt1 li .asjhx i {
  font-size: 0.75rem;
  color: #fff;
}
.order-vyt .dd-a1v2a .ashx_lusdt1 li .cont-p .date {
  color: #858585;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.order-vyt .dd-a1v2a .ashx_lusdt1 li .cont-p .p1 {
  color: #000000;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.order-vyt .dd-a1v2a .ashx_lusdt1 li.active .asjhx {
  background: var(--color-zt);
}
.order-vyt .dd-a1v2a .ashx_lusdt1 li.active .asjhx i {
  color: #292929;
}

.add_sha {
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .add_sha {
    padding-bottom: 0.5rem;
  }
}
.add_sha .tit-a {
  color: #1D1D1D;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: capitalize;
}
.add_sha .address-list1 {
  border-top: 1px solid #E7E7E7;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .add_sha .address-list1 {
    margin-top: 1.25rem;
  }
}
.add_sha .address-list1 li {
  padding: 2rem 0;
  border-bottom: 1px solid #E7E7E7;
}
@media (max-width: 768px) {
  .add_sha .address-list1 li {
    padding: 1rem 0;
  }
}
.add_sha .address-list1 li:last-child {
  border-bottom: none;
}
.add_sha .address-list1 li .cont-p {
  width: 70%;
}
@media (max-width: 768px) {
  .add_sha .address-list1 li .cont-p {
    width: 100%;
  }
}
.add_sha .address-list1 li .cont-p .p1 {
  color: #1D1D1D;
  font-size: 1.125rem;
  line-height: 1.4444444444em;
}
.add_sha .address-list1 li .cont-p .p2xa {
  color: #1D1D1D;
  font-size: 1rem;
  line-height: 1.5em;
  gap: 1rem;
  margin-top: 1rem;
}
.add_sha .address-list1 li .cont-p .p2xa a.more-xab {
  color: #1D1D1D;
}
.add_sha .address-list1 li .cont-p .p2xa a.more-xab i {
  display: block;
  width: 1.25rem;
  margin-right: 0.5rem;
}
.add_sha .address-list1 li .cont-p .p2xa a.more-xab i img {
  width: 100%;
}
.add_sha .address-list1 li .cont-p .p2xa a.more-xab:hover {
  color: #333;
}
.add_sha .address-list1 li .ashazt {
  width: 25%;
  text-align: center;
}
@media (max-width: 768px) {
  .add_sha .address-list1 li .ashazt {
    width: 100%;
    margin-top: 0.5rem;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}
.add_sha .address-list1 li .ashazt label {
  color: #1D1D1D;
  font-size: 1rem;
  line-height: 1.5em;
  display: block;
  margin-bottom: 0.35rem;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .add_sha .address-list1 li .ashazt label {
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.add_sha .address-list1 li .ashazt input[type=radio] {
  border: none;
  outline: none;
  background-color: #fff;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  width: 1.125rem;
  height: 1.125rem;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  line-height: 1.125rem;
  position: relative;
  margin-right: 0.5rem;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.add_sha .address-list1 li .ashazt input[type=radio]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/radio1.svg) no-repeat center;
  -o-background-size: cover;
  background-size: cover;
  background-color: #fff;
}
.add_sha .address-list1 li .ashazt input[type=radio]:checked::before {
  background: url(../images/radio_active1.svg) no-repeat center;
  -o-background-size: cover;
  background-size: cover;
  background-color: #fff;
}
.add_sha .tas-axt a.more-ax {
  display: block;
  width: 44.4636678201%;
  margin: 0 auto;
  background: var(--color-zt);
  line-height: 1.5em;
  color: #fff;
  padding: 1.125rem 0;
  border-radius: 0.625rem;
  font-weight: 800;
  line-height: 1.25em;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 768px) {
  .add_sha .tas-axt a.more-ax {
    width: 100%;
  }
}

.add_sha form .check-toggle + .check-toggle {
  margin-top: 0.125rem;
}
.add_sha form .gg-tjmore {
  margin: 0;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: transparent;
  border: 1px solid var(--color-zt);
  color: var(--color-zt);
  margin-top: 2rem;
  padding: 0.8rem 2.5rem;
}
@media (max-width: 768px) {
  .add_sha form .gg-tjmore {
    margin-top: 1.125rem;
  }
}

.myhidden{
  display:none;
}