﻿
/* #region ==================== 重置默认样式 start ==================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu", sans-serif;
  outline: none;
}

*: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:focus,
a:hover {
  color: inherit;
  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;
}

p {
  margin-bottom: 0
}

/* #endregion ==================== 重置默认样式 end ==================== */
/*  */
/* #region ==================== 常用样式 start ==================== */
.clearfix {
  display: block;
  zoom: 1;
}

.clearfix::after {
  content: " ";
  display: block;
  font-size: 0px;
  height: 0px;
  clear: both;
  visibility: hidden;
}

ul,
h1,
h2,
h3,
h4,
li,
p {
  padding: 0px;
  margin: 0px;
}

section {
  overflow: hidden;
}

article {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  color: rgb(51, 51, 51);
}

.mxw-image {
  overflow: hidden;
}

.mxw-image:hover img {
  transform: scale(1.1);
}

.mxw-image img {
  transition: all 0.4s ease 0s;
  width: 100%;
}

.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;
}

.u-flex {
  display: flex;
  flex-flow: row;
  align-items: center;
  align-content: 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;
}

@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 {}

  .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%;
    margin-right: 2.5%;
  }

  .u-row-4>.u-col:nth-child(4n) {
    margin-right: 0%;
  }

  .u-row-4>.u-col:nth-child(4)~.u-col {}

  .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: 1%;
  }
}

@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.5%;
  }
}

.mxw-pagination {
  margin-top: 50px;
  font-size: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.mxw-pagination>a,
.mxw-pagination>span {
  padding: 6px 12px;
  font-size: 14px;
  color: rgb(102, 102, 102);
  line-height: 1.2;
  border: 1px solid rgb(204, 204, 204);
  display: block;
  margin: 4px;
}

.mxw-pagination>a.active,
.mxw-pagination>a:hover {
  background-color: rgb(235, 46, 59);
  color: rgb(255, 255, 255) !important;
}

.mxw-pagination>a:first-child {
  margin-left: 0px;
}

.mxw-pagination>a:last-child {
  margin-right: 0px;
}

@media screen and (max-width: 751px) {
  .mxw-pagination {
    margin-top: 30px;
  }

  .mxw-pagination>a {
    font-size: 12px;
    margin: 2px;
    padding: 8px 10px;
  }
}

.mxw-tabs {
  padding-left: 0px;
  padding-right: 0px;
}

.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: rgb(234, 234, 234);
  color: rgb(51, 51, 51);
  padding: 0rem 0.5rem;
  margin-right: 0.9rem;
  line-height: 0.6667rem;
  border-radius: 0.4583rem;
}

.mxw-tabs .mxw-tabs-item:last-child {
  margin-right: 0px;
}

.mxw-tabs .mxw-tabs-item.active {
  background: rgb(19, 27, 81);
  color: rgb(255, 255, 255);
}

@media screen and (max-width: 751px) {
  .mxw-tabs .mxw-tabs-header {
    margin-bottom: 20px;
  }

  .mxw-tabs .mxw-tabs-item {
    font-size: 14px;
    padding: 0px 20px;
    margin-right: 10px;
  }

  .mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0px;
  }
}

.mxw-keywords {
  position: relative;
  z-index: 99;
  width: 100%;
  background: rgb(246, 246, 246);
}

.mxw-keywords .mxw-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.mxw-keywords .left {
  position: relative;
  flex-grow: 1;
  font-size: 0.2667rem;
  line-height: 1.2;
  color: rgb(102, 102, 102);
  display: flex;
  align-items: center;
}

.mxw-keywords .left strong {
  vertical-align: inherit;
}

.mxw-keywords .left .hotkey {
  vertical-align: inherit;
  font-weight: bold;
  font-size: 0.2667rem;
  color: rgb(51, 51, 51);
}

.mxw-keywords .left .hotkey a {
  color: rgb(102, 102, 102);
  font-weight: initial;
}

.mxw-keywords .left a::after {
  content: "";
  padding-left: 0.3333rem;
}

.mxw-keywords .left a:hover {
  color: rgb(235, 46, 59);
}

.mxw-keywords .left a:last-child {
  padding-right: 0px;
}

.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;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.mxw-keywords .right input#keyword {
  width: 5.6667rem;
  height: 48px;
  line-height: 44px;
  padding: 0px 20px;
  font-size: 14px;
  color: rgb(51, 51, 51);
  border-width: 1px 0px 1px 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(226, 226, 226);
  border-bottom-color: rgb(226, 226, 226);
  border-left-color: rgb(226, 226, 226);
  border-image: initial;
  border-right-style: initial;
  border-right-color: initial;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 0.4rem;
  border-bottom-left-radius: 0.4rem;
}

.mxw-keywords .right input::-webkit-input-placeholder {
  color: rgb(153, 153, 153);
}

.mxw-keywords .right #s_btn {
  outline: none;
  cursor: pointer;
  background: url("http://cdn.myxypt.com/lxhctaa5/t/1/images/icon_search_h.png") center center no-repeat rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.9rem;
  border-top: 1px solid rgb(226, 226, 226);
  border-right: 1px solid rgb(226, 226, 226);
  border-bottom: 1px solid rgb(226, 226, 226);
  border-image: initial;
  border-left: none;
  border-top-right-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}

.mxw-keywords .right #s_btn .icon {
  display: block;
  width: 0.3333rem;
  height: 0.3333rem;
  overflow: hidden;
  font-size: 0px;
}

.mxw-keywords .right #s_btn .text {
  font-size: 14px;
  padding-left: 5px;
}

@keyframes arrowAnimate {
  0% {
    transform: translate(0rem, 0rem);
  }

  50% {
    transform: translate(0rem, -0.1667rem);
  }

  100% {
    transform: translate(0rem, 0rem);
  }
}

.mxw-scroll {
  overflow: hidden;
}

.mxw-scroll .scroll-wrap {
  display: flex;
  align-items: stretch;
}

.mxw-scroll .scroll-item {
  flex-shrink: 0;
}

@media screen and (min-width: 751px) {
  .mxw-scroll .scroll-item {
    width: 23.5%;
    margin-right: 2%;
  }
}

@media screen and (max-width: 751px) {
  .mxw-scroll .scroll-item {
    width: 48%;
    margin-right: 4%;
  }
}

/* #endregion ==================== 常用样式 end ==================== */
/* #region ==================== 头部 start ==================== */
header {
  width: 100%;
  z-index: 99;
  transition: all 0.4s ease 0s;
  position: relative;
}

header .welcome {
  background-color: #F6F6F6;
  height: 40px;
  line-height: 40px;
}

header .welcome .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgb(102, 102, 102);
}

header .welcome .left {
  font-size: 0.2rem;
  line-height: 1.2;
}

header .welcome .right {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #000;
}

header .welcome .right a {
  margin: 0px 0.1rem;
}

header .mxw-line {
  width: 0px;
  height: 2px;
  background-color: rgb(23, 84, 163);
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 9;
  transition: width 0.4s ease 0s;
}

header .pc-nav .top>.mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

header .pc-nav .top .logo {
  flex-shrink: 0;
  position: relative;
  padding: 15px 0 15px 0;
}
header .pc-nav .top .logo img{
  height: 1rem;
}

header .pc-nav .top .logo::after {
  content: "";
}

header .pc-nav .top .text p {
  font-size: 16px;
  color: rgb(102, 102, 102);
  line-height: 1.2;
}

header .pc-nav .top .text strong {
  font-size: 28px;
  color: rgb(51, 51, 51);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 14px;
  display: block;
}


header .pc-nav .top .right {
  font-size: .5rem;
  color: rgb(51, 51, 51);
  display: flex;
  align-items: center;
}


header .pc-nav .top .right .head-tel p {
  font-size: 0.4rem;
  font-weight: bold;
  color: #29a7e2;
}

header .pc-nav .top .right .head-tel p:first-child {
  font-size: 0.266rem;
  text-align: right;
  color: #777777;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header .pc-nav .top .right img {
  width: 28px;
  margin-right: 10px;
}

header .pc-nav .bottom {
  background-color: #29a7e2;
}

header .pc-nav .bottom .mxw-box {
  position: relative; display: flex;  display: -webkit-flex; align-items: center;
}
header .pc-nav .bottom .mxw-box .lang{ font-size: 16px; color: #fff; position: relative; z-index: 2; margin-right: 1.5rem; margin-left: auto; }
header .column {
  position: absolute;
  right: 0;
  top: 0;
  width: 5rem;
}

header .search {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgb(212, 212, 212);
}

header .search.active {
  overflow: visible;
}

header .search.active form {
  opacity: 1;
  right: 0px;
  visibility: visible;
}

header .search form {
  font-size: 0px;
  position: absolute;
  top: 100%;
  right: -100%;
  z-index: 33;
  width: 200px;
  transition: all 0.4s ease 0s;
  opacity: 0;
  visibility: hidden;
  height: 34px;
  line-height: 34px;
}

header .search form input {
  background: rgb(255, 255, 255);
  padding: 8px 10px;
  outline: none;
  font-size: 14px;
  width: 100%;
  height: 100%;
  border: 1px solid rgb(221, 221, 221);
}

header .search form button {
  position: relative;
  width: 50px;
  height: 100%;
  background: rgb(23, 84, 163);
  cursor: pointer;
}

header .search form button::before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-width: 0px 4px 6px;
  border-top-style: initial;
  border-top-color: initial;
  border-left-style: solid;
  border-left-color: transparent;
  border-right-style: solid;
  border-right-color: transparent;
  border-bottom-style: solid;
  border-bottom-color: rgb(23, 84, 163);
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}

header .search form button img {
  width: 16px;
}

header .sb-search {
  position: relative;
  width: 0%;
  min-width: 60px;
  height: 60px;
  float: right;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  transition: width 0.3s;
  -webkit-backface-visibility: hidden;
}

header .sb-search-input {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  outline: none;
  background: #fff;
  width: 100%;
  height: 1rem;
  margin: 0;
  z-index: 10;
  padding: .3333rem 1.0833rem 0.3333rem 0.3333rem;
  font-family: inherit;
  font-size: .2333rem;
  color: #2c3e50;
}
header .sb-search-input::-webkit-input-placeholder {
  color: #2c3e50;
}

header .sb-search-input:-moz-placeholder {
  color: #2c3e50;
}

header .sb-search-input::-moz-placeholder {
  color: #2c3e50;
}

header .sb-search-input:-ms-input-placeholder {
  color: #2c3e50;
}

header .sb-icon-search,
header .sb-search-submit {
  width: 1rem;
  height: 1rem;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  margin: 0;
  line-height: 1rem;
  text-align: center;
  cursor: pointer;
}

header .sb-search-submit {
  background: #fff;
  /* IE needs this */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  /* IE 8 */
  filter: alpha(opacity=0);
  /* IE 5-7 */
  opacity: 0;
  color: transparent;
  border: none;
  outline: none;
  z-index: -1;
}

header .sb-icon-search {
  color: #fff;
  background: #29a7e2;
  z-index: 90;
  font-size: 0.2333rem;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
}

header .sb-icon-search:before {
  content: "";
  display: block;
  background: url(../image/f3088e361471c8a0ea04f9aeb62abbcdbc383551.png) no-repeat center;
  width: 100%;
  height: 100%;
}

/* Open state */
header .sb-search.sb-search-open,
header .no-js .sb-search {
  width: 100%;
}

header .sb-search.sb-search-open .sb-icon-search,
header .no-js .sb-search .sb-icon-search {
  background: #29a7e2;
  color: #fff;
  z-index: 11;
}

header .sb-search.sb-search-open .sb-search-submit,
header .no-js .sb-search .sb-search-submit {
  z-index: 90;
}

header .pc-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around; padding-right: 2rem; flex-grow: 1; min-width: 0;
}

header .pc-menu>li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  height: 1rem;
  margin: 0 0.4rem;
  padding: 0 0.2rem;
}

header .pc-menu>li::after {
  content: "";
  display: block;
  width: 0px;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s linear 0s;
  border-bottom: 3px solid #fff;
}

header .pc-menu>li.active::after,
header .pc-menu>li:hover::after {
  width: 100%;
}

header .pc-menu>li.active>a,
header .pc-menu>li:hover>a {
  color: #FEFEFE;
  font-weight: bold;
}

header .pc-menu>li:hover>ul {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}

header .pc-menu>li:last-child {
  padding-right: 0px;
}

header .pc-menu>li ul {
  background-color: rgb(255, 255, 255);
  width: 3.3333rem;
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, visibility 0.4s ease 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 a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  font-size: 0.2333rem;
  color: rgb(51, 51, 51);
  line-height: 1.2;
  padding: 0.2333rem;
}

header .pc-menu>li>a {
  font-size: 0.2667rem;
  color: #fdfdfd;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  position: relative;
  width: 100%;
}

header .pc-menu>li>ul {
  border-top: 0.0167rem solid rgb(221, 221, 221);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

header .pc-menu>li>ul>li>a.active,
header .pc-menu>li>ul>li>a:hover {

}

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: 0px;
  border-left: 0.0167rem solid rgb(221, 221, 221);
}

header .pc-menu>li>ul>li>ul>li>ul {
  position: absolute;
  left: 3.3333rem;
  top: 0px;
  border-left: 0.0167rem solid rgb(221, 221, 221);
}


@media screen and (max-width: 1680px) {
  header .mxw-box {
    max-width: 96%;
  }

  header .pc-nav .top {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  header .pc-nav .top .text strong {
    font-size: 24px;
    margin-bottom: 10px;
  }

  header .pc-nav .top .text p {
    font-size: 15px;
  }

  header .pc-nav .top .right {
    font-size: 26px;
  }

  header .pc-nav .top .right img {
    width: 30px;
  }
}

@media screen and (max-width: 1400px) {

  header .pc-nav .top .logo::after {
    height: 44px;
  }

  header .pc-nav .top .text strong {
    font-size: 21px;
  }

  header .pc-nav .top .right {
    font-size: 21px;
  }
}

@media screen and (max-width: 1200px) {
  header .pc-nav .top .logo {
    padding-right: 0px;
    width: 500px;
  }

  header .pc-nav .top .logo::after {
    display: none;
  }

  header .pc-nav .top .text {
    display: none;
  }
}

/* #endregion ==================== 头部 end ==================== */

/* #region ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
  header {
    z-index: 99999;
  }

  .mxw-mob-nav .head {
    font-size: 0px;
    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: 0px;
    left: 50%;
    z-index: 99;
    background-color: rgb(255, 255, 255);
  }

  .mxw-mob-nav .logo {
    display: block;
    flex-shrink: 0;
  }

  .mxw-mob-nav .logo img {
    height: 35px;
  }

  .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: rgb(51, 51, 51);
  }

  .mxw-mob-nav .menus-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    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(0px);
  }

  .mxw-mob-nav .menus {
    width: 60%;
    height: 100%;
    margin-right: 0px;
    margin-left: auto;
    background: rgb(255, 255, 255);
    transform: translateX(100%);
    transition: all 0.5s ease 0s;
    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: rgb(85, 85, 85);
    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: 0px;
    height: 0px;
    border-width: 4px 4px 0px;
    border-top-style: solid;
    border-top-color: rgb(85, 85, 85);
    border-left-style: solid;
    border-left-color: transparent;
    border-right-style: solid;
    border-right-color: transparent;
    border-bottom-style: initial;
    border-bottom-color: initial;
    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: rgb(136, 136, 136);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 36px;
    height: 36px;
    border-bottom: 1px solid rgb(243, 243, 243);
  }

  .mxw-mob-nav .menus-head {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(248, 248, 248);
    border-bottom: 0.6px solid rgb(238, 238, 238);
    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: rgb(51, 51, 51);
    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: rgb(51, 51, 51);
    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;
  }
}

/* #endregion ==================== 移动端头部 end ==================== */

/* #region ==================== 底部 start ==================== */
footer .top {
  background-color: #141414;
}

footer .foot-nav {
  margin-bottom: 0.2667rem;
  padding-top: .3rem;
  padding-bottom: .3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .foot-nav>div a {
  font-size: 0.26667rem;
  color: #C7C7C7;
  padding: 0 0.33333rem;
}

footer .foot-nav>div.active a {
  font-size: 0.33333rem;
  font-weight: bold;
}

footer .body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .foot-logo {
  width: 5.6rem;
  flex-shrink: 0;
  justify-content: center;
  display: flex;
}

footer .body .foot-contact {
  font-size: 0.2rem;
  color: #fffefe;
  line-height: 2;
  width: 30%;
}

footer .foot-contact .foot-head {
  color: #C7C7C7;
}

footer .foot-contact .foot-head {
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .foot-contact .foot-head>div.u-flex {

  margin-bottom: 0.2rem;
}
footer .foot-contact .foot-head>div.u-flex:nth-child(odd){

}
footer .foot-contact .foot-head>div.u-flex:last-child {
}

footer .foot-contact .foot-head img {
  display: flex;
  align-items: center;
  margin-right: 0.1667rem;
}

footer .qr-group {
  display: flex;
  align-items: flex-start;
}

footer .qr-group .qr {
  margin-right: 40px;
  width: 114px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.2;
}

footer .qr-group .qr:last-child {
  margin-right: 0;
}

footer .qr-group .qr img {
  width: 100%;
  display: block;
}
footer .qr-group .head-tel{
  color: #777777;
}

footer .qr-group .head-tel p:first-child{
  color: #777777;
  font-size: 0.2667rem;
  display: flex;
  align-items: center;
}
footer .qr-group .head-tel p{
  color: #29a7e2;
  font-size: 0.4rem;
  font-weight: bold;
}
footer .qr-group .head-tel img{
  margin-right: 0.1667rem;
}
footer .mxw-copyright {
  background-color: #141414;
}

footer .mxw-copyright>.mxw-box {
  text-align: center;
  line-height: 2;
  padding: 0.16667rem 0;
  font-size: 0.2rem;
  color: #888888;
}

@media screen and (max-width: 1680px) {
  footer .top>.mxw-box {
    max-width: 86%;
  }
}

@media screen and (max-width: 751px) {

  footer .top {
    padding: 0;
  }

  footer .top>.mxw-box {
    max-width: 100%;
  }

  footer .body {
    flex-wrap: wrap;
  }

  footer .body .foot-contact {
    width: 100%;
    padding-right: 0;
  }

  footer .foot-contact .foot-head {
    width: 100%;
    margin-top: 10px;
  }

  footer .body .right {
    width: 100%;
    padding-left: 0;
  }

  footer .body .right::before {
    display: none;
  }

  footer .body .foot-tel {
    justify-content: center;
    margin-top: 20px;
  }

  footer .mxw-copyright {
    padding: 0;
  }

  footer .mxw-copyright>.mxw-box {
    padding: 20px 20px;
  }
}

/* ==================== 底部 end ==================== */
/* #endregion */
/* #region ==================== 轮播图 start ==================== */
.mxw-banner {
  font-size: 0px;
  position: relative;
}

.mxw-banner .swiper-slide {
  overflow: hidden;
}

.mxw-banner .swiper-slide img {
  width: 100%;
}

.mxw-banner .swiper-pagination {
  width: 100%;
  max-width: 1500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
  right: 50%;
  transform: translateX(50%);
  left: auto;
}

.mxw-banner .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 10px;
  opacity: 1;
  margin-left: 10px;
  margin-right: 10px;
  border: 1px solid rgb(255, 255, 255);
  background: none;
  border-radius: 5px;
  position: relative;
}

.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: rgb(255, 255, 255);
  background: rgb(255, 255, 255);
}

.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
  width: 83px;
  height: 55px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: none;
  outline: none;
  z-index: 99;
  transform: translateY(-50%);
  top: 50%;
  margin: 0px;
  background-size: 13px 24px;
}

.mxw-banner .swiper-button-next::after,
.mxw-banner .swiper-button-prev::after {
  font-size: 21px;
  color: rgb(255, 255, 255);
  font-weight: bold;
}

.mxw-banner .swiper-button-next {
  right: 0px;
  background-image: url("../image/96a8ce46ba1da4222174cd1f8d4ae9248e68b1bb.png");
}

.mxw-banner .swiper-button-prev {
  left: 0px;
  background-image: url("../image/ec1a2c6b3f58c198bbf558e5d774160253d8faf1.png");
}

.mxw-banner .banner-swiper {
  --swiper-navigation-color: #fff;
  --swiper-navigation-size: 24px;
}

@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: 0px 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;
  }
}

/* ==================== 轮播图 end ==================== */
/* #endregion */
/* #region ==================== 通用标题 start ==================== */
.mxw-title {
  overflow: hidden;
  text-align: center;
}

.mxw-title .text1 {
  font-size: 0.5833rem;
  text-transform: uppercase;
  color: rgb(51, 51, 51);
  position: relative;
  font-weight: bold;
}

.mxw-title .text1 span {
  color: rgb(235, 46, 59);
}

.mxw-title .text2 {
  font-size: 0.4rem;
  color: #939393;
  margin-top: 0.2rem;
  text-transform: capitalize;
  font-weight: bold;
}

.mxw-title .text3 {
  font-size: .2667rem;
  color: rgb(102, 102, 102);
}

.mxw-title .text1 .content {
  font-size: 0.8rem;
  font-weight: bold;
  display: inline-block;
  position: relative;
  color: #000;
}


@media screen and (max-width: 751px) {

  .mxw-title .text1 {
    font-weight: bold;
    font-size: 16px;
  }

  .mxw-title .text1 .content {
    font-size: 20px;
  }

  .mxw-title .desc {
    font-size: 12px;
    padding: 0px 20px;
    line-height: 1.8;
    color: rgb(136, 136, 136);
  }
}

/* ==================== 通用标题 end ==================== */
/* #region ==================== 页面自定义样式 start ==================== */
.mxw-box {
  margin: 0px auto;
  font-size: 18px;
  color: rgb(51, 51, 51);
  width: 86%;
  max-width: 1400px;
  min-width: 20rem;
}

.ny-banner img {
  width: 100%;
}

.news-swiper1.swiper-container .swiper-wrapper {
  transition-timing-function: linear;
}

@media screen and (min-width: 1680px) {
  html {
    font-size: 60px !important;
  }
}

@media screen and (max-width: 1680px) {
  .mxw-box {
    max-width: 86%;
  }
}

@media screen and (min-width: 751px) {

  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }

  .mxw-ny-box {
    max-width: 1400px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 1680px) {
  .mxw-ny-box {
    max-width: 90%;
  }
}

@media screen and (max-width: 751px) {
  .mxw-ny-box {
    max-width: 100%;
    font-size: 0px;
    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: 20px 0px;
    max-width: 100%;
    min-width: auto;
    width: 95%;
  }

  .mxw-section {
    padding-left: 0px;
    padding-right: 0px;
  }

  article {
    font-size: 15px;
  }
}

/* #endregion ==================== 页面自定义样式 end ==================== */

/* #region ==================== 通用细节调整 start ==================== */
.page-banner .nybt {
  z-index: 3;
  display: none;
}

.page-banner .nybt h3 {
  font-size: 0.6rem;
}

#toolbar .online-one li.phone .tel-phone {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: center;
  align-items: center;
  width: 140px;
}

.product-detail-tab .product-detail-tabli li.on::before,
.product-detail-tab .product-detail-tabli li:visited::before,
.product-detail-tab .product-detail-tabli li:active::before {
  display: none;
}

.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active {
  color: rgb(255, 255, 255);
}

.product-detail-tab .product-detail-tabli li {
  background: rgb(41 167 226);
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: bold;
}

.product-detail-tabcon {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
}

.product-detail-tabcon table {
  width: 100%;
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #505459;
  overflow-x: scroll;
  display: block;
}

.product-detail-tabcon table th,
.product-detail-tabcon table td {
  border: 1px solid #ddd !important;
  padding: 8px !important;
  background: none !important;
}

.product-detail-tabcon table td p {
  line-height: 1.8 !important;
}

.product-detail-tabcon table tr:hover {
  background-color: #f2f2f2 !important;
}

.product-detail-tabcon table tr:nth-child(2n-1) {
  background-color: #fff!important;
}

.product-detail-tabcon table tr:nth-child(2n) {
  background-color: #fdfdfd!important;
}
.product-detail-tabcon table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.product-detail-tabcon table th,
.product-detail-tabcon table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.product-detail-tabcon table td p{line-height:1.8!important;}
.product-detail-tabcon table tr:hover{background-color:#ff8600!important;color: #fff!important;}
.product-detail-tabcon table tr:nth-child(2n-1){background-color:#fff ;}
.product-detail-tabcon table tr:nth-child(2n){background-color:#fdfdfd ;}

.xypg-detail-con table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.xypg-detail-con table th,
.xypg-detail-con table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.xypg-detail-con table td p{line-height:1.8!important;}
.xypg-detail-con table tr:hover{background-color:#f2f2f2!important;}
.xypg-detail-con table tr:nth-child(2n-1){background-color:#fff ;}
.xypg-detail-con table tr:nth-child(2n){background-color:#fdfdfd ;}
.xypg-detail-con table {
  width: 100%;
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #505459
}

.xypg-detail-con table th,
.xypg-detail-con table td {
  border: 1px solid #ddd !important;
  padding: 8px !important;
  background: none !important;
}

.xypg-detail-con table td p {
  line-height: 1.8 !important;
}

.xypg-detail-con table tr:hover {
  background-color: #f2f2f2 !important;
}

.xypg-detail-con table tr:nth-child(2n-1) {
  background-color: #fff;
}

.xypg-detail-con table tr:nth-child(2n) {
  background-color: #fdfdfd;
}

.page-banner .nybt {
  display: none;
}

.ueditor_baidumap {
  width: 100%;
}

.xypg-album-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-left: 0px;
  margin-right: 0px;
}

.xypg-album-list li {
  padding: 10px 10px 0px;
  border: 1px solid rgb(234, 234, 234);
  margin: 0px;
  width: 23.5%;
  margin-right: 2%;
}

.xypg-album-list li:nth-child(4n) {
  margin-right: 0;
}

.xypg-album-list li:nth-child(4)~li {
  margin-top: 2%;
}

.xypg-album-list li h3 {
  position: static;
  color: rgb(102, 102, 102);
  font-size: 16px;
  background: none;
  height: 40px;
  line-height: 40px;
  margin-top: 10px;
}

@media screen and (min-width: 751px) {
  .easyzoom-flyout img {
    max-width: inherit;
  }
  .product-detail-tabcon table{
    width: 100%!important;
  }

  .container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
  }
}

@media screen and (max-width: 751px) {
  body {
    padding-bottom: 0px;
    padding-top: 0px;
    margin-bottom: 50px;
  }

  .page-product-detail-effect .big-img {
    pointer-events: none;
  }

  .page-banner .nybt h3 {
    font-size: 20px;
  }

  .page-product-detail-effect .big-img a {
    height: auto;
  }

  .container2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-product-detail-effect .big-img {
    height: auto;
  }


  .page-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .page-banner>img {
    max-width: 240%;
    width: 240%;
  }

  .xypg-product-list,
  .xypg-case-list {
    display: flex;
    flex-wrap: wrap;
  }

  .xypg-product-list li,
  .xypg-case-list li {
    width: 48%;
    margin: 0px;
  }

  .xypg-product-list li:nth-child(2n),
  .xypg-case-list li:nth-child(2n) {
    margin-left: 4%;
  }

  .xypg-product-list li:nth-child(2)~li,
  .xypg-case-list li:nth-child(2)~li {
    margin-top: 4%;
  }

  .xypg-pagination>div {
    margin-bottom: 10px;
  }

  .xypg-case-list li h3 a {
    padding-bottom: 0px;
  }

  .xypg-news-list li {
    padding: 15px;
    margin-bottom: 15px;
  }

  .xypg-news-list li .more {
    text-align: center;
    margin-top: 0px;
  }

  .xypg-news-list li .more span {
    width: 90px;
    margin: 0px auto;
  }

  .product-detail-tabcon {
    font-size: 16px;
  }

  .product-detail-tab .product-detail-tabli li {
    padding: 8px 15px;
    width: auto;
    line-height: 1.2;
    height: auto;
  }

  .product-detail-tab .product-detail-tabli {
    height: auto;
  }

  .xypg-album-list {
    justify-content: space-between;
  }

  .xypg-album-list::before,
  .xypg-album-list::after {
    display: none;
  }

  .xypg-album-list li {
    width: 48%;
    margin: 0px;
  }

  .xypg-album-list li:nth-child(2)~li {
    margin-top: 2%;
  }
}

/* ==================== 通用细节调整 end ==================== */
/* #endregion */

/* #region ==================== 搜索 start ==================== */
.mxw-keywords .tel {
  color: rgb(255, 255, 255);
  flex-shrink: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-right: 0.6667rem;
}

.mxw-keywords .tel p {
  font-size: 20px;
}

.mxw-keywords .tel img {
  width: 38px;
  margin-right: 18px;
}

.mxw-keywords .tel strong {
  font-size: 29px;
  font-weight: bold;
  line-height: 1.2;
  display: inline-block;
  color: rgb(235, 46, 59);
}

@media screen and (max-width: 1680px) {
  .mxw-keywords .tel {
    margin-left: 0px;
    padding-left: 0px;
  }

  .mxw-keywords .tel p {
    font-size: 16px;
  }

  .mxw-keywords .tel strong {
    font-size: 26px;
    margin-top: 5px;
  }
}

/* #endregion ==================== 搜索 end ==================== */

/* #region ==================== 关于我们 start ==================== */
.mxw-about .aboutmain {
  background: #89cded;
  margin-top: 0.5rem;
}

.mxw-about>.mxw-box {
  display: flex;
  align-items: center;
}

.mxw-about .info .mxw-title {
  text-align: left;
}

.mxw-about .info .mxw-title .text1 {
  color: #fff;
  font-size: 0.4rem;
  padding-bottom: 0.1667rem;
  margin-bottom: 0.3333rem;
}

.mxw-about .info .mxw-title .text1::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 1.6667rem;
  height: .05rem;
  background: #FFFFFF;
}

.mxw-about .info {
  position: relative;
  background: #29a7e2;
  padding: 0.8rem 0.8rem 0.7rem 0.7rem;
}

.mxw-about .info .desc {
  font-size: 0.267rem;
  color: #fff;
  line-height: 1.6;

}
.mxw-about .info .desc p{ text-indent: 2em;}

.mxw-about .mxw-more {
  background: #fff;
  color: #333;
  font-size: 0.267rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1333rem;
  height: .7333rem;
  border-radius: 0.85rem;
  margin-top: 0.55rem;
}

.mxw-about .mxw-more:hover {
  background: #fff;
  color: #333;
}

@media screen and (min-width: 751px) {
  .mxw-about {
    padding-top: 1.666rem;
    padding-bottom: .8333rem;
  }

  .mxw-about .mxw-box {
    display: flex;
    align-items: stretch;
  }

  .mxw-about .image {
    width: 11.6667rem;
    flex-shrink: 0;
  }

  .mxw-about .image img {
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 1680px) {
  .mxw-about .info .desc {
    margin-bottom: .4rem;
  }

}

@media screen and (max-width: 751px) {
  .mxw-about{
    margin-top: 20px;
  }
  .mxw-about>.mxw-box {
    flex-wrap: wrap;
  }

  .mxw-about .info .mxw-title{
    text-align: center;
    padding-top: 20px;
    margin-bottom: 0;
  }
  .mxw-about .info .mxw-title .text1::after{
    left: 50%;
    transform: translateX(-50%);
  }
  .mxw-about .info{
    padding: 0 0 20px 0;
  }

  .mxw-about .image {
    order: 2;
    margin-top: 20px;
  }

  .mxw-about .info .desc {
    margin-bottom: 0;
    padding: 0 20px;
    width: 100%;
  }
}


/* #endregion ==================== 关于我们 end ==================== */

/* #region ==================== 项目现场 start ==================== */
.mxw-product .product{
  padding: 0;
}
.product-min .mxw-swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/Group\ 121on.png) no-repeat center;
  background-size: 100%;
  width: 0.6667rem;
  height: 1.667rem;
  outline: none;
  cursor: pointer;
  z-index: 9;
}

.product-min .mxw-swiper-btn.swiper-button-disabled {
  background: url(../images/Group\ 121.png) no-repeat center;
}

.product-min .mxw-swiper-btn.mxw-swiper-prev {
  transform: translateY(-50%) rotateY(0);
  left: 0;
}

.product-min .mxw-swiper-btn.mxw-swiper-next {
  transform: translateY(-50%) rotateY(180deg);
  right: 0;
}

.product-swiper .mxw-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: .55rem;
  right: 2.4167rem;
}

.product-swiper .mxw-swiper-btn {
  background: url(../image/eeef1f912625d7c04993150f265e274545a74525.png) no-repeat center;
  background-size: 100%;
  width: .4667rem;
  height: .4667rem;
  outline: none;
  cursor: pointer;
  z-index: 9;
  border-radius: 4px;
}

.product-swiper .mxw-swiper-btn.swiper-button-disabled {
  background: url(../image/79f52129d6b3204cc94f3cce8cea5ca324972d27.png) no-repeat center;
}

.product-swiper .mxw-swiper-btn.mxw-swiper-prev {
  transform: rotateY(0);
  margin-right: 0.1667rem;
}

.product-swiper .mxw-swiper-btn.mxw-swiper-next {
  transform: rotateY(180deg);
}

.mxw-product .body {
  position: relative;
  padding-top: .5667rem;
  margin-bottom: 0.25rem;
}

.mxw-product .mxw-cate .cate-item {
  font-size: 0.233rem;
  color: #C3C3C3;
  line-height: 1.2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.mxw-product .mxw-cate .cate-item:first-child.active {
  font-size: .6667rem;
}

.mxw-product .mxw-cate .cate-item.active {
  color: #29a7e2;
  font-size: .32rem;
  font-weight: 700;
}

.mxw-product .mxw-cate .cate-item::before {
  content: "";
  display: block;
  width: 0.01667rem;
  height: .8333rem;
  border: 1px dashed #C3C3C3;
  margin-right: 0.3333rem;
  transition: width 0.4s;
  position: relative;
  transform: translateY(50%);
}

.mxw-product .mxw-cate .cate-item:last-child::before {
  opacity: 0;
  visibility: hidden
}

.mxw-product .mxw-cate .cate-item::after {
  content: "";
  display: block;
  background: url(../image/1415d4f43adb4e2fdc521141352de83cf82f9598.jpg) #fff;
  width: 0.1667rem;
  height: 0.1667rem;
  margin-right: 0.3333rem;
  transition: width 0.4s;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-40%, -50%);
}

.mxw-product .mxw-cate .cate-item.active:after {

  background: url(../image/d5b72bb731d50a3c869ad6c61383d5118f8debae.png);
}

.mxw-product .mxw-cate .cate-item:last-child {
  margin-bottom: 0;
}
.mxw-product .mxw-cate .cate-item.active span::after{
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  background: #29a7e2;
  width: 1.4rem;
  height: 2px;
}

.mxw-product .right .product-right {
  position: relative;
  z-index: 0;
}

.mxw-product .right .infobox {
  width: 100%;
}

.mxw-product .right .info {
  position: absolute;
  width: 9.1rem;
  top: 70%;
  left: 80%;
  transform: translate(-75%, -50%);
  z-index: 999;
  font-size: .2667rem;
  padding: .6rem .6667rem;
}

.mxw-product .right .title {
  color: #29a7e2;
  position: relative;
  padding-bottom: 0.1667rem;
  font-weight: bold;
}

.mxw-product .right .title::after {
  content: "";
  background: #C3C3C3;
  width: 1.3917rem;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.mxw-product .right .desc {
  margin-top: 0.1667rem;
  font-size: 0.21rem;
  line-height: 2;
  padding-right: .5rem;
  padding-bottom: 0.6667rem;
  color: #515151;
}

.mxw-product .right .mxw-more {
  padding: 0.1667rem 0.3333rem;
  border: 1px solid #29a7e2;
  color: #29a7e2;
  display: inline-block;
}

.mxw-product .right .number {
  font-size: 0.4rem;
  color: #DDDDDD;
  font-weight: bold;
  text-align: right;
}

.mxw-product .product-min {
  padding-bottom: .833333rem;
}
.mxw-product .pro-min-slide{
  width: 5.5833rem;
}

.mxw-product .product-minbox .image {
  border-radius: .1333rem;
}
.mxw-product .product-minbox .product-min .item{
  display: block;
}
.mxw-product .product-minbox .product-min .item::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  border: 1px solid #29a7e2;
  opacity: 0;
  transition: width 0.4s;
  z-index: 0;
}
.mxw-product .product-minbox .product-min .item::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #00000080;
  position: absolute;
  top: 0;
  border-radius: .1333rem;
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}
.mxw-product .product-minbox .info{
  font-size: 0.4rem;
  color: #fff;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
  z-index: 99;
}
.mxw-product .product-min .item:hover::before{
  opacity: 1;
  width: 90%;
  height: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.mxw-product .product-min .item:hover::after{
  opacity: 1;
}
.mxw-product .product-minbox .item:hover .info{
  opacity: 1;
}
.mxw-product .product-minbox .mxw-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mxw-product .product-minbox .mxw-btn-group .swiper-pagination {
  position: absolute;
  bottom: 0;
}

.mxw-product .product-minbox .swiper-pagination-bullet {
  width: .5rem;
  height: .5rem;
  line-height: 0.5rem;
  font-size: .2667rem;
  border: 1px solid #C3C3C3;
  background: none;
  color: #C3C3C3;
  margin: 0 .1rem;
  opacity: 1;
}

.mxw-product .product-minbox .swiper-pagination-bullet-active {
  border: 1px solid #02ACED;
  background: none;
  color: #02ACED;
}

@media screen and (min-width: 751px) {
  .mxw-product .mxw-box {
    padding-top: 0.8333rem;
    padding-bottom: 1.6667rem;
  }

  .mxw-product .body {
    display: flex;
    align-items: stretch; flex-wrap: wrap;
  }

  .mxw-product .body .left {
    width: 100%;
  }
  .mxw-product .body .left .mxw-cate{ display: flex; align-items: center; justify-content: center;margin-bottom: 0.5rem;}
  .mxw-product .mxw-cate .cate-item::before,.mxw-product .mxw-cate .cate-item::after{ display: none}
  .mxw-product .mxw-cate .cate-item.active span::after{ display: none}
  .mxw-product .mxw-cate .cate-item{ min-width: 3.333rem; font-size: 0.3rem; padding: 0.2rem 0.417rem;text-align: center; background: #fff; border-radius: 0.417rem; justify-content: center; color: #333; margin-left: 0.417rem;}
  .mxw-product .mxw-cate .cate-item:first-child{ font-size: 0.3rem; margin-left: 0;}
  .mxw-product .mxw-cate .cate-item:first-child.active{ font-size: 0.3rem; font-weight: normal}
  .mxw-product .mxw-cate .cate-item.active{ font-size: 0.3rem; color: #fff; background: #29a7e2; font-weight: normal}

  .mxw-product .body .right {
    flex-grow: 1;
    height: 100%;
    margin-left: 0%;
    width: 100%;
  }

  .mxw-product .body .right .product-box {
    /* align-items: stretch; */
    border-radius: .53333rem;
    max-height: 8.3333rem;
  }
  .mxw-product .body .right .product-box .product-left{
    max-width: 59.5%;
  }

  .mxw-product .product-swiper {
    overflow: hidden;
    height: auto;
    flex: 1;
  }
  .mxw-product .product-swiper .swiper-slide{
    overflow: hidden;
  }

  .mxw-product .absolute {
    position: absolute;
  }

  .mxw-product .product-swiper .info {
    opacity: 0;
  }

  .mxw-product .product-swiper .swiper-slide-active .info {
    opacity: 1;
  }
  .mxw-product .product-swiper .swiper-slide .item p{ font-size: 0.3rem; text-align: center; margin-top: 0.167rem}
  .mxw-product .product-swiper .swiper-slide .item:nth-child(5n)~.item{ margin-top: 2%}
  .mxw-product .right .product-right {

  }

  .mxw-product .productbg {
    height: 100%;
  }

  .mxw-product .productbg img {
    height: 100%;
    object-fit: cover;
  }

  .mxw-product .product-swiper .image {
    display: block; border: 1px solid #999;
    height: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

  }
}

@media screen and (max-width: 751px) {
  .mxw-product .body{
    padding-top: 0;
  }
  .mxw-product .body .left {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  .mxw-product .product-swiper,
  .mxw-product .product-min {
    width: 100%;
    overflow: hidden;
  }
  .mxw-product .body .right .product-left{
    width: 100%;
    overflow: hidden;
  }


  .mxw-product .mxw-cate {
    order: -1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: space-between;
  }

  .mxw-product .mxw-cate .cate-item {
    font-size: 14px;
    width: 48%;
    margin-bottom: 0 !important;
    padding: 4px 0;
  }

  .mxw-product .mxw-cate .cate-item:before {
    width: 4px;
    height: 4px;
  }

  .mxw-product .mxw-cate .cate-item.active:before {
    width: 4px;
  }

  .mxw-product .mxw-cate .cate-item:nth-child(3n-1) {

  }

  .mxw-product .mxw-cate .cate-item:nth-child(2)~.cate-item {
    margin-top: 4%;
  }

  .mxw-product .right .info {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
  }

  .mxw-product .right .number {
    display: inline-flex;
    float: right;
  }

  .mxw-product .right .desc {
    padding: 0;
  }

  .mxw-product .right .product-right {
    display: none
  }
}

/* #endregion ==================== 项目现场 end ==================== */

/* #region ==================== 首页广告 start ==================== */
.mxw-recommend .body {
  background: url(../image/b5b0bbec7d9a36dd084378e7226ce0d326314a81.jpg) no-repeat top center;
  background-size: 100% auto;
  margin-top: .5rem;
}

.mxw-recommend .swiper-pagination {
  position: static;
  text-align: left;
}

.mxw-recommend .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.mxw-recommend .swiper-pagination .swiper-pagination-bullet-active {
  background: #f58220;
}

.mxw-recommend .info {
  width: 48.5%;
  flex-shrink: 0;
  padding-top: 1.1333rem;
  padding-right: 1.11rem;
  padding-bottom: 1.15rem;
}

.mxw-recommend .title {
  font-size: 0.6rem;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin-bottom: 0.3333rem;
}

.mxw-recommend .desc {
  font-size: 0.33333rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: .4667rem;
}

.mxw-recommend .desc p {
  margin-bottom: 15px;
}

.mxw-recommend .desc p:last-child {
  margin-bottom: 0;
}

.mxw-recommend .desc p:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 9px;
  background: #f58220;
  margin-right: 10px;
}

.mxw-recommend .desc p strong {
  color: #f58220;
}

.mxw-recommend .btn {
  width: 2.4rem;
  height: .65rem;
  line-height: .65rem;
  background: #f58220;
  color: #fff;
  font-size: 0.2833rem;
  text-align: center;
  display: block;
  border-radius: 0.2rem;
  padding: 0;
}

.mxw-recommend .btn:hover {
  color: #fff;
}

.mxw-recommend .image {
  flex-shrink: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 51.5%;
  border-radius: 0.26667rem;
}

@media screen and (min-width: 751px) {
  .mxw-recommend .recommend-swiper {
    padding-bottom: 2.0333rem;
  }

  .mxw-recommend .mxw-title .text span:after {
    display: none;
  }
}

@media screen and (max-width: 751px) {
  .mxw-recommend .item {
    flex-flow: column;
  }

  .mxw-recommend .info {
    width: 100%;
    margin-top: 30px;
    order: 2;
    padding: 0;
  }

  .mxw-recommend .image {
    width: 100%;
    order: 1;
    position: static;
  }

  .mxw-recommend .title {
    font-size: 16px;
    line-height: 1.6em;
    margin-bottom: 20px;
  }

  .mxw-recommend .desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .mxw-recommend .desc p:before {
    width: 4px;
    height: 4px;
    margin-right: 5px;
  }

  .mxw-recommend .desc p {
    margin-bottom: 10px;
  }

  .mxw-recommend .btn {
    width: 100%;
    padding: 8px 20px;
    line-height: inherit;
    height: auto;
  }

  .mxw-recommend .swiper-pagination {
    margin-top: 20px;
    text-align: center;
  }

  .mxw-recommend .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

/* #endregion ==================== 首页广告 end ==================== */

/* #region ==================== 优势 start ==================== */
.mxw-advantages .section2 {
  background: url(/skin/images/12.png) center bottom no-repeat;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0.83333rem;
  padding: 0.9333rem 0 1.5667rem;
}

.mxw-advantages .section2 .text1 {
  font-size: 0.8rem;
  color: rgb(255, 255, 255);
  font-weight: bold;
}

.mxw-advantages .section2 .text2 {
  font-size: 0.3333rem;
  padding-bottom: .2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mxw-advantages .section2 .text2 .numbers {
  font-size: .5333rem;
  color: #29a7e2;
}

.mxw-advantages .section2 .text3 {
  font-size: 0.3333rem;
  line-height: 1.5;
}

.mxw-advantages .s2-title {
  font-size: 0.6rem;
  text-align: center;
  color: #fff;
  padding-bottom: .4667rem;
}

.mxw-advantages .section2 .itembox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mxw-advantages .section2 .itembox .item {
  color: #ffffff;
  text-align: center;
  position: relative;
  border-radius: .2667rem;
  width: 5.3333rem;
}

@media screen and (min-width: 1200px) {
  .mxw-advantages {

  }
}

@media screen and (max-width: 1200px) {

  .mxw-advantages .section2 {
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 0;

    background-size: cover;
  }

  .mxw-advantages .section2:before {
    height: 100%;
    width: 100%;
    transform: inherit;
  }
  .mxw-advantages .s2-title{
    font-size: 24px;
    padding-bottom: 10px;
  }

  .mxw-advantages .section2 .text1 {
    font-size: 18px;
    top: 0;
  }

  .mxw-aboadvantagesut .section2 .text1::after {
    width: 30px;
    height: 1px;
    margin: 10px auto;
  }

  .mxw-advantages .section2 .text2 {
    font-size: 12px;
    line-height: 1.8;
  }
  .mxw-advantages .section2 .text2 .numbers{
    font-size: 20px;
  }
  .mxw-advantages .section2 .text3{
    font-size: 14px;
  }

  .mxw-advantages .section2 .itembox {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .mxw-advantages .section2 .itembox .item {
    width: 100%;
    margin: 10px 0;
  }
}

/* #endregion ==================== 优势 end ==================== */

/* #region ==================== 工程案例 start ==================== */
.mxw-cases .body {
  margin-top: .6333rem;
  align-items:flex-start;
}

.mxw-cases .left {
  position: relative;
  width: 45.3%;
  flex-shrink: 0;
  margin-right: 0.3333rem;
  display: block;
  border-radius: .2667rem;
  overflow: hidden;
}

.mxw-cases .name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 0.3333rem;
  height: 0.9rem;
  line-height: 0.9rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.3rem;
}

.mxw-cases .right {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
}

.mxw-cases .item {
  position: relative;
  width: 48.5%;
  height: 50%;
  display: block;
  border-radius: .2667rem;
  overflow: hidden;
}
.mxw-cases .item:first-child{
  display: none;
}
.mxw-cases .item:nth-child(2n-1) {

  margin-left: 2.5%;
}

.mxw-cases .item:nth-child(3)~.item {
  margin-top: 2.5%;
}

@media screen and (min-width: 751px) {
  .mxw-cases .mxw-box {
    padding-top: 0.83333rem;
    padding-bottom: 1.6667rem;
  }

  .mxw-cases .right .name {
    height: 0.6333rem;
    line-height: 0.6333rem;
  }

  .mxw-cases .item .image {
    height: 0;
    position: relative;
    padding-bottom: 56%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mxw-cases .item .image img {
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

@media screen and (max-width: 751px) {
  .mxw-cases .body {
    flex-wrap: wrap;
  }

  .mxw-cases .left {
    width: 100%;
    margin-bottom: 15px;
    margin-right: 0;
  }

  .mxw-cases .name {
    height: auto;
    line-height: inherit;
    padding: 8px 20px;
    font-size: 12px;
  }
}

/* #endregion ==================== 工程案例 end ==================== */

/* #region ==================== 联系我们 start ==================== */
.mxw-section01 {
  text-align: center;
}
.mxw-section01 .section1main{
  background: url(/skin/images/dt2.png) no-repeat center;
  background-size: cover;
  margin-top: .6333rem;
}
.mxw-section01 .logo {
  width: 3.6667rem;
  display: block;
  margin: 0 auto 0.5833rem;
}

.mxw-section01 .title {
  font-size: 0.6rem;
  color: #fff;
  line-height: 1.2;
}

.mxw-section01 .desc {
  font-size: 0.3333rem;
  line-height: 1.2;
  color: #fff;
  margin-top: .45rem;
}

.mxw-section01 .tel {
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .3333rem;
  margin-top: 0.2667rem;
}

.mxw-section01 .tel span {
  font-size: 0.6rem;
  color: #29a7e2;
}

@media screen and (min-width: 751px) {
  .mxw-section01 {
    background-attachment: fixed;
  }

  .mxw-section01 .mxw-box {
    padding-top: .7333rem;
    padding-bottom: 0.6rem;
  }
}

@media screen and (max-width: 751px) {
  .mxw-section01 .section1main{

    background-size: cover;
    margin-top: 20px;
  }

  .mxw-section01 .logo {
    width: 110px;
    margin-bottom: 10px;
  }

  .mxw-section01 .title {
    font-size: 14px;
    line-height: 1.6;
  }

  .mxw-section01 .desc {
    font-size: 14px;
    line-height: 1.8;
    margin: 15px 0;
  }

  .mxw-section01 .tel {
    width: 100%;
    font-size: 18px;
    padding: 8px 20px;
    height: auto;
    line-height: inherit;
    margin-top: 0;
  }

  .mxw-section01 .tel img {
    width: 20px;
    margin-right: 10px;
  }
}

/* #endregion ==================== 联系我们 end ==================== */

/* #region ==================== 合作伙伴 start ==================== */

.mxw-partner .partner-tabs {
  background: url(../image/2a6288f6fecdf80f2c8b81f39b2d6ab7281275c0.jpg) center bottom no-repeat;
  background-size: cover;
  margin-top: .6333rem;
  padding-top: .95rem;
  padding-bottom: 0.78333rem;
}
.mxw-partner .partner-tabs .itembox{
  max-width: 1600px;
  margin: auto;
}
.mxw-partner .item {
  display: block;
}
.mxw-partner .item .image{
  min-height: 1.9rem;
  background: #fff;
  display: flex;
  align-items: center;
}
.mxw-partner .item .title {
  display: block;
  text-align: center;
  font-size: 0.2667rem;
  padding: 0.2rem 0;
  color: #747474;
}

.mxw-partner .swiper-slide {
  width: 6.8333rem;
}

@media screen and (min-width: 751px) {
  .mxw-partner {
    padding-top: 1.667rem;
    padding-bottom: .83333rem;
  }

  .mxw-partner .mxw-tabs-header {
    margin-bottom: 0.8333rem;
  }

  .mxw-partner .mxw-tabs-item {
    width: 3.5rem;
    background-color: #e7e7e7;
    border-radius: 0.1rem;
    margin-right: 0.4333rem;
    height: 0.8333rem;
    line-height: 0.8333rem;
  }
}

@media screen and (max-width: 751px) {
  .mxw-partner{
    padding-top: 20px;
  }
  .mxw-partner .mxw-tabs-wrap {
    flex-wrap: wrap;
    width: 100%;
  }

  .mxw-partner .mxw-tabs-item {
    width: 48%;
    margin-right: 0 !important;
    height: 30px;
    line-height: 30px;
  }

  .mxw-partner .mxw-tabs-item:nth-child(2)~.mxw-tabs-item {
    margin-top: 2.5% !important;
  }

  .mxw-partner .mxw-tabs-item:nth-child(2n) {
    margin-left: 2% !important;
  }

  .mxw-partner .item .title {
    font-size: 14px;
    padding: 10px 0;
  }
}

/* #endregion ==================== 合作伙伴 end ==================== */

/* #region ==================== 荣誉资质 start ==================== */

.mxw-honor .honormain {
  background: url(../image/4eeb271bc9ca6df4ec87c5cd8252f6888953fb82.jpg) no-repeat bottom center #eff4fa;
  margin-top: .6333rem;
}

@media screen and (min-width: 751px) {
  .mxw-honor {
    padding-top: .8333rem;
    padding-bottom: .8333rem;
  }

  .mxw-honor .mxw-title .text span:after {
    display: none;
  }

  .mxw-honor .mxw-box {
    padding-top: 0.7167rem;
    padding-bottom: 0.7167rem;
  }

  .mxw-honor .left {
    width: 14.45rem;
  }
}

@media screen and (max-width: 751px) {
  .mxw-honor {
    padding-top: 20px;
  }

  .mxw-honor .left {
    width: 100%;
  }
  .mxw-honor .honormain{
    background: url(../image/f41b2fc69b521ac02d5c0d1998894ea64dabb1d3.jpg) no-repeat center bottom;
    background-size: cover;
    min-height: 460px;
    margin-top: 20px;
  }
}

/* #endregion ==================== 荣誉资质 end ==================== */

/* #region ==================== 新闻资讯 start ==================== */

.news-body {
  margin-top: 0.467rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.news-body .mxw-title2 {
  border-bottom: 2px solid #F8F8F8;
}

.news-body .left-box {
  width: 55.25%;
}

.news-body .mxw-title2::after {
  width: 33px;
  background: #29a7e2;
  content: "";
  display: block;
  margin-top: 0.2rem;
  height: 2px;
}

.news-body .mxw-title2 .xt {
  font-size: 0.4rem;
  font-weight: bold;
}

.news-body .mxw-title2 a {
  font-size: 12px;
}

.news-body .mxw-title2 a:hover {
  color: #29a7e2
}

.news-body .mxw-title2 .u-flex {
  align-items: flex-end;
  justify-content: space-between;
}

.news-body .left-box .con {
  margin-top: 0.333rem;
}

.news-body .left-box .con .img-box {
  flex-shrink: 0;
  margin-right: 0.333rem;
  flex-grow: 1;
  width: 39%;
  position: relative;
  z-index: 1;
  display: none;
}

.news-body .item .date {
  flex-shrink: 0;
  margin-right: 0.467rem;
  color: #2C2C2C;
  font-weight: bold;
  font-size: 0.333rem;
  text-align: center;
}

.news-body .item .text {
  flex-grow: 1;
  min-width: 0;
}

.news-body .item .text .txt1 {
  color: #2C2C2C;
  font-weight: bold;
  font-size: 0.267rem;
  margin-bottom: 0.133rem;
}

.news-body .item .text .txt2 {
  font-size: 0.2rem;
  color: #777777;
  line-height: 1.8
}

.news-body .item .date p {
  font-size: 0.233rem;
  color: #777777
}

.news-body .left-box .list {
  align-content: space-between;
  flex-grow: 1;
  min-width: 0;
}

.news-body .item {
  padding: 0.333rem 0 0;
  display: block;
  border-bottom: 2px solid #F8F8F8
}

.news-body .item:last-child {
  border-bottom: none
}

.news-body .item::after {
  display: block;
  content: "";
  width: 33px;
  height: 2px;
  background: #29a7e2;
  margin-top: 12px;
  transform: translateY(1px);
}

.news-body .item:last-child::after {
  display: none;
}

.news-body .item:hover .txt1 {
  color: #29a7e2;
}

.news-body .item:hover .date {
  color: #29a7e2;
}

.news-body .item:hover .txt2 {
  color: #29a7e2;
}

.news-body .item:hover .date p {
  color: #29a7e2;
}

.news-body .right-box {
  width: 36%;
}

.news-body .left-box .item:first-child {
  padding-top: 0
}

@media screen and (min-width: 751px) {
  .mxw-news {
    padding-top: .8333rem;
    padding-bottom: .8333rem;
    margin-bottom: 1.6667rem;
  }
  .news-body .left-box .con .img-box::after{
    content: "";
    display: block;
    width: 7.55rem;
    height: 4.7167rem;
    position: absolute;
    bottom: 0;
    left: -10%;
    top: 0.8333rem;
    background: #89cded;
    z-index: -1;
    transform: translateX(-50%);
  }
}

.xypg-right-content{ font-size: 0.3rem; line-height: 1.8}
#toolbar .online-one li .icon-wapp:after{
  background: url(/skin/img/wap.png) no-repeat;
  background-size: 110%;
}

@media screen and (max-width: 751px) {
  .mxw-news {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .news-body {
    margin-top: 20px;
    padding: 15px 15px 25px 15px;
    flex-wrap: wrap;
  }

  .news-body .left-box {
    width: 100%;
  }

  .news-body .mxw-title2 .xt {
    font-size: 18px;
  }

  .news-body .mxw-title2::after {
    margin-top: 5px;
  }

  .news-body .left-box .con .img-box {
    display: none;
  }

  .news-body .item .text .txt1 {
    font-size: 16px;
  }

  .news-body .item .text .txt2 {
    font-size: 12px;
    margin-top: 10px;
    max-height: 40px;
  }

  .news-body .item .date {
    font-size: 18px;
  }

  .news-body .item .date p {
    font-size: 14px;
  }

  .news-body .right-box {
    width: 100%;
    margin-top: 25px;
  }
  .product-swiper .swiper-slide .u-row-5{ box-sizing: border-box; padding-right: 1px; justify-content: space-between}
  .product-swiper .swiper-slide p{ font-size: 14px; text-align: center; margin-top: 5px}
  .product-swiper .swiper-slide .item:nth-child(2n)~.item{ margin-top: 25px;}
  .product-swiper .swiper-slide .item .mxw-image{ border: 1px solid #999}


  .mxw-product .body .left .mxw-cate{ display: flex; align-items: center; justify-content: center;margin-bottom: 0.5rem;}
  .mxw-product .mxw-cate .cate-item::before,.mxw-product .mxw-cate .cate-item::after{ display: none}
  .mxw-product .mxw-cate .cate-item.active span::after{ display: none}
  .mxw-product .mxw-cate .cate-item{ min-width: 3.333rem; font-size: 0.3rem; padding: 0.2rem 0.417rem;text-align: center; background: #fff; border-radius: 0.417rem; justify-content: center; color: #333; margin-left: 0.417rem;}
  .mxw-product .mxw-cate .cate-item:first-child{ font-size: 0.3rem; margin-left: 0;}
  .mxw-product .mxw-cate .cate-item:first-child.active{ font-size: 0.3rem; font-weight: normal}
  .mxw-product .mxw-cate .cate-item.active{ font-size: 0.3rem; color: #fff; background: #29a7e2; font-weight: normal}

  .mxw-product .body .left .mxw-cate{ margin: 25px auto 15px; justify-content: space-between; width: 100%;}
  .mxw-product .mxw-cate .cate-item{ width: 30%; font-size: 15px; min-width: initial; padding: 8px 5px; margin: 0}
  .mxw-product .mxw-cate .cate-item:nth-child(2)~.cate-item{ margin-top: 0}
  .mxw-product .mxw-cate .cate-item:first-child.active,.mxw-product .mxw-cate .cate-item.active{ font-size: 15px; padding: 8px 5px}

  footer .foot-contact .foot-head>div.u-flex:nth-child(odd){ display: none}
}

/* #endregion ==================== 新闻资讯 end ==================== */
