<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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: #29922d;
  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: 0.2333rem;
  height: 0.2333rem;
  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 &gt; .u-col {
    width: 48%;
  }
  .u-row-2 &gt; .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-2 &gt; .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
  .u-row-3 &gt; .u-col {
    width: 32%;
  }
  .u-row-3 &gt; .u-col:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .u-row-3 &gt; .u-col:nth-child(3) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-4 &gt; .u-col {
    width: 23.5%;
    margin-right: 2%;
  }
  .u-row-4 &gt; .u-col:nth-child(4n) {
    margin-right: 0%;
  }
  .u-row-4 &gt; .u-col:nth-child(4) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-5 &gt; .u-col {
    width: 18.4%;
    margin-right: 2%;
  }
  .u-row-5 &gt; .u-col:nth-child(5n) {
    margin-right: 0%;
  }
  .u-row-5 &gt; .u-col:nth-child(5) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-6 &gt; .u-col {
    width: 15%;
    margin-right: 2%;
  }
  .u-row-6 &gt; .u-col:nth-child(6n) {
    margin-right: 0%;
  }
  .u-row-6 &gt; .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 &gt; .u-col,
  .u-row-4 &gt; .u-col,
  .u-row-5 &gt; .u-col,
  .u-row-6 &gt; .u-col {
    width: 48%;
  }
  .u-row-3 &gt; .u-col:nth-child(2n),
  .u-row-4 &gt; .u-col:nth-child(2n),
  .u-row-5 &gt; .u-col:nth-child(2n),
  .u-row-6 &gt; .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-3 &gt; .u-col:nth-child(2) ~ .u-col,
  .u-row-4 &gt; .u-col:nth-child(2) ~ .u-col,
  .u-row-5 &gt; .u-col:nth-child(2) ~ .u-col,
  .u-row-6 &gt; .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 新闻中心 start ==================== */
.ny-news &gt; .mxw-box {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.ny-news .itembox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.ny-news .itembox .item {
  width: 32%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
}
.ny-news .itembox .item:nth-child(3n-1) {
  margin-left: 2%;
  margin-right: 2%;
}
.ny-news .itembox .item:nth-child(3) ~ .item {
  margin-top: 2%;
}
.ny-news .itembox .item .image {
  margin-bottom: 0.3333rem;
  border-top-left-radius: 0.1667rem;
  border-top-right-radius: 0.1667rem;
  width: 100%;
}
.ny-news .itembox .item .head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 0.1667rem;
  border-bottom: 1px solid #eee;
}
.ny-news .itembox .item .head .type {
  background: #29922d;
  color: #fff;
  border-radius: 1.6667rem;
  font-size: 0.2rem;
  line-height: 1;
  padding: 0.1333rem 0.4167rem;
}
.ny-news .itembox .item .head .time {
  font-size: 0.2667rem;
  line-height: 1;
  color: #999;
}
.ny-news .itembox .item .title {
  font-size: 0.2833rem;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
  font-weight: bold;
  min-width: 0;
  width: 100%;
}
.ny-news .itembox .item .desc {
  line-height: 1.6;
  font-size: 0.2667rem;
  color: #999;
}
.ny-news .more {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ny-news .more &gt; a {
  color: #fff;
  line-height: 1;
  font-size: 0.2833rem;
  background: #29922d;
  border-radius: 1.6667rem;
  padding: 0.2167rem 1.0833rem;
}
@media screen and (max-width: 751px) {
  .ny-news {
    padding-bottom: 0;
  }
  .ny-news .mxw-box {
    padding: 30px 20px;
  }
  .ny-news .itembox {
    margin-bottom: 0;
  }
  .ny-news .itembox .item {
    width: 48%;
    margin-bottom: 0;
  }
  .ny-news .itembox .item:nth-child(3n-1) {
    margin-left: inherit;
    margin-right: inherit;
  }
  .ny-news .itembox .item:nth-child(3) ~ .item {
    margin-top: inherit;
  }
  .ny-news .itembox .item:nth-child(2n) {
    margin-left: 4%;
  }
  .ny-news .itembox .item:nth-child(2) ~ .item {
    margin-top: 4%;
  }
  .ny-news .itembox .item .image {
    margin-bottom: 10px;
  }
  .ny-news .itembox .item .head .type {
    font-size: 12px;
    padding: 5px 10px;
  }
  .ny-news .itembox .item .head {
    margin-bottom: 10px;
  }
  .ny-news .itembox .item .title {
    margin-bottom: 5px;
  }
  .ny-news .more &gt; a {
    padding: 8px 20px;
  }
}
/* ==================== 新闻中心 end ==================== */
/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
  padding: 0.7258rem 0.4032rem;
  padding-top: 0;
  margin-bottom: 0.5645rem;
}
.ny-news-desc &gt; .mxw-box {
  padding-top: 1rem;
}
.ny-news-desc .title {
  font-weight: bold;
  font-size: 0.4516rem;
  color: #333;
  padding-bottom: 0.3226rem;
}
.ny-news-desc .info {
  font-size: 0;
  padding-bottom: 0.3226rem;
  border-bottom: 1px solid #d5d5d5;
  margin-bottom: 0.3226rem;
}
.ny-news-desc .info .text {
  font-size: 0.2581rem;
  color: #999;
  display: inline-block;
  margin-right: 0.3226rem;
  border-left: 1px solid #ccc;
  padding-left: 0.3226rem;
}
.ny-news-desc .info .tip + .text {
  border-left: 0;
}
.ny-news-desc .info .tip {
  border: 1px solid #999;
  border-radius: 1.6129rem;
  padding: 0.0806rem 0.1613rem;
  line-height: 1;
  font-size: 0.2258rem;
  display: inline-block;
  color: #999;
}
.ny-news-desc .article img {
  display: block;
  margin: 0 auto;
}
.ny-news-desc .article {
  line-height: 1.8;
  text-align: justify;
  font-size: 0.2581rem;
}
.ny-news-desc .article span{ white-space: initial !important;}
.ny-news-desc .article p {
  line-height: 1.8;
}
@media screen and (max-width: 751px) {
  .ny-news-desc {
    padding: 0;
    background: none;
    margin-bottom: 0;
  }
  .ny-news-desc &gt; .mxw-box {
    padding: 30px 20px;
  }
  .ny-news-desc .article {
    font-size: 0.28rem;
  }
  .ny-news-desc .info .text {
    margin-right: 0.1rem;
    padding-left: 0.1rem;
    line-height: 2em;
    display: inline;
  }
  .ny-news-desc .info {
    padding-bottom: 0.2rem;
  }
}
/* ==================== 新闻详情 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: #29922d;
  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 ==================== */
header {
  width: 100%;
  z-index: 99;
  transition: all 0.4s;
}
header .welcome {
  position: relative;
  text-align: right;
  overflow: hidden;
}
header .welcome:after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background: #fed700;
  position: absolute;
  top: 0;
  left: 0;
}
header .welcome .info {
  width: 100%;
  max-width: 1030px;
  z-index: 9;
  position: relative;
  display: inline-flex;
  background: #29922d;
  height: 34px;
  line-height: 34px;
  color: #fff;
  font-size: 17px;
  margin-right: 0;
  margin-left: auto;
}
header .welcome .info &gt; * {
  position: relative;
  z-index: 3;
}
header .welcome .info:after {
  content: "";
  display: block;
  position: absolute;
  right: -210px;
  top: 0;
  width: 210px;
  height: 100%;
  z-index: 2;
  background: #29922d;
}
header .welcome .tel {
  flex-grow: 1;
  text-align: left;
  font-size: 14px;
  padding-left: 120px;
}
header .welcome .tel img {
  width: 20px;
  margin-right: 10px;
}
header .welcome .tel:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 34px solid #29922d;
  border-left: 40px solid transparent;
  position: absolute;
  left: -40px;
  top: 0;
}
header .welcome .other {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 40px;
  margin-right: 20px;
}
header .pc-nav .logo {
  flex-shrink: 0;
  padding-top: 15px;
}
header .pc-nav .logo img {
  height: 66px;
}
header .pc-nav &gt; .mxw-box {
  align-items: stretch;
  justify-content: space-between;
}
header .search {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .search.active form {
  opacity: 1;
  right: 40px;
  visibility: visible;
}
header .search form {
  font-size: 0;
  position: absolute;
  top: -7px;
  right: 0;
  z-index: 3;
  width: 200px;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  height: 34px;
  line-height: 34px;
  z-index: 4;
}
header .search form input {
  background: #fff;
  padding: 8px 10px;
  outline: none;
  font-size: 14px;
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
}
header .search form button {
  position: relative;
  width: 50px;
  height: 100%;
  background: #29922d;
  cursor: pointer;
}
header .search form button:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid #29922d;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}
header .search form button img {
  width: 16px;
}
header .pc-menu {
  display: flex;
  align-items: center;
  position: relative;
}
header .pc-menu &gt; li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
header .pc-menu &gt; li:after {
  content: "";
  display: block;
  width: 0%;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  transition: all 0.4s;
  background: #29922d;
  height: 3px;
  position: absolute;
}
header .pc-menu &gt; li.active &gt; a,
header .pc-menu &gt; li:hover &gt; a {
  color: #29922d;
}
header .pc-menu &gt; li.active:after,
header .pc-menu &gt; li:hover:after {
  width: 100%;
}
header .pc-menu &gt; li.active .pc-sub-menu,
header .pc-menu &gt; li:hover .pc-sub-menu {
  opacity: 1;
  visibility: visible;
}
header .pc-menu &gt; li.active .pc-sub-menu .pc-nav-box,
header .pc-menu &gt; li:hover .pc-sub-menu .pc-nav-box {
  transform: perspective(1200px) rotateX(0deg);
  -webkit-transform: perspective(1200px) rotateX(0deg);
  -moz-transform: perspective(1200px) rotateX(0deg);
  -ms-transform: perspective(1200px) rotateX(0deg);
  -o-transform: perspective(1200px) rotateX(0deg);
}
header .pc-menu &gt; li.active .pc-sub-menu .pc-nav-box:before,
header .pc-menu &gt; li:hover .pc-sub-menu .pc-nav-box:before {
  width: 100%;
  visibility: visible;
}
header .pc-menu &gt; li:last-child {
  margin-right: 0;
}
header .pc-menu &gt; li &gt; a {
  font-size: 18px;
  color: #333;
  text-align: center;
  display: inline-block;
  padding: 40px 20px;
}
header .pc-menu &gt; li &gt; a .cn {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
}
header .pc-menu &gt; li &gt; a .en {
  font-size: 16px;
  color: #464646;
  line-height: 1.2;
}
header .pc-menu &gt; li .pc-sub-menu {
  width: 200px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  padding-top: 0px;
  color: #333;
}
header .pc-menu &gt; li .pc-nav-box {
  border-top: 1px solid #ddd;
  position: relative;
  background: #fff;
  -webkit-transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
  transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: perspective(1200px) rotateX(-90deg);
  transform: perspective(1200px) rotateX(-90deg);
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}
header .pc-menu &gt; li .pc-nav-box::before {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  visibility: hidden;
  left: 0;
  top: 0;
  position: absolute;
  transition: all 0.4s;
}
header .pc-menu &gt; li .pc-nav-box &gt; li:hover {
  background: rgba(0, 0, 0, 0.05);
}
header .pc-menu &gt; li .pc-nav-box &gt; li &gt; a {
  display: block;
  text-align: center;
  font-size: 13px;
  height: 46px;
  line-height: 46px;
}
@media screen and (max-width: 1680px) {
  header .pc-nav .logo img {
    height: 50px;
  }
  header .pc-menu &gt; li &gt; a {
    padding-top: 35px;
    padding-bottom: 35px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1390px) {
  header .pc-menu &gt; li &gt; a {
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1300px) {
  header .pc-menu &gt; li &gt; a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* ==================== 头部 end ==================== */
/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
  header {
    border-top: 0;
    padding: 0;
  }
  .toobest-header .head {
    font-size: 0;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    height: 60px;
    justify-content: space-between;
    max-width: 750px;
    transform: translateX(-50%);
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    background: #fff;
    z-index: 99;
    border-bottom: 1px solid #eee;
  }
  .toobest-header .head .right{
    display:flex;align-items:center;
  }
  .toobest-header .head .right .nav-text{
    font-size:16px;margin-right:20px;
  }
  .toobest-header .logo {
    display: block;
    flex-shrink: 0;
  }
  .toobest-header .logo img {
    height: 40px;
  }
  .toobest-header .menu-btn {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: url(../images/menu.png) no-repeat center;
    background-position-y: -30px;
    background-size: 100%;
    cursor: pointer;
    outline: none;
  }
  .toobest-header .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%);
  }
  .toobest-header .menus-box.active {
    visibility: visible;
    opacity: 1;
  }
  .toobest-header .menus-box.active .menus {
    transform: translateX(0);
  }
  .toobest-header .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;
  }
  .toobest-header .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;
  }
  .toobest-header .menus-head .text {
    color: #333;
    line-height: 1.2;
  }
  .toobest-header .menus-head .mxw-close {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background: url(../images/close.png) no-repeat center;
    background-size: 100%;
    cursor: pointer;
    outline: none;
  }
  .toobest-header .menus-list {
    width: 100%;
    overflow: auto;
  }
  .toobest-header .menus-list &gt; .menus-item.active &gt; span {
    background: #eee;
  }
  .toobest-header .menus-list &gt; .menus-item.active .menus-sub-list {
    display: block;
  }
  .toobest-header .menus-list &gt; .menus-item &gt; span,
  .toobest-header .menus-list &gt; .menus-item &gt; a {
    display: block;
    width: 100%;
    padding: 15px 18px;
    font-size: 14.4px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .toobest-header .menus-list &gt; .menus-item &gt; span.sub:after,
  .toobest-header .menus-list &gt; .menus-item &gt; a.sub:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-top: 3.6px solid #555;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 0;
    margin-left: 3px;
  }
  .toobest-header .menus-list &gt; .menus-item &gt; span {
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .toobest-header .menus-sub-list {
    display: none;
    padding: 9px 24px;
  }
  .toobest-header .menus-sub-list &gt; .menus-item &gt; a {
    font-size: 14.4px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 36px;
    height: 36px;
  }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
  position: relative;
}
.mxw-banner img{width:100%}
.mxw-banner .swiper-pagination {
 
  bottom: auto;
  width: auto;
  display: flex;
     bottom: 20px;
    right: 0;
  justify-content: center;
  align-items: center;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  opacity: 1;
  border-color: #fff;
  background: #fff;
  margin-bottom: 20px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
 
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: solid 4px #dfdfe1;
  background: #29922d;
}
@media screen and (max-width: 751px) {
  .mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 5px;
  }
  .mxw-banner .swiper-pagination {
    bottom: 10px;
    display: none;
  }
}
/* ==================== 轮播图 end ==================== */
/* ==================== section1 start ==================== */
.mxw-section1 {
  background: url(../images/img02.jpg) no-repeat center;
  background-size: cover;
}
.mxw-section1 .itembox {
  align-items: stretch;
  justify-content: center;
}
.mxw-section1 .item {
  width: 5.6667rem;
  margin-right: 1.8333rem;
}
.mxw-section1 .item:last-child {
  margin-right: 0;
}
.mxw-section1 .item:hover .image,
.mxw-section1 .item:hover .info {
  transform: translateY(-20px);
}
.mxw-section1 .image,
.mxw-section1 .info {
  transition: all 0.4s;
}
.mxw-section1 .image {
  width: 100%;
}
.mxw-section1 .info {
  background: #fff;
  padding: 0.3333rem;
  text-align: center;
}
.mxw-section1 .title {
  font-size: 0.3833rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
  font-weight: bold;
}
.mxw-section1 .desc {
  font-size: 0.2667rem;
  color: #888;
  line-height: 1.6;
}
@media screen and (min-width: 751px) {
  .mxw-section1 {
    background-attachment: fixed;
  }
  .mxw-section1 .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
  }
  .mxw-section1 .item .image {
    background-image: none;
  }
}
@media screen and (max-width: 751px) {
  .mxw-section1 .itembox {
    flex-wrap: wrap;
  }
  .mxw-section1 .item {
    background-size: cover;
    width: 100%;
    display: flex;
    align-items: center;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .mxw-section1 .item:last-child {
    margin-bottom: 0;
  }
  .mxw-section1 .item .image {
    flex-shrink: 0;
    width: 40%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
  }
  .mxw-section1 .item .image img {
    display: none;
  }
  .mxw-section1 .item .info {
    padding: 20px 10px;
    min-width: 0;
    flex-grow: 1;
  }
  .mxw-section1 .item .info .title {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .mxw-section1 .item .info .desc {
    font-size: 12px;
  }
}
/* ==================== section1 end ==================== */
/* ==================== section2 start ==================== */
.mxw-section2 {
  background: #f8f8f8;
}
.mxw-section2 .info {
  background: #fff;
  padding: 30px;
}
.mxw-section2 .info .head {
  font-size: 24px;
  color: #333;
  line-height: 1.2;
  padding-bottom: 19.998px;
  border-bottom: 1.002px solid #ccc;
  width: 100%;
  margin-bottom: 30px;
}
.mxw-section2 .info .image {
  width: 100%;
}
.mxw-section2 .right {
  position: relative;
  background: #fff;
  padding: 30px;
  padding-right: 60px;
}
.mxw-section2 .right .head {
  font-size: 24px;
  color: #29922d;
  font-weight: bold;
  padding-bottom: 19.998px;
  border-bottom: 1.002px solid #ccc;
  margin-bottom: 30px;
}
.mxw-section2 .right .more {
  background: url(../images/img35.png) no-repeat center;
  width: 130.002px;
  height: 117px;
  position: absolute;
  right: 0;
  top: 0;
  background-size: 100%;
  color: #fff;
  font-size: 16.002px;
  cursor: pointer;
  display: block;
}
.mxw-section2 .right .more span {
  position: absolute;
  top: 19.998px;
  right: 15px;
}
.mxw-section2 .item {
  display: block;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1.002px dashed #ddd;
  transition: all 0.4s;
}
.mxw-section2 .item:hover {
  transform: translateX(0.1667rem);
}
.mxw-section2 .item:hover .title .text {
  color: #29922d;
}
.mxw-section2 .item .title,
.mxw-section2 .item .desc {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.mxw-section2 .item .min {
  width: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 0 6px 0 0;
  color: #fff;
  font-size: 13.002px;
  margin-right: 15px;
  flex-shrink: 0;
}
.mxw-section2 .item .title {
  margin-bottom: 10.002px;
}
.mxw-section2 .item .title .text {
  font-size: 18px;
  color: #333;
  line-height: 1.2;
  min-width: 0;
  flex-grow: 1;
  margin-top: 4.998px;
}
.mxw-section2 .item .title .min {
  background: #696969;
}
.mxw-section2 .item .desc .text {
  font-size: 13.998px;
  color: #999;
  line-height: 1.6;
  min-width: 0;
  flex-grow: 1;
}
.mxw-section2 .item .desc .min {
  background: #29922d;
}
.mxw-section2 .mxw-btn {
  width: 180px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 10.002px;
  margin: 25.002px auto 0;
  display: block;
  background: #29922d;
  font-size: 16.002px;
  color: #fff;
  transition: all 0.4s;
}
.mxw-section2 .mxw-btn:hover {
  color: #fff;
  box-shadow: 0 0 7.998px #29922d;
}
@media screen and (min-width: 751px) {
  .mxw-section2 .mxw-box {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }
  .mxw-section2 .body {
    align-items: stretch;
  }
  .mxw-section2 .info {
    width: 63%;
    flex-shrink: 0;
    margin-right: 0.3333rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-section2 .body {
    flex-wrap: wrap;
  }
  .mxw-section2 .info {
    padding: 15px;
  }
  .mxw-section2 .info .head {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .mxw-section2 .right {
    padding: 15px;
    width: 100%;
  }
  .mxw-section2 .right .head {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    margin-right: 30px;
  }
  .mxw-section2 .right .more {
    width: 80px;
    height: 70px;
    font-size: 12px;
  }
  .mxw-section2 .right .more span {
    top: 10px;
    right: 10px;
  }
  .mxw-section2 .item {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
/* ==================== section2 end ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
  margin-bottom: 0.8333rem;
  text-align: center;
  overflow: hidden;
}
.mxw-title .en {
  font-size: 0.9333rem;
  line-height: 1.2;
  color: #00612e;
  opacity: 0.09;
  font-weight: bold;
  line-height: 1;
}
.mxw-title .cn {
  margin-top: -0.6667rem;
  position: relative;
  z-index: 9;
}
.mxw-title .cn .text {
  font-size: 0.6rem;
  line-height: 1.2;
  color: #29922d;
  font-weight: bold;
  display: inline-block;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  position: relative;
}
.mxw-title .cn .text:before,
.mxw-title .cn .text:after {
  content: "";
  display: block;
  width: 0.6667rem;
  height: 0.0833rem;
  background: #fed700;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.mxw-title .cn .text:before {
  left: -0.6667rem;
}
.mxw-title .cn .text:after {
  right: -0.6667rem;
}
.mxw-title .desc {
  margin-top: 0.4167rem;
  color: #777;
  font-size: 0.3rem;
}
@media screen and (max-width: 751px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .en {
    font-size: 40px;
  }
  .mxw-title .cn {
    margin-top: -20px;
  }
  .mxw-title .cn .text {
    font-size: 26px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .mxw-title .cn .text:before,
  .mxw-title .cn .text:after {
    width: 20px;
    height: 2px;
  }
  .mxw-title .desc {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.6;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 产品中心 start ==================== */
.mxw-product .body {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.mxw-product .cate {
  width: 5rem;
  flex-shrink: 0;
  margin-right: 0.3333rem;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.mxw-product .cate .head {
  margin-bottom: 0.1667rem;
  width: 100%;
  border-radius: 0.3333rem 0.3333rem 0rem 0rem;
  overflow: hidden;
  background: #29922d;
  color: #fff;
  height: 1.8333rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.mxw-product .cate .head .en {
  font-size: 0.2667rem;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
}
.mxw-product .cate .head .cn {
  font-size: 0.4333rem;
  line-height: 1.2;
  font-weight: bold;
}
.mxw-product .cate .head .cn:after {
  content: "";
  display: block;
  width: 0.6667rem;
  height: 0.05rem;
  background: #fed700;
  margin-top: 0.0833rem;
  margin-left: auto;
  margin-right: auto;
}
.mxw-product .cate-list {
  flex-grow: 1;
  background: #f7fffb;
  padding-top: 0.5rem;
}
.mxw-product .cate-item {
  margin-bottom: 0.25rem;
}
.mxw-product .cate-head {
  background: url(../images/img37.png) no-repeat left center;
  background-size: 0.4rem 0.3667rem;
  padding-left: 0.5667rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  font-size: 0.3333rem; cursor: pointer;
}
.mxw-product .sub-cate {
  padding-left: 0.3333rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.mxw-product .sub-item {
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.2;
  width: 48%;
  margin-bottom: 0.25rem;
}
.mxw-product .sub-item.active {
  color: #29922d;
}
.mxw-product .sub-item:before {
  content: "";
  display: inline-block;
  background-color: #29922d;
  width: 0.0667rem;
  height: 0.0667rem;
  margin-right: 0.1667rem;
}
.mxw-product .sub-item:nth-child(2n) {
  margin-left: 4%;
}
.mxw-product .foot {
  background: #29922d;
  color: #fff;
  border-radius: 0rem 0rem 0.3333rem 0.3333rem;
  overflow: hidden;
  height: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-left: 0.3333rem;
  padding-right: 0.3333rem;
}
.mxw-product .foot .icon {
  width: 1rem;
  flex-shrink: 0;
  margin-right: 0.3333rem;
}
.mxw-product .foot .desc {
  flex-grow: 1;
  min-width: 0;
  font-size: 0.3rem;
  line-height: 1.6;
}
.mxw-product .foot .desc strong {
  font-size: 0.5rem;
  font-family: fantasy;
  font-weight: 400;
}
.mxw-product .product-swiper {
  min-width: 0;
  flex-grow: 1;
}
.mxw-product .product-swiper .product-slide {
  overflow: hidden;
}
.mxw-product .product-swiper .head {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  border-bottom: 0.0333rem solid #d9d9d9;
  margin-bottom: 0.1667rem;
}
.mxw-product .product-swiper .popular,
.mxw-product .product-swiper .recommend {
  display: block;
  border: solid 0.0167rem #d9d9d9;
  border-radius: 0.3333rem 0.3333rem 0 0;
  height: 1rem;
  line-height: 1rem;
  width: 3rem;
  margin-right: 0.1667rem;
  text-align: center;
  font-size: 0.3rem;
  color: #333;
  border-bottom: 0;
  cursor: pointer;
}
.mxw-product .product-swiper .popular.active,
.mxw-product .product-swiper .recommend.active {
  background: #29922d;
  color: #fff;
}
.mxw-product .product-swiper .content-swiper {
  width: 100%;
}
.mxw-product .product-swiper .list-item {
  border: 0.0167rem solid #e6e6e6;
  margin-bottom: 0.0167rem;
}
.mxw-product .product-swiper .list-item:hover .title {
  background: #29922d;
}
.mxw-product .product-swiper .list-item:hover .text,
.mxw-product .product-swiper .list-item:hover .more {
  color: #fff;
}
.mxw-product .product-swiper .title {
  height: 1.3333rem;
  line-height: 1.3333rem;
  padding-left: 0.3333rem;
  padding-right: 0.3333rem;
  border-top: 0.0167rem solid #e6e6e6;
  display: flex;
  align-items: center;
}
.mxw-product .product-swiper .text {
  color: #333;
  font-size: 0.3333rem;
  min-width: 0;
  flex-grow: 1;
}
.mxw-product .product-swiper .more {
  font-size: 0.2667rem;
  flex-shrink: 0;
  color: #666;
}
@media screen and (min-width: 751px) {
  .mxw-product .mxw-box {
    padding-top: 1.4167rem;
    padding-bottom: 0.75rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-product .body {
    flex-wrap: wrap;
  }
  .mxw-product .cate {
    width: 100%;
    margin-bottom: 30px;
  }
  .mxw-product .cate-list {
    padding-top: 0;
  }
  .mxw-product .cate .head {
    height: auto;
    padding: 20px;
    display: none;
  }
  .mxw-product .cate .head .cn {
    font-size: 18px;
  }
  .mxw-product .cate .head .cn:after {
    margin-top: 10px;
  }
  .mxw-product .cate-list {
    padding: 20px 0 0;
  }
  .mxw-product .foot {
    display: none;
  }
  .mxw-product .product-swiper .popular,
  .mxw-product .product-swiper .recommend {
    width: 48%;
    margin-right: 0;
    border-radius: 10px 10px 0 0;
    height: auto;
    line-height: inherit;
    padding: 10px 20px;
  }
  .mxw-product .product-swiper .recommend {
    margin-left: 4%;
  }
  .mxw-product .product-swiper .title {
    height: auto;
    line-height: inherit;
    padding: 8px 15px;
  }
  .mxw-product .product-swiper .text,
  .mxw-product .product-swiper .more {
    font-size: 12px;
  }
  .mxw-product .product-swiper .head {
    display: none;
  }
}
/* ==================== 产品中心 end ==================== */
/* ==================== 八大优势 start ==================== */
.mxw-advantage .body {
  align-items: stretch;
}
.mxw-advantage .advantage-swiper {
  height: 100%;
}
.mxw-advantage .left-list {
  width: 5rem;
  flex-shrink: 0;
  margin-right: 0.8333rem;
}
.mxw-advantage .left-list .item {
  background: #ededed;
  display: flex;
  align-items: center;
  padding: 0.4167rem 0.5rem;
  margin-bottom: 0.25rem;
  cursor: pointer;
  transition: all 0.4s;
}
.mxw-advantage .left-list .item.active,
.mxw-advantage .left-list .item:hover {
  background: #29922d;
}
.mxw-advantage .left-list .item.active .text1,
.mxw-advantage .left-list .item:hover .text1,
.mxw-advantage .left-list .item.active .text2,
.mxw-advantage .left-list .item:hover .text2 {
  color: #fff;
}
.mxw-advantage .left-list .item.active .icon img,
.mxw-advantage .left-list .item:hover .icon img {
  transform: translateY(-50%);
}
.mxw-advantage .left-list .item:last-child {
  margin-bottom: 0;
}
.mxw-advantage .left-list .icon {
  width: 0.8333rem;
  height: 0.6333rem;
  margin-right: 0.3333rem;
  overflow: hidden;
}
.mxw-advantage .left-list .icon img {
  line-height: 0;
  margin-top: 0;
  transition: all 0.4s;
}
.mxw-advantage .left-list .info {
  min-width: 0;
  flex-grow: 1;
}
.mxw-advantage .left-list .text1 {
  font-size: 0.4rem;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
}
.mxw-advantage .left-list .text2 {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.2;
}
.mxw-advantage .right-swiper {
  min-width: 0;
  flex-grow: 1;
  border-top: 0.0167rem solid #29922d;
}
.mxw-advantage .right-swiper .item {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  height: 100%;
}
.mxw-advantage .right-swiper .top {
  flex-grow: 1;
  background: #fbfbfb;
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  overflow: hidden;
}
.mxw-advantage .right-swiper .number {
  margin-right: 1rem;
  background: url(../images/img34.png) no-repeat center;
  width: 2.6667rem;
  height: 2.6667rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3333rem;
  font-family: fantasy;
  flex-shrink: 0;
  color: #fff;
  position: relative;
  background-size: 100%;
}
.mxw-advantage .right-swiper .number:after {
  content: "";
  display: block;
  width: 0.0167rem;
  height: 100%;
  position: absolute;
  top: -90%;
  left: 50%;
  transform: translateX(-50%);
  background: #29922d;
}
.mxw-advantage .right-swiper .title {
  font-size: 0.6rem;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
  text-align: justify;
}
.mxw-advantage .right-swiper .desc {
  font-size: 0.3rem;
  color: #666;
  line-height: 1.8;
  text-align: justify;
}
.mxw-advantage .right-swiper .image {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .mxw-advantage .mxw-box {
    padding-top: 0.75rem;
    padding-bottom: 1.6667rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-advantage .body {
    flex-wrap: wrap;
  }
  .mxw-advantage .left-list {
    width: 100%;
    margin-right: 0;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
       justify-content: space-between;  margin-bottom:10px;
  }


  .mxw-advantage .left-list .item {
    width: 24%;
    flex-wrap: wrap;
    padding: 10px;
    justify-content: center;
    margin-bottom:10px;
    align-items: flex-start;


  }
.mxw-advantage .left-list .item:last-child {
    margin-bottom: auto;
}


  .mxw-advantage .left-list .item .icon {
    width: 30px;
    height: 30px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .mxw-advantage .left-list .info {
    width: 100%;
    text-align: center;
  }
  .mxw-advantage .left-list .text1 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .mxw-advantage .left-list .text2 {
    font-size: 12px;
    line-height: 1.4;
  }
  .mxw-advantage .right-swiper .top {
    padding: 10px;
  }
  .mxw-advantage .right-swiper .number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    font-weight: inherit;
    margin-right: 10px;
  }
  .mxw-advantage .right-swiper .title {
    font-size: 16px;
    line-height: 1.6;
  }
  .mxw-advantage .right-swiper .desc {
    font-size: 14px;
  }
}
/* ==================== 八大优势 end ==================== */
/* ==================== 留言 start ==================== */
.mxw-message .info {
  color: #fff;
  margin-right: 0.8333rem;
  text-align: center;
  max-width: 9.5rem;
}
.mxw-message .info .cn {
  font-size: 0.4667rem;
  font-weight: bold;
  margin-bottom: 0.1667rem;
}
.mxw-message .info .en {
  font-size: 0.2667rem;
  line-height: 1.4;
  margin-bottom: 0.3333rem;
}
.mxw-message .info .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.3667rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.mxw-message .info .tel strong {
  font-weight: bold;
  font-size: 0.6667rem;
  line-height: 1;
}
.mxw-message .info .btn {
  width: 130px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  color: #29922d;
  background: #fff;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  cursor: pointer;
  outline: none;
}
.mxw-message .right {
  width: 5.6667rem;
  flex-shrink: 0;
}
.mxw-message .right input {
  background: #fff;
  width: 100%;
  height: 0.9167rem;
  line-height: 0.9167rem;
  padding-left: 0.3333rem;
  padding-right: 0.3333rem;
  font-size: 0.2333rem;
  color: #333;
  outline: none;
}
.mxw-message .right input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
}
.mxw-message .right input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
}
.mxw-message .right input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
}
.mxw-message .right input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
}
.mxw-message .codeImg {
  margin-top: 0.1667rem;
  display: flex;
  align-items: center;
}
.mxw-message .codeImg img {
  flex-shrink: 0;
  height: 0.9167rem;
}
.mxw-message .right button {
  background: #13bd44;
  color: #fff;
  font-size: 0.2667rem;
  line-height: 0.9167rem;
  height: 0.9167rem;
  text-align: center;
  display: block;
  width: 100%;
  cursor: pointer;
  margin-top: 0.1667rem;
}
@media screen and (min-width: 751px) {
  .mxw-message {
    display: flex;
    align-items: center;
    background: url(../images/img14.jpg) no-repeat center #28922e;
    height: 4.7167rem;
    background-position-x: 40%;
  }
  .mxw-message &gt; .mxw-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .mxw-message .body {
    display: flex;
    align-items: center;
    margin-right: 0;
    margin-left: auto;
  }
  .mxw-message .info .tel p:last-child:after {
    display: none;
  }
  .mxw-message .info .tel p:after {
    content: "、";
  }
}
@media screen and (max-width: 751px) {
  .mxw-message {
    background: #29922d;
  }
  .mxw-message .info {
    margin-right: 0;
    text-align: center;
  }
  .mxw-message .info .cn {
    text-align: center;
    font-size: 16px;
  }
  .mxw-message .info .en {
    font-size: 12px;
  }
  .mxw-message .info .tel {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .mxw-message .info .tel strong {
    display: block;
    font-size: 24px;
    margin-top: 5px;
  }
  .mxw-message .right {
    width: 100%;
  }
  .mxw-message .codeImg img,
  .mxw-message .right input {
    height: 40px;
    line-height: 40px;
  }
  .mxw-message .right .code-img {
    width: 100%;
  }
  .mxw-message .right .code-img input {
    margin-bottom: 0!important;
  }
  .mxw-message .right button {
    font-size: 14px;
  }
  .mxw-message .info .tel p {
    display: block;
  }
  .mxw-message .info .btn {
    width: 100%;
    height: auto;
    line-height: inherit;
    font-size: 12px;
    margin-bottom: 10px;
    height: 40px;
    line-height: 40px;
  }
}
/* ==================== 留言 end ==================== */
/* ==================== 关于我们 start ==================== */
.mxw-about {
  background: url(../images/img39.png) no-repeat center 7.3333rem;
}
.mxw-about .body .desc {
  font-size: 0.3rem;
  color: #333;
  line-height: 2;
  text-align: center;
  margin-bottom: 1.3333rem;
}
.mxw-about .body .itembox {
  margin-bottom: 1.1667rem;
}
.mxw-about .body .item {
  text-align: center;
}
.mxw-about .body .item .number {
  margin-bottom: 0.5rem;
  font-size: 0.3rem;
  color: #666;
}
.mxw-about .body .item .number span {
  font-size: 1rem;
  line-height: 1;
  color: #29922d;
  font-weight: bold;
}
.mxw-about .body .item .text {
  font-size: 0.4rem;
  color: #666;
  line-height: 1.2;
}
.mxw-about .body .btn {
  width: 4rem;
  height: 1rem;
  border-radius: 1.6667rem;
  background-color: #29922d;
  color: #fff;
  line-height: 1rem;
  text-align: center;
  display: block;
  margin: 0 auto;
  font-size: 0.3rem;
  transition: all 0.4s;
}
.mxw-about .body .btn:hover {
  color: #fff;
  box-shadow: 0 0 0.1333rem #29922d;
}
@media screen and (min-width: 751px) {
  .mxw-about .mxw-box {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-about .body .itembox {
    margin-bottom: 30px;
  }
  .mxw-about .body .desc {
    text-align: justify;
    margin-bottom: 30px;
    font-size: 14px;
  }
  .mxw-about .body .item .number {
    margin-bottom: 10px;
  }
  .mxw-about .body .item .number span {
    font-size: 36px;
  }
  .mxw-about .body .item .text {
    font-size: 12px;
  }
  .mxw-about .body .btn {
    width: 100%;
    height: auto;
    font-size: 12px;
    line-height: inherit;
    padding: 10px 20px;
  }
}
/* ==================== 关于我们 end ==================== */
/* ==================== 风采展示 start ==================== */
.mxw-album {
  background: #f8f8f8;
}
.mxw-album .body {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
}
.mxw-album .album-swiper {
  overflow: visible;
}
.mxw-album .album-swiper .swiper-slide-prev,
.mxw-album .album-swiper .swiper-slide-next {
  transition: all 0.4s;
}
.mxw-album .mxw-swiper-btn {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/img40.jpg) no-repeat center;
  background-size: 100%;
  outline: none;
  cursor: pointer;
  z-index: 99!important;
  width: 47px;
  height: 52px;
}
.mxw-album .mxw-swiper-btn.mxw-swiper-prev {
  left: -26px;
  transform: translateY(-50%) rotateY(-180deg);
}
.mxw-album .mxw-swiper-btn.mxw-swiper-next {
  right: -26px;
}
@media screen and (min-width: 751px) {
  .mxw-album .mxw-box {
    padding-top: 1rem;
    padding-bottom: 1.666rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-album .mxw-swiper-btn {
    width: 30px;
    height: 30px;
  }
  .mxw-album .mxw-swiper-btn.mxw-swiper-prev {
    left: -15px;
  }
  .mxw-album .mxw-swiper-btn.mxw-swiper-next {
    right: -15px;
  }
}
/* ==================== 风采展示 end ==================== */
/* ==================== 新闻资讯 start ==================== */
.mxw-news .left .info {
  transition: all 0.4s;
}
.mxw-news .left .title {
  font-size: 0.3333rem;
  line-height: 1.2;
  font-weight: bold;
  color: #29922d;
  margin-bottom: 0.4167rem;
}
.mxw-news .left .desc {
  font-size: 0.2667rem;
  line-height: 1.8;
  text-align: justify;
  color: #999;
  margin-bottom: 0.5833rem;
}
.mxw-news .left .time {
  margin-left: 0.5rem;
  padding-bottom: 0.5rem;
  border-left: 0.05rem solid #29922d;
  left: 0.3333rem;
  margin-bottom: -0.3333rem;
  position: relative;
  z-index: 9;
  padding-left: 0.4rem;
}
.mxw-news .left .text1 {
  font-size: 0.5rem;
  font-weight: bold;
  color: #29922d;
  line-height: 1.2;
}
.mxw-news .left .text2 {
  font-size: 0.2667rem;
  color: #29922d;
}
.mxw-news .left .image {
  width: 100%;
}
.mxw-news .right .item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.mxw-news .right .item:hover .time {
  border-color: #29922d;
  background-color: #29922d;
}
.mxw-news .right .item:hover .time .text1,
.mxw-news .right .item:hover .time .text2 {
  color: #fff;
}
.mxw-news .right .item:hover .info .title {
  color: #29922d;
  font-weight: bold;
}
.mxw-news .right .item:hover .info .more {
  color: #29922d;
}
.mxw-news .right .item:hover .info .more:before {
  width: 1.0667rem;
  background-color: #29922d;
}
.mxw-news .right .item:last-child {
  margin-bottom: 0;
}
.mxw-news .right .time {
  flex-shrink: 0;
  width: 2.2333rem;
  height: 2.2333rem;
  border: 0.0167rem solid #eee;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-right: 0.6667rem;
  transition: all 0.4s;
}
.mxw-news .right .text1 {
  font-size: 0.8667rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.2333rem;
}
.mxw-news .right .text2 {
  font-size: 0.2667rem;
  color: #29922d;
}
.mxw-news .right .info {
  min-width: 0;
  flex-grow: 1;
}
.mxw-news .right .title {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  transition: all 0.4s;
}
.mxw-news .right .desc {
  font-size: 0.25rem;
  color: #999;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 0.5rem;
}
.mxw-news .right .more {
  font-size: 0.2333rem;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.4s;
}
.mxw-news .right .more:before {
  content: "";
  display: block;
  width: 0;
  height: 0.0167rem;
  background: #29922d;
  margin-right: 0.3333rem;
  transition: all 0.4s;
}
@media screen and (min-width: 751px) {
  .mxw-news .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.3333rem;
  }
  .mxw-news .left {
    width: 9.6667rem;
    flex-shrink: 0;
    padding: 0.6667rem;
    margin-right: 1rem;
    transition: all 0.4s;
  }
  .mxw-news .left:hover {
    box-shadow: 0 0 0.1333rem #29922d;
  }
  .mxw-news .right {
    min-width: 0;
    flex-grow: 1;
  }
}
@media screen and (max-width: 751px) {
  .mxw-news .body {
    flex-wrap: wrap;
  }
.mxw-news .body .left{width:100%}
  .mxw-news .left .time {
    margin-left: 0;
  }
  .mxw-news .left .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .mxw-news .left .desc {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .mxw-news .right {
    width: 100%;
    margin-top: 20px;
  }
  .mxw-news .right .item {
    align-items: stretch;
    margin-bottom: 20px;
  }
  .mxw-news .right .item:last-child {
    margin-bottom: 0;
  }
  .mxw-news .right .info {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mxw-news .right .time {
    width: 80px;
    height: auto;
    margin-right: 10px;
  }
  .mxw-news .right .text1 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .mxw-news .right .desc {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .mxw-news .right .title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
  }
}
/* ==================== 新闻资讯 end ==================== */
/* ==================== 友情链接 start ==================== */
.mxw-links .body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.mxw-links .left {
  display: inline-block;
  flex-shrink: 0;
  padding-right: 26px;
  border-right: 1px solid #d6d6d6;
  margin-right: 30px;
}
.mxw-links .text1 {
  font-size: 16px;
  line-height: 1.2;
}
.mxw-links .text2 {
  font-size: 26px;
  font-weight: bold;
  color: #29922d;
  line-height: 1.2;
}
.mxw-links a {
  font-size: 14px;
  display: inline-block;
  padding-right: 20px;
}
@media screen and (min-width: 751px) {
  .mxw-links .mxw-box {
    padding-top: 0px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 751px) {
  .mxw-links {
    display: none;
  }
  .mxw-links .mxw-box {
    padding-top: 0;
  }
  .mxw-links .left {
    padding-right: 10px;
    margin-right: 10px;
  }
  .mxw-links .text1 {
    font-size: 14px;
  }
  .mxw-links .text2 {
    font-size: 14px;
  }
  .mxw-links a {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
  }
}
/* ==================== 友情链接 end ==================== */
/* ==================== 面包屑 start ==================== */
.bread-crumbs {
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}
.bread-crumbs &gt; .mxw-box {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.2833rem;
  color: #666;
  line-height: 1.2;
  flex-wrap: wrap;
}
.bread-crumbs &gt; .mxw-box:before {
  content: "";
  display: block;
  width: 0.1667rem;
  height: 0.2333rem;
  background-color: #29922d;
  margin-right: 0.1333rem;
}
.bread-crumbs a {
  color: inherit;
}
.bread-crumbs a:last-child:after {
  display: none;
}
.bread-crumbs a:after {
 /* content: "&gt;";
  padding-left: 0.1667rem;
  padding-right: 0.1667rem;
  vertical-align: inherit;*/
}
/* ==================== 面包屑 end ==================== */
/* ==================== 内页 - 通用容器 start ==================== */
.mxw-ny-box {
  max-width: 1200px!important;
  padding-top: 60px;
  padding-bottom: 80px;
}
/* ==================== 内页 - 通用容器 end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc .ny-product-image {
  max-width: 9.6667rem;
  margin-right: 0.3333rem;
  display: flex;
  align-items: stretch;
}
.ny-product-desc .easyzoom-flyout img {
  max-width: inherit!important;
  width: auto!important;
  z-index: 99;
}
.ny-product-desc .big-swiper {
  flex-shrink: 0;
  max-width: 7.1833rem;
  margin-right: 0.1333rem;
}
.ny-product-desc .small-swiper {
  width: 2.3333rem;
  flex-shrink: 0;
  height: 7.8333rem;
}
.ny-product-desc .small-swiper .swiper-slide {
  opacity: 0.8;
  cursor: pointer;
}
.ny-product-desc .small-swiper .swiper-slide-thumb-active {
  opacity: 1;
}
.ny-product-desc .top {
  padding: 0.25rem;
  background-color: #f8f8f8;
  display: flex;
      align-items: flex-start;
  margin-bottom: 1.3333rem;
}
.ny-product-desc .right .title {
  font-size: 0.5rem;
  color: #333;
  line-height: 1.4;
  font-weight: bold;
}
.ny-product-desc .right .line {
  margin-top: 0.4167rem;
  margin-bottom: 0.4167rem;
  display: flex;
  align-items: center;
}
.ny-product-desc .right .line:before,
.ny-product-desc .right .line:after {
  content: "";
  display: block;
  flex-shrink: 0;
}
.ny-product-desc .right .line:before {
  width: 1.1667rem;
  height: 0.05rem;
  margin-right: 0.1rem;
  background-color: #29922d;
}
.ny-product-desc .right .line:after {
  width: 0.25rem;
  height: 0.05rem;
  background-color: #fed700;
}
.ny-product-desc .right .detail {
  font-size: 0.2667rem;
  color: #666;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 0.3333rem;
}
.ny-product-desc .right .tip {
  width: 100%;
  border: 0.0167rem solid #e1e1e1;
  padding: 0.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.ny-product-desc .right .tip .text {
  font-size: 0.3rem;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
  flex-shrink: 0;
  padding-top: 0.0833rem;
}
.ny-product-desc .right .tip .list a {
  display: inline-block;
  font-size: 0.2833rem;
  color: #666;
  line-height: 1.8;
}
.ny-product-desc .right .tip .list a:last-child:after {
  display: none;
}
.ny-product-desc .right .tip .list a span {
  text-decoration: underline;
}
.ny-product-desc .right .tip .list a:after {
  content: "、";
  text-decoration: none;
  vertical-align: inherit;
  line-height: inherit;
}
.ny-product-desc .right .contact {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
}
.ny-product-desc .right .contact .mxw-btn {
  width: 3.25rem;
  height: 0.9333rem;
  line-height: 0.9333rem;
  background-color: #29922d;
  color: #fff;
  font-size: 0.3rem;
  text-align: center;
  display: block;
  margin-right: 1rem;
  transition: all 0.4s;
}
.ny-product-desc .right .contact .mxw-btn:hover {
  color: #fff;
  box-shadow: 0 0 0.0667rem #29922d;
}
.ny-product-desc .right .contact .tel {
  display: flex;
  align-items: center;
  font-family: fantasy;
  font-size: 0.5rem;
  line-height: 1.8;
  color: #29922d;
}
.ny-product-desc .right .contact .tel .icon {
  width: 0.8333rem;
  flex-shrink: 0;
  margin-right: 0.1667rem;
}
.ny-product-desc .bottom .head {
  width: 100%;
  margin-bottom: 0.6667rem;
  padding-bottom: 0.4167rem;
  border-bottom: 0.0167rem solid rgba(0, 0, 0, 0.17);
  font-size: 0.3667rem;
  color: #666;
  font-weight: bold;
}
.ny-product-desc .bottom .head::before {
  content: "";
  display: inline-block;
  width: 0.1667rem;
  height: 0.2333rem;
  background-color: #29922d;
  margin-right: 0.1667rem;
}
@media screen and (min-width: 751px) {
  .mxw-ny-product-desc .mxw-box {
    max-width: 1200px;
  }
  .mxw-ny-product-desc .mxw-advantage .mxw-box {
    padding-top: 1.6667rem;
  }
  .mxw-ny-product-desc .mxw-advantage .mxw-title {
    margin-bottom: 1rem;
  }
  .mxw-ny-product-desc .mxw-advantage .right-swiper .top {
    padding-left: 60px;
    padding-right: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .mxw-ny-product-desc .mxw-advantage .right-swiper .number {
    margin-right: 40px;
  }
  .mxw-ny-product-desc .mxw-advantage .left-list {
    margin-right: 20px;
  }
  .mxw-ny-product-desc .mxw-advantage .left-list .item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .mxw-ny-product-desc .mxw-message .mxw-box {
    max-width: 1500px;
  }
}
@media screen and (max-width: 751px) {
  .ny-product-desc .top {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .ny-product-desc .ny-product-image {
    max-width: 100%;
    width: 100%;
    flex-wrap: wrap;
  }
  .ny-product-desc .ny-product-image .easyzoom {
    pointer-events: none;
  }
  .ny-product-desc .big-swiper {
    max-width: 100%;
    width: 100%;
  }
  .ny-product-desc .small-swiper {
    width: 100%;
    height: auto;
    margin-top: 10px;
  }
  .ny-product-desc .right {
    margin-top: 20px;width:100%;
  }
  .ny-product-desc .right .title {
    font-size: 20px;
  }
  .ny-product-desc .right .line {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .ny-product-desc .right .detail {
    font-size: 12px;
  }
  .ny-product-desc .right .tip {
    flex-wrap: wrap;
  }
  .ny-product-desc .right .tip .text {
    padding-top: 0;
    margin-bottom: 10px;
  }
  .ny-product-desc .right .contact {
    flex-flow: column;
  }
  .ny-product-desc .right .contact .mxw-btn {
    width: 100%;
    margin-right: 0;
    height: 38px;
    line-height: 38px;
    text-align: center;
    order: 2;
    margin-top: 10px;
  }
  .ny-product-desc .bottom .head {
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 16px;
  }
}
/* ==================== 内页 - 产品详情 end ==================== */
/* ==================== 内页 - 产品列表 start ==================== */
@media screen and (min-width: 751px) {
  .mxw-ny-product .mxw-product .mxw-box {
    padding-bottom: 1.6667rem;
  }
  .mxw-ny-product .mxw-product .product-swiper .title {
    height: 1.0333rem;
    line-height: 1.0333rem;
  }
  .mxw-ny-product .mxw-message .mxw-box {
    max-width: 1500px;
  }
}
/* ==================== 内页 - 产品列表 end ==================== */
/* ==================== 内页 - 关于我们 start ==================== */
.ny-about .body {
  display: flex;
  align-items: flex-start;
}
.ny-about .body .left {
  min-width: 0;
  flex-grow: 1;
}
.ny-about .body .left .text1 {
  font-size: 0.7rem;
  font-weight: bold;
  color: #29922d;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.ny-about .body .left .desc {
  font-size: 0.3rem;
  text-align: justify;
  color: #555;
  line-height: 1.8;
}
.ny-about .body .right {
  width: 6.8333rem;
  flex-shrink: 0;
  margin-left: 0.5rem;
  background: url(../images/img48.jpg) no-repeat right bottom #29922d;
  padding: 0.8333rem;
  position: relative;
  z-index: 9;
  margin-top: -3.1667rem;
}
.ny-about .body .right .item {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}
.ny-about .body .right .item.active:before {
  background-color: #fed700;
}
.ny-about .body .right .item.active .text1,
.ny-about .body .right .item.active .text2 {
  color: #fed700;
}
.ny-about .body .right .item.active .text1 {
  font-weight: bold;
  font-size: 0.4667rem;
}
.ny-about .body .right .item.active .text2 {
  font-size: 0.35rem;
}
.ny-about .body .right .item:last-child {
  margin-bottom: 0;
}
.ny-about .body .right .item:last-child::after {
  display: none;
}
.ny-about .body .right .item:before,
.ny-about .body .right .item:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
}
.ny-about .body .right .item:before {
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 100%;
  left: 0;
  top: 0.3333rem;
  z-index: 9;
}
.ny-about .body .right .item:after {
  height: 240%;
  width: 0.0167rem;
  left: 0.1rem;
  top: 0.3333rem;
}
.ny-about .body .right .text {
  color: #fff;
  line-height: 1.2;
}
.ny-about .body .right .text1 {
  font-size: 0.3333rem;
  margin-bottom: 0.0833rem;
}
.ny-about .body .right .text2 {
  font-size: 0.2667rem;
}
.ny-about .bottom {
  margin-top: 0.6667rem;    display: flex;
    justify-content: space-between;
}
.ny-about .bottom .item {
  text-align: center;
}
.ny-about .bottom .item .text1 {
  margin-bottom: 0.5833rem;
  font-size: 0.3rem;
  color: #666;
}
.ny-about .bottom .item .text1 span {
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1;
  color: #29922d;
  display: inline-block;
}
.ny-about .bottom .item .text2 {
  font-size: 0.35rem;
  color: #666;
}
@media screen and (min-width: 751px) {
  .mxw-ny-about .mxw-box {
    max-width: 1200px;
  }
  .mxw-ny-about .mxw-advantage .mxw-box {
    padding-top: 1.6667rem;
  }
  .mxw-ny-about .mxw-advantage .mxw-title {
    margin-bottom: 1rem;
  }
  .mxw-ny-about .mxw-advantage .right-swiper .top {
    padding-left: 60px;
    padding-right: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .mxw-ny-about .mxw-advantage .right-swiper .number {
    margin-right: 40px;
  }
  .mxw-ny-about .mxw-advantage .left-list {
    margin-right: 20px;
  }
  .mxw-ny-about .mxw-advantage .left-list .item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .mxw-ny-about .mxw-message .mxw-box {
    max-width: 1500px;
  }
}
@media screen and (max-width: 751px) {
  .ny-about .body {
    flex-wrap: wrap;
  }
  .ny-about .body .left {
    width: 100%;
  }
  .ny-about .body .left .text1 {
    text-align: center;
    font-size: 22px;
  }
  .ny-about .body .left .desc {
    font-size: 14px;
  }
  .ny-about .body .right {
    margin-top: 30px;
    width: 100%;
    margin-left: 0;
    padding: 20px;
  }
  .ny-about .body .right .item {
    margin-bottom: 20px;
  }
  .ny-about .body .right .text1 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .ny-about .body .right .text2 {
    font-size: 12px;
  }
  .ny-about .body .right .item.active .text1 {
    font-size: 18px;
  }
  .ny-about .body .right .item.active .text2 {
    font-size: 14px;
  }
  .ny-about .body .right .item:before {
    width: 8px;
    height: 8px;
  }
  .ny-about .body .right .item:after {
    height: 170%;
    left: 4px;
  }
  .ny-about .bottom {
    margin-top: 20px;
  }
  .ny-about .bottom .item .text1 {
    margin-bottom: 10px;
  }
  .ny-about .bottom .item .text1 span {
    font-size: 32px;
  }
  .ny-about .bottom .item .text2 {
    font-size: 14px;
  }
}
/* ==================== 内页 - 关于我们 end ==================== */
/* ==================== 内页 - 在线留言 start ==================== */
.ny-message .title {
  text-align: center;
  font-size: 0.6667rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.6667rem;
  font-weight: bold;
}
.ny-message .mxw-form {
  background-color: #f1f3f5;
  padding: 4%;
}
.ny-message .mxw-form .top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.ny-message .mxw-form input,
.ny-message .mxw-form textarea {
  display: block;
  width: 100%;
  border: 1px solid #e4e6e8;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  transition: all 0.4s;
}
.ny-message .mxw-form input:focus,
.ny-message .mxw-form textarea:focus {
  border-color: #29922d;
}
.ny-message .mxw-form input::-webkit-input-placeholder,
.ny-message .mxw-form textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
}
.ny-message .mxw-form input:-moz-placeholder,
.ny-message .mxw-form textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
}
.ny-message .mxw-form input::-moz-placeholder,
.ny-message .mxw-form textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
}
.ny-message .mxw-form input:-ms-input-placeholder,
.ny-message .mxw-form textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
}
.ny-message .mxw-form input {
  padding: 8px 15px;
}
.ny-message .mxw-form textarea {
  width: 100%;
  height: 140px;
  padding: 15px;
  resize: none;
}
.ny-message .mxw-form button {
  background-color: #29922d;
  color: #fff;
  font-size: 16px;
  text-align: center;
  height: 46px;
  line-height: 46px;
  width: 200px;
  border-radius: 5px;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  cursor: pointer;
  transition: all 0.4s;
}
.ny-message .mxw-form button:hover {
  box-shadow: 0 0 8px #29922d;
}
@media screen and (min-width: 751px) {
  .ny-message .mxw-form input {
    width: 49%;
    margin-bottom: 2%;
  }
  .ny-message .mxw-form input:nth-child(2n) {
    margin-left: 2%;
  }
}
@media screen and (max-width: 751px) {
  .ny-message .title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .ny-message .mxw-form {
    padding: 6% 4%;
  }
  .ny-message .mxw-form input {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .ny-message .mxw-form textarea {
    padding: 8px 15px;
  }
  .ny-message .mxw-form button {
    width: 100%;
    height: 38px;
    line-height: 38px;
    font-size: 12px;
    margin-top: 10px;
  }
}
/* ==================== 内页 - 在线留言 end ==================== */
/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact {
  background: url(../images/img52.jpg) no-repeat center;
  background-size: cover;
}
.ny-contact .body {
  background: #fff;
  display: flex;
  align-items: center;
  box-shadow: 0rem 0.1167rem 0.5333rem 0rem rgba(3, 0, 0, 0.11);
}
.ny-contact .image {
  width: 9.3333rem;
  flex-shrink: 0;
}
.ny-contact .info {
  min-width: 0;
  flex-grow: 1;
  padding: 0.9167rem;
  background: url(../images/img46.png) no-repeat 97% 90%;
  background-size: 3.6667rem 3.6667rem;
}
.ny-contact .info .text1 {
  font-size: 0.5833rem;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  margin-bottom: 0.8333rem;
}
.ny-contact .info .desc {
  font-size: 0.2833rem;
  color: #333;
  line-height: 2.6;
  text-align: justify;
}
@media screen and (min-width: 751px) {
  .ny-contact .mxw-box {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
@media screen and (max-width: 751px) {
  .ny-contact .body {
    flex-wrap: wrap;
  }
  .ny-contact .image {
    width: 100%;
  }
  .ny-contact .info {
    padding: 20px 15px;
    background: none;
  }
  .ny-contact .info .text1 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
  }
  .ny-contact .info .desc {
    font-size: 14px;
    line-height: 2;
  }
}
/* ==================== 内页 - 联系我们 end ==================== */
/* ==================== 分页样式 start ==================== */
.Pagination {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 1rem;
  font-size: 0;
}
.Pagination a {
  display: inline-block;
  border: 0.0167rem solid #CCCCCC;
  color: #666666;
  font-size: 0.3rem;
  margin: 0 0.1667rem;
  width: auto;
  padding: 0 10px;
  height: 0.6667rem;
  line-height: 0.6667rem;
}
.Pagination a:hover,
.Pagination .current {
  color: white!important;
  background: #29922d;
  border-color: #29922d;
}
@media screen and (min-width: 751px) {
  .Pagination a.first {
    width: 1.1667rem;
    margin-left: 0;
    margin-right: 0;
  }
  .Pagination a.plane {
    background: none;
    border: 0;
  }
}
@media screen and (max-width: 751px) {
  .Pagination {
    margin-top: 20px;
  }
  .Pagination a {
    width: auto;
    height: auto;
    line-height: inherit;
    padding: 6px 12px;
    font-size: 12px;
    margin-left: 2px;
    margin-right: 2px;
  }
}
/* ==================== 分页样式 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  background: #252525;
}
footer .top {
  padding-top: 1.1667rem;
  padding-bottom: 0.6667rem;
}
footer .head {
  font-size: 0.2667rem;
  color: #fff;
  line-height: 1.2;
  padding-bottom: 0.3333rem;
  border-bottom: 2px solid #fff;
  position: relative;
  margin-bottom: 0.5rem;
  display: table;
}
footer .head::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: #fed700;
  position: absolute;
  bottom: -2px;
  left: 0;
}
footer .nav {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 4rem;
}
footer .nav-item {
  width: 48%;
  font-size: 0.2333rem;
  color: #fff;
  margin-bottom: 0.3333rem;
}
footer .nav-item:nth-child(2n) {
  margin-left: 4%;
}
footer .desc {
  font-size: 0.2333rem;
  color: #fff;
  line-height: 2;
}
footer .desc img {
  width: 0.3333rem;
  margin-right: 0.1667rem;
}
footer .qr {
  width: 3.4167rem;
  height: 1.7333rem;
  display: flex;
  align-items: center;
  border: 0.05rem solid #333;
  position: relative;
  padding: 0.0833rem;
}
footer .qr::after {
  content: "";
  display: block;
  background: url(../images/img13.png) no-repeat center;
  width: calc(100% + 0.1rem);
  height: calc(100% + 0.1rem);
  background-size: 100%;
  position: absolute;
  top: -0.05rem;
  left: -0.05rem;
  pointer-events: none;
}
footer .qr img {
  width: 1.4rem;
  flex-shrink: 0;
  margin-right: 0.1667rem;
}
footer .info {
  font-size: 0.2333rem;
  color: #fff;
  min-width: 0;
  flex-grow: 1;
}
footer .mxw-copyright {
  border-top: 0.0167rem solid #626262;
  padding-top: 0.3333rem;
  padding-bottom: 0.3333rem;
  text-align: center;
}
footer .mxw-copyright &gt; .mxw-box {
  font-size: 0.2333rem;
  color: #fff;
  line-height: 1.8;
}
footer .mxw-copyright &gt; .mxw-box &gt; div {
  margin-bottom: 0.0833rem;
}
footer .mxw-copyright &gt; .mxw-box &gt; div:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 751px) {
  footer .foot-nav {
    min-width: 6.1667rem;
  }
  footer .foot-nav,
  footer .foot-contact {
    position: relative;
  }
  footer .foot-nav:after,
  footer .foot-contact:after {
    content: "";
    display: block;
    width: 0.0167rem;
    height: 1.1667rem;
    background: #7c7c7c;
    position: absolute;
    right: 0;
    top: 0.6667rem;
  }
  footer .foot-contact {
    padding-left: 2.6667rem;
    padding-right: 2.6667rem;
  }
  footer .foot-qr {
    padding-left: 2.6667rem;
  }
}
@media screen and (max-width: 751px) {
  footer .top {
    flex-wrap: wrap;
    padding-top: 30px;
  }
  footer .foot-contact {
    width: 100%;
  }
  footer .head {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  footer .desc {
    font-size: 12px;
  }
  footer .mxw-copyright &gt; .mxw-box {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 12px;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 1500px;
  margin: 0 auto;
  font-size: 0;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
}
.mxw-box a:hover,
.mxw-box a:focus,
.mxw-box a:active {
  color: #29922d;
}
/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1580px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px !important;
  }
}
@media screen and (min-width: 751px) {
  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-box {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@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;
  }
  .mxw-section {
    padding-left: 0;
    padding-right: 0;
  }
  article {
    font-size: 15px;
  }
}
/* ==================== 页面自定义样式 end ==================== */


.oth_chg{
  text-align: center;
 height: auto; overflow: hidden;

}
.oth_chg ul{
  display: flex;
  align-items: center;
  justify-content: center; width: 100%;
  padding-top: 60px;
}
.oth_chg ul li{

  margin: 0 5px;
}
.oth_chg ul li a{
  display: block;
  background-color: #F3F3F3;
  padding: 15px 50px;
  border-radius: 30px;
  color: #333;
  font-size: 18px;
}
.oth_chg ul .oth_act a{
  color: white;
  background-color: #0DA945;
}
.oth_chg ul li a:hover{
  color: white;
  background-color: #0DA945;
}


/*生产品控*/
.sp_b{ height: auto; overflow: hidden; margin: 0 auto;}
.sp_b&gt;ul li{
  float: left;
  margin-bottom: 19px;
  margin-left: 21px;
  width: 386px;
}
.sp_b&gt;ul li:nth-of-type(3n+1){
  margin-left: 0;
}
.sp_b&gt;ul li p{
  height: 290px;
  width: 100%;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  overflow: hidden;
  margin: 0;text-align: center;
    padding: 10px 10px 0 10px;
    background: #eee;
}
.sp_b&gt;ul li p img{
  max-width: 100%;
  max-height: 100%;
  transition: all .4s;
}
.sp_b&gt;ul li:hover p img{
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.sp_b&gt;ul li div{
  background-color: #EEEEEE;
  color: #333;
  padding: 20px 15px;
  font-size: 16px;
  border: 1px solid #E5E5E5;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.sp_b&gt;ul li:hover div{
  background-color:#29922d;
  color: white;
}

.abo_b{ line-height: 1.6; margin: 0 auto;font-size: 16px}

.nsort-box {
	background: #f9f9f9;
	text-align: center;
	position: relative;
}
.nsort-box .left {
	width: 25%;
	background: #29922d;
	height: 56px;
	line-height: 56px;
	font-size: 18px;
	color: #fff;
}

.nsort-box .right {    display: flex;
	width: 75%;
	color: #666;
	font-size: 16px;
	height: 56px;
	line-height: 56px;
}

.nsort-box .right&gt;a {
	width: 20%;
}

.nsort-box .right .active, .nsort-box .right&gt;a:hover {
	color: #29922d;
}
.mw{ width:1200px;    display: flex;    margin: 0 auto;}


.mxw-album .album-swiper .swiper-slide .mxw-image {
    overflow: hidden;
    height: 340px;
    display: flex;
    align-items: center;
}
.mxw-album .album-swiper .swiper-slide .mxw-image img{ height:100%;}
.fc_top{text-align: center;     margin-bottom: 60px;}
.fc_top .item{ width: 268px; height: 47px; margin: 0 21px; display: inline-block; border: 1px solid #30b536; border-radius: 5px; font-size: 17px; color: #333; line-height: 45px; text-indent: 40px; text-align: left; }
.fc_top .item img{margin-top:12px;float: right; margin-right: 40px;}
.fc_top .item.active,.fc_top .item:hover{background: #30b536; cursor: pointer; color: #fff;}
.fc_top .item.active img,.fc_top .item:hover img{filter: grayscale(100%) brightness(200%);}
.fc_bot{}
.mxw-album{    overflow: hidden;
 }

@media only screen and (max-width: 768px) {
.mxw-section2 .info{width:100%;}
.mxw-section2 .info .image iframe{ width:100%;height:220px;}
 .oth_b {
        padding: 30px 15px;
    }
    .oth_chg ul li {
        margin: 0 2px;
    }
    .oth_chg ul li a {
        padding: 8px 31px;
        font-size: 16px;
        margin-bottom: 5px;
    }
    .oth_chg {
        margin-bottom: 0;
    }
.oth_chg ul{    padding-top: 30px;    padding-bottom: 0;}



	.nsort-box .mw {
		width: 100%;
	}

	.nsort-box .left{
		display: none;
	}

	.nsort-box .right {
		flex-wrap: wrap;
		width: 100%;
		height: auto;
		line-height: 45px;
		font-size: 14px;
	}

	.nsort-box .right&gt;a {
		flex: none;
		width: 25%;
		height: 45px;
		border-bottom: 2px solid #fff;
	}

	.nsort-box .right .active {
		color: inherit;
		
	}

.sp_b{    padding: 30px 0;width: 95%;}

.sp_b ul{flex-wrap: wrap;    display: flex;    justify-content: space-between;}
.sp_b&gt;ul li{    margin-left: 0;
    width: 49%;}
.sp_b&gt;ul li p {
    max-height: 150px;}
.sp_b&gt;ul li div{    padding: 8px 5px; font-size: 14px;}
.mxw-ny-box{    max-width: 95% !important;}
.abo_t img{    height: auto !important;}
.mxw-album .album-swiper .swiper-slide .mxw-image{ height:auto;}
.fc_top{    display: flex;    margin-bottom: 20px;
    justify-content: space-around;}
.fc_top .item{  width: 31%;     line-height: 40px;height: 40px;
    margin: 0;
    text-align: center;
    text-indent: 0;
    font-size: 15px;}
.fc_top .item img{ display: none;}
.mxw-album .album-swiper {
    overflow: hidden;
}

}



.zs_list{ margin-bottom:1rem;}

.zs_list .mxw-image{ height:225px;display: flex;
    align-items: center;}


.add_title{font-size: 16px;
    text-align: center;
    margin-top: 10px;}



.ny-message .mxw-form .codeImg{    display: flex;
    align-items: flex-start;}
.ny-message .mxw-form .codeImg img{ margin-left:2%; height:41px}


@media screen and (max-width: 751px){
.mxw-ny-box{max-width:100%!important;}
.ny-message .mxw-form .codeImg img{  height:37px}



.zs_list .mxw-image{ max-height:140px;}





}
.ny-about-img img,
.ny-banner img{width:100%;}</pre></body></html>