html {
  cursor: url(../img/cur.png), default;
}

.faqList {
  margin: 3rem auto;
}

.faqList ul li {
  margin-bottom: 1rem;
  background: #ffffff91;
  padding: 1rem;
  border-radius: 10px;
}

.faqList ul li p:nth-child(1) {
  background: url(../img/faq2.png) no-repeat top left;
  padding-left: 4rem;
  min-height: 48px;
  font-size: 16px;
  display: flex;
  align-items: center;
  filter: hue-rotate(151deg) saturate(100%);
}

.faqList ul li p:nth-child(2) {
  font-size: 14px;
  padding-left: 4rem;
  color: #2d9b78;
}

header {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  width: 90%;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 4%;
  transform: translate(-50%, -4%);
  z-index: 99;
}
.logo {
  width: 200px;
}
.logo img {
  filter: brightness(0) invert(1);
}

header.hidden {
  top: -80px;
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fixedNav {
  position: fixed !important;
  width: 100% !important;
  top: 0 !important;
  /* background: white !important; */
  box-shadow: 4px 4px 10px #e5e5e5;
  background: url(../img/topbg.jpg) no-repeat;
  background-position: center;
  z-index: 99999;
}

header ul.nav > li {
  float: left;
  padding: 0 15px;
  margin-left: 5px;
  position: relative;
  line-height: 80px;
  transition: all 0.3s linear;
}
header ul.nav > li > a {
  display: block;
  color: #fff;
  text-transform: uppercase;
}
header ul.nav > li:hover > a {
  color: #399074;
}
header ul.nav > li.on > a {
  color: #399074;
}
header ul.nav > li:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0px;
  height: 2px;
  background: #399074;
  transition: all 0.3s linear;
}
header ul.nav > li:hover:after {
  width: 100%;
}
header ul.nav > li.on:after {
  width: 100%;
}
header ul.nav > li.tel {
  display: none;
}
header ul.nav i.hasBtn {
  display: none;
}

header ul.nav > li .section {
  position: absolute;
  z-index: 9;
  top: 100%;
  left: 0;
  min-width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 10%);
  transform: scaleY(0);
  transform-origin: top center;
  transition: all 0.3s;
}
header ul.nav > li ul {
  opacity: 0;
  transform: translate(0, -20px);
  transition: all 0.2s 0.3s;
}
header ul.nav > li ul li {
  line-height: 42px;
  color: #333;
  border-bottom: 1px solid #fff;
  white-space: nowrap;
  position: relative;
  transition: all 0.3s linear;
  font-weight: 100;
}
header ul.nav > li ul li a {
  padding: 0 60px 0 30px;
}
header ul.nav > li ul li:after {
  content: '';
  position: absolute;
  right: 40px;
  top: 50%;
  width: 20px;
  height: 20px;
  background: url(../images/icon03.png) center/20px;
  margin-top: -10px;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s;
}

header .right {
  height: 80px;
  display: flex;
  align-items: center;
  margin-left: 20px;
}
header .right li {
  margin-left: 15px;
  width: 25px;
  height: 25px;
  line-height: 80px;
  border-radius: 15px;
  border: 1px solid #399074;
  background: #399074;
  cursor: pointer;
  transition: all 0.5s linear;
}
header .right li img {
  width: 100%;
}
header .right li:hover {
  border-color: #399074;
  background: #399074;
  transform: rotate(360deg);
}

header.indexHeader {
  background: none;
}
header.indexHeader ul.nav > li > a {
  color: #fff;
}
header.indexHeader .right li {
  border-color: #fff;
  background: none;
}
header.noShadow {
  box-shadow: none;
}

.menu_btn {
  width: 26px;
  height: 22px;
  cursor: pointer;
  display: none;
  position: relative;
}
.menu_btn span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #565656;
  position: absolute;
  transition: all 0.3s linear;
}
.menu_btn span:first-child {
  top: 0;
}
.menu_btn span:nth-child(2) {
  top: 10px;
}
.menu_btn span:last-child {
  top: 20px;
  width: 70%;
}
.menu_btn.toggle span {
  background-color: #399074;
}
.menu_btn.toggle span:first-child {
  top: 11px;
  transform: rotate(45deg);
}
.menu_btn.toggle span:nth-child(2) {
  opacity: 0;
}
.menu_btn.toggle span:last-child {
  top: 11px;
  width: 100%;
  transform: rotate(-45deg);
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}
.popup .wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup .section {
  padding: 50px 80px 56px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.popup .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: #8e8e8e url(../images/close.png) no-repeat center/15px;
  border-top-right-radius: 4px;
  cursor: pointer;
  transition: all 0.3s linear;
}
.popup .close:hover {
  background-color: #999;
}
.popup h3 {
  font-size: 24px;
  color: #595959;
  text-align: center;
  font-weight: normal;
}
.popup_wx ul li {
  float: left;
  margin: 20px 20px 0 20px;
}
.popup_wx ul li p {
  font-size: 14px;
  color: #595959;
  text-align: center;
  margin-top: 10px;
}
.popup_contact ul {
  margin-top: 20px;
}
.popup_contact ul li {
  font-size: 16px;
  color: #595959;
  margin-bottom: 5px;
  font-weight: 100;
}

footer {
  width: 100%;
  padding: 3rem 0;
  color: #fff;
  background: url(../img/footerbg.jpg) center 0 no-repeat;
  background-size: cover;
  position: relative;
}
footer .contact {
  position: relative;
  z-index: 9;
}
.dtimg {
  position: absolute;
  width: 14rem;
  bottom: 0rem;
  right: 3rem;
  z-index: -1;
}
footer .top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 3fr 1fr;
  grid-gap: 20px;
}
footer .top ul li {
  font-size: 15px;
  line-height: 2;
  font-weight: 100;
}
footer .top h3 {
  font-size: 18px;
  color: #fff;
  font-weight: normal;
  margin-bottom: 15px;
  font-weight: 100;
  text-transform: uppercase;
}
footer .top form {
  width: 260px;
}

footer .top .code .item {
  margin-left: 10px;
}
footer .top .code .item p {
  margin-top: 5px;
  font-size: 14px;
  text-align: center;
  font-weight: 100;
}
footer .btm {
  font-size: 14px;
  color: #fff;
}

@media screen and (min-width: 1200px) {
  header ul.nav > li ul li:hover {
    background: #399074;
    color: #fff;
  }
  header ul.nav > li ul li:hover:after {
    right: 10px;
    opacity: 1;
  }
  header ul.nav > li:hover .section {
    transform: scaleY(1);
  }
  header ul.nav > li:hover ul {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media screen and (max-width: 1200px) {
  .index_ys ul {
    grid-template-columns: repeat(1, 1fr) !important;
    margin: 2rem auto 0 !important;
  }
  .ys_title h2,
  .dbgg {
    display: none !important;
  }
  header .wrapper {
    margin-top: 6px;
  }
  header ul.nav > li > a {
    color: #333 !important;
  }
  .menu_btn {
    display: block;
  }
  header {
    display: flex;
    align-items: center;
    height: 60px;
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
  }
  header.hidden {
    top: -60px;
  }
  header ul.nav > li {
    line-height: 60px;
  }
  header .logo img {
    height: 48px;
    filter: none !important;
  }
  header.indexHeader {
    background: #fff;
  }
  header.indexHeader ul.nav > li > a {
    color: #333;
  }
  header .right {
    display: none;
  }
  header ul.nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff;
    padding: 0 4vw;
    overflow: hidden;
    transition: all 0.3s linear;
  }
  header ul.nav.toggle {
    height: calc(100vh - 80px);
    overflow-y: auto;
  }
  header ul.nav > li {
    width: 100%;
    line-height: 60px;
    float: none;
    margin-left: 0;
    border-bottom: 1px solid #dcdcdc;
  }
  header ul.nav > li.tel {
    display: block;
  }
  header ul.nav > li.tel a {
    color: #399074;
    font-weight: bold;
  }
  header ul.nav > li.tel i {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../images/tel.png) no-repeat center/contain;
    vertical-align: middle;
    margin-right: 5px;
  }
  header ul.nav > li:after {
    background: none;
  }
  header ul.nav > li:hover > a {
    color: #333;
  }
  header ul.nav > li .section {
    position: initial;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.5s linear;
  }
  header ul.nav > li .section.toggle {
    transform: scaleY(1);
    max-height: 50vh;
    overflow-y: auto;
  }
  header ul.nav > li .section.toggle ul {
    transform: translate(0, 0);
    opacity: 1;
    transition: all 0.2s;
  }
  header ul.nav i.hasBtn {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: url(../images/icon05.png) no-repeat center/20px;
    cursor: pointer;
  }
  header ul.nav i.hasBtn.toggle {
    background: url(../images/icon06.png) no-repeat center/20px;
  }

  footer {
    padding: 30px 0;
  }
  footer .top ul {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
    line-height: 50px;
    transition: all 0.3s linear;
  }
  footer .top ul .section {
    display: none;
  }
  footer .top ul h3 {
    position: relative;
    margin-bottom: 0;
  }
  footer .top ul h3:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: url(../images/icon07.png) no-repeat center/16px;
    cursor: pointer;
  }
  footer .top ul h3.toggle {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  footer .top ul h3.toggle:after {
    background: url(../images/icon08.png) no-repeat center/16px;
  }
  footer .top ul.contact {
    pointer-events: none;
    max-height: none;
    overflow: visible;
  }
  footer .top ul.contact h3:after {
    display: none;
  }
  footer .top ul.contact h3.toggle {
    border-bottom: none;
  }
  footer .top ul.contact h3.toggle:after {
    background: none;
  }
  footer .top ul li {
    line-height: 40px;
    padding-left: 20px;
  }
  footer .top ul.contact li {
    padding-left: 0;
  }
  footer .top form {
    margin: 30px 0 20px;
  }
  footer .top input[type='text'] {
    background: #fff;
  }
  footer .top .code {
    display: none;
  }
  footer .btm {
    margin-top: 0;
  }
}
.ys_title {
  margin-bottom: 2rem;
}
.ys_title h2 {
  color: rgba(240, 246, 240, 1);
  font-size: 72px;
  width: auto;
  max-width: 100%;
  text-align: center;
  font-family: Impact !important;
  margin-bottom: 0px;
}
.ys_title p {
  text-align: center;
  color: #000000;
  opacity: 1;
  margin-top: -64px;
  padding-bottom: 0px;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 0px;
}
.ys_title hr {
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: #000000;
  width: 50px;
  margin: 12px auto;
}
.index_ys {
  background: url(../img/lxbg.jpg) no-repeat;
  padding: 7rem 0 12rem;
  background-position: right;
  background-size: auto 100%;
  background-attachment: fixed;
}
.index_ys ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
  margin: 1rem auto;
  margin: 6rem auto 0;
}
.index_ys ul li {
  text-align: center;
  background: #f0f0f0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 1rem 1rem 2rem;
  background: url(../img/chanpin_bg.png) no-repeat;
  box-shadow: 0px 15px 12px rgba(23, 43, 77, 0.08);
  background-position: center !important;
  transition: all 0.6s;
  background-size: 100% 100% !important;
  border: 1px solid #9b9b9b;
  color: #fff;
}

.index_ys ul li:nth-child(1) {
  background-image: linear-gradient(rgb(0 0 0 / 71%), rgb(0 0 0 / 0%)), url(../img/6437c52b860f1.jpg);
}

.index_ys ul li:nth-child(2) {
  background-image: linear-gradient(rgb(0 0 0 / 71%), rgb(0 0 0 / 0%)), url(../picture/1628580583818.jpg);
}

.index_ys ul li:nth-child(3) {
  background-image: linear-gradient(rgb(0 0 0 / 71%), rgb(0 0 0 / 0%)), url(../picture/1628580243944.jpg);
}

.index_ys ul li:nth-child(4) {
  background-image: linear-gradient(rgb(0 0 0 / 71%), rgb(0 0 0 / 0%)), url(../img/ys4.jpg);
}

.index_ys ul li:nth-child(5) {
  background-image: linear-gradient(rgb(0 0 0 / 71%), rgb(0 0 0 / 0%)), url(../img/ys555.jpg);
}

.index_ys ul li:nth-child(6) {
  background-image: linear-gradient(rgb(0 0 0 / 71%), rgb(0 0 0 / 0%)), url(../img/ys6.png);
}
.index_ys ul li:nth-child(7) {
  background-image: linear-gradient(rgb(0 0 0 / 71%), rgb(0 0 0 / 0%)), url(../img/ys7.jpg);
}
.index_ys ul li:nth-child(8) {
  background-image: linear-gradient(rgb(0 0 0 / 71%), rgb(0 0 0 / 0%)), url(../img/ys8.jpg);
}

.index_ys ul li:hover {
  transform: translateY(-10px);
}

.index_ys ul li p:nth-child(1) {
  font-size: 16px;
  font-weight: bold;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 14px;
}

.index_ys ul li p:nth-child(2) {
  font-size: 14px;
}

.dbgg {
  position: fixed;
  width: 100%;
  height: 4rem;
  bottom: 0;
  z-index: 99;
  background: url(../img/newsbg.jpg) no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: flex;
  background: linear-gradient(to right, rgb(0, 195, 133), rgb(58, 143, 115));
  z-index: 99;
}

.dbgg .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dbgg .wrapper p:nth-child(1) {
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
}

.dbgg .wrapper p:nth-child(2) {
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.6s;
}
.dbgg .wrapper p:nth-child(2):hover {
  background: #00bf82;
}
.dbgg .wrapper p:nth-child(2) a {
  color: #fff;
}
.swipergc {
  margin-top: 3rem;
}
.swipergc .swiper-pagination-bullet-active {
  background: #2d9a77;
}

.sm_ {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.sm_ a span {
  font-size: 24px;
  background: #93814669;
  padding: 10px;
  border-radius: 4px;
  margin-right: 10px;
}
