@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu";
}
*:before,
*:after {
  vertical-align: middle;
  box-sizing: border-box;
}
html {
  margin: 0 auto;
}
ul,
li,
ol {
  list-style: none;
}
em {
  font-style: normal;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-backface-visibility: hidden;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: -webkit-focus-ring-color auto 0;
}
button,
input,
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: #0c5db7;
  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 ==================== */
/* ==================== 头部 start ==================== */
header .welcome {
  background-color: #ececec;
  height: 32px;
  line-height: 32px;
}
header .welcome .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
}
header .welcome .left {
  font-size: 14px;
  line-height: 1.2;
}
header .welcome .right {
  display: flex;
  align-items: center;
  font-size: 13px;
}
header .welcome .right >a {
  padding-left:10px;padding-right:10px;
}
header {
  position: relative;
  z-index: 99;
  width: 100%;
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
header .pc-nav .welcome {
  border-bottom: 1px solid #e5e5e5;
  background-color: #e16f00;
}
header .pc-nav .welcome > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #fff;
  padding: 10px 0;
}
header .pc-nav .welcome a:hover {
  color: #0c5db7;
}
header .pc-nav .nav-top > .mxw-box {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .pc-nav .nav-top .logo {
  width: 600px;
  flex-shrink: 0;
}
header .pc-nav .nav-top .right {
  display: flex;
  align-items: center;
}
header .pc-nav .nav-top .tel {
  display: flex;
  align-items: center;
  margin-right: 25px;
}
header .pc-nav .nav-top .tel img {
  display: block;
  flex-shrink: 0;
  width: 60px;
  margin-right: 15px;
}
header .pc-nav .nav-top .tel .info p {
  font-size: 16px;
  color: #000;
  line-height: 1.2;
  margin-bottom: 5px;
}
header .pc-nav .nav-top .tel .info strong {
  display: block;
  font-size: 33px;
  line-height: 1.2;
  font-weight: bold;
  color: #185da8;
}
header .pc-nav .nav-top .top {
  border: solid 1px #185ea9;
  border-radius: 100px 0 0 100px;
  display: flex;
  align-items: center;
}
header .pc-nav .nav-top .top input {
  width: 210px; font-size: 14px;
  flex-grow: 1;
  padding-left: 20px;
  padding-right: 20px;
}
header .pc-nav .nav-top .top button {
  width: 38px;
  height: 34px;
  background-color: #0c5db7;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .pc-nav .nav-top .tel-right .bottom {
  padding-left: 20px;
  padding-top: 14px;
  font-size: 12px;
}
header .pc-nav .nav-top .tel-right .bottom a {
  color: #333;
  font-size: 12px;
  margin-right: 5px;
  text-decoration: underline;
  display: inline-block;
}
header .pc-nav .nav-bottom {
  background-image: linear-gradient(90deg, #0c54ae 0%, #1080da 20%, #0b54ae 55%, #1080da 86%, #0b54ae 100%);
}
header .pc-menu {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
header .pc-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  flex-grow: 1;
}
header .pc-menu > li:last-child {
  margin-right: 0;
}
header .pc-menu > li:hover > a { 
  background-color: #8bbd2a;
  color: #fff !important;
}
header .pc-menu > li:hover > ul {
  visibility: visible;
  opacity: 1;
}
header .pc-menu > li ul {
  background-color: #fff;
  width: 100%;
  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 { text-transform: uppercase;
  font-size: 18px;
  color: #fff;
  text-align: center;
  z-index: 9;
  position: relative;
  padding: 20px 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:nth-child(2) > ul{ width:150%; left: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%;
  }
}
/* ==================== 头部 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: 40px;
  }
  .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);
  }
  
  
  .search{width: 90%; margin:0 5%; border: solid 1px #185ea9; border-radius: 100px; }
  .search input,.search button{ float:left; line-height:0.75rem;}
  .search input{ width:75%; padding:0 3%; }
  .search button{ width:25%; text-align:center; background:#185ea9; border-top-right-radius: 0.75rem; border-bottom-right-radius: 0.75rem;}
  .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 {
  font-size: 0;
  position: relative;
}
.mxw-banner .swiper-slide {
  overflow: hidden;
}
.mxw-banner .swiper-slide img {
  width: 100%;
}
.mxw-banner .swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 40px;
  right: 50%;
  transform: translateX(50%);
  left: auto;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 7px;
  opacity: 1;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 100px;
  position: relative;
  background: #fff;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0c5db7;
}
.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;
}
.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: 1790px) {
  .mxw-banner img {
    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-keywords {
  position: relative;
  z-index: 99;
  width: 100%;
  border-bottom: 1px solid #e4e4e4;
}
.mxw-keywords .mxw-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 0.2667rem;
  padding-bottom: 0.1667rem;
}
.mxw-keywords .left {
  display: flex;
  align-items: center;
  position: relative;
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.2;
  color: #666;
}
.mxw-keywords .left .icon {
  margin-right: 14px;
}
.mxw-keywords .left strong {
  font-size: 18px;
  color: #666;
  vertical-align: inherit;
}
.mxw-keywords .left span {
  color: #0c5db7;
  vertical-align: inherit;
}
.mxw-keywords .left a {
  font-size: 16px;
  color: #888;
}
.mxw-keywords .left a:after {
  content: "";
  margin-left: 10px;
  margin-right: 10px;
  width: 1px;
  height: 20px;
  background-color: #bebebe;
  display: inline-block;
}
.mxw-keywords .left a:hover {
  color: #0c5db7;
}
.mxw-keywords .left a:last-child::after {
  display: none;
}
.mxw-keywords .right {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  width: 294px;
  height: 46px;
  background-color: #f2f2f2;
  border-radius: 100px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.mxw-keywords .right input {
  width: 240px;
  font-size: 14px;
  color: #333;
  background: none;
  min-width: 0;
  flex-grow: 1;
  padding-left: 20px;
  padding-right: 20px;
  border-right: 1px solid #444;
}
.mxw-keywords .right input::-webkit-input-placeholder {
  /*Webkit browsers*/
  color: #888;
}
.mxw-keywords .right input:-moz-placeholder {
  /*Mozilla Firefox 4 to 8*/
  color: #888;
}
.mxw-keywords .right input::moz-placeholder {
  /*Mozilla Firefox 19+*/
  color: #888;
}
.mxw-keywords .right input:-ms-input-placeholder {
  /*Internet Explorer 10+*/
  color: #888;
}
.mxw-keywords .right button {
  width: 60px;
  border: 0;
  outline: none;
  border-left: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 100%;
  overflow: hidden;
  font-size: 12px;
  border-radius: 0 100px 100px 0;
}
.mxw-keywords .right button img {
  width: 20px;
}
.mxw-keywords .right button .text {
  font-size: 14px;
  padding-left: 5px;
}
/* ==================== 关键词 end ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
  text-align: center;
  margin-bottom: 1rem;
}
.mxw-title .text1 { text-transform: uppercase;
  font-size: 0.8rem;
  color: #333;
}
.mxw-title .text1 strong {
  color: #0c5db7;
}
.mxw-title .text2 {
  margin-top: 0.1667rem;
}
.mxw-title .text2 .text-content {
  display: inline-block;
  padding: 0 0.5rem;
  position: relative;
  font-size: 0.3rem;
  color: #000;
}
.mxw-title .text2 .text-content:before,
.mxw-title .text2 .text-content:after {
  content: "";
  display: block;
  background: url(../images/1cebd01a42fa48f9a90ce63553336cded8eef4da.png) no-repeat center;
  background-size: 100%;
  width: 2.3333rem;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.mxw-title .text2 .text-content:before {
  left: -2.3333rem;
  transform: rotateY(180deg) translateY(-50%);
}
.mxw-title .text2 .text-content:after {
  right: -2.3333rem;
}
@media screen and (max-width: 1200px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-size: 22px;
    line-height: 1.2;
  }
  .mxw-title .text2 {
    margin-top: 5px;
  }
  .mxw-title .text2 .text-content {
    padding: 0 15px;
    font-size: 12px;
  }
  .mxw-title .text2 .text-content:before,
  .mxw-title .text2 .text-content:after {
    width: 100px;
    height: 6px;
  }
  .mxw-title .text2 .text-content:before {
    left: -100px;
  }
  .mxw-title .text2 .text-content:after {
    right: -100px;
  }
}
/* ==================== 通用标题 end ==================== */
.mxw-links {
  z-index: 99;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1.8;
  position: relative;
}
.mxw-links > .mxw-box {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
  justify-content: flex-start;
  padding-top: 0;
  padding-bottom: 15px;
}
.mxw-links > .mxw-box > a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 0.3333rem;
  font-size: 18px;
}
.mxw-links > .mxw-box > a:hover {
  color: #fff !important;
}
.mxw-links > .mxw-box > a:last-child:after {
  display: none;
}
.mxw-links .title {
  cursor: pointer;
  font-size: 18px;
  line-height: 2;
  color: #fff;
}
.mxw-links .title img {
  width: 0.3667rem;
  margin-right: 0.0833rem;
}

.mxw-links .title  a{ font-size: 0.25rem; color: #7ea2d5; margin-right:0.2rem}
.mxw-links .mxw-links-online {
  position: absolute;
  top: 0;
  left: 0%;
  background: #fff;
  padding: 0.0833rem 0.1667rem;
  color: #333;
  font-size: 0.2rem;
  border: 1px solid #ddd;
  transform: translate(0%, -100%);
  display: none;
  width: 100%;
}
.mxw-links .mxw-links-online a {
  padding-right: 0.25rem;
  line-height: 2;
  color: #333 !important;
}
.mxw-links .mxw-links-online a:last-child {
  padding-right: 0;
}
/* ==================== section1 start ==================== */
.mxw-section1 {
  box-shadow: 0.1167rem 0.1333rem 0.1167rem 0rem rgba(180, 204, 224, 0.26);
}
.mxw-section1 .item {
  display: flex;
  align-items: center;
  padding: 0.6667rem 0;
}
.mxw-section1 .item .icon {
  width: 1.1667rem;
  flex-shrink: 0;
  margin-right: 0.3333rem;
}
.mxw-section1 .item .info {
  min-width: 0;
  flex-grow: 1;
}
.mxw-section1 .item .info .text1 { text-transform: uppercase;
  font-size: 0.45rem;
  line-height: 1.2;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.1667rem;
}
.mxw-section1 .item .info .text2 {
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.4;
}
@media screen and (max-width: 1200px) {
  .mxw-section1 > .mxw-box {
    align-items: flex-start;
  }
  .mxw-section1 .item {
    padding: 0;
    flex-wrap: wrap;
  }
  .mxw-section1 .item .icon {
    width: 40px;
    margin: 0 auto 0;
  }
  .mxw-section1 .item .info {
    padding: 0 10px;
  }
  .mxw-section1 .item .info .text1 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 5px;
  }
  .mxw-section1 .item .info .text2 {
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
  }
}
/* ==================== section1 end ==================== */
/* ==================== 产品中心 start ==================== */

.p2a {
    width: 23.21%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.p2a1 {
    width: 100%;
    background-color: #0082db;
    padding: 1.98vw 0 1.56vw;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.p2a1 h3 {
    font-size: 0.7rem;
    margin-bottom: 0.9vw;
}

.p2a1 p {
    font-size: 0.3rem;
}
.p2a2 {
    flex: 1;
    border: solid 1px #ebebeb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 1.15vw 0 1.16vw;
}

.p2a2 li {
    width: 88%;
    line-height: 0.7rem;
    border-radius: 1rem;
    background-color: #eeeeee;
    margin-bottom: 0.125rem;
    position: relative;
}

.p2a2 li:last-child {
    margin-bottom: 0;
}

.p2a2 li a {
    display: block;
    font-size: 0.275rem;
    font-weight: normal;
    color: #444;
    padding-left: 0.4rem;
    padding-right: 0.3rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.p2a2 li::after {
    content: "";
    width: 19px;
    height: 18px;
    border-radius: 3px;
    background: url(../images/ico_pro.png) no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    right: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
}


.p2a3 {
    padding: 1.4vw 0 1.6vw;
    background: url(../images/bg_pro.jpg) no-repeat center center;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.p2a3 h3 {
    font-size: 0.35rem;
    font-weight: normal;
    line-height: 35px;
    background: url(../images/call_pro.png) no-repeat left center;
    padding-left: 0.8rem;
    margin-bottom: 0.5vw;
}

.p2a3 h4 {
    font-size: 0.5rem;
    margin-bottom: 0.7vw;
}

.p2a3 p {
    font-size: 0.3rem;
    line-height: 1.43;
}

.p2b {
    width: 75.21%; margin-left: 1.58%;
    flex-direction: column;
    justify-content: space-between;
}


@media(max-width: 768px) {
    .p2a { width: 100%; }
    
    
    .p2a1 {
        padding: 3vw 0 2.8vw;
    }

    .p2a2 {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        border: none;
        padding: 6vw 0 1vw;

    }

    .p2a2 li {
        width: 48.5%; line-height: 0.75rem;
        margin: 1% 0.5%;
    }

    .p2a2 li:last-child {
        display: none;
    }

    .p2a2 li::after {
        display: none;
    }

    .p2a2 li a {
        padding: 0 5px; font-size: 0.265rem;
        text-align: center;
    }

    .p2a3 {
        display: none;
    }

    .p2-tab {
        width: 100%;
        margin-top: 2rem;
    }
    .p2b{ width:100%; margin-left:0;}
    .mxw-product .item{ width:48%;margin-bottom:3%;}
    .mxw-product .item:nth-child(2n){ margin-left:2%}
    .p2b1 { line-height: 3rem; }

    .p2b1 h3 {
        line-height: 3rem;
    }

    .p2b2 li {
        width: 47.93%;
        margin-bottom: 2%;
    }
}

.mxw-product .item { float: left;
  position: relative;
  border: 0.0167rem solid #999;
}
.mxw-product .item:hover .title {
  background-color: #0c5db7;
  color: #fff;
}
.mxw-product .item:hover .title:after {
  display: inline-block;
}
.mxw-product .item:hover:after {
  display: block;
}
.mxw-product .item:after {
  content: "";
  display: none;
  background: url(../images/544644813aea4fc8d0d7dc269d384f0b551df6c2.png) no-repeat center;
  background-size: 100%;
  width: 2.1667rem;
  height: 2.1667rem;
  position: absolute;
  z-index: 9;
  top: -0.15rem;
  right: -0.2667rem;
}
.mxw-product .item .title {
  line-height: 0.95rem;
  position: relative;
  height: 0.95rem;
  text-align: center;
  background-color: #e0e0e0;
  color: #333;
  font-weight: bold;
}
.mxw-product .item .title:after {
  content: "";
  display: inline-block;
  background: url(../images/e4473e014745f6af649f42be20663e7ce72f4a27.png) no-repeat center;
  width: 0.3333rem;
  height: 0.3333rem;
  margin-left: 0.5rem;
  display: none;
}
@media screen and (min-width: 1200px) {
  .mxw-product > .mxw-box {
    padding-top: 1.1667rem;
  }
  .mxw-product .item {
    width: 31.5%;
  }
  .mxw-product .item:nth-child(3n-1) {
    margin-left: 1.75%;
    margin-right: 1.75%;
  }
  .mxw-product .item:nth-child(3) ~ .item {
    margin-top: 37.998px;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-product .item .title {
    line-height: inherit;
    height: auto;
    padding: 8px 10px;
    font-size: 14px;
  }
}
/* ==================== 产品中心 end ==================== */
/* ==================== 优势 start ==================== */
.mxw-advantage {
  background: url(../images/8b5ac6759d4b6d795996e722c5b0a3871dfdbf7a.jpg) no-repeat center bottom;
  background-size: cover;
}
.mxw-advantage .item {
  display: flex;
  align-items: center;
}
.mxw-advantage .item .icon {
  width: 1.55rem;
  flex-shrink: 0;
  margin-right: -1.1667rem;
  position: relative;
  z-index: 9;
  margin-top: 0.1667rem;
}
.mxw-advantage .item .info {
  flex-grow: 1;
  box-shadow: 0.05rem 0.0667rem 0.2667rem 0rem rgba(100, 130, 166, 0.19);
  padding: 0.3333rem;
  background-color: #fff;
  border-radius: 1.6667rem;
  padding-left: 1.3333rem;
  transition: box-shadow .4s;
}
.mxw-advantage .item .info .text1 {
  font-size: 0.3833rem;
  color: #333;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.1667rem;
}
.mxw-advantage .item .info .text2 {
  font-size: 0.2rem;
  color: #666;
  line-height: 1.8;
}
@media screen and (min-width: 1200px) {
  .mxw-advantage > .mxw-box {
    position: relative;
    padding-top: 1.1667rem;
    padding-bottom: 1.8333rem;
  }
  .mxw-advantage .image {
    width: 12.1333rem;
    margin: 0 auto;
  }
  .mxw-advantage .item {
    position: absolute;
    max-width: 9.2333rem;
    min-width: 7.1667rem;
  }
  .mxw-advantage .item:hover .info{
    box-shadow: 0.05rem 0.0667rem 0.2667rem 0 rgba(25,94,169,0.6);
  }
  .mxw-advantage .item.item1 {
    top: 24%;
    left: 4%;
  }
  .mxw-advantage .item.item2 {
    top: 41%;
    left: 0;
  }
  .mxw-advantage .item.item3 {
    bottom: 29%;
    left: -3%;
  }
  .mxw-advantage .item.item4 {
    bottom: 12%;
    left: 6%;
  }
  .mxw-advantage .item.item5 {
    top: 29%;
    right: -1%;
  }
  .mxw-advantage .item.item6 {
    top: 46%;
    right: -4%;
  }
  .mxw-advantage .item.item7 {
    bottom: 24%;
    right: -8%;
  }
  .mxw-advantage .item.item8 {
    bottom: 6%;
    right: -2%;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-advantage .image {
    width: 40%;
  }
  .mxw-advantage .item .info {
    padding: 0.2rem 0.333rem;
    padding-left: 1.5rem;
  }
  .mxw-advantage .item .info .text1 {
    font-size: 0.33rem;
  }
  .mxw-advantage .item .info .text2 {
    line-height: 1.8;
    font-size: 12px;
    height: 3.6em;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .mxw-advantage .item .icon {
    width: 1.35rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-advantage .image {
    width: 100%;
    margin-bottom: 30px;
  }
  .mxw-advantage .item {
    background-color: #fff;
    padding: 12px 10px;
    border-radius: 10px;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.2);
  }
  .mxw-advantage .item:last-child {
    margin-bottom: 0;
  }
  .mxw-advantage .item .icon {
    width: 50px;
    margin-right: 10px;
  }
  .mxw-advantage .item .info {
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
  }
  .mxw-advantage .item .info .text1 {
    font-size: 16px;
    line-height: 1.2;
  }
}
/* ==================== 优势 end ==================== */
/* ==================== 关于我们 start ==================== */
.mxw-about {
  background: url(../images/3c656d409321be16bb2363f13897dc40609cc56b.jpg) no-repeat center top;
  background-size: 100% auto;
}
.mxw-about .body {
  display: flex;
  align-items: center;
  background-color: #0c3971;
  overflow: hidden;
}
.mxw-about .body .info {
  padding-right: 1.6667rem;
  padding-left: 0.6667rem;
}
.mxw-about .body .info .text1 {
  font-size: 0.6333rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
}
.mxw-about .body .info .text2 {
  margin-top: 0.1667rem;
  font-size: 0.3167rem;
  color: #fff;
  line-height: 1.2;
  display: inline-block;
  position: relative;
  padding-right: 0.2333rem;
}
.mxw-about .body .info .text2:after {
  content: "";
  display: block;
  background: url(../images/1cebd01a42fa48f9a90ce63553336cded8eef4da.png) no-repeat center;
  background-size: 100%;
  width: 2.3333rem;
  height: 0.2rem;
  position: absolute;
  right: -2.3333rem;
  top: 50%;
  transform: translateY(-50%);
}
.mxw-about .body .info .desc {
  font-size: 0.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2.2;
  text-align: justify;
  margin-top: 0.6667rem;
  height: 8.8em;
}
.mxw-about .body .info .mxw-more {
  width: 2.4rem;
  height: 0.75rem;
  border: 0.0167rem solid #fff;
  line-height: 0.75rem;
  text-align: center;
  font-size: 0.3rem;
  color: #fff;
  display: block;
  margin-top: 1.3333rem;
  transition: transform .4s;
}
.mxw-about .body2 {
  background-color: #0c3971;
  position: relative;
  padding: 0.3333rem 1.6667rem;
}
.mxw-about .body2 .image{display: block;}
.mxw-about .body2 .mxw-btn-prev,
.mxw-about .body2 .mxw-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.mxw-about .body2 .mxw-btn-prev {
  left: 0.3333rem;
}
.mxw-about .body2 .mxw-btn-next {
  right: 0.3333rem;
  transform: rotateY(180deg) translateY(-50%);
}
@media screen and (min-width: 1200px) {
  .mxw-about > .mxw-box {
    padding-top: 1.9167rem;
  }
  .mxw-about .body {
    background-color: #0c3971;
  }
  .mxw-about .body .image {
    width: 47.4%;
    flex-shrink: 0;
  }
  .mxw-about .body .info .mxw-more:hover{
    transform: translateX(10px);
  }
}
@media screen and (max-width: 1680px) {
  .mxw-about .body .info .text1 {
    font-size: 0.55rem;
  }
  .mxw-about .body .info .mxw-more {
    margin-top: 0.63rem;
  }
}
@media screen and (max-width: 1200px) {
  
.mxw-about .body2 .mxw-btn-prev,
.mxw-about .body2 .mxw-btn-next{display: none;}
  .mxw-about > .mxw-box {
    padding-bottom: 0;
  }
  .mxw-about .body {
    flex-wrap: wrap;
  }
  .mxw-about .body .image {
    width: 100%;
  }
  .mxw-about .body .info {
    padding: 20px;
  }
  .mxw-about .body .info .text1 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .mxw-about .body .info .text2 {
    margin-top: 0;
    font-size: 12px;
  }
  .mxw-about .body .info .desc {
    margin-top: 20px;
    font-size: 12px;
  }
  .mxw-about .body .info .mxw-more {
    width: 100%;
    font-size: 12px;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
    margin-top: 20px;
  }
  .mxw-about .body2 {
    padding: 10px 20px;
  }
}
/* ==================== 关于我们 end ==================== */
/* ==================== 新闻资讯 start ==================== */
.mxw-news .itembox {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.mxw-news .item {
  padding: 0.3333rem 0.4167rem;
  transition: box-shadow 0.4s;
}
.mxw-news .item:hover {
  box-shadow: 0rem 0rem 0.45rem 0rem rgba(100, 130, 166, 0.13);
}
.mxw-news .item .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mxw-news .item .title .text1 {
  font-size: 0.4rem;
  color: #333;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.1667rem;
}
.mxw-news .item .title .date {
  font-size: 0.2333rem;
  color: #999;
}
.mxw-news .item .desc {
  font-size: 0.2333rem;
  color: #666;
  line-height: 1.8;
  text-align: justify;
}
.mxw-news .item .desc span {
  color: #256dcf;
}
.mxw-news .bottom {
  margin-top: 0.7333rem;
  display: flex;
  align-items: stretch;
}
.mxw-news .bottom .left {
  width: 5.2rem;
  flex-shrink: 0;
  margin-right: 0.3333rem;
}
.mxw-news .bottom .item2 {
  padding: 0.5rem;
  display: block;
  background-color: #f2f2f2;
}
.mxw-news .bottom .item2:hover .title {
  color: #0c5db7;
}
.mxw-news .bottom .item2:hover .desc {
  color: #333;
}
.mxw-news .bottom .item2 .title,
.mxw-news .bottom .item2 .desc {
  position: relative;
  padding-left: 0.6667rem;
}
.mxw-news .bottom .item2 .title:after,
.mxw-news .bottom .item2 .desc:after {
  display: block;
  width: 0.4333rem;
  height: 0.4333rem;
  line-height: 0.4333rem;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.25rem;
  color: #fff;
  font-weight: 400;
  text-align: center;
}
.mxw-news .bottom .item2 .title {
  font-size: 0.3667rem;
  color: #333;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.mxw-news .bottom .item2 .title:after {
  content: "Q";
  background-color: #2367b3;
}
.mxw-news .bottom .item2 .desc {
  font-size: 0.25rem;
  color: #666;
  line-height: 1.8em;
  height: 5.4em;
}
.mxw-news .bottom .item2 .desc:after {
  content: "A";
  background-color: #059c28;
}
.mxw-news .bottom .swiper-button-next {
  width: 0.9rem;
  background-color: #ededed;
  position: static;
  margin: 0;
  height: auto;
  display: block;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.3333rem;
}
.mxw-news .bottom .swiper-button-next:hover {
  background-color: #d5d5d5;
}
.mxw-news .bottom .swiper-button-next:hover:after {
  color: #fff;
}
.mxw-news .bottom .swiper-button-next:after {
  font-size: 0.5rem;
  font-weight: bold;
  color: #bababa;
}
.mxw-news .mxw-more {
  display: block;
  width: 2.3333rem;
  height: 0.75rem;
  line-height: 0.75rem;
  background-color: #256dcf;
  color: #fff;
  border-radius: 0.0833rem;
  text-align: center;
  margin: 0 auto;
  margin-top: 0.6667rem;
  transition: box-shadow 0.4s;
}
.mxw-news .mxw-more:hover {
  color: #fff;
  box-shadow: 0 0 0.1667rem -0.0333rem #0c5db7;
}
@media screen and (min-width: 1200px) {
  .mxw-news > .mxw-box {
    padding-top: 1.1667rem;
  }
  .mxw-news .item {
    width: 49%;
  }
  .mxw-news .item:nth-child(2n) {
    margin-left: 2%;
  }
  .mxw-news .item:nth-child(2) ~ .item {
    margin-top: 0.3333rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-news .item {
    padding: 15px;
    border: 1px solid #eee;
  }
  .mxw-news .item .title {
    display: block;
    margin-bottom: 10px;
  }
  .mxw-news .item .title .text1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .mxw-news .item .desc {
    height: 3.6em;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  .mxw-news .bottom {
    flex-wrap: wrap;
  }
  .mxw-news .bottom .left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .mxw-news .bottom .left img {
    width: 100%;
  }
  .mxw-news .bottom .item2 {
    padding: 15px;
  }
  .mxw-news .bottom .item2 .title {
    font-size: 16px;
    padding: 2px 0;
    margin-bottom: 10px;
  }
  .mxw-news .bottom .item2 .desc {
    font-size: 12px;
    height: 3.6em;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  .mxw-news .bottom .item2 .title,
  .mxw-news .bottom .item2 .desc {
    padding-left: 30px;
  }
  .mxw-news .bottom .item2 .title:after,
  .mxw-news .bottom .item2 .desc:after {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
  }
  .mxw-news .mxw-more {
    width: 100%;
    font-size: 12px;
    height: auto;
    padding: 8px 10px;
    line-height: inherit;
    margin-top: 20px;
  }
}
/* ==================== 新闻资讯 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  background: url(../images/e2651ed33bdf6f440e0c361e0fddf08905b09eb2.png) no-repeat center top #fff;
  min-height: 5.85rem;
  padding-top: 1.0167rem;
  background-size: cover;
}
#xy-share{
  display: none;
}
footer .foot-content > .mxw-box {
  color: #fff;
  border-top: 0.0167rem solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: flex-start;
  padding: 0.7rem 0 0.3333rem;
  font-size:0.2667rem;
}
footer .foot-content .foot-logo {
  width: 3.1667rem;
  flex-shrink: 0;
  margin-right: 1.8333rem;
  padding-top: 0.3333rem;
}
footer .foot-content .foot-nav {

  margin-right: 1.3333rem;
  width: 4.1667rem;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
footer .foot-content .foot-nav > a {
  color: #fff;
  font-size: 0.2667rem;
  line-height: 1.2;
  width: 48%;
  display: block;
}
footer .foot-content .foot-nav > a:nth-child(2) ~ a {
  margin-top: 0.3333rem;
}
footer .foot-content .mxw-copyright {
  line-height: 2;
  padding: 0.4167rem 1rem;
  border-left: 0.0167rem solid rgba(255, 255, 255, 0.2);
  border-right: 0.0167rem solid rgba(255, 255, 255, 0.2);
}
footer .foot-content .foot-contact {
  padding-top: 0.167rem;
  line-height: 2;
  width: 6.3333rem;
  flex-shrink: 0;
  padding-left: 1.1667rem;
}
@media screen and (max-width: 1680px) {
footer .foot-content .foot-logo{
  margin-right: 0.9rem;
}
footer .foot-content .foot-nav{margin-right: 0.5rem;}
footer .foot-content .foot-contact{padding-left:0.6rem;}
footer .foot-content .mxw-copyright{padding-left:0.5rem;padding-right:0.5rem;}
}
@media screen and (max-width: 1200px) {
  footer {
    min-height: auto;
    padding-top: 0;
    background-size: cover;
  }
  footer .foot-content {
    padding-top: 0;
    width: 100%;
    padding: 0 20px;
  }
  footer .foot-content > .mxw-box {
    flex-wrap: wrap;
    border-top: 0;
  }
  footer .foot-content .foot-logo {
    padding-top: 0;
    width: 70px;
    margin: 0 auto 20px;
  }
  footer .foot-content .foot-contact {
    padding: 0;
    padding-bottom: 20px;
    width: 100%; font-size: 0.215rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  footer .foot-content .mxw-copyright {
    order: 2;
    text-align: center;
    font-size: 15px;
    padding: 0;
    border: 0;
    line-height: 1.8;
    padding-top: 20px;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 84.3%;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0; text-align: center;
  font-family: inherit;
}
.mxw-box a:hover {
  color: #0c5db7;
}
/* 内页 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.65rem; letter-spacing: 3px;}
#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; background:#0c5db7}
.product-detail-tab .product-detail-tabli li{background:#fff;color:#333;font-size:0.3rem; line-height:0.75rem; font-weight:bold;}
.product-detail-tabcon{font-size:15px;line-height:2;text-align:justify;}
.product-detail-tabcon table,.product-detail-tabcon table td{border:1px solid #ccc !important; padding:1% 2%; line-height:0.45rem;}
.page-banner .nybt{display: block;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
  /* .page-wrap{padding-top:30px;} */
  .easyzoom-flyout img{max-width:inherit;}
  .container{width:100%;max-width:1400px;}
}
@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%;}
}




.tab { width: 100%; background-size: cover;}
.tab .box {
    width: 100%;
    position: relative;
    margin: 0 auto;
    height: auto; overflow: hidden;
}
.tab .box .menus {
    width: 23%;
    height: 8.95rem;
    background: rgb(92,94,103);
    float: left;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
}
.tab .box .menus li { cursor: pointer;
    width: 100%;
    height: 0.85rem;
    background: rgb(92,94,103);
    font-size: 0.3rem;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #6a6a6b; overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
    line-height: 0.85rem;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.tab .box .menus li:nth-child(7) {
    border-bottom: none;
}
.tab .box .bg {
    height: 1.35rem !important;
    background: rgb(0,159,233) !important;
    line-height: 1.35rem !important;
}
.tab .right {
    float: left;
    width: 77%;
    height: 8.95rem;
    overflow: hidden;
    border-top-right-radius: 10px; border-bottom-right-radius: 10px;
    background: rgba(0,0,0,0.5);
}
.tab .tab_right {
    width: 100%;
    height: 8.95rem;
    color: #fff;
    text-align: center;

    position:relative;
}
.tab .tab_right img {
    width: 100%;
    position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
}
.tab .scroll {
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

@media screen and (max-width: 751px) {
    .tab .box .menus,.tab .right{ width:100%; height:auto}
    .tab .right{ height:3.95rem; }
    .tab .tab_right{ height:3.95rem}
}
