@charset "UTF-8";
/* #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
}
/* ==================== 重置默认样式 end ==================== */
/* #endregion */
/* #region ==================== 常用样式 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 ==================== */
/* #endregion */
/* #region ==================== 文本行数限制 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 ==================== */
/* #endregion */
/* #region ==================== 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 ==================== */
/* #endregion */
/* #region ==================== 通用布局 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%;
    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 {
    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: 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: 32%;
  }
}
/* ==================== 通用布局 end ==================== */
/* #endregion */
/* #region ==================== 分页样式 start ====================*/
.mxw-pagination {
  margin-top: 50px;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.mxw-pagination>a,
.mxw-pagination>span {
  padding: 6px 12px;
  font-size: 14px;
  color: #666;
  line-height: 1.2;
  border: 1px solid #ccc;
  display: block;
  margin: 4px;
}
.mxw-pagination>a.active,
.mxw-pagination>a:hover {
  background-color: #00a641;
  color: #fff !important;
}
.mxw-pagination>a:first-child {
  margin-left: 0;
}
.mxw-pagination>a:last-child {
  margin-right: 0;
}
@media screen and (max-width: 751px) {
  .mxw-pagination {
    margin-top: 30px;
  }
  .mxw-pagination>a {
    font-size: 12px;
    margin: 2px;
    padding: 8px 10px;
  }
}
/* ==================== 分页样式 end ==================== */
/* #endregion */
/* #region ==================== 通用标签页 start ====================*/
/* 标签页 */
.mxw-tabs {
  padding-left: 0;
  padding-right: 0;
}
.mxw-tabs .mxw-tabs-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1333rem;
  padding-bottom: .5rem;
  box-shadow: 0px 4px 6px 0px rgba(91, 91, 91, 0.1);
}
.mxw-tabs .mxw-tabs-wrap {
  position: relative;
  display: flex;
  overflow-x: scroll;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.mxw-tabs .mxw-tabs-wrap::-webkit-scrollbar {
  display: none;
}
.mxw-tabs .mxw-tabs-item {
  flex-shrink: 0;
  text-align: center;
  cursor: pointer;
  font-size: .25rem;
  white-space: nowrap;
  color: #333;
  padding: 0.2rem .2rem;
  background: #fff;
  border: 1px solid #00a641;
  border-radius: .5rem;
  margin: 0 .1rem .3rem 0;
}
.mxw-tabs .mxw-tabs-item:last-child {
  margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
  background: #00a641;
  color: #fff;
}
@media screen and (max-width: 751px) {
  .mxw-tabs .mxw-tabs-header {
    margin-bottom: .3333rem;
  }
  .mxw-tabs .mxw-tabs-header .mxw-box {
    padding: 0;
  }
  .mxw-tabs .mxw-tabs-item {
    font-size: .2rem;
    padding: .1167rem 0;
    margin-right: 2%;
    width: 49%;
    text-align: center;
    justify-content: center;
  }
  .mxw-tabs .mxw-tabs-item:nth-child(2n) {
    margin-right: 0;
  }
  .mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
    width: 100%;
  }
}
/* ==================== 通用标签页 end ==================== */
/* #endregion */
/* #region ==================== 关键词 start ==================== */
.mxw-keywords {
  position: relative;
  z-index: 99;
  width: 100%;
  background: #f6f6f6;
}
.mxw-keywords .mxw-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: .25rem;
  padding-bottom: .25rem;
}
.mxw-keywords .left {
  position: relative;
  flex-grow: 1;
  font-size: .2667rem;
  line-height: 1.2;
  color: #666;
  display: flex;
  align-items: center;
}
.mxw-keywords .left strong {
  vertical-align: inherit;
}
.mxw-keywords .left .hotkey {
  vertical-align: inherit;
  font-weight: bold;
  font-size: .333rem;
  color: #333333;
}
.mxw-keywords .left .hotkey a {
  color: #00a641;
  font-weight: initial;
}
.mxw-keywords .left a:after {
  content: "";
  padding-left: .3333rem;
}
.mxw-keywords .left a:hover {
  color: #00a641;
}
.mxw-keywords .left a:last-child {
  padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
  display: none;
}
.mxw-keywords .right form {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}
.mxw-keywords .right form:before {
  content: "";
  display: block;
  width: 2px;
  height: 16px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.mxw-keywords .right input#keyword {
  width: 5.6667rem;
  height: 48px;
  line-height: 44px;
  padding: 0 20px;
  font-size: 14px;
  color: #333;
  border: 1px solid #e2e2e2;
  border-right: 0;
  background-color: #ffffff;
  border-top-left-radius: .4rem;
  border-bottom-left-radius: .4rem;
}
.mxw-keywords .right input::-webkit-input-placeholder {
  /*Webkit browsers*/
  color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
  /*Mozilla Firefox 4 to 8*/
  color: #999;
}
.mxw-keywords .right input::moz-placeholder {
  /*Mozilla Firefox 19+*/
  color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
  /*Internet Explorer 10+*/
  color: #999;
}
.mxw-keywords .right #s_btn {
  outline: none;
  border-width: 0;
  cursor: pointer;
  background: url(../images/icon_search_h.png) no-repeat center #fff;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: .9rem;
  border: 1px solid #e2e2e2;
  border-left: none;
  border-top-right-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}
.mxw-keywords .right #s_btn .icon {
  display: block;
  width: .3333rem;
  height: .3333rem;
  overflow: hidden;
  font-size: 0;
}
.mxw-keywords .right #s_btn .text {
  font-size: 14px;
  padding-left: 5px;
}
/* ==================== 关键词 end ==================== */
/* #endregion */
/* #region ==================== 头部 start ==================== */
header {
  width: 100%;
  z-index: 99;
  transition: all 0.4s;
  position: relative;
}
header .pc-nav .mxw-box {
  overflow: visible;
}
header .pc-nav .welcome {
  background: #f9f9f9;
}
header .pc-nav .welcome .mxw-box {
  font-size: 14px;
  color: #6c6c6c;
  line-height: 34px;
  height: 34px;
}
header .pc-nav .welcome .mxw-box a:hover {
  color: #00a641;
}
header .pc-nav .welcome .left a {
  font-weight: bold;
  color: #00a641;
}
header .pc-nav .welcome .mxw-box .right {
  z-index: 9;
  position: relative;
  background: #00a641;
  color: #fff;
  padding-left: 1rem;
}
header .pc-nav .welcome .mxw-box .right>a {
  z-index: 6;
}
header .pc-nav .welcome .mxw-box .right::after {
  content: "";
  display: block;
  position: absolute;
  width: 2.5167rem;
  height: .5667rem;
  right: -2.5167rem;
  top: 0;
  z-index: 1;
  background: #00a641;
}
header .pc-nav .welcome .mxw-box .right::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: .5667rem solid #00a641;
  border-left: .3333rem solid transparent;
  position: absolute;
  left: -.31rem;
  top: 0;
}
header .pc-nav .welcome .mxw-box .right a:hover {
  color: #fff;
}
header .pc-nav .top {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
header .pc-nav .bottom {
  background-color: #00a641;
}
header .pc-nav .logo {
  position: relative;
  flex-shrink: 0;
}
header .pc-nav .text01 {
  flex-grow: 1;
  color: #040202;
  position: relative;
  margin-left: 30px;
  padding-left: 30px;
}
header .pc-nav .text01:before {
  content: "";
  display: none;
  width: 1px;
  height: 108px;
  background: #ddd;
  position: absolute;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
}
header .pc-nav .text01:before {
  right: auto;
  left: 0;
}
header .pc-nav .text01 .cn {
  font-size: 33px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
}
header .pc-nav .text01 .cn strong {
  color: #00a641;
}
header .pc-nav .text01 .cn02 {
  font-size: .3rem;
  line-height: 1.2;
  color: #00a650;
  font-weight: bold;
}
header .pc-nav .tel {
  margin-right: 0;
  color: #333333;
}
header .pc-nav .tel .icon {
  width: .9rem;
  margin-left: .4667rem;
  flex-shrink: 0;
}
header .pc-nav .tel .desc {
  font-size: .3rem;
  line-height: 1.2;
}
header .pc-nav .tel .desc p {
  margin-bottom: .0833rem;
}
header .pc-nav .tel .desc p:last-child {
  margin-bottom: 0;
}
header .pc-nav .tel .desc strong {
  font-size: .4833rem;
  line-height: 1;
  color: #333333;
}
header .pc-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  flex-grow: 1;    margin-bottom: 0;
}
header .pc-menu>li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  width: 4.1833rem;
}
header .pc-menu>li::after{
  content: "";
  width: 1px;
  height: .2833rem;
  background-color: rgb(255 255 255 / 40%);
}
header .pc-menu>li.active>a,
header .pc-menu>li:hover>a {
  background-color: #163d88;
  color: #fff !important;
}
header .pc-menu>li:last-child {
  padding-right: 0;
}
header .pc-menu>li ul {
  background-color: #fff;
  width: 3.3333rem;
  position: relative;
  display: none;
  transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
}
header .pc-menu>li ul:hover {
  opacity: 1;
  visibility: visible;
}
header .pc-menu>li ul li.active>ul,
header .pc-menu>li ul li:hover>ul {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
header .pc-menu>li ul li a {
  position: relative;
}
header .pc-menu>li ul li a:after {
  content: "";
  display: block;
  width: 80%;
  height: 0.0167rem;
  background-color: #eee;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
header .pc-menu>li ul a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  font-size: 0.2333rem;
  color: #333;
  line-height: 1.2;
  padding: 0.2333rem;
}
header .pc-menu>li>a {
  font-size: 18px;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  position: relative;
  padding-top: .35rem;
  padding-bottom: .35rem;
}
header .pc-menu>li>ul {
  border-top: 0.0167rem solid #ddd;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
header .pc-menu>li>ul>li>a.active,
header .pc-menu>li>ul>li>a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
header .pc-menu>li>ul>li>a.active:after,
header .pc-menu>li>ul>li>a:hover:after {
  display: none;
}
header .pc-menu>li>ul>li>a:last-child:after {
  display: none;
}
header .pc-menu>li>ul>li>ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 0.0167rem solid #ddd;
}
header .pc-menu>li>ul>li>ul>li>ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 0.0167rem solid #ddd;
}
@media screen and (max-width: 1680px) {
  header .welcome .mxw-box,
  header .pc-nav .mxw-box {
    max-width: 96%;
  }
}
@media screen and (max-width: 1430px) {
  header .pc-nav .top {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  header .pc-nav .logo img {
    height:95px;
  }
  header .pc-nav .text01 {
    padding-left: 20px;
    margin-left: 20px;
  }
  header .pc-nav .text01 .cn {
    font-size: 22px;
    margin-bottom: 5px;
  }
  header .pc-nav .text01 .cn02 {
    font-size: 16px;
  }
  header .pc-nav .tel .desc strong {
    font-size: 30px;
  }
  header .pc-menu>li>a {
    font-size: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
@media screen and (max-width: 1200px) {
  header .pc-nav .mxw-box {
    justify-content: space-between;
  }
  header .pc-nav .text01 {
    display: none;
  }
}
/* #endregion ==================== 头部 end ==================== */
/* #region ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
  header {
    z-index: 99999;
  }
  .mxw-mob-nav .head {
    font-size: 0;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    max-width: 750px;
    width: 100%;
    transform: translateX(-50%);
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 99;
    background-color: #fff;
  }
  .mxw-mob-nav .logo {
    display: block;
    flex-shrink: 0;
  }
  .mxw-mob-nav .logo img {
    height: 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: #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 ==================== */
/* #endregion */
/* #region ==================== 轮播图 start ==================== */
.mxw-banner {
  font-size: 0;
  position: relative;
}
.mxw-banner .swiper-slide {
  overflow: hidden;
}
.mxw-banner .swiper-slide img {
  width: 100%;
}
.mxw-banner .swiper-pagination {
  width: 100%;
  max-width: 1680px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 26px;
  right: 50%;
  transform: translateX(50%);
  left: auto;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  opacity: 1;
  margin-left: 15px;
  margin-right: 15px;
  border: 1px solid #0f76dd;
  background: #ffffff85;
  border-radius: 50%;
  position: relative;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: #0f76dd;
  background: #0f76dd;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  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: 0;
}
.mxw-banner .swiper-button-next:after,
.mxw-banner .swiper-button-prev:after {
  font-size: 21px;
  color: #fff;
  font-weight: bold;
}
.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: 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: 0 5px;
    font-size: 14px;
    width: 8px;
    height: 8px;
  }
  .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-size: 18px;
  }
  .mxw-banner .swiper-button-next,
  .mxw-banner .swiper-button-prev {
    display: none;
  }
}
/* ==================== 轮播图 end ==================== */
/* #endregion */
/* #region ==================== 通用标题 start ==================== */
.mxw-title .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mxw-title .text1 {
  font-size: .8rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  font-weight: bold;
  font-size: .5rem;
  color: #222222;
}
.mxw-title .text1 span {
  color: #00a641;
}
.mxw-title .text2 {
  text-transform: uppercase;
  font-size: .2rem;
  line-height: 1.2;
  color: #666666;
  margin-bottom: .5333rem;
}
.mxw-title .text3 {
  font-size: 16px;
  color: #666666;
}
.mxw-process .mxw-title .text2 i {
  font-size: .9833rem;
  font-style: italic;
  font-stretch: normal;
  line-height: 36px;
  color: #00a641;
}
.mxw-title .icon:before,
.mxw-title .icon:after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
}
.mxw-title .icon:before {
  background-color: #00a641;
}
.mxw-title .icon:after {
  background-color: #163d88;
}
@media screen and (max-width: 751px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .mxw-title .desc {
    font-size: 12px;
    padding: 0 20px;
    line-height: 1.8;
    color: #888;
  }
}
.mxw-title {
  overflow: hidden;
  text-align: center;
  margin-bottom: .8333rem;
}
.mxw-title .en {
  font-size: 0.3rem;
  line-height: 1.2;
  font-weight: 200;
  color: #163d88;
  margin-bottom: 0.1rem;
}
.mxw-title .en .text {
  display: inline-block;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mxw-title .en .text:before {
  content: "";
}
.mxw-title .en .text:after {
  content: "";
}
.mxw-title .cn {
  font-weight: bold;
  font-size: .6667rem;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: .25rem;
}
.mxw-title .cn strong {
  color: #00a641;
}
.mxw-title .desc {
  font-size: 0.3rem;
  color: #888888;
  line-height: 1.2;
}
.mxw-box .mwx-headtxt.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333333;
  position: relative;
  margin-bottom: 1rem;
}
.mxw-box .mwx-headtxt.head:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0167rem;
  position: absolute;
  top: 50%;
  left: 0;
  /* background-color: #00a641; */
}
.mxw-box .mwx-headtxt.head .text,
.mxw-box .mwx-headtxt.head .mxw-more {
  position: relative;
  z-index: 9;
}
.mxw-box .mwx-headtxt.head .text {
  font-size: .5333rem;
  font-weight: bold;
  line-height: 1;
  padding-right: 0.3333rem;
  padding-left: 15px;
  border-left: 8px solid #00a641;
}
.mxw-box .mwx-headtxt.head .text span {
  font-size: 18px;
  color: #999999;
  padding-left: 10px;
  font-weight: initial;
}
.mxw-box .mwx-headtxt.head .mwmsolid {
  flex: 1;
}
.mxw-box .mwx-headtxt.head .mwmsolid::after {
  content: "";
  display: block;
  width: 95%;
  height: 1px;
  background: #d5d5d5;
}
.mxw-box .mwx-headtxt.head .mwmsolid::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #d5d5d5;
  margin-top: 10px;
  margin-bottom: 3px;
}
.mxw-box .mwx-headtxt.head .catebox {
  display: flex;
  flex-wrap: nowrap;
}
.mxw-box .mwx-headtxt.head .mxw-more {
  border-radius:0.35rem;
	border:solid 1px #00a641;
	flex-shrink:0;
	padding:0.13333333333333333rem 0.95rem 0.13333333333333333rem 0.6166666666666667rem;
	margin-left:0.4166666666666667rem;
}
.mxw-box .mwx-headtxt.head .mxw-more.active {
  background: #00a641;
  color: #fff;
}
.mxw-box .mwx-headtxt.head .mxw-more::after {
  content: "";
  display: block;
  background: url(../images/right1black.png) no-repeat center center;
  background-size: 100%;
  position: absolute;
  right: 33px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 10px;
}
.mxw-box .mwx-headtxt.head .mxw-more.active::after {
  background: url(../images/right1.png) no-repeat center center;
}
@media screen and (max-width: 751px) {
  .mxw-title {
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .mxw-title .cn {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .mxw-title .en {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .mxw-title .desc {
    font-size: 12px;
    line-height: 1.6;
  }
  .mxw-box .mwx-headtxt.head {
    flex-flow: column;
    margin-bottom: 20px;
    align-items: flex-start;
  }
  .mxw-box .mwx-headtxt.head .text {
    font-size: 22px;
  }
  .mxw-box .mwx-headtxt.head .text span {
    font-size: 14px;
  }
  .mxw-box .mwx-headtxt.head .catebox {}
  .mxw-box .mwx-headtxt.head .mxw-more {
    margin-left: 10px;
    padding: 6px 17px 5px 17px;
  }
  .mxw-box .mwx-headtxt.head .mxw-more:first-child {
    margin-left: 0;
  }
  .mxw-box .mwx-headtxt.head .mxw-more::after {
    display: none;
  }
}
/* ==================== 通用标题 end ==================== */
/* #endregion */
/* #region */
/* 容器大小 */
.mxw-box {
  margin: 0 auto;
  font-size: 18px;
  color: #333;
  width: 86%;
  max-width: 1600px;
  min-width: 20rem;
}
/* 内页 banner */
.ny-banner img {
  width: 100%;
}
/* #endregion */
/* #region ==================== 页面自定义样式 start ==================== */
.more a {
  font-size: .2667rem;
  background-color: #00a641;
  display: inline-block;
  padding: 0.2rem 1.0166666666666666rem 0.2rem 0.5833333333333334rem;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 1680px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px !important;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-box {
    max-width: 86%;
  }
}
@media screen and (min-width: 751px) {
  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }
  .mxw-ny-box {
    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: 0;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 751px) {
  body {
    margin-top: 60px;
  }
  html {
    font-size: 50px;
  }
  .m-none,
  .pc-nav {
    display: none !important;
  }
  .mxw-box {
    padding: 20px 0;
    max-width: 100%;
    min-width: auto;
    width: 95%;
  }
  .mxw-section {
    padding-left: 0;
    padding-right: 0;
  }
  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: #fff;
}
.product-detail-tab .product-detail-tabli li {
  background: #00a641;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}
.product-detail-tabcon {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
}
.page-banner .nybt {
  display: none;
}
.ueditor_baidumap {
  width: 100%;
}
/* 相册调整 */
.xypg-album-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
}
.xypg-album-list li {
  padding: 10px;
  border: 1px solid #eaeaea;
  padding-bottom: 0;
  margin: 0;
  width: 32%;
}
.xypg-album-list li:nth-child(3n-1) {
  margin-left: 2%;
  margin-right: 2%;
}
.xypg-album-list li:nth-child(3)~li {
  margin-top: 2%;
}
.xypg-album-list li h3 {
  position: static;
  color: #666;
  font-size: 16px;
  background: none;
  height: 40px;
  line-height: 40px;
  margin-top: 10px;
}
@media screen and (min-width: 751px) {
  /* .page-wrap{padding-top:30px;} */
  .easyzoom-flyout img {
    max-width: inherit;
  }
  .container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
  }
}
@media screen and (max-width: 751px) {
  body {
    padding-bottom: 0;
    padding-top: 0;
    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: 0;
  }
  .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: 0;
  }
  .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: 0 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: 0;
  }
  .xypg-album-list li:nth-child(2)~li {
    margin-top: 2%;
  }
}
/* ==================== 通用细节调整 end ==================== */
/* #endregion */
/* #region ==================== 搜索 start ==================== */
.mxw-keywords .tel {
  color: #fff;
  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: #00a641;
}
@media screen and (max-width:1680px) {
  .mxw-keywords .tel {
    margin-left: 0;
    padding-left: 0;
  }
  .mxw-keywords .tel p {
    font-size: 16px;
  }
  .mxw-keywords .tel strong {
    font-size: 26px;
    margin-top: 5px;
  }
}
/* #endregion */
/* #region ==================== 服务系统 start ==================== */
.mxw-system {
  padding-top: 1.1667rem;
  padding-bottom: 1.7667rem;
}
.mxw-system .body {
  overflow: hidden;
}
.mxw-system .swiper-pagination {
  width: 100%;
  max-width: 28rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateX(0);
  padding-left: 0.95rem;
}
.mxw-system .swiper-pagination .swiper-pagination-bullet {
  width: 0.26666666666666666rem;
  height: 0.26666666666666666rem;
  opacity: 1;
  margin-left: 0.11666666666666667rem;
  margin-right: 0.11666666666666667rem;
  border: 1px solid #00a641;
  background: none;
  border-radius: 50%;
  position: relative;
}
.mxw-system .swiper-pagination .swiper-pagination-bullet:first-child{
  margin-left: 0;
}
.mxw-system .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: #00a641;
  background: #00a641;
}
.mxw-system .swiper-button-next,
.mxw-system .swiper-button-prev {
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  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: 0;
}
.mxw-system .swiper-button-next:after,
.mxw-system .swiper-button-prev:after {
  font-size: 0.35rem;
  color: #fff;
  font-weight: bold;
}
.mxw-system .swiper-button-next {
  right: 0.6666666666666666rem;
}
.mxw-system .swiper-button-prev {
  left: 0.6666666666666666rem;
}
.mxw-system .body a.item {
  display: flex;
  align-items: flex-start;
}
.mxw-system .body .info {
  line-height: 1;
  padding-left: 0.95rem;
  width: 47%;
}
.mxw-system .body .info .cn {
  font-size: 0.5666666666666667rem;
  font-weight: bold;
  color: #00a641;
  padding-top: 1.1666666666666667rem;
  padding-bottom: 0.2833333333333333rem;
  line-height: 1;
}
.mxw-system .body .info .en {
  font-size: 0.23333333333333334rem;
  color: #00a641;
}
.mxw-system .body .info .icon {
  height: 0.016666666666666666rem;
  background-color: #e3e3e3;
  width: 100%;
  margin: 0.5666666666666667rem 0 0.55rem 0;
}
.mxw-system .body .info .desc {
  font-size: 0.3rem;
  color: #00a641;
  line-height: 0.55rem;
  padding-right: 0.16666666666666666rem;
}
.mxw-system .body .info .more {
  background-color: #00a641;
  width: 2.85rem;
  text-align: center;
  color: #fff;
  margin-top: .98333rem;
  padding: 0.2334rem 0.5834rem 0.25rem 0.6rem;
  display: flex;
  align-items: center;
}
.mxw-system .body .info .more .systemimg {
  padding-right: 0.1667rem;
}
.mxw-system .body .image {
  flex: 1;
  margin-left: 1.567rem;
  width: 13.2334rem;
}
.mxw-system .body .image img {
  width: auto;
}
@media screen and (max-width:1700px) {
  .mxw-system .body .info .more {
    margin-top: .2rem;
    margin-bottom:.2rem;
    font-size: .2833rem;
    padding-left:.5rem	
  }
}
@media screen and (max-width:751px) {
  .mxw-system {
    padding: 20px;
  }
  .mxw-system .body .info {
    width: 100%;
    padding-left: 0;
    order: 2;
  }
  .mxw-system .body .image {
    width: 100%;
    margin-left: 0;
    order: 1;
  }
  .mxw-system .body a.item {
    flex-flow: column;
  }
  .mxw-system .body .info .cn {
    font-size: 26px;
    padding-top: 17px;
  }
  .mxw-system .body .info .icon {
    margin: 17px 0;
  }
  .mxw-system .body .info .more {
    margin-top: 10px;
  }
  .mxw-system .swiper-pagination {
    bottom: 0;
    justify-content: flex-end;
  }
}
/* #endregion ==================== 服务系统 end ==================== */
/* #region ==================== 产品中心 start ==================== */
.mxw-product {
  background: #f8f8f8;
}
.mxw-product-box {
  overflow: hidden;
}
.mxw-product-box> .swiper-wrapper   .swiper-slide.productitem {
  width: 375px;
  opacity: 0;
}
.mxw-product-box> .swiper-wrapper  .swiper-slide.swiper-slide-active{
 opacity:1;
}
.mxw-product-box .text1 {
  text-align: center;
  background-color: #f1f1f1;
  padding: .3rem 0;
  color: #333333;
  transition: .4s;
}
.mxw-product-box a.swiper-slide:hover .text1 {
  background-color: #00a641;
  color: #fff;
}
@media screen and (min-width: 751px) {
  .mxw-product {
    padding-top: 1.3333rem;
    padding-bottom: 1.5rem;
  }
  .product-swiper .swiper-slide {
    max-width: 375px;
    margin-right: 35px;
  }
}
@media screen and (max-width: 751px) {
  .mxw-product .head {
    margin-bottom: 20px;
  }
  .mxw-product .head .text {
    font-size: 18px;
  }
  .mxw-product .head .mxw-more {
    font-size: 14px;
  }
}
/* #endregion ==================== 产品中心 end ==================== */
/* #region ==================== 核心优势 start ==================== */
.mxw-advantage {
  padding-bottom: .85rem;
}
.mxw-advantage .mxw-title{
  margin-bottom: .1667rem;
}
.mxw-advantage .item {
  margin-bottom: .7167rem;
}
.mxw-advantage .item:last-child {
  margin-bottom: 0rem;
  align-items: flex-start;
}
.mxw-advantage .image {
  position: relative;
  z-index: 9;
}
.mxw-advantage .info .head {
  display: flex;
  align-items: flex-start;

}
.mxw-advantage .info .number {
  background: url(../images/advicon1.png) no-repeat center;
  background-size: 100%;
  width: 1.167rem;
  height: 1.5rem;
  font-size: 0.6667rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.5rem;
  text-align: center;
  z-index: 9;
  flex-shrink: 0;
}
.mxw-advantage .info .number span {
  display: block;
  z-index: 9999;
  position: relative;
}
.mxw-advantage .info .title {
  width: 100%;
  margin-bottom: .5833rem;
  margin-left: -0.3333rem;
  padding-left: 1rem;
}
.mxw-advantage .info .title::after {
  content: "";
  background: url(../images/advhr.png);
  background-size: 100%;
  width: 100%;
  height: 6px;
  display: block;
  margin-top: .25rem;
}
.mxw-advantage .info .cn {
  font-size: .5rem;
  line-height: 1.2;
  color: #00a641;
  margin-bottom: 0.1667rem;
  font-weight: bold;
}
.mxw-advantage .info .en {
  font-size: .4rem;
  color: #333333;
  text-transform: uppercase;
}
.mxw-advantage .info .desc {
  text-align: justify;
  padding-left: 1.9rem;
  font-size: 0.3rem;
  color: #555;
}
.mxw-advantage .info .desc p {
  position: relative;
  margin-bottom: .4167rem;
  line-height: 1.5;
}
.mxw-advantage .info .desc p:last-child {
  margin-bottom: .4167rem;
}
.mxw-advantage .info .desc p::before {
  content: "";
  display: block;
  background-size: 100%;
  color: #163d88;
  width: 0.1667rem;
  height: .1667rem;
  position: absolute;
  background: #163d88;
  border-radius: 50%;
  bottom: 0;
  left: -1.4rem;
  top: -0.05rem;
  transform: translateX(0);
  z-index: 999;
}
.mxw-advantage .info .desc p::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height:100px;
  background: #dcdcdc;
  bottom: 0;
  left: -1.3167rem;
  top: -0.1667rem;
  transform: translateY(-86%);
  z-index: 1;
}
@media screen and (min-width: 1600px){
  .mxw-advantage .info .desc p::before{
  }
}
@media screen and (min-width: 751px) {
  .mxw-advantage .mxw-box {
    padding-top: 1.1rem;
  }
  .mxw-advantage .image {
    width: 13.0333rem;
    flex-shrink: 0;
  }
  .mxw-advantage .item {
    margin: 0 auto;
    font-size: 18px;
    color: #333;
    width: 86%;
    max-width: 1600px;
  }
  .mxw-advantage .item {
    display: flex;
    align-items: center;
    padding: .667rem 0;
  }
  .mxw-advantage .itembox:nth-child(2) {
    background: url(../images/advbg2.jpg) no-repeat center center;
    background-size: cover;
    max-width: 100%;
  }
  .mxw-advantage .itembox:nth-child(2n-1) .image {
    margin-right: 1rem;
  }
  .mxw-advantage .itembox:nth-child(2n) .image {
    margin-left: 1rem;
    order: 2;
  }
}
@media screen and (max-width: 751px) {
  .mxw-advantage {
    padding-bottom: 20px;
  }
  .mxw-advantage .mxw-title {
    margin-bottom: 0;
  }
  .mxw-advantage .mxw-title .text01 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .mxw-advantage .mxw-title .text02 {
    font-size: 12px;
    line-height: 1.8;
  }
  .mxw-advantage .image {
    margin-bottom: 30px;
  }
  .mxw-advantage .info .number {
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    width: 40px;
    background-size: contain;
  }
  .mxw-advantage .info .cn {
    font-size: 16px;
    font-weight: bold;
  }
  .mxw-advantage .info .en {
    font-size: 12px;
  }
  .mxw-advantage .info .title {
    padding-left: 30px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .mxw-advantage .info .desc {
    padding-left: 30px;
    font-size: 14px;
  }
  .mxw-advantage .info .desc p:before {
    left: -15px;
    width: 10px;
    height: 10px;
  }
  .mxw-advantage .info .desc p {
    margin-bottom: 10px;
  }
  .mxw-advantage .info .desc p:last-child {
    margin-bottom: 0;
  }
  .mxw-advantage .item {
    margin-bottom: 20px;
    width: 95%;
    margin: auto;
  }
}
/* #endregion ==================== 核心优势 end ==================== */
/*流程开始*/
.process {
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
  padding-top: 30px;
}
.process_box {
  width: 100%;
  max-width: 1600px;
  height: 320px;
  margin: 0 auto;
}
.process_tl {
  position: relative;
}
.process_tl p {
  font-size: 24px;
  color: #00923f;
  text-align: center;
  letter-spacing: 10px;
  margin-top: 50px;
}
.process_tl p:before {
  content: '';
  width: 20px;
  height: 2px;
  position: absolute;
  top: 14px;
  left: 440px;
  background: #00923f;
}
.process_tl p:after {
  content: '';
  width: 20px;
  height: 2px;
  position: absolute;
  top: 14px;
  right: 452px;
  background: #00923f;
}
.process_tl span {
  display: block;
  font-size: 14px;
  color: #009c4b;
  letter-spacing: 10px;
  text-align: center;
  margin-top: 30px;
}
.process_ct {
  width: 1600px;
  height: 80px;
  float: left;
  overflow: hidden;
}
.process_ct_li {
  width: 200px;
  height: 80px;
  overflow: hidden;
  box-sizing: border-box;
  float: left;
  margin-right: 22px;
  position: relative;
  background: #00923f;
  display: flex;
  justify-content: center;
}
.process_ct_li p {
  font-family: impact;
  font-size: 80px;
  color: #ffffff;
  opacity: 0.2;
  text-align: center;
  line-height: 80px;
  letter-spacing: 10px;
}
.process_ct_li span {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  position: absolute;
  top: 50px;
}
.process_ct_li:hover {
  background: #009C4B;
}
.process_ct li img {
  position: absolute;
  left: 82px;
  top: 14px;
}
.owl-stage{
  display: flex;
}
/*流程结束*/
/* #region ==================== 工程案例 start ==================== */
.mxw-cases {
  background: url(../images/casesbg.jpg) no-repeat center top;
  background-size: auto 8rem;
}
.mxw-cases .mxw-title .en .text {
  color: #fff;
}
.mxw-cases .mxw-title .cn strong {
  color: #fff;
}
.mxw-cases .mxw-title .desc {
  color: #fff;
}
.mxw-cases .mxw-title .text1:after {
  background-color: #fff;
}
.mxw-cases .mxw-casesbox {
  overflow: hidden;
  margin-top: .9333rem;
}
.mxw-cases .mxw-casesbox .body {
  padding-bottom: 1rem;
}
.mxw-cases .mxw-casesbox .body>.swiper-container {
  overflow: inherit;
}
.mxw-cases .mxw-casesbox .swiper-wrapper>.body:not(.swiper-slide-active) {
  opacity: 0;
}
.mxw-cases .mxw-casesbox .body a {
  display: block;
  background: #fff;
  padding: .2333rem;
  box-shadow: 0px 3px 32px 0px rgba(211, 211, 211, 0.52);
}
.mxw-cases .mxw-casesbox .body a.swiper-slide {
  width: 6.3333rem;
  margin-right: .4333rem;
}
.mxw-cases .mxw-cate-header .mxw-cate {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.mxw-cases .mxw-cate .item {
    border-radius: .5rem;
    border: solid 1px #00a641;
    flex-shrink: 0;
    padding: .1667rem;
    position: relative;
    background: #fff;
    font-size: 0.2667rem;
    text-align: center;
    justify-content: center;
}
.mxw-cases .mxw-cate .item.active {
  color: #00a641;
}
.mxw-cases .mxw-cate .item.active::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-30%, 0);
  z-index: 3;
  border-top: .2833rem solid rgb(255 255 255);
  border-right: .2833rem solid transparent;
  border-left: .2833rem solid transparent;
  box-sizing: content-box;
  width: 0;
  height: 0;
}
.mxw-cases .mxw-cate .item::after {
  content: "";
  display: block;
  background: url(../images/right1black.png) no-repeat center center;
  background-size: 100%;
  position: absolute;
  right: 32px;
  transform: translate(-100%, 0);
  width: 14px;
  height: 10px;
  display:none;
}
.mxw-cases .mxw-cate .item.active::after {
  background: url(../images/right2.png) no-repeat center center;
}
.mxw-cases .cases-swiper .swiper-slide {
  position: relative;
  width: 380px;
}
.mxw-cases .name {
  width: 100%;
  color: #333333;
  text-align: center;
  font-size: .3rem;
  padding: .6rem 0 .25rem 0;
}
.mxw-cases .desc {
  font-size: 16px;
  color: #666666;
  line-height: 2;
  margin-bottom: .1667rem;
}
.mxw-cases a:hover .name {
  color: #00a641;
  font-weight: bold;
}
.mxw-cases a:hover .desc {
  color: #00a641;
}
.mxw-cases .swiper-pagination {
  width: 100%;
  max-width: 1680px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  left: auto;
}
.mxw-cases .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  opacity: 1;
  margin-left: 15px;
  margin-right: 15px;
  border: 1px solid #00a641;
  background: none;
  border-radius: 50%;
  position: relative;
}
.mxw-cases .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: #00a641;
  background: #00a641;
}
.mxw-cases .swiper-button-next,
.mxw-cases .swiper-button-prev {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  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: 0;
}
.mxw-cases .swiper-button-next:after,
.mxw-cases .swiper-button-prev:after {
  font-size: 21px;
  color: #fff;
  font-weight: bold;
}
.mxw-cases .swiper-button-next {
  right: 40px;
}
.mxw-cases .swiper-button-prev {
  left: 40px;
}
.mxw-cases .banner-swiper {
  --swiper-navigation-color: #fff;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 24px;
  /* 设置按钮大小 */
}
@media screen and (min-width: 751px) {
  .mxw-cases .mxw-box {
    padding-top: .8333rem;
    padding-bottom: .8333rem;
  }
  .mxw-cases .team-swiper .swiper-slide {
    max-width: 6rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-cases {
    background-size: auto 180px;
  }
  .mxw-cases .name {
    font-size: 12px;
    height: auto;
    line-height: inherit;
    padding: 10px 12px;
  }
  .mxw-cases .desc {
    padding-bottom: 0;
  }
  .mxw-cases .mxw-cate .item {
    padding: 10px 0;
    justify-content: center;
    margin-left: 1%;
    margin-top: 2%;
  }
  .mxw-cases .mxw-cate .item:nth-child(3n-2) {
    margin-left: 0
  }
  .mxw-cases .mxw-cate .item.active::before,
  .mxw-cases .mxw-cate .item::before {
    display: none;
  }
  .mxw-cases .mxw-cate .item.active::after,
  .mxw-cases .mxw-cate .item::after {
    display: none;
  }
}
/* #endregion ==================== 工程案例 end ==================== */
/* #region ==================== 合作伙伴 start ====================  */
.mxw-partner .mxw-partner-box {
  overflow: hidden;
}
.mxw-partner .item-wrap {
  transform: translateX(0);
  display: flex;
  align-items: stretch;
  width: auto;
}
.mxw-partner .item-wrap .item-content {
  flex-shrink: 0;
  margin-right: 2%;
  flex-wrap: nowrap;
}
.mxw-partner .item-wrap .item-content>a {
  display: block;
  flex-shrink: 0;
  width: 247px;
  margin-right: 20px;
}
.mxw-partner .item-wrap .item-content>a .parimg {
  border: solid 3px #eeeeee;
  padding: 15px 0;
  height: 0;
  position: relative;
  padding-bottom: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mxw-partner .item-wrap .item-content>a .partxt {
  text-align: center;
  margin: 20px 0;
  color: #333333;
  transition: .4s;
}
.mxw-partner .item-wrap .item-content>a:hover .partxt {
  color: #00a641;
  font-weight: bold;
  transform: translateY(-5px);
}
.mxw-partner .u-row-6>.u-col:nth-child(6)~.u-col {
  margin-top: 0;
}
.mxw-partner .item-wrap .item-content>a.mxw-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.mxw-partner .mxw-box .mwx-headtxt.head .mxw-more {
  border-radius:0.35rem;
  font-size: .2333rem;
	border:solid 1px #00a641;
	flex-shrink:0;
	padding:0.1rem .8333rem 0.1rem .3333rem;
	margin-left:.4167rem;
}
@media screen and (max-width:751px) {
  .mxw-partner .mxw-box .mwx-headtxt.head .catebox {
    display: none;
  }
}
/* #endregion ==================== 合作伙伴 end ====================  */
/* #region ==================== 关于我们 start ==================== */
.mxw-about {
  background: #f9f9f9;
}
.mxw-about>.mxw-box {
  display: flex;
  align-items: center;
}
.mxw-about .mxw-title {
	text-align:left;
	margin-top:0.3333333333333333rem;
	margin-bottom:0.6666666666666666rem;
}
.mxw-about .mxw-title .icon {
	justify-content:flex-start;
}
.mxw-about .info {
	position:relative;
}
.mxw-about .info .desc {
	font-size:0.26666666666666666rem;
	color:#333;
	line-height:2;
	text-align:justify;
	margin-bottom:0.6rem;
}
.mxw-about .info .desc a {
	color:#00a641;
}
.mxw-about .info .itembox {
	display:flex;
	align-items:center;
	box-shadow:0 0 0.1667rem -0.0333rem rgba(0,0,0,0.02);
	border-radius:1.6667rem;
	background-color:rgb(255 255 255 / 90%);
	position:absolute;
	width:120%;
	left:-20%;
}
.mxw-about .info .item {
	display:block;
	width:33%;
	position:relative;
	text-align:center;
	padding-top:0.5rem;
	padding-bottom:0.5rem;
}
.mxw-about .info .item:hover .text {
	color:#1867b2;
}
.mxw-about .info .item:last-child:after {
	display:none;
}
.mxw-about .info .item .icon {
	width:0.6667rem;
	margin-bottom:0.1667rem;
}
.mxw-about .info .item:after {
	content:"";
	display:block;
	width:0.0167rem;
	height:0.6667rem;
	position:absolute;
	right:0;
	top:50%;
	transform:translateY(-50%);
}
.mxw-about .info .item .text {
	font-size:0.23333333333333334rem;
	color:#666;
	line-height:1.2;
	font-weight:bold;
}
.mxw-about .info .item .textbold {
	font-size:0.8rem;
	color:#00a641;
	font-weight:bold;
}
@media screen and (min-width: 751px) {
  .mxw-about .mxw-box {
    padding-top: 1.1333rem;
    padding-bottom: 1.1167rem;
    display: flex;
    align-items: flex-start;
  }
  .mxw-about .image {
    width: 13.7333rem;
    flex-shrink: 0;
    margin-right: 1.1rem;
  }
}
@media screen and (max-width: 1780px){
  .mxw-about .info .item {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}
}
@media screen and (max-width: 1680px){
  .mxw-about .mxw-title{
    margin-top: 0.2rem;
    margin-bottom: 0.3rem;
  }
  .mxw-about .info .desc{
    margin-bottom: .4rem;
  }
  .mxw-about .info .item {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}
}
@media screen and (max-width: 751px) {
  .mxw-about>.mxw-box {
    flex-wrap: wrap;
  }
  .mxw-about .mxw-title {
    margin-bottom: 20px;
  }
  .mxw-about .image {
    order: 2;
    margin-top: 20px;
  }
  .mxw-about .info .desc {
    margin-bottom: 0;
    padding: 0 20px;
    width: 100%;
  }
  .mxw-about .info .itembox {
    margin-top: 20px;
    position: static;
    width: 100%;
  }
  .mxw-about .info .item {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mxw-about .info .item .text {
    font-size: 12px;
  }
  .mxw-about .info .item .textbold {
    font-size: .5rem;
  }
  .mxw-about .info .itembox {
    border-radius: 10px;
  }
}
/* #endregion ==================== 关于我们 end ==================== */
/* #region ==================== 资质证书 start ====================  */
.mxw-album {
  background: #ffffff;
}
.mxw-album .body {
  margin: 0 auto;
  position: relative;
}
.mxw-album .album-swiper {
  overflow: visible;
}
.mxw-album .album-swiper .swiper-slide {
  width: 235px;
  margin-right: 38px;
  text-align: center;
}
.mxw-album .album-swiper .albumcon {
  border: 1px solid #e3e3e3;
}
.mxw-album .album-swiper .albumcon a:hover{
  color: #00a641;
}
.mxw-album .album-swiper .albumcon .add_title {
  padding-bottom: 16px;
}
.mxw-album .album-swiper .swiper-slide-prev,
.mxw-album .album-swiper .swiper-slide-next {
  transition: all 0.4s;
}
.mxw-album .mxw-swiper-btn.mxw-swiper-prev {
  left: -26px;
  transform: translateY(-50%) rotateY(-180deg);
}
.mxw-album .mxw-swiper-btn.mxw-swiper-next {
  right: -26px;
}
.mxw-album .album-swiper .swiper-slide .mxw-image {
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 25px;
  padding-bottom: 15px;
}
.mxw-album .album-swiper .swiper-slide .mxw-image img {
  height: 100%;
}
.mxw-album .mxw-albumtbox .swiper-wrapper>.body:not(.swiper-slide-active) {
  opacity: 0;
}
.mxw-album .title {
  overflow: hidden;
  margin-bottom: 0.3333rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: .4167rem;
}
.mxw-album .title .title-content {
  position: relative;
  margin: 0 12px;
  width: 4.0667rem;
  justify-content: center;
  padding: 0.1667rem;
  display: flex;
  align-items: center;
  border-radius: 0.1rem;
  background-color: #163d88;
}
.mxw-album .title .title-content.active {
  background: #00a641;
}
.mxw-album .title .title-content.active::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-30%, 0);
  z-index: 3;
  border-top: .2833rem solid rgb(0 166 65);
  border-right: .2833rem solid transparent;
  border-left: .2833rem solid transparent;
  box-sizing: content-box;
  width: 0;
  height: 0;
}
.mxw-album .title .title-content .icon {
  width: 0.6667rem;
  margin-right: 0.3333rem;
}
.mxw-album .title .title-content .info {
  text-align: left;
}
.mxw-album .title .title-content .info .text1 {
  font-size: 0.3333rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
}
.mxw-album .title .title-content .info .text2 {
  font-size: 0.2rem;
  color: rgba(255, 255, 255, 0.5);
}
.mxw-albumtbox {
  overflow: hidden;
}
.mxw-album {
  overflow: hidden;
}
.mxw-albumtbox>.swiper-wrapper .body.swiper-slide-active {
  z-index: 9;
}
.mxw-albumtbox>.swiper-wrapper .body.swiper-slide-active {
  display: block;
}
@media screen and (min-width: 751px) {
  .mxw-album .mxw-box {
    padding-top: .5rem;
    padding-bottom: .5833rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-album .mxw-swiper-btn {
    width: 30px;
    height: 30px;
  }
  .mxw-album .album-swiper .swiper-slide {
    width: 49%;
    overflow: initial;
  }
  .mxw-album .mxw-swiper-btn.mxw-swiper-prev {
    left: -15px;
  }
  .mxw-album .mxw-swiper-btn.mxw-swiper-next {
    right: -15px;
  }
  .mxw-album .body {
    position: static
  }
}
/* #endregion ==================== 资质证书 end ====================  */
/* #region ==================== 新闻资讯 start ==================== */
.mxw-news .body {
  align-items: stretch;
}
.mxw-news .left {
  margin-right: 1.3333rem;
  min-width: 0;
  flex-grow: 1;
  border: solid 1px #dcdcdc;
  border-top: 0;
}
.mxw-news .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 1.1333rem;
  line-height: 1.0667rem;
  border: 0.0167rem solid #dcdcdc;
  margin-bottom: 0.45rem;
  background-color: #f6f6f6;
}
.mxw-news .headtit {
  display: flex;
  flex-wrap: wrap;
}
.mxw-news .head .title {
  font-size: .4333rem;
  font-weight: bold;
  color: #333;
  flex-grow: 1;
  padding: 0 .15rem;
  margin-right: .5rem;
  padding-left: .5rem;
}
.mxw-news .head .title.active::after {
  content: "";
  display: block;
  width: 120%;
  position: relative;
  left: -10%;
  height: 4px;
  background: #00a641;
  transition: .4s;
}
.mxw-news .head .more {
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  background: #00a641;
  padding: 0.4166666666666667rem 0.8333333333333334rem 0.4rem 0.3333333333333333rem;
}
.mxw-news .head .more::after {
  content: "";
  display: block;
  position: absolute;
  right: 21px;
  top: 50%;
  transform: translateY(-35%);
  width: 14px;
  height: 10px;
  background: url(../images/right1.png) no-repeat center center;
  background-size: 100%;
}
.mxw-news .newscon {
  overflow: hidden;
  padding: 0 .3833rem;
}
.mxw-news .first-item {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 0.0167rem dashed #b1b1b1;
  margin-bottom: 0.6667rem;
}
.mxw-news a.first-item:hover .title{
  color: #00a641;
}
.mxw-news .first-item .image {
  flex-shrink: 0;
  width: 4.8667rem;
  height: 2.8333rem;
  margin-right: 0.5833rem;
}
.mxw-news .first-item .info {
  margin-right: 0.75rem;
  min-width: 0;
  flex-grow: 1;
}
.mxw-news .first-item .title {
  font-size: 0.3rem;
  line-height: 1.2;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.3333rem;
}
.mxw-news .first-item .desc {
  font-size: .2333rem;
  text-align: justify;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.3333rem;
}
.mxw-news .first-item .more {
  width: 2.2167rem;
  height: 0.5667rem;
  background-color: #00a641;
  line-height: 0.5667rem;
  font-size: 0.2333rem;
  padding-left: .3333rem;
  color: #fff;
  border-radius: .3rem;
  position: relative;
  transition: .4s;
}
.mxw-news a.first-item:hover .more{
  color: #00a641;
  background: #fff;
  border:1px solid #00a641;
}
.mxw-news .first-item .more::after {
  content: "";
  display: block;
  position: absolute;
  right: 21px;
  top: 50%;
  transform: translateY(-35%);
  width: 14px;
  height: 10px;
  background: url(../images/right1.png) no-repeat center center;
  background-size: 100%;
  transition: .4s;
}
.mxw-news a.first-item:hover .more::after{
  background: url(../images/right2.png) no-repeat center center;
}
.mxw-news .first-item .time {
  flex-shrink: 0;
  border-left: 0.0167rem solid #dcdcdc;
  padding-left: 0.4167rem;
  text-align: center;
  color: #333;
  font-weight: bold;
}
.mxw-news .first-item .time .day {
  font-size: 0.6rem;
  line-height: 1;
  margin-bottom: 0.3333rem;
}
.mxw-news .first-item .time .year {
  font-size: 0.2333rem;
  line-height: 1.2;
}
.mxw-news .left .bottom {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: .5rem;
}
.mxw-news .left .item {
  width: 46%; display: flex;
  align-items: center;  transition: .4s;
  margin-bottom: 0.3333rem;
}
.mxw-news .item:first-child {
  margin-right: 8%;
}
.mxw-news .newscon .item .title {
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.2;
  width: 100%;
}
.mxw-news .left .item:hover{
  color: #00a641;
  transform: translateX(0.1667rem);
}
.mxw-news .newscon .item:before {
  content: "";
  width: .15rem;
  height: .15rem;
  margin-right: .1667rem;
  border-radius: 100%;
  flex-shrink: 0;
  background: url(../images/newsicon.png) no-repeat center center;
  background-size: 100%;
}
.mxw-news .item .desc {
  font-size: .2333rem;
  text-align: justify;
  color: #666;
  line-height: 1.8;
  height: 3.6em;
}
.mxw-news .right {
  width: 35.8%;
  flex-shrink: 0;
  border: solid 1px #dcdcdc;
  border-top: 0;
}
.mxw-news .list {
  padding: 0 .4667rem;
}
.mxw-news .right .item {
  display: block;
  padding-bottom: .5rem;
  border-bottom: 0.0167rem solid #ddd;
  margin-bottom: 0.5rem;
}
.mxw-news .right .item:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
.mxw-news .right .top {
  display: flex;
  align-items: center;
  margin-bottom: 0.1667rem;
}
.mxw-news .right .top .icon {
  background: #163d88;
}
.mxw-news .right .news-swiper2 {
  height: 8.6167rem;
}
.mxw-news .right .icon {
  border-radius: 50%;
  width: .4rem;
  height: .4rem;
  line-height: .4rem;
  text-align: center;
  margin-right: .2rem;
  font-size: 0.2167rem;
  color: #fff;
  flex-shrink: 0;
}
.mxw-news .right .title {
  font-size: .4333rem;
  color: #333;
  font-weight: bold;
}
.mxw-news .right .top .title{
  font-size: .3rem;
}
.mxw-news .right .bottom {
  display: flex;
  align-items: flex-start;
}
.mxw-news .right .bottom .icon {
  background: #00a641;
}
.mxw-news .right .desc {
  font-size: .2333rem;
  color: #999999;
  line-height: 1.8;
  text-align: justify;
  height: 5em;
}
.mxw-news .mxw-more {
  background-color: #00a641;
  position: relative;
}
header .pc-menu>li:last-child::after{
display:none;
}
@media screen and (min-width: 751px) {
  .mxw-news .mxw-box {
    padding-top: .5rem;
    padding-bottom: 1.25rem;
  }
  .mxw-news .mxw-title .bg-text {
    width: 9.45rem;
  }
  .mxw-news .list-item:hover {
    transform: translateX(-0.3333rem);
  }
  .mxw-news .right {
    min-width: 0;
    flex-grow: 1;
  }
  .mxw-news .right .item {
    transition: all 0.4s;
  }
  .mxw-news .right .item:hover {
    transform: translateX(0.1667rem);
  }
}
@media screen and (max-width: 751px) {
  .mxw-news .body {
    flex-wrap: wrap;
  }
  .mxw-news .mxw-title .bg-text {
    width: 283px;
  }
  .mxw-news .left {
    width: 100%;
    margin-right: 0;
  }
  .mxw-news .head {
    margin-bottom: .25rem;
  }
  .mxw-news .head:before {
    width: 4px;
    margin-right: .1667rem;
    height: .3333rem;
  }
  .mxw-news .head .title {
    font-size: .2667rem;
  }
  .mxw-news .head .more {
    font-size: .2rem;
  }
  .mxw-news .first-item {
    flex-wrap: wrap;
    padding-bottom: .5rem;
    margin-bottom: .5rem;
  }
  .mxw-news .first-item .image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .mxw-news .first-item .info {
    width: 100%;
    margin-right: 0;
  }
  .mxw-news .first-item .title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .mxw-news .first-item .desc {
    margin-bottom: 20px;
  }
  .mxw-news .first-item .more {
    margin: 0 auto;
  }
  .mxw-news .first-item .time {
    display: none;
  }
  .mxw-news .item {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 20px;
  }
  .mxw-news .left .item {
    width: 100%;
    margin-bottom: .1667rem;
  }
  .mxw-news .newscon .item .title {
    margin-bottom: .0833rem;
  }
  .mxw-news .item .title {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .mxw-news .right {
    width: 100%;
    margin-top: 20px;
  }
  .mxw-news .right {
    margin-top: 0px;
  }
  .mxw-news .right .item {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .mxw-news .right .title {
    font-size: 15px;
  }
  .mxw-news .right .icon {
    font-size: 12px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin-right: 10px;
  }
  .mxw-news .right .news-swiper2 {
    height: 300px;
  }
  .mxw-news .mxw-more {
    display: none;
  }
}
/* #endregion */
/* #region ==================== 底部样式 start ==================== */
footer .top {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #333333;
}
footer .left {
  margin-right: 1.6667rem;
}
footer .logo {
  display: block;
  flex-shrink: 0;
  text-align: center;
  margin: 0 auto 0.5rem;
}
footer .logo img {
  height: 1.8333rem;
}
footer .firend-link {
  position: relative;
  width: 3.3333rem;
  flex-shrink: 0;
}
footer .firend-link .link-head {
  background: #222;
  cursor: pointer;
  padding-left: 0.3333rem;
  padding-right: 0.3333rem;
  border: 0.0167rem solid #ddd;
  height: 0.75rem;
  line-height: 0.75rem;
}
footer .firend-link .link-head .text {
  font-size: 0.2333rem;
  color: #bdbdbd;
  line-height: 1.2;
}
footer .firend-link .link-head:after {
  content: "";
  display: block;
  width: 0.1333rem;
  height: 0.1333rem;
  border-top: 0.0333rem solid #ddd;
  border-left: 0.0333rem solid #ddd;
  transform: rotate(45deg);
  background-size: 100%;
}
footer .link-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  max-height: 3.3333rem;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
  -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;
}
footer .link-list::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
footer .link-list::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 4px;
  box-shadow: inset 0 0 4.998px rgba(0, 0, 0, 0.2);
  background: #535353;
}
footer .link-list::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 4.998px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background: #ededed;
}
footer .link-list.active {
  opacity: 1;
  visibility: visible;
  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);
}
footer .link-list>li {
  width: 100%;
  font-size: 0.2333rem;
  line-height: 1.2;
  padding: 0.1667rem 0.3333rem;
  border-bottom: 1px solid #f5f5f5;
}
footer .link-list>li a {
  display: block;
  width: 100%;
}
footer .mxw-link {
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  background: #fff;
  width: 100%;
  left: 0;
  display: none;
  max-height: 160px;
  overflow: auto;
}
footer .mxw-link::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
footer .mxw-link::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 4px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #535353;
}
footer .mxw-link::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background: #ededed;
}
footer .mxw-link .link-item {
  font-size: 0.2333rem;
  color: #333;
  padding-right: 0.3333rem;
  display: block;
  width: 100%;
  height: 0.6667rem;
  line-height: 0.6667rem;
  padding: 0 0.3333rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
footer .mxw-link .link-item:hover {
  background: #ddd;
}
footer .mxw-link .link-item:last-child {
  padding-right: 0;
}
footer .head {
  font-size: .3rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-bottom: .3667rem;
  position: relative;
}
footer .head::after {
  content: '';
  display: block;
  width: 58px;
  height: 4px;
  background-color: #1ba14a;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
}
footer .foot-nav {
  padding-right: 1.3333rem;
  flex-shrink: 0;
  border-right: 1px solid #6f6f6f;
}
footer .foot-nav ul {
  display: flex;
  flex-wrap: wrap;
}
footer .foot-nav li {
  font-size: 0.2667rem;
  width: 25%;
  line-height: 1.2;
    margin-bottom: 0.4rem;
  text-align: left;
  color: #bdbdbd;
  display: flex;
  align-items: center;
}
footer .foot-nav li a:hover {
  color: inherit;
}
footer .foot-nav li:hover {
  color: #1ba14a;
}
footer .foot-nav li:hover:before {
  background: #1ba14a;
}
footer .foot-nav li:nth-child(2n) {
  text-align: right;
}
footer .foot-contact {
    flex-shrink: 0;
  min-width: 0;
  border-left: 0.0167rem solid rgba(255, 255, 255, 0.06);
  padding-left: 1.1667rem;
}
footer .foot-contact .desc {
  font-size: 0.25rem;
  color: #adadad;
  line-height: 2;
}
footer .foot-contact .desc p {
  display: flex;
  align-items: flex-start;
}
footer .foot-contact .desc p strong {
  color: #ffffff;
  font-size: .6rem;
  line-height: 1;
}
footer .qr {
  width: 5.55rem;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;    margin: 0 1.5rem;
}
footer .qr .item{ width:2.15rem;}
footer .qr img {
  display: block;
}
footer .qr .item p{   font-size: 0.2667rem; color:#fff;    text-align: center;
    margin-top: 10px;}
footer .mxw-copyright {
  background: #333333;
}
footer .mxw-copyright>.mxw-box {
  padding-bottom: 0.4167rem;
  font-size: 0.2667rem;
  color: #949494;
  line-height: 1.8;
}
footer .mxw-copyright .copy-con {
  font-size: .2333rem;
  padding-top: 0.4167rem;
  border-top: 1px solid #6f6f6f;

  justify-content: space-between;
}
footer .mxw-copyright .links {
  padding: .3333rem 0 .3333rem .5rem;
  background-color: #00a641;
  color: #fff;
  margin-top: .8333rem;
}
footer .mxw-copyright a:hover {
  color: #ffffff;
  font-weight: bold;
}
.page-product-detail-box{ display: flex; align-items: stretch;}
.owl-nav{ display: none}
/*左侧工具条*/
#toolbar {
  position: fixed;
  z-index: 9999;
  right: 17px;
  bottom: 10%;
}
#toolbar li {
  margin-bottom: 3px;
  font-size: 0;
  width: 57px;
  height: 57px;
  right: 0;
  position: relative;
}
#toolbar li a {
  display: block;
  position: absolute;
  z-index: 9;
  right: 0;
  top: 0;
  width: 57px;
  height: 57px;
  overflow: hidden;
  background: #00a641;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  white-space: nowrap;
  font-size: 0;
}
#toolbar li .icon-font {
  display: inline-block;
  vertical-align: middle;
  width: 57px;
  height: 57px;
  background-color: #d9d9d9;
}
#toolbar li .icon-qq:after {
  background-position: 0 -150px;
}
#toolbar li .icon-phone:after {
  background-position: 0 -90px;
}
#toolbar li .icon-ewm:after {
  background-position: 0 -30px;
}
#toolbar li .icon-message:after {
  background-position: 0 -120px;
}
#toolbar li .icon-top:after {
  background-position: 0 -60px;
}
#toolbar li .icon-wangwang:after {
  background-position: 0 0;
}
#toolbar li .wz {
  display: inline-block;
  line-height: 57px;
  font-size: 14px;
  color: #fff;
  vertical-align: middle;
  padding-left: 10px;
}
#toolbar li.ewm .ewm-box {
  position: absolute;
  z-index: 1;
  padding: 5px;
  background: #00a641;
  width: 110px;
  right: 120%;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all .7s;
  transition: all .7s;
}
#toolbar li.ewm .ewm-box p {
  margin-bottom: 0;
}
#toolbar li.ewm .ewm-box img {
  max-width: 100%;
}
#toolbar li.ewm .ewm-box:after {
  content: '';
  position: absolute;
  right: -5px;
  bottom: 20px;
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  border-width: 5px;
  cursor: pointer;
  border-style: dashed dashed dashed solid;
  border-color: transparent transparent transparent #00a641;
  border-right: none;
}
#toolbar li.ewm:hover .icon {
  background-position: -57px -180px;
}
#toolbar li.ewm:hover .ewm-box {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#toolbar li.backtop {
  cursor: pointer;
}
#toolbar li.backtop .iconfont {
  color: #fff;
  background-color: #00a641;
}
#toolbar li:hover a {
  width: 300px;
}
#toolbar li:hover .icon-font {
  background-color: #00a641;
}
#toolbar li:hover .icon-qq:after {
  background-position: -30px -150px;
}
#toolbar li:hover .icon-phone:after {
  background-position: -30px -90px;
}
#toolbar li:hover .icon-ewm:after {
  background-position: -30px -30px;
}
#toolbar li:hover .icon-message:after {
  background-position: -30px -120px;
}
#toolbar li:hover .icon-wangwang:after {
  background-position: -30px 0;
}
#toolbar li:hover .icon-top:after {
  background-position: -30px -60px;
}
@media (max-width: 990px) {
  #toolbar {
    display: none;
  }
}
footer .foot-contact .desc strong{ margin-bottom:10px}
.copy-con>div>span{ margin:0 auto 0  40px; }
.xypg-left-keys{}

.mxw-cases .mxw-cate{justify-content: center;    flex-wrap: nowrap !important;}
.mxw-cases .mxw-cate .item{width: max-content;    padding: .1667rem 2%;}


.xypg-case-list li .img{    
    display: flex;
    align-items: center;
    justify-content: center;}
.xypg-case-list li .img img{    width: initial;}
footer .top .mxw-box{align-items: stretch;}


@media screen and (max-width: 751px) {
  .page-product-detail-box{ flex-wrap: wrap}
  footer {
    border-top-width: 4px;
  }
  footer .top {
    padding: 0px;
  }
  footer .foot-contact {
    border-left: 0;
    padding: 0;
  }
  footer .head:before {
    width: 6px;
  }
  footer .head {
    font-size: 18px;
  }
  footer .foot-contact .desc {
    line-height: 2em;
  }
  footer .mxw-copyright>.mxw-box {
    font-size: 12px;
  }
  footer .mxw-copyright .copy-con {
    flex-flow: column;
    border: 0;
    padding-top: 0px;
  }
  .footer3 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #222;
  }
  .footer3 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer3 ul li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    color: #ffffff;
    line-height: 50px;
    font-size: 0;
  }
  .footer3 ul li a {
    display: block;
    color: #ffffff;
  }
  .footer3 ul li .iconfont {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
  }
  .footer3 ul li span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #ffffff;
  }
  .footer3 ul li::after {
    content: "";
    display: block;
  }
  .container{ width: 95%; margin: 0 auto}
  .xypg-product-list, .xypg-case-list{ width: 100%;    margin: 0 auto;}
.mxw-news .right{ margin-top:20px}
.copy-con>div>span{ margin:0 auto;  display:block;}
.mxw-news .right .news-swiper2{ height:350px}
.mxw-news .right .desc{ height:auto;    -webkit-line-clamp: 2;}
.process_box{    height: 250px;}
.mxw-cases .mxw-cate-header .mxw-cate{    flex-wrap: wrap !important;    justify-content: space-around;}
.mxw-cases .mxw-cate .item:nth-child(3){width: 48%;}
.mxw-cases .mxw-cate .item{width: 48%;    font-size: 14px;}
.mxw-cases .mxw-cate .item:nth-child(3n-2) {
    margin-left: 0;
}
.mxw-cases .mxw-cate .item:nth-child(4){    margin-left: auto;}
.mxw-cases {
    background-size: auto 340px;
}

}
/* #endregion ==================== 底部样式 end ==================== */
footer .foot-nav ul{ margin-top:0.8rem}
footer .foot-nav li{    margin-bottom: 0.5rem;}
footer .qr .item:nth-child(1){ margin-right:15px}
footer .foot-nav li:nth-child(n+5){ margin-bottom:0 }

