@charset "UTF-8";
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: "Inter", "Noto Sans SC", sans-serif !important;
}
body * {
  outline: none;
}

p {
  padding: 0;
  margin: 0;
}

:root {
  --color-bs: #fff;
  --color-ys: #505050;
  --color-zt: #CDFF00;
  --head-height: 12.125rem;
  --cbasta: 13.5416666667%;
  --pandrd: 5.375rem;
  --borderRadius: 1.25rem;
}
@media (max-width: 1366px) {
  :root {
    --cbasta: 5.25%;
  }
}
@media (max-width: 768px) {
  :root {
    --cbasta: 4%;
    --pandrd: 2rem;
    --borderRadius: 1rem;
  }
}

.wh {
  padding: 0 var(--cbasta);
}

.wh1 {
  padding: 0 5.2083333333%;
}
@media (max-width: 768px) {
  .wh1 {
    padding: 0 4%;
  }
}

.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 "Inter";
  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: 0.48rem 2rem;
  border-radius: 3.125rem;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  line-height: 1.5em;
  background: #292929;
  border: 1px solid #292929;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .more-b {
    padding: 0.4rem 1.65rem;
  }
}
.more-b > * {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
}
.more-b i {
  font-size: 1.25rem;
  margin-left: 0.35rem;
  font-weight: 600;
}
.more-b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: #CDFF00;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center right;
     -moz-transform-origin: center right;
      -ms-transform-origin: center right;
       -o-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  border-radius: 3.125rem;
}
.more-b:hover {
  color: #292929;
}
.more-b:hover::after {
  -webkit-transform-origin: center left;
     -moz-transform-origin: center left;
      -ms-transform-origin: center left;
       -o-transform-origin: center left;
          transform-origin: center left;
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}
.more-b.bs {
  color: #fff;
  background: transparent;
  border-color: #fff;
}
.more-b.bs > * {
  color: #fff;
}
.more-b.bs::after {
  background: var(--color-zt);
}
.more-b.bs:hover {
  border-color: var(--color-zt);
}
.more-b.ls {
  background: #CDFF00;
  color: #000000;
  border: none;
}
.more-b.ls::after {
  background: #000000;
}
.more-b.ls:hover {
  color: #fff;
}

body {
  padding-top: var(--head-height);
}

@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;
  }
}
.head {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 99;
}
.head .head1 {
  line-height: 5.3125rem;
  position: relative;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  --as-calore: #fff;
  background: #000000;
}
.head .head1 .logo a img {
  height: 3.375rem;
}
.head .head1 .toubuas {
  gap: 2rem;
}
.head .head1 .toubuas a.more-ax {
  color: #FEFFFF;
  font-size: 1rem;
  line-height: 1.5em;
  position: relative;
}
.head .head1 .toubuas a.more-ax span {
  display: block;
  background: var(--color-zt);
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  color: #000000;
  font-size: 0.625rem;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: -0.25rem;
  left: 0.5rem;
}
.head .head1 .toubuas a.more-ax i {
  font-size: 1rem;
  margin-right: 0.35rem;
}
.head .head2 {
  line-height: 2.8125rem;
  background-color: #292929;
  color: #fff;
  font-size: 1rem;
}
.head .head2 i {
  font-size: 1.125rem;
  margin-right: 0.5rem;
}
.head .xian1 {
  height: 0.25rem;
  background: var(--color-zt);
}
.head .xian2 {
  height: 0.25rem;
  background: #292929;
}
.head .xian3 {
  height: 0.375rem;
  background: var(--color-zt);
}
.head .head3 {
  background: #CDFF00;
}
.head .head3 .menu {
  position: relative;
}
.head .head3 .menu a.sdhexa {
  background: #292929;
  font-size: 1rem;
  line-height: 2.5em;
  padding: 0 2.5rem;
  color: #fff;
}
.head .head3 .menu a.sdhexa p {
  text-transform: uppercase;
}
.head .head3 .menu a.sdhexa i {
  font-size: 1.25rem;
  margin-left: 0.75rem;
}
.head .head3 .menu .m-bm-nav {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  background: #292929;
  width: 18.3125rem;
}
.head .head3 .menu .m-bm-nav li {
  position: relative;
}
.head .head3 .menu .m-bm-nav li a {
  display: block;
  font-size: 0.875rem;
  line-height: 2.5rem;
  color: #fff;
  font-weight: 400;
  padding: 0 2.5rem;
}
.head .head3 .menu .m-bm-nav li .aniut {
  height: 2.5rem;
  line-height: 2.5rem;
  right: 1.25rem;
  cursor: pointer;
}
.head .head3 .menu .m-bm-nav li .aniut i {
  font-size: 1.125rem;
  font-weight: 500;
}
.head .head3 .menu .m-bm-nav li .sec a {
  font-size: 0.875rem;
  line-height: 1.875rem;
  color: #717171;
}
.head .head3 .menu .m-bm-nav li .sec a:hover {
  color: #fff;
}
.head .head3 .zs-tent {
  gap: 1.5rem;
  margin-top: 1rem;
}
.head .head3 .zs-tent .more-ax1 {
  color: #fff;
  font-size: 1rem;
  line-height: 2.5em;background: #292929;
  padding: 0 1.5rem;
}
.head .head3 .zs-tent .more-ax1 p {
  text-transform: uppercase;
}
.head .head3 .zs-tent .more-ax1 i {
  font-size: 1rem;
  margin-right: 0.35rem;
}
.head .head3 .zs-tent .more-ax1 i.icon-xiajiantou1 {
  font-size: 0.875rem;
  margin-right: 0;
  margin-left: 0.15rem;
}
.head .head3 .zs-tent .prexa {
  position: relative;
}
.head .head3 .zs-tent .prexa .yyqh-a1 {
  position: absolute;
  right: 0;
  top: 100%;
  display: none;
  background: #292929;
  width: 15.625rem;
}
.head .head3 .zs-tent .prexa .yyqh-a1 li a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5rem 1.25rem;
}
.head .head3 .zs-tent .prexa .yyqh-a1 li a u {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  overflow: hidden;
}
.head .head3 .zs-tent .prexa .yyqh-a1 li a u img {
  width: 100%;
  vertical-align: top;
}
.head .head3 .zs-tent .prexa .yyqh-a1 li a p {
  margin-left: 0.75rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.75em;
}
.head .head3 .zs-tent .prexa .yyqh-a1 li:hover a {
  background: var(--color-zt);
}
.head .head3 .zs-tent .prexa .yyqh-a1 li:hover a p {
  color: #292929;
}

/* 搜索 */
.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: pointer;
  -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;
  background: #000000;
}
.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: 2.5rem;
}
.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: 2.5rem;
  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 a.more-ax {
  color: #FEFFFF;
  font-size: 1rem;
  line-height: 1.5em;
  position: absolute;
  right: 18%;
  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 a.more-ax span {
  display: block;
  background: var(--color-zt);
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  color: #000000;
  font-size: 0.625rem;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: -0.25rem;
  left: 0.5rem;
}
.m-bm-head .m-bm-head-box a.more-ax i {
  font-size: 1rem;
  margin-right: 0.35rem;
}
.m-bm-head .m-bm-head-box .sskza {
  color: #000;
  font-family: "Inter";
  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: #000000;
}
.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: "Inter";
  padding: 0 4%;
  font-weight: 600;
}
.m-bm-nav > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "Inter";
  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;
}

@media (max-width: 990px) {
  body {
    padding: 60px 0 0 !important;
  }
}
/* end */
@-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: #D9D9D9;
  opacity: 1;
  width: 1.0625rem;
  height: 1.0625rem;
  border-radius: 50%;
  margin: 0 0.5rem !important;
}
@media (max-width: 768px) {
  .gong-pagination span {
    width: 0.85rem;
    height: 0.85rem;
    margin: 0 0.4rem !important;
  }
}
.gong-pagination span.swiper-pagination-bullet-active {
  background: #CDFF00;
}

.gong-p {
  color: #505050;
  font-size: 1rem;
  line-height: 1.75em;
}
.gong-p.bs {
  color: #fff;
}

.title1 .tit {
  color: #000000;
  font-size: 2.25rem;
  line-height: 1.35em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .title1 .tit {
    font-size: 2rem;
  }
}
.title1.bs .tit {
  color: #fff;
}

.iconfont1 {
  font-family: "iconfont" !important;
}

.head-cont {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .head-cont {
    margin-top: 1.5rem;
  }
}
.head-cont .head-a1v1 {
  background: var(--color-zt);
  padding: 0 3.65%;
  color: #000000;
  border-radius: var(--borderRadius);
}
.head-cont .head-a1v1 .tit {
  font-size: 1.25rem;
  line-height: 1.5em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1.25rem 0 0.5rem;
}
.head-cont .head-a1v1 form .msg1 {
  padding: 0.65rem 0 1.5rem;
  border-bottom: 1px solid #332C2B;
}
@media (max-width: 768px) {
  .head-cont .head-a1v1 form .msg1 {
    gap: 1rem;
  }
}
.head-cont .head-a1v1 form .msg1 select {
  width: 20.1801801802%;
  border: none;
  color: #717171;
  font-size: 1rem;
  line-height: 2.5625rem;
  height: 2.5625rem;
  border-radius: 3.75rem;
  padding: 0 1.5em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/jtax.svg) no-repeat 95% center #fff;
  -o-background-size: 1.25rem auto;
     background-size: 1.25rem auto;
}
@media (max-width: 768px) {
  .head-cont .head-a1v1 form .msg1 select {
    width: 100%;
  }
}
.head-cont .head-a1v1 form .msg1 button {
  width: 14.4144144144%;
  padding: 0;
  line-height: 2.5625rem;
}
@media (max-width: 768px) {
  .head-cont .head-a1v1 form .msg1 button {
    width: 100%;
  }
}
.head-cont .head-a1v1 .head-a1c1 {
  padding: 1rem 0;
  color: #000000;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.head-cont .head-a1v1 .head-a1c1 a {
  color: #000000;
}
.head-cont .head-a1v1 .head-a1c1 a:hover {
  color: rgba(0, 0, 0, 0.85);
}
.head-cont .head-a1v1 .head-a1c1 form {
  width: 65%;
  gap: 3%;
  margin-right: auto;
  margin-left: 1.5rem;
}
@media (max-width: 768px) {
  .head-cont .head-a1v1 .head-a1c1 form {
    width: 100%;
    margin-left: 0;
    padding: 0.75rem 0;
  }
}
.head-cont .head-a1v1 .head-a1c1 form .conx {
  -webkit-flex: auto;
     -moz-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
@media (max-width: 768px) {
  .head-cont .head-a1v1 .head-a1c1 form .conx {
    margin-bottom: 0.5rem;
  }
}
.head-cont .head-a1v1 .head-a1c1 form .conx input {
  width: -webkit-calc(98% - 10rem);
  width: -moz-calc(98% - 10rem);
  width: calc(98% - 10rem);
  border: none;
  color: #717171;
  font-size: 1rem;
  line-height: 2.5625rem;
  height: 2.5625rem;
  border-radius: 3.75rem;
  padding: 0 1.5em;
  background: #fff;
}
@media (max-width: 768px) {
  .head-cont .head-a1v1 .head-a1c1 form .conx input {
    width: -webkit-calc(98% - 7rem);
    width: -moz-calc(98% - 7rem);
    width: calc(98% - 7rem);
  }
}
.head-cont .head-a1v1 .head-a1c1 form .conx button {
  width: 10rem;
  padding: 0;
  line-height: 2.5625rem;
}
@media (max-width: 768px) {
  .head-cont .head-a1v1 .head-a1c1 form .conx button {
    width: 7rem;
  }
}

.cont1 {
  background: #F5F5F5;
  padding: 6.875rem 0;
  margin-top: 3.875rem;
}
@media (max-width: 768px) {
  .cont1 {
    margin-top: 2rem;
    padding: 2rem 0;
  }
}
.cont1 .a1v1 .a1b1 {
  width: 48%;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1b1 {
    width: 100%;
  }
}
.cont1 .a1v1 .a1b1 .img {
  border-radius: var(--borderRadius);
  overflow: hidden;
}
.cont1 .a1v1 .a1b1 .img img {
  width: 100%;
}
.cont1 .a1v1 .a1b2 {
  width: 46.5%;
  color: #000000;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1b2 {
    width: 100%;
    margin-top: 1.75rem;
  }
}
.cont1 .a1v1 .a1b2 .tit {
  font-size: 2.25rem;
  line-height: 1.125em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1b2 .tit {
    font-size: 1.8rem;
  }
}
.cont1 .a1v1 .a1b2 .ftit {
  font-size: 1.5rem;
  line-height: 1.25em;
  padding: 1rem 0;
  font-weight: 500;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1b2 .ftit {
    font-size: 1.25rem;
    padding: 0.75rem 0;
  }
}
.cont1 .a1v1 .a1b2 .p1 {
  color: #505050;
  font-size: 1rem;
  line-height: 1.5em;
}
.cont1 .a1v1 .a1b2 .p1 p {
  position: relative;
  padding-left: 1em;
}
.cont1 .a1v1 .a1b2 .p1 p::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.cont1 .a1v1 .a1b2 .more-b {
  margin-top: 1.5rem;
  color: #CDFF00;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1b2 .more-b {
    margin-top: 1rem;
  }
}
.cont1 .a1v1 .a1b2 .more-b:hover {
  color: #333;
}

.cont2 {
  background: #CDFF00;
  padding: 3rem 0 2.3125rem;
  /* border-top: 0.25rem solid #332C2B; */
  position: relative;
}
.cont2::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: #332C2B;
}
.cont2::before{
  content: "";
  position: absolute;
  top: 1.125rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: #332C2B;
}
@media (max-width: 768px) {
  .cont2 {
    padding: 2rem 0;
  }
}
.cont2 .a2_list1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  /* margin-top: 3rem; */
}
@media (max-width: 768px) {
  .cont2 .a2_list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    /* margin-top: 1.5rem; */
  }
}
.cont2 .a2_list1 li {
  text-align: center;
}
.cont2 .a2_list1 li .img {
  width: 4.1875rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cont2 .a2_list1 li .img {
    width: 3.65rem;
  }
}
.cont2 .a2_list1 li .img img {
  width: 100%;
}
.cont2 .a2_list1 li .tit {
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 600;
  margin-top: 1rem;
}
.cont2 .a2_list1 li .p1 {
  font-size: 1rem;
  line-height: 1.5em;
}

.cont3 {
  padding: 3.75rem 0;
}
@media (max-width: 768px) {
  .cont3 {
    padding: 2rem 0;
  }
}
.cont3 .mySwiper1 .img {
  display: block;
  font-size: 0;
}
.cont3 .mySwiper1 .img + .img {
  margin-top: 1rem;
}
.cont3 .mySwiper1 .img img {
  width: 100%;
}
.cont3 .mySwiper1 .swiper-pagination1 {
  margin-top: 2.375rem;
}
@media (max-width: 768px) {
  .cont3 .mySwiper1 .swiper-pagination1 {
    margin-top: 1.5rem;
  }
}

.cont4 {
  background: #000000;
  padding: 3.75rem 0 2rem;
  /* border-top: 0.25rem solid #CDFF00; */
    position: relative;
}
.cont4::after{
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: #CDFF00;
}
.cont4::before{
  content: "";
  position: absolute;
  top: 1.125rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: #CDFF00;
}
@media (max-width: 768px) {
  .cont4 {
    padding: 2.5rem 0;
  }
}
.cont4 .a4v1 {
  position: relative;
}
.cont4 .a4v1 .jt-gongax > div {
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cont4 .a4v1 .jt-gongax > div.swiper-button-next1 {
  right: -4%;
}
@media (max-width: 768px) {
  .cont4 .a4v1 .jt-gongax > div.swiper-button-next1 {
    right: 0;
  }
}
.cont4 .a4v1 .jt-gongax > div.swiper-button-prev1 {
  left: -4%;
}
@media (max-width: 768px) {
  .cont4 .a4v1 .jt-gongax > div.swiper-button-prev1 {
    left: 0;
  }
}
.cont4 .a4v1 .jt-gongax > div i {
  color: #FEFFFF;
  font-size: 3.65rem;
}
@media (max-width: 768px) {
  .cont4 .a4v1 .jt-gongax > div i {
    font-size: 2.25rem;
  }
}
.cont4 .a4v1 .jt-gongax > div:hover i {
  color: #CDFF00;
}
.cont4 .a4v1 .mySwiper2 .cont-p {
  margin: 0 auto;
  position: relative;
  text-align: center;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.cont4 .a4v1 .mySwiper2 .cont-p u {
  display: block;
  position: absolute;
  left: -3rem;
  top: 1rem;
  width: 2.75rem;
  display: none;
}
@media (max-width: 768px) {
  .cont4 .a4v1 .mySwiper2 .cont-p u {
    width: 1.75rem;
    left: 0.25rem;
  }
}
.cont4 .a4v1 .mySwiper2 .cont-p u img {
  width: 100%;
}
.cont4 .a4v1 .mySwiper2 .cont-p .tit {
  font-size: 2rem;
  line-height: 1.65em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .cont4 .a4v1 .mySwiper2 .cont-p .tit {
    font-size: 1.5rem;
  }
}
.cont4 .a4v1 .mySwiper2 .cont-p .p1 {
  font-size: 1.65rem;
  font-style: italic;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .cont4 .a4v1 .mySwiper2 .cont-p .p1 {
    font-size: 1rem;
    padding: 0 10%;
  }
}
.cont4 .a4v1 .mySwiper2 .cont-p .wejxat {
  text-align: right;
  margin-left: auto;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .cont4 .a4v1 .mySwiper2 .cont-p .wejxat {
    margin-right: 15%;
  }
}
.cont4 .a4v1 .mySwiper2 .cont-p .wejxat p {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5em;
}
.cont4 .a4v1 .mySwiper2 .cont-p .wejxat .ashx1 {
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.5rem;
}
.cont4 .a4v1 .mySwiper2 .cont-p .wejxat .ashx1 i {
  font-size: 1rem;
  color: #CDFF00;
  display: block;
  margin-left: 0.35rem;
}

.cont5 {
  background: #F5F5F5;
  position: relative;
  padding: 7.875rem 0;
}
@media (max-width: 768px) {
  .cont5 {
    padding: 2.25rem 0;
  }
}
.cont5::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 46.25%;
  background: var(--color-zt);
  height: 100%;
  -webkit-clip-path: polygon(22% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(22% 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media (max-width: 768px) {
  .cont5::after {
    -webkit-clip-path: inherit;
            clip-path: inherit;
    width: 100%;
    top: auto;
    bottom: 0;
    height: 30%;
  }
}
.cont5 .wh {
  position: relative;
  z-index: 1;
}
.cont5 .wh .a5v1 .a5b1 {
  width: 47.8333333333%;
  color: #000000;
}
@media (max-width: 768px) {
  .cont5 .wh .a5v1 .a5b1 {
    width: 100%;
  }
}
.cont5 .wh .a5v1 .a5b1 .tit {
  font-size: 2.25rem;
  line-height: 1.125em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .cont5 .wh .a5v1 .a5b1 .tit {
    font-size: 1.8rem;
  }
}
.cont5 .wh .a5v1 .a5b1 .ftit {
  font-size: 1.5rem;
  line-height: 1.25em;
  padding: 1rem 0;
  font-weight: 500;
}
@media (max-width: 768px) {
  .cont5 .wh .a5v1 .a5b1 .ftit {
    font-size: 1.25rem;
    padding: 0.75rem 0;
  }
}
.cont5 .wh .a5v1 .a5b1 .p1 {
  color: #505050;
  font-size: 1rem;
  line-height: 1.5em;
}
.cont5 .wh .a5v1 .a5b1 .more-b {
  margin-top: 1.5rem;
  color: #CDFF00;
}
@media (max-width: 768px) {
  .cont5 .wh .a5v1 .a5b1 .more-b {
    margin-top: 1rem;
  }
}
.cont5 .wh .a5v1 .a5b1 .more-b:hover {
  color: #333;
}
.cont5 .wh .a5v1 .a5b2 {
  width: 48%;
}
@media (max-width: 768px) {
  .cont5 .wh .a5v1 .a5b2 {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.cont5 .wh .a5v1 .a5b2 img {
  width: 100%;
}

.foot-fot {
  position: relative;
  background: #000000;
}
.foot-fot .foota1 {
  position: relative;
  z-index: 1;
}
@media (max-width: 990px) {
  .foot-fot .foota1 {
    display: none;
  }
}
.foot-fot .foota1 .foot-tit {
  color: #FFFFFF;
  font-size: 1.125rem;
  line-height: 1.5em;
}
.foot-fot .foota1 .foot-tit a {
  color: #fff;
  display: block;
  text-transform: uppercase;
}
.foot-fot .foota1 .dseca {
  margin-top: 1rem;
}
.foot-fot .foota1 .dseca > a {
  display: block;
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.85em;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.foot-fot .foota1 .dseca > 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 .foota1 .dseca > a:hover {
  color: #fff;
}
.foot-fot .foota1 .dseca > a:hover::after {
  width: 100%;
}
.foot-fot .foota1 .foota1b1 {
  padding: 4rem 0 6.25rem;
}
.foot-fot .foota1 .foota1b1 .erhjxsct {
  color: #fff;
}
.foot-fot .foota1 .foota1b1 .erhjxsct .social-share {
  margin-top: 1rem;
}
.foot-fot .foota1 .foota1b1 .erhjxsct .social-share a {
  border: none;
  color: #000000;
  font-size: 1.25rem;
  background: #FEFFFF;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
}
.foot-fot .foota1 .foota1b1 .erhjxsct .social-share a:hover {
  background: var(--color-zt);
}
.foot-fot .foota2 {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.65em;
}
.foot-fot .foota2 .foot-2vt {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5em 0;
  gap: 0.35rem;
}
.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.flex_left {
  gap: 2em;
}

.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 {
    display: none;
  }
}
.zd_erha .aat_list {
  background: #CDFF00;
  width: 3.375rem;
  border-radius: 3rem;
  padding: 0.75rem 0;
  margin-top: 1rem;
  box-shadow: 0px 0px 1.875rem 0px rgba(0, 0, 0, 0.05);
}
.zd_erha .aat_list li {
  position: relative;
}
.zd_erha .aat_list li.tops {
  display: none;
}
.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%;
  padding: 1rem 0;
  position: relative;
}
.zd_erha .aat_list li > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -18%;
  width: 18%;
  height: 100%;
}
.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.75rem;
}
.zd_erha .aat_list li > a p {
  color: #333434;
  font-size: 0.75rem;
  line-height: 1.25em;
  text-align: center;
  padding: 0.25em 0 0;
}
.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;
  font-weight: 600;
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
  line-height: 2.1;
  font-weight: 600;
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
  z-index: 2;
  color: #333;
  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: #333;
  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 "Inter";
  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 "Inter";
}
@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 "Inter";
  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 "Inter";
  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 "Inter";
  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 "Inter";
  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 "Inter";
  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 "Inter";
}
.ss-list li .xw-nycont .p {
  color: #999999;
  font: 500 1rem/1.5em "Inter";
  margin-top: 0.5em;
}
.ss-list li .xw-nycont a.more-b {
  margin-top: 1em;
}

.shzr-content {
  color: #454545;
  font: 400 1rem/2em "Inter";
  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%;
}
.nbanner .nbanner-wen1 {
  position: absolute;
  width: 100%;
  z-index: 1;
}
.nbanner .nbanner-wen1 .banner-cont {
  color: #fff;
  font-weight: 600;
}
.nbanner .nbanner-wen1 .banner-cont .p1 {
  font-size: 3rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p1 {
    font-size: 2rem;
  }
}
.nbanner .nbanner-wen1 .banner-cont .p2 {
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p2 {
    font-size: 1.25rem;
  }
}
.nbanner .fldah {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
}
.nbanner .fldah .ny-nav {
  gap: 1px;
}
.nbanner .fldah .ny-nav li {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
  position: relative;
}
.nbanner .fldah .ny-nav li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #13315B;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.nbanner .fldah .ny-nav li a {
  display: block;
  color: #555555;
  font-size: 1.125rem;
  line-height: 1.5em;
  padding: 1.55rem 0.5em;
  text-align: center;
}
.nbanner .fldah .ny-nav li:hover, .nbanner .fldah .ny-nav li.on {
  background: rgba(255, 255, 255, 0.85);
}
.nbanner .fldah .ny-nav li:hover::after, .nbanner .fldah .ny-nav li.on::after {
  width: 100%;
}
.nbanner .fldah .ny-nav li:hover a, .nbanner .fldah .ny-nav li.on a {
  color: #13315B;
}
.nbanner .fldah.sticky {
  background: #fff;
  position: fixed !important;
  bottom: auto;
  top: var(--head-height);
  z-index: 9;
}
.nbanner .fldah.sticky .ny-nav li a {
  padding: 1rem 0.5em;
  font-size: 1.125rem;
}

.mbx {
  color: #000000;
  font-size: 0.875rem;
  line-height: 1.75em;
  padding: 1.75rem 0;
}
.mbx i {
  color: #292929;
  font-size: 1rem;
  margin-right: 0.25rem;
}
.mbx a {
  color: #000000;
}
.mbx a:hover {
  color: rgba(0, 0, 0, 0.5);
}
.mbx span {
  padding: 0 0.25rem;
}

.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 .tit {
  color: #000000;
  font-size: 2rem;
  line-height: 1.5em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .ny-title .tit {
    font-size: 1.75rem;
  }
}
.ny-title .ftit {
  color: #000000;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .ny-title .ftit {
    margin-top: 0.5rem;
  }
}

@-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);
  }
}
.content-ny {
  padding: 1rem 0 4rem;
}
@media (max-width: 768px) {
  .content-ny {
    padding: 0 0 2rem;
  }
}
.content-ny .ny-sort1 {
  gap: 1rem 2.5rem;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .content-ny .ny-sort1 {
    gap: 0.85rem 2rem;
    padding: 1.5rem 0;
  }
}
.content-ny .ny-sort1 li a {
  display: block;
  color: #000000;
  font-size: 1rem;
  line-height: 1.25em;
  border-bottom: 1px solid #000;
}
.content-ny .p1-cont1 .p {
  color: #505050;
  font-size: 1rem;
  line-height: 1.5em;
  margin: 1rem 0;
}
.content-ny .p1-cont1 .p span {
  color: #050505;
}
.content-ny .p1-cont1 .titax {
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 600;
}
.content-ny .p1-cont1 form {
  margin-top: 0.75rem;
}
.content-ny .p1-cont1 form input {
  width: 100%;
  border: 1px solid #E4E4E4;
  margin-top: 0.5rem;
  border-radius: 2.5rem;
  padding: 0 1.25em;
  color: #717171;
  line-height: 2.65em;
}
.content-ny .p1-cont1 form input:focus {
  border-color: var(--color-zt);
}
.content-ny .content-txt {
  border-top: 2px solid var(--color-zt);
  padding: 2rem 0;
  position: relative;
}
@media (max-width: 768px) {
  .content-ny .content-txt {
    padding: 1.25rem 0;
  }
}
.content-ny .content-txt::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #332C2B;
}

.cp-list1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5625rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .cp-list1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
  }
}
.cp-list1 li {
  position: relative;
  border: 1px solid #E4E4E4;
  border-radius: var(--borderRadius);
  background: #F5F5F5;
}
.cp-list1 li a.imga {
  display: block;
  border-radius: var(--borderRadius);
  overflow: hidden;
}
.cp-list1 li a.imga .img {
  border-radius: var(--borderRadius);
  overflow: hidden;
  border-bottom: 1px solid #E4E4E4;
  background: #E4E4E4;
}
.cp-list1 li a.imga .img img {
  width: 100%;
}
.cp-list1 li a.imga .tit {
  text-align: center;
  color: #505050;
  font-size: 1rem;
  line-height: 1.5em;
  padding: 0.85rem 0;
}
@media (max-width: 768px) {
  .cp-list1 li a.imga .tit {
    padding: 0.75rem 0;
  }
}
.cp-list1 li .cont-p {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  width: 150%;
  z-index: 1;
  border-radius: var(--borderRadius);
  overflow: hidden;
  border: 1px solid #CFCFCF;
  background: #FEFFFF;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .cp-list1 li .cont-p {
    top: 100%;
  }
}
.cp-list1 li .cont-p img {
  width: 100%;
}
.cp-list1 li .cont-p .more-flex {
  background: #CDFF00;
  text-align: center;
  color: #505050;
  font-size: 1rem;
  line-height: 1.5em;
  width: 4.4375rem;
  height: 4.4375rem;
  border-radius: 50%;
  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;
  position: absolute;
  right: 5%;
  bottom: 5%;
  z-index: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .cp-list1 li .cont-p .more-flex {
    width: 3.85rem;
    height: 3.85rem;
    font-size: 0.875rem;
  }
}
.cp-list1 li .cont-p .more-flex:hover {
  background: #333;
  color: #fff;
}
.cp-list1 li:hover{
  background: #CDFF00;
}
.cp-list1 li:hover .cont-p {
  display: block;
  left: 100%;
}
@media (max-width: 768px) {
  .cp-list1 li:hover .cont-p {
    left: 0;
  }
}
.cp-list1 li:nth-child(4n) .cont-p {
  left: auto;
  right: 100%;
}
@media (max-width: 768px) {
  .cp-list1 li:nth-child(2n) .cont-p {
    left: auto;
    right: 0;
  }
}

.ny-title1 .tit {
  color: #414140;
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 500;
}

.cp-show-cont1 {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .cp-show-cont1 {
    margin-top: 1rem;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 {
  width: 47.3333333333%;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 {
    width: 100%;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .map-container {
  position: relative;
  border-radius: var(--borderRadius);
  border: 1px solid #E4E4E4;
  background: #FEFFFF;
  overflow: hidden;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .map-container > u {
  display: block;
  font-size: 0;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .map-container > u img {
  visibility: hidden;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .map-container .zoom-controls {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  gap: 1rem;
  z-index: 1;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .map-container .zoom-controls .more-axt {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--color-zt);
  border-radius: 50%;
  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;
  cursor: pointer;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .map-container .zoom-controls .more-axt img {
  width: 50%;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .map-container picture img {
  width: 100%;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 a.jscx-more1 {
  margin: 2rem 0 1rem;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 a.jscx-more1 {
    margin: 1rem 0 0.5rem;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 a.jscx-more1 u {
  display: block;
  font-size: 0;
  width: 1.9375rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 a.jscx-more1 u img {
  width: 100%;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 a.jscx-more1 p {
  color: #505050;
  font-size: 1rem;
  margin-left: 0.5rem;
  line-height: 1.5em;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b1 .p1 {
  line-height: 1.5em;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 {
  width: 50.6666666667%;
}
@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 .tit {
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5em;
  font-weight: 600;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .ftit {
  color: #8D8D8D;
  font-size: 0.75rem;
  line-height: 1.5em;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont {
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont {
    overflow-x: auto;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table {
  border-right: none;
  border-left: none;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table {
    min-width: 768px;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr th, .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td {
  padding: 0.65rem 0.35rem !important;
  vertical-align: middle;
  text-align: center;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr th {
  border-right: none;
  border-left: none;
  border-bottom: none;
  color: #8D8D8D;
  font-size: 0.75rem;
  line-height: 1.5em;
  font-weight: 400;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td {
  border-right: none;
  border-left: none;
  border-top: none;
  color: #414140;
  font-size: 0.8125rem;
  line-height: 1.35em;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .img {
  width: 3rem;
  border: 1px solid transparent;
  position: relative;
  display: block;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .img img {
  width: 100%;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .img .coxnt {
  position: absolute;
  left: 130%;
  top: 0;
  width: 500%;
  border-radius: var(--borderRadius);
  overflow: hidden;
  border: 1px solid #CFCFCF;
  background: #FEFFFF;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.2);
  display: none;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .img .coxnt {
    width: 300%;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .img .coxnt img {
  width: 100%;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .img:hover {
  border-color: #CDFF00;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .img:hover .coxnt {
  display: block;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .morexa {
  border: 1px solid #E4E4E4;
  border-radius: 2rem;
  width: 6.75rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .morexa input {
  width: 1.75rem;
  border: none;
  padding: 0;
  text-align: center;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img {
  position: relative;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img a.morexak {
  width: 2.5625rem;
  height: 2.5625rem;
  border-radius: 50%;
  background: var(--color-zt);
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img a.morexak i {
  color: #292929;
  font-size: 1.25rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img a.morexak:hover, .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img a.morexak.clicked {
  background: #292929;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img a.morexak:hover i, .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img a.morexak.clicked i {
  color: var(--color-zt);
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img .cont-p {
  position: absolute;
  right: 120%;
  bottom: -2rem;
  border-radius: var(--borderRadius);
  border: 1px solid #CFCFCF;
  background: #FEFFFF;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  width: 15rem;
  text-align: center;
  padding: 0 1.5rem 1.25rem;
  display: none;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img .cont-p {
    bottom: auto;
    top: -1rem;
    right: 110%;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img .cont-p .tit {
  color: #000000;
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: left;
  padding: 1.25rem 0;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img .cont-p .ptst1 {
  color: #000000;
  font-size: 0.8125rem;
  border-top: 1px solid rgba(211, 211, 211, 0.2);
  border-bottom: 1px solid rgba(211, 211, 211, 0.2);
  padding: 0.75rem 0;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img .cont-p a.more-b {
  margin: 1rem auto;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img .cont-p a.fhxa {
  color: #000000;
  font-size: 0.8125rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img .cont-p a.fhxa i {
  font-size: 0.8125rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img .cont-p .gb-z {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  cursor: pointer;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td .asx-img .cont-p .gb-z i {
  color: #A2A2A2;
  font-weight: 700;
  line-height: 1em;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr:last-child td .img .coxnt {
    top: auto;
    bottom: 0;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .wegxa1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  text-align: right;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .wegxa1 {
    margin-top: 1rem;
  }
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .wegxa1 .jgxa {
  color: #505050;
  font-size: 1rem;
  line-height: 1.5em;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .wegxa1 .pa1 {
  color: #808080;
  font-size: 1rem;
}
.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .wegxa1 a.more-b {
  margin-top: 1rem;
  margin-left: auto;
}
@media (max-width: 768px) {
  .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .wegxa1 a.more-b {
    margin-top: 0.75rem;
  }
}

.dzym-list1 {
  background: #F5F5F5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 2.5rem 2%;
}
@media (max-width: 768px) {
  .dzym-list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem 0;
  }
}
.dzym-list1 li {
  text-align: center;
  padding: 0 5.8333333333%;
}
.dzym-list1 li .img {
  width: 2.5rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .dzym-list1 li .img {
    width: 3.65rem;
  }
}
.dzym-list1 li .img img {
  width: 100%;
}
.dzym-list1 li .tit {
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5em;
  font-weight: 600;
  margin-top: 1rem;
}
.dzym-list1 li .p1 {
  font-size: 1rem;
  line-height: 1.5em;
}

.dzym-content .tit-a1 {
  color: #4C4948;
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 700;
  padding: 0.65rem 0;
}
@media (max-width: 768px) {
  .dzym-content .tit-a1 {
    font-size: 1.35rem;
  }
}
.dzym-content .tit-a2 {
  color: #292929;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .dzym-content .tit-a2 {
    margin-top: 1.5rem;
  }
}
.dzym-content .tit-a2 i {
  display: block;
  font-size: 0;
  width: 1.125rem;
  margin-right: 0.25rem;
}
.dzym-content .tit-a2 i img {
  width: 100%;
}
.dzym-content form input {
  width: 100%;
  border: 1px solid #E4E4E4;
  border-radius: 3.75rem;
  padding: 0 1.5em;
  color: #717171;
  line-height: 2.65em;
}
.dzym-content form .msg1 {
  margin-top: 1.125rem;
}
.dzym-content form .msg1 select {
  width: 100%;
  color: #717171;
  font-size: 1rem;
  line-height: 2.65em;
  height: 2.65em;
  border-radius: 3.75rem;
  padding: 0 1.5em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/jtax.svg) no-repeat 98% center #fff;
  -o-background-size: 1.25rem auto;
     background-size: 1.25rem auto;
  border: 1px solid #E4E4E4;
}
@media (max-width: 768px) {
  .dzym-content form .msg1 select {
    width: 100%;
    background: url(../images/jtax.svg) no-repeat 96% center #fff;
  }
}
.dzym-content form .msg2 {
  margin-top: 1.125rem;
}
.dzym-content form .msg2 dl{
     width: 48.5%;
}
.dzym-content form .msg2 input {
  width: 100%;
}
.dzym-content form .megaxt {
  margin-top: 1.125rem;
}
.dzym-content form .megaxt .form-check1 {
  color: #717171;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.dzym-content form .megaxt .form-check1 input {
  width: auto;
  margin-right: 0.5rem;
  font-size: 1rem;
  -webkit-transform: scale(1.25);
     -moz-transform: scale(1.25);
      -ms-transform: scale(1.25);
       -o-transform: scale(1.25);
          transform: scale(1.25);
}
@media (max-width: 768px) {
    .dzym-content form .msg2 dl{
     width: 100%;
    }
  .dzym-content form .megaxt .form-check1 input {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}
.dzym-content form .more-b {
  padding: 0.48rem 3rem;
}

.ddym-a1v1 {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .ddym-a1v1 {
    margin-top: 1rem;
  }
}
.ddym-a1v1 .wehsx1 {
  border-top: 1px solid #E7E7E7;
  margin-right: 1rem;
  padding-top: 1.35rem;
}
@media (max-width: 768px) {
  .ddym-a1v1 .wehsx1 {
    padding-top: 1rem;
  }
}
.ddym-a1v1 .wehsx1 .wehs-a1b1c1 {
  width: 75%;
}
@media (max-width: 768px) {
  .ddym-a1v1 .wehsx1 .wehs-a1b1c1 {
    width: 100%;
  }
}
.ddym-a1v1 .wehsx1 .wehs-a1b1c1 label {
  display: block;
  color: #505050;
  font-size: 1rem;
  line-height: 1.65em;
}
.ddym-a1v1 .wehsx1 .wehs-a1b1c1 label input {
  margin-right: 0.35rem;
}
@media (max-width: 768px) {
  .ddym-a1v1 .wehsx1 .wehs-a1b1c2 {
    width: 100%;
  }
}
.ddym-a1v1 .wehsx1 .wehs-a1b1c2 a {
  display: block;
  color: #4C4948;
  font-size: 1rem;
  line-height: 1em;
  margin-top: 0.5rem;
  text-decoration: underline;
}

.ddym-a1v2 {
  padding: 1.875rem 0 2.9375rem;
}
@media (max-width: 768px) {
  .ddym-a1v2 {
    padding: 1.5rem 0 2.375rem;
  }
}
.ddym-a1v2 .table-cont {
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .ddym-a1v2 .table-cont {
    overflow-x: auto;
  }
}
.ddym-a1v2 .table-cont table {
  border-right: none;
  border-left: none;
}
@media (max-width: 768px) {
  .ddym-a1v2 .table-cont table {
    min-width: 768px;
  }
}
.ddym-a1v2 .table-cont table tr th, .ddym-a1v2 .table-cont table tr td {
  padding: 0.65rem 0.35rem !important;
  vertical-align: middle;
  text-align: center;
}
.ddym-a1v2 .table-cont table tr th {
  border-right: none;
  border-left: none;
  border-bottom: none;
  color: #000000;
  font-size: 0.875rem;
  line-height: 1.5em;
  font-weight: 400;
  background: var(--color-zt);
  padding: 1.65rem 0.35rem !important;
  border-top: 1px solid #000;
}
@media (max-width: 768px) {
  .ddym-a1v2 .table-cont table tr th {
    padding: 1.35rem 0.35rem !important;
  }
}
.ddym-a1v2 .table-cont table tr th > input {
  -webkit-transform: scale(1.25);
     -moz-transform: scale(1.25);
      -ms-transform: scale(1.25);
       -o-transform: scale(1.25);
          transform: scale(1.25);
}
@media (max-width: 768px) {
  .ddym-a1v2 .table-cont table tr th > input {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}
.ddym-a1v2 .table-cont table tr td {
  border-right: none;
  border-left: none;
  border-top: none;
  color: #414140;
  font-size: 0.8125rem;
  line-height: 1.35em;
}
.ddym-a1v2 .table-cont table tr td .del{
    cursor: pointer;
}
.ddym-a1v2 .table-cont table tr td .del:hover{
    font-weight: 700;
}
.ddym-a1v2 .table-cont table tr td > input {
  -webkit-transform: scale(1.25);
     -moz-transform: scale(1.25);
      -ms-transform: scale(1.25);
       -o-transform: scale(1.25);
          transform: scale(1.25);
}
@media (max-width: 768px) {
  .ddym-a1v2 .table-cont table tr td > input {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}
.ddym-a1v2 .table-cont table tr td .img {
  width: 3rem;
  border: 1px solid transparent;
  position: relative;
  display: block;
  margin: 0 auto;
}
.ddym-a1v2 .table-cont table tr td .img img {
  width: 100%;
}
.ddym-a1v2 .table-cont table tr td .morexa {
  border: 1px solid #E4E4E4;
  border-radius: 2rem;
  width: 6.75rem;
  margin: 0 auto;
}
.ddym-a1v2 .table-cont table tr td .morexa input {
  width: 1.75rem;
  border: none;
  padding: 0;
  text-align: center;
}
.ddym-a1v2 .ewx-axa {
  text-align: right;
  margin-left: auto;
  color: #000000;
}
.ddym-a1v2 .ewx-axa .p1 {
  font-size: 0.8125rem;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.ddym-a1v2 .ewx-axa .p1 i {
  font-size: 1.25rem;
  margin-left: 0.25rem;
}
.ddym-a1v2 .ewx-axa .p2 {
  color: #505050;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .ddym-a1v2 .ewx-axa .p2 {
    margin-top: 0.75rem;
  }
}
.ddym-a1v2 .ewx-axa .p2 span {
  font-size: 1.125rem;
  font-weight: 700;
}
.ddym-a1v2 .ewx-axa .more-b {
  margin-left: auto;
  margin-top: 1.5rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .ddym-a1v2 .ewx-axa .more-b {
    margin-top: 1rem;
  }
}

.ly-tjts {
  background: rgba(0, 0, 0, 0.65);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  pointer-events: auto;
  z-index: 999;
}
.ly-tjts .pead-cont {
  box-shadow: 1px 1px 3.125rem rgba(0, 0, 0, 0.3);
  z-index: 999;
  width: 32.44792%;
  border-radius: var(--borderRadius);
  z-index: 1;
}
@media (max-width: 768px) {
  .ly-tjts .pead-cont {
    width: 90%;
  }
}
.ly-tjts .przs-b {
  background: #fff;
  width: 100%;
  padding: 2rem 7% 3.5rem;
  border-radius: var(--borderRadius);
}
.ly-tjts .przs-b:after {
  content: "";
  position: absolute;
  left: 0;
  top: -0.375rem;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: var(--borderRadius);
  background: #CDFF00;
  box-shadow: 0px 1.25rem 2.5rem 0px rgba(0, 0, 0, 0.05);
}
.ly-tjts .przs-b .cont-p {
  text-align: center;
  padding: 2.5rem 0 1rem;
}
.ly-tjts .przs-b .cont-p u {
  display: block;
  font-size: 0;
  width: 4.125rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ly-tjts .przs-b .cont-p u {
    width: 3.5rem;
  }
}
.ly-tjts .przs-b .cont-p u img {
  width: 100%;
}
.ly-tjts .przs-b .cont-p .tit {
  color: #000000;
  font-size: 1.25rem;
  margin-top: 1.7rem;
}
@media (max-width: 768px) {
  .ly-tjts .przs-b .cont-p .tit {
    font-size: 1.125rem;
    margin-top: 1.27rem;
  }
}
.ly-tjts .przs-b .cont-p .p1 {
  color: #505050;
  font-size: 1rem;
  line-height: 1.5em;
  padding: 0 10%;
}
@media (max-width: 768px) {
  .ly-tjts .przs-b .cont-p .p1 {
    padding: 0;
  }
}
.ly-tjts .przs-b .cont-p a.more-b {
  margin: 1.25rem auto 0;
}
.ly-tjts a.jataxta {
  position: absolute;
  right: 2.9rem;
  top: 1.5rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  display: block;
}
@media (max-width: 768px) {
  .ly-tjts a.jataxta {
    right: 1.9rem;
    top: 1.25rem;
  }
}
.ly-tjts a.jataxta:hover {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.ly-tjts a.jataxta i {
  color: #787F89;
  font-size: 2.25rem;
  line-height: 1;
}

.login-body {
  padding: 0 !important;
  margin: 0 !important;
}

.login-cont1 {
  overflow: hidden;
  position: relative;
}
.login-cont1 .login-a1 {
  width: 46.3541666667%;
}
@media (max-width: 768px) {
  .login-cont1 .login-a1 {
    width: 100%;
    opacity: 0.75;
  }
}
.login-cont1 .login-a1 img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.login-cont1 .login-a2 {
  width: 53.6458333333%;
  padding: 2rem 0;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .login-cont1 .login-a2 {
    width: 100%;
    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%);
    z-index: 2;
  }
}
.login-cont1 .login-a2 .cont-p {
  width: 33.3009708738%;
  min-width: 25rem;
}
@media (max-width: 768px) {
  .login-cont1 .login-a2 .cont-p {
    background: #fff;
    padding: 2rem 5%;
  }
}
.login-cont1 .login-a2 .cont-p .login-logo {
  text-align: center;
}
.login-cont1 .login-a2 .cont-p .login-logo img {
  height: 3.375rem;
}
@media (max-width: 768px) {
  .login-cont1 .login-a2 .cont-p .login-logo img {
    height: 3rem;
  }
}
.login-cont1 .login-a2 .cont-p .tit {
  text-align: center;
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 600;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .login-cont1 .login-a2 .cont-p .tit {
    margin-top: 0.75rem;
    font-size: 1.35rem;
  }
}
.login-cont1 .login-a2 .cont-p form .msga1 .inpt {
  position: relative;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .login-cont1 .login-a2 .cont-p form .msga1 .inpt {
    margin-top: 1rem;
  }
}
.login-cont1 .login-a2 .cont-p form .msga1 .inpt input {
  width: 100%;
  border: 1px solid #E4E4E4;
  border-radius: 3.75rem;
  padding: 0 1.5em;
  color: #717171;
  line-height: 2.65em;
  font-size: 1rem;
}
.login-cont1 .login-a2 .cont-p form .msga1 .inpt a.hqyzm {
  color: #B8B8B8;
  font-size: 0.875rem;
  line-height: 3em;
  display: block;
  position: absolute;
  right: 1em;
  top: 0;
}
@media (max-width: 768px) {
  .login-cont1 .login-a2 .cont-p form .msga1 .inpt a.hqyzm {
    line-height: 3.25em;
  }
}
.login-cont1 .login-a2 .cont-p form .msg-a4 {
  margin-top: 1rem;
}
.login-cont1 .login-a2 .cont-p form .msg-a4 .yszc-cont input[type=checkbox] {
  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;
}
.login-cont1 .login-a2 .cont-p form .msg-a4 .yszc-cont input[type=checkbox]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/radio.svg) no-repeat center;
  -o-background-size: cover;
  background-size: cover;
  background-color: #fff;
}
.login-cont1 .login-a2 .cont-p form .msg-a4 .yszc-cont input[type=checkbox]:checked::before {
  background: url(../images/radio_active.svg) no-repeat center;
  -o-background-size: cover;
  background-size: cover;
  background-color: #fff;
}
.login-cont1 .login-a2 .cont-p form .msg-a4 .yszc-cont label {
  margin-bottom: 0;
  color: #868686;
  font-size: 1rem;
  line-height: 1.5em;
}
.login-cont1 .login-a2 .cont-p form a.wjmm {
  display: block;
  text-align: right;
  color: #717171;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
.login-cont1 .login-a2 .cont-p form a.wjmm:hover {
  color: #000;
}
.login-cont1 .login-a2 .cont-p form .div_aghgha button {
  width: 100%;
  margin-top: 1rem;
}
.login-cont1 .login-a2 .cont-p form .p1 {
  color: #717171;
  font-size: 1rem;
  margin-top: 0.75rem;
  text-align: center;
}
.login-cont1 .login-a2 .cont-p form .p1 a {
  text-decoration: underline;
  color: #717171;
}
.login-cont1 .login-a2 .cont-p form .p1 a:hover {
  color: #000;
}

.logsxa-cont {
  position: relative;
}
.logsxa-cont .cont-p {
  position: absolute;
  left: -50%;
  top: 135%;
  width: 14.375rem;
  background: #fff;
  border-radius: -webkit-calc(var(--borderRadius) * 0.75);
  border-radius: -moz-calc(var(--borderRadius) * 0.75);
  border-radius: calc(var(--borderRadius) * 0.75);
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  line-height: 1.5em;
  padding: 1.125rem 1.25rem;
}
.logsxa-cont .cont-p .tit {
  color: #000000;
  font-size: 0.8125rem;
  line-height: 1.5em;
  padding: 0 0.75rem;
  font-weight: 600;
}
.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 {
  border-bottom: 1px solid rgba(211, 211, 211, 0.2);
}
.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: #292929;
  color: #fff;
}

.head-top {
  background: #F5F5F5;
  border-top: 1px solid #E7E7E7;
  border-bottom: 1px solid #E7E7E7;
  padding: 1rem 0;
}
.head-top .ashgtc1 {
  gap: 3.5rem;
}
@media (max-width: 768px) {
  .head-top .ashgtc1 {
    gap: 0.5rem 1rem;
  }
}
.head-top .ashgtc1 li {
  color: #292929;
  font-size: 1rem;
  line-height: 1.5em;
}
.head-top .ashgtc1 li a {
  color: #292929;
}
.head-top .ashgtc1 li a:hover {
  color: #000;
}
.head-top .ashgtc1 li i {
  font-size: 1rem;
  margin-right: 0.5rem;
}

.grxx-cont1 {
  padding: 3.75rem 0 2.5rem;
}
@media (max-width: 768px) {
  .grxx-cont1 {
    padding: 2rem 0;
  }
}
.grxx-cont1 .grxx-a1v1 {
  padding: 0 17.1666666667%;
}
@media (max-width: 768px) {
  .grxx-cont1 .grxx-a1v1 {
    padding: 0;
  }
}
.grxx-cont1 .grxx-a1v1 .tita1b1 {
  color: #000000;
  font-size: 2rem;
  line-height: 2em;
  text-align: center;
}
@media (max-width: 768px) {
  .grxx-cont1 .grxx-a1v1 .tita1b1 {
    font-size: 1.5rem;
  }
}
.grxx-cont1 .grxx-a1v1 .grxx-a1list1 {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .grxx-cont1 .grxx-a1v1 .grxx-a1list1 {
    margin-top: 1rem;
  }
}
.grxx-cont1 .grxx-a1v1 .grxx-a1list1 li {
  border-top: 1px solid #E7E7E7;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .grxx-cont1 .grxx-a1v1 .grxx-a1list1 li {
    padding: 1.25rem 0;
  }
}
.grxx-cont1 .grxx-a1v1 .grxx-a1list1 li .tit {
  color: #4C4948;
  font-size: 1rem;
  line-height: 1.5em;
  text-transform: capitalize;
}
.grxx-cont1 .grxx-a1v1 .grxx-a1list1 li .msga1 .inpt {
  width: 48.4662576687%;
  margin-top: 1rem;
  position: relative;
}
@media (max-width: 768px) {
  .grxx-cont1 .grxx-a1v1 .grxx-a1list1 li .msga1 .inpt {
    width: 100%;
  }
}
.grxx-cont1 .grxx-a1v1 .grxx-a1list1 li .msga1 .inpt input {
  width: 100%;
  border: 1px solid #E4E4E4;
  border-radius: 3.75rem;
  padding: 0 1.5em;
  color: #717171;
  line-height: 2.65em;
  font-size: 1rem;
}
.grxx-cont1 .grxx-a1v1 .grxx-a1list1 li .msga1 .inpt a.hqyzm {
  color: #B8B8B8;
  font-size: 0.875rem;
  line-height: 3em;
  display: block;
  position: absolute;
  right: 1em;
  top: 0;
}
@media (max-width: 768px) {
  .grxx-cont1 .grxx-a1v1 .grxx-a1list1 li .msga1 .inpt a.hqyzm {
    line-height: 3.25em;
  }
}
.grxx-cont1 .grxx-a1v1 .grxx-a1list1 li .div_aghgha {
  text-align: center;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .grxx-cont1 .grxx-a1v1 .grxx-a1list1 li .div_aghgha {
    margin-top: 1rem;
  }
}
.grxx-cont1 .grxx-a1v1 .grxx-a1list1 li .div_aghgha button {
  margin: 0 auto;
  padding: 0.48rem 3.65rem;
  background: #E2E3DD;
  border: none;
  color: #505050;
}
@media (max-width: 768px) {
  .grxx-cont1 .grxx-a1v1 .grxx-a1list1 li .div_aghgha button {
    padding: 0.6rem 3rem;
  }
}

.dd-cont1 {
  padding: 2.75rem 0 2.5rem;
}
@media (max-width: 768px) {
  .dd-cont1 {
    padding: 2rem 0;
  }
}
.dd-cont1 .tita1b1 {
  color: #000000;
  font-size: 2rem;
  line-height: 2em;
  text-align: center;
}
@media (max-width: 768px) {
  .dd-cont1 .tita1b1 {
    font-size: 1.5rem;
  }
}
.dd-cont1 .dd-a1v1 {
  margin-top: 2rem;
  gap: 1rem 0;
}
@media (max-width: 768px) {
  .dd-cont1 .dd-a1v1 {
    margin-top: 0.5rem;
  }
}
.dd-cont1 .dd-a1v1 .ord-navlist {
  gap: 2rem;
}
@media (max-width: 768px) {
  .dd-cont1 .dd-a1v1 .ord-navlist {
    gap: 1rem;
  }
}
.dd-cont1 .dd-a1v1 .ord-navlist li a {
  color: #4C4948;
  font-size: 1rem;
  line-height: 1.5em;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.35rem;
}
.dd-cont1 .dd-a1v1 .ord-navlist li:hover a {
  color: #000000;
  border-color: #CDFF00;
}
.dd-cont1 .dd-a1v1 form {
  width: 42.5%;
  gap: 3%;
}
@media (max-width: 768px) {
  .dd-cont1 .dd-a1v1 form {
    width: 100%;
  }
}
.dd-cont1 .dd-a1v1 form .conx {
  -webkit-flex: auto;
     -moz-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
@media (max-width: 768px) {
  .dd-cont1 .dd-a1v1 form .conx {
    margin-bottom: 0.5rem;
  }
}
.dd-cont1 .dd-a1v1 form .conx input {
  width: -webkit-calc(98% - 10rem);
  width: -moz-calc(98% - 10rem);
  width: calc(98% - 10rem);
  border: 1px solid #EAEAEA;
  color: #717171;
  font-size: 1rem;
  line-height: 2.5625rem;
  height: 2.5625rem;
  border-radius: 3.75rem;
  padding: 0 1.5em;
  background: #fff;
}
@media (max-width: 768px) {
  .dd-cont1 .dd-a1v1 form .conx input {
    width: -webkit-calc(98% - 7rem);
    width: -moz-calc(98% - 7rem);
    width: calc(98% - 7rem);
  }
}
.dd-cont1 .dd-a1v1 form .conx button {
  width: 10rem;
  padding: 0;
  line-height: 2.5625rem;
}
@media (max-width: 768px) {
  .dd-cont1 .dd-a1v1 form .conx button {
    width: 7rem;
  }
}
.dd-cont1 .dd-a1v2 {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .dd-cont1 .dd-a1v2 {
    margin-top: 1rem;
  }
}
.dd-cont1 .dd-a1v2 .p1 {
  color: #4C4948;
  font-size: 1rem;
  line-height: 1.5em;
}
.dd-cont1 .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: 1px solid #ECECEC;
  margin-left: 1rem;
}
.dd-cont1 .asj_asjt1 {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .dd-cont1 .asj_asjt1 {
    margin-top: 1.5rem;
  }
}
.dd-cont1 .asj_asjt1 li + li {
  margin-top: 2.875rem;
}
@media (max-width: 768px) {
  .dd-cont1 .asj_asjt1 li + li {
    margin-top: 1.5rem;
  }
}
.dd-cont1 .asj_asjt1 .has-tit {
  background: #F5F5F5;
  padding: 1rem 1.5rem;
}
.dd-cont1 .asj_asjt1 .has-tit .has-tit-ax {
  width: 50%;
  gap: 1rem 4rem;
}
@media (max-width: 768px) {
  .dd-cont1 .asj_asjt1 .has-tit .has-tit-ax {
    width: 100%;
    gap: 1rem 1.25rem;
  }
}
.dd-cont1 .asj_asjt1 .has-tit .has-tit-ax .p1 {
  color: #858585;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.dd-cont1 .asj_asjt1 .has-tit .has-tit-ax .p1 p {
  text-transform: capitalize;
}
.dd-cont1 .asj_asjt1 .has-tit .has-tit-ax .wehxa a.ashx-a {
  color: #292929;
  font-size: 1rem;
  line-height: 1.5em;
}
.dd-cont1 .asj_asjt1 .has-tit .has-tit-ax .wehxa a.ashx-a i {
  font-size: 1rem;
}
.dd-cont1 .asj_asjt1 .has-tit .has-tit-ax .wehxa .cont-p {
  position: absolute;
  top: 100%;
  left: 0;
  width: 16.6875rem;
  padding: 1rem 1.25rem;
  border-radius: var(--borderRadius);
  border: 1px solid #CFCFCF;
  background: #FEFFFF;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .dd-cont1 .asj_asjt1 .has-tit .has-tit-ax .wehxa .cont-p {
    left: auto;
    right: 0;
    width: 15rem;
    padding: 0.75rem 1rem;
  }
}
.dd-cont1 .asj_asjt1 .has-tit .has-tit-ax .wehxa:hover .cont-p {
  display: block;
}
.dd-cont1 .asj_asjt1 .has-tit .p2 {
  width: 30%;
  text-align: center;
  color: #858585;
  font-size: 0.875rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .dd-cont1 .asj_asjt1 .has-tit .p2 {
    width: 100%;
    margin-top: 1rem;
  }
}
.dd-cont1 .asj_asjt1 .has-tit .p2 .asxt {
  gap: 0.25rem 2rem;
}
.dd-cont1 .asj_asjt1 .has-tit .p2 .asxt a {
  color: #292929;
  font-size: 1rem;
  line-height: 1.5em;
  display: block;
}
.dd-cont1 .asj_asjt1 .table-cont table {
  border-color: #F5F5F5;
}
.dd-cont1 .asj_asjt1 .table-cont table tr td {
  border-color: #F5F5F5;
  vertical-align: middle;
  padding: 0.75rem !important;
  color: #858585;
  font-size: 0.8125rem;
  text-align: center;
}
.dd-cont1 .asj_asjt1 .table-cont table tr td .img {
  width: 80%;
  margin: 0 auto;
}
.dd-cont1 .asj_asjt1 .table-cont table tr td .img img {
  width: 100%;
}
.dd-cont1 .asj_asjt1 .table-cont table tr td:nth-child(1) {
  border-right: none;
  width: 10%;
}
.dd-cont1 .asj_asjt1 .table-cont table tr td:nth-child(2) {
  border-left: none; width: 50%;
}
.dd-cont1 .asj_asjt1 .table-cont table tr td:nth-child(3){
     width: 10%;
}
.dd-cont1 .asj_asjt1 .table-cont table tr td .tit {
  color: #414140;
}
.dd-cont1 .asj_asjt1 .table-cont table tr td .paxt {
  text-align: left;
}
.dd-cont1 .asj_asjt1 .table-cont table tr td .p2 {
  color: #292929;
  font-size: 0.875rem;
  line-height: 1.5em;
  text-transform: capitalize;
  display: flex;
          justify-content: center;
          flex-wrap: wrap;
          align-items: center;
          gap: 0.5rem;
}
.dd-cont1 .asj_asjt1 .table-cont table tr td .p2 a{
    background: #CDFF00;
    color: #505050;
    font-size: 0.875rem;
    line-height: 1.5em;
    padding: 0.5rem 1rem;
    display: inline-block;
    border-radius: 2.5rem;
}
.dd-cont1 .asj_asjt1 .table-cont table tr td .p2 a:hover{
    background: #292929;
    color: #fff;
}
.dd-cont1 .asj_asjt1 .table-cont table tr td .p2 a.more-b {
  margin: 1rem auto 0;
}
.dd-cont1 .asj_asjt1 .table-cont table tr td[rowspan="2"] {
  width: 28.5833333333%;
}
.dd-cont1 .dd-a1list1 {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
    .dd-cont1 .asj_asjt1 .table-cont table tr td:nth-child(1){
        width: 20%;
    }
  .dd-cont1 .dd-a1list1 {
    margin-top: 1.25rem;
    gap: 1rem;
  }
  .dd-cont1 .dd-a1list1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4.85rem;
    width: 100%;
    height: 2px;
    background: #292929;
    z-index: -1;
  }
}
.dd-cont1 .dd-a1list1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 100%;
  height: 2px;
  background: #292929;
  z-index: -1;
}
.dd-cont1 .dd-a1list1 li {
  text-align: center;
}
.dd-cont1 .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: #292929;
  color: #fff;
  font-size: 400;
}
.dd-cont1 .dd-a1list1 li p {
  color: #292929;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}
.dd-cont1 .dd-a1list1 li.active b {
  background: var(--color-zt);
  color: #292929;
}
.dd-cont1 .dd-a1v1 {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .dd-cont1 .dd-a1v1 {
    margin-top: 1.5rem;
  }
}
.dd-cont1 .dd-a1v1 .dd-a1b1 {
  color: #4C4948;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 500;
  gap: 2rem;
}
@media (max-width: 768px) {
  .dd-cont1 .dd-a1v1 .dd-a1b1 {
    gap: 0.5rem;
    font-size: 1.125rem;
  }
}
.dd-cont1 .dd-a1v1 .dd-a1b2 {
  background: #F5F5F5;
  border-radius: var(--borderRadius);
  padding: 2.65rem 3%;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .dd-cont1 .dd-a1v1 .dd-a1b2 {
    padding: 1.65rem 6%;
    margin-top: 1rem;
  }
}
.dd-cont1 .dd-a1v1 .dd-a1b2 .dd-a1b2c1 {
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.75em;
}
.dd-cont1 .dd-a1v1 .dd-a1b2 .dd-a1b2c2 {
  width: 35%;
}
@media (max-width: 768px) {
  .dd-cont1 .dd-a1v1 .dd-a1b2 .dd-a1b2c2 {
    width: 100%;
    margin-top: 0.75rem;
  }
}
.dd-cont1 .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;
}
.dd-cont1 .dd-a1v1 .dd-a1b2 .dd-a1b2c2 dl dt, .dd-cont1 .dd-a1v1 .dd-a1b2 .dd-a1b2c2 dl dd {
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.85em;
  font-weight: 400;
}
.dd-cont1 .gasxat1 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .dd-cont1 .gasxat1 {
    margin-top: 1.5rem;
  }
}
.dd-cont1 .gasxat1 .table-cont table {
  border-color: #ECECEC;
}
.dd-cont1 .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;
}
.dd-cont1 .gasxat1 .table-cont table tr td .img {
  width: 80%;
  margin: 0 auto;
}
.dd-cont1 .gasxat1 .table-cont table tr td .img img {
  width: 100%;
}
.dd-cont1 .gasxat1 .table-cont table tr td:nth-child(1) {
  border-right: none;
  width: 15%;
}
.dd-cont1 .gasxat1 .table-cont table tr td:nth-child(2) {
  border-left: none;
}
.dd-cont1 .gasxat1 .table-cont table tr td .tit {
  color: #414140;
}
.dd-cont1 .gasxat1 .table-cont table tr td .paxt {
  text-align: left;
}
.dd-cont1 .gasxat1 .table-cont table tr td .p2 {
  color: #292929;
  font-size: 0.875rem;
  line-height: 1.5em;
  text-transform: capitalize;
}
.dd-cont1 .gasxat1 .table-cont table tr td .p2 a.more-b {
  margin: 1rem auto 0;
}
.dd-cont1 .gasxat1 .table-cont table tr td[rowspan="2"] {
  width: 28.5833333333%;
}
.dd-cont1 .dd-a1v2a {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .dd-cont1 .dd-a1v2a {
    margin-top: 1.5rem;
  }
}
.dd-cont1 .dd-a1v2a .tit {
  color: #4C4948;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 500;
}
.dd-cont1 .dd-a1v2a .ashx_lusdt1 {
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .dd-cont1 .dd-a1v2a .ashx_lusdt1 {
    margin-top: 1.25rem;
  }
}
.dd-cont1 .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;
}
.dd-cont1 .dd-a1v2a .ashx_lusdt1 li {
  gap: 1.125rem;
}
.dd-cont1 .dd-a1v2a .ashx_lusdt1 li + li {
  margin-top: 4em;
}
@media (max-width: 768px) {
  .dd-cont1 .dd-a1v2a .ashx_lusdt1 li + li {
    margin-top: 2rem;
  }
}
.dd-cont1 .dd-a1v2a .ashx_lusdt1 li .asjhx {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #292929;
}
.dd-cont1 .dd-a1v2a .ashx_lusdt1 li .asjhx i {
  font-size: 0.75rem;
  color: #fff;
}
.dd-cont1 .dd-a1v2a .ashx_lusdt1 li .cont-p{
    width: calc(100% - 3.5rem);
}
.dd-cont1 .dd-a1v2a .ashx_lusdt1 li .cont-p .date {
  color: #858585;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.dd-cont1 .dd-a1v2a .ashx_lusdt1 li .cont-p .p1 {
  color: #000000;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.dd-cont1 .dd-a1v2a .ashx_lusdt1 li.active .asjhx {
  background: var(--color-zt);
}
.dd-cont1 .dd-a1v2a .ashx_lusdt1 li.active .asjhx i {
  color: #292929;
}

.address-cont1 {
  padding: 2.75rem 0 3.5rem;
}
@media (max-width: 768px) {
  .address-cont1 {
    padding: 2rem 0;
  }
}
.address-cont1 .tita1b1 {
  color: #000000;
  font-size: 2rem;
  line-height: 2em;
  text-align: center;
}
@media (max-width: 768px) {
  .address-cont1 .tita1b1 {
    font-size: 1.5rem;
  }
}
.address-cont1 .address-list1 {
  border-top: 1px solid #E7E7E7;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .address-cont1 .address-list1 {
    margin-top: 1.5rem;
  }
}
.address-cont1 .address-list1 li {
  padding: 2rem 0;
  border-bottom: 1px solid #E7E7E7;
}
@media (max-width: 768px) {
  .address-cont1 .address-list1 li {
    padding: 1rem 0;
  }
}
.address-cont1 .address-list1 li:last-child {
  border-bottom: none;
}
.address-cont1 .address-list1 li .cont-p {
  width: 70%;
}
@media (max-width: 768px) {
  .address-cont1 .address-list1 li .cont-p {
    width: 100%;
  }
}
.address-cont1 .address-list1 li .cont-p .p1 {
  color: #4C4948;
  font-size: 1rem;
  line-height: 1.65em;
}
.address-cont1 .address-list1 li .cont-p .p2xa {
  color: #858585;
  font-size: 1rem;
  line-height: 1.5em;
  gap: 1rem;
  margin-top: 1rem;
}
.address-cont1 .address-list1 li .cont-p .p2xa a.more-xab {
  color: #858585;
}
.address-cont1 .address-list1 li .cont-p .p2xa a.more-xab i {
  font-size: 1rem;
  margin-right: 0.5rem;
}
.address-cont1 .address-list1 li .cont-p .p2xa a.more-xab:hover {
  color: #333;
}
.address-cont1 .address-list1 li .ashazt {
  width: 25%;
  text-align: center;
}
@media (max-width: 768px) {
  .address-cont1 .address-list1 li .ashazt {
    width: 100%;
    margin-top: 0.5rem;
    text-align: 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;
  }
}
.address-cont1 .address-list1 li .ashazt label {
  color: #4C4948;
  font-size: 1rem;
  line-height: 1.5em;
  display: block;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .address-cont1 .address-list1 li .ashazt label {
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.address-cont1 .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;
}
.address-cont1 .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;
}
.address-cont1 .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;
}
.address-cont1 .dz_more {
  margin: 2rem auto 0;
  padding: 0.48rem 3rem;
}
@media (max-width: 768px) {
  .address-cont1 .dz_more {
    margin: 1rem auto 0;
    padding: 0.48rem 2rem;
  }
}
.address-cont1 form {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .address-cont1 form {
    margin-top: 0.5rem;
  }
}
.address-cont1 form input {
  width: 100%;
  border: 1px solid #E4E4E4;
  border-radius: 3.75rem;
  padding: 0 1.5em;
  color: #717171;
  line-height: 2.65em;
}
.address-cont1 form input[type=checkbox], .address-cont1 form input[type=radio]{
    width: auto;
    margin-right: 0.35rem;
}
.address-cont1 form .msg1 {
  margin-top: 1.125rem;
}
.address-cont1 form .msg1 select {
  width: 100%;
  color: #717171;
  font-size: 1rem;
  line-height: 2.65em;
  height: 2.65em;
  border-radius: 3.75rem;
  padding: 0 1.5em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/jtax.svg) no-repeat 98% center #fff;
  -o-background-size: 1.25rem auto;
     background-size: 1.25rem auto;
  border: 1px solid #E4E4E4;
}
@media (max-width: 768px) {
  .address-cont1 form .msg1 select {
    width: 100%;
    background: url(../images/jtax.svg) no-repeat 96% center #fff;
  }
}
.address-cont1 form .msg2 {
}
.address-cont1 form .msg2 dl {
  width: 48.5%;
  margin-top: 1.125rem;
}
.address-cont1 form .msg2 input {
  width: 100%;
}
.address-cont1 form .megaxt {
  margin-top: 1.125rem;
}
.address-cont1 form .megaxt .form-check1 {
  color: #717171;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.address-cont1 form .megaxt .form-check1 input {
  width: auto;
  margin-right: 0.5rem;
  font-size: 1rem;
  -webkit-transform: scale(1.25);
     -moz-transform: scale(1.25);
      -ms-transform: scale(1.25);
       -o-transform: scale(1.25);
          transform: scale(1.25);
}
@media (max-width: 768px) {
    .address-cont1 form .msg2 dl{
        width: 100%;
    }
  .address-cont1 form .megaxt .form-check1 input {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}
.address-cont1 form .more-b {
  padding: 0.48rem 3rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .address-cont1 form .more-b {
    margin-top: 1.25rem;
  }
}

.sort-list1 {
  gap: 2rem;
}
@media (max-width: 768px) {
  .sort-list1 {
    gap: 1rem;
  }
}
.sort-list1 li a {
  color: #4C4948;
  font-size: 1.125rem;
  line-height: 1.5em;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.35rem;
  display: block;
}
.sort-list1 li:hover a, .sort-list1 li.active a {
  color: #000000;
  border-color: #CDFF00;
}

.news-list1 {
  margin-top: 1rem;
}
.news-list1 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;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .news-list1 li {
    padding: 1.25rem 0;
  }
}
.news-list1 li + li {
  border-top: 1px solid #f0f0f0;
}
.news-list1 li a.img {
  width: 18%;
  display: block;
  font-size: 0;
}
@media (max-width: 768px) {
  .news-list1 li a.img {
    width: 100%;
  }
}
.news-list1 li a.img img {
  width: 100%;
  aspect-ratio: 16/12;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .news-list1 li a.img img {
    aspect-ratio: 16/9;
  }
}
.news-list1 li .cont-p {
  width: 79%;
}
@media (max-width: 768px) {
  .news-list1 li .cont-p {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.news-list1 li .cont-p a.name {
  display: block;
  font-size: 1.125rem;
  line-height: 1.5em;
  color: #333;
}
.news-list1 li .cont-p a.name:hover {
  color: #000;
}
.news-list1 li .cont-p .data {
  font-size: 0.875rem;
  color: #999;
  margin-top: 0.35rem;
}
.news-list1 li .cont-p .txt {
  font-size: 1rem;
  color: #666;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .news-list1 li .cont-p .txt {
    margin-top: 0.5rem;
  }
}
.news-list1 li .cont-p a.more-b {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .news-list1 li .cont-p a.more-b {
    margin-top: 1rem;
  }
}

.beconme-cont1 {
  margin: 2rem 0 4rem;
}
.beconme-cont1 .tit{
  background: var(--color-zt);
  color: #000;
  padding: 1.5rem 1em 0.5rem;
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 600;
  position: relative;
  border-top: 2px solid #292929;
}
.beconme-cont1 .tit::before{
  content: "";
  display: block;
  height: 0.1rem;
  width: 100%;
  background: #292929;
  position: absolute;
  top: 0.25rem;
  left: 0;
}
.beconme-cont1 .tit::after{
  content: "";
  display: block;
  height: 0.1rem;
  width: 100%;
  background: #292929;
  position: absolute;
   top: calc(0.5rem + 0.1rem);
  left: 0;
}
@media (max-width: 768px) {
  .beconme-cont1 .tit{
     font-size: 1.35rem;
  }
  .beconme-cont1 {
    margin: 1rem 0 0;
  }
}
.beconme-cont1 .p1 h2 {
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5em;
}
.beconme-cont1 .msgaxa {
  margin-top: 2.5rem;
}
.beconme-cont1 .msgaxa h2 {
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5em;
  text-align: center;
}
.beconme-cont1 .msgaxa .msg-va {
  background: #f5f5f5;
  padding: 1.5625rem 5% 3.125rem;
  overflow: hidden;
  border-top: #bbf912 3px solid;
  position: relative;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .beconme-cont1 .msgaxa .msg-va {
    padding: 1.5625rem 5% 2rem;
  }
}
.beconme-cont1 .msgaxa .msg-va::before {
  content: "";
  background: #000000;
  display: block;
  height: 0.1875rem;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-background-size: 100%;
     background-size: 100%;
}
.beconme-cont1 .msgaxa .msg-va form .cona1 .tit, .beconme-cont1 .msgaxa .msg-va form .cona2 .tit {
  font-size: 1.125rem;
  line-height: 1.65em;
  color: #000;
  border-bottom: #eee 1px solid;
  padding-bottom: 0.625rem;
}
.beconme-cont1 .msgaxa .msg-va form .cona2 {
  margin-top: 1.5rem;
}
.beconme-cont1 .msgaxa .msg-va form input {
  width: 100%;
  border: 1px solid #E4E4E4;
  border-radius: 3.75rem;
  padding: 0 1.5em;
  color: #717171;
  line-height: 2.65em;
}
.beconme-cont1 .msgaxa .msg-va form .msg1 {
  margin-top: 1.125rem;
}
.beconme-cont1 .msgaxa .msg-va form .msg1 select {
  width: 100%;
  color: #717171;
  font-size: 1rem;
  line-height: 2.65em;
  height: 2.65em;
  border-radius: 3.75rem;
  padding: 0 1.5em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/jtax.svg) no-repeat 98% center #fff;
  -o-background-size: 1.25rem auto;
     background-size: 1.25rem auto;
  border: 1px solid #E4E4E4;
}
@media (max-width: 768px) {
  .beconme-cont1 .msgaxa .msg-va form .msg1 select {
    width: 100%;
    background: url(../images/jtax.svg) no-repeat 96% center #fff;
  }
}
.beconme-cont1 .msgaxa .msg-va form .msg4 {
  margin-top: 1.125rem;
}
@media (max-width: 768px) {
  .beconme-cont1 .msgaxa .msg-va form .msg4 {
    gap: 1.125rem;
  }
}
.beconme-cont1 .msgaxa .msg-va form .msg4 input {
  width: 23%;
}
@media (max-width: 768px) {
  .beconme-cont1 .msgaxa .msg-va form .msg4 input {
    width: 100%;
  }
}
.beconme-cont1 .msgaxa .msg-va form .msg3 {
  margin-top: 1.125rem;
}
@media (max-width: 768px) {
  .beconme-cont1 .msgaxa .msg-va form .msg3 {
    gap: 1.125rem;
  }
}
.beconme-cont1 .msgaxa .msg-va form .msg3 input {
  width: 31.5%;
}
@media (max-width: 768px) {
  .beconme-cont1 .msgaxa .msg-va form .msg3 input {
    width: 100%;
  }
}
.beconme-cont1 .msgaxa .msg-va form .msg2 {
  margin-top: 1.125rem;
}
@media (max-width: 768px) {
  .beconme-cont1 .msgaxa .msg-va form .msg2 {
    gap: 1.125rem;
  }
}
.beconme-cont1 .msgaxa .msg-va form .msg2 input {
  width: 48.5%;
}
@media (max-width: 768px) {
  .beconme-cont1 .msgaxa .msg-va form .msg2 input {
    width: 100%;
  }
}
.beconme-cont1 .msgaxa .msg-va form .megaxt {
  margin-top: 1.125rem;
  gap: 1rem;
}
.beconme-cont1 .msgaxa .msg-va form .megaxt .form-check1 {
  color: #717171;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.beconme-cont1 .msgaxa .msg-va form .megaxt .form-check1 input {
  width: auto;
  margin-right: 0.5rem;
  font-size: 1rem;
  -webkit-transform: scale(1.25);
     -moz-transform: scale(1.25);
      -ms-transform: scale(1.25);
       -o-transform: scale(1.25);
          transform: scale(1.25);
}
@media (max-width: 768px) {
  .beconme-cont1 .msgaxa .msg-va form .megaxt .form-check1 input {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}
.beconme-cont1 .msgaxa .msg-va form .elementor-field-sub {
  padding: 1.125rem 0 0;
}
.beconme-cont1 .msgaxa .msg-va form .elementor-field-sub label {
  margin-bottom: 0;
}
.beconme-cont1 .msgaxa .msg-va form .elementor-field-sub > label {
  margin-right: 5rem;
}
.beconme-cont1 .msgaxa .msg-va form .elementor-field-sub input {
  width: auto;
  margin-right: 0.35rem;
}
.beconme-cont1 .msgaxa .msg-va form .elementor-field-sub .elementor-field-option {
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .beconme-cont1 .msgaxa .msg-va form .elementor-field-sub .elementor-field-option {
    gap: 0.5rem;
  }
}
.beconme-cont1 .msgaxa .msg-va form .elementor-field-sub .elementor-field-option label {
  display: block;
  color: #505050;
  font-size: 1rem;
  line-height: 1.65em;
}
.beconme-cont1 .msgaxa .msg-va form .elementor-group {
  padding: 1.125rem 0 0;
}
.beconme-cont1 .msgaxa .msg-va form .elementor-group label {
  margin-bottom: 0;
}
.beconme-cont1 .msgaxa .msg-va form .elementor-group > label {
  margin-bottom: 0.65rem;
}
.beconme-cont1 .msgaxa .msg-va form .elementor-group input {
  width: auto;
  margin-right: 0.35rem;
}
.beconme-cont1 .msgaxa .msg-va form .elementor-group .elementor-field-option {
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .beconme-cont1 .msgaxa .msg-va form .elementor-group .elementor-field-option {
    gap: 0.5rem;
  }
}
.beconme-cont1 .msgaxa .msg-va form .elementor-group .elementor-field-option label {
  display: block;
  color: #505050;
  font-size: 1rem;
  line-height: 1.65em;
}
.beconme-cont1 .msgaxa .msg-va form .elementor-field-type-textarea {
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .beconme-cont1 .msgaxa .msg-va form .elementor-field-type-textarea {
    margin-top: 1rem;
  }
}
.beconme-cont1 .msgaxa .msg-va form .elementor-field-type-textarea .elementor-field-label {
  margin-bottom: 0.65rem;
}
.beconme-cont1 .msgaxa .msg-va form .elementor-field-type-textarea textarea {
  width: 100%;
  border: 1px solid #E4E4E4;
  border-radius: 1rem;
  padding: 1rem 1.5em;
  color: #717171;
  line-height: 1.5em;
}
.beconme-cont1 .msgaxa .msg-va form .more-b {
  padding: 0.48rem 3rem;
}

.contact-cont1 {
  padding: 0 17.1666666667%;
}
@media (max-width: 768px) {
  .contact-cont1 {
    padding: 0;
  }
}
.contact-cont1 .lx-a1 {
  margin-top: 2rem;
}
.contact-cont1 .lx-a1 .tit {
  font-size: 1.25rem;
  line-height: 1.65em;
  font-weight: 600;
}
.contact-cont1 .lx-a1 .p1 {
  color: #444;
  font-size: 1rem;
  line-height: 1.75em;
  margin-top: 0.35rem;
}
.contact-cont1 .lx-a2 {
  margin-top: 2rem;
}
.contact-cont1 .lx-a2 .tit {
  font-size: 1.25rem;
  line-height: 1.65em;
  font-weight: 600;
}
.contact-cont1 .lx-a2 .p1 {
  color: #444;
  font-size: 0.875rem;
  line-height: 1.65em;
  margin-top: 0.35rem;
}
.contact-cont1 .lx-a2 form .cona1 .tit, .contact-cont1 .lx-a2 form .cona2 .tit {
  font-size: 1.125rem;
  line-height: 1.65em;
  color: #000;
  border-bottom: #eee 1px solid;
  padding-bottom: 0.625rem;
}
.contact-cont1 .lx-a2 form .cona2 {
  margin-top: 1.5rem;
}
.contact-cont1 .lx-a2 form input {
  width: 100%;
  border: 1px solid #E4E4E4;
  border-radius: 3.75rem;
  padding: 0 1.5em;
  color: #717171;
  line-height: 2.65em;
}
.contact-cont1 .lx-a2 form textarea {
  width: 100%;
  border: 1px solid #E4E4E4;
  border-radius: 1rem;
  padding: 1rem 1.5em;
  color: #717171;
  line-height: 1.5em;
}
.contact-cont1 .lx-a2 form .msg1 {
  margin-top: 1.125rem;
}
.contact-cont1 .lx-a2 form .msg1 select {
  width: 100%;
  color: #717171;
  font-size: 1rem;
  line-height: 2.65em;
  height: 2.65em;
  border-radius: 3.75rem;
  padding: 0 1.5em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/jtax.svg) no-repeat 98% center #fff;
  -o-background-size: 1.25rem auto;
     background-size: 1.25rem auto;
  border: 1px solid #E4E4E4;
}
@media (max-width: 768px) {
  .contact-cont1 .lx-a2 form .msg1 select {
    width: 100%;
    background: url(../images/jtax.svg) no-repeat 96% center #fff;
  }
}
.contact-cont1 .lx-a2 form .msg4 {
  margin-top: 1.125rem;
}
@media (max-width: 768px) {
  .contact-cont1 .lx-a2 form .msg4 {
    gap: 1.125rem;
  }
}
.contact-cont1 .lx-a2 form .msg4 input {
  width: 23%;
}
@media (max-width: 768px) {
  .contact-cont1 .lx-a2 form .msg4 input {
    width: 100%;
  }
}
.contact-cont1 .lx-a2 form .msg3 {
  margin-top: 1.125rem;
}
@media (max-width: 768px) {
  .contact-cont1 .lx-a2 form .msg3 {
    gap: 1.125rem;
  }
}
.contact-cont1 .lx-a2 form .msg3 input {
  width: 31.5%;
}
@media (max-width: 768px) {
  .contact-cont1 .lx-a2 form .msg3 input {
    width: 100%;
  }
}
.contact-cont1 .lx-a2 form .msg2 {
  margin-top: 1.125rem;
}
@media (max-width: 768px) {
  .contact-cont1 .lx-a2 form .msg2 {
    gap: 1.125rem;
  }
}
.contact-cont1 .lx-a2 form .msg2 dl {
  width: 48.5%;
}
.contact-cont1 .lx-a2 form .msg2 input {
  width: 100%;
}
@media (max-width: 768px) {
  .contact-cont1 .lx-a2 form .msg2 dl {
    width: 100%;
  }
}
.contact-cont1 .lx-a2 form .megaxt {
  margin-top: 1.125rem;
  gap: 1rem;
}
.contact-cont1 .lx-a2 form .megaxt .form-check1 {
  color: #717171;
  font-size: 0.875rem;
  line-height: 1.5em;
  position: relative;
}
.contact-cont1 .lx-a2 form .megaxt .form-check1 #agreement-error{
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    padding-left: 1em;
}
.contact-cont1 .lx-a2 form .megaxt .form-check1 input {
  width: auto;
  margin-right: 0.5rem;
  font-size: 1rem;
  -webkit-transform: scale(1.25);
     -moz-transform: scale(1.25);
      -ms-transform: scale(1.25);
       -o-transform: scale(1.25);
          transform: scale(1.25);
}
@media (max-width: 768px) {
  .contact-cont1 .lx-a2 form .megaxt .form-check1 input {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}
.contact-cont1 .lx-a2 form .elementor-field-sub {
  padding: 1.125rem 0 0;
}
.contact-cont1 .lx-a2 form .elementor-field-sub label {
  margin-bottom: 0;
}
.contact-cont1 .lx-a2 form .elementor-field-sub > label {
  margin-right: 5rem;
}
.contact-cont1 .lx-a2 form .elementor-field-sub input {
  width: auto;
  margin-right: 0.35rem;
}
.contact-cont1 .lx-a2 form .elementor-field-sub .elementor-field-option {
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .contact-cont1 .lx-a2 form .elementor-field-sub .elementor-field-option {
    gap: 0.5rem;
  }
}
.contact-cont1 .lx-a2 form .elementor-field-sub .elementor-field-option label {
  display: block;
  color: #505050;
  font-size: 1rem;
  line-height: 1.65em;
}
.contact-cont1 .lx-a2 form .elementor-group {
  padding: 1.125rem 0 0;
}
.contact-cont1 .lx-a2 form .elementor-group label {
  margin-bottom: 0;
}
.contact-cont1 .lx-a2 form .elementor-group > label {
  margin-bottom: 0.65rem;
}
.contact-cont1 .lx-a2 form .elementor-group input {
  width: auto;
  margin-right: 0.35rem;
}
.contact-cont1 .lx-a2 form .elementor-group .elementor-field-option {
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .contact-cont1 .lx-a2 form .elementor-group .elementor-field-option {
    gap: 0.5rem;
  }
}
.contact-cont1 .lx-a2 form .elementor-group .elementor-field-option label {
  display: block;
  color: #505050;
  font-size: 1rem;
  line-height: 1.65em;
}
.contact-cont1 .lx-a2 form .elementor-field-type-textarea {
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .contact-cont1 .lx-a2 form .elementor-field-type-textarea {
    margin-top: 1rem;
  }
}
.contact-cont1 .lx-a2 form .elementor-field-type-textarea .elementor-field-label {
  margin-bottom: 0.65rem;
}
.contact-cont1 .lx-a2 form .elementor-field-type-textarea textarea {
  width: 100%;
  border: 1px solid #E4E4E4;
  border-radius: 1rem;
  padding: 1rem 1.5em;
  color: #717171;
  line-height: 1.5em;
}
.contact-cont1 .lx-a2 form .more-b {
  padding: 0.48rem 3rem;
}

.faq-cont1 .faq-list1 li {
  padding: 1.5rem 0;
}
.faq-cont1 .faq-list1 li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}
.faq-cont1 .faq-list1 li .dt {
  font-size: 1.25rem;
  line-height: 1.5em;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq-cont1 .faq-list1 li .dt {
    font-size: 1.125rem;
  }
}
.faq-cont1 .faq-list1 li .dt p {
  width: 80%;
}
.faq-cont1 .faq-list1 li .dt i {
  font-size: 1.25rem;
}
.faq-cont1 .faq-list1 li .wehha-job {
  font-size: 0.875rem;
  color: #999;
  line-height: 1.65em;
  margin-top: 0.75rem;
  display: none;
}

/*修改0827*/
.error{
    font-size: 0.75rem;
    color: #f00;
}
.delcontent {
    border-radius: var(--borderRadius);
    border: 1px solid #CFCFCF;
    background: #FEFFFF;
    box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    /*width: 15rem;*/
    padding: 1.75rem;
}
.delcontent .text{
    font-size: 1.125rem;
    line-height: 1.5em;
}
.layui-layer-content{
  overflow-wrap: break-word;
  word-wrap: break-word; /* 兼容旧浏览器 */
  word-break: normal !important; /* 保持单词完整性 */
  white-space: normal; /* 允许文本自动换行 */
}
.delcontent .btn_more{
     display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.delcontent .btn_more a.more{
    display: block;
}
.delcontent .btn_more a.more{
       background: #CDFF00;
       color: #000000;
       font-size: 1rem;
       line-height: 1.5em;
       padding: 0.35rem 1rem;
       border-radius: 2.75rem;
}
.dzym-content form input[type=checkbox], .dzym-content form input[type=radio] {
    width: auto;
    margin-right: 0.35rem;
}
.dzym-content .all_form{
    padding: 4rem 0;
    color: #505050;
    font-size: 1rem;
    line-height: 1.75em;
    text-align: left;
}
.dzym-content .upload_group{
    position: relative;
    margin-top: 1rem;border: 1px solid #E4E4E4;
   border-radius: var(--borderRadius);
}
.dzym-content .upload_group input{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.dzym-content .upload_group .file-upload-button{
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.5em;
    padding: 1.5rem 1rem;
}
.dzym-content .upload_group .file-upload-button img{
    width: 2rem;
    margin-bottom: 0.5rem;
}
.dzym-content form .more-b{
    margin: 2.5rem auto 0;
}
@media (max-width: 768px){
    .dzym-content .all_form{
         padding: 0.5rem 0 2rem;
    }
    .dzym-content form .more-b{
        margin-top: 1.35rem;
    }
}
.subcontent{
    border-radius: var(--borderRadius);
    border: 1px solid #CFCFCF;
    background: #FEFFFF;
    box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 70vw !important;
    padding: 1.75rem;
}
.subcontent .dd-a1v2a{
    overflow: auto;
    height: 100%;
    max-height: 70vh;
}
/*.subcontent .dd-a1v2a {*/
/*  margin-top: 3rem;*/
/*}*/
/*@media (max-width: 768px) {*/
/*  .subcontent .dd-a1v2a {*/
/*    margin-top: 1.5rem;*/
/*  }*/
/*}*/
.subcontent .dd-a1v2a .tit {
  color: #4C4948;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 500;
}
.subcontent .dd-a1v2a .ashx_lusdt1 {
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .subcontent .dd-a1v2a .ashx_lusdt1 {
    margin-top: 1.25rem;
  }
}
.subcontent .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;
}
.subcontent .dd-a1v2a .ashx_lusdt1 li {
  gap: 1.125rem;
}
.subcontent .dd-a1v2a .ashx_lusdt1 li + li {
  margin-top: 1.5em;
}
@media (max-width: 768px) {
 .subcontent .dd-a1v2a .ashx_lusdt1 li + li {
    margin-top: 1rem;
  }
}
.subcontent .dd-a1v2a .ashx_lusdt1 li .asjhx {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #292929;
}
.subcontent .dd-a1v2a .ashx_lusdt1 li .asjhx i {
  font-size: 0.75rem;
  color: #fff;
}
.subcontent .dd-a1v2a .ashx_lusdt1 li .cont-p{
    width: calc(100% - 3.5rem);
}
.subcontent .dd-a1v2a .ashx_lusdt1 li .cont-p .date {
  color: #858585;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.subcontent .dd-a1v2a .ashx_lusdt1 li .cont-p .p1 {
  color: #000000;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.subcontent .dd-a1v2a .ashx_lusdt1 li.active .asjhx {
  background: var(--color-zt);
}
.subcontent .dd-a1v2a .ashx_lusdt1 li.active .asjhx i {
  color: #292929;
}
@media (max-width: 768px) {
    .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table{
            min-width: inherit;
    }
    .cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr th:nth-child(1),.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr th:nth-child(3),.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr th:nth-child(5),.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td:nth-child(1),.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td:nth-child(3),.cp-show-cont1 .cp-show-a1v1 .cp-show-a1b2 .table-cont table tr td:nth-child(5){
    display: none;
}
}


.weha-a{
      background-color: #292929;
}
.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: #000000;
  font-size: 0.625rem;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: -0.25rem;
  left: 0.5rem;
}
.weha-a .toubuas a.more-ax i {
  font-size: 1rem;
  margin-right: 0.35rem;
}