@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: #e48b39;
  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 > .u-col {
    width: 48%;
  }
  .u-row-2 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-2 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
  .u-row-3 > .u-col {
    width: 32%;
  }
  .u-row-3 > .u-col:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .u-row-3 > .u-col:nth-child(3) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-4 > .u-col {
    width: 23.5%;
    margin-right: 2%;
  }
  .u-row-4 > .u-col:nth-child(4n) {
    margin-right: 0%;
  }
  .u-row-4 > .u-col:nth-child(4) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-5 > .u-col {
    width: 18.4%;
    margin-right: 2%;
  }
  .u-row-5 > .u-col:nth-child(5n) {
    margin-right: 0%;
  }
  .u-row-5 > .u-col:nth-child(5) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-6 > .u-col {
    width: 15%;
    margin-right: 2%;
  }
  .u-row-6 > .u-col:nth-child(6n) {
    margin-right: 0%;
  }
  .u-row-6 > .u-col:nth-child(6) ~ .u-col {
    margin-top: 2%;
  }
}
@media screen and (max-width: 751px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 .u-col {
    width: 100%;
  }
  .u-row-2 .u-col:nth-child(1) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-3 > .u-col,
  .u-row-4 > .u-col,
  .u-row-5 > .u-col,
  .u-row-6 > .u-col {
    width: 48%;
  }
  .u-row-3 > .u-col:nth-child(2n),
  .u-row-4 > .u-col:nth-child(2n),
  .u-row-5 > .u-col:nth-child(2n),
  .u-row-6 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-3 > .u-col:nth-child(2) ~ .u-col,
  .u-row-4 > .u-col:nth-child(2) ~ .u-col,
  .u-row-5 > .u-col:nth-child(2) ~ .u-col,
  .u-row-6 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 侧边栏样式 start ==================== */
aside {
  font-size: 0;
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 4.6667rem;
  margin-right: 1rem;
  flex-shrink: 0;
}
aside .aside-btn-group .aside-btn {
  width: 0.6667rem;
  height: 0.6667rem;
  position: fixed;
  right: 0.1667rem;
  bottom: 20%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}
aside .aside-btn-group .aside-btn-menu i {
  width: 0.1rem;
  height: 0.1rem;
  background: #fff;
  display: block;
  border-radius: 100%;
  margin: 0 0.0333rem;
}
aside .aside-btn-group .aside-btn-top {
  transform: translateY(0.7rem);
}
aside .aside-btn-group .aside-btn-top:after {
  content: "";
  display: block;
  width: 0.3333rem;
  height: 0.3333rem;
  border-top: 0.0333rem solid #fff;
  border-right: 0.0333rem solid #fff;
  transform: rotate(-45deg);
  margin-top: 0.1667rem;
}
aside .aside-itembox {
  width: 100%;
}
aside .aside-itembox .aside-item {
  border: 0.0167rem solid #ccc;
}
aside .aside-itembox .aside-item:first-child ~ .aside-item {
  margin-top: 0.3333rem;
}
aside .aside-itembox .aside-item .desc p {
  border-bottom: 0.0167rem solid #f5f5f5;
  font-size: 0.2333rem;
  padding: 0.25rem 0.3333rem;
}
aside .aside-itembox .head {
  position: relative;
  width: 100%;
  background: #e48b39;
  text-align: left;
  font-weight: bold;
  padding: 0.25rem 0.3333rem;
}
aside .aside-itembox .head .cn {
  color: #fff;
  font-size: 0.4rem;
  line-height: 1.2;
}
aside .aside-itembox .body {
  background: #fff;
}
aside .aside-nav {
  padding-left: 0.3333rem;
  padding-right: 0.3333rem;
}
aside .aside-nav > li {
  font-size: 0.3rem;
  color: #333;
}
aside .aside-nav > li:hover {
  color: #e48b39;
}
aside .aside-nav > li:hover:after {
  border-color: #e48b39;
}
aside .aside-nav > li.active > .aside-sub-nav {
  display: block;
}
aside .aside-nav > li:last-child {
  border-bottom: 0;
}
aside .aside-nav > li > a {
  border-bottom: 0.0167rem solid #f5f5f5;
  position: relative;
  display: block;
  width: 100%;
  padding: 0.25rem 0;
  font-size: 0.25rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
aside .aside-nav > li > a:last-child {
  border-bottom: 0;
}
aside .aside-nav > li > a span {
  flex-grow: 1;
}
aside .aside-nav > li > a:after {
  content: "";
  display: block;
  width: 0.1667rem;
  height: 0.1667rem;
  border-top: 0.0333rem solid #333;
  border-right: 0.0333rem solid #333;
  transform: rotate(45deg);
  flex-shrink: 0;
}
aside .aside-sub-nav {
  display: none;
}
aside .aside-sub-nav > li {
  border-bottom: 0.0167rem dashed #eee;
}
aside .aside-sub-nav > li.active a,
aside .aside-sub-nav > li:hover a {
  color: #e48b39;
}
aside .aside-sub-nav > li:last-child {
  border-bottom: 0;
}
aside .aside-sub-nav > li > a {
  padding: 0.1333rem;
  display: block;
  line-height: 0.3333rem;
  color: #818181;
  font-size: 0.2333rem;
}
aside .recommended {
  padding: 0.1667rem 0.25rem;
}
aside .recommended .rec-item {
  display: block;
  font-size: 0.25rem;
  line-height: 1.8;
}
aside .recommended .rec-item:hover {
  color: #e48b39;
}
aside .recommended .rec-item:before {
  content: "+";
  font-size: 0.3333rem;
  font-weight: bold;
  line-height: 0.3333rem;
  vertical-align: inherit;
  margin-right: 0.1667rem;
}
aside .recommended .rec-item:first-child ~ .rec-item {
  margin-top: 0.1667rem;
}
@media screen and (max-width: 751px) {
  aside {
    width: auto;
    margin-right: 0;
  }
  aside .aside-itembox {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9990;
    background: #000000;
    top: 0;
    left: 100%;
    padding: 80px 20px;
    transition: all 0s;
    opacity: 0;
    visibility: hidden;
    visibility: visible!important;
    animation-name: none!important;
  }
  aside .aside-itembox.active {
    left: 0;
    visibility: visible;
    opacity: 1;
  }
  aside .aside-itembox .aside-item {
    display: flex;
    flex-flow: column;
    height: 100%;
    border: 0;
  }
  aside .aside-itembox .aside-item .body {
    overflow: auto;
    flex-grow: 1;
  }
  aside .aside-itembox .aside-item:first-child ~ .aside-item {
    display: none;
  }
  aside .aside-itembox .aside-head {
    height: 65px;
  }
  aside .aside-itembox .aside-head .cn {
    font-size: 22px;
  }
  aside .aside-itembox .aside-head .en {
    line-height: 65px;
    font-size: 24px;
  }
  aside .aside-itembox .aside-nav {
    background: #fff;
    flex-grow: 1;
    min-height: 0;
    overflow: auto;
  }
  aside .aside-itembox .aside-nav > li {
    font-size: 14px;
  }
  aside .aside-itembox .aside-nav > li > a {
    padding: 12px 0;
  }
}
.aside-box.active {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 999999;
}
.aside-box.active .cloes {
  display: block;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAMAAAANIilAAAAAkFBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+WABnwAAAAL3RSTlMAe5SyqXJQ5Z1vCqGDjNxYKcWmdWxoZBb17unPrUMwIASYVtRLJvvgysbAiQ9hO0NijawAAAI8SURBVEjHpVfreoIwDG0LVBBRQbxMmXNednOO93+7rS22QFJ1X84fbZND0za3Mg92W8lFGgSp4HK7Y//AKaoGdQuDMDo9SJ0ENYJgcp855OPagzEf3ubu352teRgLEYe528H7/gZ1GTZaq2I+HVpjpoti1QjCpY97XBuNTQJUlsnGyNZHnBsZ8afExfLTyDkmHGnRW8S8iN60yhlKMi34mLIbmH5opVF/nuvpV3YHsVbrWfeMf9Jn4HPHNZ7UVOYhwKN5aruLdsjUS4CWB24s1fjAHsRBacuu0S+Pkl86hs/UKGEPI1H6s2YwUC7ZCo4MccEfUbrBRsVNE7/dw59jZlzsWvZiTXx/qVh1ejmyiUXd1VEx/2X3X7LWyoC96LtQaU7YBNPqmzm8Gnb/cxVz+F4126j+fgvWhjBsyHUIjaPsVAa46Bm4tuOG8BDWO7ZVohPzskv9t+gHp5rcMmnvDFiuQi8BXOcbUgdyzjzs/b72hEyuE5JwG4KWG8RAaE5MsNRJcTYujbVBgf4EBu6yJb6t4AZ5YsgTP9lv9qxuUHrNdgcGjQZscGD2qjAuH1k2elXOSSA3uybqOe4kuHuOrlzLRt0TDYxzO35TPVhggYGFZGbvF2e7kITJQPR9ozBsmAxgGjJletZdR+EI0hBMgGOkDla6pIAECFPvGXJNMatg6oVJn4cSKa2HYAmSPqHcUAodpcRSijupraA0NJRWitLEUdpHSuNKaZkpzTrhmUB+oNCfRvRHGek5+As4i6p2W+L7BQAAAABJRU5ErkJggg==") no-repeat center;
  width: 30px;
  height: 30px;
  background-size: 100%;
  position: fixed;
  z-index: 9999;
  right: 20px;
  top: 30px;
}
/* ==================== 侧边栏样式 end ==================== */
/* ==================== 新闻中心 start ==================== */
.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: #e48b39;
  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 > a {
  color: #fff;
  line-height: 1;
  font-size: 0.2833rem;
  background: #e48b39;
  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 > a {
    padding: 8px 20px;
  }
}
/* ==================== 新闻中心 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 + .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 p {
  line-height: 1.8;
}
@media screen and (max-width: 751px) {
  .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 .text {
    margin-right: 0.1rem;
    padding-left: 0.1rem;
    line-height: 2em;
    display: inline;
  }
  .ny-news-desc .info {
    padding-bottom: 0.2rem;
  }
}
/* ==================== 新闻详情 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: #e48b39;
}
.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;
}
.ny-product-desc .bottom img{ height:auto !important;}

.ny-product-desc .bottom .head {
  width: 100%;
  border-bottom: 0.0167rem solid #1b9aff;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 0.6667rem;
}
.ny-product-desc .bottom .head .text1 {
  padding: 0 0.3333rem;
  border-bottom: 0.0833rem solid #1b9aff;
  font-size: 0.3rem;
  line-height: 0.8333rem;
  height: 0.8333rem;
  color: #1b9aff;
}


.easyzoom-flyout img {
  max-width: inherit!important;
  width: auto!important;
}
@media screen and (max-width: 751px) {
  .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 ==================== */
.mxw-tool {
  position: fixed;
  z-index: 99;
}
.mxw-tool .icon {
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .mxw-tool {
    box-shadow: 0 0 0.1667rem -0.0333rem rgba(0, 0, 0, 0.2);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.3333rem 0;
    border-radius: 1.6667rem;
    background-color: #fff;
  }
  .mxw-tool .tool-item {
    font-size: 0;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.3333rem 0.25rem 0.25rem;
    border-bottom: 0.0167rem solid #e6e6e6;
    transition: background-color 0.4s;
  }
  .mxw-tool .tool-item:hover {
    background-color: rgba(27, 75, 174, 0.1);
  }
  .mxw-tool .tool-item:hover .tool-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 9;
  }
  .mxw-tool .tool-item:hover .tool-content:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 9;
  }
  .mxw-tool .tool-item:hover .tool-content.wx{
    width: 160px;
    display: block;
    padding: 10px 0;
    height: auto;
}
  .mxw-tool .tool-item:last-child {
    border-bottom: 0;
  }
  .mxw-tool .tool-item .icon {
    width: 0.5rem;
    height: 0.5rem;
    margin-bottom: 0.1667rem;
  }
  .mxw-tool .tool-item .text {
    font-size: 0.2333rem;
    color: #666;
    line-height: 1.2;
  }
  .mxw-tool .tool-content {
    position: absolute;
    top: 0;
    height: 100%;
    background: #fff;
    width: 3.3333rem;
    right: 1.4333rem;
    color: #333;
    font-size: 0.2333rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0.3333rem;
    font-size: 0.2667rem;
    line-height: 1.6;
    border: 0.0167rem solid #ddd;
    border-radius: 0.0833rem;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }
}
@media screen and (max-width: 751px) {
  .mxw-tool {
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    font-size: 14px;
  }
  .mxw-tool .tool-item {
    width: 18%;
    height: 50px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .mxw-tool .tool-item:nth-child(5) ~ .tool-item {
    display: none;
  }
  .mxw-tool .tool-item .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-bottom: 5px;
  }
  .mxw-tool .tool-item .text {
    font-size: 13px;
    width: 100%;
    text-align: center;
    letter-spacing: 1px;
    text-indent: 1px;
  }
}
/* ==================== 通用工具栏 end ==================== */
/* ==================== 内页 - 通用分类 start ==================== */
.ny-cate2 {
  background-color: #f1f1f1;
}
.ny-cate2 > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.ny-cate2 .cate-item {
  display: block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  position: relative;
  margin-left: 0.8333rem;
  margin-right: 0.8333rem;
  font-size: 0.3rem;
}
.ny-cate2 .cate-item.active,
.ny-cate2 .cate-item:hover {
  font-weight: bold;
  color: #e48b39;
}
.ny-cate2 .cate-item.active:before,
.ny-cate2 .cate-item:hover:before {
  width: 100%;
}
.ny-cate2 .cate-item:last-child:after {
  display: none;
}
.ny-cate2 .cate-item:before {
  content: "";
  display: block;
  width: 0;
  height: 0.0333rem;
  background-color: #e48b39;
  transition: all 0.4s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.ny-cate2 .cate-item:after {
  content: "";
  display: block;
  width: 0.0167rem;
  height: 0.3333rem;
  background-color: #bdbdbd;
  position: absolute;
  right: -0.8333rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 751px) {
  .ny-cate2 > .mxw-box {
    padding: 10px;
  }
  .ny-cate2 .cate-item {
    width: 32%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .ny-cate2 .cate-item:after {
    right: 0;
  }
  .ny-cate2 .cate-item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .ny-cate2 .cate-item:nth-child(3n):after {
    display: none;
  }
}
/* ==================== 内页 - 通用分类 end ==================== */
/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact {
  overflow: hidden;
  background: url(../images/img29.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: 13.5rem;
  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: 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 ==================== */
.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: #e48b39;
}
.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: #e48b39;
  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 #e48b39;
}
@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 ==================== */
.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.cuurent,
.mxw-pagination  a:hover {
  background-color: #e48b39;
  color: #fff !important;
}
.mxw-pagination  a:first-child {
  margin-left: 0;
}
.mxw-pagination  a:last-child {
  margin-right: 0;
}
@media screen and (max-width: 751px) {
  .mxw-pagination {
    margin-top: 30px;
  }
  .mxw-pagination > a {
    font-size: 12px;
    margin: 2px;
    padding: 8px 10px;
  }
}
/* ==================== 分页样式 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: #e48b39;
  color: #fff;
}
@media screen and (max-width: 751px) {
  .mxw-tabs .mxw-tabs-header {
    margin-bottom: 20px;
  }
  .mxw-tabs .mxw-tabs-item {
    font-size: 14px;
    padding: 0 20px;
    margin-right: 10px;
  }
  .mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
  }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
  position: relative;
  z-index: 99;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e1e1e1;
}
.mxw-keywords .mxw-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.mxw-keywords .left {
  position: relative;
  flex-grow: 1;
  font-size: 16px;
  line-height: 1.2;
  color: #666;
}
.mxw-keywords .left strong {
  vertical-align: inherit;
}
.mxw-keywords .left span {
  color: #e48b39;
  vertical-align: inherit;
}
.mxw-keywords .left a:after {
  content: ",";
  padding-left: 5px;
  padding-right: 5px;
}
.mxw-keywords .left a:hover {
  color: #e48b39;
}
.mxw-keywords .left a:last-child {
  padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
  display: none;
}
.mxw-keywords .right form {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}
.mxw-keywords .right form:before {
  content: "";
  display: block;
  width: 2px;
  height: 16px;
  background-color: #d9d9d9;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.mxw-keywords .right input {
  width: 230px;
  height: 44px;
  line-height: 44px;
  padding: 0 20px;
  font-size: 14px;
  color: #333;
  border: 1px solid #c4c4c4;
  border-right: 0;
  background-color: #fff;
}
.mxw-keywords .right input::-webkit-input-placeholder {
  /*Webkit browsers*/
  color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
  /*Mozilla Firefox 4 to 8*/
  color: #999;
}
.mxw-keywords .right input::moz-placeholder {
  /*Mozilla Firefox 19+*/
  color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
  /*Internet Explorer 10+*/
  color: #999;
}
.mxw-keywords .right button {
  border: 0;
  outline: none;
  border-left: 0;
  cursor: pointer;
  background: #e48b39;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
}
.mxw-keywords .right button .icon {
  display: block;
  width: 20px;
  height: 20px;
  overflow: hidden;
  font-size: 0;
}
.mxw-keywords .right button .text {
  font-size: 14px;
  padding-left: 5px;
}
/* ==================== 关键词 end ==================== */
/* ==================== 头部 start ==================== */
header {
  width: 100%;
  z-index: 99;
  transition: all 0.4s;

}
header .top{    background: #fff;}
header .welcome {
  background-color: #f8f8f8;
}
header .welcome .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #999;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  line-height: 1.2;
}
header .pc-nav .top > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
}
header .pc-nav .top .logo {
  width: 682px;
  flex-shrink: 0;
}
header .pc-nav .top .tel {
  display: flex;
  align-items: center;
}
header .pc-nav .top .icon {
  width: 50px;
  flex-shrink: 0;
  margin-right: 18px;
}
header .pc-nav .top .desc {
  font-size: 17px;
  color: #333;
}
header .pc-nav .top .desc p {
  margin-bottom: 10px;
  line-height: 1.2;
}
header .pc-nav .top .desc p:last-child {
  margin-bottom: 0;
}
header .pc-nav .top .desc strong {
  font-size: 33px;
  font-weight: bold;
  color: #e48b39;
  line-height: 1;
  display: inline-block;
}
header .pc-nav .bottom {
  background-color: #e48b39;

}
header .pc-nav .bottom > .mxw-box {
  display: flex;
  align-items: center;
}
header .pc-nav .bottom .pc-menu {
  flex-grow: 1;
}
header .pc-nav .bottom .search {
  flex-shrink: 0;
}
header .search {
  margin-left: 30px;
  margin-right: 30px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
header .search:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/search.png) no-repeat center;
  background-size: 100%;
}
header .search.active {
  overflow: visible;
}
header .search.active form {
  opacity: 1;
  right: -10px;
  visibility: visible;
}
header .search form {
  font-size: 0;
  position: absolute;
  top: 250%;
  right: -100%;
  z-index: 33;
  width: 3.3334rem;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  height: 0.5667rem;
  line-height: 0.5667rem;
}
header .search form input {
  background: #fff;
  padding: 0.1334rem 0.1667rem;
  outline: none;
  font-size: 0.2333rem;
  width: 2.7rem;
  height: 100%;
  border: 1px solid #eee;
}
header .search form button {
  position: relative;
  width: 0.8333rem;
  height: 100%;
  background: #e48b39;
  cursor: pointer;
  color: #fff;
  outline: none;
}
header .search form button img {
  width: 20px;
  height: 20px;
}
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 #e48b39;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}
header .search form button img {
  width: 16px;
  height: 16px;
}
header .pc-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .pc-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  text-align: center;
  flex-grow: 1;
}
header .pc-menu > li:after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s;
}
header .pc-menu > li.active:after,
header .pc-menu > li:hover:after {
  width: 100%;
}
header .pc-menu > li.active > a,
header .pc-menu > li:hover > a {
  color: #fff !important;
}

header .pc-menu > li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
header .pc-menu > li:last-child {
  padding-right: 0;
}
header .pc-menu > li ul {
  background-color: #fff;
  width: 3.3333rem;
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s, visibility 0s;
}
header .pc-menu > li ul:hover {
  opacity: 1;
  visibility: visible;
}
header .pc-menu > li ul li.active > ul,
header .pc-menu > li ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
header .pc-menu > li ul li a {
  position: relative;
}
header .pc-menu > li ul li a:after {
  content: "";
  display: block;
  width: 80%;
  height: 0.0167rem;
  background-color: #eee;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
header .pc-menu > li ul a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  font-size: 0.2333rem;
  color: #333;
  line-height: 1.2;
  padding: 0.2333rem;
}
header .pc-menu > li > a {
  font-size: 0.3rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
}
header .pc-menu > li > a:after {
  content: "";
  display: block;
  width: 0;
  height: 0.05rem;
  background-color: #e48b39;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s;
}
header .pc-menu > li > ul {
  border-top: 0.0167rem solid #ddd;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
header .pc-menu > li > ul > li > a.active,
header .pc-menu > li > ul > li > a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
header .pc-menu > li > ul > li > a.active:after,
header .pc-menu > li > ul > li > a:hover:after {
  display: none;
}
header .pc-menu > li > ul > li > a:last-child:after {
  display: none;
}
header .pc-menu > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 0.0167rem solid #ddd;
}
header .pc-menu > li > ul > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 0.0167rem solid #ddd;
}
header.fixed .bottom{     position: fixed;
    top: 0;
    width: 100%;    z-index: 99;}
@media screen and (max-width: 1680px) {
  header .mxw-box {
    max-width: 92%;
  }
  header .welcome .mxw-inquiry {
    font-size: 14px;
  }
  header .pc-nav .top .logo {
    width: 592px;
  }
  header .pc-nav .top .desc strong {
    font-size: 32px;
  }
  header .pc-menu > li > a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1360px) {
  header .pc-nav .top > .mxw-box {
    padding: 20px 0;
  }
  header .pc-nav .top .logo {
    width: 480px;
  }
  header .pc-nav .top .icon {
    width: 40px;
  }
  header .pc-nav .top .desc strong {
    font-size: 28px;
  }
}
/* ==================== 头部 end ==================== */
/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
  header {
    z-index: 99999;
  }
  .mxw-mob-nav .head {
    font-size: 0;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    max-width: 750px;
    width: 100%;
    transform: translateX(-50%);
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 99;
    background-color: #fff;
  }
  .mxw-mob-nav .logo {
    display: block;
    flex-shrink: 0;
  }
  .mxw-mob-nav .logo img {
    height: 45px;
  }
  .mxw-mob-nav .menu-btn {
    flex-shrink: 0;
    width: 26px;
    height: 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }
  .mxw-mob-nav .menu-btn i {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 100px;
    background-color: #333;
  }
  .mxw-mob-nav .menus-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 50%;
    max-width: 450px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transform: translateX(50%);
  }
  .mxw-mob-nav .menus-box.active {
    visibility: visible;
    opacity: 1;
  }
  .mxw-mob-nav .menus-box.active .menus {
    transform: translateX(0);
  }
  .mxw-mob-nav .menus {
    width: 60%;
    height: 100%;
    margin-right: 0;
    margin-left: auto;
    background: #fff;
    transform: translateX(100%);
    transition: all 0.5s;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
  }
  .mxw-mob-nav .menus > ul {
    width: 100%;
    overflow: auto;
  }
  .mxw-mob-nav .menus > ul > li.active > ul {
    display: block;
  }
  .mxw-mob-nav .menus > ul > li > a {
    display: block;
    width: 100%;
    padding: 15px 18px;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mxw-mob-nav .menus > ul > li > a.sub:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-top: 4px solid #555;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 0;
    margin-left: 10px;
  }
  .mxw-mob-nav .menus > ul > li > ul {
    display: none;
    padding: 0px 24px;
  }
  .mxw-mob-nav .menus > ul > li > ul > li > a {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 36px;
    height: 36px;
    border-bottom: 1px solid #f3f3f3;
  }
  .mxw-mob-nav .menus-head {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8F8F8;
    border-bottom: 0.6px solid #eee;
    font-size: 16.8px;
    font-weight: bold;
    line-height: 54px;
    height: 54px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .mxw-mob-nav .menus-head .text {
    color: #333;
    line-height: 1.2;
  }
  .mxw-mob-nav .menus-head .mxw-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none;
    position: relative;
    transform: rotate(45deg);
  }
  .mxw-mob-nav .menus-head .mxw-close:before,
  .mxw-mob-nav .menus-head .mxw-close:after {
    content: "";
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
  }
  .mxw-mob-nav .menus-head .mxw-close:before {
    width: 2px;
    height: 100%;
  }
  .mxw-mob-nav .menus-head .mxw-close:after {
    width: 100%;
    height: 2px;
  }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
  font-size: 0;
  position: relative;
}
.mxw-banner .swiper-slide {
  overflow: hidden;
}
.mxw-banner .swiper-slide img {
  width: 100%;
}
.mxw-banner .swiper-pagination {
  width: 100%;
  max-width: 1680px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 25px;
  right: 50%;
  transform: translateX(50%);
  left: auto;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
  width: 34px;
  height: 8px;
  border-radius: 0;
  background-color: #fff;
  opacity: 1;
  margin-left: 10px;
  margin-right: 10px;
  border: 1px solid #fff;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #e48b39;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
  width: 2.6667rem;
  height: 0.9167rem;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.18);
  background-image: none;
  outline: none;
  z-index: 99;
}
.mxw-banner .swiper-button-next {
  right: 0;
}
.mxw-banner .swiper-button-prev {
  left: 0;
}
.mxw-banner .banner-swiper {
  --swiper-navigation-color: #fff;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 24px;
  /* 设置按钮大小 */
}
.mxw-banner .banner-text {
  z-index: 8;
  width: 80%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  left: 50%;
  color: #fff;
  text-align: center;
}
.mxw-banner .banner-text .text1 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 30px;
}
.mxw-banner .banner-text .text2 {
  font-size: 16px;
  opacity: 0.67;
  margin-bottom: 50px;
}
.mxw-banner .banner-text .mxw-more {
  width: 190px;
  height: 45px;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  background-color: #e48b39;
  line-height: 45px;
  display: block;
}
.mxw-banner .down-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 10;
  animation: arrowAnimate  2s linear infinite;
  cursor: pointer;
  width: 20px;
}
@media screen and (max-width: 1300px) {
  .mxw-banner .banner-text .text1 {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .mxw-banner .banner-text .text2 {
    font-size: 14px;
  }
  .mxw-banner .banner-text .mxw-more {
    width: 160px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }
}
@media screen and (max-width: 751px) {
  .mxw-banner .swiper-pagination {
    padding-right: 0px;
    bottom: 10px;
    max-width: 80%;
  }
  .mxw-banner .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    font-size: 14px;
    width: 8px;
    height: 8px;
  }
  .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-size: 18px;
  }
  .mxw-banner .swiper-button-next,
  .mxw-banner .swiper-button-prev {
    display: none;
  }
  .mxw-banner .banner-text {
    width: 90%;
  }
  .mxw-banner .banner-text .text1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .mxw-banner .banner-text .text2 {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .mxw-banner .banner-text .mxw-more {
    width: auto;
    height: auto;
    line-height: inherit;
    font-size: 12px;
    padding: 6px 20px;
  }
}
/* ==================== 轮播图 end ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
  margin-bottom: 1rem;
  text-align: center;
  overflow: hidden;
}
.mxw-title .text1 {
  text-align: center;
  margin-bottom: 0.1667rem;
  font-size: 0.3333rem;
}
.mxw-title .text1 span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: 0 0.3333rem;
  color: #e48b39;
}
.mxw-title .text1 span::before,
.mxw-title .text1 span::after {
  content: "";
  display: block;
  width: 1rem;
  height: 0.0167rem;
  position: absolute;
  top: 50%;
  background-color: #e48b39;
}
.mxw-title .text1 span::before {
  left: -1rem;
}
.mxw-title .text1 span::after {
  right: -1rem;
}
.mxw-title .text2 {
  font-size: 0.6667rem;
  font-weight: bold;
  color: #333;
}
.mxw-title .text3 {
  margin-top: 0.1667rem;
  font-size: 0.3rem;
  color: #787878;
  line-height: 1.6;
}
@media screen and (max-width: 751px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 5px;
  }
  .mxw-title .text1 span {
    padding: 0 10px;
  }
  .mxw-title .text1 span::before,
  .mxw-title .text1 span::after {
    width: 30px;
  }
  .mxw-title .text1 span::before {
    left: -30px;
  }
  .mxw-title .text1 span::after {
    right: -30px;
  }
  .mxw-title .text2 {
    font-size: 20px;
  }
  .mxw-title .text3 {
    font-size: 12px;
    margin-top: 5px;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 产品中心 start ==================== */
.mxw-product .mxw-cate {
  margin: 0 -0.0833rem 1rem;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.mxw-product .mxw-cate .cate-item {
  flex-grow: 1;
  padding: 0.3333rem 0.5rem;
  background-color: #eee;
  text-align: center;
  font-size: 0.3333rem;
  color: #333;
  margin: 0.0833rem;
  display: block;
}
.mxw-product .mxw-cate .cate-item.active {
  background-color: #e48b39;
  color: #fff;
}
.mxw-product .bottom {
  position: relative;

}
.mxw-product .product-swiper {

}
.mxw-product .swiper-slide {
  display: flex;
  align-items: stretch;    flex-wrap: wrap;
}
.mxw-product .swiper-slide p{
padding: 0.25rem 0.3rem;
    background: #e7e7e7;
    font-size: 0.3rem;
    text-align: center;
}
.mxw-product .mxw-swiper-prev,
.mxw-product .mxw-swiper-next {
  flex-shrink: 0;
  background: url(../images/img04.png) no-repeat center;
  background-size: 100%;
  width: 1.0333rem;
  height: 1.0333rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  outline: none;
  cursor: pointer;
}
.mxw-product .mxw-swiper-prev {
  left: 0;
  transform: rotateY(180deg) translateY(-50%);
}
.mxw-product .mxw-swiper-next {
  right: 0;
}
.mxw-product .image {
  position: relative;
  overflow: hidden;

}
.mxw-product .image .mxw-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100% !important;
}
.mxw-product .image .mxw-image,
.mxw-product .image .mxw-image img {
  height: 100%;
  max-width: inherit;
  width: auto;
}
.mxw-product .info {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
}
.mxw-product .info .title {
  font-size: 0.5rem;
  line-height: 1.2;
  color: #333;
}
.mxw-product .info .title:after {
  content: "";
  width: 1.0667rem;
  height: 0.0333rem;
  background-color: #e48b39;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: block;
}
.mxw-product .info .desc {
  font-size: 0.2667rem;
  color: #666;
  text-align: justify;
  line-height: 1.8;
}
.mxw-product .info .btn-group {
  margin-top: 0.6667rem;
  display: flex;
  align-items: center;
}
.mxw-product .info .mxw-btn {
  width: 3.0833rem;
  height: 0.8667rem;
  line-height: 0.8667rem;
  text-align: center;
  color: #fff;
}
.mxw-product .info .mxw-btn:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 0.1rem solid #fff;
  border-top: 0.1rem solid transparent;
  border-bottom: 0.1rem solid transparent;
  margin-left: 0.2667rem;
}
.mxw-product .info .mxw-btn.mxw-btn1 {
  background-color: #e48b39;
  margin-right: 0.5rem;
}
.mxw-product .info .mxw-btn.mxw-btn2 {
  background-color: #e48b39;
}
@media screen and (max-width: 1680px) {
  .mxw-product .mxw-cate .cate-item {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
}
@media screen and (min-width: 751px) {
  .mxw-product .mxw-box {
    padding-top: 1.6667rem;
  }
  .mxw-product .image {
    width: 45.7%;
    flex-shrink: 0;
    height: 7.6rem;
  }
  .mxw-product .info {
    min-width: 0;
    flex-grow: 1;
    padding: 0.8333rem 1.6667rem 0.8333rem 0.6667rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-product .mxw-cate {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .mxw-product .mxw-cate .cate-item {
    width: 49%;
    padding: 0;
    flex-grow: inherit;
    margin: 0;
    font-size: 12px;
    padding: 8px;
  }
  .mxw-product .mxw-cate .cate-item:nth-child(2) ~ .cate-item {
    margin-top: 2%;
  }  
.mxw-product .swiper-slide{flex-wrap:wrap;}
  .mxw-product .image .mxw-image{position:static;transform:translate(0,0);height:auto;}
.mxw-product .image .mxw-image, .mxw-product .image .mxw-image img{width:100%;height:auto;}
  .mxw-product .bottom {
    padding: 0;
  }
  .mxw-product .info {
    padding: 30px 20px;
    width: 100%;
  }
  .mxw-product .info .title {
    font-size: 18px;
    font-weight: bold;
  }
  .mxw-product .info .title:after {
    margin: 15px 0;
  }
  .mxw-product .info .desc {
    font-size: 12px;
    line-height: 2;
  }
  .mxw-product .info .btn-group {
    width: 100%;
    margin-top: 20px;
    justify-content: space-between;
  }
  .mxw-product .info .btn-group .mxw-btn {
    width: 48%;
    margin-right: 0;
    height: auto;
    padding: 8px 10px;
    text-align: center;
    line-height: inherit;
    font-size: 12px;
  }
  .mxw-product .mxw-swiper-next,
  .mxw-product .mxw-swiper-prev {
    display: none;
  }
}
/* ==================== 产品中心 end ==================== */
/* ==================== 应用案例 start ==================== */
.mxw-cases .itembox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.mxw-cases .item {
  overflow: hidden;
  display: block;
  position: relative;
}
.mxw-cases .info {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-1.1667rem);
  width: 100%;
  transition: transform 0.4s;
}
.mxw-cases .info .title {
  background-color: #fff;
  height: 1.1667rem;
  display: flex;
  align-items: center;
  border-bottom: 0.0833rem solid #e48b39;
  font-size: 0.3333rem;
  color: #333;
  text-align: center;
  width: 100%;
  justify-content: center;
}
.mxw-cases .info .desc {
  font-size: 0.2667rem;
  color: #fff;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 0.3333rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.mxw-cases .info .mxw-more {
  width: 2.8333rem;
  height: 0.6667rem;
  border: 0.0167rem solid #fff;
  display: block;
  margin: 0 auto;
  line-height: 0.6667rem;
  font-size: 0.2667rem;
  text-align: center;
  color: #fff;
}
.mxw-cases .info .mxw-more:hover {
  color: #fff;
}
@media screen and (min-width: 751px) {
  .mxw-cases .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
  }
  .mxw-cases .item:hover .info {
    padding: 0.3333rem 0.6667rem 0.5rem;
    transform: translateY(-100%);
       background: rgb(228 139 57 / 80%);
  }
  .mxw-cases .item:hover .info .title {
    border-bottom: 0;
    height: auto;
    background-color: transparent;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0.25rem;
  }
  .mxw-cases .item:hover .info .desc {
    opacity: 1;
  }
}
@media screen and (max-width: 751px) {
  .mxw-cases .info {
    transform: translateY(0);
    position: static;
  }
  .mxw-cases .info .title {
    height: auto;
    line-height: 1.2;
    padding: 8px 10px;
    font-size: 12px;
  }
  .mxw-cases .info .desc,
  .mxw-cases .info .mxw-more {
    display: none;
  }
}
/* ==================== 应用案例 end ==================== */
/* ==================== 优势 start ==================== */
.mxw-advantage {
  align-items: stretch;
}
.mxw-advantage .left {
  background: url(../images/img08.jpg) no-repeat center;
  background-size: cover;
  width: 13.2167rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-right: 1.1667rem;
  color: #e8e8e8;
}
.mxw-advantage .left .text-box {
  margin-right: 0;
  margin-left: auto;
}
.mxw-advantage .left .text01 {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.5rem;
  font-size: 0;
}
.mxw-advantage .left .text01 .number {
  font-size: 2.5667rem;
  margin-right: 0.4167rem;
  line-height: 0.9;
  font-weight: bold;
}
.mxw-advantage .left .text01 .text04 .big {
  font-size: 0.6667rem;
  line-height: 1;
}
.mxw-advantage .left .text01 .text04 .min {
  font-size: 0.4rem;
  line-height: 1.2;
  margin-top: 0.2333rem;
}
.mxw-advantage .left .text02 {
  font-size: 0.2333rem;
  line-height: 1.2;
  opacity: 0.5;
  margin-bottom: 0.2333rem;
  letter-spacing: 0.0667rem;
}
.mxw-advantage .left .text03 {
  font-size: 0.3667rem;
  line-height: 1.2;
  letter-spacing: 0.0333rem;
}
.mxw-advantage .right {
  flex-grow: 1;
  padding-top: 1.0833rem;
  padding-right: 3.5rem;
  padding-bottom: 1.0833rem;
  background: url(../images/img13.jpg) no-repeat center;
  background-size: cover;
  padding-left: 1.6667rem;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.mxw-advantage .right .itembox {
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: stretch;
  display: flex;
  margin-left: 0;
  margin-right: auto;
  justify-content: space-between;
  min-width: 0;
  flex-grow: 1;
}
.mxw-advantage .right .item {
  width: 48%;
  padding: 0.5rem;
  text-align: center;
}
.mxw-advantage .right .item:hover {
  background: #fff;
  box-shadow: 0 0 20px -15px #e48b39;
}
.mxw-advantage .right .item .image {
  width: 1.1667rem;
  height: 1.1667rem;
  overflow: hidden;
  transition: all 0.4s;
  display: block;
  margin: 0 auto 0.1667rem;
}
.mxw-advantage .right .item .image img {
  display: block;
}
.mxw-advantage .right .item .name {
  font-size: 0.3667rem;
  font-weight: bold;
  line-height: 1.2;
  color: #333;
}
.mxw-advantage .right .item .name::after {
  content: "";
  width: 0.6667rem;
  height: 0.0333rem;
  display: block;
  margin: 0 auto;
  background: #e48b39;
  margin-bottom: 0.5rem;
  margin-top: 0.25rem;
}
.mxw-advantage .right .item .desc {
  text-align: center;
  font-size: 0.2667rem;
  line-height: 1.6;
  color: #666;
}
@media screen and (max-width: 1680px) {
  .mxw-advantage .right {
    padding-right: 1.6667rem;
    padding-left: 1rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-advantage {
    flex-flow: column;
  }
  .mxw-advantage .left {
    display: none;
  }
  .mxw-advantage .left .text-box {
    margin: 0;
  }
  .mxw-advantage .right {
    padding: 0 20px;
    width: 100%;
    background: none;
  }
  .mxw-advantage .right .itembox {
    width: 100%;
  }
  .mxw-advantage .right .item {
    padding: 20px 10px;
    width: 100%;
    margin-bottom: 10px;
    background: #f4f4f4;
  }
  .mxw-advantage .right .item:last-child {
    margin-bottom: 0;
  }
  .mxw-advantage .right .item .image {
    width: 40px;
    height: 40px;
  }
  .mxw-advantage .right .item:hover .image img {
    margin-top: -40px;
  }
  .mxw-advantage .right .item .name {
    font-size: 16px;
  }
  .mxw-advantage .right .item .name::after {
    margin: 10px auto 10px;
  }
  .mxw-advantage .right .item .desc p {
    display: inline;
  }
}
/* ==================== 优势 end ==================== */
/* ==================== 公司简介 start ==================== */
.mxw-about {
  background: url(../images/img15.jpg) no-repeat center bottom #fff;
}
.mxw-about .info .text1 {
  font-size: 0.3333rem;
  color: #e48b39;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.mxw-about .info .text2 {
  font-size: 0.6rem;
  font-weight: bold;
  color: #e48b39;
  line-height: 1;
  margin-bottom: 0.3333rem;
}
.mxw-about .info .text3 {
  font-size: 0.3333rem;
  color: #999;
  line-height: 1.6;
}
.mxw-about .info .text3:after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.0333rem;
  background-color: #e48b39;
  margin-bottom: 0.3333rem;
  margin-top: 0.3333rem;
}
.mxw-about .info .desc {
  font-size: 0.3rem;
  color: #666;
  line-height: 2;
  text-align: justify;
  line-height: 1.8;
}
.mxw-about .info .mxw-more {
  display: block;
  margin-top: 1.3333rem;
  width: 3.5rem;
  height: 0.8333rem;
  text-align: center;
  color: #fff;
  background-color: #e48b39;
  font-size: 0.3rem;
  border-radius: 1.6667rem;
  line-height: 0.8333rem;
}
@media screen and (min-width: 751px) {
  .mxw-about .mxw-box {
    padding-top: 1.6667rem;
  }
  .mxw-about .body {
    display: flex;
    align-items: center;
  }
  .mxw-about .info {
    margin-right: 1.3333rem;
  }
  .mxw-about .image {
    flex-shrink: 0;
    width: 59.3%;
    margin-right: -3.5rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-about .info {
    margin-bottom: 20px;
  }
  .mxw-about .info .text1 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .mxw-about .info .text2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .mxw-about .info .text3 {
    font-size: 14px;
  }
  .mxw-about .info .mxw-more {
    width: 100%;
    font-size: 12px;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
    margin-top: 20px;
  }
}
/* ==================== 公司简介 end ==================== */
/* ==================== 通用 - 荣誉资质 start ==================== */
.honor-swiper .image img {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .mxw-honor .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1rem;
  }
  .honor-swiper .swiper-slide {
    max-width: 5.1667rem;
    padding-top: 0.3333rem;
  }
  .honor-swiper .swiper-slide .image {
    transition: all 0.4s;
  }
  .honor-swiper .swiper-slide:hover .image {
    transform: translateY(-0.3333rem);
  }
}
/* ==================== 通用 - 荣誉资质 end ==================== */
/* ==================== 联系电话 start ==================== */
.mxw-contact {
  background: url(../images/img20.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
}
.mxw-contact > .mxw-box {
  color: #fff;
}
.mxw-contact .text1 {
  font-size: 0.7667rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.mxw-contact .text2 {
  font-size: 0.4rem;
  line-height: 1.8;
  margin-bottom: 0.6667rem;
}
.mxw-contact .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.6667rem;
  overflow: hidden;
  border-radius: 1.6667rem;
  border: 0.0167rem solid #e48b39;
}
.mxw-contact .tel .text3 {
  width: 2.6667rem;
  height: 100%;
  background-color: #e48b39;
  color: #fff;
  font-weight: bold;
  font-size: 0.2667rem;
  text-align: center;
  line-height: 0.6333rem;
  border-radius: 1.6667rem;
}
.mxw-contact .tel .text3:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid #fff;
  margin-left: 10px;
}
.mxw-contact .tel .text4 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  min-width: 0;
  font-size: 0.3333rem;
  color: #fff;
  line-height: 0.6333rem;
}
.mxw-contact .tel .text4 img {
  width: 0.6667rem;
  flex-shrink: 0;
  margin-right: 0.1667rem;
}
.mxw-contact .tel .text4 strong {
  font-size: 0.4167rem;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .mxw-contact {
    background-attachment: fixed;
  }
  .mxw-contact .mxw-box {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 1120px;
  }
}
@media screen and (max-width: 751px) {
  .mxw-contact .text1 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .mxw-contact .text2 {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .mxw-contact .tel {
    height: 40px;
  }
  .mxw-contact .tel .text3 {
    width: auto;
    white-space: nowrap;
    font-size: 15px;
    padding: 0 15px;
    line-height: 40px;
    margin-right: 0;
  }
  .mxw-contact .tel .text4 {
    font-size: 14px;
    line-height: 1.8;
    flex-grow: 1;
    padding: 0;
  }
  .mxw-contact .tel .text4 img {
    display: none;
  }
  .mxw-contact .tel .text4 strong {
    font-size: inherit;
    margin: 0;
  }
}
/* ==================== 联系电话 end ==================== */
/* ==================== 资讯中心 start ==================== */
.mxw-news {
  background-color: #fff;
}
.mxw-news .swiper-slide {
  display: block;
}
.mxw-news .info {
  background: url(../images/img22.jpg) no-repeat center;
  background-size: cover;
  padding: 0.6667rem 0.5rem;
}
.mxw-news .info .title {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  font-weight: bold;
}
.mxw-news .info .desc {
  margin-top: 0.3333rem;
  font-size: 0.2333rem;
  color: #777;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0.6667rem;
}
.mxw-news .info .time {
  font-size: 0.2333rem;
  color: #999;
  line-height: 1.2;
}
@media screen and (min-width: 751px) {
  .mxw-news .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
  }
  .mxw-news .swiper-slide {
    padding-top: 0.3333rem;
    max-width: 8.5rem;
  }
  .mxw-news .swiper-slide .item {
    transition: all 0.4s;
  }
  .mxw-news .swiper-slide:hover .item {
    transform: translateY(-0.3333rem);
  }
  .mxw-news .swiper-slide:hover .info {
    background-color: #e48b39;
    background-image: inherit;
  }
  .mxw-news .swiper-slide:hover .info .title,
  .mxw-news .swiper-slide:hover .info .desc,
  .mxw-news .swiper-slide:hover .info .time {
    color: #fff;
  }
}
@media screen and (max-width: 751px) {
  .mxw-news .info {
    padding: 20px 15px;
  }
  .mxw-news .info .title {
    font-size: 15px;
  }
  .mxw-news .info .desc {
    margin: 10px 0 15px;
    font-size: 12px;
    line-height: 1.8;
  }
  .mxw-news .info .time {
    font-size: 12px;
  }
}
/* ==================== 资讯中心 end ==================== */
/* ==================== 通用 - 内页标题 start ==================== */
.ny-title {
  text-align: center;
  margin-bottom: 0.6667rem;
}
.ny-title:after {
  content: "";
  display: block;
  width: 1.1rem;
  height: 0.0667rem;
  background-color: #e48b39;
  margin: 0.3333rem auto 0;
}
.ny-title .text1 {
  font-size: 0.6667rem;
  color: #333;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.1667rem;
}
.ny-title .text2 {
  font-size: 0.3rem;
  color: #787878;
  line-height: 1.8;
}
@media screen and (max-width: 751px) {
  .ny-title {
    margin-bottom: 30px;
  }
  .ny-title:after {
    margin-top: 10px;
  }
  .ny-title .text1 {
    font-size: 20px;
  }
  .ny-title .text2 {
    font-size: 12px;
    padding: 0 15px;
  }
}
/* ==================== 通用 - 内页标题 end ==================== */
/* ==================== 内页 - 通用分类 start ==================== */
.ny-cate {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 0.6667rem;
}
.ny-cate .cate-item {
  background-color: #eee;
  font-size: 0.3333rem;
  color: #333;
  padding: 0.3333rem 0.5rem;
  text-align: center;
}
.ny-cate .cate-item:hover,
.ny-cate .cate-item.active {
  color: #fff;
  background-color: #e48b39;
}
@media screen and (min-width: 751px) {
  .ny-cate .cate-item {
    width: 24.25%;
    margin-right: 1%;
  }
  .ny-cate .cate-item:nth-child(4n) {
    margin-right: 0;
  }
  .ny-cate .cate-item:nth-child(4) ~ .cate-item {
    margin-top: 1%;
  }
}
@media screen and (max-width: 751px) {
  .ny-cate {
    margin-bottom: 20px;
    justify-content: space-between;
  }
  .ny-cate .cate-item {
    padding: 8px 10px;
    font-size: 12px;
    width: 49%;
    margin-left: 0!important;
  }
  .ny-cate .cate-item:nth-child(2) ~ .cate-item {
    margin-top: 2%;
  }
}
/* ==================== 内页 - 通用分类 end ==================== */
/* ==================== 内页 - 产品中心 start ==================== */
.ny-product {
  overflow: hidden;
}
.ny-product .item {
  display: block;
}
.ny-product .item:hover .title {
  background-color: #e48b39;
  color: #fff;
}
.ny-product .item .title {
  background-color: #eee;
  padding: 0.3333rem 0.1667rem;
  text-align: center;
  font-size: 0.3333rem;
  color: #333;
  line-height: 1.2;
}
@media screen and (min-width: 751px) {
  .ny-product .item {
    width: 32.6666%;
    margin: 0!important;
  }
  .ny-product .item:nth-child(3n-1) {
    margin-right: 1%!important;
    margin-left: 1% !important;
  }
  .ny-product .item:nth-child(3) ~ .item {
    margin-top: 1%!important;
  }
}
@media screen and (max-width: 751px) {
  .ny-product .item .title {
    padding: 8px 10px;
    font-size: 12px;
  }
}
/* ==================== 内页 - 产品中心 end ==================== */
/* ==================== 内页 - 关于我们 start ==================== */
.ny-about .section1 .desc {
  font-size: 0.3rem;
  color: #666;
  line-height: 2.6;
}
.ny-about .section1 .desc strong {
  color: #e48b39;
}
.ny-about .section1 .bg-image {
  background: url(../images/img14.jpg) no-repeat center;
  height: 9.3333rem;
  background-attachment: fixed;
  display: block;
  width: 100%;
  background-size: cover;
}
/* ==================== 内页 - 关于我们 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  background-color: #091b27;
}
footer .foot-top {
  padding-top: 1rem;
  padding-bottom: 1.3333rem;
}
footer .foot-top > .mxw-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .foot-nav {
  width: 12.8333rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .foot-nav .head {
  font-size: 0.3rem;
  color: #fff;
  line-height: 1.2;
  position: relative;
  margin-bottom: 0.6667rem;
  display: block;
}
footer .foot-nav .nav-item {
  position: relative;
  padding-left: 0.6667rem;
}
footer .foot-nav .nav-item:before {
  content: "";
  display: inline-block;
  width: 0.3333rem;
  height: 0.0333rem;
  background-color: #e48b39;
  margin-right: 0.3333rem;
  vertical-align: middle;
  position: absolute;
  top: 0.1333rem;
  left: 0;
}
footer .foot-nav li {
  margin-bottom: 0.25rem;
}
footer .foot-nav li:last-child {
  margin-bottom: 0;
}
footer .foot-nav li > a {
  font-size: 0.2333rem;
  color: #6b767d;
  line-height: 1.2;
}
footer .foot-contact {
  font-size: 0.3rem;
  color: #6b767d;
}
footer .foot-contact p {
  line-height: 1.8;
}
footer .foot-contact strong {
  font-size: 0.65rem;
  font-weight: bold;
  display: block;
  line-height: 1;
  margin: 0.4167rem 0;
  color: #e48b39;
}
footer .foot-qr {
  width: 1.7667rem;
  flex-shrink: 0;
}
footer .foot-qr p {
  font-size: 0.2333rem;
  color: #6b767d;
  text-align: center;
}
footer .foot-qr img {
  display: block;
  width: 100%;
  margin-bottom: 0.25rem;
}
footer .mxw-links {
  border-top: 0.0167rem solid #22323d;
}
footer .mxw-links > .mxw-box {
  padding: 0.5rem 0;
  font-size: 0.2333rem;
  color: #6b767d;
  line-height: 1.2;
}
footer .mxw-links .icon {
  width: 0.3667rem;
  display: inline-block;
  margin-right: 0.25rem;
}
footer .mxw-links a:after {
  content: "、";
}
footer .mxw-links a:last-child:after {
  display: none;
}
footer .mxw-copyright {
  background-color: #031623;
}
footer .mxw-copyright > .mxw-box {
  padding: 0.5rem 0;
  text-align: center;
  line-height: 1.8;
  font-size: 0.2333rem;
  color: #fff;
}
@media screen and (max-width: 751px) {
  footer .foot-top {
    padding: 0;
  }
  footer .foot-top > .mxw-box {
    padding: 20px;
  }
  footer .foot-contact {
    width: 100%;
    font-size: 12px;
  }
  footer .foot-contact strong {
    font-size: 24px;
    margin: 10px 0;
  }
  footer .mxw-copyright {
    padding: 0 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  footer .mxw-copyright > .mxw-box {
    padding: 20px 0;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 1600px;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
}
.mxw-box a:hover {
  color: #e48b39;
}
/* 内页 banner */
.ny-banner img {
  width: 100%;
}
/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px !important;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-box {
    max-width: 86%;
  }
}
@media screen and (min-width: 751px) {
  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }
  .mxw-ny-box {
    padding-top: 1.1667rem;
    padding-bottom: 1.1667rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-ny-box {
    max-width: 100%;
    font-size: 0;
    padding: 30px 20px;
  }


}
@media screen and (max-width: 751px) {
  body {
    margin-top: 60px;
  }
  html {
    font-size: 50px;
  }
  .m-none,
  .pc-nav {
    display: none !important;
  }
  .mxw-box {
    padding: 30px 20px;
    max-width: 100%;
  }
  .mxw-section {
    padding-left: 0;
    padding-right: 0;
  }
  article {
    font-size: 15px;
  }
.ny-product-desc .bottom .head{margin-bottom:0.3233rem;}


.ny-product-desc .product-desc{
    width: 100%;
}
.ny-about .section1 .bg-image{    height: 6rem;}
}
/* ==================== 页面自定义样式 end ==================== */
/* ==================== 动画 start ==================== */
@keyframes arrowAnimate {
  0% {
    transform: translate(0rem, 0rem);
  }
  50% {
    transform: translate(0rem, -0.1667rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
/* ==================== 动画 end ==================== */



.ny-product-desc .bottom table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459;max-width: 100%;}
.ny-product-desc .bottom table th,
.ny-product-desc .bottom table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.ny-product-desc .bottom table td p{line-height:1.8!important;}
.ny-product-desc .bottom table tr:hover{background-color:#f2f2f2!important;}
.ny-product-desc .bottom table tr:nth-child(2n-1){background-color:#fff ;}
.ny-product-desc .bottom table tr:nth-child(2n){background-color:#fdfdfd ;}



/* ==================== 产品详情页 start ==================== */
.ny-product-desc {
    overflow: hidden;
}
.ny-product-desc .product-image {
    width: 44%;
    margin-right: 3%;
    flex-shrink: 0;
    position: relative;
    z-index: 9;
}
.ny-product-desc .product-image img {
    width: 100%;
}
.ny-product-desc .product-desc {
    width: 53%;
}
.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: #172a88;
}
.ny-product-desc .product-desc .desc {
    word-break: break-all;
    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;
}
.ny-product-desc .bottom img,.content img{
    max-width: 100%;
    height: auto !important;
}
.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 {
        width: 100%;
    }
    .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-product-desc .top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.ny-product-desc .big-swiper {
    border: 1px solid #ddd;
}
.ny-product-desc .ny-product-image {
    width: 38%;
    flex-shrink: 0;
    margin-right: 5%;
}



.ny-product-desc .right {
    width: 65%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.ny-product-desc .info {
    flex-grow: 1;
    width: 100%;
}
.ny-product-desc .info .head {
    padding-bottom: 0.1667rem;
    width: 100%;
    border-bottom: 0.0167rem solid #dcdcdc;
    margin-bottom: 0.3333rem;
}
.ny-product-desc .info .head .text1 {
    font-size: 0.3667rem;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}
.ny-product-desc .info .head .text2 {
    font-size: 0.2667rem;
    color: #606060;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .detail {
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .mxw-more {
    margin-top: 1rem;
    border-radius: 1.6667rem;
    margin-left: 0;
}
.ny-product-desc .small-image {
    width: 100%;
    max-width: 10rem;
    margin-top: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.ny-product-desc .small-image .swiper-slide {
    max-width: 2rem;
}
.ny-product-desc .small-image .mxw-image {
    cursor: pointer;
    border: 3px solid #eee;
    border-radius: 0.0833rem;

    display: flex;
    align-items: center;
    justify-content: center;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
    border-color: #e48b39;
}
.ny-product-desc .small-image .swiper-button-disabled {
    opacity: 1;
}
.ny-product-desc .small-image .swiper-button-next:after,
.ny-product-desc .small-image .swiper-button-prev:after {
    font-size: 0.4667rem;
    color: #ccc;
}
.ny-product-desc .small-image .swiper-button-next {
    right: 0rem;
}
.ny-product-desc .small-image .swiper-button-prev {
    left: 0rem;
}
.ny-product-desc .bottom {
    margin-top: 0.8333rem;
}
.ny-product-desc .bottom .head {
    width: 100%;
    border-bottom: 0.0167rem solid #d9d9d9;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 0.6667rem;
}
.ny-product-desc .bottom .head .text1 {
    padding: 0 0.3333rem;
    border-bottom: 0.0833rem solid #e48b39;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #e48b39;
}
.ny-product-desc .big-swiper .swiper-slide{
    height:auto
}
.ny-product-desc .big-swiper .mxw-image{
    height:100%;    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (min-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 1400px;
    }
    .ny-product-desc .top {
        align-items: stretch;
    }
}

@media screen and (max-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 100%;
    }
    .ny-product-desc .top {
        flex-wrap: wrap;
    }
    .ny-product-desc .ny-product-image {
        width: 100%;
        margin-right: 0;
    }
    .ny-product-desc .right {
        width: 100%;
    }
    .ny-product-desc .info {
        order: 2;
    }
    .ny-product-desc .small-image {
        padding: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .ny-product-desc .small-image .swiper-slide {
        max-width: 120px;
    }
    .ny-product-desc .swiper-button-next,
    .ny-product-desc .swiper-button-prev {
        display: none;
    }
    .ny-product-desc .info .head {
        margin-bottom: 15px;
    }
    .ny-product-desc .info .head .text1 {
        font-size: 22px;
    }
    .ny-product-desc .info .head .text2 {
        font-size: 14px;
    }
    .ny-product-desc .info .detail {
        font-size: 14px;
    }
    .ny-product-desc .info .mxw-more {
        margin-top: 20px;
    }
    .ny-product-desc .bottom {
        margin-top: 30px;
    }
    .ny-product-desc .bottom .head {
        margin-bottom: 10px;
    }
    .ny-product-desc .bottom .head .text1 {
        font-size: 16px;
        border-bottom-width: 3px;
        height: 40px;
        line-height: 40px;
    }

















}
/* ==================== 内页 - 产品详情 end ==================== */

