@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,
textarea {
  border: 0;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
  display: block;
}
input:-internal-autofill-previewed,
textarea:-internal-autofill-previewed,
input:-internal-autofill-selected,
textarea:-internal-autofill-selected {
  -webkit-text-fill-color: inherit !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
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: #3eb134;
  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: 1200px) {
  #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: 1200px) {
  .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: 1200px) {
  .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 ==================== */
@keyframes arrowAnimate {
  0% {
    transform: translate(0rem, 0rem);
  }
  50% {
    transform: translate(0rem, -0.1667rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
/* ==================== 动画 end ==================== */
/* ==================== 通用 - 无缝滚动 end ==================== */
.mxw-scroll {
  overflow: hidden;
}
.mxw-scroll .scroll-wrap {
  display: flex;
  align-items: stretch;
}
.mxw-scroll .scroll-item {
  flex-shrink: 0;
}
@media screen and (min-width: 751px) {
  .mxw-scroll .scroll-item {
    width: 23.5%;
    margin-right: 2%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-scroll .scroll-item {
    width: 48%;
    margin-right: 4%;
  }
}
/* ==================== 通用 - 无缝滚动 end ==================== */
/* ==================== 头部 start ==================== */
header {
  width: 100%;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.06);
}
header .welcome {
  overflow: hidden;
  background-color: #f7f7f7;
}
header .welcome .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
  color: #999;
}
header .welcome .mxw-box a {
  color: #666;
}
header .welcome .mxw-box a:hover {
  color: #3eb134;
}
header .pc-nav .mxw-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
header .pc-nav .logo {
  width: 510px;
  flex-shrink: 0;
  margin-bottom: 25px;
}
header .pc-nav .logo img{ height: 1.5rem}
header .pc-menu {
  display: flex;
  align-items: center;
  margin-right: -45px;
}
header .pc-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
header .pc-menu > li:hover > a {
  color: #3eb134 !important;
  background-color: #fff;
}
header .pc-menu > li:hover: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: 1px;
  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: 0.2333rem;
  color: #333;
  line-height: 1.2;
  padding: 0.2333rem;
}
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: 56px 25px;
  line-height: 1.2;
  width: 100%;
}
header .pc-menu > li > ul {
  border-top: 1px solid #ddd;
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.14);
  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: 1px solid #ddd;
}
header .pc-menu > li > ul > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 1px solid #ddd;
}
@media screen and (max-width: 1680px) {
  header .mxw-box {
    max-width: 92%;
  }
  header .pc-nav .mxw-box {
    align-items: center;
  }
  header .pc-nav .logo {
    width: 430px;
    margin-bottom: 0;
  }
  header .pc-menu > li > a {
    padding: 40px 20px;
    font-size: 17px;
  }
}
@media screen and (max-width: 1450px) {
  header .pc-menu > li > a {
    font-size: 16px;
    padding: 35px 15px;
  }
}
@media screen and (max-width: 1320px) {
  header .pc-nav .logo {
    width: 330px;
    margin-bottom: 0;
  }
}
/* ==================== 头部 end ==================== */
/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 1200px) {
  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;
    width: 100%;
    transform: translateX(-50%);
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.2);
  }
  .mxw-mob-nav .logo {
    display: block;
    flex-shrink: 0;
  }
  .mxw-mob-nav .logo img {
    height: 36px;
  }
  .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%;
    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;
  overflow: hidden;
}
.mxw-banner .swiper-slide {
  overflow: hidden;
}
.mxw-banner .swiper-slide img {
  width: 100%;
}
.mxw-banner .swiper-pagination {
  position: static;
}
.mxw-banner .swiper-pagination span {
  color: #666;
  line-height: 1.2;
}
.mxw-banner .swiper-pagination span:nth-child(1) {
  font-size: 0.4333rem;
color:#3eb134;
}
.mxw-banner .swiper-pagination span:nth-child(2) {
  font-size: 0.3333rem;
}
.mxw-banner .swiper-pagination span:nth-child(2):before {
  content: '/';
  line-height: 1;
  margin-left: 0.1667rem;
  margin-right: 0.1667rem;
  vertical-align: baseline;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: auto;
  margin: 0;
}
.mxw-banner .swiper-button-next:after,
.mxw-banner .swiper-button-prev:after {
  font-size: 0.2667rem;
  color: #666;
}
.mxw-banner .swiper-button-next {
  left: auto;
  right: 0;
}
.mxw-banner .swiper-button-prev {
  right: auto;
  left: 0;
}
.mxw-banner .tool {
  padding-left: 0.6667rem;
  padding-right: 0.6667rem;
  position: absolute;
  bottom: 1.3333rem;
  left: 2.3333rem;
  z-index: 9;
}
@media screen and (min-width: 1680px) {
  .banner-swiper {
    min-width: 1920px;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-banner .tool {
    bottom: 20px;
    padding: 0;
    left: 20px;
  }
  .mxw-banner .swiper-pagination span:nth-child(1) {
    font-size: 14px;
  }
  .mxw-banner .swiper-pagination span:nth-child(2) {
    font-size: 12px;
  }
}
/* ==================== 轮播图 end ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
  overflow: hidden;
  margin-bottom: 1rem;
  text-align: center;
}
.mxw-title .text1 {
  font-size: 0.7rem;
  font-weight: bold;
  color: #3eb134;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.mxw-title .text2 {
  font-size: 0.3rem;
  color: #666;
  line-height: 1.4;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .mxw-title .text2 {
    font-size: 12px;
    line-height: 1.6;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 关于我们 start ==================== */
.mxw-about {
  background: url(../jpg/img01.jpg) no-repeat bottom left #fff;
  background-size: auto 100%;
}
.mxw-about .info {
  padding-top: 1.0667rem;
  padding-bottom: 1.0667rem;
}
.mxw-about .info .text1 {
  font-size: 0.3667rem;
  color: #3eb134;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.mxw-about .info .text2 {
  font-size: 0.5833rem;
  line-height: 1.2;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.1667rem;
}
.mxw-about .info .text3 {
  font-size: 0.2333rem;
  color: #787878;
  line-height: 1.2;
  letter-spacing: 1.5px;
}
.mxw-about .info .desc {
  margin-top: 0.5rem;
  font-size: 0.3rem;
  text-align: justify;
  color: #666;
  line-height: 2;
  margin-bottom: 1rem;
}
.mxw-about .itembox {
  padding-right: 1.3333rem;
}
.mxw-about .item .number {
  margin-bottom: 0.25rem;
}
.mxw-about .item .top {
  display: block;
  text-align: center;
}
.mxw-about .item .top span {
  font-size: 1.05rem;
  line-height: 1;
  color: #3eb134;
  font-family: 'Impact';
  margin-right: 0.0833rem;
}
.mxw-about .item .top i {
  font-size: 0.2333rem;
  color: #666;
  line-height: 1.2;
}
.mxw-about .item .text {
  font-size: 0.2833rem;
  color: #666;
  line-height: 1.2;
  width: 100%;
  text-align: center;
}
.mxw-about .mxw-more {
  font-size: 0.3rem;
  color: #fff;
  width: 2.5rem;
  height: 0.7333rem;
  border-radius: 0.3667rem 0 0.3667rem 0;
  line-height: 0.7333rem;
  display: block;
  background-color: #3eb134;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
  margin-top: 0.8333rem;
}
.mxw-about .mxw-more:hover {
  transform: translateX(0.1667rem);
  box-shadow: 0 0 0.1667rem -0.0333rem #3eb134;
  color: #fff !important;
}
.mxw-about .image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1200px) {
  .mxw-about .mxw-box {
    display: flex;
    align-items: stretch;
  }
  .mxw-about .info {
    padding-right: 1.8333rem;
  }
  .mxw-about .image {
    height: auto;
    width: 14.45rem;
    flex-shrink: 0;
    margin-right: -3.5rem;
    overflow: hidden;
  }
  .mxw-about .image:hover .bg-image {
    transform: scale(1.1);
  }
  .mxw-about .bg-image {
    width: 100%;
    height: 100%;
    transition: all 0.4s;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-about .body .left {
    width: 12rem;
    height: 8.4rem;
  }
  .mxw-about .body .right {
    padding-top: 1.4667rem;
    padding-bottom: 1.1667rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-about .info {
    padding: 0;
  }
  .mxw-about .info .text1 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .mxw-about .info .text2 {
    font-size: 18px;
  }
  .mxw-about .info .text3 {
    font-size: 12px;
    letter-spacing: 0;
  }
  .mxw-about .info .desc {
    margin-top: 20px;
    font-size: 13px;
    line-height: 2;
    margin-bottom: 30px;
  }
  .mxw-about .itembox {
    padding-right: 0;
    justify-content: center;
  }
  .mxw-about .item .top {
    margin-bottom: 5px;
  }
  .mxw-about .item .top span {
    font-size: 40px;
    margin-right: 5px;
  }
  .mxw-about .mxw-more {
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
  }
  .mxw-about .image {
    margin-top: 30px;
  }
  .mxw-about .bg-image {
    display: none;
  }
}
/* ==================== 关于我们 end ==================== */
/* ==================== 产品中心 start ==================== */
.mxw-product {
  background-color: #fff;
}
.mxw-product .mxw-cate {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.mxw-product .mxw-cate .cate-item {
  height: 1.0833rem;
  line-height: 1.0833rem;
  width: 18.75%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3;
  font-size: 0.3rem;
  color: #333;
}
.mxw-product .mxw-cate .cate-item:hover,
.mxw-product .mxw-cate .cate-item.active {
  background-color: #3eb134;
  color: #fff;
}
.mxw-product .mxw-cate .cate-item:hover .icon img,
.mxw-product .mxw-cate .cate-item.active .icon img {
  transform: translateY(0);
}
.mxw-product .mxw-cate .cate-item .icon {
  width: 0.5rem;
  height: 0.5rem;
  overflow: hidden;
  margin-right: 0.1667rem;
}
.mxw-product .mxw-cate .cate-item .icon img {
  transform: translateY(-50%);
  display: block;
}
.mxw-product .body {
  position: relative;
  align-items: stretch;
}
.mxw-product .body .product-swiper{
  width: 100%;
  height: 100%;
}

.mxw-product .product-swiper .swiper-slide {
  display: flex;
  align-items: flex-start;

}
.mxw-product .itembox {
  width: 100%;
}
.mxw-product .item {
  overflow: hidden;
  display: block;
  position: relative;
  background-color: #f3f3f3;
  padding-top: 1.1667rem;
  transition: box-shadow 0.4s;
}
.mxw-product .item:hover {
  box-shadow: 0rem 0rem 0.2167rem 0rem rgba(6, 0, 1, 0.19);
}
.mxw-product .item .info {
  position: absolute;
  top: 0.6667rem;
  left: 0.5833rem;
  width: 2.5rem;
}
.mxw-product .item .text1 {
  font-size: 0.4rem;
  color: #3eb134;
  line-height: 1.3;
  font-weight: bold;
}
.mxw-product .item .text2 {
  font-size: 0.3333rem;
  color: #3eb134;
  line-height: 1.3;
}
.mxw-product .item .arrow {
  margin-top: 0.8333rem;
  width: 0.6667rem;
  display: block;
}
.mxw-product .item .image {
  margin-right: 0;
  margin-left: auto;
  display: block;
  width: 7rem;
  margin-right: -0.8rem;
}
@media screen and (min-width: 1200px) {
  .mxw-product .left {
    width: 33.5%;
    flex-shrink: 0;
    margin-right: 0.5833rem;
  }
  .mxw-product .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
  }
  .mxw-product .item {
    padding-top: 0.9rem;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-product .left {
    width: 31.6%;
  }
  .mxw-product .item .image {
    width: 5.5rem;
    margin-right: -0.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-product .mxw-cate {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .mxw-product .mxw-cate .cate-item {
    width: 49%;
    margin-right: 2%;
    font-size: 12px;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
  }
  .mxw-product .mxw-cate .cate-item:nth-child(2) ~ .cate-item {
    margin-top: 2%;
  }
  .mxw-product .mxw-cate .cate-item:nth-child(2n) {
    margin-right: 0;
  }
  .mxw-product .mxw-cate .cate-item .icon {
    width: 20px;
    height: 20px;
  }
  .mxw-product .product-swiper .swiper-slide .left {
    display: none;
  }
  .mxw-product .itembox {
    align-items: stretch;
  }
  .mxw-product .item {
    padding: 20px 10px 0;
    width: 48%;
    margin-right: 4%;
  }
  .mxw-product .item:nth-child(2n) {
    margin-right: 0;
  }
  .mxw-product .item:nth-child(2) {
    margin-top: 0!important;
  }
  .mxw-product .item:nth-child(2) ~ .item {
    margin-top: 4%;
  }
  .mxw-product .item .text1 {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mxw-product .item .text2 {
    font-size: 12px;
  }
  .mxw-product .item .arrow {
    margin-top: 20px;
    display: none;
  }
  .mxw-product .item .info {
    position: static;
    width: 100%;
  }
  .mxw-product .item .image {
    margin: 0 auto;
    margin-top: 20px;
    width: 100%;
  }
}
/* ==================== 产品中心 end ==================== */
/* ==================== 热销推荐 start ==================== */
.mxw-advantage {
  background-color: #fff;
}
.mxw-advantage .advantage-swiper {
  background: url(../jpg/img08.jpg) no-repeat center;
  background-size: cover;
}
.mxw-advantage .swiper-slide {
  padding: 1.6667rem 0.6667rem;
  color: #fff;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  transition: background-color 0.4s;
}
.mxw-advantage .swiper-slide:hover {
  background-color: rgba(62, 177, 52, 0.72);
}
.mxw-advantage .swiper-slide .icon,
.mxw-advantage .swiper-slide .head,
.mxw-advantage .swiper-slide .desc {
  transition: transform 0.4s;
}
.mxw-advantage .swiper-slide .icon {
  display: block;
  width: 0.8333rem;
  flex-shrink: 0;
  margin-bottom: 1rem;
}
.mxw-advantage .swiper-slide .head {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.mxw-advantage .swiper-slide .head .text1 {
  font-size: 0.5rem;
  line-height: 1.2;
}
.mxw-advantage .swiper-slide .head .text2 {
  font-size: 0.3rem;
  line-height: 1.2;
}
.mxw-advantage .swiper-slide .desc {
  font-size: 0.2667rem;
  line-height: 2em;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .mxw-advantage .advantage-swiper {
    min-height: 11.6667rem;
    height: 11.6667rem;
  }
  .mxw-advantage .swiper-slide:hover .icon,
  .mxw-advantage .swiper-slide:hover .head,
  .mxw-advantage .swiper-slide:hover .desc {
    transform: translateY(-1.6667rem);
  }
  .mxw-advantage .swiper-slide:hover .desc:after {
    content: "";
    display: block;
    width: 1rem;
    height: 0.0333rem;
    background-color: #fff;
    bottom: 1.6667rem;
    position: absolute;
    bottom: -1.3333rem;
    left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-advantage .mxw-title {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mxw-advantage .swiper-wrapper {
    flex-wrap: wrap;
  }
  .mxw-advantage .swiper-slide {
    padding: 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.4);
  }
  .mxw-advantage .swiper-slide .icon {
    width: 30px;
    margin-bottom: 20px;
    display: none;
  }
  .mxw-advantage .swiper-slide .head {
    margin-bottom: 10px;
  }
  .mxw-advantage .swiper-slide .head .text1 {
    font-size: 18px;
    font-weight: bold;
  }
  .mxw-advantage .swiper-slide .head .text2 {
    font-size: 12px;
  }
  .mxw-advantage .swiper-slide .desc {
    font-size: 12px;
  }
}
/* ==================== 热销推荐 end ==================== */
/* ==================== 选择我们的理由 start ==================== */
.mxw-brand {
  background: url(../jpg/img24.jpg) no-repeat center bottom;
}
.mxw-brand .mxw-title .text1 {
  color: #000;
}
.mxw-brand .mxw-title .text2 {
  color: #666;
}
.mxw-brand .brand-swiper {
  margin-bottom: 1.6667rem;
}
.mxw-brand .brand-swiper .swiper-wrapper {
  flex-flow: row wrap;
}
.mxw-brand .brand-swiper .swiper-slide {
  margin-top: 0.4rem !important;
}
.mxw-brand .body {
  display: flex;
  align-items: flex-start;
}
.mxw-brand .body .info {
  min-width: 0;
  flex-grow: 1;
}
.mxw-brand .body .info .text1 {
  font-size: 0.5667rem;
  color: #3eb134;
  line-height: 1.4;
  font-weight: bold;
  padding-right: 0.3333rem;
}
.mxw-brand .body .info .text1:after {
  content: "";
  display: block;
  width: 0.9333rem;
  height: 0.0167rem;
  background-color: #000;
  margin-top: 0.6667rem;
  margin-bottom: 0.5rem;
}
.mxw-brand .body .info .desc {
  font-size: 0.3rem;
  color: #666;
  line-height: 2.5em;
  text-align: justify;
}
.mxw-brand .body .right video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
@media screen and (min-width: 1200px) {
  .mxw-brand .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
  }
  .mxw-brand .swiper-slide {
    max-width: 5rem;
  }
  .mxw-brand .body .right {
    width: 68.5%;
    flex-shrink: 0;
    margin-left: 1.8333rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-brand .body {
    flex-wrap: wrap;
  }
  .mxw-brand .body .info .text1 {
    padding-right: 0;
    font-size: 18px;
  }
  .mxw-brand .body .info .text1:after {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .mxw-brand .body .info .desc {
    font-size: 14px;
    line-height: 2em;
    margin-bottom: 30px;
  }
  .mxw-brand .mxw-title {
    margin-bottom: 20px;
  }
  .mxw-brand .mxw-title .text1 {
    font-size: 18px;
  }
  .mxw-brand .brand-swiper {
    margin-bottom: 30px;
  }
  .mxw-brand .brand-swiper .swiper-slide {
    margin-top: 10px!important;
  }
}
/* ==================== 选择我们的理由 end ==================== */
/* ==================== 新闻资讯 start ==================== */
.mxw-news {
  background: #fbfbfb;
}
.mxw-news .mxw-cate {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.mxw-news .mxw-cate .cate-item {
  text-align: center;
  display: block;
  width: 14.6875%;
  padding-top: 0.3333rem;
  padding-bottom: 0.3333rem;
  font-size: 0.3rem;
  color: #333;
  margin-right: 0.8333rem;
  flex-shrink: 0;
  background-color: #f3f3f3;
}
.mxw-news .mxw-cate .cate-item.active {
  background-color: #3eb134;
  color: #fff;
}
.mxw-news .mxw-cate .cate-item:last-child {
  margin-right: 0;
}
.mxw-news .item {
  display: block;
}
.mxw-news .item .date {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.5rem;
}
.mxw-news .item .date .day {
  font-size: 0.5rem;
  color: #000;
  line-height: 1;
  margin-right: 0.1667rem;
}
.mxw-news .item .date .year {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.2;
}
.mxw-news .item .image {
  margin-bottom: 0.5rem;
}
.mxw-news .item .info .title {
  font-size: 0.3667rem;
  color: #333;
  line-height: 1.8em;
  height: 3.6em;
  margin-bottom: 0.6667rem;
}
.mxw-news .item .info .desc {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.6;
  text-align: justify;
  height: 3.2em;
}
.mxw-news .item .info .mxw-more {
  display: block;
  margin-top: 0.8333rem;
  width: 2.1667rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.3333rem;
  background: url(../png/img40.png) repeat-x center bottom;
  transition: transform 0.4s;
}
.mxw-news .item .info .mxw-more:hover {
  transform: translateX(0.1667rem);
}
.mxw-news .item .info .mxw-more:after {
  content: "";
  display: block;
  width: 0.2667rem;
  height: 0.1667rem;
  background: url(../png/img28.png) no-repeat center;
  background-size: 100%;
}
@media screen and (min-width: 1200px) {
  .mxw-news .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
  }
  .mxw-news .swiper-slide {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .mxw-news .item {
    width: 28.125%;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-news .mxw-cate {
    margin-bottom: 30px;
  }
  .mxw-news .mxw-cate .cate-item {
    width: 32%;
    margin-right: 0;
    padding: 8px 10px;
    font-size: 12px;
  }
  .mxw-news .mxw-cate .cate-item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .mxw-news .item {
    margin-bottom: 30px;
  }
  .mxw-news .item:last-child {
    margin-bottom: 0;
  }
  .mxw-news .item .date {
    margin-bottom: 20px;
  }
  .mxw-news .item .date .day {
    font-size: 20px;
    margin-right: 6px;
  }
  .mxw-news .item .date .year {
    font-size: 12px;
  }
  .mxw-news .item .image {
    margin-bottom: 15px;
  }
  .mxw-news .item .info .title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    max-height: 2.8em;
    height: auto;
    margin-bottom: 10px;
  }
  .mxw-news .item .info .mxw-more {
    font-size: 12px;
    padding-bottom: 10px;
    margin-top: 20px;
  }
}
/* ==================== 新闻资讯 end ==================== */
/* ==================== 友情链接 start ==================== */
.firend-link {
  position: relative;
  width: 2.3333rem;
  flex-shrink: 0;
}
.firend-link .link-head {
  background-color: #373737;
  color: #414141;
  cursor: pointer;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.1667rem;
  padding-right: 0.1667rem;
}
.firend-link .link-head:hover + .link-list {
  opacity: 1;
  visibility: visible;
  transform: perspective(20rem) rotateX(0deg);
  -webkit-transform: perspective(20rem) rotateX(0deg);
  -moz-transform: perspective(20rem) rotateX(0deg);
  -ms-transform: perspective(20rem) rotateX(0deg);
  -o-transform: perspective(20rem) rotateX(0deg);
}
.firend-link .link-head .text {
  font-size: 0.2333rem;
  color: #bdbdbd;
  line-height: 1.2;
}
.firend-link .link-head:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(135deg) translateY(50%);
  background: none;
}
.firend-link .link-list {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  max-height: 3.3333rem;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
}
.firend-link .link-list::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0.0667rem;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 0.0167rem;
}
.firend-link .link-list::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 0.0667rem;
  box-shadow: inset 0 0 0.0833rem rgba(0, 0, 0, 0.2);
  background: #535353;
}
.firend-link .link-list::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 0.0833rem rgba(0, 0, 0, 0.2);
  border-radius: 0.0667rem;
  background: #ededed;
}
.firend-link .link-list:hover {
  opacity: 1;
  visibility: visible;
}
.firend-link .link-list > li {
  width: 100%;
  font-size: 0.2333rem;
  line-height: 1.2;
  padding: 0.1667rem 0.3333rem;
  border-bottom: 0.0167rem solid #f5f5f5;
}
.firend-link .link-list > li a {
  display: block;
  width: 100%;
}
.firend-link .mxw-online-list {
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  width: 100%;
  left: 0;
  border: 1px solid #ddd;
  display: none;
  z-index: 9;
}
.firend-link .mxw-online-list > .mxw-box {
  padding: 0 0.3333rem;
  width: 100%;
  max-width: 100%;
  text-align: left;
  background: #fff;
  overflow: auto;
  max-height: 3.3333rem;
}
.firend-link .mxw-online-list > .mxw-box::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0.0667rem;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 0.0167rem;
}
.firend-link .mxw-online-list > .mxw-box::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 0.0667rem;
  box-shadow: inset 0 0 0.0833rem rgba(0, 0, 0, 0.2);
  background: #535353;
}
.firend-link .mxw-online-list > .mxw-box::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 0.0833rem rgba(0, 0, 0, 0.2);
  border-radius: 0.0667rem;
  background: #ededed;
}
.firend-link .mxw-online-list a {
  display: block;
  padding-right: 0.3333rem;
  color: #000;
  font-size: 0.2rem;
  padding: 10px 0;
  line-height: 1.6;
  border-bottom: 1px solid #ddd;
}
.firend-link .mxw-online-list a:hover {
  color: #3eb134;
}
.firend-link .mxw-online-list a:last-child {
  border-bottom: 0;
}
/* ==================== 友情链接 end ==================== */
/* ==================== 内页 - 新闻列表2 start ==================== */
.ny-news .item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  transition: all 0.4s;
  border: 0.0167rem solid #dedede;
  box-shadow: 0rem 0rem 0rem 0rem rgba(0, 0, 0, 0.14);
  margin-bottom: 0.6667rem;
}
.ny-news .item:hover {
  box-shadow: 0rem 0rem 0.1667rem 0rem rgba(0, 0, 0, 0.14);
}
.ny-news .item:hover .title {
  color: #3eb134;
}
.ny-news .item .image {
  flex-shrink: 0;
  width: 4.6667rem;
  margin-right: 0.5rem;
}
.ny-news .item .info {
  min-width: 0;
  flex-grow: 1;
}
.ny-news .item .head {
  display: flex;
  align-items: center;
  color: #888;
  padding-bottom: 0.1667rem;
  border-bottom: 0.0167rem solid #888;
  margin-bottom: 0.3333rem;
}
.ny-news .item .title {
  flex-grow: 1;
  font-size: 0.4rem;
  line-height: 1.2;
}
.ny-news .item .time {
  font-size: 0.2667rem;
  line-height: 1.2;
  flex-shrink: 0;
}
.ny-news .item .desc {
  font-size: 0.2667rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.ny-news .item .more {
  width: 2.0833rem;
  height: 0.6rem;
  line-height: 0.6rem;
  background-color: #fff;
  border: solid 0.0167rem #dedede;
  display: block;
  text-align: center;
  font-size: 0.2rem;
  color: #888888;
}
@media screen and (max-width: 1200px) {
  .ny-news .item {
    padding: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .ny-news .item .image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .ny-news .item .info {
    width: 100%;
  }
  .ny-news .item .head {
    margin-bottom: 10px;
  }
  .ny-news .item .title {
    font-size: 16px;
  }
  .ny-news .item .time {
    font-size: 12px;
  }
  .ny-news .item .desc {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.8em;
    height: 3.6em;
    margin-bottom: 10px;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: inherit;
  }
  .ny-news .item .more {
    width: 100%;
    padding: 8px 20px;
    font-size: 12px;
    height: auto;
    line-height: inherit;
  }
}
/* ==================== 内页 - 新闻列表2 end ==================== */
/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
  padding: 0.7258rem 0.4032rem;
  padding-top: 0;
  margin-bottom: 0.5645rem;
}
.ny-news-desc > .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 {
  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 .info .tip + .text {
  border-left: 0;
}
.ny-news-desc .article {
  line-height: 1.8;
  text-align: justify;
  font-size: 0.2581rem;
}
.ny-news-desc .article img {
  display: block;
  margin: 0 auto;
}
.ny-news-desc .article p {
  line-height: 1.8;
}
@media screen and (max-width: 1200px) {
  .ny-news-desc {
    padding: 0;
    background: none;
    margin-bottom: 0;
  }
  .ny-news-desc > .mxw-box {
    padding: 30px 20px;
  }
  .ny-news-desc .article {
    font-size: 0.28rem;
  }
  .ny-news-desc .info {
    padding-bottom: 0.2rem;
  }
  .ny-news-desc .info .text {
    margin-right: 0.1rem;
    padding-left: 0.1rem;
    line-height: 2em;
    display: inline;
  }
}
/* ==================== 新闻详情 end ==================== */
/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact {
  overflow: hidden;
  background: url(../jpg/map.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: 45%;
  flex-shrink: 0;
}
.ny-contact .info {
  min-width: 0;
  flex-grow: 1;
  padding: 0.9167rem;
}
.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 (max-width: 1200px) {
  .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 ==================== */
.ny-message {
  overflow: hidden;
}
.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: #3eb134;
}
.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: #3eb134;
  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 #3eb134;
}
@media screen and (min-width: 1200px) {
  .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: 1200px) {
  .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 ==================== */
.job-itembox .job-item {
  margin-bottom: 0.6667rem;
}
.job-itembox .job-item:last-child {
  margin-bottom: 0;
}
.job-itembox .job-item .head {
  cursor: pointer;
  background-image: linear-gradient(90deg, #3eb134 9%, #55cf4b 100%);
  height: 1.05rem;
  line-height: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.5rem;
  padding-right: 0.8333rem;
}
.job-itembox .job-item .head.active:after {
  transform: rotateX(-180deg);
}
.job-itembox .job-item .head:after {
  content: "";
  display: block;
  background: url(../png/job-btn.png) no-repeat center;
  background-size: 100%;
  width: 0.5rem;
  height: 0.5rem;
  transition: all 0.4s;
}
.job-itembox .job-item .head .text {
  font-size: 0.3333rem;
  color: #fff;
  font-weight: bold;
}
.job-itembox .job-item .body {
  display: none;
  border: 1px solid #d7d7d7;
}
.job-itembox .job-item .itembox {
  display: flex;
  align-items: flex-start;
  border-top: 0;
  padding: 0.6667rem 0.5833rem;
}
.job-itembox .job-item .item {
  position: relative;
}
.job-itembox .job-item .item:after {
  content: "";
  display: block;
  width: 1px;
  height: 3.1667rem;
  background: #d5d5d5;
  position: absolute;
  right: 0;
  top: 0;
}
.job-itembox .job-item .item:last-child:after {
  display: none;
}
.job-itembox .job-item .item p {
  font-size: 0.3rem;
}
.job-itembox .job-item .item.item1 {
  width: 4.3333rem;
  flex-shrink: 0;
}
.job-itembox .job-item .item.item1 .text {
  font-size: 0.3333rem;
  line-height: 1.2;
  margin-bottom: 0.6667rem;
}
.job-itembox .job-item .item.item1 .text02 {
  margin-bottom: 0.8333rem;
}
.job-itembox .job-item .item.item2 {
  width: 9.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.job-itembox .job-item .item.item3 {
  flex-grow: 1;
  min-width: 0;
  padding-left: 1rem;
}
.job-itembox .job-item .item .item-head {
  font-size: 0.3333rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.job-itembox .job-item .desc {
  font-size: 0.3333rem;
  color: #333;
  line-height: 2;
}
.job-itembox .job-item .mxw-btn {
  display: block;
  font-size: 0.3rem;
  width: 2.7333rem;
  text-align: center;
  height: 0.7333rem;
  line-height: 0.7333rem;
  background: #fff;
  color: #3eb134;
  border: solid 0.0167rem #3eb134;
}
@media screen and (max-width: 1200px) {
  .job-itembox .job-item {
    margin-bottom: 15px;
  }
  .job-itembox .job-item .head {
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
  }
  .job-itembox .job-item .head .text {
    font-size: 15px;
  }
  .job-itembox .job-item .head:after {
    width: 15px;
    height: 15px;
  }
  .job-itembox .job-item .itembox {
    flex-wrap: wrap;
    padding: 20px;
  }
  .job-itembox .job-item .item {
    width: 100%!important;
  }
  .job-itembox .job-item .item::after {
    display: none;
  }
  .job-itembox .job-item .item.item1 .text {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .job-itembox .job-item .item.item2 {
    padding: 0;
    margin-bottom: 30px;
  }
  .job-itembox .job-item .item.item3 {
    padding: 0;
  }
  .job-itembox .job-item .item .item-head {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .job-itembox .job-item .item p {
    font-size: 14px;
  }
  .job-itembox .job-item .mxw-btn {
    width: 90%;
    font-size: 14px;
    height: auto;
    line-height: inherit;
    padding: 8px 20px;
    margin: 0 auto 20px;
  }
  .ny-job .section03 {
    padding-bottom: 0;
  }
}
/* ==================== 通用 - 招聘卡片 end ==================== */
/* ==================== 产品详情页 start ==================== */
.ny-product-desc {
  overflow: hidden;
}
.ny-product-desc .product-image {
  width: 10rem;
  margin-right: 0.6667rem;
  flex-shrink: 0;
  position: relative;
  z-index: 9;
}
.ny-product-desc .product-image img {
  width: 100%;
}
.ny-product-desc .product-desc {
  flex-grow: 1;
}
.ny-product-desc .product-desc .title {
  font-size: 0.4667rem;
  padding-bottom: 0.3333rem;
  border-bottom: 0.0167rem solid #ddd;
  margin-bottom: 0.3333rem;
  font-weight: bold;
  color: #3eb134;
}
.ny-product-desc .product-desc .desc {
  font-size: 0.3rem;
  color: #666;
  line-height: 1.8;
}
.ny-product-desc .bottom {
  margin-top: 0.6667rem;
  font-size: 0.2667rem;
  line-height: 1.8;
  text-align: justify;
}
.easyzoom-flyout img {
  max-width: inherit!important;
  width: auto!important;
}
@media screen and (max-width: 1200px) {
  .ny-product-desc {
    padding: 0;
  }
  .ny-product-desc .product-image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    pointer-events: none;
  }
  .ny-product-desc .product-desc .title {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .ny-product-desc .top {
    flex-flow: column;
  }
  .ny-product-desc .product-desc .desc {
    font-size: 14px;
  }
  .ny-product-desc .bottom {
    margin-top: 15px;
  }
}
/* ==================== 产品详情页 end ==================== */
/* ==================== 通用 - 内页导航 start ==================== */
.ny-nav {
  position: relative;
  z-index: 9;
  width: 100%;
  background-color: #fff;
  box-shadow: 0rem 0.05rem 0.1rem 0rem rgba(70, 70, 70, 0.14);
}
.ny-nav .mxw-box {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ny-nav .nav-item {
  display: block;
  font-size: 0.3333rem;
  color: #333;
  line-height: 1.2;
  padding: 0.3333rem 0;
  margin: 0 1.1667rem;
  text-align: center;
  position: relative;
}
.ny-nav .nav-item.active:after,
.ny-nav .nav-item:hover:after {
  width: 100%;
}
.ny-nav .nav-item:after {
  content: "";
  width: 0;
  height: 2px;
  background-color: #3eb134;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s;
}
@media screen and (min-width: 1200px) {
  .ny-nav {
    position: sticky;
    top: 0;
  }
}
@media screen and (max-width: 1200px) {
  .ny-nav .mxw-box {
    justify-content: flex-start;
  }
  .ny-nav .nav-item {
    width: 31%;
    margin: 0;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .ny-nav .nav-item:nth-child(3n-1) {
    margin-left: 3.5%;
    margin-right: 3.5%;
  }
  .ny-nav .nav-item:nth-child(3) ~ .nav-item {
    margin-top: 2%;
  }
}
/* ==================== 通用 - 内页导航 end ==================== */
/* ==================== 内页 - 产品中心 end ==================== */
.ny-product .mxw-cate {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 0.6667rem;
}
.ny-product .mxw-cate .cate-item {
  height: 1.0833rem;
  line-height: 1.0833rem;
  width: 18.75%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3;
  font-size: 0.3rem;
  color: #333;
  margin-right: 20px;
}
.ny-product .mxw-cate .cate-item:last-child {
  margin-right: 0;
}
.ny-product .mxw-cate .cate-item:hover,
.ny-product .mxw-cate .cate-item.active {
  background-color: #3eb134;
  color: #fff;
}
.ny-product .mxw-cate .cate-item:hover .icon img,
.ny-product .mxw-cate .cate-item.active .icon img {
  transform: translateY(0);
}
.ny-product .mxw-cate .cate-item .icon {
  width: 0.5rem;
  height: 0.5rem;
  overflow: hidden;
  margin-right: 0.1667rem;
}
.ny-product .mxw-cate .cate-item .icon img {
  transform: translateY(-50%);
  display: block;
}
.ny-product .item .image {
  border: solid 1px #e1e1e1;
}
.ny-product .item .title {
  text-align: center;
  background-color: #3eb134;
  color: #fff;
  padding: 0.3333rem;
  font-size: 0.3rem;
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .ny-product .mxw-cate {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .ny-product .mxw-cate .cate-item {
    width: 49%;
    margin-right: 2%;
    font-size: 12px;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
  }
  .ny-product .mxw-cate .cate-item:nth-child(2) ~ .cate-item {
    margin-top: 2%;
  }
  .ny-product .mxw-cate .cate-item:nth-child(2n) {
    margin-right: 0;
  }
  .ny-product .mxw-cate .cate-item .icon {
    width: 20px;
    height: 20px;
  }
  .ny-product .item .title {
    font-size: 12px;
    padding: 8px 10px;
  }
}
/* ==================== 内页 - 产品中心 end ==================== */
/* ==================== 内页 - 研发实力 start ==================== */
.ny-about .section1 .bottom {
  display: flex;
  align-items: stretch;
  margin-top: 0.1rem;
}
.ny-about .section1 .bottom .left {
  width: 11.3333rem;
  flex-shrink: 0;
  padding: 0.3333rem 0.6667rem;
  background-image: linear-gradient(0deg, #319d27 0%, #3eb134 100%);
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  margin-right: 0.1rem;
}
.ny-about .section1 .bottom .head {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: #fff;
  font-size: 0.2667rem;
  margin-bottom: 0.3333rem;
}
.ny-about .section1 .bottom .head strong {
  font-size: 0.4333rem;
  font-weight: 400;
}
.ny-about .section1 .bottom .desc {
  font-size: 0.25rem;
  color: #fff;
  line-height: 2;
  text-align: justify;
}
.ny-about .section1 .mxw-scroll{margin-top:0.5rem;}
.ny-about .section1 .scroll-item{
    padding: 0 0.3333rem;
}
.ny-about .section1 .scroll-item .image{
    border-radius: 100%;
    overflow: hidden;
    border: 0.0167rem solid #ddd;
    margin-bottom: 0.3333rem;
}
.ny-about .section1 .scroll-item .text1{
    color: #33a029;
    text-align: center;
    font-weight: bold;
    font-size: 0.3rem;
    margin-bottom: 0.2333rem;
    padding-bottom: 0.2333rem;
    border-bottom: 0.0167rem dashed #ddd;
}
.ny-about .section1 .scroll-item .text2{
    font-size: 0.25rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.0833rem;
    text-align: center;
}
.ny-about .section1 .scroll-item .desc{
    font-size: 0.2333rem;
    line-height: 1.9;
    color: #888;
    text-align: justify;
}
.ny-about .section2 {
  background-color: #f7fcf7;
}
.ny-about .section2 .image {
  border: 0.1333rem solid #fec019;
}
.ny-about .section2 .top {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.3333rem;
}
.ny-about .section2 .left {
  width: 49.5%;
  flex-shrink: 0;
  justify-content: space-between;
}
.ny-about .section2 .left .image {
  width: 49%;
  margin-left: 0!important;
}
.ny-about .section2 .info {
  margin-left: 0.3333rem;
}
.ny-about .section2 .info .text1 {
  font-size: 0.7rem;
  font-weight: bold;
  color: #3eb134;
  display: block;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.ny-about .section2 .info .desc {
  font-size: 0.2667rem;
  color: #666;
  line-height: 2.2em;
  text-align: justify;
}
@media screen and (min-width: 1200px) {
  .ny-about .section2 .bottom .image {
    width: 24.25%;
    margin-right: 1%;
  }
  .ny-about .section2 .bottom .image:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .ny-about .section1 .bottom .left {
    width: 100%;
    padding: 15px;
  }
  .ny-about .section1 .bottom .image {
    display: none;
  }
  .ny-about .section1 .bottom .head {
    flex-wrap: wrap;
  }
  .ny-about .section1 .bottom .head strong {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
  }
  .ny-about .section2 {
    background-color: #f7fcf7;
  }
  .ny-about .section2 .info {
    margin-left: 0;
  }
  .ny-about .section2 .info .text1 {
    font-size: 24px;
  }
  .ny-about .section2 .info .desc {
    font-size: 14px;
    line-height: 2em;
  }
  .ny-about .section2 .image {
    border-width: 4px;
  }
  .ny-about .section2 .mxw-box {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ny-about .section2 .top {
    flex-wrap: wrap;
  }
  .ny-about .section2 .left {
    width: 100%;
    display: none;
  }
  .ny-about .section2 .left .image {
    margin-top: 0;
  }
  .ny-about .section1 .scroll-item{
    padding:10px;
  }
}
/* ==================== 内页 - 研发实力 end ==================== */
/* ==================== 内页 - 荣誉证书 start ==================== */
.ny-album .section1 .item {
  display: block;
  background-color: #f8f8f8;
  padding: 0.4167rem 0.3333rem;
}
.ny-album .section1 .item:hover .title {
  color: #3eb134;
  font-weight: bold;
}
.ny-album .section1 .item .title {
  font-size: 0.3333rem;
  color: #333;
  line-height: 1.4;
}
.ny-album .section1 .item .bottom {
  margin-top: 0.3333rem;
  font-size: 0.2667rem;
  color: #666;
  position: relative;
}
.ny-album .section1 .item .bottom:after {
  content: "→ ";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ny-album .section1 .item .image {
  margin-top: 0.5rem;
  display: block;
  width: 100%;
}
.ny-album .section2 {
  background-color: #f8f8f8;
}
.ny-album .section2 .mxw-box {
  padding-top: 60px;
  padding-bottom: 60px;
}
.ny-album .section2 .image {
  text-align: center;
}
.ny-album .section2 .image img {
  width: auto;
}
@media screen and (max-width: 1200px) {
  .ny-album .section1 .item {
    padding: 15px;
  }
  .ny-album .section1 .item .title {
    font-size: 14px;
    font-weight: bold;
  }
  .ny-album .section1 .item .image {
    margin-top: 15px;
  }
  .ny-album .section2 .mxw-box {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
/* ==================== 内页 - 荣誉证书 end ==================== */
/* ==================== 内页 - 关于我们 start ==================== */
.ny-about2 {
  overflow: hidden;
}
.ny-about2 .section1 .info {
  min-width: 0;
  flex-grow: 1;
  position: relative;
  z-index: 9;
}
.ny-about2 .section1 .info .text1 {
  font-size: 0.3667rem;
  color: #3eb134;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.ny-about2 .section1 .info .text2 {
  font-size: 0.5833rem;
  line-height: 1.2;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.1667rem;
}
.ny-about2 .section1 .info .text3 {
  font-size: 0.2333rem;
  color: #787878;
  line-height: 1.2;
  letter-spacing: 1.5px;
}
.ny-about2 .section1 .info .desc {
  margin-top: 0.5rem;
  font-size: 0.3rem;
  text-align: justify;
  color: #666;
  line-height: 2;
  margin-bottom: 1rem;
}
.ny-about2 .section1 .info .desc p {
  margin-bottom: 1em;
}
.ny-about2 .section1 .info .desc p:last-child {
  margin-bottom: 0;
}
.ny-about2 .section1 .itembox {
  background-color: #fff;
  padding-top: 0.6667rem;
  padding-bottom: 0.6667rem;
  width: 23.3333rem;
  box-shadow: 0rem 0rem 0.1167rem 0rem rgba(6, 0, 1, 0.15);
  margin-right: -8.1667rem;
  position: relative;
  z-index: 9;
}
.ny-about2 .section1 .item .number {
  margin-bottom: 0.25rem;
}
.ny-about2 .section1 .item .top {
  display: block;
  text-align: center;
}
.ny-about2 .section1 .item .top span {
  font-size: 1.05rem;
  line-height: 1;
  color: #3eb134;
  font-family: 'Impact';
  margin-right: 0.0833rem;
}
.ny-about2 .section1 .item .top i {
  font-size: 0.2333rem;
  color: #666;
  line-height: 1.2;
}
.ny-about2 .section1 .item .text {
  font-size: 0.2833rem;
  color: #666;
  line-height: 1.2;
  width: 100%;
  text-align: center;
}
.ny-about2 .section1 .mxw-more {
  font-size: 0.3rem;
  color: #fff;
  width: 2.5rem;
  height: 0.7333rem;
  border-radius: 0.3667rem 0 0.3667rem 0;
  line-height: 0.7333rem;
  display: block;
  background-color: #3eb134;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
  margin-top: 0.8333rem;
}
.ny-about2 .section1 .mxw-more:hover {
  transform: translateX(0.1667rem);
  box-shadow: 0 0 0.1667rem -0.0333rem #3eb134;
  color: #fff !important;
}
.ny-about2 .section1 .image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 12.5rem;
  flex-shrink: 0;
  margin-right: -4.46667rem;
}
.ny-about2 .section2 {
  background: url(../jpg/img60.jpg) no-repeat center bottom;
  background-size: cover;
}
.ny-about2 .section2 .item {
  text-align: center;
  padding: 0.8333rem 0.3333rem;
  background-color: #fff;
  box-shadow: 0rem 0.0167rem 0.1667rem 0rem rgba(48, 39, 22, 0.1);
}
.ny-about2 .section2 .item .text1 {
  font-size: 0.4rem;
  color: #3eb134;
  line-height: 1.2;
  font-weight: bold;
}
.ny-about2 .section2 .item .text1:after {
  content: "";
  display: block;
  width: 0.45rem;
  height: 0.0333rem;
  background-color: #f57722;
  margin: 0.3333rem auto;
}
.ny-about2 .section2 .item .desc {
  font-size: 0.3rem;
  color: #787878;
  text-align: center;
  line-height: 1.8;
}
.ny-about2 .section3 .itembox {
  align-items: stretch;
  padding-top: 0.8333rem;
}
.ny-about2 .section3 .item {
  padding: 0 0.3333rem 0.5rem;
  box-shadow: 0rem 0.0167rem 0.1667rem 0rem rgba(48, 39, 22, 0.1);
}
.ny-about2 .section3 .item:hover .title {
  font-weight: bold;
  color: #3eb134;
}
.ny-about2 .section3 .item .number {
  width: 1.6667rem;
  height: 1.6667rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.1667rem;
  box-shadow: -0.1333rem -0.1333rem 0rem 0rem #b6e1b2;
  background-color: #3eb134;
  margin-top: -0.8333rem;
}
.ny-about2 .section3 .item .title {
  margin-top: 0.6667rem;
  font-size: 0.4rem;
  color: #777;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.ny-about2 .section3 .item .desc {
  font-size: 0.2667rem;
  color: #888;
  line-height: 2;
  text-align: justify;
}
.ny-about2 .section4 {
  position: relative;
}
.ny-about2 .section4:after {
  content: "";
  display: block;
  width: 100%;
  height: 5.7333rem;
  background-color: #3eb134;
  position: absolute;
  top: 0;
  left: 0;
}
.ny-about2 .section4 .mxw-title,
.ny-about2 .section4 .itembox {
  position: relative;
  z-index: 3;
}
.ny-about2 .section4 .mxw-title .text1,
.ny-about2 .section4 .mxw-title .text2 {
  color: #fff;
}
.ny-about2 .section4 .item .image {
  margin-bottom: 0.3333rem;
}
.ny-about2 .section4 .item .title {
  font-size: 0.3333rem;
  color: #333;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .ny-about2 .section1 .mxw-box {
    display: flex;
    align-items: stretch;
  }
  .ny-about2 .section1 .info {
    padding-right: 0.6667rem;
  }
  .ny-about2 .section1 .image {
    height: auto;
    width: 14.45rem;
    flex-shrink: 0;
    margin-right: -3.5rem;
  }
  .ny-about2 .section2 {
    min-height: 12.1667rem;
    background-attachment: fixed;
  }
  .ny-about2 .section2 .mxw-box {
    padding-top: 1.3333rem;
    padding-bottom: 1.3333rem;
  }
  .ny-about2 .section2 .item {
    transition: transform 0.4s;
  }
  .ny-about2 .section2 .item:hover {
    background-color: #3eb134;
    box-shadow: 0rem 0rem 0.2167rem 0rem rgba(62, 177, 52, 0.98);
    transform: translateY(-0.3333rem);
  }
  .ny-about2 .section2 .item:hover .text1 {
    color: #fff;
  }
  .ny-about2 .section2 .item:hover .text1:after {
    background-color: #fff;
  }
  .ny-about2 .section2 .item:hover .desc {
    color: #fff;
  }
}
@media screen and (max-width: 1200px) {
  .ny-about2 .section1 .info {
    padding: 0;
  }
  .ny-about2 .section1 .info .text1 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .ny-about2 .section1 .info .text2 {
    font-size: 18px;
  }
  .ny-about2 .section1 .info .text3 {
    font-size: 12px;
    letter-spacing: 0;
  }
  .ny-about2 .section1 .info .desc {
    margin-top: 20px;
    font-size: 13px;
    line-height: 2;
    margin-bottom: 30px;
  }
  .ny-about2 .section1 .itembox {
    padding-right: 0;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
  }
  .ny-about2 .section1 .item .top {
    margin-bottom: 5px;
  }
  .ny-about2 .section1 .item .top span {
    font-size: 40px;
    margin-right: 5px;
  }
  .ny-about2 .section1 .mxw-more {
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
  }
  .ny-about2 .section1 .image {
    width: 100%;
    margin-top: 30px;
  }
  .ny-about2 .section2 .item {
    padding: 20px 15px;
  }
  .ny-about2 .section2 .item:last-child {
    width: 100%;
  }
  .ny-about2 .section2 .item .text1 {
    font-size: 16px;
  }
  .ny-about2 .section3 .itembox {
    padding-top: 20px;
  }
  .ny-about2 .section3 .item {
    padding: 0 15px 15px;
    margin-bottom: 30px;
  }
  .ny-about2 .section3 .item:nth-last-child(1),
  .ny-about2 .section3 .item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .ny-about2 .section3 .item .number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    box-shadow: -4px -4px 0 0 #b6e1b2;
    margin-top: -20px;
  }
  .ny-about2 .section3 .item .title {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .ny-about2 .section3 .item .desc {
    font-size: 12px;
  }
  .ny-about2 .section4:after {
    height: 190px;
  }
  .ny-about2 .section4 .item .image {
    margin-bottom: 10px;
  }
  .ny-about2 .section4 .item .title {
    font-size: 12px;
  }
}
/* ==================== 内页 - 关于我们 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
  margin-top: 50px;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.mxw-pagination  a {
  padding: 6px 12px;
  font-size: 14px;
  color: #666;
  line-height: 1.2;
  border: 1px solid #ccc;
  margin: 4px;
}
.mxw-pagination  a.plane {
  border: 0;
}
.mxw-pagination  a.current,
.mxw-pagination  a:hover {
  background-color: #3eb134;
  color: #fff !important;
}
.mxw-pagination  a:first-child {
  margin-left: 0;
}
.mxw-pagination  a:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1200px) {
  .mxw-pagination {
    margin-top: 30px;
  }
  .mxw-pagination  a {
    font-size: 12px;
    margin: 2px;
    padding: 8px 10px;
  }
}
/* ==================== 分页样式 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  background-color: #222;
}
footer .foot-top .mxw-box {
  display: flex;
  align-items: stretch;
  border-bottom: 0.0167rem solid #313131;
}
footer .foot-top .left {
  min-width: 0;
  flex-grow: 1;
}
footer .foot-top .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 0.8333rem;
  padding-top: 0.6667rem;
  padding-bottom: 0.6667rem;
  border-bottom: 0.0167rem solid #2d2d2d;
}
footer .foot-logo {
  width: 7.55rem;
  flex-shrink: 0;
}
footer .foot-share {
  display: flex;
  align-items: center;
}
footer .foot-share .item {
  position: relative;
  margin-right: 0.3rem;
}
footer .foot-share .item:last-child {
  margin-right: 0;
}
footer .foot-share .item:hover .icon img {
  transform: translateY(0);
}
footer .foot-share .item:hover .qr {
  transform: translate(-50%, -2rem);
  opacity: 1;
  visibility: visible;
}
footer .foot-share .item .icon {
  width: 0.8333rem;
  height: 0.8333rem;
  overflow: hidden;
  border-radius: 1.6667rem;
}
footer .foot-share .item .icon img {
  transform: translateY(-50%);
}
footer .foot-share .item .qr {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -2rem);
  width: 1.6667rem;
  height: 1.6667rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s;
}
footer .foot-nav {
  padding-top: 1.3333rem;
  width: 14.6667rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .foot-nav .head {
  font-size: 0.2333rem;
  color: #fff;
  line-height: 1.2;
  display: block;
  font-weight: bold;
}
footer .foot-nav .head:after {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.0333rem;
  background-color: #3eb134;
  margin-top: 0.3333rem;
  margin-bottom: 0.5rem;
}
footer .foot-nav ul li {
  font-size: 0.2333rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
footer .foot-nav ul li:last-child {
  margin-bottom: 0;
}
footer .foot-contact {
  width: 6rem;
  border-left: 0.0167rem solid #313131;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.8333rem;
  padding-bottom: 0.8333rem;
  padding-left: 1.3333rem;
}
footer .foot-contact .desc {
  font-size: 0.2333rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.8;
}
footer .foot-contact .foot-qr {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  margin-top: 0.8333rem;
}
footer .foot-contact .foot-qr .qr {
  margin-right: 0.6667rem;
}
footer .foot-contact .foot-qr .qr:last-child {
  margin-right: 0;
}
footer .foot-contact .foot-qr .qr img {
  margin-bottom: 0.25rem;
}
footer .foot-contact .foot-qr .qr p {
  font-size: 0.2333rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}
footer .mxw-copyright .mxw-box {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  padding: 15px 0 ;
  font-size: 13.998px;
  line-height: 2;
}
footer .mxw-copyright .mxw-box a {
  color: inherit;
}
@media screen and (max-width: 1200px) {
  footer .foot-top .mxw-box {
    flex-wrap: wrap;
  }
  footer .foot-top .top {
    padding: 0;
    margin-bottom: 30px;
  }
  footer .foot-logo {
    width: 100%;
    padding-bottom: 20px;
  }
  footer .foot-nav {
    width: 100%;
  }
  footer .foot-contact {
    width: 100%;
    padding: 0;
    border-left: 0;
  }
  footer .foot-contact .desc {
    font-size: 13px;
  }
  footer .foot-contact br {
    display: none;
  }
  footer .mxw-copyright .mxw-box {
    padding: 15px;
    line-height: 2;
    font-size: 12px;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 83.3%;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
}
.mxw-box a:hover {
  color: #3eb134;
}
/* 内页 banner */
.ny-banner img {
  width: 100%;
}
/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1200px) {
  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }
  .mxw-ny-box {
    padding-top: 1.1667rem;
    padding-bottom: 1.1667rem;
    max-width: 72.9%;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-box {
    max-width: 86%;
  }
}
@media screen and (max-width: 1200px) {
  body {
    margin-top: 60px;
  }
  .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;
  }
  .mxw-ny-box {
    max-width: 100%;
    font-size: 0;
    padding: 30px 20px;
  }
}
@media screen and (min-width: 1680px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1200px) {
  html {
    font-size: 50px;
  }
}
/* ==================== 页面自定义样式 end ==================== */
