@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: #000;
  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 ==================== */
.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: #000;
  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: #000;
  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: 7rem;
  margin-right: 0.6667rem;
  flex-shrink: 0;
  position: relative;
  z-index: 9;
   
    background: url(../images/img23.png) no-repeat center bottom;
    background-size: 100%;
    margin-right: 40px;
    border: solid 1px rgba(0, 0, 0, 0.16);
    flex-shrink: 0;
}
.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: #000;
}
.ny-product-desc .product-desc .desc {
  font-size: 0.3rem;
  color: #666;
  line-height: 1.8;
}
.ny-product-desc .bottom {
  margin-top: 0.6667rem;
  font-size: 0.2667rem;
  line-height: 1.8;
  text-align: justify;
}
.easyzoom-flyout img {
  max-width: inherit!important;
  width: auto!important;
}
@media screen and (max-width: 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 ==================== */
.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: #000;
}
.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: #000;
  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 #000;
}
@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 ==================== */
.Pagination {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 1rem;
  font-size: 0;
}
.Pagination a {
  display: inline-block;
  border: 0.0167rem solid #CCCCCC;
  color: #666666;
  font-size: 0.3rem;
  margin: 0 0.1667rem;
  min-width: 0.6667rem;
  padding: 0 0.1667rem;
  height: 0.6667rem;
  line-height: 0.6667rem;
}
.Pagination a:hover,
.Pagination .active {
  color: white!important;
  background: #000;
  border-color: #000;
}
@media screen and (min-width: 751px) {
  .Pagination a.first {
    width: 1.1667rem;
    margin-left: 0;
    margin-right: 0;
  }
  .Pagination a.plane {
    background: none;
    border: 0;
  }
}
@media screen and (max-width: 751px) {
  .Pagination {
    margin-top: 20px;
  }
  .Pagination a {
    width: auto;
    height: auto;
    line-height: inherit;
    padding: 6px 12px;
    font-size: 12px;
    margin-left: 2px;
    margin-right: 2px;
  }
}
/* ==================== 分页样式 end ==================== */
/* ==================== 通用标签页 start ==================== */
/* 标签页 */
.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: stretch;
  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;
  background: #eaeaea;
  color: #333;
  padding: 0.3rem 0.5rem;
  margin-right: 0.9rem;
  line-height: 1.6;
    display: flex; display: -ms-flex;display: -moz-flex; display: -webkit-flex;
    align-items: center; justify-content: center;
}
.mxw-tabs .mxw-tabs-item:last-child {
  margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
  background: #000;
  color: #fff;
}
@media screen and (max-width: 751px) {
  .mxw-tabs .mxw-tabs-header {
    margin-bottom: 20px;
  }
  .mxw-tabs .mxw-tabs-item {
    font-size: 14px;
    padding: 0 20px;
    margin-right: 10px;
  }
  .mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
  }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 头部 start ==================== */
header {
  width: 100%;
  z-index: 99;
  transition: all 0.4s;
}
header .mxw-box {
  max-width: 1500px;
}
header .pc-nav .welcome {
  background: #ececec;
}
header .pc-nav .welcome .mxw-box {
  font-size: 13px;
  color: #787878;
  line-height: 32px;
  height: 32px;
}
header .pc-nav .welcome .mxw-box a:hover {
  color: #000;
}
header .pc-nav .welcome .left a {
  font-weight: bold;
  color: #000;
}
header .pc-nav .top .logo {
  margin: right 80px;
  flex-shrink: 0;
}
header .pc-nav .top .logo img {
  height: 60px;
}
header .pc-menu {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}
header .pc-menu > li {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 50px;

}
header .pc-menu > li:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -100%);
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #000;
  transition: all 0.4s;
}
header .pc-menu > li:last-child {
  margin-right: 0;
}
header .pc-menu > li:hover:after {
  transform: translate(-50%, 0);
}
header .pc-menu > li:hover > a {
  color: #fff !important;
}
header .pc-menu > li:hover .pc-sub-menu {
  opacity: 1;
  visibility: visible;
}
header .pc-menu > li:hover .pc-sub-menu .pc-nav-box {
  transform: perspective(1200px) rotateX(0deg);
  -webkit-transform: perspective(1200px) rotateX(0deg);
  -moz-transform: perspective(1200px) rotateX(0deg);
  -ms-transform: perspective(1200px) rotateX(0deg);
  -o-transform: perspective(1200px) rotateX(0deg);
}
header .pc-menu > li:hover .pc-sub-menu .pc-nav-box:before {
  width: 100%;
  visibility: visible;
}
header .pc-menu > li > a {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  transition: color 0.4s;
  text-align: center;
  height: 120px;
  padding-left: 15px;
  padding-right: 15px;
}
header .pc-menu > li .pc-sub-menu {
  width: 200px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  padding-top: 0px;
  color: #333;
}
header .pc-menu > li .pc-nav-box {
  border: 1px solid #ddd;
  position: relative;
  background: #fff;
  -webkit-transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
  transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: perspective(1200px) rotateX(-90deg);
  transform: perspective(1200px) rotateX(-90deg);
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}
header .pc-menu > li .pc-nav-box::before {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  visibility: hidden;
  left: 0;
  top: 0;
  position: absolute;
  transition: all 0.4s;
}
header .pc-menu > li .pc-nav-box > li:hover {
  background: rgba(0, 0, 0, 0.5);
}
header .pc-menu > li .pc-nav-box > li:hover a{ color: #fff}
header .pc-menu > li .pc-nav-box > li > a {
  display: block;
  text-align: center;
  font-size: 13px;
  height: 46px;
  line-height: 46px;
}
@media screen and (max-width: 1680px) {
  header .mxw-box {
    max-width: 96%;
  }
  header .pc-nav .top .logo img {
    height: 40px;
  }
  header .pc-menu > li {
    margin-right: 30px;
  }
  header .pc-menu > li > a {
    height: 100px;
    font-size: 18px;
  }
}
/* ==================== 头部 end ==================== */
/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
  .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: #fff;
    border-bottom: 1px solid #eee;
  }
  .mxw-mob-nav .logo {
    display: block;
    flex-shrink: 0;
  }
  .mxw-mob-nav .logo img {
    height: 31px;
  }
  .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: #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 {
  background: #000;
  font-size: 0;
  position: relative;
}
.mxw-banner .swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
  right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.0667rem;
  opacity: 1;
  background: #fff;
  margin-left: 6px;
  margin-right: 6px;
  border-radius: 100px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}
.mxw-banner .swiper-button-next {
  right: 40px;
}
.mxw-banner .swiper-button-prev {
  left: 40px;
}
.mxw-banner .banner-swiper {
  --swiper-navigation-color: #fff;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 30px;
  /* 设置按钮大小 */
}
@media screen and (max-width: 751px) {
  .mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 5px;
  }
  .mxw-banner .swiper-pagination {
    bottom: 10px;
  }
  .mxw-banner .swiper-button-next,
  .mxw-banner .swiper-button-prev {
    display: none;
  }
}
/* ==================== 轮播图 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
  position: relative;
  z-index: 99;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #f4f4f4;
}
.mxw-keywords .mxw-box {
  display: flex;
  align-items: center;
  height: 1.6667rem;
}
.mxw-keywords .left {
  position: relative;
  flex-grow: 1;
  font-size: 18px;
  line-height: 1.2;
  color: #666666;
}
.mxw-keywords .left strong,
.mxw-keywords .left span {
  font-size: inherit;
  line-height: 1.2;
  color: #000;
}
.mxw-keywords .left a:after {
  content: "/";
  margin-left: 5px;
  margin-right: 5px;
}
.mxw-keywords .left a:hover {
  color: #000;
}
.mxw-keywords .left a:last-child:after {
  display: none;
}
.mxw-keywords .right form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mxw-keywords .right input {
  width: 6.5rem;
  height: 0.8333rem;
  line-height: 0.8333rem;
  padding: 0px 10px;
  padding-left: 26px;
  font-size: 0.3rem;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.32);
}
.mxw-keywords .right input::-webkit-input-placeholder {
  /*Webkit browsers*/
  color: #a4a4a4;
  font-size: 14px;
}
.mxw-keywords .right input:-moz-placeholder {
  /*Mozilla Firefox 4 to 8*/
  color: #a4a4a4;
  font-size: 14px;
}
.mxw-keywords .right input::moz-placeholder {
  /*Mozilla Firefox 19+*/
  color: #a4a4a4;
  font-size: 14px;
}
.mxw-keywords .right input:-ms-input-placeholder {
  /*Internet Explorer 10+*/
  color: #a4a4a4;
  font-size: 14px;
}
.mxw-keywords .right button {
  width: 1.3333rem;
  height: 0.8333rem;
  line-height: 0.8333rem;
  background: #000;
  border: 0;
  outline: none;
  border-left: 0;
  cursor: pointer;
  color: #fff;
  font-size: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mxw-keywords .right button .icon {
  display: block;
  width: 0.2333rem;
  height: 0.2333rem;
  background-size: 100%;
  margin-right: 5px;
}
/* ==================== 关键词 end ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
  text-align: center;
  overflow: hidden;
  margin-bottom: 1rem;
}
.mxw-title .text1 {
  font-size: 0.7333rem;
  color: #333;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.3333rem;
}
.mxw-title .text2 {
  font-size: 0.3rem;
  color: #666;
  line-height: 1.8;
}
@media screen and (max-width: 751px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .mxw-title .text2 {
    font-size: 14px;
    line-height: 1.6;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 解决方案 start ==================== */
.mxw-cases {
  font-size: 0;
}
.mxw-cases .cases-swiper .more-item,
.mxw-cases .cases-swiper .item {
  display: block;
  position: relative;
}
.mxw-cases .cases-swiper .image {
  background-repeat: no-repeat;
  background-position: center;
  height: 10rem;
  background-size: cover;
}
.mxw-cases .cases-swiper .info {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  max-width: 25rem;
  background-color: rgba(0, 0, 0, 0.48);
  padding: 0.5rem;
  color: #fff;
  width: 100%;
  text-align: center;
}
.mxw-cases .cases-swiper .title {
  font-size: 0.3333rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.mxw-cases .cases-swiper .desc {
  font-size: 0.2667rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}
.mxw-cases .itembox > .mxw-box {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
.mxw-cases .itembox .more-item,
.mxw-cases .itembox .item {
  width: 14.28%;
  padding-top: 0.5rem;
  padding-bottom: 0.6667rem;
  position: relative;
  text-align: center;
}
.mxw-cases .itembox .more-item.active,
.mxw-cases .itembox .item.active,
.mxw-cases .itembox .more-item:hover,
.mxw-cases .itembox .item:hover {
  color: #fff;
  background-color: #000;
}
.mxw-cases .itembox .more-item.active .icon img,
.mxw-cases .itembox .item.active .icon img,
.mxw-cases .itembox .more-item:hover .icon img,
.mxw-cases .itembox .item:hover .icon img {
  transform: translateY(0);
}
.mxw-cases .itembox .more-item.active .name,
.mxw-cases .itembox .item.active .name,
.mxw-cases .itembox .more-item:hover .name,
.mxw-cases .itembox .item:hover .name {
  color: #fff;
}
.mxw-cases .itembox .more-item.active:before,
.mxw-cases .itembox .item.active:before,
.mxw-cases .itembox .more-item:hover:before,
.mxw-cases .itembox .item:hover:before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5rem;
  position: absolute;
  top: -0.5rem;
  left: 0;
  background-color: #000;
  z-index: 99;
}
.mxw-cases .itembox .icon {
  width: 1rem;
  height: 1rem;
  margin-bottom: 0.3333rem;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.mxw-cases .itembox .icon img {
  height: auto;
  line-height: inherit;
  transform: translateY(-50%);
}
.mxw-cases .itembox .name {
  font-size: 0.3333rem;
  color: #333;
}
@media screen and (min-width: 751px) {
  .mxw-cases {
    padding-top: 1.6667rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-cases {
    padding-top: 30px;
  }
  .mxw-cases .mxw-title {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mxw-cases .cases-swiper .desc {
    display: none;
  }
  .mxw-cases .cases-swiper .title {
    font-size: 12px;
    margin: 0;
  }
  .mxw-cases .cases-swiper .info {
    padding: 10px 10px;
  }
  .mxw-cases .cases-swiper .image {
    height: 200px;
  }
  .mxw-cases .itembox .item,
  .mxw-cases .itembox .more-item {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .mxw-cases .itembox .item:before,
  .mxw-cases .itembox .more-item:before {
    display: none!important;
  }
  .mxw-cases .itembox .item {
    width: 32%;
  }
  .mxw-cases .itembox .item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .mxw-cases .itembox .more-item {
    width: 100%;
    margin-top: 20px;
    height: 30px;
    line-height: 30px;
    background: #000;
    border-radius: 5px;
    text-align: center;
    padding: 0;
  }
  .mxw-cases .itembox .more-item .name {
    color: #fff;
    font-size: 12px;
  }
  .mxw-cases .itembox .more-item .icon {
    display: none;
  }
  .mxw-cases .itembox > .mxw-box {
    flex-wrap: wrap;
    padding-top: 0;
  }
  .mxw-cases .itembox .icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
  .mxw-cases .itembox .name {
    font-size: 14px;
  }
}
/* ==================== 解决方案 end ==================== */
/* ==================== 产品中心 start ==================== */
.mxw-product .mxw-tabs-item {
  width: 4.8333rem;
  border: 1px solid #e5e5e5;
  height: auto;
  line-height: 1.5;
  text-align: center;
  font-size: 0.3333rem;
  margin-right: 0;
  background-color: #fff;

}
.mxw-product .mxw-tabs-item:hover,
.mxw-product .mxw-tabs-item.active {
  background-color: #000;
  color: #fff;
}
.mxw-product .mxw-tabs-header {
  margin-bottom: 0.6667rem;
}
.mxw-product .item {
  display: block;
}
.mxw-product .item:nth-child(2n) .image {
  background-image: url(../images/img24.png);
}
.mxw-product .image {
  border: solid 1px rgba(0, 0, 0, 0.16);
  background: url(../images/img23.png) no-repeat center bottom;
  background-size: 100%;
  transition: all 0.4s;
  height: 4.417rem;
  display: flex; display: -webkit-flex;  display: -ms-flex; display: -moz-flex;
  align-items: center;
  justify-content: center;
}
.mxw-product .image img{ max-height: 100%}
.mxw-product .name {
  font-size: 0.3333rem;
  color: #000;
  line-height: 1.2;
  margin-top: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .mxw-product .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 0.6667rem;
  }
  .mxw-product .item {
    margin-top: 0.3333rem;
  }
  .mxw-product .item:hover .image {
    margin-top: -0.1667rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-product .mxw-tabs-item {
    width: auto;
    height: auto;
    line-height: inherit;
    padding: 10px 20px;
    font-size: 14px;
  }
  .mxw-product .mxw-tabs-header {
    margin-bottom: 30px;
  }
  .mxw-product .name {
    margin-top: 10px;
    font-size: 12px;
  }
}
/* ==================== 产品中心 end ==================== */
/* ==================== 关于我们 start ==================== */
.mxw-about .body {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: url(../images/img04.jpg) no-repeat center;
  background-size: cover;
}
.mxw-about .info {
  min-width: 0;
  flex-grow: 1;
  margin-right: 1.8333rem;
}
.mxw-about .info .text1 {
  font-size: 0.6rem;
  line-height: 1.2;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}
.mxw-about .info .text2 {
  font-size: 0.3333rem;
  color: #666;
  line-height: 1.4;
  text-decoration: underline;
  margin-bottom: 0.6667rem;
}
.mxw-about .info .desc {
  font-size: 0.3rem;
  color: #555;
  line-height: 2.6em;
  text-align: justify;
  margin-bottom: 1rem;
}
.mxw-about .info .mxw-more {
  width: 3.1667rem;
  display: block;
  transition: all 0.4s;
}
.mxw-about .info .mxw-more:hover {
  transform: translateX(20px);
}
.mxw-about .right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.mxw-about .right .img1 {
  width: 6.6667rem;
  margin-right: 0.1167rem;
}
.mxw-about .right .item {
  display: block;
  position: relative;
}
.mxw-about .right .item:hover .info2 {
  background-color: rgba(0, 115, 162, 0.7);
}
.mxw-about .right .item:hover .desc2 {
  height: 3.6em;
  opacity: 1;
}
.mxw-about .right .item .info2 {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  left: 0;
  top: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  transition: all 0.4s;
}
.mxw-about .right .item .name {
  font-size: 0.3333rem;
  color: #fff;
  pointer-events: none;
  font-weight: bold;
  margin-bottom: 10px;
}
.mxw-about .right .item .desc2 {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  transition: all 0.4s;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.mxw-about .right .item1 {
  margin-bottom: 0.15rem;
}
.mxw-about .right .bottom {
  display: flex;
  align-items: center;
}
.mxw-about .right .item2 {
  margin-right: 0.15rem;
  width: 58.9%;
}
.mxw-about .right .top {
  display: flex;
  align-items: center;
}
.mxw-about .right .item3 {
  width: 39.2%;
}
.mxw-about .right .item4 {
  width: 58.9%;
  margin-right: 0.15rem;
}
.mxw-about .right .item5 {
  width: 39.2%;
}
.mxw-about .right .item6 {
  margin-top: 0.1667rem;
  width: 100%;
}
@media screen and (min-width: 751px) {
  .mxw-about {
    padding-top: 0.6667rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-about {
    padding-top: 30px;
  }
  .mxw-about .mxw-title {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mxw-about .body {
    padding-bottom: 0;
    padding-top: 0;
  }
  .mxw-about .body > .mxw-box {
    flex-wrap: wrap;
  }
  .mxw-about .info {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .mxw-about .info .text1 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .mxw-about .info .text2 {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .mxw-about .info .desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .mxw-about .info .mxw-more {
    width: 130px;
    margin: 0 auto;
  }
  .mxw-about .right {
    flex-wrap: wrap;
    width: 100%;
  }
  .mxw-about .right .img1,
  .mxw-about .right .img2 {
    width: 100%;
  }
  .mxw-about .right .img1 {
    margin-bottom: 8px;
    margin-right: 0;
  }
}
/* ==================== 关于我们 end ==================== */
/* ==================== 合作伙伴 start ==================== */
.mxw-cooperate .image {
  border: 1px solid #ccc;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mxw-cooperate .image img{width:auto;}
.mxw-cooperate .cooperate-swiper {
  height: 5.3333rem;
}
.mxw-cooperate .cooperate-swiper .swiper-slide {
  height: calc((100% - 20px) / 2);
  max-width: 400px;
}
@media screen and (min-width: 751px) {
  .mxw-cooperate .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 0.8333rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-cooperate .cooperate-swiper {
    height: 150px;
  }
  .mxw-cooperate .cooperate-swiper .swiper-slide {
    height: calc((100% - 10px) / 2);
  }
}
/* ==================== 合作伙伴 end ==================== */
/* ==================== 成功案例 start ==================== */
.mxw-cases2{padding-top: 1.5rem;}
.mxw-cases2 .body {
  background: #000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.mxw-cases2 .itembox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 9.1667rem;
  margin-right: auto;
  margin-left: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 9;
}
.mxw-cases2 .more-item,
.mxw-cases2 .item {
  padding-left: 3.1667rem;
  font-size: 0.3rem;
  color: #fff;
  line-height: 1.2;
  cursor: pointer;
  background: rgba(0, 153, 186, 0);
  position: relative;
}
.mxw-cases2 .more-item:after,
.mxw-cases2 .item:after {
  content: "";
  display: block;
  width: calc(100% + 1.5rem);
  height: 100%;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  transition: all 0.4s;
}
.mxw-cases2 .more-item img,
.mxw-cases2 .item img {
  width: 1.1667rem;
  margin-right: 0.25rem;
  transform: translateX(-3.3333rem);
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  position: relative;
  z-index: 3;
}
.mxw-cases2 .more-item .text,
.mxw-cases2 .item .text {
  z-index: 3;
  pointer-events: none;
  flex-grow: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.mxw-cases2 .more-item .text .cn,
.mxw-cases2 .item .text .cn {
  min-width: 0;
  flex-grow: 1;
}
.mxw-cases2 .image {
  transition: all 0.5s;

	
}
@media screen and (min-width: 751px) {
  .mxw-cases2 .mxw-box {
    padding-top: 0.8333rem;
    padding-bottom: 0.6667rem;
  }
  .mxw-cases2 .itembox {
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
  .mxw-cases2 .more-item,
  .mxw-cases2 .item {
    height: 1.6667rem;
    transition: all 0.4s;
  }
  .mxw-cases2 .more-item.active:after,
  .mxw-cases2 .item.active:after,
  .mxw-cases2 .more-item:hover:after,
  .mxw-cases2 .item:hover:after {
    transform: translateX(0);
  }
  .mxw-cases2 .more-item.active img,
  .mxw-cases2 .item.active img,
  .mxw-cases2 .more-item:hover img,
  .mxw-cases2 .item:hover img {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .mxw-cases2 .more-item.active .text:after,
  .mxw-cases2 .item.active .text:after,
  .mxw-cases2 .more-item:hover .text:after,
  .mxw-cases2 .item:hover .text:after {
    opacity: 1;
  }
  .mxw-cases2 .more-item .text,
  .mxw-cases2 .item .text {
    transition: all 0.8s;
    margin-right: -0.8333rem;
  }
  .mxw-cases2 .more-item .text:after,
  .mxw-cases2 .item .text:after {
    content: "+";
    display: block;
    color: #fff;
    font-size: 32px;
    flex-shrink: 0;
    opacity: 0;
    transition: all 0.4s;
  }
}
@media screen and (max-width: 751px) {
  .mxw-cases2 {
    padding: 30px 20px;
  }
  .mxw-cases2 .body {
    background: none;
  }
  .mxw-cases2 .itembox {
    position: static;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    background: none;
    margin-bottom: 20px;
  }
  .mxw-cases2 .more-item,
  .mxw-cases2 .item {
    padding: 0;
    background: none;
    width: 50%;
    color: #333;
    font-size: 12px;
    text-align: center;
    padding: 9px 10px;
  }
  .mxw-cases2 .more-item.active,
  .mxw-cases2 .item.active {
    background: #000;
    border-radius: 5px;
    color: #fff;
  }
  .mxw-cases2 .more-item img,
  .mxw-cases2 .item img,
  .mxw-cases2 .more-item:after,
  .mxw-cases2 .item:after {
    display: none;
  }
}
/* ==================== 成功案例 end ==================== */
/* ==================== 新闻资讯 start ==================== */
.mxw-news .top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 0.05rem solid #f4f4f4;
  margin-bottom: 1.0833rem;
}
.mxw-news .left .text1 {
  font-size: 0.7333rem;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.mxw-news .tab {
  display: flex;
  align-items: center;
}
.mxw-news .tab-item {
  flex-shrink: 0;
  font-size: 0.4rem;
  color: #333;
  line-height: 1.2;
  margin-right: 0.6667rem;
}
.mxw-news .tab-item:last-child {
  margin-right: 0;
}
.mxw-news .tab-item:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(../images/img14.png) no-repeat center;
  background-size: 100%;
  width: 0.3333rem;
  height: 0.3333rem;
  margin-left: 0.25rem;
  transition: all 0.4s;
  transform: rotate(-90deg);
}
.mxw-news .tab-item.active,
.mxw-news .tab-item:hover {
  font-weight: bold;
}
.mxw-news .tab-item.active:after,
.mxw-news .tab-item:hover:after {
  transform: rotate(0);
}
.mxw-news .more {
  display: block;
  width: 4rem;
  height: 0.9rem;
  line-height: 0.9rem;
  border: 0.0333rem solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.2667rem;
  color: #333;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  transition: all 0.4s;
}
.mxw-news .more:hover {
  background: #000;
  color: #fff;
}
.mxw-news .more:hover:after {
  border-color: #fff;
}
.mxw-news .more:after {
  content: "";
  width: 0.1667rem;
  height: 0.1667rem;
  border-top: 0.0333rem solid #333;
  border-right: 0.0333rem solid #333;
  transform: rotate(45deg);
  margin-left: 0.9333rem;
}
.mxw-news .item {
  display: block;
}
.mxw-news .item:after {
  content: "";
  display: block;
  background: url(../images/img22.png) no-repeat center;
  background-size: 100%;
  width: 0.6667rem;
  height: 0.0667rem;
  margin-top: 0.6667rem;
}
.mxw-news .time {
  font-size: 0.25rem;
  color: #666;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.mxw-news .title {
  font-size: 0.2833rem;
  color: #333;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.mxw-news .image {
  width: 100%;
  margin-bottom: 0.5rem;
}
.mxw-news .desc {
  font-size: 0.2333rem;
  color: #666;
  line-height: 2;
  height: 4em;
  text-align: justify;
}
@media screen and (min-width: 751px) {
  .mxw-news .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.8333rem;
  }
  .mxw-news .item {
    width: 30.2%;
  }
  .mxw-news .item:hover:after {
    transform: translateX(0.1667rem);
  }
  .mxw-news .item:after {
    transition: all 0.4s;
  }
  .mxw-news .item:nth-child(3n-1) {
    margin-left: 4.7%;
    margin-right: 4.7%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-news .top {
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom-width: 2px;
  }
  .mxw-news .left {
    width: 100%;
  }
  .mxw-news .left .text1 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
  }
  .mxw-news .tab {
    width: 100%;
  }
  .mxw-news .tab-item {
    font-size: 16px;
    width: 50%;
    margin-right: 0;
    flex-shrink: 0;
    text-align: center;
  }
  .mxw-news .more {
    display: none;
  }
  .mxw-news .time {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .mxw-news .title {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .mxw-news .image {
    margin-bottom: 15px;
  }
  .mxw-news .desc {
    font-size: 12px;
    line-height: 1.8;
    height: 3.6em;
  }
  .mxw-news .item:nth-child(2) ~ .item {
    display: none;
  }
  .mxw-news .item:after {
    margin-top: 10px;
  }
}
/* ==================== 新闻资讯 end ==================== */
/* ==================== 友情链接 start ==================== */
.mxw-links > .mxw-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 0;
}
.mxw-links .title,
.mxw-links a {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}
.mxw-links a {
  padding-right: 20px;
}
.mxw-links a:last-child {
  padding-right: 0;
}
/* ==================== 友情链接 end ==================== */
/* ==================== 内页 - 面包屑 start ==================== */
.bread-crumbs {
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}
.bread-crumbs > .mxw-box {
  max-width: 1200px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.bread-crumbs .title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 17px;
  color: #666;
  line-height: 1.2;
}
.bread-crumbs .title:before {
  content: "";
  display: block;
  width: 10px;
  height: 14px;
  background-color: #000;
  margin-right: 8px;
}
.bread-crumbs a {
  color: #666;
  line-height: 1.2;
  font-size: 17px;
}
.bread-crumbs a:last-child:after {
  display: none;
}
.bread-crumbs a:after {

}
@media screen and (max-width: 1280px) {
  .bread-crumbs > .mxw-box {
    max-width: 90%;
  }
}
/* ==================== 内页 - 面包屑 end ==================== */
/* ==================== 内页 - 标题 start ==================== */
.ny-title {
  display: flex;
  align-items: center;
  margin-bottom: 45px;
  color: #000;
}
.ny-title .text1 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: bold;
  flex-shrink: 0;
}
.ny-title .text2 {
  margin-left: 10px;
  font-family: fantasy;
  font-size: 38px;
  text-transform: uppercase;
}
@media screen and (max-width: 751px) {
  .ny-title {
    margin-bottom: 30px;
  }
  .ny-title .text1 {
    font-size: 20px;
  }
  .ny-title .text2 {
    font-size: 20px;
  }
}
/* ==================== 内页 - 标题 end ==================== */
/* ==================== 内页 - 分类 start ==================== */
.ny-cate {
  width: 100%;
  flex-wrap: wrap;
  border-bottom: 0.0167rem solid #ccc;
  margin-bottom: 0.6667rem;
}
.ny-cate .cate-item {
  text-align: center;
  font-size: 0.3333rem;
  color: #000;
  line-height: 1.2;
  padding-bottom: 0.5rem;
  position: relative;
  margin-right: 8.4%;
  flex-shrink: 0;
}
.ny-cate .cate-item:last-child {
  margin-right: 0;
}
.ny-cate .cate-item.active,
.ny-cate .cate-item:hover {
  font-weight: bold;
}
.ny-cate .cate-item.active:after,
.ny-cate .cate-item:hover:after {
  width: 100%;
}
.ny-cate .cate-item:after {
  content: "";
  display: block;
  width: 0%;
  height: 0.05rem;
  background-color: #000;
  position: absolute;
  bottom: -0.0333rem;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
}
@media screen and (max-width: 1280px) {
  .ny-cate .cate-item {
    margin-right: 7%;
  }
}
@media screen and (max-width: 751px) {
  .ny-cate {
    margin-bottom: 30px;
  }
  .ny-cate .cate-item {
    width: 32%;
    margin-right: auto;
    padding-bottom: 10px;
    font-size: 14px;
  }
  .ny-cate .cate-item:after {
    height: 2px;
    bottom: 0;
  }
  .ny-cate .cate-item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .ny-cate .cate-item:nth-child(3) ~ .cate-item {
    margin-top: 2.5%;
  }
}
/* ==================== 内页 - 分类 end ==================== */
/* ==================== 内页 - 案例列表 start ==================== */
.ny-cases2 .list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.ny-cases2 .list .item {
  display: block;
  width: 49%;
}
.ny-cases2 .list .item:nth-child(2n) {
  margin-left: 2%;
}
.ny-cases2 .list .item:nth-child(2) ~ .item {
  margin-top: 2%;
}
.ny-cases2 .list .title {
  border: solid 0.0167rem #ebebeb;
  border-top: 0;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  font-size: 0.4rem;
  color: #000;
  padding-left: 0.3333rem;
  padding-right: 0.3333rem;
}
@media screen and (max-width: 751px) {
  .ny-cases2 .list .title {
    height: 36px;
    line-height: 36px;
    font-size: 12px;
  }
}
/* ==================== 内页 - 案例列表 end ==================== */
/* ==================== 内页 - 分类二 start ==================== */
.ny-cate2 {
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.ny-cate2 .cate-item {

  width: 20%;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #e5e5e5;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
}
.ny-cate2 .cate-item.active,
.ny-cate2 .cate-item:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
@media screen and (max-width: 751px) {
  .ny-cate2 {
    margin-bottom: 30px;
  }
  .ny-cate2 .cate-item {
    width: 33.3333%;
    font-size: 14px;
    height: 50px;
  }
}
/* ==================== 内页 - 分类二 end ==================== */
/* ==================== 内页 - 产品列表 start ==================== */
.ny-product .list .item {
  display: flex;
  align-items: stretch;
  padding-bottom: 60px;
  padding-top: 60px;
  border-bottom: 1px solid #cccccc;
  transition: all 0.4s;
}
.ny-product .list .item:first-child {
  padding-top: 0;
}
.ny-product .list .item:hover {
  border-bottom-color: #000;
  transform: translateX(20px);
}
.ny-product .list .item:hover .mxw-more {
  color: #fff;
}
.ny-product .list .item:hover .mxw-more:after {
  width: 100%;
  opacity: 1;
}
.ny-product .list .image {
  width: 280px;
  background: url(../images/img23.png) no-repeat center bottom;
  background-size: 100%;
  margin-right: 40px;
  border: solid 1px rgba(0, 0, 0, 0.16);
  flex-shrink: 0;
   display: flex; display: -moz-flex; display: -webkit-flex; display: -ms-flex;
  align-items: center;
  justify-content: center;
  height: 172px;
}
.ny-product .list .image img{ max-height: 100%; max-width: 100%; width: auto}
.ny-product .list .info {
  width: 100%;
}
.ny-product .list .title {
  font-size: 20px;
  color: #000;
  line-height: 1.4;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 20px;
}
.ny-product .list .title:after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 0px;
  left: 0;
}
.ny-product .list .desc {
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  margin-bottom: 30px;    max-height: 200px;
    overflow: hidden;
}
.ny-product .list .desc strong {
  color: #000;
}
.ny-product .list .mxw-more {
  border: 1px solid #000;
  color: #000;
  width: 146px;
  height: 37px;
  text-align: center;
  font-size: 16px;
  line-height: 37px;
  position: relative;
  transition: all 0.4s;
}
.ny-product .list .mxw-more span {
  position: relative;
  z-index: 9;
}
.ny-product .list .mxw-more:after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  transition: all 0.4s;
  opacity: 0;
}
@media screen and (max-width: 751px) {
  .ny-product .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ny-product .list .info {
    width: 100%;
  }
  .ny-product .list .title {
    font-size: 16px;
    text-align: center;
    padding-bottom: 10px;
  }
  .ny-product .list .title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .ny-product .list .item {
    padding: 0;
    width: 48%;
    flex-wrap: wrap;
    border-bottom: 0;
  }
  .ny-product .list .item:nth-child(2) ~ .item {
    margin-top: 20px;
  }
  .ny-product .list .desc {
    display: none;
  }
  .ny-product .list .image {
    width: 100%;
    margin: 0 auto 10px;
  }
  .ny-product .list .mxw-more {
    width: 100%;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
    font-size: 12px;
  }
}
/* ==================== 内页 - 产品列表 end ==================== */
/* ==================== 内页 - 关于我们 start ==================== */
.ny-about .text1 {
  font-size: 34px;
  color: #000;
  line-height: 1.2;
  font-weight: bold;
}
.ny-about .text1:after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  background-color: #000;
  margin-top: 50px;
  margin-bottom: 50px;
}
.ny-about .text2 {
  font-size: 38px;
  color: #000;
  line-height: 1.2;
  font-family: fantasy;
  margin-bottom: 45px;
}
.ny-about .desc {
  font-size: 18px;
  color: #333;
  line-height: 2;
  text-align: justify;
  margin-bottom: 60px;
}
.ny-about .about-advantage {
  display: flex;
  align-items: stretch;
}
.ny-about .about-advantage .itembox {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 50%;
  flex-wrap: wrap;
}
.ny-about .about-advantage .item {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  border: 1px solid #eee;
  transition: all 0.4s;
}
.ny-about .about-advantage .item:hover {
  border-color: #000;
  position: relative;
  z-index: 9;
  background-color: #000;
  box-shadow: 0 0 8px #000;
}
.ny-about .about-advantage .item:hover .number,
.ny-about .about-advantage .item:hover .text {
  color: #fff;
}
.ny-about .about-advantage .number {
  font-size: 46px;
  font-weight: bold;
  line-height: 1;
  color: #4d4d4d;
}
.ny-about .about-advantage .number span {
  font-weight: 400;
  font-family: fantasy;
}
.ny-about .about-advantage .number i {
  font-size: 13px;
}
.ny-about .about-advantage .text {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  margin-top: 20px;
}
.ny-about .about-advantage .image {
  width: 50%;
}
@media screen and (max-width: 751px) {
  .ny-about .text1 {
    font-size: 20px;
  }
  .ny-about .text1:after {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .ny-about .text2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .ny-about .desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  .ny-about .about-advantage {
    flex-wrap: wrap;
  }
  .ny-about .about-advantage .item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .ny-about .about-advantage .itembox {
    width: 100%;
  }
  .ny-about .about-advantage .number {
    font-size: 30px;
  }
  .ny-about .about-advantage .image {
    width: 100%;
  }
  .ny-about .about-advantage .text {
    font-size: 13px;
    margin-top: 10px;
  }
}
/* ==================== 内页 - 关于我们 end ==================== */
/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact .body {
  margin-bottom: 60px;
}
.ny-contact .desc02 {
  flex-grow: 1;
  margin-right: 0.3333rem;
  font-size: 0.3rem;
  color: #333;
  line-height: 1.8;
}
.ny-contact .desc02 p {
  margin-bottom: 0.25rem;
}
.ny-contact .desc02 p:before {
  content: ">";
  padding-right: 0.3333rem;
}
.ny-contact .desc02 p:last-child {
  margin-bottom: 0;
}
.ny-contact .map {
  width: 52%;
  height: 7.7667rem;
  flex-shrink: 0;
}
@media screen and (max-width: 751px) {
  .ny-contact .body {
    flex-flow: column;
    margin-bottom: 30px;
  }
  .ny-contact .desc02 {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  .ny-contact .desc02 p:before {
    padding-right: 10px;
  }
  .ny-contact .map {
    width: 100%;
    height: 200px;
  }
}
/* ==================== 内页 - 联系我们 end ==================== */
/* ==================== 内页 -  start ==================== */
.ny-cases .list .item {
  display: flex;
  align-items: stretch;
  margin-bottom: 30px;
  transition: all 0.4s;
}
.ny-cases .list .item:hover {
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
}
.ny-cases .list .item:hover .title:after {
  width: 100px;
}
.ny-cases .list .item:last-child {
  margin-bottom: 0;
}
.ny-cases .list .image {
  width: 45%;
  flex-shrink: 0;height:320px;
}
.ny-cases .list .info {
  min-width: 0;
  flex-grow: 1;
  background-color: #f5f5f5;
  
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 30px;
    flex-wrap: wrap;
}
.ny-cases .list .title {
  font-size: 22px;
  color: #333;
  line-height: 1.4;
}
.ny-cases .list .title:after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #000;
  margin-top: 15px;
  margin-bottom: 15px;
  transition: all 0.4s;
}
.ny-cases .list .desc {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  text-align: justify;
}
.ny-cases .list .mxw-more {
  background-color: #000;
  color: #fff;
  width: 120px;
  margin-left: auto;
  margin-right: 0;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
}
@media screen and (max-width: 751px) {
  .ny-cases .list .item {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .ny-cases .list .item:last-child {
    margin-bottom: 0;
  }
  .ny-cases .list .image {
    width: 100%;
  }
  .ny-cases .list .info {
    width: 100%;
    padding: 15px;
  }
  .ny-cases .list .title {
    font-size: 16px;
    font-weight: bold;
  }
  .ny-cases .list .title:after {
    width: 20px;
    height: 2px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .ny-cases .list .desc {
    font-size: 14px;
    -webkit-line-clamp: 2;

  }
  .ny-cases .list .mxw-more {
    font-size: 12px;
    margin: 20px auto 0;
  }
}
/* ==================== 内页 -  end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  background: url(../images/img21.jpg) no-repeat center;
  background-size: cover;
}
footer .top {
  padding-top: 0.8333rem;
  padding-bottom: 0.8333rem;
}
footer .top > .mxw-box {
  align-items: flex-start;
  justify-content: space-between;
}
footer .top .foot-nav {
  display: flex;
  align-items: flex-start;
}
footer .top .foot-nav .nav-item {
  flex-shrink: 0;
  margin-right: 1.8333rem;
}
footer .top .foot-nav .head {
  font-size: 0.3rem;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
  font-weight: bold;
  color: #fff;
}
footer .top .foot-nav .list-item {
  display: block;
  font-size: 0.2333rem;
  color: #b8b8b8;
  line-height: 2;
}
footer .top .foot-tel .tel {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
footer .top .foot-tel .icon {
  display: block;
  width: 0.8333rem;
  flex-shrink: 0;
  margin-right: 0.4167rem;
}
footer .top .foot-tel .desc {
  color: #b8b8b8;
}
footer .top .foot-tel .desc p {
  font-size: 0.2333rem;
  margin-bottom: 0.0833rem;
  line-height: 1.6;
}
footer .top .foot-tel .desc strong {
  font-size: 0.4667rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.1;
}
footer .top .desc2 {
  font-size: 0.2333rem;
  color: #b8b8b8;
  line-height: 2;
}
footer .top .desc2 img {
  margin-left: 0.3333rem;
}
footer .qr-group {
  display: flex;
  align-items: flex-start;
}
footer .qr-group .qr {
  width: 2rem;
  margin-right: 0.6667rem;
  text-align: center;
}
footer .qr-group img {
  margin-bottom: 0.3333rem;
}
footer .qr-group .name {
  font-size: 0.2333rem;
  color: #b8b8b8;
}
footer .mxw-copyright {
  border-top: 0.0167rem solid rgba(255, 255, 255, 0.1);
  padding-top: 0.3333rem;
  padding-bottom: 0.3333rem;
  font-size: 0.2333rem;
  color: #b8b8b8;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 751px) {
  footer .top {
    padding-top: 0;
    padding-bottom: 0;
  }
  footer .top .foot-tel .tel {
    margin-bottom: 10px;
  }
  footer .top .foot-tel .icon {
    width: 30px;
    margin-right: 10px;
  }
  footer .top .foot-tel .desc p {
    font-size: 12px;
  }
  footer .top .foot-tel .desc strong {
    font-size: 28px;
  }
  footer .top .desc2 img {
    width: 20px;
    margin-left: 5px;
  }
  footer .mxw-copyright {
    padding: 20px 15px;
    font-size: 12px;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 1500px;
  margin: 0 auto;
  font-size: 0;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
}
.mxw-box a:hover {
  color: #000;
}
/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1580px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px !important;
  }
}
@media screen and (max-width: 1580px) {
  .mxw-box {
    max-width: 90%;
  }
}
@media screen and (min-width: 751px) {
  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }
  .mxw-ny-box {
    padding-top: 60px;
    padding-bottom: 60px;
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .mxw-ny-box {
    max-width: 90%;
  }
}
@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 ==================== */
.my-sub-cate{display:flex;flex-wrap:wrap;padding-bottom:60px;}
.my-sub-cate .my-cate-item{font-size:16px;border:1px solid #333;padding:5px 20px;color:#333;display:block;margin-right:5px;}
.my-sub-cate .my-cate-item:last-child{margin-right:0;}
.my-sub-cate .my-cate-item:hover,
.my-sub-cate .my-cate-item.active{background:#000; color: #fff}
/* ==================== äº§å“äºŒçº§åˆ†ç±» end ==================== */
@media screen and (max-width: 751px) {
  .mxw-product .image{ height: 150px}
  .ny-product .list .image{ height: 145px}
  .ny-cate2 .cate-item{ width: 50%; height: 40px}
  .my-sub-cate .my-cate-item{ font-size: 12px; margin-top: 10px;padding: 4px 8px;}
  .ny-cate2{ margin-bottom: 10px;}
  .my-sub-cate{ padding-bottom: 25px;}
}