﻿@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu";
}
*:before,
*:after {
  vertical-align: middle;
  box-sizing: border-box;
}
html {
  margin: 0 auto;
}
ul,
li,
ol {
  list-style: none;
}
em {
  font-style: normal;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-backface-visibility: hidden;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: -webkit-focus-ring-color auto 0;
}
button,
input {
  border: 0;
  outline: none;
  background: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th,
td {
  vertical-align: middle;
}
i {
  font-style: inherit;
}
#map label {
  max-width: initial;
}
#map img {
  max-width: initial;
}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
  display: block;
  zoom: 1;
}
.clearfix:after {
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
  padding: 0;
  margin: 0;
}
/* 外层容器样式 */
section {
  overflow: hidden;
}
/* 通用正文样式 */
article {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  color: #333;
}
/* 图片统一动画 */
.mxw-image {
  overflow: hidden;
}
.mxw-image:hover img {
  transform: scale(1.1);
}
.mxw-image img {
  transition: all 0.4s;
  width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
#goto-top {
  position: fixed;
  z-index: 10;
  right: 0.3333rem;
  bottom: 10%;
  width: 0.6667rem;
  height: 0.6667rem;
  cursor: pointer;
  background: #01883d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #fff;
}
#goto-top.active {
  visibility: visible;
  opacity: 1;
}
#goto-top:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 6px;
}
@media screen and (max-width: 751px) {
  #goto-top {
    width: 30px;
    height: 30px;
    right: 10px;
  }
}
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.u-line-2 {
  -webkit-line-clamp: 2;
}
.u-line-3 {
  -webkit-line-clamp: 3;
}
.u-line-4 {
  -webkit-line-clamp: 4;
}
.u-line-5 {
  -webkit-line-clamp: 5;
}
.u-line-6 {
  -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.u-flex-wrap {
  flex-wrap: wrap;
}
.u-flex-nowrap {
  flex-wrap: nowrap;
}
.u-flex-col {
  flex-direction: column;
}
.u-grow-1 {
  flex-grow: 1;
}
.u-col-center {
  align-items: center;
}
.u-col-top {
  align-items: flex-start;
}
.u-col-bottom {
  align-items: flex-end;
}
.u-row-center {
  justify-content: center;
}
.u-row-left {
  justify-content: flex-start;
}
.u-row-right {
  justify-content: flex-end;
}
.u-row-between {
  justify-content: space-between;
}
.u-row-around {
  justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 > .u-col {
    width: 48%;
  }
  .u-row-2 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-2 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
  .u-row-3 > .u-col {
    width: 32%;
  }
  .u-row-3 > .u-col:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .u-row-3 > .u-col:nth-child(3) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-4 > .u-col {
    width: 23.5%;
    margin-right: 2%;
  }
  .u-row-4 > .u-col:nth-child(4n) {
    margin-right: 0%;
  }
  .u-row-4 > .u-col:nth-child(4) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-5 > .u-col {
    width: 18.4%;
    margin-right: 2%;
  }
  .u-row-5 > .u-col:nth-child(5n) {
    margin-right: 0%;
  }
  .u-row-5 > .u-col:nth-child(5) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-6 > .u-col {
    width: 15%;
    margin-right: 2%;
  }
  .u-row-6 > .u-col:nth-child(6n) {
    margin-right: 0%;
  }
  .u-row-6 > .u-col:nth-child(6) ~ .u-col {
    margin-top: 2%;
  }
}
@media screen and (max-width: 751px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 .u-col {
    width: 100%;
  }
  .u-row-2 .u-col:nth-child(1) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-3 > .u-col,
  .u-row-4 > .u-col,
  .u-row-5 > .u-col,
  .u-row-6 > .u-col {
    width: 48%;
  }
  .u-row-3 > .u-col:nth-child(2n),
  .u-row-4 > .u-col:nth-child(2n),
  .u-row-5 > .u-col:nth-child(2n),
  .u-row-6 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-3 > .u-col:nth-child(2) ~ .u-col,
  .u-row-4 > .u-col:nth-child(2) ~ .u-col,
  .u-row-5 > .u-col:nth-child(2) ~ .u-col,
  .u-row-6 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 通用标签页 start ==================== */
/* 标签页 */
.mxw-tabs {
  padding-left: 0;
  padding-right: 0;
}
.mxw-tabs .mxw-tabs-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.mxw-tabs .mxw-tabs-wrap {
  position: relative;
  display: flex;
  overflow-x: scroll;
  max-width: 100%;
  align-items: center;
  justify-content: flex-start;
}
.mxw-tabs .mxw-tabs-wrap::-webkit-scrollbar {
  display: none;
}
.mxw-tabs .mxw-tabs-item {
  flex-shrink: 0;
  text-align: center;
  cursor: pointer;
  font-size: 0.3rem;
  white-space: nowrap;
  background: #eaeaea;
  color: #333;
  padding: 0rem 0.5rem;
  margin-right: 0.9rem;
  line-height: 0.6667rem;
}
.mxw-tabs .mxw-tabs-item:last-child {
  margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
  background: #01883d;
  color: #fff;
}
@media screen and (max-width: 751px) {
  .mxw-tabs .mxw-tabs-header {
    margin-bottom: 20px;
  }
  .mxw-tabs .mxw-tabs-item {
    font-size: 14px;
    padding: 0 20px;
    margin-right: 10px;
  }
  .mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
  }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
  position: relative;
  z-index: 99;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e1e1e1;
}
.mxw-keywords .mxw-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.mxw-keywords .left {
  position: relative;
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.2;
  color: #666;
}
.mxw-keywords .left strong {
  vertical-align: inherit;
}
.mxw-keywords .left span {
  color: #01883d;
  vertical-align: inherit;
}
.mxw-keywords .left a:after {
  content: ",";
  padding-left: 5px;
  padding-right: 5px;
}
.mxw-keywords .left a:hover {
  color: #01883d;
}
.mxw-keywords .left a:last-child {
  padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
  display: none;
}
.mxw-keywords .right form {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  width: 300px;
  border-radius: 100px;
  overflow: hidden;
  padding: 2px;
  padding-left: 20px;
  border: 1px solid #e6e6e6;
}
.mxw-keywords .right input {
  font-size: 14px;
  color: #333;
  background-color: #fff;
}
.mxw-keywords .right input::-webkit-input-placeholder {
  /*Webkit browsers*/
  color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
  /*Mozilla Firefox 4 to 8*/
  color: #999;
}
.mxw-keywords .right input::moz-placeholder {
  /*Mozilla Firefox 19+*/
  color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
  /*Internet Explorer 10+*/
  color: #999;
}
.mxw-keywords .right button {
  border: 0;
  outline: none;
  border-left: 0;
  cursor: pointer;
  background: #01883d;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
}
.mxw-keywords .right button .text {
  font-size: 14px;
  padding-left: 5px;
}
/* ==================== 关键词 end ==================== */
/* ==================== 头部 start ==================== */
header {
  width: 100%;
  z-index: 99;
  transition: all 0.4s;
  position: relative;
}
header .welcome {
  border-bottom: 1px solid #ededed;
  height: 40px;
  line-height: 40px;
}
header .welcome .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  font-size: 14px;
}
header .welcome .other {
  font-size: 13px;
}
header .pc-nav > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .pc-nav .logo {
  width: 520px;
  flex-shrink: 0;
  margin-right: 40px;
}
header .pc-nav .right {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  padding-top: 7px;
}
header .pc-nav .tel {
  display: flex;
  align-items: center;
}
header .pc-nav .tel .desc {
  margin-right: 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.2;
}
header .pc-nav .tel .desc p {
  display: flex;
  align-items: center;
}
header .pc-nav .tel .desc img {
  width: 30px;
  margin-right: 10px;
}
header .pc-nav .tel .desc strong {
  font-size: 22px;
  background: linear-gradient(to right, #01883d, #2e338c);
  -webkit-background-clip: text;
  color: #01883d;
  color: transparent;
  vertical-align: middle;
  display: inline-block;
}
header .pc-nav .tel .search {
  width: 200px;
  border: 1px solid #d6d6d6;
  border-radius: 100px;
  padding: 2px;
  display: flex;
  align-items: stretch;
}
header .pc-nav .tel .search input {
  min-width: 0;
  flex-grow: 1;
  font-size: 14px;
  color: #333;
  line-height: 1.2;
  margin-left: 10px;
}
header .pc-nav .tel .search input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #b4b4b4;
}
header .pc-nav .tel .search input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #b4b4b4;
}
header .pc-nav .tel .search input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #b4b4b4;
}
header .pc-nav .tel .search input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #b4b4b4;
}
header .pc-nav .tel .search button {
  flex-shrink: 0;
  margin-left: 20px;
  display: block;
  cursor: pointer;
}
header .pc-nav .tel .search button img {
  width: 36px;
}
header .pc-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .pc-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  text-align: center;
  margin-right: 30px;
}
header .pc-menu > li:last-child {
  margin-right: 0;
}
header .pc-menu > li:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #01883d;
  position: absolute;
  bottom: 17px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s;
}
header .pc-menu > li.active:after,
header .pc-menu > li:hover:after {
  width: 100%;
}
header .pc-menu > li.active > a,
header .pc-menu > li:hover > a {
  color: #01883d !important;
}
header .pc-menu > li.active > ul,
header .pc-menu > li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
header .pc-menu > li ul {
  background-color: #fff;
  width: 3.3333rem;
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s, visibility 0s;
}
header .pc-menu > li ul:hover {
  opacity: 1;
  visibility: visible;
}
header .pc-menu > li ul li.active > ul,
header .pc-menu > li ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
header .pc-menu > li ul li a {
  position: relative;
}
header .pc-menu > li ul li a:after {
  content: "";
  display: block;
  width: 80%;
  height: 0.0167rem;
  background-color: #eee;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
header .pc-menu > li ul a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  font-size: 16px;
  color: #333;
  line-height: 1.2;
  padding: 16px;
}
header .pc-menu > li > a {
  font-size: 18px;
  color: #333;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  position: relative;
  padding: 26px 10px 40px;
  line-height: 1.2;
  width: 100%;
}
header .pc-menu > li > ul {
  border-top: 0.0167rem solid #ddd;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
header .pc-menu > li > ul > li > a.active,
header .pc-menu > li > ul > li > a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
header .pc-menu > li > ul > li > a.active:after,
header .pc-menu > li > ul > li > a:hover:after {
  display: none;
}
header .pc-menu > li > ul > li > a:last-child:after {
  display: none;
}
header .pc-menu > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 0.0167rem solid #ddd;
}
header .pc-menu > li > ul > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 0.0167rem solid #ddd;
}
@media screen and (max-width: 1680px) {
  header .mxw-box {
    max-width: 92%;
  }
  header .pc-nav .logo {
    margin-right: 20px;
    width: 380px;
  }
  header .pc-menu > li {
    margin-right: 20px;
  }
  header .pc-menu > li > a {
    padding: 20px 10px 30px;
    font-size: 18px;
  }
  header .pc-nav .tel .desc strong {
    font-size: 20px;
  }
}
@media screen and (max-width: 1420px) {
  header .pc-menu > li {
    margin-right: 0;
  }
  header .pc-menu > li > a {
    padding: 20px 10px;
    font-size: 15px;
  }
  header .pc-nav .tel .search button img {
    width: 30px;
  }
  header .pc-nav .tel .search input {
    font-size: 12px;
  }
  header .pc-nav .tel .desc img {
    width: 20px;
  }
}
/* ==================== 头部 end ==================== */
/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
  header {
    z-index: 99999;
  }
  .mxw-mob-nav .head {
    font-size: 0;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    max-width: 750px;
    width: 100%;
    transform: translateX(-50%);
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 99;
    background-color: #fff;
  }
  .mxw-mob-nav .logo {
    display: block;
    flex-shrink: 0;
  }
  .mxw-mob-nav .logo img {
    height: 56px;
  }
  .mxw-mob-nav .menu-btn {
    flex-shrink: 0;
    width: 26px;
    height: 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }
  .mxw-mob-nav .menu-btn i {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 100px;
    background-color: #333;
  }
  .mxw-mob-nav .menus-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 50%;
    max-width: 450px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transform: translateX(50%);
  }
  .mxw-mob-nav .menus-box.active {
    visibility: visible;
    opacity: 1;
  }
  .mxw-mob-nav .menus-box.active .menus {
    transform: translateX(0);
  }
  .mxw-mob-nav .menus {
    width: 60%;
    height: 100%;
    margin-right: 0;
    margin-left: auto;
    background: #fff;
    transform: translateX(100%);
    transition: all 0.5s;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
  }
  .mxw-mob-nav .menus > ul {
    width: 100%;
    overflow: auto;
  }
  .mxw-mob-nav .menus > ul > li.active > ul {
    display: block;
  }
  .mxw-mob-nav .menus > ul > li > a {
    display: block;
    width: 100%;
    padding: 15px 18px;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mxw-mob-nav .menus > ul > li > a.sub:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-top: 4px solid #555;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 0;
    margin-left: 10px;
  }
  .mxw-mob-nav .menus > ul > li > ul {
    display: none;
    padding: 0px 24px;
  }
  .mxw-mob-nav .menus > ul > li > ul > li > a {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 36px;
    height: 36px;
    border-bottom: 1px solid #f3f3f3;
  }
  .mxw-mob-nav .menus-head {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8F8F8;
    border-bottom: 0.6px solid #eee;
    font-size: 16.8px;
    font-weight: bold;
    line-height: 54px;
    height: 54px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .mxw-mob-nav .menus-head .text {
    color: #333;
    line-height: 1.2;
  }
  .mxw-mob-nav .menus-head .mxw-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none;
    position: relative;
    transform: rotate(45deg);
  }
  .mxw-mob-nav .menus-head .mxw-close:before,
  .mxw-mob-nav .menus-head .mxw-close:after {
    content: "";
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
  }
  .mxw-mob-nav .menus-head .mxw-close:before {
    width: 2px;
    height: 100%;
  }
  .mxw-mob-nav .menus-head .mxw-close:after {
    width: 100%;
    height: 2px;
  }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
  font-size: 0;
  position: relative;
}
.mxw-banner .swiper-slide {
  overflow: hidden;
}
.mxw-banner .swiper-slide img {
  width: 100%;
}
.mxw-banner .swiper-pagination {
  width: 100%;
  max-width: 1680px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 40px;
  right: 50%;
  transform: translateX(50%);
  left: auto;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
  width: 0.9rem;
  height: 3px;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  margin-left: 3px;
  margin-right: 3px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #01883d;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
  width: 50px;
  height: 90px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.33);
  background-image: none;
  outline: none;
  z-index: 99;
}
.mxw-banner .swiper-button-next {
  right: 40px;
}
.mxw-banner .swiper-button-prev {
  left: 40px;
}
.mxw-banner .banner-swiper {
  --swiper-navigation-color: #fff;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 24px;
  /* 设置按钮大小 */
}
.mxw-banner .banner-text {
  z-index: 8;
  width: 80%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  left: 50%;
  color: #fff;
  text-align: center;
}
.mxw-banner .banner-text .text1 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 30px;
}
.mxw-banner .banner-text .text2 {
  font-size: 16px;
  opacity: 0.67;
  margin-bottom: 50px;
}
.mxw-banner .banner-text .mxw-more {
  width: 190px;
  height: 45px;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  background-color: #01883d;
  line-height: 45px;
  display: block;
}
@media screen and (min-width: 1680px) {
  .banner-swiper {
    min-width: 1920px;
  }
}
@media screen and (max-width: 751px) {
  .mxw-banner .swiper-pagination {
    padding-right: 0px;
    bottom: 10px;
    max-width: 80%;
  }
  .mxw-banner .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    font-size: 14px;
    width: 8px;
    height: 8px;
  }
  .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-size: 18px;
  }
  .mxw-banner .swiper-button-next,
  .mxw-banner .swiper-button-prev {
    display: none;
  }
  .mxw-banner .banner-text {
    width: 90%;
  }
  .mxw-banner .banner-text .text1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .mxw-banner .banner-text .text2 {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .mxw-banner .banner-text .mxw-more {
    width: auto;
    height: auto;
    line-height: inherit;
    font-size: 12px;
    padding: 6px 20px;
  }
}
/* ==================== 轮播图 end ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
  margin-bottom: 1rem;
  overflow: hidden;
  color: #333;
  text-align: center;
}
.mxw-title .text1 {
  font-size: 0.6667rem;
  line-height: 1;
  margin-bottom: 0.3333rem;
  font-weight: bold;
}
.mxw-title .text1 strong {
  color: #01883d;
  margin-right: 0.1667rem;
}
.mxw-title .text2 {
  font-size: 0.25rem;
  color: #01883d;
}
@media screen and (max-width: 751px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .mxw-title .text2 {
    font-size: 12px;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 产品分类 start ==================== */
.mxw-product-cate {
  background-color: #01883d;
}
.mxw-product-cate .item {
  display: block;
}
.mxw-product-cate .image {
  width: 3rem;
  display: block;
  margin: 0 auto 0.3333rem;
  transition: transform 0.4s;
  position: relative;
  text-align: center;
}
.mxw-product-cate .image p{position: absolute; font-size: 30px; color: #fff; width: 60px; left: 50%; top: 50%; transform: translate(-50%,-38%);}
.mxw-product-cate .info {
  transition: transform 0.4s;
  text-align: center;
}
.mxw-product-cate .info .text1 {
  font-size: 0.3333rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.1667rem;
}
.mxw-product-cate .info .text2 {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.6;
}
@media screen and (min-width: 751px) {
  .mxw-product-cate .mxw-box {
    padding-top: 0.6667rem;
    padding-bottom: 0.6667rem;
  }
  .mxw-product-cate .item:hover .image,
  .mxw-product-cate .item:hover .info {
    transform: translateY(-20px);
  }
}
@media screen and (max-width: 751px) {
  .mxw-product-cate .image {
    width: 100px;
    margin-bottom: 10px;
  }
  .mxw-product-cate .info .text1 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .mxw-product-cate .info .text2 {
    font-size: 12px;
  }

  .mxw-product-cate{display: none;}



}
/* ==================== 产品分类 end ==================== */
/* ==================== 推荐产品 start ==================== */
.mxw-recommend .body {
  position: relative;
  padding: 0 1.3333rem;
}
.mxw-recommend .swiper-slide {
  display: block;
  overflow: hidden;
}
.mxw-recommend .swiper-slide:hover .title {
  color: #01883d;
}
.mxw-recommend .image {
  margin-bottom: 0.5rem;
  border: 1px solid #e8e8e8;
}
.mxw-recommend .title {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  text-align: center;
}
.mxw-recommend .mxw-prev,
.mxw-recommend .mxw-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8667rem;
  outline: none;
  cursor: pointer;
}
.mxw-recommend .mxw-prev {
  left: 0;
  transform: rotateY(-180deg);
}
.mxw-recommend .mxw-next {
  right: 0;
}
.mxw-recommend .mxw-more {
  width: 2.8333rem;
  height: 0.8333rem;
  line-height: 0.8333rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.6667rem;
  background-color: #01883d;
  color: #fff;
  font-size: 16px;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow 0.4s, width 0.4s;
}
.mxw-recommend .mxw-more:hover {
  color: #fff !important;
  box-shadow: 0 0 10px -2px #01883d;
  width: 3rem;
}
.mxw-recommend .mxw-more img {
  width: 0.5rem;
  margin-right: 0.1333rem;
  flex-shrink: 0;
}
@media screen and (min-width: 751px) {
  .mxw-recommend .mxw-box {
    padding-top: 0.8333rem;
    padding-bottom: 1.25rem;
  }
  .mxw-recommend .swiper-slide {
    max-width: 6.3333rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-recommend .body {
    padding: 0;
  }
  .mxw-recommend .swiper-slide {
    max-width: 60%;
    padding:2px;
  }
  .mxw-recommend .image {
    margin-bottom: 10px;
  }
  .mxw-recommend .title {
    font-size: 12px;
  }
  .mxw-recommend .mxw-more {
    width: 100%;
    font-size: 12px;
    height: auto;
    line-height: inherit;
    padding: 6px 10px;
    margin-top: 20px;
  }
}
/* ==================== 推荐产品 end ==================== */
/* ==================== 关于我们 start ==================== */
.mxw-about {
  position: relative;
  background-repeat:no-repeat;
  background-position: center;
  background-size: cover;
}
.mxw-about .mxw-box{position: relative;z-index:9;}
.mxw-about .mxw-title .text1 {
  margin-bottom: 0;
}
.mxw-about .mxw-title .text1:after {
  content: '';
  display: block;
  width: 1.1667rem;
  height: 0.05rem;
  background-color:#01883d;
  margin: 0.5rem auto 0.4167rem;
}
.gsjj{padding-left: 5%;}
.mxw-about .mxw-title .text2 {
}
.mxw-about .body {
}
.mxw-about .info {
  padding: 0;
}
.mxw-about .info .title {
  font-size: 0.5rem;
  font-weight: bold;
}
.mxw-about .info .title:after {
  content: "";
  display: block;
  width: 1.2333rem;
  height: 0.0667rem;
  background-color: #01883d;
  margin: 0.5833rem 0;
}
.mxw-about .info .desc {
  font-size: 0.2667rem;
  text-align: justify;
  line-height: 2;
}
.mxw-about .info .mxw-more {
  margin-top: 0.3333rem;
  width: 2.5667rem;
  height: 0.8333rem;
  line-height: 0.8333rem;
  background-color: #01883d;
  color: #fff;
  border-radius: 1.6667rem;
  font-size: 0.2667rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mxw-about .info .mxw-more::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 0.1rem solid transparent;
  border-bottom: 0.1rem solid transparent;
  border-left: 0.1333rem solid #fff;
  margin-right: 0.3333rem;
}
.mxw-about .itembox {
  flex-wrap: wrap;
  display: flex;
  align-items: stretch;
}
.mxw-about .item {
  width: 33.333%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 0;
}
.mxw-about .item:nth-child(3) ~ .item {
  border-bottom: 0;
}
.mxw-about .item .num {
  font-size: 0.8667rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.3333rem;
}
.mxw-about .item .desc {
  font-size: 0.2667rem;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (min-width: 751px) {
  .mxw-about {
    background-attachment: fixed;
  }
  .mxw-about .mxw-box {
    padding-top:60px;
    padding-bottom:60px;
  }
  .mxw-about .mxw-title .text1 {
    font-size: 0.8167rem;
  }
  .mxw-about .mxw-title .text2 {
    font-size: 0.3rem;
  }
  .mxw-about .body {
    display: flex;
    align-items: stretch;
  }
  .mxw-about .info,
  .mxw-about .itembox {
    width: 50%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-about{background-image:none!important;}
  .mxw-about:after{display: none;}
  .mxw-about .mxw-title .text1,
  .mxw-about .info .title,
  .mxw-about .item,
  .mxw-about .info .desc{color:#333;}
  .mxw-about .item .desc,
  .mxw-about .mxw-title .text2{color:rgba(0,0,0,0.6);}
  .mxw-about .mxw-title .text1:after {
    width: 40px;
    height: 2px;
    margin-top: 15px;
    margin-bottom: 10px;
    background-color:#01883d;
  }
  .mxw-about .info {
    padding: 20px 0;
  }
  .mxw-about .info .title {
    font-size: 20px;
  }
  .mxw-about .info .title:after {
    margin: 15px 0;
    height: 2px;
    width: 40px;
  }
  .mxw-about .info .desc {
    font-size: 13px;
  }
  .mxw-about .info .mxw-more {
    width: 100%;
    font-size: 12px;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
  }
  .mxw-about .item {
    width: 50%;
    padding: 15px 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
  .mxw-about .item:nth-child(2) ~ .item {
    border-top: 0!important;
  }
  .mxw-about .item:nth-child(2n) {
    border-left: 0!important;
  }
  .mxw-about .item .num {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .mxw-about .item .desc {
    font-size: 12px;
  }
  .mxw-about .body{
    background:none;
  }
}
/* ==================== 关于我们 end ==================== */
/* ==================== 优势1 start ==================== */
.mxw-advantage1 .mxw-video {
  background-size: cover;
  position: relative;
  cursor: pointer;
}
.mxw-advantage1 .mxw-video p{height: 100%;}
.mxw-advantage1 .mxw-video video{object-fit: cover;display: block;width:100%;height: 100%;}
/* .mxw-advantage1 .mxw-video:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/4431c07bee4a10d0422e289bfeb9ac7e51f7d63a.png) no-repeat center center;
  background-size: 1.3333rem 1.3333rem;
} */
.mxw-advantage1 .info {
  background: url(../img/667c0d985f050b0f8a70d30b482d3223535a15b8.jpg) no-repeat center;
  background-size: cover;
}
.mxw-advantage1 .info .text1 {
  font-weight: bold;
  margin-bottom: 0.3333rem;
  font-size: 0.8333rem;
  color: #333;
  line-height: 1;
}
.mxw-advantage1 .info .text1 strong {
  color: #01883d;
}
.mxw-advantage1 .info .text2 {
  font-size: 0.25rem;
  line-height: 1.2;
  color: #01883d;
  margin-bottom: 0.5rem;
}
.mxw-advantage1 .info .text3 {
  font-size: 0.4167rem;
  color: #01883d;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 1rem;
}
.mxw-advantage1 .info .advantage-swiper {
  margin-top: 1rem;
}
.mxw-advantage1 .info .mxw-more {
  margin-top: 1.1667rem;
  width: 3.6667rem;
  height: 0.8333rem;
  line-height: 0.8333rem;
  background-color: #01883d;
  color: #fff;
  border-radius: 1.6667rem;
  font-size: 0.2667rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s;
}
.mxw-advantage1 .info .mxw-more:hover {
  transform: translateX(20px);
}
.mxw-advantage1 .info .mxw-more::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 0.1rem solid transparent;
  border-bottom: 0.1rem solid transparent;
  border-left: 0.1333rem solid #fff;
  margin-right: 0.3333rem;
}
@media screen and (min-width: 751px) {
  .mxw-advantage1 {
    display: flex;
    align-items: stretch;
  }
  .mxw-advantage1 .mxw-video,
  .mxw-advantage1 .info {
    width: 50%;
  }
  .mxw-advantage1 .info {
    padding: 1.3333rem 3.3333rem 1.3333rem 1.6667rem;
  }
  .mxw-advantage1 .swiper-slide {
    width: 5.1667rem;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-advantage1 .info {
    padding: 1.1667rem;
    padding-right: 1.6667rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-advantage1 .swiper-slide {
    width: 50%;
  }
  .mxw-advantage1 .mxw-video:after {
    background-size: 40px 40px;
  }
  .mxw-advantage1 .info {
    padding: 30px 20px;
    text-align: center;
  }
  .mxw-advantage1 .info .text1 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .mxw-advantage1 .info .text2 {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .mxw-advantage1 .info .text3 {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .mxw-advantage1 .info .mxw-more {
    width: 100%;
    font-size: 12px;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
    margin-top: 20px;
  }
}
/* ==================== 优势1 end ==================== */
/* ==================== 优势2 start ==================== */
.mxw-advantage2 .mxw-title .text3 {
  font-size: 0.4167rem;
  color: #01883d;
  line-height: 1.2;
  margin-top: 0.3333rem;
  font-weight: bold;
}
.mxw-advantage2 .body {
  position: relative;
}
.mxw-advantage2 .swiper-slide {
  position: relative;
  display:block;
}
.mxw-advantage2 .swiper-slide:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/a931f9e9ca7cea1d00d42618ea609154ad78cf71.png) no-repeat right center;
  z-index: 3;
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.mxw-advantage2 .swiper-slide .info {
  padding-bottom: 1.1667rem;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.mxw-advantage2 .swiper-slide .info .mxw-box {
  text-align: right;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  color: #fff;
}
.mxw-advantage2 .swiper-slide .info .text1 {
  font-size: 0.6667rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.mxw-advantage2 .swiper-slide .info .text2 {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 0.6667rem;
}
.mxw-advantage2 .swiper-slide .info .text2:after {
  content: "";
  display: block;
  width: 1.1667rem;
  height: 0.1rem;
  margin-top: 0.5rem;
  background-color: #fff;
  margin-left: auto;
  margin-right: 0;
}
.mxw-advantage2 .swiper-slide .info .desc {
  font-size: 0.3333rem;
  color: #fff;
  line-height: 2;
  height: 6em;
}
.mxw-advantage2 .swiper-slide .info .mxw-more {
  margin-top: 0.3333rem;
  width: 5rem;
  height: 0.6667rem;
  line-height: 0.6667rem;
  color: #fff;
  font-size: 0.2667rem;
  text-align: center;
  background-color: #01883d;
  display: block;
  pointer-events: all;
}
.mxw-advantage2 .itembox > .mxw-box {
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.mxw-advantage2 .item {
  display: block;
  width: 33.33%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 0 0.3333rem;
  background-color: rgba(0, 0, 0, 0.43);
  text-align: center;
}
.mxw-advantage2 .item.active {
  border-radius: 0.3333rem 0.3333rem 0rem 0rem;
  background-color: #01883d;
}
.mxw-advantage2 .item.active:after {
  display: none;
}
.mxw-advantage2 .item.active .icon {
  display: block;
}
.mxw-advantage2 .item:last-child {
  border-right: 0;
}
.mxw-advantage2 .item .icon {
  width: 1rem;
  display: none;
  margin: 0 auto 0.3333rem;
  margin-bottom: 0.3333rem;
  position: relative;
  padding-bottom: 0.3333rem;
}
.mxw-advantage2 .item .icon:after {
  content: "";
  display: block;
  width: 3.3333rem;
  height: 1px;
  background-image: linear-gradient(to left, transparent, #ffffff, transparent);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.mxw-advantage2 .item .text1 {
  font-size: 0.3333rem;
  color: #fff;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.1667rem;
}
.mxw-advantage2 .item .text2 {
  font-size: 0.2rem;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 751px) {
  .mxw-advantage2 {
    padding-top:0;
  }
  .mxw-advantage2 .mxw-title{margin-bottom:0.5833rem;}
  .mxw-advantage2 .itembox {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    width: 100%;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-advantage2 .swiper-slide .info {
    padding-bottom: 2.9rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-advantage2 {
    padding-top: 30px;
  }
  .mxw-advantage2 .mxw-title .text3 {
    font-size: 14px;
    margin-top: 10px;
  }
  .mxw-advantage2 .swiper-slide:after {
    display: none;
  }
  .mxw-advantage2 .swiper-slide .info {
    position: static;
    padding: 0;
  }
  .mxw-advantage2 .swiper-slide .info .mxw-box {
    color: #333;
    text-align: left;
    align-items: flex-start;
  }
  .mxw-advantage2 .swiper-slide .info .desc {
    color: #333;
  }
  .mxw-advantage2 .swiper-slide .info .text1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .mxw-advantage2 .swiper-slide .info .text2 {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .mxw-advantage2 .swiper-slide .info .text2:after {
    width: 40px;
    height: 1px;
    margin-top: 14px;
    background-color: #ddd;
    margin-left: 0;
    margin-right: auto;
  }
  .mxw-advantage2 .swiper-slide .info .desc {
    font-size: 12px;
    height: auto;
  }
  .mxw-advantage2 .swiper-slide .info .mxw-more {
    width: 100%;
  }
}
/* ==================== 优势2 end ==================== */
/* ==================== 下拉视频样式 start ==================== */
.downVideo {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  top: -100%;
}
.downVideo.on {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.downVideo .video-body {
  width: 13.3333rem;
  text-align: center;
  position: relative;
}
.downVideo .close {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAAAn1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AAABVVVVeXl5sbGxzc3NlZWV+fn67u7t5eXmLi4srKyvw8PAQEBCdnZ2oqKhISEg3NzfQ0NDl5eX+EJmfAAAAIXRSTlMA7InIbY/5lTLUva2hRColtXnZg98bC1/PWVA7IBLzZKmpq/yfAAAGQ0lEQVR42tzWV3LrMBQDUJAqpJpVrWY7Cfa/yffxfjKTjJtYc9ZwLwBYctp7qeqqTIpJ5LmYiqSsaiX7/YRInJs06wbeMXRZ2pwRsvbzS/BJ4uuzRYiumxr4okFtVwSlyRK+KckaBOIiCx5SyAu8031CA5Jew6NzWtKYMj3Dj+soaJQYr3CvlYLGCdnCrVP2QSs+shPc0SqnNbnScOMmaZm8wYGloHXFAtt0RScqDZvmMacj+TjDmm2lQ+sGO2ZFx9QMCy4JnSs1jEtzeiAWmHWr6YmESc1Kb7oWxqT0adphSEbPUhhR07sRBnQMQI3DEgahw0EDA7HiEMFgCBzAoPyBu/pviDqvvusi7cGfMryhZ4D62PaVubWyMFALXrIzWDte0E4M1tTGHLxvhrBk0GT0j/7iw+uAluLvhMYT5pLBK2c8phgBhYc2RmHDA/PKKKwz7hsZiRF36ZyRyDXuqRiNKuoqfLIWb/+otaPdtIEgCsPrQAiGYIoKN0ma6MwSbGNjGvr+79YLpJgipOnxrNfie4P/gt1hPSnuSPrrXmes/565prgz03u+06Hf79kEnLL4aur8eIDZ4ZjXzVdRgjPJgjz/FHJ2KmFUnuSsgkp/Hlq+g/GnkW8VTCr5dgLlfWk/suRSAYNCLtRQqAfXWwKGF72E6Gh9gpG8GafFUkQr4TpaJRg/3ZVNAkYl1/boZC/XKjCSje2F1AtRQnWIB2Xs/jUDpRGihOqQBpSZbTqp5YYdSDu5oQZnavqGkAtRQnVIDs7K9BH6KEQJ1SFHcEbuwitIh5oooTpOB5BeTX9EfouppO1grhH9dk9B20qrw838KbdVoKVtxwIdeL2E7yjQwUIb4A0lMTvwSJxZ9hJ7h35uLaGzl+gde3S0dGcfUPAlUTvwYViRU0pyYiiwdrRraWuorCV6xw7drc8dGQz0EnuHLjMsa+gl8TowNrzA6yVbZRwI14G5ad1PL4nR0a4JbmCjl+jjmdmm26BFlMTpwML4W9dL4nRgbN3400uidODRugmkl3htmAnih30nVi/pt6PdpIWRXqJfmnbOZbDSS/rvQOZeYKWX9N+BF7dCQH6oDqzcA4LgS7YI6cE9ISg/TAee3DPC8oN04NnNEZgfogNzN0NofoAOzNwIwfn4HRi5FKGpJR7hpW6NHvjYHVi7BH3wkTuQuAl64eN2YPKXm7PXaRiKYjCgRkxVBVK3CGq5QUgpkIi+/7N16nya2LmDPWf5lOT+nHPsHJCYTyvmZ49ZfmM2xJgjSsyhMeYYH3OxirnqxhQfYspBMQW6mJJpThE7pq3QQVLN0YKk27r1RqAJyW7jZiiBNiT7bdvTBBqRHDcdGGDxoHlg4OkEQQVHI5KTNHdWczQj+VQmAWuOdiQHIbSp5mhH8r7Yf6hzAPSPAr4KoQIlR0uSe9xAj0ICRxOSfqMBZqIQzQPMwki5wOEn6YQhf4HDT7LXbBcKB0Cv7cJvhCEeFJ1GGL81iXhYtFmTFLPYJHMANJnFJPveqHMAtNxO3iRD5dnAAdBiqJQsrrODA6DB4qqZjgeBoyCZsUg7tw2cWCWKe+Lz0WzMJ1aKojFfjUoYTBwApRfSq+EVPy4OgMKv/qLHiXyvaT7Va/k/lujjYAh4uc73hX+CqOmy8s12psidkb+XwRK5M43n+etveeROdghSTixVTFBYTnTbrb07SWoYBqIw/DRZnh2PGRwn9P0vSaVYwIIyBixF6sp3iO7d+9mM6fGZN+QzOMlmApTPKCubmdxI/rvFz6ZAYjZr1IQN5uAvVzJH3Yf4pCMqV60psdUS9A0+LdisooBVDDIqDzr6QM8HE2Gq7jslg/jTwyHiXN1XikVYjKhjkKx7EK9oHRBQPaljEajcIVH5RkEwDGK0RKuxuqiqVhrbhF6JOb6SzVwj2nyy5nxC84zS/8BkyTM7wY3ziTw6neHM1CfkSdJPcCktyIsihWvHjJzLjvBgkeSYXOBHahNyJrEp/KnNjZy4mRp+NVLQ7oRs4N+1F7Qr0V/xHKPOaTe5HvFEaatoB6pN8XSzzOhfMjkjEJVR9EfKVAhKcy8H+qWhvDcIUa0LQRuJQtcI2Vhpc+hoRXcwuhoRifrSSlsWucoGkSRiyFRelFa2lxpuvAP1BtsbMYgSOwAAAABJRU5ErkJggg==) no-repeat center;
  background-size: 100%;
  width: 0.8333rem;
  height: 0.8333rem;
  position: absolute;
  top: -0.8333rem;
  right: -0.8333rem;
  cursor: pointer;
}
.downVideo video {
  width: 100%;
}
@media screen and (max-width: 751px) {
  .downVideo .video-body {
    width: 100%;
    padding: 0 20px;
  }
  .downVideo .close {
    width: 30px;
    height: 30px;
    top: -40px;
    right: 20px;
  }
}
/* ==================== 下拉视频样式 end ==================== */
/* ==================== 证书 start ==================== */
.mxw-certificate {
  background: url(../img/1d636281ee318beaa5a17b101288873bbd3805b7.jpg) no-repeat center bottom;
  background-size: cover;
}
.mxw-certificate .image {
  box-shadow: 0rem 0.1667rem 0.4833rem 0rem rgba(0, 0, 0, 0.06);
  padding:5px;
  margin-bottom: 0.3333rem;
}
.mxw-certificate .text {
  font-size: 0.3rem;
  color: #333;
  text-align: center;
}
.mxw-certificate .mxw-prev,
.mxw-certificate .mxw-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8667rem;
  outline: none;
  cursor: pointer;
}
.mxw-certificate .mxw-prev {
  left: 0;
  transform: rotateY(-180deg);
}
.mxw-certificate .mxw-next {
  right: 0;
}
@media screen and (min-width: 751px) {
  .mxw-certificate .mxw-box {
    padding-top: 1.5rem;
    padding-bottom: 1.8333rem;
  }
  .mxw-certificate .body {
    position: relative;
    padding: 0 1.8333rem;
  }
  .mxw-certificate .swiper-slide {

  }
}
@media screen and (max-width: 1680px) {
  .mxw-certificate .body {
    padding: 0 50px;
  }
}
@media screen and (max-width: 751px) {
  .mxw-certificate .swiper-slide {
    max-width: 50%;
  }
  .mxw-certificate .body {
    padding: 0;
  }
  .mxw-certificate .image {
    padding: 10px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.06);
  }
}
/* ==================== 证书 end ==================== */
/* ==================== 品牌 start ==================== */
@media screen and (min-width: 751px) {
  .mxw-brand .mxw-box {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/* ==================== 品牌 end ==================== */
/* ==================== 新闻 start ==================== */
.mxw-news{ background-color: #f1f1f1;}
.mxw-news .mxw-tabs-item {
  background-color: #fff;
  color: #444;
}
.mxw-news .mxw-tabs-item:last-child {
  margin-right: 0;
}
.mxw-news .recommend-news {
  display: block;
  border: 1px solid #f5f5f5;
}
.mxw-news .recommend-news .info {
  padding: 0.5rem;
}
.mxw-news .recommend-news .info .title {
  font-size: 0.3rem;
  color: #01883d;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.mxw-news .recommend-news .info .desc {
  font-size: 0.25rem;
  color: #666;
  line-height: 1.8;
  text-align: justify;
}
.mxw-news .top-news {
  min-width: 0;
  flex-grow: 1;
}
.mxw-news .top-news .item {
  display: flex;
  align-items: center;
  margin-bottom: 0.3333rem;
}
.mxw-news .top-news .item:last-child {
  margin-bottom: 0;
}
.mxw-news .top-news .item:hover .date {
  background-color: #01883d;
}
.mxw-news .top-news .item:hover .date .day,
.mxw-news .top-news .item:hover .date .year {
  color: #fff;
}
.mxw-news .top-news .item:hover .mxw-more {
  color: #01883d;
}
.mxw-news .top-news .item:hover .mxw-more:before {
  width: 0.9333rem;
  margin-right: 16px;
}
.mxw-news .top-news .item .date {
  width: 1.6667rem;
  height: 1.6667rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 0.5rem;
}
.mxw-news .top-news .item .day {
  font-size: 0.8rem;
  line-height: 1;
  font-weight: bold;
  color: #454545;
  margin-bottom: 0.1667rem;
}
.mxw-news .top-news .item .year {
  font-size: 0.2667rem;
  color: #666;
}
.mxw-news .top-news .item .info {
  min-width: 0;
  flex-grow: 1;
}
.mxw-news .top-news .item .title {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.mxw-news .top-news .item .desc {
  font-size: 0.25rem;
  line-height: 1.8;
  color: #888;
  margin-bottom: 0.25rem;
}
.mxw-news .top-news .item .mxw-more {
  font-size: 16px;
  color: #888;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.mxw-news .top-news .item .mxw-more:before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #01883d;
  transition: width 0.4s;
}
@media screen and (min-width: 751px) {
  .mxw-news .mxw-box {
    padding-top: 1.3333rem;
    padding-bottom: 0.6667rem;
  }
  .mxw-news .mxw-tabs-header {
    margin-bottom: 0.5rem;
  }
  .mxw-news .mxw-tabs-item {
    margin-right: 0.3333rem;
    font-size: 0.3rem;
    height: 1rem;
    line-height: 1rem;
    text-align: center;
    width: 3.3333rem;
  }
  .mxw-news .mxw-tabs-item.active {
    background-color: #01883d;
    color: #fff;
  }
  .mxw-news .recommend-news {
    flex-shrink: 0;
    margin-right: 1.1667rem;
    width: 43%;
  }
  .mxw-news .swiper-slide {
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (max-width: 751px) {
  .mxw-news .mxw-tabs-header {
    margin-bottom: 20px;
  }
  .mxw-news .mxw-tabs-wrap {
    width: 100%;
  }
  .mxw-news .mxw-tabs-item {
    width: 32%;
    margin-right: 0;
  }
  .mxw-news .mxw-tabs-item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .mxw-news .recommend-news {
    margin-bottom: 30px;
  }
  .mxw-news .recommend-news .info {
    padding: 20px;
  }
  .mxw-news .recommend-news .info .title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .mxw-news .top-news .item .title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .mxw-news .top-news .item .day {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .mxw-news .top-news .item .year {
    font-size: 12px;
  }
  .mxw-news .top-news .item .date {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    background-color: #f9f9f9;
  }
  .mxw-news .top-news .item .desc {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .mxw-news .top-news .item .mxw-more {
    font-size: 12px;
  }
  .mxw-news .top-news .item:hover .mxw-more:before {
    width: 30px;
  }
}
/* ==================== 新闻 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  background-color: #1f1f1f;
}
footer .mxw-link {
  position: relative;
}
footer .mxw-link > .mxw-box {
  position: relative;
  z-index: 3;
  padding-top: 30px;
  padding-bottom: 30px;
}
footer .mxw-local-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
footer .mxw-local-list .title {
  color: #fff;
  font-size: 16.998px;
  font-weight: bold;
  cursor: pointer;
  flex-shrink: 0;
}
footer .mxw-local-list .title img {
  margin-right: 19.998px;
  width: 30px;
}
footer .mxw-local-list .list {
  overflow: auto;
  min-width: 0;
  flex-grow: 1;
  text-align: left;
  font-size: 0;
}
footer .mxw-local-list .link-item {
  padding-right: 19.998px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 13.998px;
}
footer .mxw-local-list .link-item:hover {
  color: #d7d7d7;
}
footer .mxw-local-list .link-item:last-child {
  padding-right: 0;
}
footer .mxw-link-list {
  color: #333;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  padding: 10.002px;
  display: none;
  background: #fff;
  line-height: 1.8;
  text-align: left;
}
footer .mxw-link-list a {
  font-size: 13.998px;
  line-height: 1.8;
  padding-right: 19.998px;
}
footer .mxw-link-list a:last-child {
  padding-right: 0;
}
footer .top > .mxw-box {
  padding: 1rem 1rem;
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
}
footer .foot-nav {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}
footer .nav-item {
  margin-right: 1.6667rem;
}
footer .nav-item:last-child{margin-right:0;}
footer .nav-item .head {
  font-size: 0.3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.5833rem;
  color: #fff;
  display: block;
}
footer .nav-item .list > a {
  font-size: 16px;
  color: #949494;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  display: block;
}
footer .nav-item .list > a:hover {
  color: #01883d;
}
footer .nav-item .list > a:last-child {
  margin-bottom: 0;
}
footer .nav-item:nth-child(2) .list {
  width: 7rem;
  display: flex;
  flex-wrap: wrap;
}
footer .nav-item:nth-child(2) .list > a {
  width: 50%;
}
footer .foot-contact {
  /* width: 10.3333rem; */
  /*padding: 0 2rem; */
  /* border-left: 0.0167rem solid rgba(255, 255, 255, 0.13); */
  /* border-right: 0.0167rem solid rgba(255, 255, 255, 0.13); */
}
footer .foot-contact p {
  font-size: 16px;
  color: #949494;
  line-height: 1.8;
}
footer .foot-contact strong {
  display: block;
  font-size: 0.4667rem;
  margin: 0.0833rem 0 0.3333rem;
  color: #fff;
  line-height: 1.2;
}
footer .foot-qr {
  width: 2.0833rem;
  flex-shrink: 0;
  text-align: center;
}
footer .foot-qr img {
  margin-bottom: 0.4167rem;
}
footer .foot-qr p {
  font-size: 0.2rem;
  color: #949494;
  line-height: 1.8;
}
footer .mxw-copyright {
  border-top: 0.0167rem solid rgba(255, 255, 255, 0.1);
}
footer .mxw-copyright .mxw-box {
  text-align: center;
  padding: 0.5rem 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}
footer .mxw-copyright .mxw-box a{color: rgba(255, 255, 255, 0.4);}
@media screen and (max-width: 1680px) {
  footer .top > .mxw-box {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 751px) {
  footer .foot-contact {
    width: 100%;
    padding: 0;
    border-right: 0;
    border-left:0;
  }
  footer .foot-contact strong {
    font-size: 20px;
  }
  footer .top > .mxw-box {
    padding: 30px 20px;
  }
  footer .mxw-copyright > .mxw-box {
    padding: 20px 20px;
    font-size: 12px;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 1600px;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
}
.mxw-box a:hover {
  color: #01883d;
}
/* 内页 banner */
.ny-banner img {
  width: 100%;
}
/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px !important;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-box {
    max-width: 86%;
  }
}
@media screen and (min-width: 751px) {
  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }
  .mxw-ny-box {
    padding-top: 1.1667rem;
    padding-bottom: 1.1667rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-ny-box {
    max-width: 100%;
    font-size: 0;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 751px) {
  body {
    margin-top: 60px;
  }
  html {
    font-size: 50px;
  }
  .m-none,
  .pc-nav {
    display: none !important;
  }
  .mxw-box {
    padding: 30px 20px;
    max-width: 100%;
  }
  .mxw-section {
    padding-left: 0;
    padding-right: 0;
  }
  article {
    font-size: 15px;
  }
}
/* ==================== 页面自定义样式 end ==================== */
/* ==================== 动画 start ==================== */
@keyframes arrowAnimate {
  0% {
    transform: translate(0rem, 0rem);
  }
  50% {
    transform: translate(0rem, -0.1667rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
/* ==================== 动画 end ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#01883d;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: block;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
  /* .page-wrap{padding-top:30px;} */
  .easyzoom-flyout img{max-width:inherit;}
  .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
  body{padding-bottom:0;padding-top:0;margin-bottom:50px;}
  .page-product-detail-effect .big-img{pointer-events:none;}
  .page-banner .nybt h3{font-size:20px;}
  .page-product-detail-effect .big-img a{height:auto;}
  .container2{padding-left:20px;padding-right:20px;}
  .page-product-detail-effect .big-img{height:auto;}
  .page-banner{
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .page-banner>img{
    max-width: 240%;
    width:240%;
  }
  .xypg-product-list,
  .xypg-case-list{display:flex;flex-wrap:wrap;}
  .xypg-product-list li,
  .xypg-case-list li{width:48%;margin:0;}
  .xypg-product-list li:nth-child(2n),
  .xypg-case-list li:nth-child(2n){margin-left:4%;}
  .xypg-product-list li:nth-child(2)~li,
  .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
  .xypg-pagination>div{margin-bottom:10px;}
  .xypg-case-list li h3 a{padding-bottom:0;}
  .xypg-news-list li{padding:15px;margin-bottom:15px;}
  .xypg-news-list li .more{text-align:center;margin-top:0px;}
  .xypg-news-list li .more span{width:90px;margin:0 auto;}
  .product-detail-tabcon{font-size:16px;}
  .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
  .product-detail-tab .product-detail-tabli{height:auto;}
  /* 相册调整 */
  .xypg-album-list{justify-content:space-between;}
  .xypg-album-list:before,
  .xypg-album-list:after{display:none;}
  .xypg-album-list li{width:48%;margin:0;}
  .xypg-album-list li:nth-child(2)~li{margin-top:2%;}
}