* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  font-size: 16px;
  font-family: "Microsoft YaHei", sans-serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  list-style: none;
}

.w1600 {
  width: 1600px;
  margin: 0 auto;
  max-width: 96%;
}

.main {
  /* padding-top: 80px; */
}

/* header */
.header {
  width: 100%;
  background: #ffffff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header.act {
  background: transparent;
}

.header .header_cen {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .header_cen .headerLogo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 218px;
}

.header .header_cen .headerLogo a img {
  display: block;
  width: 100%;
  object-fit: contain;
  max-height: 100%;
}

.header .headerRight {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .headerRight .navigationList {
  display: flex;
  align-items: center;
}

.header .headerRight .navigationList .navigation {
  margin-right: 40px;
  position: relative;
}

.header .headerRight .navigationList .navigation.pro {
  position: unset;
}

.navigationList .navigation .navigation_top {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navigationList .navigation .navigation_top .iconfont {
  display: none;
}

.navigationList .navigation .navigation_top a {
  font-size: 16px;
  line-height: 1;
  color: #1a1a1a;
  transition: all 0.3s ease;
  position: relative;
}

.header.act .navigationList .navigation .navigation_top a {
  color: #fff;
}

.navigationList .navigation .navigation_top a:hover {
  color: #7ecad7;
}

.navigationList .navigation.active .navigation_top a {
  color: #7ecad7;
}

.navigationList .navigation .navigation_bom {
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  padding: 10px 20px 20px;
  background: #ffffff;
  border-radius: 4px;
  display: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navigationList .navigation .navigation_bomb {
  position: absolute;
  left: 0%;
  top: 100px;
  transform: translateX(0%);
  width: 100vw;
  background: #f5f5f5;
  display: none;
}

.navigation_bomb .navigation_bombCen {
  display: flex;
  justify-content: space-between;
}

.navigation_bomb .navigation_bombCen .navigation_bombL {
  width: 31.43%;
  padding: 60px 0 70px;
  text-align: center;
  font-size: 40px;
  color: #7ecad7;
  line-height: 1;
  font-family: "Microsoft YaHei", sans-serif;
  font-weight: bold;
  font-weight: 500;
}

.navigation_bomb .navigation_bombCen .navigation_bombR {
  position: relative;
  z-index: 2;
  width: 68.57%;
  padding: 60px 90px 70px;

  background: #fff;
}

.navigation_bomb .navigation_bombCen .navigation_bombR .navigation_bombRCen {
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-height: calc(100vh - 80px);
}

.navigation_bomb .navigation_bombCen .navigation_bombR::before {
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100vh;
  height: 100%;
  background: #fff;
}

.navigation_bomb .navigation_bombCen .navigation_bombR .navigation_box {
  width: 190px;
}

.navigation_box .navigation_box_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  line-height: 1;
  font-family: "Microsoft YaHei", sans-serif;
  font-weight: bold;
  color: #333333;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.navigation_box .navigation_box_top a {
  color: #333333;
  transition: all 0.3s ease;
}

.navigation_box .navigation_box_top a:hover {
  color: #7ecad7;
}

.navigation_box .navigation_box_bom a {
  font-size: 15px;
  line-height: 28px;
  margin-top: 16px;
  font-family: "Microsoft YaHei", sans-serif;
  color: #333333;
  transition: all 0.3s ease;
  display: block;
}

.navigation_box .navigation_box_bom a:hover {
  color: #7ecad7;
}

.navigationList .navigation .navigation_bom .navigation_bomCen {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.navigationList .navigation .navigation_bom .navigation_bomCen a {
  font-size: 14px;
  line-height: 26px;
  color: #808080;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navigationList .navigation .navigation_bom .navigation_bomCen a:hover {
  color: #7ecad7;
}

.header.act .headerRight .headerPhone a {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.header .headerRight .Language {
  position: relative;
}

.header .headerRight .Language .Language_top {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 20px;
  cursor: pointer;
  padding-left: 0;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.header .headerRight .Language .Language_top .iconfont {
  font-size: 20px;
  margin-right: 3px;
}

.header.act .headerRight .Language .Language_top {
  color: #fff;
}

.header .headerRight .Language .Language_bom {
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  display: none;
  padding: 10px 20px 10px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header .headerRight .Language .Language_bom a {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-align: center;
  margin: 0 auto;
  font-size: 14px;
  line-height: 26px;
  color: #808080;
  font-weight: 500;
  transition: all 0.3s ease;
}

.header .headerRight .Language .Language_bom a:hover {
  color: #7ecad7;
}

.header .headerRight .Search {
  position: relative;
}

.header .headerRight .Search .Search_top {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.header.act .headerRight .Search .Search_top {
  color: #fff;
}

.header .headerRight .Search .Search_top .iconfont {
  font-size: 20px;
  font-weight: bold;
}

.header .headerRight .Search .Search_bom {
  position: absolute;
  right: 0;
  top: 100px;
  display: none;
}

.header .headerRight .Search .Search_bom form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 40px;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header .headerRight .Search .Search_bom form input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: none;
  text-indent: 25px;
}

.header .headerRight .Search .Search_bom form .iconfont {
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 0;
  background: none;
}

.header .headerRight .Search .Search_bom form .iconfont:hover {
  color: #7ecad7;
}

.header .headerRight .headerPhone a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 256px;
  height: 44px;
  border-radius: 44px;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(to right, #7be523, #08c642);
  font-size: 24px;
  line-height: 1;
}

.header .headerRight .headerPhone a .iconfont {
  font-size: 24px;
  line-height: 1;
  margin-right: 8px;
}

.header .headerRight .headerCaidan {
  display: none;
}

@media screen and (max-width: 1600px) {
  .header .headerRight .navigationList .navigation {
    margin-right: 30px;
  }
}

@media screen and (max-width: 1500px) {
  .header .headerRight .navigationList .navigation {
    margin-right: 25px;
  }

  .header .headerRight .headerPhone a {
    font-size: 20px;
    width: 220px;
  }

  .navigation_bomb .navigation_bombCen .navigation_bombL {
    padding: 50px 0 60px;
  }

  .navigation_bomb .navigation_bombCen .navigation_bombR {
    padding: 50px 80px 50px;
  }
}

@media screen and (max-width: 1300px) {
  .header .header_cen .headerLogo a {
    width: 180px;
  }
  .header .headerRight .navigationList .navigation {
    margin-right: 20px;
  }

  .header .headerRight .headerPhone a {
    font-size: 18px;
    width: 200px;
  }

  .header .headerRight .headerPhone a .iconfont {
    font-size: 20px;
  }
}

@media screen and (max-width: 1100px) {
  .header .header_cen .headerLogo a {
    width: 150px;
  }
  .header .headerRight .navigationList .navigation {
    margin-right: 15px;
  }

  .navigationList .navigation .navigation_top {
    height: 80px;
  }

  .navigationList .navigation .navigation_top a {
    font-size: 15px;
  }

  .header .headerRight .headerPhone a {
    font-size: 16px;
    width: 180px;
    height: 36px;
  }

  .header .headerRight .headerPhone a .iconfont {
    font-size: 16px;
  }

  .navigationList .navigation .navigation_bom {
    top: 80px;
    padding: 10px 16px 10px;
  }

  .navigation_bomb .navigation_bombCen .navigation_bombL {
    padding: 30px 0;
    font-size: 32px;
  }

  .navigation_bomb .navigation_bombCen .navigation_bombR {
    padding: 40px 60px;
  }

  .navigation_bomb .navigation_bombCen .navigation_bombR .navigation_box {
    width: 180px;
  }

  .navigation_box .navigation_box_top {
    font-size: 16px;
    padding-bottom: 8px;
  }

  .navigation_box .navigation_box_bom a {
    font-size: 15px;
    line-height: 26px;
    margin-top: 12px;
  }
}

@media screen and (max-width: 999px) {
  .header .headerRight .navigationList .navigation {
    margin-right: 10px;
  }

  .header .header_cen .headerLogo a {
    width: 130px;
  }

  .header .headerRight .headerPhone a {
    width: 170px;
  }

  .navigationList .navigation .navigation_top {
    height: 80px;
  }

  .navigationList .navigation .navigation_bom {
    top: 80px;
  }
}

@media screen and (max-width: 930px) {
  .header .headerRight .headerCaidan {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
  }
  .header .headerRight .Search {
    margin-left: 16px;
  }
  .header .headerRight .Search .Search_bom {
    top: 80px;
  }
  .header .headerRight .headerCaidan .iconfont {
    color: #1a1a1a;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .header.act .headerRight .headerCaidan .iconfont {
    font-size: 24px;
    line-height: 1;
    color: #ffffff;
  }

  .header .headerRight .headerCaidan .iconfont:hover {
    color: #7ecad7;
  }

  .header .headerRight .headerCaidan .iconfont.none {
    display: none;
  }

  .header .headerRight .navigationList {
    position: absolute;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    width: 100%;
    height: calc(100vh - 80px);
    background: #fff;
    display: none;
  }

  .header .header_cen .headerLogo a {
    height: 80px;
  }

  .header.act .navigationList .navigation .navigation_top a {
    color: #1a1a1a;
  }

  .header.act .navigationList .navigation.active .navigation_top a {
    color: #7ecad7;
  }

  .header .headerRight .navigationList {
    flex-direction: column;
    overflow-y: auto;
    padding: 20px;
    background: #fff;
    border-top: 1px solid #eee;
  }

  .header .headerRight .navigationList .navigation {
    margin-right: 0;
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
  }

  .navigationList .navigation .navigation_top {
    height: auto;
    justify-content: space-between;
    padding: 10px 0;
  }

  .navigationList .navigation .navigation_top a {
    font-size: 16px;
    font-weight: 500;
  }

  .navigationList .navigation.pro .navigation_bomb {
    position: static;
    width: 100%;
    transform: none;
    display: none;
    overflow: hidden;
  }

  .navigation_bomb .navigation_bombCen {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }

  .navigation_bomb .navigation_bombCen .navigation_bombL {
    display: none;
  }

  .navigation_bomb .navigation_bombCen .navigation_bombL,
  .navigation_bomb .navigation_bombCen .navigation_bombR {
    width: 100%;
    padding: 0px 15px;
  }

  .navigation_bomb .navigation_bombCen .navigation_bombR .navigation_box {
    width: 100%;
    padding-top: 20px;
  }

  .navigation_bomb
    .navigation_bombCen
    .navigation_bombR
    .navigation_box
    .navigation_box_top
    .iconfont {
    transition: all 0.3s ease;
  }

  .navigation_bomb
    .navigation_bombCen
    .navigation_bombR
    .navigation_box.act
    .navigation_box_top
    .iconfont {
    transform: rotate(90deg);
  }

  .navigation_bomb
    .navigation_bombCen
    .navigation_bombR
    .navigation_box
    .navigation_box_bom {
    display: none;
  }

  .navigationList .navigation .navigation_top::before {
    display: none;
  }

  .navigationList .navigation.active .navigation_top::after {
    display: none;
  }

  .navigationList .navigation .navigation_top .iconfont {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .navigationList .navigation .navigation_bom {
    position: relative;
    top: 0;
    left: 0;
    transform: translateX(0);
    padding: 10px 0 0 20px;
    background: transparent;
    box-shadow: none;
  }

  .navigationList .navigation .navigation_bom .navigation_bomCen a {
    text-align: left;
    font-size: 14px;
    line-height: 24px;
    color: #666;
  }

  .header .headerRight .Language .Language_top {
    height: auto;
    padding: 10px 0;
  }

  .header .headerRight .Search .Search_top {
    height: auto;
    padding: 10px 0;
  }

  .header .headerRight .Language,
  .header .headerRight .Search {
    position: relative;
  }

  .header .headerRight .Language .Language_bom {
    top: 100%;
  }

  .header .headerRight .Search .Search_bom {
    top: 100%;
  }

  .navigationList .navigation.bshow .navigation_top .iconfont {
    transform: rotate(90deg);
  }
}

@media screen and (max-width: 768px) {
  .header .navigationList .navigation .navigation_top a {
    font-weight: bold;
  }

  .header .headerRight .headerPhone a {
    font-size: 14px;
    width: 146px;
  }

  .header .headerRight .navigationList {
    padding: 2vw 4vw;
  }
  .header .headerRight .Search .Search_bom form {
    width: 290px;
  }
}

/* footer */
.footer {
  width: 100%;
}

.footer .footer_top {
  width: 100%;
  background: #242424;
  padding: 80px 0 50px;
}

.footer .footer_top .footer_cen {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer_l .footer_logo a img {
  display: block;
  width: 83px;
}

.footer_l .footer_phone {
  margin-top: 40px;
}

.footer_l .footer_phone a {
  display: flex;
  align-items: center;
  font-size: 28px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}

.footer_l .footer_phone a .iconfont {
  display: block;
  font-size: 28px;
  margin-right: 12px;
}

.footer_l .footer_input {
  margin-top: 32px;
  width: 330px;
  height: 50px;
  border-radius: 6px;
  position: relative;
  background: #fff;
  overflow: hidden;
}

.footer_l .footer_input input {
  width: 100%;
  height: 50px;
  padding: 0 1em;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  text-indent: 0;
  color: #313131;
  border: none;
  outline: none;
}

.footer_l .footer_input .iconfont {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  color: #313131;
  cursor: pointer;
  border: 0;
  background: none;
}

.footer_l .footer_about {
  display: flex;
  align-items: center;
  margin-top: 32px;
  font-size: 16px;
  line-height: 1;
  color: #fff;
}

.footer_l .footer_about a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  position: relative;
}
.footer_l .footer_about a .img{
  position: absolute;
  left: 50%;
  top: -130px;
  transform: translate(-50%,0);
  background: #ffffff;
  border-radius: 5px;
  padding: 10px;
  width: 120px;
  height: 120px;
  display: none;
}
.footer_l .footer_about a .img img{
  width: 100%;
}
.footer_l .footer_about a .iconfont {
  display: block;
  font-size: 24px;
  color: #fff;
  transition: all 0.3s ease;
}

.footer_l .footer_about a .iconfont:hover {
  color: #7ecad7;
}
.footer_l .footer_about a:hover .img{
  display: block;
}

.footer_r {
  display: flex;
}

.footer_r .footer_box {
  margin-left: 100px;
}

.footer_r .footer_box p {
  font-size: 18px;
  line-height: 1;
  padding-bottom: 16px;
  font-weight: 400;
  color: #fff;
}

.footer_r .footer_box a {
  display: block;
  font-size: 16px;
  line-height: 33px;
  color: #fff;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer_r .footer_box a:hover {
  opacity: 1;
  color: #7ecad7;
}

.footer .footer_bom {
  width: 100%;
  background: #161616;
  padding: 20px 0;
}

.footer .footer_bom .footer_cen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
}

.footer .footer_bom .footer_cen p:first-child {
  font-size: 12px;
}

.footer .footer_bom .footer_cen a {
  font-size: 16px;
  line-height: 20px;
  color: #666666;
  transition: all 0.3s ease;
}

.footer .footer_bom .footer_cen a:hover {
  color: #7ecad7;
}

/* footer响应式样式 */
@media screen and (max-width: 1500px) {
  .footer .footer_top {
    padding: 70px 0 40px;
  }

  .footer_l .footer_phone a {
    font-size: 26px;
  }

  .footer_r .footer_box {
    margin-left: 80px;
  }
}

@media screen and (max-width: 1400px) {
  .footer .footer_top {
    padding: 60px 0 35px;
  }

  .footer_l .footer_phone a {
    font-size: 24px;
  }

  .footer_r .footer_box {
    margin-left: 70px;
  }

  .footer_r .footer_box p {
    font-size: 17px;
  }

  .footer_r .footer_box a {
    font-size: 15px;
  }
}

@media screen and (max-width: 1300px) {
  .footer .footer_top {
    padding: 55px 0 30px;
  }

  .footer_l .footer_phone a {
    font-size: 22px;
  }

  .footer_r .footer_box {
    margin-left: 40px;
  }
  .footer_r .footer_box:first-child {
    margin-left: 0;
  }
}

@media screen and (max-width: 1100px) {
  .footer .footer_top {
    padding: 50px 20px 25px;
  }
  .footer_l {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer_l .footer_phone a {
    font-size: 20px;
  }
  .footer_r {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .footer_r .footer_box {
    margin-left: 0;
  }

  .footer_l .footer_input {
    width: 280px;
  }
}

@media screen and (max-width: 999px) {
  .footer .footer_top .footer_cen {
    flex-direction: column;
    align-items: center;
  }

  .footer_l {
    margin-bottom: 20px;
    text-align: center;
  }

  .footer_r {
    justify-content: space-between;
  }

  .footer_r .footer_box {
    margin: 0 10px;
  }

  .footer_l .footer_input {
    margin: 20px auto 0;
  }
}

@media screen and (max-width: 768px) {
  .footer .footer_top {
    padding: 40px 15px 20px;
  }

  .footer_l .footer_logo a img {
    width: 70px;
  }

  .footer_l .footer_phone a {
    font-size: 18px;
  }

  .footer_l .footer_phone a .iconfont {
    font-size: 18px;
  }

  .footer_l .footer_input {
    width: 350px;
    height: 45px;
  }

  .footer_r {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer_r .footer_box {
    margin: 0px;
    width: 100%;
    min-width: 120px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .footer_r .footer_box p {
    width: 100%;
    font-size: 16px;
    padding-bottom: 0;
  }

  .footer_r .footer_box a {
    font-size: 14px;
    margin-right: 20px;
  }

  .footer_l .footer_about {
    font-size: 14px;
    margin-top: 20px;
  }

  .footer_l .footer_about a {
    margin-left: 16px;
  }

  .footer_l .footer_about a .iconfont {
    font-size: 20px;
  }

  .footer .footer_bom .footer_cen {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer .footer_bom .footer_cen a {
    font-size: 14px;
    margin-top: 8px;
  }
}

@media screen and (max-width: 576px) {
    .header .header_cen .headerLogo a{
        height: 50px;
    }
    .header .headerRight .navigationList{
        top: 50px;
    }
  .footer .footer_top {
    padding: 35px 0px 15px;
  }

  .footer_l .footer_logo a img {
    width: 60px;
  }

  .footer_l .footer_phone a {
    font-size: 16px;
  }

  .footer_l .footer_phone a .iconfont {
    font-size: 16px;
    margin-right: 8px;
  }

  .footer_l .footer_input {
    width: 100%;
    height: 40px;
  }

  .footer_l .footer_input input {
    font-size: 14px;
  }

  .footer_l .footer_input .iconfont {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }

  .footer_r {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer_r .footer_box {
    margin: 15px 0px;
    min-width: 100px;
  }

  .footer_r .footer_box p {
    font-size: 15px;
    padding-bottom: 12px;
  }

  .footer_r .footer_box a {
    font-size: 13px;
    line-height: 28px;
  }

  .footer_l .footer_about {
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer_l .footer_about p {
    width: 100%;
    margin-bottom: 12px;
  }

  .footer_l .footer_about a {
    margin: 0 8px;
  }

  .footer_l .footer_about a .iconfont {
    font-size: 25px;
  }

  .footer .footer_bom .footer_cen {
    font-size: 11px;
    line-height: 18px;
  }

  .footer .footer_bom .footer_cen a {
    font-size: 14px;
    margin-top: 6px;
  }
}

/* 分页器 */

.fyq {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

.fyq a {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e6e6;
  margin-right: 10px;
  font-size: 18px;
  line-height: 1;
  color: #808080;
  transition: all 0.3s ease;
}

.fyq a.act {
  background: #7ecad7;
  border-color: #7ecad7;
  color: #fff;
}

.fyq a:hover {
  background: #7ecad7;
  border-color: #7ecad7;
  color: #fff;
}

.fyq a:last-child {
  margin-right: 0;
}

/* 分页器 */
.mbx {
  width: 100%;
  padding: 16px 0;
}

.mbx ul {
  display: flex;
  align-items: center;
}

.mbx ul li {
  font-size: 14px;
  line-height: 16px;
  color: #999999;
  margin-right: 3px;
}

.mbx ul li a {
  display: flex;
  align-items: center;
  color: #999999;
}

.mbx ul li a .iconfont {
  display: block;
  margin-right: 4px;
}

/* banner */
.Pbanner {
  width: 100%;
  position: relative;
}

.Pbanner .Pbanner_prc img {
  display: block;
  width: 100%;
  min-height: 50vh;
  object-fit: cover;
}

.Pbanner .Pbanner_zi {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.Pbanner .Pbanner_zi h6 {
  text-align: center;
  font-size: 48px;
  line-height: 1;
  color: #323232;
  font-weight: 500;
}

/* Pbanner标题响应式调整 */
@media screen and (max-width: 1500px) {
  .Pbanner .Pbanner_zi h6 {
    font-size: 44px;
  }
}

@media screen and (max-width: 1400px) {
  .Pbanner .Pbanner_zi h6 {
    font-size: 40px;
  }
}

@media screen and (max-width: 1200px) {
  .Pbanner .Pbanner_zi h6 {
    font-size: 36px;
  }
}

@media screen and (max-width: 992px) {
  .Pbanner .Pbanner_zi h6 {
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .Pbanner .Pbanner_zi h6 {
    font-size: 28px;
  }
}

@media screen and (max-width: 576px) {
  .Pbanner .Pbanner_prc img{
      min-height: 180px;
  }
  .Pbanner .Pbanner_zi h6 {
    font-size: 24px;
  }
}
