
/* ==================== 重置默认样式 start ==================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu";
}
*:before,
*:after {
  vertical-align: middle;
  box-sizing: border-box;
}
html {
  margin: 0 auto;
}
ul,
li,
ol {
  list-style: none;
}
em {
  font-style: normal;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-backface-visibility: hidden;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: -webkit-focus-ring-color auto 0;
}
button,
input,
textarea {
  border: 0;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
  display: block;
}
input:-internal-autofill-previewed,
textarea:-internal-autofill-previewed,
input:-internal-autofill-selected,
textarea:-internal-autofill-selected {
  -webkit-text-fill-color: inherit !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th,
td {
  vertical-align: middle;
}
i {
  font-style: inherit;
}
#map label {
  max-width: initial;
}
#map img {
  max-width: initial;
}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
  display: block;
  zoom: 1;
}
.clearfix:after {
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
  padding: 0;
  margin: 0;
}
/* 外层容器样式 */
section {
  overflow: hidden;
}
/* 通用正文样式 */
article {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  color: #333;
}
/* 图片统一动画 */
.mxw-image {
  overflow: hidden;
}
.mxw-image:hover img {
  transform: scale(1.1);
}
.mxw-image img {
  transition: all 0.4s;
  width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
#goto-top {
  position: fixed;
  z-index: 10;
  right: 0.3333rem;
  bottom: 10%;
  width: 0.6667rem;
  height: 0.6667rem;
  cursor: pointer;
  background: #1d2088;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #fff;
}
#goto-top.active {
  visibility: visible;
  opacity: 1;
}
#goto-top:after {
  content: "";
  display: block;
  width: 0.2333rem;
  height: 0.2333rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 6px;
}
@media screen and (max-width: 1200px) {
  #goto-top {
    width: 30px;
    height: 30px;
    right: 10px;
  }
}
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.u-line-2 {
  -webkit-line-clamp: 2;
}
.u-line-3 {
  -webkit-line-clamp: 3;
}
.u-line-4 {
  -webkit-line-clamp: 4;
}
.u-line-5 {
  -webkit-line-clamp: 5;
}
.u-line-6 {
  -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.u-flex-wrap {
  flex-wrap: wrap;
}
.u-flex-nowrap {
  flex-wrap: nowrap;
}
.u-flex-col {
  flex-direction: column;
}
.u-grow-1 {
  flex-grow: 1;
}
.u-col-center {
  align-items: center;
}
.u-col-top {
  align-items: flex-start;
}
.u-col-bottom {
  align-items: flex-end;
}
.u-row-center {
  justify-content: center;
}
.u-row-left {
  justify-content: flex-start;
}
.u-row-right {
  justify-content: flex-end;
}
.u-row-between {
  justify-content: space-between;
}
.u-row-around {
  justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 1200px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 > .u-col {
    width: 48%;
  }
  .u-row-2 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-2 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
  .u-row-3 > .u-col {
    width: 32%;
  }
  .u-row-3 > .u-col:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .u-row-3 > .u-col:nth-child(3) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-4 > .u-col {
    width: 23.5%;
    margin-right: 2%;
  }
  .u-row-4 > .u-col:nth-child(4n) {
    margin-right: 0%;
  }
  .u-row-4 > .u-col:nth-child(4) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-5 > .u-col {
    width: 18.4%;
    margin-right: 2%;
  }
  .u-row-5 > .u-col:nth-child(5n) {
    margin-right: 0%;
  }
  .u-row-5 > .u-col:nth-child(5) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-6 > .u-col {
    width: 15%;
    margin-right: 2%;
  }
  .u-row-6 > .u-col:nth-child(6n) {
    margin-right: 0%;
  }
  .u-row-6 > .u-col:nth-child(6) ~ .u-col {
    margin-top: 2%;
  }
}
@media screen and (max-width: 1200px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 .u-col {
    width: 100%;
  }
  .u-row-2 .u-col:nth-child(1) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-3 > .u-col,
  .u-row-4 > .u-col,
  .u-row-5 > .u-col,
  .u-row-6 > .u-col {
    width: 48%;
  }
  .u-row-3 > .u-col:nth-child(2n),
  .u-row-4 > .u-col:nth-child(2n),
  .u-row-5 > .u-col:nth-child(2n),
  .u-row-6 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-3 > .u-col:nth-child(2) ~ .u-col,
  .u-row-4 > .u-col:nth-child(2) ~ .u-col,
  .u-row-5 > .u-col:nth-child(2) ~ .u-col,
  .u-row-6 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 动画 start ==================== */
@keyframes arrowAnimate {
  0% {
    transform: translate(0rem, 0rem);
  }
  50% {
    transform: translate(0rem, -0.1667rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
/* ==================== 动画 end ==================== */
.firend-link {
  position: relative;
  width: 4.6667rem;
  flex-shrink: 0;
}
.firend-link .link-head {
  background-color: #0b328f;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.1667rem;
  padding-right: 0.1667rem;
}
.firend-link .link-head:hover + .link-list {
  opacity: 1;
  visibility: visible;
  transform: perspective(20rem) rotateX(0deg);
  -webkit-transform: perspective(20rem) rotateX(0deg);
  -moz-transform: perspective(20rem) rotateX(0deg);
  -ms-transform: perspective(20rem) rotateX(0deg);
  -o-transform: perspective(20rem) rotateX(0deg);
}
.firend-link .link-head .text {
  font-size: 0.2333rem;
  color: #fff;
  line-height: 1.2;
}
.firend-link .link-head:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(135deg) translateY(50%);
  background: none;
}
.firend-link .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(20rem) rotateX(-90deg);
  transform: perspective(20rem) rotateX(-90deg);
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}
.firend-link .link-list::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0.0667rem;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 0.0167rem;
}
.firend-link .link-list::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 0.0667rem;
  box-shadow: inset 0 0 0.0833rem rgba(0, 0, 0, 0.2);
  background: #535353;
}
.firend-link .link-list::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 0.0833rem rgba(0, 0, 0, 0.2);
  border-radius: 0.0667rem;
  background: #ededed;
}
.firend-link .link-list:hover {
  opacity: 1;
  visibility: visible;
  transform: perspective(20rem) rotateX(0deg);
  -webkit-transform: perspective(20rem) rotateX(0deg);
  -moz-transform: perspective(20rem) rotateX(0deg);
  -ms-transform: perspective(20rem) rotateX(0deg);
  -o-transform: perspective(20rem) rotateX(0deg);
}
.firend-link .link-list > li {
  width: 100%;
  font-size: 0.2333rem;
  line-height: 1.2;
  padding: 0.1667rem 0.3333rem;
  border-bottom: 0.0167rem solid #f5f5f5;
}
.firend-link .link-list > li a {
  display: block;
  width: 100%;
}
.firend-link .mxw-online-list {
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  width: 100%;
  left: 0;
  border: 1px solid #ddd;
  display: none;
  z-index: 9;
}
.firend-link .mxw-online-list > .mxw-box {
  padding: 0 0.3333rem;
  width: 100%;
  max-width: 100%;
  text-align: left;
  background: #fff;
  overflow: auto;
  max-height: 3.3333rem;
}
.firend-link .mxw-online-list > .mxw-box::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0.0667rem;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 0.0167rem;
}
.firend-link .mxw-online-list > .mxw-box::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 0.0667rem;
  box-shadow: inset 0 0 0.0833rem rgba(0, 0, 0, 0.2);
  background: #535353;
}
.firend-link .mxw-online-list > .mxw-box::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 0.0833rem rgba(0, 0, 0, 0.2);
  border-radius: 0.0667rem;
  background: #ededed;
}
.firend-link .mxw-online-list a {
  display: block;
  padding-right: 0.3333rem;
  color: #000;
  font-size: 0.2rem;
  padding: 10px 0;
  line-height: 1.6;
  border-bottom: 1px solid #ddd;
}
.firend-link .mxw-online-list a:hover {
  color: #1d2088;
}
.firend-link .mxw-online-list a:last-child {
  border-bottom: 0;
}
/* ==================== 头部 start ==================== */
header {
  width: 100%;
  z-index: 99;
  background-color: #fff;
}
header .welcome {
  overflow: hidden;
  background-color: #f7f7f7;
}
header .welcome .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  padding: 10px 0;
  color: #999;
}
header .welcome .mxw-box a {
  color: #666;
}
header .welcome .mxw-box a:hover {
  color: #1d2088;
}
header .pc-nav {
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.09);
  position: relative;
  z-index: 9;
}
header .pc-nav .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1790px;
  padding:0 0.3rem;
}
header .pc-nav .logo {
  width: 400px;
  flex-shrink: 0;
  /* margin-bottom: 25px; */
}
header .pc-nav .right {
  min-width: 0;
}
header .pc-nav .search {
  align-self: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: 20px;
  background: url(../image/aa02dfac32ef9a2677993920b28070bec25b61a1.png) no-repeat center;
  background-size: 100%;
}
header .pc-nav .search.active {
  overflow: visible;
}
header .pc-nav .search.active form {
  opacity: 1;
  right: 0px;
  visibility: visible;
}
header .pc-nav .search form {
  font-size: 0;
  position: absolute;
  top: 100%;
  right: -100%;
  z-index: 33;
  width: 200px;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  height: 34px;
  line-height: 34px;
}
header .pc-nav .search form input {
  background: #fff;
  padding: 8px 10px;
  outline: none;
  font-size: 14px;
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
}
header .pc-nav .search form button {
  color: #fff;
  position: relative;
  width: 50px;
  height: 100%;
  background: #1d2088;
  cursor: pointer;font-size:12px;
}
header .pc-nav .search form button img {
  width: 16px;
}
header .pc-nav .language {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .pc-nav .language a {
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
}
header .pc-nav .language a:last-child {
  margin-right: 0;
  padding-right: 0;
}
header .pc-nav .language a:last-child:after {
  display: none;
}
header .pc-nav .language a:after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #333;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .pc-menu {
  display: flex;
  align-items: center;
}
header .pc-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  margin-right: 26px;
}
header .pc-menu > li:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #1d2088;
  transition: width 0.4s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}
header .pc-menu > li:last-child {
  margin-right: 0;
}
header .pc-menu > li:hover:after {
  width: 100%;
}
header .pc-menu > li:hover > a {
  color: #1d2088 !important;
}
header .pc-menu > li:hover > ul {
  visibility: visible;
  opacity: 1;
}
header .pc-menu > li ul {
  background-color: #fff;
  width: 3.3333rem;
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s, visibility 0s;
}
header .pc-menu > li ul:hover {
  opacity: 1;
  visibility: visible;
}
header .pc-menu > li ul li.active > ul,
header .pc-menu > li ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
header .pc-menu > li ul li a {
  position: relative;
}
header .pc-menu > li ul li a:after {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  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: 17px;
  color: #333;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  position: relative;
  padding: 40px 10px;
  line-height: 1.2;
  width: 100%;
}
header .pc-menu > li > ul {
  border-top: 1px solid #ddd;
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.14);
  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: 1px solid #ddd;
}
header .pc-menu > li > ul > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 1px solid #ddd;
}

@media screen and (max-width: 1740px) {
  header .pc-nav .mxw-box {
    max-width: 96%;
  }
}
@media screen and (max-width: 1600px) {
  header .pc-menu > li {
    margin-right: 15px;
  }
  header .pc-menu > li>a{padding-left:5px;padding-right: 5px;}
  header .pc-nav .language a,
  header .pc-menu > li > a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1500px) {
  header .pc-nav .logo {
    width: 340px;
  }
}
@media screen and (max-width: 1400px) {
  header .pc-nav .logo {
    width: 300px;
  }
  header .pc-menu > li {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1230px) {
  header .pc-nav .logo {
    width: 280px;
  }
  header .pc-nav .language a,
  header .pc-menu > li > a {
    font-size: 14px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
/* ==================== 头部 end ==================== */
/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 1200px) {
  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;
    width: 100%;
    transform: translateX(-50%);
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.2);
  }
  .mxw-mob-nav .logo {
    display: block;
    flex-shrink: 0;
  }
  .mxw-mob-nav .logo img {
    height: 36px;
  }
  .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%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transform: translateX(50%);
  }
  .mxw-mob-nav .menus-box.active {
    visibility: visible;
    opacity: 1;
  }
  .mxw-mob-nav .menus-box.active .menus {
    transform: translateX(0);
  }
  .mxw-mob-nav .menus {
    width: 60%;
    height: 100%;
    margin-right: 0;
    margin-left: auto;
    background: #fff;
    transform: translateX(100%);
    transition: all 0.5s;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
  }
  .mxw-mob-nav .menus > ul {
    width: 100%;
    overflow: auto;
  }
  .mxw-mob-nav .menus > ul > li.active > ul {
    display: block;
  }
  .mxw-mob-nav .menus > ul > li > a {
    display: block;
    width: 100%;
    padding: 15px 18px;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mxw-mob-nav .menus > ul > li > a.sub:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-top: 4px solid #555;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 0;
    margin-left: 10px;
  }
  .mxw-mob-nav .menus > ul > li > ul {
    display: none;
    padding: 0px 24px;
  }
  .mxw-mob-nav .menus > ul > li > ul > li > a {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 36px;
    height: 36px;
    border-bottom: 1px solid #f3f3f3;
  }
  .mxw-mob-nav .menus-head {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8F8F8;
    border-bottom: 0.6px solid #eee;
    font-size: 16.8px;
    font-weight: bold;
    line-height: 54px;
    height: 54px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .mxw-mob-nav .menus-head .text {
    color: #333;
    line-height: 1.2;
  }
  .mxw-mob-nav .menus-head .mxw-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none;
    position: relative;
    transform: rotate(45deg);
  }
  .mxw-mob-nav .menus-head .mxw-close:before,
  .mxw-mob-nav .menus-head .mxw-close:after {
    content: "";
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
  }
  .mxw-mob-nav .menus-head .mxw-close:before {
    width: 2px;
    height: 100%;
  }
  .mxw-mob-nav .menus-head .mxw-close:after {
    width: 100%;
    height: 2px;
  }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
  font-size: 0;
  position: relative;
}
.mxw-banner .swiper-slide {
  overflow: hidden;
}
.mxw-banner .swiper-slide img {
  width: 100%;
}
.mxw-banner .swiper-pagination {
  width: 100%;
  max-width: 1740px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  left: auto;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  opacity: 1;
  margin-left: 14px;
  margin-right: 14px;
  background: #fff;
  transition: width 0.4s;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1d2088;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
  width: 50px;
  height: 90px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.33);
  background-image: none;
  outline: none;
  z-index: 99;
  transform: translateY(-50%);
  top: 50%;
}
.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 (min-width: 1800px) {
  .banner-swiper {
    min-width: 1920px;
  }
}
@media screen and (max-width: 1200px) {
  .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 ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
  overflow: hidden;
  margin-bottom: 1rem;
  text-align: center;
}
.mxw-title .text1 {
  font-size: 0.8rem;
  font-weight: bold;
  color: #1d2088;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.mxw-title .text2 {
  font-size: 0.3rem;
  color: #666;
  line-height: 1.4;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .mxw-title .text2 {
    font-size: 12px;
    line-height: 1.6;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
  position: relative;
  z-index: 11;
  overflow: visible;
}
.mxw-keywords form {
  margin-top: -1.6667rem;
  margin-left: -2.6667rem;
  padding-top: 0.6667rem;
  padding-bottom: 0.5rem;
  padding-left: 2.6667rem;
  padding-right: 4.1667rem;
  overflow: hidden;
  background: url(../image/3b129a9703fe5cc9dcf6ffc92b14caac7f7e18eb.png) no-repeat center right;
  background-size: cover;
}
.mxw-keywords form .top {
  padding-right: 0.3333rem;
  height: 0.8333rem;
  display: flex;
  align-items: stretch;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1.6667rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.2333rem;
  margin-bottom: 0.4167rem;
}
.mxw-keywords form input {
  color: #fff;
  height: 100%;
  min-width: 0;
  flex-grow: 1;
  padding-left: 0.5rem;
  padding-right: 0.3333rem;
}
.mxw-keywords form input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(255, 255, 255, 0.6);
}
.mxw-keywords form input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(255, 255, 255, 0.6);
}
.mxw-keywords form input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(255, 255, 255, 0.6);
}
.mxw-keywords form input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(255, 255, 255, 0.6);
}
.mxw-keywords form button {
  width: 0.3333rem;
  flex-shrink: 0;
}
.mxw-keywords form .bottom {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 0.2333rem;
  color: rgba(255, 255, 255, 0.5);
}
.mxw-keywords form .bottom a:hover {
  color: #fff;
}
.mxw-keywords .tel {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  line-height: 1.2;
  font-size: 0.3rem;
  color: #1d2088;
}
.mxw-keywords .tel strong {
  font-size: 0.5167rem;
}
@media screen and (min-width: 1200px) {
  .mxw-keywords .mxw-box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
  }
}
/* ==================== 关键词 end ==================== */
/* ==================== 产品中心 start ==================== */
.mxw-product {
  background: url(../image/f34b4edd4bd5f16a8c8ea28ac223b67e5f2996b1.jpg) no-repeat center bottom #fff;
  background-size:cover;
}
.mxw-product .mxw-cate {
  margin-bottom: 0.8333rem;
  justify-content: center;
}
.mxw-product .mxw-cate .cate-item {
  height: 0.8333rem;
  border-radius: 1.6667rem;
  overflow: hidden;
  background-image: linear-gradient(90deg, #c9c9c9 0%, #efefef 100%);
  color: #1d2088;
  text-align: center;
  line-height: 0.8333rem;
  box-shadow: inset 0 0 0.15rem #979797;
}
.mxw-product .mxw-cate .cate-item.active {
  color: #fff;
  background-image: linear-gradient(90deg, #1d2088 0%, #1991e0 100%);
  box-shadow: inset 0 0 0.15rem #1d3095;
}
.mxw-product .mxw-cate .cate-item:last-child {
  margin-right: 0;
}
.mxw-product .swiper-big {
  margin-bottom: 0.5rem;
}
.mxw-product .swiper-big .swiper-slide {
  display: flex;
  align-items: center;
}
.mxw-product .swiper-big .image {
  display: block;
}
.mxw-product .swiper-big .info {
  min-width: 0;
  flex-grow: 1;
}
.mxw-product .swiper-big .info .text1 {
  font-size: 0.6667rem;
  color: #1d2088;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
  font-weight: bold;
}
.mxw-product .swiper-big .info .text2 {
  font-size: 0.6667rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.6667rem;
  font-weight: bold;
}
.mxw-product .swiper-big .info .text3 {
  padding-left: 0.75rem;
  position: relative;
  font-size: 0.3333rem;
  color: #333;
  line-height: 1.6;
}
.mxw-product .swiper-big .info .text3:before {
  content: "";
  display: block;
  background: url(../image/e48af22a261e98738ba2f018575ad4deb5806ca8.png) no-repeat center;
  position: absolute;
  left: 0;
  top: 0.1667rem;
  width: 0.5333rem;
  height: 0.2rem;
  background-size: 100%;
}
.mxw-product .swiper-big .info .mxw-more {
  margin-top: 0.6667rem;
  width: 2.6667rem;
  padding: 0.2rem 0.25rem;
  font-size: 0.2667rem;
  color: #fff;
  background-color: #1d2088;
  border-radius: 1.6667rem;
  overflow: hidden;
  text-align: center;
  display: block;
  transition: box-shadow 0.4s, transform 0.4s;
}
.mxw-product .swiper-min {
  padding-bottom: 0.0833rem;
}
.mxw-product .swiper-min .swiper-slide {
  border: solid 0.0167rem #e6e6e6;
  background-color: #fff;
  padding: 0.3333rem;
}
.mxw-product .swiper-min .swiper-slide.swiper-slide-thumb-active {
  border-color: #1d2088;
}
@media screen and (min-width: 1200px) {
  .mxw-product .mxw-box {
    padding-top: 1.1667rem;
    padding-bottom: 1.6667rem;
  }
  .mxw-product .swiper-big .image {
    width: 61%;
    flex-shrink: 0;
    margin-right: 1.1667rem;
  }
  .mxw-product .swiper-big .info .mxw-more:hover {
    box-shadow: 0 0 0.1667rem -0.0333rem #1d2088;
    transform: translateX(-0.1667rem);
  }
  .mxw-product .swiper-min {
    max-width: 58.75%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mxw-product .swiper-min .swiper-wrapper {
    width: auto;
  }
  .mxw-product .swiper-min .swiper-slide {
    max-width: 3.6667rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-product .mxw-cate {
    margin-bottom: 30px;
  }
  .mxw-product .mxw-cate .cate-item {
    padding: 8px 10px;
    height: auto;
    line-height: inherit;
    font-size: 13px;
  }
  .mxw-product .mxw-cate .cate-item:last-child {
    margin-right: 0;
  }
  .mxw-product .swiper-big .swiper-slide {
    flex-wrap: wrap;
  }
  .mxw-product .swiper-big .image {
    margin-bottom: 20px;
  }
  .mxw-product .swiper-big .info .text1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .mxw-product .swiper-big .info .text2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .mxw-product .swiper-big .info .text3 {
    padding-left: 25px;
    font-size: 14px;
  }
  .mxw-product .swiper-big .info .text3:before {
    width: 16px;
    height: 6px;
    top: 10px;
  }
  .mxw-product .swiper-big .info .mxw-more {
    width: 100%;
    padding: 8px 10px;
    font-size: 12px;
    margin-top: 20px;
  }
}
/* ==================== 产品中心 end ==================== */
/* ==================== 联系方式 start ==================== */
.mxw-contact {
  height: 4.9333rem;
  position: relative;
  background: url(../image/976a367ac0356eb6addf51809d697190a55e9371.png) no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  margin-top: -0.1667rem;
}
.mxw-contact .left .text1 {
  font-size: 0.2833rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
}
.mxw-contact .left .text2 {
  font-size: 0.6667rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.3333rem;
}
.mxw-contact .left .text3 {
  display: flex;
  align-items: stretch;
  border-radius: 1.6667rem;
  overflow: hidden;
}
.mxw-contact .left .text3 span {
  padding: 0.2167rem 0.5833rem;
}
.mxw-contact .left .text3 span:nth-child(1) {
  background-color: #fff;
  color: #333;
}
.mxw-contact .left .text3 span:nth-child(2) {
  background-color: #1991e0;
  color: #fff;
}
.mxw-contact .info .top {
  display: flex;
  align-items: center;
}
.mxw-contact .info .top img {
  width: 0.8667rem;
  display: block;
  flex-shrink: 0;
  margin-right: 0.25rem;
  margin-top:0.2rem;
}
.mxw-contact .info .top .desc {
  min-width: 0;
  flex-grow: 1;
  color: #fff;
}
.mxw-contact .info .top .desc p {
  font-size: 0.2333rem;
  line-height: 1.2;
  margin-bottom: 0.2333rem;
}
.mxw-contact .info .top .desc p:last-child {
  margin-bottom: 0;
}
.mxw-contact .info .top .desc strong {
  font-size: 0.4167rem;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  vertical-align: bottom;
}
.mxw-contact .info .mxw-more {
  margin-top: 0.5833rem;
  display: block;
  background-color: #1991e0;
  text-align: center;
  width: 3.3333rem;
  font-weight: bold;
  padding: 0.1667rem 0.1667rem;
  border-radius: 1.6667rem;
  font-size: 0.4167rem;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .mxw-contact .mxw-box {
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 1.3333rem;
    justify-content: space-between;
  }
  .mxw-contact .info .mxw-more {
    transition: transform 0.4s, box-shadow 0.4s;
  }
  .mxw-contact .info .mxw-more:hover {
    box-shadow: 0 0 0.1667rem -0.0333rem rgba(255, 255, 255, 0.4);
    transform: translateX(-0.1667rem);
  }
}
@media screen and (max-width: 1740px) {
  .mxw-contact .info .mxw-more{
        margin-top: 0.4rem;
    padding: 0.2rem 0.1667rem;
    font-size: 0.3167rem;
  }
}
@media screen and (max-width: 1740px) {
  .mxw-contact {
    background-position-x: -4.1667rem;
  }
  .mxw-contact .mxw-box {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-contact {
    height: auto;
    background-position-x: left;
  }
  .mxw-contact .mxw-box {
    width: 100%;
    padding: 30px 20px;
    text-align: center;
  }
  .mxw-contact .info .top img {
    display: none;
  }
  .mxw-contact .info .top .desc p {
    font-size: 14px;
  }
  .mxw-contact .info .top .desc strong {
    display: block;
    margin-right: 0!important;
    margin-bottom: 5px;
  }
  .mxw-contact .info .top .desc strong:last-child {
    margin-bottom: 0;
  }
  .mxw-contact .info .mxw-more {
    width: 100%;
    font-size: 12px;
    margin-top: 20px;
  }
}
/* ==================== 联系方式 end ==================== */
/* ==================== 产品中心2 start ==================== */
.mxw-product2 {
  position: relative;
}
.mxw-product2:after {
  content: "";
  display: block;
  width: 100%;
  height: 4.5833rem;
  background-color: #efefef;
  position: absolute;
  bottom: 0;
  left: 0;
}
.mxw-product2 .body {
  position: relative;
  z-index: 9;
}
.mxw-product2 .swiper-slide {
  display: block;
}
.mxw-product2 .swiper-button-prev,
.mxw-product2 .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: none;
}
.mxw-product2 .swiper-button-prev:after,
.mxw-product2 .swiper-button-next:after {
  background-image: none;
  font-size: 0.7167rem;
  color: #1d2088;
}
.mxw-product2 .swiper-button-prev {
  left: -1rem;
}
.mxw-product2 .swiper-button-next {
  right: -1rem;
}
.mxw-product2 .swiper-slide {
  display: block;
  padding-top:10px;
}


.mxw-product2 .swiper-slide .image,
.mxw-product2 .swiper-slide .title{transition: transform .4s;}
.mxw-product2 .swiper-slide:hover .image,
.mxw-product2 .swiper-slide:hover .title{transform: translateY(-10px);}
.mxw-product2 .swiper-slide:hover .image{border-color:#1d2088;}
.mxw-product2 .swiper-slide:hover .title{
  background-color: #1d2088;color:#fff;
}
.mxw-product2 .swiper-slide .image {
  width: 100%;
  border:1px solid #ddd;
}
.mxw-product2 .swiper-slide .title {
  width: 100%;
  height: 1.0667rem;
  line-height: 1.0667rem;
  text-align: center;
  padding: 0 0.1667rem;
  font-size: 0.3333rem;
  color: #333;
  background-color: #f6f6f6;
}
.mxw-product2 .mxw-more {
  display: block;
  width: 3rem;
  height: 0.8333rem;
  background-color: #1d2088;
  text-align: center;
  color: #fff;
  font-size: 0.2667rem;
  border-radius: 1.6667rem;
  overflow: hidden;
  margin: 1.1667rem auto 0;
  z-index: 9;
  position: relative;
  line-height: 0.8333rem;
}
@media screen and (min-width: 1200px) {
  .mxw-product2 .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1rem;
  }
  .mxw-product2 .swiper-slide {
    max-width: 8.6667rem;
  }
  .mxw-product2 .mxw-more {
    transition: box-shadow 0.4s;
  }
  .mxw-product2 .mxw-more:hover {
    color: #fff !important;
    box-shadow: 0 0 0.1667rem -0.0333rem #1d2088;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-product2:after {
    height: 100px;
  }
  .mxw-product2 .swiper-slide .title {
    height: auto;
    line-height: inherit;
    padding: 8px;
    font-size: 12px;
  }
  .mxw-product2 .mxw-more {
    display: block;
    width: 100%;
    font-size: 12px;
    padding: 8px 10px;
    height: auto;
    line-height: inherit;
    margin-top: 20px;
  }
}
/* ==================== 产品中心2 end ==================== */
/* ==================== 关于我们 start ==================== */
.mxw-about {
  background: url(../image/66733f54edb2ba551a8bb4f77888ec9a554406ca.png) no-repeat right bottom;
  position: relative;
}
.mxw-about .info .text1 {
  font-size: 0.8167rem;
  font-weight: bold;
  color: #000;
  line-height: 1.2;
  margin-bottom: 0.2667rem;
}
.mxw-about .info .text2 {
  font-size: 0.4667rem;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}
.mxw-about .info .desc {
  text-align: justify;
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.8;
}
.mxw-about .info .desc strong {
  font-size: 0.35rem;
  font-weight: bold;
  color: #333;
}
.mxw-about .info .mxw-more {
  margin-top: 0.5rem;
  width: 2.6667rem;
  height: 0.8333rem;
  line-height: 0.8333rem;
  text-align: center;
  font-size: 0.2667rem;
  color: #fff;
  border-radius: 1.6667rem;
  overflow: hidden;
  display: block;
  background-color: #1d2088;
}
@media screen and (min-width: 1200px) {
  .mxw-about .mxw-box {
    padding-top: 1.5rem;
    padding-bottom: 1.6667rem;
    display: flex;
    align-items: center;
  }
  .mxw-about .left {
    width: 51.3%;
    flex-shrink: 0;
    position: relative;
    background: url(../image/959997cc7310743fadfb087f3836d146a8ea821e.jpg) no-repeat left center;
    padding-left: 1.3333rem;
    margin-right: 1rem;
    margin-left: -10%;
  }
  .mxw-about .left img{
    max-width: 100%;
    height: auto !important;
  }
  .mxw-about .left iframe{
    width:100%;
    height: 8.3333rem;
  }
  .mxw-about .info {
    min-width: 0;
    flex-grow: 1;
    max-width: 47.5%;
  }
  .mxw-about .mxw-more {
    transition: box-shadow 0.4s;
  }
  .mxw-about .mxw-more:hover {
    color: #fff !important;
    box-shadow: 0 0 0.1667rem -0.0333rem #1d2088;
  }
  .mxw-about .icon {
    width: 1.1667rem;
    height: 7.1667rem;
    position: absolute;
    top: 1.2333rem;
    right: 1.7rem;
  }
}
@media screen and (max-width: 1740px) {
  .mxw-about .info .text1 {
    font-size: 0.65rem;
  }
  .mxw-about .info .text2 {
    font-size: 0.3667rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-about {
    background: none;
  }
  .mxw-about .left {
    margin-bottom: 30px;
  }
  .mxw-about .left iframe{
    width:100%;
    height: 230px;
  }
  .mxw-about .info .text1 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .mxw-about .info .text2 {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .mxw-about .info .desc strong {
    font-size: 14px;
  }
  .mxw-about .info .mxw-more {
    width: 100%;
    padding: 8px 10px;
    font-size: 12px;
    line-height: inherit;
    height: auto;
    margin-top: 20px;
  }
}
/* ==================== 关于我们 end ==================== */
/* ==================== 热销推荐 start ==================== */
.mxw-advantage {
  background: url(../image/d446b2aafd4d4b967322b2e404697040beebec9d.jpg) no-repeat center;
  background-size: cover;
}
.mxw-advantage .mxw-title .text1 {
  color: #fff;
}
.mxw-advantage .mxw-title .text2 {
  color: rgba(255, 255, 255, 0.55);
}
.mxw-advantage .itembox {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.mxw-advantage .item {
  padding-bottom: 1.1667rem;
  position: relative;
}
.mxw-advantage .item .icon {
  width: 1.8333rem;
  display: block;
  margin: 0 auto 0.6667rem;
}
.mxw-advantage .item .desc {
  font-size: 0.3333rem;
  color: #fff;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .mxw-advantage {
    background-attachment: fixed;
  }
  .mxw-advantage .mxw-box {
    padding-top: 1.3333rem;
    padding-bottom: 1.6667rem;
  }
  .mxw-advantage .item {
    width: 25%;
  }
  .mxw-advantage .item .icon,
  .mxw-advantage .item .desc {
    transition: transform 0.4s;
  }
  .mxw-advantage .item:hover .icon,
  .mxw-advantage .item:hover .desc {
    transform: translateY(-0.3333rem);
  }
  .mxw-advantage .item::before {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #1d2088;
    border: 0.1333rem solid #fff;
    position: absolute;
    bottom: -0.25rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100%;
    z-index: 9;
  }
  .mxw-advantage .item:after {
    content: "";
    display: block;
    width: 100%;
    height: 0.0167rem;
    background-color: rgba(255, 255, 255, 0.33);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .mxw-advantage .item .desc {
    max-width: 3.3333rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-advantage .itembox {
    flex-wrap: wrap;
  }
  .mxw-advantage .item {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .mxw-advantage .item .icon {
    width: 50px;
    flex-shrink: 0;
    margin: 0;
    margin-right: 20px;
  }
  .mxw-advantage .item .desc {
    text-align: justify;
    font-size: 14px;
    line-height: 1.8;
  }
}
/* ==================== 热销推荐 end ==================== */
/* ==================== 合作伙伴 start ==================== */
.mxw-brand {
  background-color: #f5f5f5;
}
.mxw-brand .left .text1 {
  font-size: 0.5667rem;
  color: #333;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.mxw-brand .left .text1 strong {
  color: #1d2088;
}
.mxw-brand .left .text2 {
  padding-left: 1.1667rem;
  position: relative;
  font-size: 0.2667rem;
  color: #666666;
}
.mxw-brand .left .text2:before {
  content: "";
  display: block;
  width: 0.8333rem;
  height: 0.0333rem;
  background-color: #bdbdbd;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mxw-brand .left .desc {
  margin-top: 0.6667rem;
}
.mxw-brand .left .desc p {
  color: #1d2088;
  font-size: 0.31rem;
  line-height: 1.6;
  font-weight: bold;
}
.mxw-brand .left .desc strong {
  font-size: 0.45rem;
  line-height: 1.2;
}
.mxw-brand .brand-swiper .swiper-wrapper {
  flex-flow: row wrap;
}
.mxw-brand .image {
  border: 1px solid transparent;
  transition: border-color 0.4s;
}
.mxw-brand .image:hover {
  border-color: #1d2088;
}
.mxw-brand .right{
  position: relative;
  padding:0 50px;
}
.mxw-brand .swiper-button-prev,
.mxw-brand .swiper-button-next{width:40px;height:60px;background-color: rgba(0, 0, 0, 0.2);}
.mxw-brand .swiper-button-prev:after,
.mxw-brand .swiper-button-next:after{
  font-size:24px;
  color:#fff;
}
.mxw-brand .swiper-button-prev{
  left:0;
}
.mxw-brand .swiper-button-next{
  right:0;
}
@media screen and (min-width: 1200px) {
  .mxw-brand .mxw-title {
    margin-bottom: 0.5rem;
  }
  .mxw-brand .mxw-box {
    padding-top: 1.3333rem;
    padding-bottom: 1.3333rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mxw-brand .left {
    margin-right: 1.3333rem;
    min-width: 0;
    flex-grow: 1;
    margin-top: 0.5rem;
  }
  .mxw-brand .right {
    width: 75%;
    flex-shrink: 0;
  }
  .mxw-brand .brand-swiper .swiper-slide {
    max-width: 4.6667rem;
    margin-top: 0.5rem !important;
  }
}

@media screen and (min-width: 1730px) {
  .mxw-brand .left{margin-right: 0.9rem;}
}
@media screen and (max-width: 1740px) {
  .mxw-brand .right {
    width: 70%;
  }
  .mxw-brand .left .text1{    margin-bottom: 0.3rem;}
  .mxw-brand .left .desc {
    margin-top: 0.3667rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-brand .right {
    width: 100%;
  }
  .mxw-brand .brand-swiper .swiper-slide {
    max-width: 50%;
    margin-top: 10px!important;
  }
  .mxw-brand .left {
    text-align: center;
  }
  .mxw-brand .left .text1 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .mxw-brand .left .text2 {
    padding-left: 0;
  }
  .mxw-brand .left .text2::before {
    display: none;
  }
  .mxw-brand .left .desc p {
    margin-bottom: 5px;
    font-size: 16px;
  }
  .mxw-brand .left .desc br {
    display: none;
  }
  .mxw-brand .right{
    padding:0;
  }
  .mxw-brand .swiper-button-prev{left:-20px;}
  .mxw-brand .swiper-button-next{right:-20px;}
  .mxw-brand .swiper-button-prev,
  .mxw-brand .swiper-button-next{width: 25px;height: 50px;}
  .mxw-brand .swiper-button-prev:after,
  .mxw-brand .swiper-button-next:after{font-size: 20px;}
}
/* ==================== 合作伙伴 end ==================== */
/* ==================== 荣誉资质 start ==================== */
.mxw-honor {
  background: url(../image/1c9ba009e734bb99e5483d83fa8984e72ca15edc.png) no-repeat center bottom #fff;
}
.mxw-honor .body {
  position: relative;
}
.mxw-honor .body .swiper-slide img{
  width: auto;
}
.mxw-honor .swiper-button-prev,
.mxw-honor .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.mxw-honor .swiper-button-prev:after,
.mxw-honor .swiper-button-next:after {
  color: #1d2088;
  font-size: 0.7333rem;
}
.mxw-honor .swiper-button-prev {
  left: -1.5rem;
}
.mxw-honor .swiper-button-next {
  right: -1.5rem;
}
@media screen and (min-width: 1200px) {
  .mxw-honor .mxw-box {
    padding-top: 1.1667rem;
    padding-bottom: 1.6667rem;
  }
  .mxw-honor .item {
    padding-top: 0.9rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-honor {
    background-size: 100%;
  }
  .mxw-honor .body .swiper-slide {
    max-width: 102px;
    padding-bottom: 20px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 17px;
  }
}
/* ==================== 荣誉资质 end ==================== */
/* ==================== 新闻资讯 start ==================== */
.mxw-news .mxw-cate {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.mxw-news .mxw-cate .cate-item {
  margin-right: 0.6rem;
  width: 4.8333rem;
  height: 0.8333rem;
  border-radius: 1.6667rem;
  overflow: hidden;
  background-image: linear-gradient(90deg, #c9c9c9 0%, #efefef 100%);
  color: #1d2088;
  text-align: center;
  line-height: 0.8333rem;
  box-shadow: inset 0 0 0.15rem #979797;
}
.mxw-news .mxw-cate .cate-item.active {
  color: #fff;
  background-image: linear-gradient(90deg, #1d2088 0%, #1991e0 100%);
  box-shadow: inset 0 0 0.15rem #1d3095;
}
.mxw-news .mxw-cate .cate-item:last-child {
  margin-right: 0;
}
.mxw-news .recommend-news {
  display: block;
}
.mxw-news .item {
  display: flex;
  align-items: center;
  padding: 0.3333rem 0;
}
.mxw-news .item:hover .desc .text1 {
  color: #1d2088;
}
.mxw-news .item .date {
  text-align: center;
  flex-shrink: 0;
  padding: 0 0.1667rem;
  position: relative;
}
.mxw-news .item .date:after {
  content: "";
  display: block;
  width: 0.0167rem;
  background-color: #dbdbdb;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 1rem;
}
.mxw-news .item .day {
  font-size: 0.4rem;
  color: #323232;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.1667rem;
}
.mxw-news .item .month {
  font-size: 0.2667rem;
  color: #323232;
  line-height: 1.2;
}
.mxw-news .item .desc {
  margin-right: 0.3333rem;
  min-width: 0;
  flex-grow: 1;
  position: relative;
  margin-left: 0.3333rem;
}
.mxw-news .item .desc .text1 {
  font-size: 0.3333rem;
  color: #323232;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
}
.mxw-news .item .desc .text2 {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.2;
}
.mxw-news .top-swiper {
  height: 6.3333rem;
  /* margin-top: -0.5667rem; */
}
.mxw-news .top-swiper .item {
  border-bottom: 0.0167rem solid #dbdbdb;
  padding-right: 1.3333rem;
  position: relative;
  transition: transform 0.4s;
}
.mxw-news .top-swiper .item:after {
  content: "";
  display: block;
  background: url(../image/3b129a9703fe5cc9dcf6ffc92b14caac7f7e18eb.png) no-repeat center;
  width: 0.6833rem;
  height: 0.6833rem;
  background-size: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (min-width: 1200px) {
  .mxw-news .recommend-news {
    width: 36.25%;
    margin-right: 1.0667rem;
  }
  .mxw-news .top-swiper {
    min-width: 0;
    flex-grow: 1;
  }
  .mxw-news .top-swiper .item:hover {
    transform: translateX(-10px);
  }
  .mxw-news .mxw-box {
    padding-top: 0.3333rem;
    padding-bottom: 1.3333rem;
  }
  .mxw-news .news-swiper > .swiper-wrapper > .swiper-slide {
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-news .mxw-cate {
    margin-bottom: 30px;
  }
  .mxw-news .mxw-cate .cate-item {
    padding: 8px 10px;
    height: auto;
    line-height: inherit;
    width: 48%;
    margin-right: 4%;
    font-size: 13px;
  }
  .mxw-news .mxw-cate .cate-item:last-child {
    margin-right: 0;
  }
  .mxw-news .recommend-news {
    border-bottom: 1px solid #dbdbdb;
  }
  .mxw-news .item {
    padding: 15px 0;
  }
  .mxw-news .item .date:after {
    height: 50px;
  }
  .mxw-news .item .date .day {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .mxw-news .item .date .month {
    font-size: 14px;
  }
  .mxw-news .item .desc {
    margin-left: 15px;
  }
  .mxw-news .item .desc .text1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .mxw-news .item .desc .text2 {
    font-size: 14px;
  }
  .mxw-news .top-swiper {
    margin-top: 0;
    height: 160px;
  }
  .mxw-news .top-swiper .item {
    padding-right: 0;
  }
  .mxw-news .top-swiper .item:after {
    display: none;
  }
}
/* ==================== 新闻资讯 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  background: url(../image/607c3508b23cb19d2ac7d5f1bbe06746e82da6ef.jpg) no-repeat center;
  background-size: cover;
}
footer .foot-top > .mxw-box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 0.6rem;
}
footer .foot-top .left {
  margin-right: 1rem;
  width: 5.6667rem;
  flex-shrink: 0;
  border-right: 0.0167rem solid #2a2d82;
  padding-right: 0.9167rem;
}
footer .foot-logo {
  width: 3.5rem;
  margin-bottom: 0.6667rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
footer .head {
  font-size: 0.3333rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  margin-top:-2px;
}
footer .foot-nav {
  width: 3rem;
  margin-right:1rem;
  flex-shrink: 0;
}
footer .foot-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .foot-nav ul li {
  width: 48%;
  font-size: 0.25rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 2.2;
}
footer .foot-nav ul li:nth-child(2n) {
  text-align: right;
}
footer .foot-nav ul a:hover {
  color: #fff;
}
footer .foot-contact {
  width: 7.4667rem;
  padding-left: 1.8rem;
  border-left: 0.0167rem solid #2a2d82;
}
footer .foot-contact .desc {
  font-size: 0.25rem;
  color: rgba(255, 255, 225, 0.48);
  line-height: 2em;
}
footer .mxw-qr {
  width: 2.9333rem;
  margin-left: 1rem;
  flex-shrink: 0;
}
footer .mxw-qr .image {
  width: 2.5333rem;
  display: block;
  margin: 0 auto 0.3rem;
}
footer .mxw-qr .mxw-more {
  width: 100%;
  height: 0.6167rem;
  line-height: 0.6167rem;
  color: #fff;
  text-align: center;
  font-size: 0.3rem;
  font-weight: bold;
  background-color: #1991e0;
  border-radius: 1.6667rem;
  display: block;
}
footer .mxw-qr .mxw-more:hover {
  color: #fff !important;
}
footer .mxw-copyright {
  background-color: #0a0c50;
}
footer .mxw-copyright .mxw-box {
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
  padding: 15px 0 ;
  font-size: 13.998px;
  line-height: 2;
}
footer .mxw-copyright .mxw-box a {
  color: inherit;
}
@media screen and (max-width: 1200px) {
  footer .foot-top > .mxw-box {
    padding: 30px 20px;
    flex-wrap: wrap;
  }
  footer .foot-top .left {
    padding: 0;
    margin-right: 0;
    width: 100%;
    text-align: center;
    border-right: 0;
  }
  footer .head {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
  }
  footer .foot-nav,
  footer .mxw-qr {
    display: none;
  }
  footer .foot-logo {
    padding: 0;
    margin-bottom: 20px;
    display: none;
  }
  footer .foot-logo img {
    width: 150px;
  }
  footer .foot-contact {
    padding: 0;
    border-left: 0;
  }
  footer .foot-contact .desc {
    font-size: 13px;
  }
  footer .mxw-copyright .mxw-box {
    padding: 15px;
    line-height: 2;
    font-size: 12px;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 83.3%;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
}
.mxw-box a:hover {
  color: #1d2088;
}
/* 内页 banner */
.ny-banner img {
  width: 100%;
}
/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1200px) {
  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }
  .mxw-ny-box {
    padding-top: 1.1667rem;
    padding-bottom: 1.1667rem;
    max-width: 72.9%;
  }
}
@media screen and (max-width: 1740px) {
  .mxw-box {
    max-width: 86%;
  }
}
@media screen and (max-width: 1200px) {
  body {
    margin-top: 60px;
  }
  .m-none,
  .pc-nav {
    display: none !important;
  }
  .mxw-box {
    padding: 30px 20px;
    max-width: 100%;
  }
  .mxw-section {
    padding-left: 0;
    padding-right: 0;
  }
  article {
    font-size: 15px;
  }
  .mxw-ny-box {
    max-width: 100%;
    font-size: 0;
    padding: 30px 20px;
  }
}
@media screen and (min-width: 1740px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1200px) {
  html {
    font-size: 50px;
  }
}
/* ==================== 页面自定义样式 end ==================== */
.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:#1d2088;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;}
/* 相册调整 */
.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;}
.swiper-button-next,
.swiper-button-prev,
.swiper-button-next:after,
.swiper-button-prev:after{background-image:none;}
.ny-product-content iframe,
.xypg-right-content iframe{
  width: 10rem!important;
  height: 7rem!important;
}

.xypg-right-content .ueditor_baidumap{width:100%!important;}
.xypg-case-detail .main-img{max-width: 50%;margin: 0 auto;}
@media screen and (min-width: 751px) {
  /* .page-wrap{padding-top:30px;} */
  .easyzoom-flyout img{max-width:inherit;}
  .container{width:100%;max-width:1400px;}
}
@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%;}
    
  .ny-product-content iframe,
  .xypg-right-content iframe{
    width: 100%!important;
    height: 260px!important;
  }
   .mxw-about .left img{
    max-width: 100%;
    height: auto !important;
  }
}