
/* ==================== 重置默认样式 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: #09569c;
  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 ==================== */
.mxw-links {
  border: 1px solid rgba(255, 255, 255, 0.26);
  position: relative;
  padding: 0.3333rem;
}
.mxw-links > a {
  color: #333;
  line-height: 1.2;
  margin-right: 0.1667rem;
  line-height: 1.6;
  font-size: 0.2333rem;
  color: rgba(255, 255, 255, 0.42);
}
.mxw-links > a:hover {
  color: #fff !important;
}
.mxw-links .title {
  display: inline-block;
  font-size: 0.2667rem;
  color: #fff;
  line-height: 1.2;
  cursor: pointer;
  font-weight: bold;
  margin-right: 0.7rem;
}
.mxw-online-links {
  background-color: #fff;
  position: absolute;
  bottom: 100%;
  padding: 10px 15px;
  width: 100%;
  border: 1px solid #ddd;
  display: none;
  z-index: 8;
  max-width: 87.6%;
}
.mxw-online-links a {
  color: #333;
  line-height: 1.6;
  font-size: 0.2333rem;
}
.mxw-online-links a:last-child:after {
  display: none;
}
.mxw-online-links a:after {
  content: ',';
  padding: 0 5px;
}
/* ==================== 头部 start ==================== */
header {
  position: relative;
  z-index: 99;
  width: 100%;
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
header .pc-nav .nav-top > .mxw-box {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .pc-nav .logo {
  width: 700px;
  flex-shrink: 0;
}
header .pc-nav .right {
  display: flex;
  align-items: center;
}
header .pc-nav .mxw-keywords {

  flex-shrink: 0;
  margin-right: 70px;
}
header .pc-nav form {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 100px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  height: 30px;
}
header .pc-nav form input {
  min-width: 0;
  flex-grow: 1;
  padding: 0 15px;
  font-size: 12px;
  color: #333;
}
header .pc-nav form input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
}
header .pc-nav form input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
}
header .pc-nav form input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
}
header .pc-nav form input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
}
header .pc-nav form button {
  flex-shrink: 0;
  width: 50px;
  height: 100%;
  background-color: #5bb332;
  border-radius: 100px;
}
header .pc-nav .list {
  margin-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
header .pc-nav .list a {
  font-size: 12px;
  color: #999;
  line-height: 1.2;
  padding-right: 20px;
}
header .pc-nav .list a:last-child {
  padding-right: 0;
}
header .pc-nav .tel {
  display: flex;
  align-items: center;
}
header .pc-nav .tel img {
  width: 46px;
  flex-shrink: 0;
  margin-right: 15px;
}
header .pc-nav .tel .info {
  min-width: 0;
  flex-grow: 1;
}
header .pc-nav .tel .info p {
  font-size: 13px;
  color: #666;
  line-height: 1.2;
  margin-bottom: 5px;
}
header .pc-nav .tel .info strong {
  font-size: 27px;
  font-weight: bold;
  color: #5bb332;
}
header .pc-nav .nav-bottom {
  background-image: linear-gradient(90deg, #1f336b 0%, #144584 39%, #09569c 52%, #144584 59%, #1f336b 100%);
}
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;
  flex-grow: 1;
}
header .pc-menu > li:after {
  content: "";
  width: 1px;
  height: 28px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
}
header .pc-menu > li:last-child {
  margin-right: 0;
}
header .pc-menu > li:last-child:after {
  display: none;
}
header .pc-menu > li:hover > a {
  padding: 15px 10px;
  font-size: 18px;
  color: #fff !important;
  font-weight: bold;
}
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: 16px;
  color: #fff;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  position: relative;
  padding: 17px 12px;
  line-height: 1.2;
  border-radius: 100px;
}
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: 1470px) {
  header .pc-nav .logo {
    width: 550px;
  }
  header .pc-nav .mxw-keywords {
    margin-right: 30px;
  }
  header .pc-nav .tel .info strong {
    font-size: 25px;
  }
  header .pc-menu > li > a {
    font-size: 15px;
  }
  header .pc-menu > li:after {
    height: 18px;
  }
}
/* ==================== 头部 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: 42px;
  }
  .mxw-mob-nav .menu-btn {
    flex-shrink: 0;
    width: 26px;
    height: 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }
  .mxw-mob-nav .menu-btn i {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 100px;
    background-color: #333;
  }
  .mxw-mob-nav .menus-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 50%;
    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 > a {
    background-color: rgba(0, 0, 0, 0.07);
  }
  .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 {
  height: 100%;
  font-size: 0;
  position: relative;
}
.mxw-banner .banner-swiper {
  height: 100%;
  width: 100%;
}
.mxw-banner .swiper-slide {
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.mxw-banner .swiper-slide img {
  width: 100%;
  height: 100%;
}
.mxw-banner .swiper-pagination {
  width: 100%;
  max-width: 1680px;
  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: 10px;
  height: 10px;
  opacity: 1;
  margin-left: 3px;
  margin-right: 3px;
  background: #fff;
  border-radius: 100%;
  opacity: 0.2;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.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: 100px;
}
.mxw-banner .swiper-button-prev {
  left: 100px;
}
.banner-bottom {
  background-color: #f4f4f4;
}
.banner-bottom > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner-bottom .tel {
  flex-shrink: 0;
  margin-right: 0.8333rem;
  display: flex;
  align-items: center;
}
.banner-bottom .tel .icon {
  width: 1.2rem;
  flex-shrink: 0;
  margin-right: 0.25rem;
}
.banner-bottom .tel .info {
  min-width: 0;
  flex-grow: 1;
}
.banner-bottom .tel .info p {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
}
.banner-bottom .tel .info strong {
  font-size: 0.5rem;
  font-weight: bold;
  color: #333;
  line-height: 1;
  display: block;
}
.banner-bottom .itembox {
  width: 19.3333rem;
  display: flex;
  align-items: stretch;
}
.banner-bottom .item {
  padding-top: 0.4167rem;
  padding-bottom: 0.4167rem;
  width: 25%;
  text-align: center;
  border-left: 0.0167rem solid #e8e8e8;
  border-right: 0.0167rem solid #e8e8e8;
}
.banner-bottom .item .icon {
  width: 0.8333rem;
  display: block;
  margin: 0 auto 0.25rem;
}
.banner-bottom .item .text {
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.4;
}
@media screen and (min-width: 1680px) {
  .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;
  }
  .banner-bottom > .mxw-box {
    flex-wrap: wrap;
  }
  .banner-bottom .tel {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .banner-bottom .tel .icon {
    width: 50px;
    margin-right: 10px;
  }
  .banner-bottom .tel .info p {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .banner-bottom .tel .info strong {
    font-size: 23px;
  }
  .banner-bottom .itembox {
    flex-wrap: wrap;
  }
  .banner-bottom .item {
    padding: 10px;
    border: 0;
    border-right: 1px solid #ddd;
    width: 50%;
  }
  .banner-bottom .item .icon {
    margin-bottom: 5px;
  }
  .banner-bottom .item .text {
    font-size: 14px;
  }
  .banner-bottom .item:nth-child(2n) {
    border-right: 0;
  }
  .banner-bottom .item:nth-child(2) ~ .item {
    border-top: 1px solid #ddd;
  }
}
/* ==================== 轮播图 end ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
  font-size: 0.2rem;
  overflow: hidden;
  margin-bottom: 1rem;
  text-align: center;
}
.mxw-title .text1 {
  font-size: 0.7rem;
  color: #333;
  line-height: 1.2;
  font-weight: bold;
  text-transform: uppercase;
}
.mxw-title .text1 span {
  color: #09569c;
}
.mxw-title .line {
  width: 100%;
  max-width: 9.1667rem;
  height: 0.0167rem;
  position: relative;
  margin: 0.3333rem auto;
  background-color: #333;
}
.mxw-title .line:after {
  content: "";
  display: block;
  width: 0.8333rem;
  height: 0.0833rem;
  background-color: #09569c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mxw-title .text2 {
  font-size: 0.3rem;
  color: #666;
}
@media screen and (max-width: 1200px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-size: 20px;
    line-height: 1.1;
  }
  .mxw-title .line {
    width: 80%;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .mxw-title .line:after {
    width: 20px;
    height: 4px;
  }
  .mxw-title .text2 {
    font-size: 14px;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 关于我们 start ==================== */
.mxw-about {
  background: url(../image/fbb2dad7ef83fd82c5ea1ffe436fd6f86036b1c5.png) no-repeat center bottom;
  background-size: 100%;
}
.mxw-about .image {
  box-shadow: 0rem 0rem 0.2167rem 0rem rgba(10, 43, 89, 0.22);
  border: solid 0.0833rem #fff;
}
.mxw-about .info .text1 {
  font-size: 0.6rem;
  color: #16427f;
  line-height: 1.2;
  font-weight: bold;
}
.mxw-about .info .text2 {
  font-size: 0.36rem;
  color: #363636;
  margin-top: 8px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: capitalize;
}
.mxw-about .info .text2:after {
  content: "";
  display: block;
  width: 0.6167rem;
  height: 0.0667rem;
  background-color: #4bb62e;
  margin-top: 0.3333rem;
  margin-bottom: 0.5333rem;
}
.mxw-about .info .desc {
  font-size: 0.2667rem;
  color: #666;
  line-height: 2em;
  margin-bottom: 1rem;
}
.mxw-about .info .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mxw-about .info .itembox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mxw-about .info .item {
  margin-right: 0.8333rem;
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
}
.mxw-about .info .item img {
  width: 0.5rem;
  flex-shrink: 0;
  margin-right: 0.0833rem;
}
.mxw-about .info .mxw-more {
  width: 0.7rem;
  flex-shrink: 0;
  display: block;
  transition: transform 0.4s;
}
.mxw-about .info .mxw-more:hover {
  transform: translateX(-0.1667rem);
}
@media screen and (min-width: 1200px) {
  .mxw-about > .mxw-box {
    padding-bottom: 2.3333rem;
    padding-top: 0.8333rem;
  }
  .mxw-about .mxw-title {
    margin-bottom: 0.5rem;
  }
  .mxw-about .body {
    display: flex;
    align-items: center;
  }
  .mxw-about .image {
    width: 58.75%;
    flex-shrink: 0;
    margin-right: 0.3333rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-about .image {
    margin-bottom: 30px;
  }
  .mxw-about .info .text1 {
    font-size: 20px;
  }
  .mxw-about .info .text2{font-size: 12px;;}
  .mxw-about .info .text1:after {
    margin-top: 15px;
    margin-bottom: 20px;
    height: 2px;
    width: 30px;
  }
  .mxw-about .info .desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .mxw-about .info .mxw-more {
    display: none;
  }
  .mxw-about .info .itembox {
    width: 100%;
  }
  .mxw-about .info .item {
    width: 32%;
    margin-right: 0;
    font-size: 12px;
  }
  .mxw-about .info .item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
}
/* ==================== 关于我们 end ==================== */
/* ==================== 产品中心 start ==================== */
.mxw-product .mxw-cate {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mxw-product .mxw-cate .cate-item {
  min-width: 3.5rem;
  padding: 0.25rem;
  border-radius: 0.0833rem;
  background-color: #efefef;
  margin-right: 0.5rem;
  text-align: center;
  font-size:0.35rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
}
.mxw-product .mxw-cate .cate-item:last-child {
  margin-right: 0;
}
.mxw-product .mxw-cate .cate-item.active {
  background-color: #09569c;
  color: #fff;
}
.mxw-product .body {
  position: relative;
}
.mxw-product .body .mxw-box{position: relative;}
.mxw-product .product-swiper .image {
  box-shadow: 0rem 0.1333rem 0.2rem 0rem rgba(110, 91, 64, 0.2);
  border-radius: 0.0667rem;
}
.mxw-product .product-swiper .image img{width: auto;}
.mxw-product .product-swiper .bottom {
  /* position: absolute;
  bottom: 0;
  left: 0; */
  position: static;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 9;
}
.mxw-product .product-swiper .bottom .title {
  min-width: 0;
  flex-grow: 1;
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.2;
  text-align: center;
}
.mxw-product .product-swiper .bottom .mxw-more {
  display: none;
  width: 1.5rem;
  height: 0.5rem;
  text-align: center;
  border: 0.0167rem solid #fff;
  color: #fff;
  font-size: 0.2667rem;
  line-height: 0.4667rem;
}
.mxw-product .product-swiper .mxw-more2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.1667rem;
  width: 2.5rem;
  height: 0.8333rem;
  line-height: 0.8333rem;
  text-align: center;
  font-size: 0.3333rem;
  color: #09569c;
  border: 0.0167rem solid;
  border-radius: 0.0833rem;
  margin-top: 0.8333rem;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s;
}
.mxw-product .product-swiper .mxw-more2:hover {
  background-color: #09569c;
  color: #fff;
  box-shadow: 0 0 0.1667rem -0.0333rem #09569c;
  border-color: #09569c;
}
.mxw-product .swiper-button-next,
.mxw-product .swiper-button-prev {
  width: 0.7167rem;
  height: 1.6rem;
  background-color: #efefef;
  border-radius: 0.1667rem;
  margin: 0;
  transform: translateY(-50%);
  top: 50%;
  bottom: auto;
  position: absolute;
}
.mxw-product .swiper-button-next:hover,
.mxw-product .swiper-button-prev:hover {
  background-color: #09569c;
  color: #fff;
}
.mxw-product .swiper-button-next:hover:after,
.mxw-product .swiper-button-prev:hover:after {
  color: #fff;
}
.mxw-product .swiper-button-next:after,
.mxw-product .swiper-button-prev:after {
  font-size: 0.5rem;
  font-weight: bold;
  color: #999;
}
.mxw-product .swiper-button-next {
  right: -1.3333rem;
}
.mxw-product .swiper-button-prev {
  left: -1.3333rem;
}

  .mxw-product .product-swiper .item.active .bottom,
  .mxw-product .product-swiper .item:hover .bottom {
    background: url(../image/94db2d50778b376ca4c547694fbacae7f65cfb37.jpg) no-repeat center;
    background-size: cover;
    padding: 0.6667rem 0.3333rem;
    border-radius: 0rem 0rem 0.0667rem 0.0667rem;
  }
  .mxw-product .product-swiper .item.active .bottom .title ,
  .mxw-product .product-swiper .item:hover .bottom .title {
    color: #fff;
    text-align: left;
    font-weight: bold;
    font-size: 0.4333rem;
  }
  .mxw-product .product-swiper .item.active .bottom .mxw-more,
  .mxw-product .product-swiper .item:hover .bottom .mxw-more {
    display: block;
  }
@media screen and (min-width: 1200px) {
.mxw-product{padding-top:1.3333rem;padding-bottom:1.1667rem;}
  .mxw-product > .mxw-box {
    padding-top: 1.3333rem;
    padding-bottom: 1.1667rem;
  }
  .mxw-product .product-swiper .item {
    display: block;
    position: relative;
    /* padding-bottom: 1.1667rem; */
  }
}
@media screen and (max-width: 1200px) {
  .mxw-product{padding:30px 20px;}
  .mxw-product .body .mxw-box{padding:0;}
  .mxw-product .mxw-cate {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .mxw-product .mxw-cate .cate-item {
    width: 48%;
    min-width: auto;
    margin-right: 0;
    padding: 8px;
    font-size: 12px;
  }
  .mxw-product .mxw-cate .cate-item:nth-child(2n-1) {
    margin-right: 4%;
  }
  .mxw-product .mxw-cate .cate-item:nth-child(2) ~ .cate-item {
    margin-top: 2%;
  }
  .mxw-product .product-swiper .item {
    display: block;
  }
  .mxw-product .product-swiper .item .image {
    margin-bottom: 20px;
  }
  .mxw-product .product-swiper .item .bottom {
    position: static;
  }
  .mxw-product .product-swiper .item .bottom .title {
    font-size: 12px;
  }
  .mxw-product .product-swiper .mxw-more2 {
    margin-top: 20px;
    font-size: 12px;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
    width: 100%;
  }
  .mxw-product .product-swiper .item.active .bottom{padding:10px;}
  .mxw-product .product-swiper .item.active .bottom .title{
    font-size: 14px;
    text-align: center;
    }
  .mxw-product .product-swiper .item.active .bottom .mxw-more{display: none;}
}
/* ==================== 产品中心 end ==================== */
/* ==================== 新闻资讯 start ==================== */
.mxw-news {
  background-color: #f8f8f8;
}
.mxw-news .itembox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mxw-news .item {
  padding-top: 0.3333rem;
  padding-bottom: 0.3333rem;
  border-bottom: 0.0167rem solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.2;
  font-size: 0.3333rem;
}
.mxw-news .item:hover .title {
  transform: translateX(0.1667rem);
  font-weight: bold;
}
.mxw-news .item .title {
  color: #333;
  min-width: 0;
  flex-grow: 1;
  transition: transform 0.4s;
}
.mxw-news .item .time {
  color: #666;
}
@media screen and (min-width: 1200px) {
  .mxw-news .mxw-box {
    padding-top: 0.8333rem;
    padding-bottom: 0.3333rem;
  }
  .mxw-news .item {
    width: 44.6875%;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-news .item {
    width: 100%;
    font-size: 13px;
    padding: 15px 0;
  }
  .mxw-news .item:nth-child(10)~.item {
    display: none;
  }
  .mxw-news .item .time{flex-shrink: 0;}
}
/* ==================== 新闻资讯 end ==================== */
/* ==================== 底部样式 start ==================== */
footer .foot-top {
  background: url(../image/8217040baa968ec1be5cb3dfedca9976525bb342.png) no-repeat center top ;
  background-size: cover;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}
footer .foot-top .top {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: stretch;
}
footer .foot-nav ul {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .foot-nav li {
  width: 49%;
}
footer .foot-nav li:nth-child(2) ~ li {
  margin-top: 0.5rem;
}
footer .foot-nav a {
  display: block;
  color: #fff;
  font-size: 0.2667rem;
}
footer .foot-nav a:hover {
  color: #fff;
}
footer .foot-nav a:nth-child(2) ~ a {
  margin-top: 0.3333rem;
}
footer .foot-contact {
  display: flex;
  align-items: flex-start;
}
footer .foot-contact .foot-qr {
  margin-right: 0.5rem;
  text-align: center;
}
footer .foot-contact .foot-qr img {
  width: 2.55rem;
  flex-shrink: 0;
  margin-bottom: 0.3333rem;
}
footer .foot-contact .foot-qr p {
  font-size: 0.2667rem;
  color: #fff;
}
footer .foot-contact .desc {
  min-width: 0;
  flex-grow: 1;
  font-size: 0.22rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}
footer .foot-contact .desc p {
  margin-bottom: 0.1667rem;
}
footer .foot-contact .desc p:last-child {
  margin-bottom: 0;
}
footer .mxw-copyright {
  background-color: #000d30;
  text-align: center;
}
footer .mxw-copyright > .mxw-box {
  padding-top: 0.1667rem;
  padding-bottom: 0.1667rem;
  font-size: 0.2rem;
  color: #fff;
  line-height: 2em;
}
footer .mxw-copyright a:hover {
  color: #fff;
}
@media screen and (min-width: 1200px) {
  footer .logo,
  footer .foot-nav {
    position: relative;
  }
  footer .logo:before,
  footer .foot-nav:before,
  footer .logo:after,
  footer .foot-nav:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
  footer .logo:before,
  footer .foot-nav:before {
    width: 0.0667rem;
    height: 0.8333rem;
    background-color: #68b843;
    z-index: 9;
  }
  footer .logo:after,
  footer .foot-nav:after {
    width: 0.0167rem;
    height: 100%;
    background-color: #fff;
    right: 0.0167rem;
  }
  footer .logo {
    width: 18%;
  }
  footer .logo img {
    width: 2.8333rem;
  }
  footer .foot-nav {
    width: 35%;
    padding-left: 1.7333rem;
  }
  footer .foot-contact {
    width: 47%;
    padding-left: 0.9rem;
  }
}
@media screen and (max-width: 1200px) {
  footer .foot-top {
    background-image: none;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #243b7b;
  }
  footer .foot-top .top {
    display: block;
    flex-wrap: wrap;
    margin-bottom: 0;
    justify-content: space-between;
    align-items: center;
  }
  footer .foot-top > .mxw-box {
    justify-content: space-between;
  }
  footer .logo {
    width: 25%;
    display: block;
    margin: 0 auto 20px;
  }
  footer .foot-contact {
    width: 100%;
  }
  footer .foot-contact .desc {
    width: 100%;
    font-size: 12px;
    line-height: 1.6em;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 83.3%;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
  font-family: inherit;
}
.mxw-box a:hover {
  color: #09569c;
}
/* 内页 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.3333rem;
    padding-bottom: 0.8334rem;
    max-width: 72.9%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1680px) {
  .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: 1680px) {
  /* 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:#1d3c89;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;}
/* ==================== 内页 - 产品中心 start ==================== */
.ny-product .ny-card{border: 1px solid #eee;margin-bottom: 30px;}
/* .ny-product .ny-card.active{border-color:#1d3c89;}
.ny-product .ny-card.active .head{background-color:#1d3c89;color:#fff;} */
.ny-product .head{width:100%;font-size:16px;font-weight:bold;line-height: 1.2;padding:12px 20px;background-color:#f5f5f5;color:#1d3c89;display: block;}
.ny-product .itembox{padding: 30px;}
.ny-product .item{display: block;font-size:14px;color:#333;line-height:1.8;position: relative;transition: transform .4s,color .4s;}
.ny-product .item:hover{color:#1d3c89;font-weight: bold;}
.ny-product .item:hover:before{background-color:#1d3c89;}
.ny-product .item:before{content:"";display: inline-block;width:6px;height: 6px;background-color:#333;vertical-align: middle;border-radius:100%;margin-right: 5px;}
.relate-product-slick .owl-item .img{display: none;}
.xypg-product-list li{padding-top:0;}
.xypg-product-list{margin:0;}
.xypg-product-list li{width:100%;margin-left:0;margin-right:0;}
.xypg-product-list li .img{display: none;}
.xypg-product-list li h3 a{text-align: left;}
@media screen and (min-width: 1200px) {
  .ny-product .item:hover{transform: translateX(10px);}
}
@media screen and (max-width: 1200px) {
  .ny-product .itembox{padding:15px;}
  .ny-product .item{font-size:12px;}
  .ny-product .head{font-size:14px;padding: 8px 10px;}
  .ny-product .ny-card{margin-bottom: 20px;}
}
/* ==================== 内页 - 产品中心 end ==================== */
@media screen and (min-width: 751px) {
  /* .page-wrap{padding-top:30px;} */
  .easyzoom-flyout img{max-width:inherit;}
  .container{width:100%;max-width:1400px;}
  .xypg-left-nav .xypg-left-subnav{display: block!important;}
}
@media screen and (min-width: 1200px) {
  .wh2,
  .abox1{max-width: 83.3%;}
}
@media screen and (max-width: 1680px) {
  .wh2,
  .abox1{max-width: 100%;}
}
@media screen and (max-width: 751px) {
  .wh2, .abox1{padding:30px 20px;}
  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%;}
}