@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 14px;
  outline: none; }

a {
  text-decoration: none; }

li {
  list-style: none; }

img {
  vertical-align: top;
  border: none; }

button {
  border: 0;
  background-color: transparent;
  -webkit-appearance: none; }

select {
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: normal; }

input, textarea {
  border: none; }

textarea {
  resize: none !important;
  overflow: auto; }

i {
  font-weight: normal; }

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0; }

input {
  -moz-appearance: textfield; }

html::-webkit-scrollbar {
  width: 5px;
  height: 5px; }

html::-webkit-scrollbar-thumb {
  background: #028543;
  border-radius: 6px; }

html::-webkit-scrollbar-corner {
  background: #028543; }

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background-color: #fff; }
  header .pc {
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    justify-content: space-between; }
    header .pc > a {
      display: block; }
      header .pc > a img {
        width: 205px;
        object-fit: contain; }
    header .pc ul {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start; }
      header .pc ul li {
        position: relative;
        transition: .4s all; }
        header .pc ul li > a {
          display: block;
          width: 120px;
          padding: 30px 0;
          font-size: 16px;
          color: #6a6a6a;
          text-align: center;
          position: relative; }
          header .pc ul li > a:after {
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background: url("../icon/lanmu_bag.jpg") no-repeat;
            background-size: cover;
            transition: .4s all;
            opacity: 0;
            z-index: -1; }
        header .pc ul li:hover a {
          color: #fff; }
          header .pc ul li:hover a:after {
            opacity: 1; }
            header .pc ul li.active a {
              color: #fff; }
              header .pc ul li.active a:after {
                opacity: 1; }
        header .pc ul li:hover dl {
          opacity: 1;
          pointer-events: auto; }
      header .pc ul dl {
        opacity: 0;
        pointer-events: none;
        position: absolute;
        top: 81px;
        left: 0;
        z-index: 99;
        width: 100%;
        transition: .4s all; }
        header .pc ul dl dd {
          border-top: 1px solid #d8d8d8;
          background-color: #f4f4f4;
        }
          header .pc ul dl dd a {
            display: block;
            padding: 15px 0;
            font-size: 14px;
            color: #6a6a6a !important;
            text-align: center;
            transition: .4s all;
            color: #fff; }
          header .pc ul dl dd:hover a {
            color: #028543 !important; }
    header .pc div {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start; }
      header .pc div form {
        width: 130px;
        height: 40px;
        border: 1px solid #9e9e9e;
        border-radius: 30px;
        position: relative;
        margin-right: 20px;
        transition: .4s all; }
        header .pc div form:hover {
          border-color: #028543; }
        header .pc div form:hover {
          width: 220px; }
          header .pc div form:hover input {
            width: 155px; }
        header .pc div form input {
          width: 70px;
          position: absolute;
          top: 50%;
          left: 42px;
          transform: translateY(-50%);
          line-height: 38px;
          transition: .4s all; }
        header .pc div form button {
          position: absolute;
          top: 50%;
          left: 20px;
          transform: translateY(-50%);
          width: 15px;
          height: 15px;
          background: url("../icon/store_search.png") no-repeat;
          background-size: contain;
          cursor: pointer; }
      header .pc div figure {
        padding-left: 48px;
        position: relative; }
        header .pc div figure:after {
          content: '';
          display: block;
          width: 38px;
          height: 38px;
          background: url("../icon/Phone_icon.png") no-repeat;
          background-size: contain;
          position: absolute;
          top: 50%;
          left: 0;
          transform: translateY(-50%); }
        header .pc div figure p {
          font-size: 14px;
          color: #737373; }
        header .pc div figure h5 {
          font-size: 24px;
          color: #222; }
  header .m {
    display: none;
    padding: 10px 20px;
    position: relative;
    border-bottom: 1px solid #dfdfdf;
    overflow: hidden; }
    header .m .menu {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 40px;
      background-color: transparent; }
      header .m .menu path {
        stroke: #868686; }
      header .m .menu label {
        left: -40px;
        top: -45px;
        max-width: 130px;
        max-height: 100px; }
    header .m > a {
      display: block;
      width: 252px; }
      header .m > a img {
        width: 100%;
        object-fit: contain; }

.PopupColumn {
  position: fixed;
  top: 64.75px;
  left: -1024px;
  padding: 20px 15px;
  width: 100%;
  max-width: 1024px;
  height: 100%;
  background-color: #434144;
  transition: .4s all;
  z-index: 99; }
  .PopupColumn.active {
    left: 0; }
  .PopupColumn li {
    border-bottom: 1px solid #6b6b6b; }
    .PopupColumn li.active a:after {
      background-color: #fff; }
    .PopupColumn li.active a icon {
      transform: translateY(-50%) rotate(180deg); }
    .PopupColumn li > a {
      display: block !important;
      font-size: 15px;
      color: #fff;
      padding: 20px 0;
      letter-spacing: 1px;
      transition: .4s all;
      letter-spacing: 2px;
      position: relative;
      padding-left: 30px; }
      .PopupColumn li > a:after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        border: 1px solid #fff;
        border-radius: 50%;
        transition: .4s; }
      .PopupColumn li > a icon {
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 15px;
        height: 15px;
        background: url("../icon/downJT.png") no-repeat;
        background-size: contain;
        transition: .4s all; }
    .PopupColumn li dl {
      display: none;
      padding-bottom: 20px; }
      .PopupColumn li dl dd {
        padding: 10px 30px; }
        .PopupColumn li dl dd a {
          display: block;
          font-size: 14px;
          color: #fff; }
  .PopupColumn p {
    font-size: 20px;
    margin-top: 30px;
    color: #004d85;
    cursor: pointer;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    flex-direction: unset; }
    .PopupColumn p i {
      display: block;
      width: 15px;
      height: 15px;
      background: url("../icon/top.png") no-repeat;
      background-size: contain;
      margin-left: 5px;
      margin-top: 2px; }
  .PopupColumn form {
    width: 100%;
    border-bottom: 1px solid #6b6b6b;
    position: relative;
    height: 50px;
    line-height: 50px;
    margin-bottom: 30px; }
    .PopupColumn form input {
      width: 100%;
      background-color: transparent;
      font-size: 16px;
      color: #fff; }
      .PopupColumn form input::-webkit-input-placeholder {
        font-size: 16px;
        color: #fff; }
    .PopupColumn form button {
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      width: 30px;
      height: 30px;
      background: url("../icon/msearch.png") no-repeat;
      background-size: contain; }

.ibanner {
  width: 100%;
  margin-top: 80px;
  position: relative; }
  .ibanner a {
    width: 100%; }
    .ibanner a img {
      width: 100%;
      object-fit: contain; }
    .ibanner a .pc {
      display: block; }
    .ibanner a .m {
      display: none; }
  .ibanner .swiper-pagination {
    bottom: 30px !important; }
  .ibanner .swiper-pagination-bullet {
    background-color: #fff;
    opacity: .7;
    transition: .4s all;
    width: 40px;
    height: 3px;
    border-radius: 0; }
  .ibanner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1; }
  .ibanner .btn {
    width: 1400px;
    position: absolute;
    left: 50%;
    bottom: 58px;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    justify-content: space-between; }
    .ibanner .btn p {
      font-size: 24px;
      color: #fff; }
      .ibanner .btn p span {
        font-size: 24px;
        color: #fff; }
    .ibanner .btn > div {
      width: 135px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      align-content: space-between;
      justify-content: space-between; }
      .ibanner .btn > div div {
        position: unset;
        margin-top: 0;
        width: 36px;
        height: 36px;
        background: url("../icon/banner_btn.png") no-repeat;
        background-size: contain; }
        .ibanner .btn > div div.swiper-button-next {
          transform: rotate(180deg); }
      .ibanner .btn > div i {
        display: block;
        width: 36px;
        height: 36px;
        background: url("../icon/banner_btnt.png") no-repeat;
        background-size: contain;
        cursor: pointer; }

.indexTitle {
  width: 100%;
  font-size: 36px;
  color: #bdbdbd;
  text-align: center;
  font-weight: bold;
  line-height: 46px;
  text-transform: uppercase;
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 40px; }
  .indexTitle p {
    font-size: 30px;
    color: #272727;
    text-align: center;
    font-weight: normal; }
  .indexTitle:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #028543; }

.more {
  display: block;
  margin: 0 auto;
  width: 225px;
  height: 40px;
  line-height: 40px;
  background-color: #028543;
  border-radius: 20px;
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  position: relative;
  margin-top: 60px;
  text-transform: uppercase;
  font-weight: bold; }
  .more:hover {
    color: #fff; }
    .more:hover:after {
      left: 17px; }
    .more:hover:before {
      right: 17px; }
  .more:after {
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    background: url("../icon/icon-prev.png") no-repeat;
    background-size: contain;
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: .4s all; }
  .more:before {
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    background: url("../icon/icon-prev.png") no-repeat;
    background-size: contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    transition: .4s all; }

.chanpinzhongxin {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 25px; }
  .chanpinzhongxin .view {
    width: 100%; }
    .chanpinzhongxin .view ul {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      align-content: space-between;
      justify-content: space-between; }
      .chanpinzhongxin .view ul li {
        width: 24.5%; }
        .chanpinzhongxin .view ul li a {
          display: block;
          width: 100%;
          position: relative;
          overflow: hidden; }
          .chanpinzhongxin .view ul li a:after {
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            transition: .4s all; }
          .chanpinzhongxin .view ul li a figure {
            width: 100%; }
            .chanpinzhongxin .view ul li a figure img {
              width: 100%;
              height: 680px;
              object-fit: cover; }
          .chanpinzhongxin .view ul li a .text {
            width: 100%;
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 3;
            padding: 0 40px;
            padding-bottom: 40px; }
            .chanpinzhongxin .view ul li a .text p {
              white-space: pre-line;
              font-size: 30px;
              color: #fff;
              font-weight: bold;
              text-transform: uppercase;
              transition: .4s all; }
            .chanpinzhongxin .view ul li a .text h5 {
              font-size: 24px;
              color: #fff;
              margin-top: 20px;
              position: relative;
              padding-bottom: 40px; }
              .chanpinzhongxin .view ul li a .text h5:after {
                content: '';
                display: block;
                position: absolute;
                bottom: 0;
                left: 0;
                width: 40px;
                height: 2px;
                background-color: #028543; }
        .chanpinzhongxin .view ul li:hover a:after {
          top: 100%; }
        .chanpinzhongxin .view ul li:hover a .text p {
          color: #028543; }

.jiameng {
  width: 100%;
  background: url("../image/jiameng-bag.jpg") no-repeat;
  background-size: cover; }
  .jiameng .view {
    width: 1600px;
    margin: 0 auto;
    padding: 120px 0; }
    .jiameng .view .indexTitle {
      color: #fff; }
      .jiameng .view .indexTitle p {
        color: #fff; }
    .jiameng .view ul {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      align-content: space-between;
      justify-content: space-between; }
      .jiameng .view ul li {
        width: 23%;
        border: 1px solid #858585;
        position: relative;
        transition: .4s all; }
        .jiameng .view ul li:hover {
          border-color: #028543; }
        .jiameng .view ul li:after {
          content: '';
          display: block;
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          background-color: rgba(0, 0, 0, 0.5);
          z-index: 1; }
        .jiameng .view ul li a {
          display: block;
          width: 100%;
          height: 100%;
          padding: 35px 25px;
          position: relative;
          z-index: 2; }
          .jiameng .view ul li a div {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            align-content: space-between;
            justify-content: space-between;
            align-items: unset; }
            .jiameng .view ul li a div h4 {
              font-size: 26px;
              color: #fff;
              line-height: 30px; }
              .jiameng .view ul li a div h4 p {
                font-size: 17px;margin-top:6px;
                color: #c0c0c0; }
            .jiameng .view ul li a div span {
              display: block;
              font-size: 16px;
              color: #bdbdbd;
              font-weight: bold;
              text-transform: uppercase; }
          .jiameng .view ul li a figure {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            align-content: space-between;
            justify-content: space-between;
            align-items: end;
            margin-top: 25px; }
            .jiameng .view ul li a figure i {
              display: block;
              width: 20px;
              height: 2px;
              background-color: #028543; }
            .jiameng .view ul li a figure h5 {
              font-size: 48px;
              color: #6b6b6b;
              font-weight: bold;
              line-height: 36px; }
        .jiameng .view ul li:nth-of-type(n+5) {
          margin-top: 30px; }

.menchuang {
  width: 100%;
  background: url("../image/menchuang_bag.jpg") no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 270px; }
.menchuang .m{display:none;width:100%;height:auto;object-fit: contain;margin-bottom:10px;}
  .menchuang .view {
    width: 1600px;
    margin: 0 auto;
    position: relative; }
    .menchuang .view div {
      width: 725px; }
      .menchuang .view div .indexTitle {
        text-align: left; }
        .menchuang .view div .indexTitle p {
          text-align: left; }
        .menchuang .view div .indexTitle:after {
          left: 0;
          transform: translateX(0); }
      .menchuang .view div h5 {
        margin-top: 40px; }
        .menchuang .view div h5 p {
          font-size: 14px;
          color: #b2b2b2;
          font-weight: bold;
          display: inline-block;
          text-transform: uppercase; }
        .menchuang .view div h5 span {
          font-size: 20px;
          color: #000000;
          font-weight: bold;
          margin-left: 16px; }
      .menchuang .view div > p {
        font-size: 15px;
        color: #4e4e4e;
        line-height: 28px;
        margin-top: 40px; }
      .menchuang .view div .more {
        transition:.4s all;
        margin-left: 0;
        font-weight: bold;
        color: #6c6c6c;
        background-color: #eeeeee;
        text-transform: uppercase; }
        .menchuang .view div .more:hover{background-color: #028543;color:#fff;}
        .menchuang .view div .more:after {
          background: url("../icon/index6Icon.png") no-repeat;
          background-size: contain;
          transform: translateY(-50%) rotate(180deg); }
        .menchuang .view div .more:before {
          background: url("../icon/index6Icon.png") no-repeat;
          background-size: contain;
          transform: translateY(-50%); }
    .menchuang .view figure {
      position: absolute;
      right: 0;
      top: 60px;
      width: 815px;
      height: 580px; }
      .menchuang .view figure img {
        width: 100%;
        height: 100%;
        object-fit: contain; }

.tongji {
  width: 100%;
  background: url("../image/tongji_bag.jpg") no-repeat;
  background-size: cover;
  padding-top: 235px;
  padding-bottom: 225px; }
  .tongji .view {
    width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    justify-content: space-between; }
    .tongji .view a {
      display: block;
      width: 15%; }
      .tongji .view a i {
        display: block;
        width: 90px;
        height: 90px;
        border: 1px solid #fff;
        border-radius: 50%;
        transition: .4s all;
        margin: 0 auto;
        margin-bottom: 50px; }
        .tongji .view a i:hover {
          border-color: #028543; }
      .tongji .view a:nth-of-type(1) i {
        background: url("../icon/tongjiIcon_1.png") center no-repeat;
        background-size: 50%; }
      .tongji .view a:nth-of-type(2) i {
        background: url("../icon/tongjiIcon_2.png") center no-repeat;
        background-size: 50%; }
      .tongji .view a:nth-of-type(3) i {
        background: url("../icon/tongjiIcon_3.png") center no-repeat;
        background-size: 50%; }
      .tongji .view a:nth-of-type(4) i {
        background: url("../icon/tongjiIcon_4.png") center no-repeat;
        background-size: 50%; }
      .tongji .view a:nth-of-type(5) i {
        background: url("../icon/tongjiIcon_5.png") center no-repeat;
        background-size: 50%; }
      .tongji .view a p {
        font-size: 14px;
        color: #fff;
        text-align: center; }
        .tongji .view a p span {
          display: inline-block;
          font-weight: bold;
          font-size: 60px;
          color: #fff;
          margin-right: 5px; }
      .tongji .view a h5 {
        font-size: 16px;
        color: #fff;
        text-align: center;
        margin-top: 8px; }

.xinwen {
  width: 100%;
  background: url("../image/xinwen-bag.jpg") no-repeat;
  background-size: cover;
  padding: 80px 0; }
  .xinwen ul {
    margin: 40px auto;
    width: 380px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    justify-content: space-between; }
    .xinwen ul li {
      width: 30%;
      transition: .4s all;
      border-radius: 20px; }
      .xinwen ul li:hover {
        background-color: #028543; }
        .xinwen ul li:hover a {
          color: #fff; }
      .xinwen ul li a {
        display: block;
        width: 100%;
        font-size: 16px;
        text-align: center;
        color: #6a6a6a;
        padding: 8px 0; }
  .xinwen .swiper {
    width: 1600px;
    margin: 0 auto;
    position: relative; }
    .xinwen .swiper .swiper-container {
      width: 1460px;
      margin: 0 auto; }
    .xinwen .swiper .swiper-pagination {
      position: static;
      margin-top: 20px;
      display: none; }
    .xinwen .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background-color: #028543; }
    .xinwen .swiper .swiper-button-prev {
      width: 45px;
      height: 45px;
      background-color: #c2c2c2;
      border-radius: 50%;
      background-image: url("../icon/down_jt.png");
      background-size: 50%;
      transform: rotate(90deg);
      transition: .4s all; }
      .xinwen .swiper .swiper-button-prev:hover {
        background-color: #028543; }
    .xinwen .swiper .swiper-button-next {
      width: 45px;
      height: 45px;
      background-color: #c2c2c2;
      border-radius: 50%;
      background-image: url("../icon/down_jt.png");
      background-size: 50%;
      transform: rotate(-90deg);
      transition: .4s all; }
      .xinwen .swiper .swiper-button-next:hover {
        background-color: #028543; }
    .xinwen .swiper a {
      display: block;
      position: relative; }
      .xinwen .swiper a:after {
        content: '';
        display: block;
        width: 100%;
        height: 4px;
        background-color: #028543;
        opacity: 0;
        transition: .4s all; }
      .xinwen .swiper a:hover:after {
        opacity: 1; }
      .xinwen .swiper a figure {
        width: 100%; }
        .xinwen .swiper a figure img {
          width: 100%;
          height: 320px;
          object-fit: cover; }
      .xinwen .swiper a .text {
        width: 100%;
        padding: 30px;
        background-color: #fff;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: nowrap; }
        .xinwen .swiper a .text time {
          font-size: 48px;
          color: #454545;
          text-align: center;
          padding-right: 20px;
          margin-right: 20px;
          border-right: 1px solid #cfcfcf; }
          .xinwen .swiper a .text time span {
            display: block;
            text-align: center;
            font-size: 18px;
            color: #6a6a6a; }
        .xinwen .swiper a .text div h5 {
          font-size: 16px;
          color: #202020;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 1; }
        .xinwen .swiper a .text div p {
          margin-top: 10px;
          line-height: 24px;
          font-size: 14px;
          color: #6a6a6a;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 2; }

footer {
  width: 100%;
  background: url("../image/footer-bag.jpg") no-repeat;
  background-size: cover; }
  footer .view {
    width: 1400px;
    margin: 0 auto;
    padding-top: 75px;
    padding-bottom: 40px; }
    footer .view .footer1 {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      align-content: space-between;
      justify-content: space-between; }
      footer .view .footer1 > div h5 {
        font-size: 18px;
        color: #f6f6f6;
        font-weight: bold;
        text-transform: uppercase; }
        footer .view .footer1 > div h5 p {
          font-size: 16px;
          color: #a9aaa9;
          font-weight: normal; }
      footer .view .footer1 > div #footer_share {
        margin-top: 25px; }
        footer .view .footer1 > div #footer_share .icon-wechat {
          margin-left: 0; }
        footer .view .footer1 > div #footer_share .social-share-icon {
          width: 44px;
          height: 44px; }
          footer .view .footer1 > div #footer_share .social-share-icon:before {
            font-size: 28px;
            text-align: center;
            line-height: 42px; }
        footer .view .footer1 > div #footer_share p {
          font-size: 12px; }
      footer .view .footer1 figure {
        width: 230px;
        height: 45px; }
        footer .view .footer1 figure img {
          width: 100%;
          height: 100%;
          object-fit: contain; }
      footer .view .footer1 h3 p {
        font-size: 16px;
        color: #a9aaa9;
        text-align: right; }
      footer .view .footer1 h3 a {
        display: block;
        font-size: 30px;
        color: #f6f6f6;
        text-align: right;
        margin-top: 5px; }
      footer .view .footer1 ul {
        width: 100%;
        margin-top: 25px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start; }
        footer .view .footer1 ul li {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          transition: .4s all;
          cursor: pointer; }
          footer .view .footer1 ul li + li {
            margin-left: 15px; }
          footer .view .footer1 ul li:nth-of-type(1) {
            background: url("../icon/wx.png") no-repeat #4f4f4f center; }
            footer .view .footer1 ul li:nth-of-type(1):hover {
              background: url("../icon/wx_a.png") no-repeat #7bc549 center; }
          footer .view .footer1 ul li:nth-of-type(2) {
            background: url("../icon/wb.png") no-repeat #4f4f4f center; }
            footer .view .footer1 ul li:nth-of-type(2):hover {
              background: url("../icon/wb_a.png") no-repeat #d0101b center; }
          footer .view .footer1 ul li:nth-of-type(3) {
            background: url("../icon/dy.png") no-repeat #4f4f4f center; }
            footer .view .footer1 ul li:nth-of-type(3):hover {
              background: url("../icon/dy_a.png") no-repeat #000 center; }
    footer .view .footer2 {
      width: 100%;
      padding: 40px 0;
      margin-top: 30px;
      border-top: 1px solid #4e4e4e;
      border-bottom: 1px solid #4e4e4e;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      align-content: space-between;
      justify-content: space-between; }
      footer .view .footer2 .left {
        width: 1050px; }
        footer .view .footer2 .left ul {
          width: 100%;
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          align-content: space-between;
          justify-content: space-between;
          align-items: unset; }
          footer .view .footer2 .left ul li > a {
            font-size: 16px;
            color: #fff;
            font-weight: bold;
            transition: .4s all; }
            footer .view .footer2 .left ul li > a:hover {
              color: #a9aaa9; }
          footer .view .footer2 .left ul li dl {
            width: 100%;
            margin-top: 12px; }
            footer .view .footer2 .left ul li dl dd + dd {
              margin-top: 10px; }
            footer .view .footer2 .left ul li dl dd a {
              display: block;
              font-size: 14px;
              color: #a9aaa9;
              transition: .4s all; }
              footer .view .footer2 .left ul li dl dd a:hover {
                color: #fff; }
      footer .view .footer2 .right {
        width: 190px; }
        footer .view .footer2 .right div {
          margin-top: 17px;
          background-color: #4f4f4f;
          cursor: pointer;
          display: flex;
          justify-content: center;
          flex-direction: column;
          align-items: center;
          position: relative; }
          footer .view .footer2 .right div.links p {
            padding-right: 18px; }
            footer .view .footer2 .right div.links p:before {
              content: '';
              display: block;
              position: absolute;
              top: 50%;
              right: 0;
              transform: translateY(-50%);
              transition: .4s all;
              width: 5px;
              height: 8px;
              background: url("../icon/m_jt.png") no-repeat;
              background-size: contain; }
            footer .view .footer2 .right div.links p.active:before {
              transform: translateY(-50%) rotate(90deg); }
          footer .view .footer2 .right div p {
            display: inline-block;
            line-height: 32px;
            text-align: center;
            font-size: 14px;
            color: #fff;
            position: relative; }
          footer .view .footer2 .right div ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #ddd; }
            footer .view .footer2 .right div ul li {
              width: 100%; }
              footer .view .footer2 .right div ul li a {
                display: block;
                line-height: 36px;
                color: #434144;
                text-align: center;
                font-size: 14px;
                transition: .4s all; }
    footer .view .footer3 {
      width: 100%;
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      align-content: space-between;
      justify-content: space-between;
      align-items: end; }
      footer .view .footer3 .txt {
        font-size: 14px;
        color: #a9aaa9;
        transition: .4s all; }
        footer .view .footer3 .txt + .txt {
          margin-top: 10px; }
        footer .view .footer3 .txt a {
          font-size: 14px;
          color: #a9aaa9;
          transition: .4s all; }
          footer .view .footer3 .txt a:hover {
            color: #fff; }

.follow {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999; }
  .follow figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 200px;
    height: 200px; }
    .follow figure img {
      width: 100%;
      height: 100%;
      object-fit: contain; }

      .slide-nav {
        position: fixed;
        right: 20px;
        top: 30%;
        z-index: 98; }
      
      .slide-nav .item {
        margin: 6px 0;
        width: 75px;
        height: 75px;
        border: 2px solid #028543;
        background-color: rgba(0, 0, 0, 0.5);
        position: relative;
        transition: .4s all; }
      
      .slide-nav .goTop {
        opacity: 0;
        pointer-events: none;
        transition: .4s all; }
      
      .slide-nav .goTop.active {
        opacity: 1;
        pointer-events: auto; }
      
      .slide-nav .item.wechat .icon {
        width: 41px; }
      
      .slide-nav .icon {
        margin: 4px auto 0;
        display: block;
        width: 40px;
        height: 40px;
        background-repeat: no-repeat;
        background-position: center -41px;
        transition: .4s all; }
      
      .slide-nav h4 {
        font-size: 12px;
        color: #c4c4c4;
        font-weight: 400;
        text-align: center;
        margin-top: 4px; }
      
      .slide-nav .mask {
        margin-top: -1px;
        position: absolute;
        right: 100%;
        top: 0;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
        opacity: 0;
        white-space: nowrap;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s; }
      
      .slide-nav .tel {
        padding: 0 30px;
        height: 74px;
        line-height: 71px;
        font-size: 16px;
        color: #fff;
        border: 2px solid #028543;
        border-right: none;
        background-color: rgba(0, 0, 0, 0.5);}
      
      .slide-nav .qr {
        margin-right: 2px;
        width: 140px;
        height: 140px;
        border: 1px solid #028543;
        overflow: hidden; }
      
      .slide-nav .qr img {
        display: block;
        width: 100%;
        height: 100%; }
      
      .slide-nav .item:hover {
        background-color: #028543;
        border-color: #028543; }
      
      .slide-nav .item:hover .icon {
        background-position: center -41px; }
      
      .slide-nav .item:hover h4 {
        color: #fff; }
      
      .slide-nav .item:hover .mask {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1; }

@media only screen and (max-width: 959px) {
  .slide-nav {
    left: 0;
    top: auto;
    right: 0;
    bottom: 0;
    font-size: 0;
    text-align: center; }

  .slide-nav .item {
    margin: 0;
    border: none;
    border-top: 1px solid #028543;
    border-left: 1px solid #028543;
    display: inline-block;
    vertical-align: middle;
    width: 20%;
    height: 60px; }

  .slide-nav .item:first-child {
    border: none;
    border-top: 1px solid #028543; }

  .slide-nav .goTop {
    display: inline-block !important; }

  .slide-nav .icon {
    width: 30px;
    height: 30px;
    -webkit-background-size: 30px auto;
    background-size: 30px auto; }

  .slide-nav .mask {
    left: 50%;
    right: auto;
    bottom: 100%;
    top: auto;
    -webkit-transform: translateX(-50%) scale(1, 0);
    -ms-transform: translateX(-50%) scale(1, 0);
    -o-transform: translateX(-50%) scale(1, 0);
    transform: translateX(-50%) scale(1, 0); }

  .slide-nav .tel {
    padding: 0 15px;
    border: 2px solid #028543;
    height: 46px;
    line-height: 42px; }

  .slide-nav .qr {
    width: 120px;
    height: 120px; }

  .slide-nav .item:hover .icon {
    background-position: center -30px; }

  .slide-nav .item:hover .mask {
    -webkit-transform: scale(1, 1) translateX(-50%);
    -ms-transform: scale(1, 1) translateX(-50%);
    -o-transform: scale(1, 1) translateX(-50%);
    transform: scale(1, 1) translateX(-50%); }

  .slide-nav .item {
    width: 25%; }

  .slide-nav .wechat {
    display: none; }}
.Mnav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 90; }
  .Mnav ul {
    width: 100%;
    background-color: #b5b5b5;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    justify-content: space-between; }
    .Mnav ul li {
      width: 33.333%;
      padding: 15px 0;
      transition: .4s all; }
      .Mnav ul li:hover {
        background-color: #028543; }
      .Mnav ul li a {
        display: block;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        flex-direction: unset; }
        .Mnav ul li a icon {
          display: block;
          width: 40px;
          height: 40px; }
        .Mnav ul li a span {
          font-size: 18px;
          color: #fff;
          margin-left: 20px; }
      .Mnav ul li:nth-of-type(1) icon {
        background: url("../icon/Mnav_tel.png") no-repeat;
        background-size: contain; }
      .Mnav ul li:nth-of-type(2) icon {
        background: url("../icon/Mnav_message.png") no-repeat;
        background-size: contain; }
      .Mnav ul li:nth-of-type(3) icon {
        background: url("../icon/Mnav_wx.png") no-repeat;
        background-size: contain; }

.MgoTop {
  position: fixed;
  right: 20px;
  bottom: 90px;
  display: none;
  width: 60px;
  height: 60px;
  background: url("../icon/MgoTop.png") no-repeat;
  background-size: contain;
  z-index: 90;
  transition: .4s all; }
  .MgoTop.active {
    opacity: 1;
    pointer-events: auto; }

.online {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; }
  .online .main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    max-width: 850px;
    width: 96%;
    padding: 30px;
    background-color: #fff; }
    .online .main .tit {
      width: 100%;
      max-width: 260px;
      margin: 0 auto; }
      .online .main .tit h3 {
        text-align: center;
        font-size: 24px;
        color: #434144;
        font-weight: bold; }
      .online .main .tit span {
        display: block;
        font-size: 14px;
        text-transform: uppercase;
        position: relative;
        margin-top: 5px;
        text-align: center;
        font-family: "Arial";
        color: #787878;
        font-weight: bold; }
        .online .main .tit span b {
          color: #028543; }
        .online .main .tit span:before {
          content: '';
          display: block;
          top: 50%;
          left: 0;
          position: absolute;
          transform: translateY(-50%);
          width: 70px;
          height: 1px;
          background-color: #434144; }
        .online .main .tit span:after {
          content: '';
          display: block;
          top: 50%;
          right: 0;
          position: absolute;
          transform: translateY(-50%);
          width: 70px;
          height: 1px;
          background-color: #434144; }
    .online .main form {
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      align-content: space-between;
      justify-content: space-between;
      align-items: unset; }
      .online .main form figure {
        display: block;
        width: 100%;
        position: relative;
        padding: 20% 0;
        width: 45%; }
        .online .main form figure img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover; }
      .online .main form ul {
        width: 52%; }
        .online .main form ul li {
          width: 100%;
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          align-content: space-between;
          justify-content: space-between;
          height: 40px; }
          .online .main form ul li + li {
            margin-top: 15px; }
          .online .main form ul li .ind {
            width: 48%;
            height: 100%;
            border: 1px solid #bebebe;
            padding: 0 10px;
            background-color: transparent;
            color: #979797;
            font-size: 14px;
            transition: .2s all; }
            .online .main form ul li .ind::-webkit-input-placeholder {
              color: #979797;
              font-size: 14px; }
          .online .main form ul li select {
            background: url(../icon/dropDown.png) #fff 95% center no-repeat;
            background-size: 11px; }
          .online .main form ul li.phone input {
            width: 100%; }
          .online .main form ul li.textarea {
            height: 180px; }
            .online .main form ul li.textarea textarea {
              width: 100%;
              padding: 10px; }
          .online .main form ul li button {
            width: 100%;
            height: 100%;
            line-height: 40px;
            text-align: center;
            background-color: #028543;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: .4s all;
            border: 1px solid transparent; }
            .online .main form ul li button:hover {
              background-color: transparent;
              border-color: #028543;
              border-radius: 5px;
              color: #028543; }
  .online .close {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    background: url(../icon/onlineClose.png) no-repeat center center #028543;
    background-size: 60%;
    cursor: pointer; }

@media screen and (max-width: 768px) {
  .online .main form figure {
    display: none; }

  .online .main form ul {
    width: 100%; }

  .online .main {
    padding: 15px; }

  .online .main .tit h3 {
    font-size: 20px; } }
.online .layui-form-select .layui-input {
  height: 40px;
  border-color: #bebebe;
  color: #979797; }
.online .layui-form-select dl dd.layui-this {
  background-color: #028543; }
.online .layui-unselect.layui-form-select {
  width: 48%; }
.online #distpicker-online .ind {
  display: block !important; }
.online #distpicker-online .layui-unselect {
  display: none !important; }

.PopupCode {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99; }
  .PopupCode ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start; }
    .PopupCode ul li {
      background-color: #fff;
      padding: 20px;
      transition: .4s all; }
      .PopupCode ul li + li {
        margin-left: 30px; }
      .PopupCode ul li figure img {
        width: 260px;
        height: 260px; }
      .PopupCode ul li p {
        width: 100%;
        text-align: center;
        font-size: 16px;
        color: #434144;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid #434144;
        transition: .4s all;
        letter-spacing: 2px; }
      .PopupCode ul li span {
        display: table;
        margin: 0 auto;
        margin-top: 10px;
        text-align: center;
        font-size: 14px;
        color: #028543;
        cursor: pointer;
        transition: .4s all;
        position: relative;
        padding-bottom: 3px; }
        .PopupCode ul li span:after {
          content: '';
          display: block;
          width: 100%;
          height: 1px;
          background-color: #fff;
          opacity: 0;
          transition: .4s all; }
        .PopupCode ul li span:hover:after {
          opacity: 1; }
      .PopupCode ul li:hover {
        background-color: #004d85; }
        .PopupCode ul li:hover p {
          color: #fff;
          border-color: #fff; }
        .PopupCode ul li:hover span {
          color: #fff; }

.w-1400 {
  width: 1400px;
  margin: 0 auto;
  padding: 60px 0; }

.pbanner {
  width: 100%;
  position: relative;
  margin-top: 80px; }
  .pbanner div{
    position: absolute;
    top:50%;left:50%;transform:translateX(-50%) translateY(-50%);
  }
  .pbanner div h2{font-size:46px;color:#fff;font-weight:bold;text-align:center;text-transform:uppercase;}
  .pbanner div span{font-size:16px;color:#fff;text-align:center;width: 100%;display:block;margin-top:20px;}
  .pbanner figure {
    width: 100%; }
    .pbanner figure img {
      max-width: 100%;
      width: 100%;
      object-fit: cover; }
  .pbanner div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding-bottom: 20px; }
    .pbanner div h3 {
      font-size: 36px;
      line-height: 45px;
      color: #fff;
      font-weight: bold;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px; }
    .pbanner div p {
      font-size: 30px;
      color: #fff;
      text-align: center;
      font-weight: normal; }
#pagejoinbanner{display:none;}
.joinbanner figure img {
  height: 520px; }
.joinbanner .indexTitle {
  padding-bottom: 0;
  margin-bottom: 30px; }
  .joinbanner .indexTitle:after {
    display: none; }
.joinbanner .view {
  width: 1400px;
  padding-bottom: 0; }
  .joinbanner .view:after {
    display: none; }
  .joinbanner .view ul {
    width: 100%; }
    .joinbanner .view ul li {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      align-content: space-between;
      justify-content: space-between; }
      .joinbanner .view ul li + li {
        margin-top: 20px; }
      .joinbanner .view ul li input {
        width: 32%;
        line-height: 43px;
        color: #757575;
        font-size: 14px;
        padding: 0 15px;
        border: 1px solid transparent;
        transition: .4s all; }
      .joinbanner .view ul li textarea {
        width: 100%;
        height: 140px;
        resize: none;
        padding: 10px 13px;
        color: #757575;
        font-size: 14px;
        transition: .4s all; }
      .joinbanner .view ul li button {
        width: 100%;
        margin:0 auto;
        background-color: #028543; }
        .joinbanner .view ul li button p{
          text-align:center;
          display: initial;
          position: relative;
          color:#fff;
          padding-right:20px;
          font-size:16px;
        }
        .joinbanner .view ul li button p:before{
          content:'';
          display:block;
          background: url("../icon/right_.png") no-repeat;
          background-size: contain;
          width:11px;height:11px;
          margin-left:6px;
          position: absolute;
          top:60%;
          right:0;
          transform: translateY(-50%);
        }

.page {
  width: 100%;
  background-color: #f4f4f4; }

.pc_search {
  width: 100%;
  padding: 20px 0;
  background-color: #fff;
  border-bottom: 1px solid #dadada; }
  .pc_search nav {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    justify-content: space-between; }
    .pc_search nav ul {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start; }
      .pc_search nav ul li {
        font-size: 15px;
        color: #000;
        font-weight: bold; }
        .pc_search nav ul li:nth-of-type(n+3) {
          margin-left: 13px; }
        .pc_search nav ul li a {
          font-size: 14px;
          color: #484848;
          transition: .4s all; }
          .pc_search nav ul li a:hover {
            color: #028543; }
    .pc_search nav form {
      position: relative; }
      .pc_search nav form:hover input {
        border-color: #028543; }
      .pc_search nav form input {
        line-height: 40px;
        width: 400px;
        border: 1px solid #767676;
        border-radius: 20px;
        color: #028543;
        font-size: 14px;
        background-color: transparent;
        padding-left: 15px;
        transition: .4s all; }
        .pc_search nav form input:-webkit-input-placeholder {
          color: #767676;
          font-size: 14px; }
      .pc_search nav form button {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: url("../icon/pc_search.png") no-repeat #028543 center;
        position: absolute;
        top: 50%;
        right: 5px;
        transform: translateY(-50%);
        cursor: pointer;
        transition: .4s all; }
        .pc_search nav form button:hover {
          opacity: .9; }
    .pc_search nav dl {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start; }
      .pc_search nav dl dd + dd {
        margin-left: 40px; }
      .pc_search nav dl dd a {
        display: block;
        transition: .4s all;
        position: relative;
        font-size: 16px;
        color: #828282; }
        .pc_search nav dl dd a:hover {
          color: #000; }
          .pc_search nav dl dd a:hover:after {
            opacity: 1; }
        .pc_search nav dl dd a.active {
          color: #000; }
          .pc_search nav dl dd a.active:after {
            opacity: 1; }
        .pc_search nav dl dd a:after {
          content: '';
          display: block;
          width: 100%;
          height: 3px;
          position: absolute;
          bottom: -21px;
          left: 0;
          background-color: #028543;
          opacity: 0;
          transition: .4s all; }
  .pc_search.page li:nth-of-type(n+3) {
    padding-left: 18px;
    position: relative;
    margin-left: 0; }
    .pc_search.page li:nth-of-type(n+3):before {
      content: '';
      display: block;
      position: absolute;
      top: 52%;
      left: 8px;
      transform: translateY(-50%);
      width: 7px;
      height: 8px;
      background: url("../icon/jt.png") no-repeat;
      background-size: contain; }
  .pc_search.keyword {
    border-bottom: 1px solid #d2d2d2; }
    .pc_search.keyword li {
      padding-left: 0 !important;
      color: #293751;
      font-weight: normal; }
      .pc_search.keyword li:before {
        display: none !important; }
      .pc_search.keyword li:last-child span {
        display: none; }
      .pc_search.keyword li a {
        color: #a2a2a2;
        font-weight: normal; }
      .pc_search.keyword li span {
        color: #a2a2a2;
        font-weight: normal; }

.navbar {
  width: 1400px;
  margin: 0 auto;
  padding: 60px 0;
  display: none; }
  .navbar div {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    justify-content: space-between;
    padding-left: 20px;
    background-color: #fff;
    border: 1px solid #e2e2e2; }
    .navbar div h5 {
      display: none;
      width: 100%;
      padding: 15px 20px;
      font-size: 16px;
      color: #434144;
      position: relative;
      transition: .4s all; }
      .navbar div h5:before {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background: url("../icon/down_jt_a.png") no-repeat;
        background-size: contain;
        transition: .4s all; }
      .navbar div h5.active {
        border-bottom: 1px solid #dfdfdf; }
        .navbar div h5.active:before {
          transform: translateY(-50%) rotate(180deg); }
    .navbar div p {
      font-size: 16px;
      line-height: 60px;
      color: #626262;
      padding-left: 35px;
      position: relative; }
      .navbar div p:before {
        content: '';
        display: block;
        width: 18px;
        height: 18px;
        background: url("../icon/all.png") no-repeat;
        background-size: contain;
        position: absolute;
        top: 49%;
        left: 0;
        transform: translateY(-50%); }
    .navbar div ul {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start; }
      .navbar div ul li {
        position: relative;
        transition: .4s all; }
        .navbar div ul li.active {
          background-color: #028543; }
          .navbar div ul li.active a {
            color: #fff; }
        .navbar div ul li:hover {
          background-color: #028543; }
          .navbar div ul li:hover a {
            color: #fff; }
        .navbar div ul li a {
          display: block;
          font-size: 14px;
          color: #626262;
          transition: .4s all;
          height: 60px;
          line-height: 60px;
          padding: 0 15px; }

.m-pages {
  text-align: center;
  font-size: 14px;
  padding: 70px 0; }

.m-pages ul {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden; }

.m-pages li {
  float: left;
  margin: 0 3px; }

.m-pages li a {
  display: block;
  width: 37px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  background-color: #ccc;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 3px;
  transition: .4s all;
  font-size: 13px; }

.m-pages li.active a, .m-pages li:hover a {
  color: #fff;
  background-color: #000; }

.m-pages .tz {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 37px; }

.m-pages .tz select {
  width: 64px;
  height: 36px;
  line-height: 35px;
  color: #000;
  padding-right: 21px;
  background: url(../icon/qwy-i4.png) center right 11px no-repeat;
  padding-left: 16px;
  border: 1px solid #ccc;
  margin: 0 10px;
  font-size: 14px; }

.m-pages select {
  width: 65px;
  height: 35px;
  border: 1px solid #ccc;
  line-height: 33px;
  color: #000;
  padding-left: 10px;
  background: url(../icon/qwy-i4.png) #fff center right 10px no-repeat;
  background-size: 8px;
  font-size: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px; }

.m-pages select option {
  width: 100%;
  height: 36px;
  font-size: 14px; }

.about5 {
  margin-top: 80px; }

.about5_bg {
  z-index: 1;
  position: relative;
  margin-top: 58px;
  background-color: #fff; }

.about5_bd {
  position: relative; }

.about5_bd .swiper-slide {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  align-items: unset; }

.about5_bd .swiper-slide .about5_bd_words {
  width: 55%;
  padding: 60px 40px; }

.about5_bd .swiper-slide .about5_bd_words .pub_tit {
  align-items: flex-start; }

.about5_bd .swiper-slide .about5_bd_words h3 {
  font-size: 24px;
  color: #000; }

.about5_bd .swiper-slide .about5_bd_words p {
  margin-top: 15px;
  white-space: pre-wrap;
  font-size: 16px;
  color: #666;
  line-height: 30px; }

.about5_bd .swiper-slide .about5_bd_pic {
  width: 45%; }

.about5_bd .swiper-slide .about5_bd_pic img {
  width: 100%;
  object-fit: contain; }

.about5_hd {
  position: relative;
  padding: 0 50px; }

.about5_hd .swiper-container {
  position: relative; }

.about5_hd .swiper-container:after {
  position: absolute;
  left: 0;
  bottom: 48px;
  content: "";
  width: 100%;
  height: 1px;
  background: #c8c8c8; }

.about5_hd .swiper-slide {
  transition: 0.6s;
  position: relative;
  padding-top: 32px;
  font-size: 24px;
  font-family: "Arial";
  color: #979797;
  text-align: center;
  cursor: pointer; }

.about5_hd .swiper-slide:after {
  z-index: 1;
  transition: 0.6s;
  position: absolute;
  left: 50%;
  bottom: 45px;
  margin-left: -4px;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cccccc; }

.about5_hd .swiper-slide-active {
  color: #028543; }

.about5_hd .swiper-slide-active:after {
  background: #028543; }

.about5_hd .swiper-button-prev {
  transition: 0.4s;
  z-index: 1;
  opacity: 1;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 0;
  background-image: url("../icon/history_btn.png");
  background-size: contain;
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important; }
  .about5_hd .swiper-button-prev:hover {
    background-image: url("../icon/history_btn_a.png"); }

.about5_hd .swiper-button-next {
  transition: 0.4s;
  z-index: 1;
  opacity: 1;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 0;
  background-image: url("../icon/history_btn.png");
  background-size: contain;
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  transform: rotate(180deg); }
  .about5_hd .swiper-button-next:hover {
    background-image: url("../icon/history_btn_a.png"); }

.about5_hd .swiper-button-prev:hover, .about5_hd .swiper-button-next:hover {
  color: #f8b62d;
  border-color: #f8b62d; }

.about5_hd .swiper-button-prev:after {
  display: none; }

.about5_hd .swiper-button-next:after {
  display: none; }

.navpro {
  width: 1400px;
  margin: 0 auto; }

.inner-tab {
  padding: 0; }
  .inner-tab h5 {
    background-color: #192028; }

.inner-tab {
  border: 1px solid #e2e2e2;
  background-color: #fff;
  border-bottom: none; }

.inner-tab .tit {
  padding: 0 18px;
  line-height: 58px;
  overflow: hidden;
  border-bottom: 1px solid #e2e2e2;
  font-size: 16px;
  color: #484848; }

.inner-tab .tit span {
  float: left;
  padding-left: 32px;
  background: url(../icon/all.png) center left no-repeat; }

.inner-tab .tit em {
  font-style: unset;
  float: right;
  padding-right: 20px;
  background: url(../icon/down.png) center right no-repeat;
  cursor: pointer; }

.inner-tab dl {
  width: 100%;
  border-bottom: 1px solid #e2e2e2;
  line-height: 58px;
  padding: 0 30px 0 45px; }

.inner-tab dt {
  font-size: 16px;
  color: #484848;
  float: left;
  margin-right: 60px;
  display: none; }

.inner-tab dt h4 {
  color: #434144;
  font-size: 16px;
  position: relative;
  padding-right: 25px;
  display: inline-block; }

.inner-tab dt i {
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transition: .4s all;
  transform: translateY(-50%);
  background: url(../icon/down_jt_a.png) no-repeat;
  background-size: 100% 100%;
  transition: .4s all; }

.inner-tab dd {
  overflow: hidden; }

.inner-tab dd a {
  float: left;
  font-size: 16px;
  color: #9e9e9e;
  margin-right: 30px;
  position: relative;
  transition: .4s all; }

.inner-tab dd a:after {
  position: absolute;
  left: 0;
  bottom: 13px;
  width: 100%;
  background-color: transparent;
  height: 2px;
  transition: .4s all; }

.inner-tab dd a.active, .inner-tab dd a:hover {
  color: #028543; }

.inner-tab dd a.active:after, .inner-tab dd a:hover:after {
  background-color: #028543; }

.inner-tab dd h4 {
  font-size: 16px;
  color: #626262;
  font-weight: 700;
  float: left;
  margin-right: 62px; }

.inner-tab2 .tit {
  padding-right: 0; }

.inner-tab .tit p {
  float: right;
  padding: 0 20px;
  transition: .4s all; }

.inner-tab .tit p:hover {
  color: #fff;
  background-color: #000; }

.inner-tab .tit a {
  display: block;
  float: right;
  padding: 0 20px;
  transition: .4s all; }

.inner-tab .tit a:hover {
  color: #fff;
  background-color: #000; }

.inner-tab .tit p.on {
  color: #fff;
  background-color: #000; }

.inner-tab .tit a.on {
  color: #fff;
  background-color: #000; }

.m-serve {
  background-color: #fff;
  padding-bottom: 20px;
  margin-bottom: 20px; }

.m-serve .tit {
  text-align: center;
  padding: 24px 0 45px;
  background-color: #000; }

.m-serve .tit h3 {
  font-size: 18px;
  color: #fff;
  line-height: 30px;
  margin-bottom: 6px;
  font-weight: bold; }

.m-serve .tit p {
  font-size: 14px;
  color: #fff;
  line-height: 24px; }

.m-serve .tit p em {
  font-size: 20px;
  font-weight: 700;
  font-style: normal; }

.m-serve .form {
  margin: -26px 20px 0;
  background-color: #fff;
  border-radius: 5px;
  padding: 19px 15px 19px;
  border: 1px solid #f0f0f0; }

.m-serve .form .item .inp, .m-serve .form select {
  border: 1px solid #e2e2e2;
  padding: 0 20px 0 13px;
  font-size: 12px;
  color: #828282;
  line-height: 35px;
  height: 35px;
  display: block;
  width: 100%;
  border-radius: 3px; }

.m-serve .form select {
  background: url(../icon/qwy-i5.png) center right 11px no-repeat; }

.m-serve .form .item {
  margin-bottom: 15px;
  overflow: hidden; }

.m-serve .form .item .s1 {
  float: left;
  width: 47%; }

.m-serve .form .item .s2 {
  float: right;
  width: 47%; }

.m-serve .form .sub {
  line-height: 40px;
  height: 40px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  background-color: #028543;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: .4s all;
  border: 1px solid transparent; }

.m-serve .form .sub:hover {
  border-radius: 3px;
  color: #028543;
  background-color: transparent;
  border-color: #028543; }

.ul-form {
  overflow: hidden;
  margin: 0 -4px; }

.ul-form li {
  float: left;
  width: 50%;
  margin-top: 12px;
  padding: 0 4px; }

.g-tit1 {
  overflow: hidden;
  margin-bottom: 15px; }

.g-tit1 h3 {
  float: left;
  padding-left: 20px;
  font-size: 24px;
  color: #000;
  background: url(../images/a-ico12.png) center left no-repeat;
  line-height: 34px;
  font-weight: 400; }

.g-tit1 a {
  float: right;
  font-size: 14px;
  color: #828282;
  line-height: 24px;
  margin-top: 8px; }

.m-list2 {
  padding-bottom: 10px; }

.m-list2 li a {
  display: block;
  font-size: 14px;
  color: #5e5e5e;
  transition: .4s all;
  line-height: 24px;
  margin-bottom: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  padding-left: 14px; }

.m-list2 li a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: #e3e3e3;
  margin-top: -1px;
  transition:.4s all;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%; }

.m-list2.list-2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between; }
  .m-list2.list-2 li {
    width: 48%; }

.g-tit1 a:hover, .m-list2 li a:hover {
  color: #028543; }
 .m-list2 li:hover a:after{
   background-color: #028543;
 }
.m-list3 {
  overflow: hidden;
  margin: 0 -9px; }

.m-list3 li {
  float: left;
  width: 50%;
  padding: 0 9px;
  text-align: center; }

.m-list3 li a {
  display: block;
  font-size: 14px;
  color: #5e5e5e;
  transition: .4s all;
  line-height: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  margin-bottom: 18px;
  background-color: #efefef; }

.m-list3 li a:hover {
  background-color: #028543;
  color: #fff !important; }

.g-box {
  padding: 20px;
  background-color: #fff; }

.g-box + .g-box {
  margin-top: 20px; }

.g-tit1 {
  overflow: hidden;
  margin-bottom: 20px; }

.g-tit1 h3 {
  float: left;
  padding-left: 20px;
  font-size: 24px;
  color: #000;
  background: url(../icon/qwy-i6.png) center left no-repeat;
  line-height: 34px;
  font-weight: 400;
  font-weight: 700; }

.g-tit1 a {
  float: right;
  font-size: 14px;
  color: #828282;
  line-height: 24px;
  margin-top: 8px; }

.g-tit1 a:hover, .m-list2 li a:hover, .m-list3 li a:hover {
  color: #028543; }

.ul-form {
  overflow: hidden;
  margin: 0 -4px; }

.ul-form li {
  float: left;
  width: 50%;
  margin-top: 12px;
  padding: 0 4px; }

.col-r {
  width: 21.8%;
  float: right; }

.m-serve .layui-unselect {
  display: none !important; }

.box-blank .con {
  background: #434144;
  display: inline-block;
  width: 215px; }

.box-blank .box1 {
  width: 65px;
  height: 40px;
  background: #028543 url(../icon/t3-img6.png) no-repeat center center;
  float: left; }

.box-blank .blank {
  overflow: hidden;
  display: block;
  font-size: 16px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }

.box-blank .blank:hover {
  opacity: .8; }

.box-blank {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 30px; }
  .box-blank div a {
    display: block;
    font-size: 16px;
    color: #787878;
    transition: .4s all; }
    .box-blank div a + a {
      margin-top: 15px; }
  .box-blank .btn a {
    font-size: 14px; }
  .box-blank .btn a:hover {
    color: #028543; }

.page-t1 a {
  display: block;
  font-size: 16px;
  color: #787878;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; }

.page-t1 a.prev {
  margin-bottom: 15px; }

.page-t1 a:hover {
  color: #000; }
  .page-t1 a em{font-style: normal;font-size: 16px; }
.page-t1 a span {
  font-size: 16px; }

.newsview {
  background-color: #f4f4f4; }

.newsview .page-t1 {
  margin: 0; }

.newsview .main {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  align-items: unset;
  padding: 80px 0; }

.col-l {
  width: 100%;
  position: relative;
  z-index: 4; }

.newsView-page .wp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  place-items: unset;
  margin-top: 65px; }

.newsview img {
  max-width: 100%;
  object-fit: contain; }

.row-new2 {
  background: #fff; }

.m-contxt1 {
  padding: 19px 30px 39px; }

.m-contxt1 .tit {
  font-size: 30px;
  color: #000;
  margin-bottom: 13px;
  font-weight: bold; }

.m-contxt1 .box-info {
  padding-bottom: 25px;
  margin-bottom: 33px;
  border-bottom: 1px solid #d6d6d6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between; }

.m-contxt1 .box-info .info span {
  font-size: 15px;
  color: #787878;
  margin-right: 10px;
  display: inline-block; }

.share {
  font-size: 16px;
  color: #a7a7a7;
  line-height: 33px; }

.share a {
  display: inline-block;
  vertical-align: middle;
  width: 33px;
  height: 33px;
  margin-right: 10px;
  background: no-repeat center center;
  background-size: contain;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%; }

.share a:hover {
  opacity: .8; }

.share p {
  font-size: 12px; }

.share a img {
  display: block;
  width: 100%; }

.share .bdshare-button-style0-16 .bds_more, .share .bdshare-button-style0-16 a {
  float: none;
  padding-left: 0;
  margin: 0;
  margin-right: 10px; }

.m-contxt1 .txt-con {
  font-size: 16px;
  color: #787878;
  line-height: 1.875;
  padding-bottom: 30px;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 35px; }

.m-contxt1 .txt-con img {
  display: block;
  max-width: 100%;
  margin: 0 auto; }

.m-contxt1 .box-blank {
  overflow: hidden; }

.m-contxt1 .box-blank .con {
  background: #434144;
  display: inline-block;
  width: 215px; }

.m-contxt1 .box-blank .box1 {
  width: 65px;
  height: 40px;
  background: #028543 url(../icon/t3-img6.png) no-repeat center center;
  float: left; }

.m-contxt1 .box-blank .blank {
  overflow: hidden;
  display: block;
  font-size: 16px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }

.m-contxt1 .box-blank .blank:hover {
  opacity: .8; }

.share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start; }
  .share span {
    font-size: 14px;
    color: #717171; }

.lrcolumn .main {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  align-items: unset; }
  .lrcolumn .main .left {
    width: 76%; }
  .lrcolumn .main .right {
    width: 22%; }

.about {
  width: 100%; }
  .about .menchuang {
    width: 100%;
    background: #fff;
    position: relative;
    padding-bottom: 195px; }
    .about .menchuang:after {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 790px;
      height: 140px;
      background: url("../image/em_watermark.png") no-repeat;
      background-size: contain; }
    .about .menchuang .view {
      width: 1400px;
      margin: 0 auto; }
      .about .menchuang .view div {
        width: 510px; }
        .about .menchuang .view div > p {
          font-size: 16px;
          color: #4e4e4e;
          line-height: 30px; }

.team {
  width: 100%;
  border-top: 20px solid #fff; }
  .team .view {
    width: 100%;
    background: url("../image/team.jpg") no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 80px;
    padding-bottom: 720px; }
  .team .indexTitle {
    color: #fff; }
    .team .indexTitle p {
      color: #fff; }
    .team .indexTitle:after {
      background-color: #fff; }

.history {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 85px;
  background-color: #fff; }
  .history .view {
    width: 1400px;
    margin: 0 auto; }
  .history .padding {
    padding: 70px 100px;
    background-color: #f8f8f8; }

.honor {
  width: 100%;
  background: url("../image/honor_bag.jpg") no-repeat;
  background-size: cover;
  padding: 70px 0; }
  .honor .view {
    width: 1400px;
    margin: 0 auto; }
    .honor .view .swiper-slide a {
      display: block;
      width: 100%;
      height: 254px;
      padding: 1px; }
      .honor .view .swiper-slide a figure {
        width: 100%;
        height: 100%;
        border: 1px solid #d6d6d6;
        padding: 40px 30px;
        background-color: #f7f7f7;
        transition: .4s all; }
        .honor .view .swiper-slide a figure img {
          width: 100%;
          height: 100%;
          object-fit: contain; }
    .honor .view .swiper-slide p {
      font-size: 16px;
      color: #666666;
      margin-top: 20px;
      text-align: center;
      transition: .4s all; }
    .honor .view .swiper-slide:hover a figure {
      border-color: #028543; }
    .honor .view .swiper-slide:hover p {
      color: #028543; }
    .honor .view .btn {
      margin: 55px auto;
      margin-bottom: 0;
      width: 70%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      height: 16px; }
      .honor .view .btn .swiper-button-prev {
        width: 60px;
        height: 14px;
        background: url(../icon/news_btn.png) no-repeat;
        background-size: contain;
        left: 0;
        transform: translateY(-50%);
        margin: 0;
        opacity: 1;
        transition: .4s all; }
        .honor .view .btn .swiper-button-prev:hover {
          background: url(../icon/news_btn_a.png) no-repeat;
          background-size: contain; }
        .honor .view .btn .swiper-button-prev:after {
          display: none; }
      .honor .view .btn .swiper-button-next {
        width: 60px;
        height: 14px;
        background: url(../icon/news_btn.png) no-repeat;
        background-size: contain;
        right: 0;
        transform: translateY(-50%) rotate(180deg);
        margin: 0;
        opacity: 1;
        transition: .4s all; }
        .honor .view .btn .swiper-button-next:hover {
          background: url(../icon/news_btn_a.png) no-repeat;
          background-size: contain; }
        .honor .view .btn .swiper-button-next:after {
          display: none; }
      .honor .view .btn .swiper-pagination {
        margin: 0 50px;
        position: unset;
        /* display: flex; */
        justify-content: center;
        align-items: center; }
        .honor .view .btn .swiper-pagination .swiper-pagination-bullet {
          background-color: #cdcdcd;
          margin: 0 5px;
          transition: .4s all;
          opacity: 1; }
          .honor .view .btn .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background-color: #028543; }

.youshi {
  width: 100%;
  background: url("../image/youshi.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 290px 0; }
  .youshi .view {
    width: 1400px;
    margin: 0 auto; }
    .youshi .view .indexTitle {
      text-align: left;
      color: #fff; }
      .youshi .view .indexTitle p {
        text-align: left;
        color: #fff; }
      .youshi .view .indexTitle:after {
        left: 0;
        transform: translateX(0); }
    .youshi .view h5 {
      font-size: 20px;
      color: #fff;
      font-weight: bold; }
    .youshi .view > p {
      font-size: 16px;
      color: #fff;
      line-height: 28px;
      width: 500px;
      margin-top: 14px; }
    .youshi .view ul {
      margin-top: 30px;
      width: 580px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      align-content: space-between;
      justify-content: space-between; }
      .youshi .view ul li {
        width: 15%;
        font-size: 11px;
        color: #fff;
        text-align: Center;
        background-color: #028543;
        border-radius: 5px;
        padding: 8px 0; }

.pinpai {
  width: 100%;
  background: url("../image/pinpai-bag.jpg") no-repeat;
  background-size: cover;
  padding-top: 170px;
  padding-bottom: 160px;
  border-top: 20px solid #fff; }
  .pinpai .indexTitle {
    color: #fff; }
    .pinpai .indexTitle p {
      color: #fff; }
  .pinpai .view {
    width: 1400px;
    margin: 0 auto; }
    .pinpai .view > p {
      font-size: 24px;
      color: #ffffff;
      margin-top: 70px;
      margin-bottom: 100px;
      text-align: center; }
    .pinpai .view ul {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      align-content: space-between;
      justify-content: space-between; }
      .pinpai .view ul li {
        width: 32%; }
        .pinpai .view ul li img {
          width: 100%;
          height: 270px;
          object-fit: cover; }

.toufang {
  width: 100%;
  background: url("../image/guanggao.jpg") no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 100px;
  border-top: 20px solid #fff; }
  .toufang .view {
    width: 1400px;
    margin: 0 auto; }
    .toufang .view .indexTitle span {
      font-size: 18px;
      color: #272727;
      display: block; }
    .toufang .view dl {
      width: 720px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      align-content: space-between;
      justify-content: space-between;
      margin: 60px auto; }
      .toufang .view dl dd {
        font-size: 16px;
        color: #000;
        position: relative; }
        .toufang .view dl dd:after {
          content: '';
          display: block;
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%); }
        .toufang .view dl dd:nth-of-type(1) {
          padding-left: 35px; }
          .toufang .view dl dd:nth-of-type(1):after {
            width: 23px;
            height: 15px;
            background: url("../icon/toufangIcon1.png") no-repeat;
            background-size: contain; }
        .toufang .view dl dd:nth-of-type(2) {
          padding-left: 38px; }
          .toufang .view dl dd:nth-of-type(2):after {
            width: 25px;
            height: 20px;
            background: url("../icon/toufangIcon2.png") no-repeat;
            background-size: contain; }
        .toufang .view dl dd:nth-of-type(3) {
          padding-left: 64px; }
          .toufang .view dl dd:nth-of-type(3):after {
            width: 52px;
            height: 15px;
            background: url("../icon/toufangIcon3.png") no-repeat;
            background-size: contain; }
        .toufang .view dl dd:nth-of-type(4) {
          padding-left: 37px; }
          .toufang .view dl dd:nth-of-type(4):after {
            width: 25px;
            height: 26px;
            background: url("../icon/toufangIcon4.png") no-repeat;
            background-size: contain; }
    .toufang .view ul {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      align-content: space-between;
      justify-content: space-between; }
      .toufang .view ul li {
        height: 580px; }
        .toufang .view ul li:nth-of-type(1) {
          width: 55%; }
          .toufang .view ul li:nth-of-type(1) figure {
            height: 100%;
            border-right: 10px solid transparent; }
        .toufang .view ul li:nth-of-type(2) {
          width: 45%; }
          .toufang .view ul li:nth-of-type(2) > figure {
            height: 360px;
            border-bottom: 10px solid transparent; }
          .toufang .view ul li:nth-of-type(2) div {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            align-content: space-between;
            justify-content: space-between; }
            .toufang .view ul li:nth-of-type(2) div figure {
              width: 50%;
              height: 220px; }
              .toufang .view ul li:nth-of-type(2) div figure + figure {
                border-left: 10px solid transparent; }
        .toufang .view ul li figure {
          width: 100%; }
          .toufang .view ul li figure img {
            width: 100%;
            height: 100%;
            object-fit: cover; }

.pinpai.fuzhi {
  background: url("../image/fuzhi-bag.jpg") no-repeat;
  background-size: cover; }
  .pinpai.fuzhi .view > p {
    margin-top: 30px; }
  .pinpai.fuzhi .view ul li {
    position: relative; }
  .pinpai.fuzhi .view ul p {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    font-size: 16px;
    color: #fff;
    width: 100%;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.5); }

.xingxiang {
  width: 100%;
  background: url("../image/xingxiang-bag.jpg") no-repeat;
  background-size: cover;
  padding: 80px 0;
  border-top: 20px solid #fff; }
  .xingxiang .view {
    width: 1400px;
    margin: 0 auto; }
  .xingxiang dl {
    width: 450px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    justify-content: space-between; }
    .xingxiang dl dd {
      font-size: 24px;
      color: #000;
      padding-left: 35px;
      position: relative; }
      .xingxiang dl dd:after {
        content: '';
        display: block;
        width: 25px;
        height: 25px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background: url("../icon/xingxinagIcon.png") no-repeat;
        background-size: contain; }
  .xingxiang h5 {
    font-size: 18px;
    color: #6a6a6a;
    text-align: center;
    margin: 25px auto;
    margin-bottom: 35px; }
  .xingxiang figure {
    width: 100%; }
    .xingxiang figure img {
      width: 100%;
      object-fit: contain; }
    .xingxiang figure img + img {
      border-top: 10px solid transparent; }
    .xingxiang figure.pc {
      display: block; }
    .xingxiang figure.m {
      display: none; }

.joinTongji.tongji {
  background: url("../image/join-tongji.jpg") no-repeat;
  background-size: cover;
  padding: 340px 0;
  border-top: 20px solid #fff;
  border-bottom: 20px solid #fff; }

.youxuan.pbanner.joinbanner {
  background: url("../image/youxuan-bag.jpg") no-repeat;
  background-size: cover;
  padding: 225px 0;
  border-top: 20px solid #fff;
  margin-top: 0; }
  .youxuan.pbanner.joinbanner .indexTitle {
    color: #fff;
    padding-bottom: 30px; }
    .youxuan.pbanner.joinbanner .indexTitle p {
      color: #fff; }
    .youxuan.pbanner.joinbanner .indexTitle:after {
      display: block; }
  .youxuan.pbanner.joinbanner .view {
    width: 1400px;
    margin: 0 auto;
    position: static;
    transform: none; }

.contact-main .main {
  width: 1400px;
  margin: 0 auto;
  padding: 70px 0; }
  .contact-main .main .contact {
    padding: 30px;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    justify-content: space-between;
    align-items: unset; }
    .contact-main .main .contact > dl {
      width: 35%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      align-content: space-between;
      justify-content: space-between;
      align-items: unset; }
      .contact-main .main .contact > dl dd {
        width: 50%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        background-color: #e4e4e4; }
        .contact-main .main .contact > dl dd:hover figure img {
          margin-top: -15px; }
        .contact-main .main .contact > dl dd:nth-of-type(1) {
          border-right: 11.5px solid #fff;
          border-bottom: 11.5px solid #fff; }
        .contact-main .main .contact > dl dd:nth-of-type(2) {
          border-left: 11.5px solid #fff;
          border-bottom: 11.5px solid #fff; }
        .contact-main .main .contact > dl dd:nth-of-type(3) {
          border-right: 11.5px solid #fff;
          border-top: 11.5px solid #fff; }
        .contact-main .main .contact > dl dd:nth-of-type(4) {
          border-left: 11.5px solid #fff;
          border-top: 11.5px solid #fff; }
        .contact-main .main .contact > dl dd:nth-of-type(5) {
          border-right: 11.5px solid #fff;
          border-top: 11.5px solid #fff; }
        .contact-main .main .contact > dl dd:nth-of-type(6) {
          border-left: 11.5px solid #fff;
          border-top: 11.5px solid #fff; }
        .contact-main .main .contact > dl dd figure {
          width: 63px;
          height: 63px; }
          .contact-main .main .contact > dl dd figure img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: .4s all; }
        .contact-main .main .contact > dl dd p {
          margin-top: 29px;
          font-size: 16px;
          color: #636363;
          text-align: center; }
          .contact-main .main .contact > dl dd p + p {
            margin-top: 10px; }
    .contact-main .main .contact #map {
      width: 65%;
      border-left: 22px solid #fff; }
    .contact-main .main .contact .index6 {
      width: 100%;
      padding: 0;
      margin-top: 22px; }
      .contact-main .main .contact .index6 textarea, .contact-main .main .contact .index6 input {
        border: none;
        resize: none; }
      .contact-main .main .contact .index6 .main {
        width: 100%;
        border: none;
        padding: 30px;
        margin-top: 0; }
        .contact-main .main .contact .index6 .main form {
          width: 100%;
          margin-top: 0; }

.index6 {
  background-color: #f1f1f1;
  padding: 100px 0; }
  .index6 .layui-unselect {
    display: none !important; }
  .index6 .main h4 {
    font-size: 48px;
    line-height: 48px;
    color: #bdbdbd;
    text-align: center;
    font-family: "fontFamily";
    text-transform: uppercase;
    font-weight: bold; }
    .index6 .main h4 span {
      display: block;
      font-size: 24px;
      line-height: 30px;
      color: #342c2a;
      text-align: center;
      margin-top: 15px; }
  .index6 .main form {
    margin-top: 60px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    justify-content: space-between; }
    .index6 .main form ul {
      width: 49.5%; }
      .index6 .main form ul li {
        width: 100%;
        height: 58px;
        border: 1px solid #e3e3e3;
        background-color: #fff;
        padding: 0 15px;
        transition: .4s all; }
        .index6 .main form ul li + li {
          margin-top: 20px; }
        .index6 .main form ul li input {
          width: 100%;
          height: 100%;
          color: #6a6a6a;
          font-size: 16px;
          padding-left: 0; }
        .index6 .main form ul li select {
          display: block !important;
          width: 100%;
          height: 100%;
          color: #6a6a6a;
          font-size: 16px;
          background: url("../icon/index6_btn.png") #fff 100% center no-repeat; }
    .index6 .main form dl {
      width: 49.5%; }
      .index6 .main form dl dd:first-child {
        width: 100%;
        height: 290px;
        padding: 15px;
        border: 1px solid #e3e3e3;
        background-color: #fff; }
        .index6 .main form dl dd:first-child textarea {
          width: 100%;
          height: 100%; }
          .index6 .main form dl dd:first-child textarea::-webkit-input-placeholder {
            color: #6a6a6a;
            font-size: 16px; }
      .index6 .main form dl dd:last-child:hover {
        box-shadow: none; }
      .index6 .main form dl button {
        width: 100%;
        height: 58px;
        margin-top: 20px;
        border: 1px solid #e3e3e3;
        background-color: #028543;
        font-size: 16px;
        line-height: 58px;
        transition: .4s all;
        color: #fff;
        cursor: pointer; }
        .index6 .main form dl button:hover {
          background-color: transparent;
          color: #028543;
          border-radius: 5px;
          border-color: #028543; }
  .index6 .main div {
    width: 100%;
    margin-top: 58px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    justify-content: space-between; }
    .index6 .main div p {
      color: #6e6e6e;
      font-size: 16px;
      padding-left: 30px;
      position: relative; }
      .index6 .main div p:before {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%); }
      .index6 .main div p:nth-of-type(1):before {
        width: 18px;
        height: 22px;
        background: url("../images/address.png") no-repeat;
        background-size: contain; }
      .index6 .main div p:nth-of-type(2):before {
        width: 22px;
        height: 22px;
        background: url("../images/tel.png") no-repeat;
        background-size: contain; }
      .index6 .main div p:nth-of-type(3):before {
        width: 21px;
        height: 21px;
        background: url("../images/web.png") no-repeat;
        background-size: contain; }
      .index6 .main div p a {
        color: #6e6e6e;
        font-size: 16px;
        margin-right: 25px;
        transition: .4s all; }
        .index6 .main div p a:hover {
          color: #028543; }

.store {
  width: 100%; }
  .store .view {
    width: 1400px;
    margin: 0 auto;
    padding-top: 80px; }
    .store .view dl {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start; }
      .store .view dl dd {
        width: 32%;
        margin-right: 2%; }
        .store .view dl dd a {
          display: block;
          width: 100%; }
          .store .view dl dd a figure {
            width: 100%; }
            .store .view dl dd a figure img {
              width: 100%;
              height: 320px;
              object-fit: cover; }
          .store .view dl dd a div {
            width: 100%;
            background-color: #fff;
            padding: 30px; }
            .store .view dl dd a div h4 {
              font-size: 18px;
              color: #202020; }
            .store .view dl dd a div p {
              margin-top: 15px;
              color: #6a6a6a;
              font-size: 14px;
              min-height: 38px; }

.news {
  width: 100%; }
  .news .view {
    padding-top: 80px;
    width: 1400px;
    margin: 0 auto; }
    .news .view dl {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start; }
      .news .view dl dd {
        width: 32%;
        margin-right: 2%; }
        .news .view dl dd a {
          display: block;
          position: relative; }
          .news .view dl dd a:after {
            content: '';
            display: block;
            width: 100%;
            height: 4px;
            background-color: #028543;
            opacity: 0;
            transition: .4s all; }
          .news .view dl dd a:hover:after {
            opacity: 1; }
          .news .view dl dd a figure {
            width: 100%; }
            .news .view dl dd a figure img {
              width: 100%;
              height: 320px;
              object-fit: cover; }
          .news .view dl dd a .text {
            width: 100%;
            padding: 30px;
            background-color: #fff;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-start;
            flex-wrap: nowrap; }
            .news .view dl dd a .text time {
              font-size: 48px;
              color: #454545;
              text-align: center;
              padding-right: 20px;
              margin-right: 20px;
              border-right: 1px solid #cfcfcf; }
              .news .view dl dd a .text time span {
                display: block;
                text-align: center;
                font-size: 18px;
                color: #6a6a6a; }
            .news .view dl dd a .text div h5 {
              font-size: 16px;
              color: #202020;
              overflow: hidden;
              text-overflow: ellipsis;
              display: -webkit-box;
              -webkit-box-orient: vertical;
              -webkit-line-clamp: 1; }
            .news .view dl dd a .text div p {
              margin-top: 10px;
              line-height: 24px;
              font-size: 14px;
              color: #6a6a6a;
              overflow: hidden;
              text-overflow: ellipsis;
              display: -webkit-box;
              -webkit-box-orient: vertical;
              -webkit-line-clamp: 2; }

.newsview {
  width: 100%; }
  .newsview .view {
    padding-top: 80px;
    width: 1400px;
    margin: 0 auto; }

.product {
  width: 100%; }
  .product .view {
    padding-top: 80px;
    width: 1400px;
    margin: 0 auto; }
    .product .view dl {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start; }
      .product .view dl dd {
        width: 32%;
        margin-right: 2%; }
        .product .view dl dd:hover a figure img.default {
          opacity: 0; }
        .product .view dl dd:hover a figure img.trigger {
          opacity: 1; }
        .product .view dl dd a {
          display: block;
          width: 100%; }
          .product .view dl dd a figure {
            width: 100%;
            height: 350px;
            background-color: #fff;
            position: relative; }
            .product .view dl dd a figure img {
              width: 100%;
              height: 100%;
              transition: .8s all;
              position: absolute;
              top: 0;
              left: 0; }
              .product .view dl dd a figure img.default {
                object-fit: contain;
                opacity: 1; }
              .product .view dl dd a figure img.trigger {
                object-fit: cover;
                opacity: 0; }
          .product .view dl dd a .more {
            margin: 0 auto;
            background-color: #eee;
            color: #6c6c6c;
            transition: .4s all; }
            .product .view dl dd a .more:after {
              background: url("../icon/icon-prev_.png") no-repeat; }
            .product .view dl dd a .more:before {
              background: url("../icon/icon-prev_.png") no-repeat; }
            .product .view dl dd a .more:hover {
              background-color: #028543;
              color: #fff; }
              .product .view dl dd a .more:hover:after {
                background: url("../icon/icon-prev.png") no-repeat; }
              .product .view dl dd a .more:hover:before {
                background: url("../icon/icon-prev.png") no-repeat; }
          .product .view dl dd a div {
            width: 100%;
            padding: 28px 10px;
            background-color: #fff; }
            .product .view dl dd a div p {
              font-size: 16px;
              color: #6a6a6a;
              text-align: center;
              margin-bottom: 20px; }

.proView {
  width: 100%; }
  .proView .view {
    padding: 80px 0;
    width: 1400px;
    margin: 0 auto; }

.proView1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  align-items: unset; }
  .proView1 .big {
    width: 650px;
    height: 650px; }
    .proView1 .big a {
      display: block;
      background-color: #fff; }
      .proView1 .big a img {
        width: 100%;
        height: 100%;
        object-fit: contain; }
  .proView1 .small {
    width: 142px;
    height: 650px;
    padding: 55px 20px;
    padding-left: 14px;
    overflow: hidden;
    position: relative; }
    .proView1 .small .swiper-container {
      height: 530px;
      padding-left: 8px; }
    .proView1 .small a {
      display: block;
      width: 98px;
      height: 96px;
      border: 2px solid transparent;
      transition: .4s all;
      position: relative;
      background-color: #fff; }
      .proView1 .small a:before {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: -8px;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-right-color: #028543;
        border-left: 0;
        opacity: 0;
        transition: .4s all; }
      .proView1 .small a:hover {
        border-color: #028543; }
        .proView1 .small a:hover:before {
          opacity: 1; }
      .proView1 .small a.swiper-slide-active {
        border-color: #028543; }
        .proView1 .small a.swiper-slide-active:before {
          opacity: 1; }
      .proView1 .small a img {
        width: 100%;
        height: 100%;
        object-fit: contain; }
    .proView1 .small .swiper-button-prev {
      width: 24px;
      height: 20px;
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%) rotate(180deg);
      background: url("../icon/proBtn.png") no-repeat;
      background-size: contain;
      opacity: 1;
      margin: 0;
      transition: .4s all; }
      .proView1 .small .swiper-button-prev:hover {
        background: url("../icon/proBtn_.png") no-repeat;
        background-size: contain; }
      .proView1 .small .swiper-button-prev:after {
        display: none; }
    .proView1 .small .swiper-button-next {
      width: 24px;
      height: 20px;
      position: absolute;
      top: auto;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: url("../icon/proBtn.png") no-repeat;
      background-size: contain;
      opacity: 1;
      margin: 0;
      transition: .4s all; }
      .proView1 .small .swiper-button-next:hover {
        background: url("../icon/proBtn_.png") no-repeat;
        background-size: contain; }
      .proView1 .small .swiper-button-next:after {
        display: none; }
  .proView1 .introduce {
    width: 606px;
    padding: 30px 40px;
    background-color: #fff; }
    .proView1 .introduce h4 {
      font-size: 24px;
      color: #232323;
      line-height: 30px;
      font-weight: bold; }
    .proView1 .introduce p {
      margin-top: 20px;
      margin-bottom: 15px;
      color: #828282;
      font-size: 16px;
      line-height: 32px;
      white-space: pre-line;
      height: 345px;
      overflow-y: auto; }
      .proView1 .introduce p::-webkit-scrollbar {
        width: 5px;
        height: 5px; }
      .proView1 .introduce p::-webkit-scrollbar-thumb {
        background: #028543;
        border-radius: 6px; }
      .proView1 .introduce p::-webkit-scrollbar-corner {
        background: #028543; }
    .proView1 .introduce .share {
      padding-top: 10px;
      border-top: 1px solid #d9d9d9; }
    .proView1 .introduce figure img {
      width: 440px;
      height: 60px;
      object-fit: contain; }
    .proView1 .introduce dl {
      width: 100%;
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start; }
      .proView1 .introduce dl dd {
        width: 130px;
        height: 40px; }
        .proView1 .introduce dl dd + dd {
          margin-left: 20px; }
        .proView1 .introduce dl dd a {
          display: block;
          width: 100%;
          height: 100%;
          text-align: center;
          color: #434144;
          font-size: 14px;
          line-height: 38px;
          border: 1px solid #d8d8d8;
          transition: .4s all; }
        .proView1 .introduce dl dd:hover a {
          border-color: transparent;
          color: #028543; }
    .proView1 .introduce #pro-share p {
      font-size: 12px; }
    .proView1 .introduce #pro-share h4 {
      font-size: 14px; }
    .proView1 .introduce ul {
      margin-top: 40px;
      padding-top: 30px;
      border-top: 1px solid #dfdfdf; }
      .proView1 .introduce ul li {
        font-size: 16px;
        color: #454545;
        width: 100%;
        position: relative;
        padding-left: 40px; }
        .proView1 .introduce ul li:before {
          content: '';
          display: block;
          position: absolute;
          top: 50%;
          left: 0;
          transform: translateY(-50%);
          width: 23px;
          height: 22px;
          background: url("../images/proview_b.png") no-repeat;
          background-size: contain; }
        .proView1 .introduce ul li:nth-of-type(2):before {
          width: 23px;
          height: 18px;
          background: url("../images/proview_c.png") no-repeat;
          background-size: contain; }
        .proView1 .introduce ul li + li {
          margin-top: 15px; }

.proView2 {
  width: 100%;
  margin-top: 60px; }
  .proView2 ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    background-color: #000; }
    .proView2 ul li a {
      padding: 15px 25px;
      display: block;
      color: #fff;
      font-size: 14px;
      transition: .4s all; }
    .proView2 ul li:hover a {
      background-color: #028543; }
    .proView2 ul li.active a {
      background-color: #028543; }
  .proView2 .bottom {
    background-color: #fff;
    padding: 40px 60px; }
  .proView2 dl {
    width: 100%; }
    .proView2 dl dd {
      width: 100%;
      display: none; }
      .proView2 dl dd img {
        max-width: 100%;
        object-fit: contain; }
        .proView2 dl dd p,span,h1,h2,h3,h4,h5,h6,strong {
          max-width: 100%;
        }
  .proView2 .btn {
    width: 100%;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #d6d6d6;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    justify-content: space-between; }
    .proView2 .btn p {
      display: inline-block;
      font-size: 16px;
      color: #434144; }
    .proView2 .btn a {
      font-size: 16px;
      color: #434144;
      transition: .4s all; }
      .proView2 .btn a:hover {
        color: #028543; }

.searchInfo {
  width: 1400px;
  padding-top:50px;
  margin: 0 auto; }

.searchInfo a {
  width: 120px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  display: block;
  border: 2px solid #434144;
  transition: .4s all;
  color: #434144;
  font-size: 14px;
  font-weight: bold; }

.searchInfo h1 {
  color: #434144;
  font-size: 20px;
  font-weight: bold;
  margin-top: 3%;
  text-transform: uppercase; }

@media screen and (max-width: 1400px) {
  .searchInfo {
    width: 100%;
    padding:0 20px;
    padding-top:20px;
    margin: 0 auto; } }
@media screen and (max-width: 520px) {
  .searchInfo a {
    font-size: 12px;
    width: 80px;
    height: 30px;
    border: 1px solid #434144;
    line-height: 28px; }

  .searchInfo h1 {
    font-size: 16px; } }
@media screen and (max-width: 1600px) {
  header .pc ul li > a {
    width: 95px;
    font-size: 14px; }

  header .pc ul dl {
    top: 79px; }

  .ibanner {
    margin-top: 79px; }

  .jiameng .view {
    width: 100%;
    padding: 80px 40px; }

  .menchuang .view {
    width: 100%;
    padding: 0 40px; }

  .menchuang .view figure {
    right: 40px;
    width: 40%;
    height: auto; }

  .menchuang {
    padding: 80px 0; }

  .xinwen .swiper {
    width: 100%;
    padding: 0 40px; }

  .xinwen .swiper .swiper-container {
    width: 90%; } }
@media screen and (max-width: 1500px) {
  .jiameng .view ul li a div h4 {
    font-size: 18px; }

  .jiameng .view ul li a div h4 p {
    font-size: 14px; }

  .jiameng .view ul li a div span {
    font-size: 12px; }

  .tongji .view {
    width: 100%;
    padding: 0 40px; } }
@media screen and (max-width: 1400px) {
  .proView .view {
    width: 100%;
    padding: 40px 20px; }

  .proView2 {
    margin-top: 40px; }

  .proView .main .proView1 .small {
    border-right: none; }

  .proView .main .proView1 .small a {
    width: 100%; }

  .proView .main .proView1 .big {
    width: 80%; }

  .proView .main .proView1 .small {
    width: 20%; }

  .proView .main .proView1 .introduce {
    width: 100%;
    margin-top: 40px; }

  .proView1 .introduce p {
    overflow-y: unset;
    height: auto; }

  .m-pages {
    padding: 60px 0; }

  .product .view {
    width: 100%;
    padding: 0 20px;
    padding-top: 60px; }

  .store .view {
    width: 100%;
    padding: 0 20px;
    padding-top: 60px; }

  .news .view {
    width: 100%;
    padding: 0 20px;
    padding-top: 60px; }

  .contact-main .main .contact .index6 .main {
    padding: 20px; }

  .index6 .main form dl dd:first-child {
    height: 268px; }

  .index6 .main form ul li + li {
    margin-top: 12px; }

  .index6 .main form dl button {
    margin-top: 12px; }

  .contact-main .main .contact .index6 .main form {
    padding: 12px; }

  .contact-main .main .contact .index6 .main {
    padding: 20px; }

  .contact-main .main .contact .index6 .main form {
    padding: 12px; }

  .contact-main .main {
    width: 100%;
    border: none;
    padding: 40px 20px; }

  .contact-main .main .contact > dl dd:last-child {
    border-top: 12px solid #fff; }

  .contact-main .main .contact > dl dd:nth-of-type(1) {
    border-right: 6px solid #fff;
    border-bottom: 6px solid #fff; }
  .contact-main .main .contact > dl dd:nth-of-type(2) {
    border-left: 6px solid #fff;
    border-bottom: 6px solid #fff; }
  .contact-main .main .contact > dl dd:nth-of-type(3) {
    border-right: 6px solid #fff;
    border-bottom: 6px solid #fff; }
  .contact-main .main .contact > dl dd:nth-of-type(4) {
    border-left: 6px solid #fff;
    border-bottom: 6px solid #fff; }
  .contact-main .main .contact > dl dd:nth-of-type(5) {
    border-right: 6px solid #fff;
    border-top: 6px solid #fff; }
  .contact-main .main .contact > dl dd:nth-of-type(6) {
    border-left: 6px solid #fff;
    border-top: 6px solid #fff; }

  .contact-main .main .contact > dl {
    width: 50%; }

  .contact-main .main .contact #map {
    width: 50%;
    height: 520px;
    border-left: 12px solid #fff; }

  .youxuan.pbanner.joinbanner.fjoinform .view {
    width: 100%;
    padding: 0 20px; }

  .youxuan.pbanner.joinbanner.fjoinform {
    padding: 80px 0; }

  .xingxiang .view {
    width: 100%;
    padding: 0 20px; }

  .toufang .view {
    width: 100%;
    padding: 0 20px; }

  .pinpai .view {
    width: 100%;
    padding: 0 20px; }

  .youshi {
    padding: 160px 0; }

  .youshi .view {
    width: 100%;
    padding: 0 20px; }

  .joinbanner .view {
    width: 100%;
    padding: 0 20px; }

  .history .padding {
    padding: 0;
    background-color: transparent; }

  .history .view {
    width: 100%;
    padding: 0 20px; }

  .about .menchuang .view {
    width: 100%; }

  .about .menchuang .view div {
    width: 100%; }

  .pc_search nav dl dd a:after {
    bottom: -16px; }

  .w-1400 {
    padding: 60px 20px;
    width: 100%; }

  .pc_search {
    padding: 15px 20px; }

  .navbar {
    width: 100%;
    padding: 60px 20px; }

  .navbar div {
    width: 100%; }

  .pc_search nav {
    width: 100%; }

  .navpro {
    width: 100%;
    padding: 0 20px; }

  .newsview .main {
    width: 100%; }

  .newsview .col-l {
    width: 100%; }

  .lrcolumn .main {
    width: 100%;
    padding: 40px 20px; }

  header .pc > a img {
    width: 180px; }

  header .pc div figure {
    padding-left: 38px; }

  header .pc div figure:after {
    width: 34px;
    height: 34px; }

  header .pc div figure p {
    font-size: 12px; }

  header .pc div figure h5 {
    font-size: 20px; }

  header .pc div form:hover {
    width: 190px; }

  header .pc div form:hover input {
    width: 130px; }

  header .pc div form {
    height: 36px; }
    header .pc div form input {
      line-height: 34px; }

  footer .view {
    width: 100%;
    padding: 40px 20px; }

  header .pc {
    padding: 0 20px; }

  footer .view .footer2 .left {
    width: 70%; }

  .chanpinzhongxin .view {
    padding: 0 20px; }

  .chanpinzhongxin .view ul li a figure img {
    height: 460px; }

  .chanpinzhongxin .view ul li a .text {
    padding: 0 20px;
    padding-bottom: 20px; }

  .chanpinzhongxin .view ul li a .text p {
    font-size: 22px; }

  .chanpinzhongxin .view ul li a .text h5 {
    font-size: 18px;
    padding-bottom: 30px; }

  .jiameng .view ul li a div h4 p {
    font-size: 12px; }

  .jiameng .view ul li a {
    padding: 20px; }

  .jiameng .view {
    padding: 80px 20px; }

  .menchuang .view {
    padding: 0 20px; }

  .menchuang .view figure {
    display: none; }

  .menchuang .view div {
    width: 100%; }

  .tongji .view {
    padding: 0 20px; }

  .tongji {
    padding: 80px 0; }

  .tongji .view a p span {
    font-size: 48px; }

  .xinwen .swiper {
    padding: 0 20px; }

  .honor .view {
    width: 100%;
    padding: 0 20px; }

  .honor .view .swiper-slide a figure {
    padding: 20px; }

  .pinpai {
    padding: 80px 0; }

  .pinpai .view > p {
    margin: 40px 0; }

  .pinpai.fuzhi .view > p {
    font-size: 18px;
    line-height: 28px; }

  .joinTongji.tongji {
    padding: 80px 0; } }
@media screen and (max-width: 1300px) {
  header .pc div figure {
    display: none; }

  header .pc div form {
    margin-right: 0; } }
@media screen and (max-width: 1200px) {
  .about5_bg {
    margin-top: 3%; }

  .about5_bd .swiper-slide {
    display: block; }

  .about5_bd .swiper-slide .about5_bd_words {
    width: 100%;
    padding: 0;
    margin-top: 30px; }

  .about5_bd .swiper-slide .about5_bd_words .pub_tit {
    align-items: center; }

  .about5_bd .swiper-slide .about5_bd_pic {
    width: 100%; }

  .about5_bd {
    background-color: #f1f1f1; }

  .col-r {
    display: none; }

  .lrcolumn .main .right {
    display: none; }

  .lrcolumn .main .left {
    width: 100%; }

  header .pc {
    padding: 0 20px; }

  header .pc div {
    display: none; }

  .chanpinzhongxin {
    padding: 40px 0; }

  .indexTitle {
    font-size: 26px;
    line-height: 36px;
    padding-bottom: 15px;
    margin-bottom: 30px; }

  .indexTitle p {
    font-size: 22px; }

  .chanpinzhongxin .view ul li {
    width: 49%; }

  .chanpinzhongxin .view ul li:nth-of-type(n+3) {
    margin-top: 20px; }

  .chanpinzhongxin .view ul li a .text {
    padding: 0 30px;
    padding-bottom: 30px; }

  .jiameng .view ul li {
    width: 32%; }

  .jiameng .view ul li:nth-of-type(n+4) {
    margin-top: 30px; }

  .jiameng .view ul li:nth-of-type(7) {
    width: 49%; }

  .jiameng .view ul li:nth-of-type(8) {
    width: 49%; }

  .jiameng .view {
    padding: 40px 20px; }

  .menchuang {
    padding-top: 80px;
    padding-bottom: 140px; }

  .tongji .view a p span {
    font-size: 34px; }

  .tongji .view a p {
    font-size: 12px; }

  .xinwen {
    padding: 40px 0; }

  .xinwen ul {
    display: none; }

  .xinwen .swiper .swiper-container {
    width: 100%; }

  .xinwen .swiper .swiper-button-prev {
    display: none; }

  .xinwen .swiper .swiper-button-next {
    display: none; }

  .xinwen .swiper .swiper-pagination {
    display: block; }

  .store .view dl dd a div {
    padding: 15px; } }
@media screen and (max-width: 1024px) {
  .honor .view .btn .swiper-button-prev{display:none;}
  .honor .view .btn .swiper-button-next{display:none;}
  #pagejoinbanner{display:block;margin-top:0;}
  .product .view {
    padding-top: 40px; }

  .store .view {
    padding-top: 40px; }

  .news .view {
    padding-top: 40px; }

  .contact-main .main .contact {
    padding: 20px; }

  .contact-main .main .contact .index6 .main form {
    padding: 0; }

  .contact-main .main .contact .index6 .main form {
    background-color: #fff; }

  .contact-main .main .contact .index6 .main {
    padding: 0; }

  .contact-main {
    padding-bottom: 0; }

  .contact-main .main .contact .index6 .main form {
    padding: 0; }

  .contact-main .main .contact .index6 .main form {
    background-color: #fff; }

  .contact-main .main .contact .index6 .main {
    padding: 0; }

  .contact-main .main {
    border: none;
    padding: 40px 20px;
    margin-top: 0; }

  .contact-main .main .contact > dl {
    width: 100%; }

  .contact-main .main .contact #map {
    width: 100%;
    height: 420px;
    margin-top: 15px;
    border: none; }

  .fjoinform.joinbanner {
    display: block; }

  .toufang .view ul li:nth-of-type(1) {
    width: 100%;
    border-bottom: 10px solid transparent; }

  .toufang .view ul li:nth-of-type(1) figure {
    border-right: none; }

  .toufang .view ul li:nth-of-type(2) {
    width: 100%; }

  .toufang {
    padding: 80px 0; }

  .pinpai .view > p {
    margin: 40px 0;
    font-size: 20px; }

  .pinpai {
    padding: 80px 0; }

  .youshi {
    padding: 80px 0; }

  .team .view {
    padding-bottom: 360px; }

  header .pc {
    display: none; }

  header .m {
    display: block; }

  .ibanner {
    margin-top: 64.75px; }

  .slide-nav {
    display: none !important; }

  .Mnav {
    display: block !important; }

  .MgoTop {
    display: block !important; }

  .pc_search {
    display: none; }

  .page {
    margin-top: 64.75px; }

  .navbar {
    padding: 0; }

  .navbar div h5 {
    display: block; }

  .navbar div p {
    display: none; }

  .navbar div ul {
    display: none;
    width: 100%;
    padding: 20px;
    padding-top: 0px; }

  .navbar div ul li + li {
    margin-left: 0; }

  .navbar div {
    border: none;
    padding: 0;
    border-bottom: 1px solid #dfdfdf; }

  .navbar div ul li {
    width: 100%;
    border-bottom: 1px solid #dfdfdf;
    border-radius: 0; }

  .navbar div ul li a {
    text-align: center;
    color: #434144;
    font-size: 16px;
    padding: 10px 0; }

  .navbar div ul li.active {
    background-color: transparent; }
    .navbar div ul li.active a {
      color: #028543; }
      .menchuang .m{display:block;}
  .navbar div ul li:hover {
    background-color: transparent; }
    .navbar div ul li:hover a {
      color: #028543; }

  .pbanner {
    display: none; }

  .navbar div ul li a {
    height: auto;
    line-height: 30px; }

  .m-pages {
    padding: 40px 0; }

  .about5 {
    margin-top: 8%; }

  .about5_bd .swiper-slide .about5_bd_words h3 {
    font-size: 22px; }

  .about5_bd .swiper-slide .about5_bd_words p {
    margin-top: 3%;
    font-size: 18px;
    line-height: 2em; }

  .about5_hd {
    padding: 0 40px; }

  .about5_hd .swiper-slide {
    font-size: 22px; }

  .about5_hd .swiper-container:after {
    bottom: 45px; }

  .about5_hd .swiper-slide:after {
    bottom: 42px; }

  .about5_bg {
    padding: 0; }

  .inner-tab dl {
    border: 1px solid #e2e2e2; }

  .inner-tab dl + dl {
    border-top: none; }

  .inner-tab .tit {
    padding: 0 15px;
    line-height: 45px;
    font-size: 14px; }

  .inner-tab dl {
    line-height: 45px; }

  .inner-tab dd h4 {
    font-size: 14px;
    margin-right: 30px; }

  .inner-tab dd a {
    font-size: 14px;
    margin-right: 20px; }

  .inner-tab dd a:after {
    bottom: 10px;
    height: 1px; }

  .inner-tab {
    border: none; }

  .inner-tab .tit {
    padding: 0 10px;
    line-height: 35px; }

  .inner-tab dl {
    line-height: 35px;
    padding: 0; }

  .inner-tab dd h4 {
    margin-right: 20px; }

  .inner-tab dd a {
    margin-right: 10px; }

  .inner-tab dd a:after {
    bottom: 5px; }

  .inner-tab .tit span {
    padding-left: 20px; }

  .inner-tab .pc-nav dd h4 {
    display: none; }

  .inner-tab .pc-nav dd {
    display: none;
    width: 100%; }

  .inner-tab .pc-nav dt {
    position: relative;
    font-size: 14px;
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
    transition: .4s all;
    padding: 5px 0; }

  .inner-tab dd a {
    margin-right: 0;
    text-align: center;
    display: block;
    width: 100%; }

  .inner-tab .pc-nav.active dt {
    background-color: #028543;
    color: #fff; }

  .inner-tab .pc-nav.active dt h4 i {
    transform: translateY(-50%) rotate(180deg);
    background: url(../icon/down_jt.png) no-repeat;
    background-size: 100% 100%; }

  .inner-tab .pc-nav {
    overflow: hidden; }

  .inner-tab .tit {
    display: none; }

  .inner-tab dd a:after {
    display: none; }

  .navpro {
    padding: 30px 20px; }

  .navpro .inner-tab .pc-nav {
    background-color: #fff; }

  .inner-tab .pc-nav.active dt h4 {
    color: #fff; }

  .box-blank .con {
    margin-top: 27px; }

  .box-blank div a + a {
    margin-top: 5px; }

  .box-blank div {
    width: 100%; }

  .box-blank div:nth-of-type(2) {
    position: relative;
    order: -1; }

  .m-contxt1 .box-blank .con {
    margin-top: 0; }

  .img-txt .img {
    width: 100%; }

  .img-txt .txt {
    width: 100%;
    padding: 20px; }

  .img-txt .btn {
    display: none; }

  .img-txt .txt .tel {
    margin-right: 0; }

  footer {
    padding-bottom: 70px; }

  footer .view .footer1 > div {
    display: none; }

  footer .view .footer1 > h3 {
    display: none; }

  footer .view .footer2 .left {
    width: 100%; }

  footer .view .footer2 .right {
    display: none; }

  .chanpinzhongxin .view ul li a figure img {
    height: 360px; }

  .menchuang .view div .indexTitle {
    margin-bottom: 20px; }

  .menchuang .view div h5 {
    margin-top: 25px; }

  .menchuang .view div > p {
    margin-top: 25px; }

  .menchuang .view div .more {
    margin-top: 30px; }

  .tongji .view a {
    width: 19%; }

  .navbar {
    display: block; }

  .about .menchuang {
    padding: 40px 0;
    z-index: 2; }

  .about .menchuang .view {
    z-index: 2; }

  .about .menchuang:after {
    display: none; } }
@media screen and (max-width: 850px) {
  .m-contxt1 .tit {
    font-size: 22px; }

  .m-contxt1 .box-info {
    padding-bottom: 15px;
    margin-bottom: 15px; }

  .m-contxt1 .txt-con {
    padding-bottom: 15px;
    margin-bottom: 15px; }

  .box-blank {
    padding-top: 15px;
    margin-top: 15px; }

  footer .view .footer2 {
    display: none; }

  footer .view .footer3 {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #a9aaa9; }

  footer .view .footer3 ul {
    width: 100%; }

  footer .view .footer3 p {
    width: 100%;
    margin-top: 10px; }

  footer .view .footer3 .txt {
    line-height: 24px; }

  .jiameng .view ul li {
    width: 49%; }

  .jiameng .view ul li:nth-of-type(n+3) {
    margin-top: 20px; }

  .proView .main .proView1 .introduce ul li {
    font-size: 14px; }

  .proView .main .proView1 .introduce ul {
    margin-top: 20px;
    padding-top: 20px; }

  .proView .main .proView1 .introduce p {
    line-height: 32px;
    font-size: 14px; }

  .proView .main .proView1 .introduce h4 {
    font-size: 20px;
    line-height: 28px; } }
@media screen and (max-width: 768px) {
  .honor .view .btn {
    width:100%; }
  .joinbanner figure img{height:580px;}
  .joinbanner .indexTitle{font-size:30px;line-height:30px;}
  .pbanner div p{font-size:22px;}
  .proView2 .btn {
    margin-top: 20px;
    padding-top: 20px; }

  .proView2 .bottom {
    padding: 20px; }

  .proView .main .proView1 .introduce {
    padding: 20px 15px; }

  .proView .main .proView1 .big {
    width: 70%; }

  .proView .main .proView1 .small {
    width: 30%; }

  .index6 .main form ul {
    width: 100%; }

  .index6 .main form dl {
    width: 100%;
    margin-top: 20px; }

  .youxuan.pbanner.joinbanner .indexTitle {
    font-size: 22px; }

  .youxuan.pbanner.joinbanner .indexTitle p {
    font-size: 22px;
    line-height: 20px; }

  .toufang .view ul li {
    height: auto; }

  .toufang .view ul li:nth-of-type(2) > figure {
    height: auto; }

  .toufang .view ul li:nth-of-type(2) div figure {
    height: 160px; }

  .toufang .view dl {
    width: 80%;
    margin: 30px auto; }

  .pinpai .view ul li img {
    height: 200px; }

  .youshi .view p {
    width: 100%; }

  .youshi .view ul {
    width: 100%; }

  header .m {
    padding: 10px 20px; }

  .ibanner .btn {
    display: none; }

  .ibanner a .pc {
    display: none; }

  .ibanner a .m {
    display: block; }

  .ibanner .swiper-pagination {
    display: block; }

  .about5_bd .swiper-slide .about5_bd_words h3 {
    font-size: 18px; }

  .about5_bd .swiper-slide .about5_bd_words p {
    font-size: 16px; }

  .about5_hd .swiper-slide {
    font-size: 18px; }

  .about5_hd .swiper-container:after {
    bottom: 40px; }

  .about5_hd .swiper-slide:after {
    bottom: 37px; }

  .about5_bg {
    margin-top: 30px; }

  .box-blank .box1 {
    width: 40px; }

  .box-blank .blank {
    font-size: 14px; }

  .box-blank .blank {
    font-size: 14px; }

  .box-blank .blank {
    font-size: 14px; }

  .box-blank .con {
    width: 160px; }

  .box-blank .box1 {
    width: 40px; }

  .newsview .box-blank {
    margin-top: 10px;
    padding-top: 10px; }

  .m-contxt1 {
    padding: 15px; }

  .txt1 {
    margin: 10px 0;
    font-size: 18px; }

  .chanpinzhongxin .view ul li {
    width: 100%; }

  .chanpinzhongxin .view ul li + li {
    margin-top: 20px; }

  .chanpinzhongxin .view ul li a figure img {
    height: auto; object-fit: contain;}

  .tongji .view a {
    width: 50%; }

  .tongji .view a:nth-of-type(n+3) {
    margin-top: 40px; }

  /* .tongji .view a:last-of-type {
    width: 100%; } */

  .tongji .view a i {
    margin-bottom: 20px; }

  .toufang .view dl dd {
    font-size: 12px; }

  .xingxiang dl dd {
    font-size: 14px; }

  .xingxiang dl dd:after {
    width: 18px;
    height: 18px; }

  .xingxiang dl dd {
    padding-left: 25px; }

  .store .view dl dd {
    width: 100%;
    margin-right: 0; }

  .store .view dl dd + dd {
    margin-top: 20px; }

  .store .view dl dd a div h4 {
    font-size: 16px; }

  .store .view dl dd a div p {
    margin-top: 10px;
    min-height: auto; }

  .store .view dl dd a figure img {
    height: 260px; }

  .news .view dl dd {
    width: 100%;
    margin-right: 0; }

  .news .view dl dd + dd {
    margin-top: 20px; }

  .news .view dl dd a figure img {
    height: 260px; }

  .news .view dl dd a .text {
    padding: 15px; }

  .news .view dl dd a .text time {
    font-size: 32px;
    padding-right: 10px;
    margin-right: 10px; }

  .news .view dl dd a .text div h5 {
    font-size: 16px; }

  .news .view dl dd a .text div p {
    line-height: 20px;
    margin-top: 5px; }

  .product .view dl dd {
    width: 100%;
    margin-right: 0; }

  .product .view dl dd + dd {
    margin-top: 20px; } }
@media screen and (max-width: 650px) {
  .contact-main .main .contact > dl dd:hover figure img {
    margin-top: -8px; }

  .contact-main .main .contact > dl dd {
    padding: 4% 0; }

  .contact-main .main .contact > dl dd figure {
    width: 40px;
    height: 40px; }

  .contact-main .main .contact > dl dd p {
    margin-top: 10px;
    font-size: 14px; }
    .contact-main .main .contact > dl dd p + p {
      margin-top: 10px; }

  .toufang .view dl {
    width: 90%; }

  .pinpai .view ul li img {
    height: 300px; }

  .pinpai .view ul li {
    width: 100%; }

  .pinpai .view ul li + li {
    margin-top: 20px; }

  .img-txt .img img {
    height: 280px; }

  .img-txt .txt {
    padding: 10px;
    padding-bottom: 16px; }

  .img-txt .txt h1 {
    font-size: 20px;
    margin-bottom: 0; }

  .img-txt .txt p {
    font-size: 14px; }

  .img-txt .txt .tel {
    font-size: 18px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    margin-top: 8px;
    padding-left: 25px; }

  .img-txt {
    margin-bottom: 30px; }

  .parameter .desc {
    padding-bottom: 20px;
    margin-bottom: 20px; }

  .parameter .g-tit-q1 p {
    font-size: 18px; }

  .parameter .g-tit-q1 span {
    font-size: 18px; }

  .parameter .g-tit-q1 {
    padding-bottom: 15px;
    margin-bottom: 15px; }

  .jiameng .view ul li a div span {
    display: none; }

  .jiameng .view ul li a div h4 {
    width: 100%;
    line-height: 24px;
    font-size: 16px; }

  .toufang .view dl dd:nth-of-type(1) {
    padding-left: 30px; }

  .toufang .view dl dd:nth-of-type(2) {
    padding-left: 33px; }

  .toufang .view dl dd:nth-of-type(3) {
    padding-left: 59px; }

  .toufang .view dl dd:nth-of-type(4) {
    padding-left: 32px; } }
@media screen and (max-width: 520px) {
  .joinbanner .indexTitle{font-size:26px;line-height:28px;}
  .pbanner div p{font-size:20px;}
  .proView2 ul li{width:33.3333%;}
  .proView2 ul li a{padding:10px 0;text-align:center;}
  .proView1 .small a:before{display:none;}
  .proView1 .introduce p {
    margin-top: 10px; }

  .proView1 .small .swiper-button-prev {
    display: none;
    left: 55%; }

  .proView1 .small .swiper-button-next {
    display: none;
    left: 55%; }

  .proView .main .proView1 .big {
    width: 100%; }

  .proView .main .proView1 .small {
    margin-top:20px;
    width: 100%;
    height: 100px;
    padding:0; }

  .proView .main .proView1 .introduce {
    margin-top: 20px; }

  .proView1 .introduce dl {
    margin-top: 15px; }

  .proView2 {
    margin-top: 20px; }


  .proView .main .proView1 .big {
    height: 320px; }

  .proView .main .proView1 .small .swiper-container {
    z-index: 0;
    height: auto; padding-left:0;}

  .proView .main .proView1 .introduce figure img {
    width: 100%; }

  .product .view dl dd a figure {
    height: 240px; }

  .product .view dl dd a div {
    padding: 15px; }

  .product .view dl dd a .more {
    width: 70%;
    height: 35px;
    line-height: 35px; }

  .index6 .main form ul li {
    height: 36px; }

  .index6 .main form ul li input {
    line-height: 36px;
    font-size: 14px; }

  .index6 .main form ul li select {
    font-size: 14px; }

  .contact-main .main .contact {
    padding: 15px; }

  .index6 .main form dl dd:first-child {
    height: 220px;
    padding: 5px 0; }

  .index6 .main form dl dd:first-child textarea {
    font-size: 14px; }
    .index6 .main form dl dd:first-child textarea::-webkit-input-placeholder {
      font-size: 14px; }

  .index6 .main form dl dd + dd {
    margin-top: 10px; }

  .index6 .main form dl {
    margin-top: 10px; }

  .index6 .main form dl button {
    margin-top: 0px;
    height: 45px;
    line-height: 45px;
    font-size: 14px; }

  .xingxiang figure.m {
    display: block; }

  .xingxiang figure.pc {
    display: none; }

  .youxuan.pbanner.joinbanner .indexTitle p {
    font-size: 18px; }

  .youxuan.pbanner.joinbanner.fjoinform {
    padding: 40px 0; }

  .joinbanner .view ul li input {
    width: 100%; }

  .joinbanner .view ul li input + input {
    margin-top: 15px; }

  .joinTongji.tongji {
    padding: 40px 0; }

  .xingxiang h5 {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 15px; }

  .xingxiang dl {
    width: 280px; }

  .xingxiang {
    padding: 40px 0; }

  .pinpai.fuzhi .indexTitle {
    font-size: 18px; }

  .pinpai.fuzhi .indexTitle p {
    font-size: 18px; }

  .pinpai.fuzhi .indexTitle {
    margin-bottom: 20px; }

  .pinpai.fuzhi .view > p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 20px; }

  .toufang .view dl {
    display: none; }

  .toufang .view .indexTitle span {
    font-size: 14px;
    font-weight: normal;
    line-height: 24px; }

  .toufang {
    padding: 40px 0; }

  .pinpai .indexTitle {
    font-size: 24px; }

  .pinpai .indexTitle p {
    font-size: 20px; }

  .pinpai .view > p {
    margin: 20px 0;
    font-size: 16px; }

  .pinpai {
    padding: 40px 0; }

  .pinpai .view ul li img {
    height: 200px; }

  .youshi .view > p {
    font-size: 14px; }

  .youshi .view ul li {
    width: 31%; }

  .youshi .view ul {
    margin-top: 15px; }

  .youshi .view ul li:nth-of-type(n+4) {
    margin-top: 10px; }

  .youshi .view .indexTitle {
    margin-bottom: 20px; }

  .youshi {
    padding: 40px 0; }

  .honor .view .btn {
    margin-top: 20px; }

  .honor .view .btn .swiper-button-prev {
    display: none; }

  .honor .view .btn .swiper-button-next {
    display: none; }

  .honor .view .btn .swiper-pagination {
    margin: 0 auto;
    width: 100%; }

  .honor {
    padding: 40px 0; }

  .history {
    padding: 40px 0; }

  .team .view {
    background-attachment: unset;
    padding-top:20px;padding-bottom: 240px; }

  header .m .Msearch {
    width: 22px;
    height: 22px; }

  header .m .menu label {
    max-width: 90px;
    max-height: 90px;
    left: -32px;
    top: -25px; }

  header .m > a {
    width: 140px; }

  header .m .menu {
    width: 25px; }

  .PopupColumn {
    top: 45.7px; }

  .ibanner {
    margin-top: 45.7px; }

  .PopupColumn form input {
    font-size: 14px; }
    .PopupColumn form input::-webkit-input-placeholder {
      font-size: 14px; }

  .PopupColumn form {
    height: 45px;
    line-height: 45px; }

  .PopupColumn form button {
    width: 25px;
    height: 25px; }

  .Mnav ul li a icon {
    width: 20px;
    height: 20px; }

  .Mnav ul li a span {
    font-size: 14px;
    margin-left: 10px; }

  .MgoTop {
    width: 40px;
    height: 40px; }

  .w-1400 {
    padding: 40px 20px; }

  .page {
    margin-top: 45.7px; }

  .navbar div h5 {
    padding: 10px 20px; }

  .navbar div ul li a {
    font-size: 14px; }

  .navbar div ul {
    padding-bottom: 10px; }

  .m-pages li {
    display: none; }

  .m-pages li.fengye {
    display: block; }

  .about5_bd .swiper-slide .about5_bd_words h3 {
    font-size: 16px; }

  .about5_bd .swiper-slide .about5_bd_words p {
    font-size: 14px; }

  .about5_hd .swiper-slide {
    font-size: 14px; }

  .about5_hd .swiper-container:after {
    bottom: 36px; }

  .about5_hd .swiper-slide:after {
    bottom: 33px; }

  .inner-tab .pc-nav dt {
    padding: 3px 0; }

  .inner-tab dt h4 {
    padding-right: 20px;
    font-size: 14px; }

  .inner-tab dt i {
    width: 12px;
    height: 12px; }

  footer {
    padding-bottom: 50px; }

  footer .view .footer1 figure {
    width: 170px;
    height: 34px; }

  footer .view {
    padding: 20px; }

  footer .view .footer3 .txt + .txt {
    margin-top: 6px; }

  .jiameng .view .indexTitle p {
    font-size: 20px; }

  .jiameng .view ul li:nth-of-type(n+3) {
    margin-top: 10px; }

  .more {
    margin-top: 30px;
    width: 100%; }

  .menchuang .view div h5 p {
    font-size: 16px; }

  .menchuang .view div h5 span {
    font-size: 15px; }

  .menchuang {
    padding-top: 40px;
    padding-bottom: 40px;
    background: url(../image/menchuang_bag.jpg) right no-repeat; }

  .tongji {
    padding: 40px 0; }

  .tongji .view a i {
    width: 70px;
    height: 70px;
    margin-bottom: 10px; }

  .tongji .view a h5 {
    font-size: 14px; }

  .xinwen .swiper a .text time {
    font-size: 32px;
    padding-right: 10px;
    margin-right: 10px; }

  .xinwen .swiper a .text {
    padding: 20px; }

  .xinwen .swiper a .text div p {
    line-height: 20px;
    margin-top: 5px; }

  .about .menchuang .view div > p {
    margin-top: 10px; }

  .about .menchuang .view div h5 {
    margin-top: 10px; }

  .about .menchuang .view div > p {
    font-size: 14px; }

  .about .menchuang .view div .indexTitle p {
    font-size: 20px;
    line-height: 30px; }

  .toufang .view dl dd {
    width: 50%; }

  .toufang .view dl dd:nth-of-type(n+3) {
    margin-top: 15px; }

  .contact-main .main {
    padding: 6% 15px; }

  .contact-main .main .contact > dl dd p {
    font-size: 12px; }

  .contact-main .main .contact > dl dd p + p {
    margin-top: 5px; }

  .contact-main .main .contact #map {
    border: 1px solid #dfdfdf;
    height: 320px; }

  .proView2 .btn p {
    font-size: 14px;
    width: 100%; }
    .proView2 .btn p a {
      font-size: 14px; }
    .proView2 .btn p + p {
      margin-top: 10px; } }
@media screen and (max-width: 420px) {
  .box-blank .con {
    width: 100%; }

  .m-contxt1 .box-blank .con {
    width: 100%; } }
@media screen and (min-width: 1024px) {
  .store .view dl dd:nth-of-type(3n) {
    margin-right: 0; }

  .store .view dl dd:nth-of-type(n+4) {
    margin-top: 40px; }

  .news .view dl dd:nth-of-type(3n) {
    margin-right: 0; }

  .news .view dl dd:nth-of-type(n+4) {
    margin-top: 40px; }

  .product .view dl dd:nth-of-type(3n) {
    margin-right: 0; }

  .product .view dl dd:nth-of-type(n+4) {
    margin-top: 40px; } }
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  /*大于1200小于1400*/ }
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  /*大于1024小于1200*/ }
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .store .view dl dd {
    width: 48%; }
  .store .view dl dd:nth-of-type(2n) {
    margin-right: 0; }

  .store .view dl dd:nth-of-type(n+3) {
    margin-top: 40px; }

  .news .view dl dd {
    width: 48%; }

  .news .view dl dd:nth-of-type(2n) {
    margin-right: 0; }

  .news .view dl dd:nth-of-type(n+3) {
    margin-top: 40px; }

  .product .view dl dd {
    width: 48%; }

  .product .view dl dd:nth-of-type(2n) {
    margin-right: 0; }

  .product .view dl dd:nth-of-type(n+3) {
    margin-top: 40px; } }
@media only screen and (min-width: 520px) and (max-width: 768px) {
  /*大于520小于768*/ }
@media only screen and (min-width: 420px) and (max-width: 520px) {
  /*大于420小于520*/ }



.merchants{
  text-align: center;
}
.merchants img{
  max-width: 100%;
}
.merchants img.m{
  display: none;
}


@media only screen and (min-width: 300px) and (max-width: 768px) {
  .merchants img.m{
    display: block;
    padding: 0 15px;
    background-color: #fcfbf6;
  }

  .merchants img.pc{
    display: none;
  }
  /*
  大于520小于768
  */ 
}

/*# sourceMappingURL= main.css.map */
