@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: #1a9aff;
  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: #1a9aff;
  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: #1a9aff;
}
aside .aside-nav > li:hover:after {
  border-color: #1a9aff;
}
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: #1a9aff;
}
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: #1a9aff;
}
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-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: 8.5rem;
  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: #1a9aff;
  width: 100%;
}
.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;
}
main{
  min-width: 0;
  flex-grow: 1;
}

@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 10px -2px rgba(0, 0, 0, 0.2);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 0;
    border-radius: 100px;
    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: 20px 15px 15px;
    border-bottom: 1px 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:last-child {
    border-bottom: 0;
  }
  .mxw-tool .tool-item .icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
  .mxw-tool .tool-item .text {
    font-size: 14px;
    color: #666;
    line-height: 1.2;
  }
  .mxw-tool .tool-content {
    position: absolute;
    top: 0;
    height: 100%;
    background: #fff;
    width: 200px;
    right: 86px;
    color: #333;
    font-size: 14px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.6;
    border: 1px solid #ddd;
    border-radius: 5px;
    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 ==================== */
.mxw-pagination {
  margin-top: 50px;
  font-size: 0;
  display: flex;  font-size: 14px;
  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;
  display: inline-block;
  margin: 4px;
}
.mxw-pagination  a.current,
.mxw-pagination  a:hover {
  background-color: #1a9aff;
  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;zoom:0.85
  }
  .mxw-pagination   a {
    font-size: 12px;
    margin: 2px;
    padding: 8px 10px;
display:none;
  }
 .mxw-pagination .tips{    display: inline-block;}
}
/* ==================== 分页样式 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: #1a9aff;
  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: #1a9aff;
  vertical-align: inherit;
}
.mxw-keywords .left a:after {
  content: ",";
  padding-left: 5px;
  padding-right: 5px;
}
.mxw-keywords .left a:hover {
  color: #1a9aff;
}
.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: #1a9aff;
  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;
  position: relative;
}
header .welcome {
  border-bottom: 1px solid #f2f2f2;
  height: 32px;
  line-height: 32px;
  background-color: #2b2b2b;
}
header .welcome .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
header .welcome .left {
  font-size: 14px;
  line-height: 1.2;
}
header .welcome .right {
  display: flex;
  align-items: center;
  font-size: 13px;
}
header .pc-nav .top .logo img {
     max-height: 1.2rem;
}
header .pc-nav .top > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .pc-nav .top-body {
  padding-top:0.267rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .pc-nav .top-body .search{
  border: 1px solid #228bca;
  border-radius: 100px;
  padding: 3px 3px 3px 20px;
  font-size: 14px;
  margin-right:10px;
}
header .pc-nav .top-body .search form{align-items: stretch;}
header .pc-nav .top-body .search button{
  width: 25px;
}
header .pc-nav .top-body .icon-group{
  display: flex;align-items: center;
}
header .pc-nav .top-body .icon-group .icon{
  width: 25px;display: block;flex-shrink: 0;
  margin-right: 10px;
}
header .pc-nav .top-body .icon-group .icon:last-child{margin-right:0;}


header .pc-menu {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;background: #185fb1;    margin-top: 16px;
}
header .pc-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
header .pc-menu > li:after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #bbb;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) skewX(-20deg);
}
header .pc-menu > li.active > a,
header .pc-menu > li:hover > a {
  color: #fff
}
header .pc-menu > li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
header .pc-menu > li:last-child:after {
  display: none;
}
header .pc-menu > li:last-child a {

}
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.267rem;
  color: #333;
  line-height: 1.2;
  padding: 0.2333rem;
}
header .pc-menu > li > a {
  font-size: 18px;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  padding: 12px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  position: relative;
  z-index: 2;
  width: 100%;
}
header .pc-menu > li > a:hover{ color:#fff}
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 {
  background-color: rgba(0, 0, 0, 0.04);
}
header .pc-menu > li > ul > li > a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
header .pc-menu > li > ul > li > a.active:after,
header .pc-menu > li > ul > li > a:hover:after {
  display: none;
}
header .pc-menu > li > ul > li > a:last-child:after {
  display: none;
}
header .pc-menu > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 0.0167rem solid #ddd;
}
header .pc-menu > li > ul > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 0.0167rem solid #ddd;
}
@media screen and (max-width: 1680px) {
  header .mxw-box {
    max-width: 96%;
  }
  header .pc-nav .top .logo {
    width: 205px;
  }
  header .pc-menu > li > a {
    font-size: 0.267rem;
  }
}
/* ==================== 头部 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: 42px;
  }
  .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: #000;
}
.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: #1a9aff;
  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: 0.4333rem;
  text-align: center;
  overflow: hidden;
}
.mxw-title .text1 {
  font-size: 0.7667rem;
  color: #1e1e1e;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  color: transparent;
  background-image: linear-gradient(to bottom, #5c5c5c, #0c0c0c);
  -webkit-background-clip: text;
}
.mxw-title .text2 {
  font-size: 18px;
  color: #1e1e1e;
  font-family: Impact;
}
.mxw-title .text2 span {
  color: #1a9aff;
  font-family: Impact;
}
@media screen and (max-width: 751px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .mxw-title .desc {
    font-size: 12px;
    padding: 0 20px;
    line-height: 1.8;
    color: #888;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 通用按钮 start ==================== */
.public-more {
  display: block;
  width: 2.6667rem;
  height: 0.75rem;
  line-height: 0.75rem;
  text-align: center;
  background-color: #1a9aff;
  border-radius: 1.6667rem;
  color: #fff;
  font-size: 0.3rem;
  transition: box-shadow 0.4s;
  margin: 1rem auto 0;
}
.public-more:hover {
  color: #fff !important;
  box-shadow: 0 0 0.1667rem -0.0333rem #1a9aff;
}
@media screen and (max-width: 751px) {
  .public-more {
    font-size: 12px;
    margin: 20px auto 0;
  }
}
/* ==================== 通用按钮 end ==================== */
/* ==================== 产品展示 start ==================== */
.mxw-product .swiper-slide {
  padding: 2px;
}
.mxw-product .image {
  width: 100%;
}
.mxw-product .item {
  transition: transform 0.4s;
  display: block;
  border: 0.0167rem solid #efefef;
}
.mxw-product .name {
  color: #333;
  font-size: 0.3333rem;
  line-height: 1.2;
  background-color: #fff;
  padding: 0.5rem 0.6667rem;
  position: relative;
  padding-right: 1rem;
}
.mxw-product .name::after {
  content: "→";
  position: absolute;
  right: 0.6667rem;
  color: #c3c3c3;
  font-size: 0.3333rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 751px) {
  .mxw-product .mxw-box {
    padding-top: 1.1667rem;
    padding-bottom: 1.6667rem;
  }
  .mxw-product .swiper-slide {
    max-width: 8.5rem;
    padding-top: 0.3333rem;
  }
  .mxw-product .item:hover {
    transform: translateY(-0.3333rem);
  }
}
@media screen and (max-width: 751px) {
  .mxw-product .swiper-wrapper {
    flex-flow: row wrap;
  }
  .mxw-product .swiper-slide {
    max-width: 160px;
    margin-top: 10px!important;
  }
  .mxw-product .item .name {
    padding: 8px 10px;
    padding-right: 30px;
    font-size: 12px;
  }
  .mxw-product .item .name:after {
    right: 10px;
  }
}
/* ==================== 产品展示 end ==================== */
/* ==================== 关于我们 start ==================== */
.mxw-about {
  background: url(../images/img07.jpg) no-repeat center;
  background-size: cover;
}
.mxw-about .head {
  width: 100%;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.8333rem;
  padding-bottom: 0.7667rem;
  position: relative;
}
.mxw-about .head .text1 {
  font-size: 0.7rem;
  color: #1a9aff;
  font-weight: bold;
  line-height: 1.2;
  margin-right: 0.3333rem;
  flex-shrink: 0;
}
.mxw-about .head .text2 {
  font-size: 0.65rem;
  color: #eee;
  opacity: 0.05;
  font-family: Impact;
  flex-shrink: 0;
}
.mxw-about .head:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0167rem;
  background-color: rgba(255, 255, 255, 0.32);
  position: absolute;
  bottom: 0;
  left: 0;
}
.mxw-about .head:before {
  content: "";
  display: block;
  width: 1.6667rem;
  height: 0.0333rem;
  background-color: #1a9aff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.mxw-about .desc {
  font-size: 0.3rem;
  color: #fff;
  line-height: 2;
}
.mxw-about .desc p {
  margin-bottom: 0.8333rem;
}
.mxw-about .public-more {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (min-width: 751px) {
  .mxw-about {
    background-attachment: fixed;
  }
  .mxw-about .mxw-box {
    padding-top: 2rem;
    padding-bottom: 2.1667rem;
  }
  .mxw-about .body {
    max-width: 10.8333rem;
  }
}
@media screen and (max-width: 1400px) {
.mxw-about .desc {
  font-size: 0.267rem;
}
}

@media screen and (max-width: 751px) {
  .mxw-about .head {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .mxw-about .head .text1 {
    font-size: 24px;
  }
  .mxw-about .head .text2 {
    font-size: 20px;
    opacity: 0.15;
  }
  .mxw-about .desc p {
    margin-bottom: 20px;
    font-size: 12px;
  }
  .mxw-about .public-more {
    width: 100%;
    margin-top: 20px;
    height: auto;
    line-height: inherit;
    font-size: 12px;
    padding: 8px 20px;
  }
}
/* ==================== 关于我们 end ==================== */
/* ==================== 新闻资讯 start ==================== */
.mxw-news {
  background-color: #f5f5f5;
}
.mxw-news .left {
  display: block;
}
.mxw-news .left:hover .title {
  color: #1a9aff;
}
.mxw-news .left .info {
  background: #fff;
  padding-top: 0.5rem;
  padding-left: 0.6667rem;
  padding-right: 0.3333rem;
  padding-bottom: 0.5rem;
}
.mxw-news .left .title {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
  font-weight: bold;
  translate: all 0.4s;
}
.mxw-news .left .desc {
  font-size: 0.25rem;
  color: #666;
  line-height: 1.8;
  height: 3.6em;
  text-align: justify;
  margin-bottom: 0.5rem;
}
.mxw-news .left .more {
  font-size: 0.2333rem;
  color: #999;
  border-left: 1px solid;
  padding-left: 0.25rem;
}
.mxw-news .right {
  min-width: 0;
  flex-grow: 1;
}
.mxw-news .right .item {
  display: block;
  position: relative;
  transition: all 0.4s;
  padding: 0.5rem 0.3333rem 0.3333rem;
}
.mxw-news .right .item:hover {
  background-color: #fff;
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.08);
}
.mxw-news .right .item:hover .info .title {
  color: #1a9aff;
}
.mxw-news .right .info {
  min-width: 0;
  flex-grow: 1;
}
.mxw-news .right .title,
.mxw-news .right .desc,
.mxw-news .right .time {
  position: relative;
  z-index: 3;
  transition: all 0.4s;
}
.mxw-news .right .title {
  font-size: 0.3rem;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
}
.mxw-news .right .desc {
  font-size: 0.2333rem;
  color: #999;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.mxw-news .right .time {
  font-size: 0.2333rem;
  color: #999;
  line-height: 1.2;
}
.mxw-news .right .time:after {
  content: "→";
  height: 0.2333rem;
  line-height: 0.2333rem;
  display: inline-block;
  border-left: 1px solid;
  padding-left: 0.1667rem;
  color: #999;
  margin-left: 15px;
}
@media screen and (min-width: 751px) {
  .mxw-news .body {
    align-items: stretch;
    display: flex;
  }
  .mxw-news .mxw-box {
    padding-top: 1rem;
    padding-bottom: 1.3333rem;
  }
  .mxw-news .left {
    width: 41.25%;
    flex-shrink: 0;
    margin-right: 1.1667rem;
  }
  .mxw-news .left:hover .info {
    background-color: #1a9aff;
  }
  .mxw-news .left:hover .title,
  .mxw-news .left:hover .desc,
  .mxw-news .left:hover .more {
    color: #fff;
  }
  .mxw-news .right .item {
    display: flex;
    align-items: center;
  }
  .mxw-news .right .item:last-child {
    margin-bottom: 0;
  }
  .mxw-news .right .item .image {
    width: 3.6667rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
    z-index: 9;
    position: relative;
  }
  .mxw-news .right .item .time {
    text-align: right;
  }
}
@media screen and (max-width: 751px) {
  .mxw-news .left .info {
    padding: 20px 15px;
  }
  .mxw-news .left .title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .mxw-news .left .desc {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
/* ==================== 新闻资讯 end ==================== */
/* ==================== 合作客户 start ==================== */
.mxw-brand .mxw-title {
  margin-bottom: 0.9167rem;
}
.mxw-brand .swiper-wrapper {
  flex-flow: row wrap;
}
.mxw-brand .image {
  background-color: #fff;
  border: solid 1px #e5e5e5;
}
@media screen and (min-width: 751px) {
  .mxw-brand .mxw-box {
    padding-top: 1.4rem;
    padding-bottom: 0.9333rem;
  }
  .mxw-brand .swiper-slide {
    max-width: 4.3334rem;
    margin-top: 0.4167rem !important;
  }
}
@media screen and (max-width: 751px) {
  .mxw-brand .mxw-title {
    margin-bottom: 20px;
  }
  .mxw-brand .swiper-slide {
    margin-top: 10px!important;
  }
}
/* ==================== 合作客户 end ==================== */
/* ==================== 通用 - 面包屑 start ==================== */
.bread-crumbs > .mxw-box {
  padding: 0.4167rem 0;
  border-bottom: solid 0.0167rem #d7d7d7;
}
.bread-crumbs > .mxw-box > a {
  font-size: 0.2333rem;
  color: #333;
  line-height: 1.2;
  vertical-align: middle;
}
.bread-crumbs > .mxw-box > a:last-child:after {
  display: none;
}
.bread-crumbs > .mxw-box > a::after {
  /*content: ">";
  color: #333 !important;
  padding: 0 5px;*/
}
.bread-crumbs .icon {
  width: 0.3333rem;
  flex-shrink: 0;
  margin-right: 0.2rem;
  vertical-align: middle;
  display: inline-block;
  font-size: 0;
}
@media screen and (max-width: 751px) {
  .bread-crumbs > .mxw-box {
    padding: 15px 20px;
  }
}
/* ==================== 通用 - 面包屑 end ==================== */
/* ==================== 通用 - 分类 start ==================== */
.ny-cate > .mxw-box {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.ny-cate .cate-item {
  text-align: center;
  background-color: #f5f5f5;
  height: 0.8333rem;
  line-height: 0.8333rem;
  font-size: 0.3rem;
}
.ny-cate .cate-item.active,
.ny-cate .cate-item:hover {
  background-color: #1a9aff;
  color: #fff;
}
@media screen and (min-width: 751px) {
  .ny-cate {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 751px) {
  .ny-cate {
    margin-top: 20px;
  }
  .ny-cate > .mxw-box {
    padding: 0px 20px;
  }
  .ny-cate .cate-item {
    width: 32%;
    margin: 0!important;
    margin-right: 2%!important;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
  }
  .ny-cate .cate-item:nth-child(3n) {
    margin-right: 0!important;
  }
  .ny-cate .cate-item:nth-child(3) ~ .cate-item {
    margin-top: 2%!important;
  }
}
/* ==================== 通用 - 分类 end ==================== */
/* ==================== 内页 - 关于我们 start ==================== */
.ny-about {
  overflow: hidden;
}
.ny-about .info .text1 {
  font-size: 0.6333rem;
  color: #1a9aff;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
  font-weight: bold;
}
.ny-about .info .text2 {
  font-size: 0.2333rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.6667rem;
}
.ny-about .info .desc {
  font-size: 0.3333rem;
  color: #666;
  line-height: 1.6;
  text-align: justify;
}
@media screen and (min-width: 751px) {
  .ny-about > .mxw-ny-box {
    display: flex;
    align-items: center;
  }
  .ny-about .image {
    width: 51.625%;
    margin-right: 76px;
    flex-shrink: 0;
  }
  .ny-about .info {
    min-width: 0;
    flex-grow: 1;
  }
}
@media screen and (max-width: 1440px) {
.ny-about .info .desc {
  font-size: 14px;  line-height: 1.6;
}
.ny-about .image{margin-right: 39px;}
}


@media screen and (max-width: 1366px) {
header .mxw-box{    max-width: 90%;}
.mxw-tool {
    zoom: 0.75;
}
header .pc-menu > li > a{    padding: 10px 25px;}


}

@media screen and (max-width: 751px) {
  .ny-about .image {
    margin-bottom: 30px;
  }
  .ny-about .info .text1 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .ny-about .info .text2 {
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .ny-about .info .desc {
    line-height: 2em;
    font-size: 14px;
  }
}
/* ==================== 内页 - 关于我们 end ==================== */
/* ==================== 内页 - 产品中心 start ==================== */
.ny-product .item {
  border: 1px solid #eee;
}
.ny-product .item .image {
  padding: 10px;
  padding-bottom: 0;
}
.ny-product .item .name {
  height: 50px;
  line-height: 50px;
  font-size: 15px;
  color: #5a5a5a;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
.ny-product .item .desc{
  font-size: 14px;
  line-height: 1.8;
  padding: 0 10px 15px;
  color: #888;
}
.ny-product main {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .ny-product > .mxw-box {
    padding-top: 40px;
  }
}
@media screen and (max-width: 751px) {
  .ny-product .item .name {
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
  }
  .ny-product .item .desc{
    font-size:12px;
    padding-bottom:10px;
  }
}
/* ==================== 内页 - 产品中心 end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
@media screen and (min-width: 751px) {
  .ny-product-desc > .mxw-box {
    padding-top: 40px;
  }
}
/* ==================== 内页 - 产品详情 end ==================== */
/* ==================== 内页 - 产品选型 start ==================== */
.ny-product-cate .mxw-cate {
  width: 100%;
  border-bottom: 0.0167rem dashed #d7d7d7;
  padding-bottom: 0.6667rem;
  margin-bottom: 0.6667rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.ny-product-cate .cate-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.3rem;
}
.ny-product-cate .cate-item:last-child {
  margin-bottom: 0;
}
.ny-product-cate .cate-item .label {
  font-size: 0.2667rem;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-right: 0.25rem;
  flex-shrink: 0;
  height: 0.5rem;
  line-height: 0.5rem;
}
.ny-product-cate .cate-item .list {
  margin-top: -0.15rem;
  min-width: 0;
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.ny-product-cate .cate-item .list > a {
  height: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
  color: #666;
  font-size: 0.2667rem;
  margin: 0.15rem 0.0833rem 0;
  padding: 0 0.25rem;
}
.ny-product-cate .cate-item .list > a.active,
.ny-product-cate .cate-item .list > a:hover {
  background-color: #1a9aff;
  color: #fff;
}
.ny-product-cate .itembox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.ny-product-cate .item{
  display: flex;align-items: center;
}
.ny-product-cate .item .image{
  width: 45%;
  flex-shrink: 0;
  margin-right: 4%;
}
.ny-product-cate .item:hover {
  z-index: 99;
}
.ny-product-cate .item:hover .info .title {
  color: #1a9aff;
}
.ny-product-cate .item .image {
  border: 0.0167rem solid #ddd;

}
.ny-product-cate .item .info {
  width: 100%;
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.8;
}
.ny-product-cate .item .info .title {
  font-weight: bold;
}
.ny-product-cate .mxw-btn-group{
  display: flex;align-items: center;margin-top: 0.25rem;
}
.ny-product-cate .mxw-btn-group .mxw-btn{
  display: block;
  color: #fff;
  padding: 0.1333rem 0.1667rem;
  background-color: #1a9aff;
  line-height: 1.2;
  font-size: 0.2333rem;
  min-width: 1.3333rem;
  text-align: center;
  border-radius: 0.05rem;
  margin-right: 0.3333rem;
}
.ny-product-cate .mxw-btn-group .mxw-btn:last-child{
  margin-right: 0;
}

.ny-product-desc .product-desc .mxw-btn-group{
  display: flex;align-items: center;margin-top: 0.25rem;
}
.ny-product-desc .product-desc .mxw-btn-group .mxw-btn{
  display: block;
  color: #fff;
     padding: 0.2333rem 0.5667rem;
  background-color: #1a9aff;
  line-height: 1.2;
  font-size: 18px;
  min-width: 1.6333rem;
  text-align: center;
  border-radius: 0.05rem;
  margin-right: 0.3333rem;
}
.ny-product-desc .product-desc .mxw-btn-group .mxw-btn:last-child{
  margin-right: 0;
}


.ny-product-cate .hz .item .image{ margin-bottom: 10px; text-align: center;}
.ny-product-cate .hz .item .info .title{ text-align: center;}



@media screen and (min-width: 751px) {
  .imgpart {
    position: relative;
  }
  .imgpart .minpic {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .imgpart .minpic .magnify {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    cursor: move;
    background-color: #fff;
    opacity: 0.3;
    filter: alpha(opacity=30);
  }
  .imgpart .minpic img {
    width: 100%;
    height: 100%;
  }
  .imgpart .bigpic {
    display: none;
    position: absolute;
    top: 0;
    right: -7.8333rem;
    width: 7.6667rem;
    height: 7.6667rem;
    z-index: 333;
    border: 0.0167rem solid #fff;
    overflow: hidden;
    box-shadow: 0 0 0.1667rem -0.0333rem rgba(0, 0, 0, 0.2);
  }
  .imgpart .bigpic > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 13.3333rem;
    max-width: inherit;
  }
.product-image .imgpart .bigpic > img{    width: 1220px;}


}
@media screen and (max-width: 751px) {
  .ny-product-cate .bigpic {
    display: none!important;
  }
  .ny-product-cate .item .image {
    margin-bottom: 15px;
  }
  .ny-product-cate .mxw-cate {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .ny-product-cate .cate-item {
    margin-bottom: 15px;
  }
  .ny-product-cate .cate-item .list {
    margin-top: -5px;
  }
  .ny-product-cate .cate-item .list > a {
    margin: 5px 2px;
  }
  .ny-product-cate .mxw-btn-group .mxw-btn{width: 48%;margin-right: 4%;font-size: 12px;}
  .ny-product-cate .mxw-btn-group .mxw-btn:last-child{margin-right: 0;}
}
/* ==================== 内页 - 产品选型 end ==================== */
/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact > .mxw-ny-box {
  padding: 50px;
  background-color: #fff;
}
.ny-contact .logo {
  width: 190px;
  margin-bottom: 40px;
  display: block;
}
.ny-contact .desc {
  font-size: 15px;
  color: #1a9aff;
  line-height: 1.6;
}
.ny-contact .desc p {
  margin-bottom: 20px;
}
.ny-contact .desc p:last-child {
  margin-bottom: 0;
}
.ny-contact .desc img {
  width: 20px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: bottom;
}
.ny-contact .right .text1 {
  font-size: 16px;
  color: #1a9aff;
  margin-bottom: 40px;
}
.ny-contact input,
.ny-contact textarea {
  border: 1px solid #a9a9a9;
  color: #333;
  font-size: 14px;
  display: block;
  outline: none;
}
.ny-contact input::-webkit-input-placeholder,
.ny-contact textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #666666;
}
.ny-contact input:-moz-placeholder,
.ny-contact textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #666666;
}
.ny-contact input::-moz-placeholder,
.ny-contact textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #666666;
}
.ny-contact input:-ms-input-placeholder,
.ny-contact textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #666666;
}
.ny-contact input {
  line-height: 44px;
  height: 44px;
  padding-left: 15px;
  padding-right: 15px;
}
.ny-contact input.danger {
  border-color: #ff0000;
}
.ny-contact input.danger::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #ff0000;
}
.ny-contact input.danger:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #ff0000;
}
.ny-contact input.danger::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #ff0000;
}
.ny-contact input.danger:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #ff0000;
}
.ny-contact textarea {
  height: 120px;
  resize: none;
  margin-bottom: 25px;
  width: 100%;
  padding: 10px;
}
.ny-contact button {
  background-color: #1a9aff;
  font-size: 14px;
  color: #fff;
  height: 40px;
  line-height: 40px;
  width: 200px;
  display: block;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .ny-contact > .mxw-ny-box {
    margin: 60px auto;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
  }
  .ny-contact .left {
    margin-right: 50px;
    min-width: 0;
    flex-grow: 1;
  }
  .ny-contact .right {
    width: 60%;
    flex-shrink: 0;
  }
  .ny-contact .right .top {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .ny-contact .right .top div {
    flex-grow: 1;
    margin-right: 10px;
  }
  .ny-contact .right .top div:last-child {
    margin-right: 0;
  }
  .ny-contact .right .top div input{width:100%;}
.ny-contact .right label{margin-bottom:5px;    display: block;}
}
@media screen and (max-width: 751px) {
  .ny-contact {
    padding: 30px 20px;
  }
  .ny-contact > .mxw-ny-box {
    padding: 15px;
    overflow: hidden;
  }
  .ny-contact .logo {
    margin-left: auto;
    margin-right: auto;
    width: 190px;
    margin-bottom: 20px;
  }
  .ny-contact .desc {
    line-height: 1.8;
  }
  .ny-contact .desc p {
    margin-bottom: 15px;
  }
  .ny-contact .desc img {
    margin-right: 10px;
    vertical-align: middle;
  }
  .ny-contact .left {
    margin-bottom: 20px;
  }
  .ny-contact .right .text1 {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
  }
  .ny-contact input {
    width: 100%;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .ny-contact textarea {
    margin-bottom: 15px;
  }
}
/* ==================== 内页 - 联系我们 end ==================== */
/* ==================== 内页 - 新闻资讯 start ==================== */
.ny-news .item {
  display: block;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.0167rem dashed #ccc;
}
.ny-news .item .info {
  color: #333;
}
.ny-news .item .info .title {
  font-size: 0.3333rem;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
}
.ny-news .item .info .date {
  font-size: 0.2333rem;
  color: #1a9aff;
  line-height: 1.2;
  margin: 0.25rem 0;
}
.ny-news .item .info .desc {
  font-size: 0.2667rem;
  line-height: 1.8;
  text-align: justify;
  color: #666;
}
@media screen and (min-width: 751px) {
  .ny-news .item {
    display: flex;
    align-items: center;
  }
  .ny-news .item:hover .info .title {
    font-weight: bold;
    color: #1a9aff;
  }
  .ny-news .image {
    width: 5.5rem;
    flex-shrink: 0;
    margin-right: 0.8333rem;
    border-radius: 0 0 1.3333rem 0;
  }
  .ny-news .info {
    min-width: 0;
    flex-grow: 1;
  }
}
@media screen and (max-width: 751px) {
  .ny-news .image {
    margin-bottom: 20px;
  }
  .ny-news .item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .ny-news .item .info .title {
    font-size: 16px;
    font-weight: bold;
  }
  .ny-news .item .info .desc {
    font-size: 14px;
  }
}
/* ==================== 内页 - 新闻资讯 end ==================== */
/* ==================== 内页 通用上一篇下一篇 start ==================== */
.mxw-btn01 {
  display: block;
  padding: 10px;
  position: relative;
  font-size: 14px;
  color: #333;
  border: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.mxw-btn01 span {
  flex-shrink: 0;
}
.mxw-btn01 a {
  flex-grow: 1;
  color: #666;

}
.mxw-btn01 a:hover {
  color: #1a9aff;
}
.mxw-btn01 .time {
  flex-shrink: 0;
}
/* ==================== 内页 通用上一篇下一篇 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  background-color: #252525;
}
footer .top {
  border-bottom: 0.0167rem solid rgba(255, 255, 255, 0.1);
  padding-top: 1.1667rem;
  padding-bottom: 0.3rem;
}
footer .top > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .foot-top {
  margin-bottom: 0.8333rem;
  display: flex;
  align-items: center;
}
footer .foot-top .logo {
  width: 2.6667rem;
  flex-shrink: 0;
}
footer .foot-nav {
  display: flex;
  align-items: center;
 padding-left:0.8667rem;
}
footer .foot-nav > a {
  padding: 0 0.8667rem 0 0;
  font-size: 0.3rem;
  color: #e3e3e3;
}
footer .foot-contact {
  display: flex;
  align-items: center;margin-bottom:30px;
}
footer   .links{color:#fff;    justify-content: flex-start !important;    font-size: 14px;}
footer   .links a{color:#fff;     margin: 0 5px;}
footer .foot-contact p {
  font-size: 0.2667rem;
  color: #e3e3e3;
  margin-left: 0.6667rem;
  line-height: 1.8;
}
footer .foot-contact p:first-child {
  margin-left: 0;
}
footer .foot-contact img {
  width: 0.3333rem;
  margin-right: 0.1667rem;
}
footer .mxw-qr {
  text-align: center;
}
footer .mxw-qr img {
  width: 1.6667rem;
  display: block;
  margin-bottom: 0.3333rem;
}
footer .mxw-qr p {
  font-size: 0.2333rem;
  color: #fff;
  opacity: 0.7;
}
footer .mxw-copyright > .mxw-box {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.2333rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 751px) {
  footer .top {
    padding: 0;
  }
  footer .top > .mxw-box {
    flex-wrap: wrap;
  }
  footer .top .left {
    width: 100%;
  }
  footer .foot-top {
    margin-bottom: 20px;
    width: 100%;
    flex-wrap: wrap;
  }
  footer .foot-top .logo {
    margin: 0 auto 0px;
    width: 120px;
  }
  footer .foot-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .foot-nav > a {
    width: 32%;
    padding: 0;
    text-align: center;
    font-size: 13px;
  }
  footer .foot-nav > a:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  footer .foot-nav > a:nth-child(3) ~ a {
    margin-top: 20px;
  }
  footer .foot-contact {
    flex-wrap: wrap;
  }
  footer .foot-contact p {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
  footer .foot-contact p:last-child {
    margin-bottom: 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: #1a9aff;
}
/* 内页 banner */
.ny-banner img {
  width: 100%;
}



.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;
}


.ny-product-cate .itembox.hz .item{display: block;

}
.ny-product-cate .hz .item .image{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%;
  }
header .mxw-box {
    max-width: 86%;
}
}













@media screen and (min-width: 751px) {
  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }
  .mxw-ny-box {
    padding-top: 1.1667rem;
    padding-bottom: 1.1667rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-ny-box {
    max-width: 100%;
    font-size: 0;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 751px) {
  body {
    margin-top: 60px;
  }
  html {
    font-size: 50px;
  }
  .m-none,
  .pc-nav {
    display: none !important;
  }
  .mxw-box {
    padding: 30px 20px;
    max-width: 100%;
  }
  .mxw-section {
    padding-left: 0;
    padding-right: 0;
  }
  article {
    font-size: 15px;
  }
}
/* ==================== 页面自定义样式 end ==================== */
/* ==================== 动画 start ==================== */
@keyframes arrowAnimate {
  0% {
    transform: translate(0rem, 0rem);
  }
  50% {
    transform: translate(0rem, -0.1667rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
/* ==================== 动画 end ==================== */


/***********样品申请**********/
.apply{width: 890px;margin: 0 auto;}

.apply_jx h4{color: black;font-size: 22px;text-align: center;font-weight: bold;margin-bottom: 40px;padding-right: 55px;}
.apply_jx label{
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}
.apply_jx .inp{width: 50%;float: left;margin-bottom: 30px;}
.apply_jx .inp input,.apply_jx .inp select{width: 385px;height: 50px;background: #efefef;border: none;padding-left: 15px;outline: none;    color: #757575;}
.apply_jx .inp span,.apply_jx .inps span{color: #ff0000;margin-left: 13px;    font-size: 12px;}
.apply_jx .inps input{width:830px;height: 50px;background: #efefef;border: none;padding-left: 15px;}
.apply_jx .inps input[type='submit']{width:230px;}
.apply_jx .bz{color: #666666;font-size: 16px;}
.apply_jx .inps textarea{width:830px;height: 220px;background: #efefef;border: none;padding: 15px;}
.apply_jx .inps{margin-bottom: 30px;}
.apply_jx .inps input[type="submit"]{background: #2391ee;color: white;font-size: 18px;}
.apply_jx .inps.sec select{    color: #757575;width:830px; height: 50px;background: #efefef;border: none;padding-left: 15px;outline: none;}
.about img,.npros_ld img{max-width: 100%; height: auto !important;}

.pro_list li{    position: relative;}
.pro_list .new_n{position: absolute;right: 0px; top: 35%;}

.pro_list .xqs{position: absolute;right: 0px; top: 55%;}
.npros_ld img{max-width:100%; height:auto !important;}

.apply .bz{font-size:14px; margin-bottom: 20px;}
  .my-map { margin: 0 auto; width: 100%; height: 440px; } .my-map .icon { background: url(//a.amap.com/lbs-dev-yuntu/static/web/image/tools/creater/marker.png) no-repeat; } .my-map .icon-cir { height: 31px; width: 28px; } .my-map .icon-cir-red { background-position: -11px -5px; }
     .amap-container{height: 100%;}
     .myinfowindow{width: 240px;min-height: 50px;}
     .myinfowindow h5{ height: 20px; line-height: 20px; overflow: hidden; font-size: 14px; font-weight: bold; width: 220px; text-overflow: ellipsis; word-break: break-all; white-space: nowrap; }
     .myinfowindow div{ margin-top: 10px; min-height: 40px; line-height: 20px; font-size: 13px; color: #6f6f6f; }

footer .top > .mxw-box .right{display: flex;}
footer .mxw-qr{ margin-left:20px;}

.ny-product-cate .pro_cent .item .info .desc{zoom:0.85;}
.ny-product-cate  .pro_cent .item .image{ width:50%;}
.layui-layer-btn .layui-layer-btn0,.layui-layer-btn a{ font-size:14px;}

@media screen and (max-width: 1440px) {
.mxw-tool{zoom:0.8}


}
.mxw-news .left .mxw-image{    max-height: 310px;display: flex;
    align-items: center;
    justify-content: center;}
.ny-news .image{max-height: 180px;display: flex;
    align-items: center;
    justify-content: center;}


/*********分辨率小于768px********/
@media only screen and (max-width: 768px) {

.apply{width: 100%;}
	.apply_jx .inp{width: 100%;margin-bottom: 20px;}
	.apply_jx .inp input,.apply_jx .inps.sec select{width: 94%;}
	.apply_jx h4{padding-right: 0;font-size: 20px;}
	.apply_jx .inps input,.apply_jx .inp select,.apply_jx .inps textarea{width: 94%;}
	.apply_jx .bz{font-size: 14px;}
	.ny-product-cate .item .info .desc{zoom:0.85;}
.ny-product-cate .itembox{    justify-content: space-between;}
.u-row-2 .u-col:nth-child(1) ~ .u-col{ margin-top:0}
.ny-product-cate .item{ width:48%;    display: block; margin-bottom:15px;}
.ny-product-cate .pro_cent .item .image{width:100%; }

.bigpic{display:none}


.mxw-product .swiper-slide{max-width: initial;}
.mxw-about .mxw-box{background-color: rgba(0,0,0,.5);}
.mxw-about .head .text2{opacity: 0.75;}
.ny-product-cate .item .image{width:100%;}
.ny-product-cate .itembox{    font-size: 14px;}

}
