
/* ==================== 重置默认样式 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 {
  border: 0;
  outline: none;
  background: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th,
td {
  vertical-align: middle;
}
i {
  font-style: inherit;
}
#map label {
  max-width: initial;
}
#map img {
  max-width: initial;
}
/* ==================== 重置默认样式 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: #ea1c0f;
  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: 751px) {
  #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: 751px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 > .u-col {
    width: 48%;
  }
  .u-row-2 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-2 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
  .u-row-3 > .u-col {
    width: 32%;
  }
  .u-row-3 > .u-col:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .u-row-3 > .u-col:nth-child(3) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-4 > .u-col {
    width: 23.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: 751px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 .u-col {
    width: 100%;
  }
  .u-row-2 .u-col:nth-child(1) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-3 > .u-col,
  .u-row-4 > .u-col,
  .u-row-5 > .u-col,
  .u-row-6 > .u-col {
    width: 48%;
  }
  .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 ==================== */
/* 标签页 */
.mxw-tabs {
  padding-left: 0;
  padding-right: 0;
}
.mxw-tabs .mxw-tabs-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.mxw-tabs .mxw-tabs-wrap {
  position: relative;
  display: flex;
  overflow-x: scroll;
  max-width: 100%;
  align-items: center;
  justify-content: flex-start;
}
.mxw-tabs .mxw-tabs-wrap::-webkit-scrollbar {
  display: none;
}
.mxw-tabs .mxw-tabs-item {
  flex-shrink: 0;
  text-align: center;
  cursor: pointer;
  font-size: 0.3rem;
  white-space: nowrap;
  background: #eaeaea;
  color: #333;
  padding: 0rem 0.5rem;
  margin-right: 0.9rem;
  line-height: 0.6667rem;
}
.mxw-tabs .mxw-tabs-item:last-child {
  margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
  background: #ea1c0f;
  color: #fff;
}
@media screen and (max-width: 751px) {
  .mxw-tabs .mxw-tabs-header {
    margin-bottom: 20px;
  }
  .mxw-tabs .mxw-tabs-item {
    font-size: 14px;
    padding: 0 20px;
    margin-right: 10px;
  }
  .mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
  }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
  position: relative;
  z-index: 99;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e1e1e1;
}
.mxw-keywords .mxw-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.mxw-keywords .left {
  position: relative;
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.2;
  color: #666;
}
.mxw-keywords .left strong {
  vertical-align: inherit;
}
.mxw-keywords .left span {
  color: #ea1c0f;
  vertical-align: inherit;
}
.mxw-keywords .left a:after {
  content: ",";
  padding-left: 5px;
  padding-right: 5px;
}
.mxw-keywords .left a:hover {
  color: #ea1c0f;
}
.mxw-keywords .left a:last-child {
  padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
  display: none;
}
.mxw-keywords .right form {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  width: 300px;
  border-radius: 100px;
  overflow: hidden;
  padding: 2px;
  padding-left: 20px;
  border: 1px solid #e6e6e6;
}
.mxw-keywords .right input {
  font-size: 14px;
  color: #333;
  background-color: #fff;
}
.mxw-keywords .right input::-webkit-input-placeholder {
  /*Webkit browsers*/
  color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
  /*Mozilla Firefox 4 to 8*/
  color: #999;
}
.mxw-keywords .right input::moz-placeholder {
  /*Mozilla Firefox 19+*/
  color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
  /*Internet Explorer 10+*/
  color: #999;
}
.mxw-keywords .right button {
  border: 0;
  outline: none;
  border-left: 0;
  cursor: pointer;
  background: #ea1c0f;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
}
.mxw-keywords .right button .text {
  font-size: 14px;
  padding-left: 5px;
}
/* ==================== 关键词 end ==================== */
/* ==================== 头部 start ==================== */
header {
  width: 100%;
  z-index: 99;
  transition: all 0.4s;
  position: relative;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.09);
  background-color:#fff;
}
header .welcome {
  border-bottom: 1px solid #ededed;
  height: 40px;
  line-height: 40px;
}
header .welcome .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  font-size: 14px;
}
header .welcome .other {
  font-size: 13px;
}
header .pc-nav .top > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .pc-nav .top .logo {
  width: 400px;
  flex-shrink: 0;
}
header .pc-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .pc-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 30px;
}
header .pc-menu > li:first-child {
  padding-left: 0;
}
header .pc-menu > li:last-child {
  padding-right: 0;
}
header .pc-menu > li.active > a,
header .pc-menu > li:hover > a {
  color: #ea1c0f !important;
}
header .pc-menu > li.active > a:after,
header .pc-menu > li:hover > a:after {
  width: 100%;
}
header .pc-menu > li.active > ul,
header .pc-menu > li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
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: 0.0167rem;
  background-color: #eee;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
header .pc-menu > li ul a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  font-size: 0.2333rem;
  color: #333;
  line-height: 1.2;
  padding: 0.2333rem;
}
header .pc-menu > li > a {
  font-size: 18px;
  color: #333;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  position: relative;
  padding: 45px 0;
  line-height: 1.2;
  width: 100%;
}
header .pc-menu > li > a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transition: width 0.4s;
  transform: translateX(-50%);
  background-color: #ea1c0f;
}
header .pc-menu > li > ul {
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
header .pc-menu > li > ul > li > a.active,
header .pc-menu > li > ul > li > a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
header .pc-menu > li > ul > li > a.active:after,
header .pc-menu > li > ul > li > a:hover:after {
  display: none;
}
header .pc-menu > li > ul > li > a:last-child:after {
  display: none;
}
header .pc-menu > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 0.0167rem solid #ddd;
}
header .pc-menu > li > ul > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 0.0167rem solid #ddd;
}
@media screen and (max-width: 1680px) {
  header .mxw-box {
    max-width: 92%;
  }
}
@media screen and (max-width: 1600px) {
  header .pc-menu > li {
    padding: 0 20px;
  }
  header .pc-menu > li > a {
    font-size: 16px;
    padding: 35px 0;
  }
}
@media screen and (max-width: 1300px) {
  header .pc-menu > li {
    padding: 0 15px;
  }
  header .pc-menu > li > a {
    font-size: 15px;
    padding: 30px 0;
  }
}
/* ==================== 头部 end ==================== */
/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
  header {
    z-index: 99999;
  }
  .mxw-mob-nav .head {
    font-size: 0;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    max-width: 750px;
    width: 100%;
    transform: translateX(-50%);
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 99;
    background-color: #fff;
  }
  .mxw-mob-nav .logo {
    display: block;
    flex-shrink: 0;
  }
  .mxw-mob-nav .logo img {
    height: 30px;
  }
  .mxw-mob-nav .menu-btn {
    flex-shrink: 0;
    width: 26px;
    height: 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }
  .mxw-mob-nav .menu-btn i {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 100px;
    background-color: #333;
  }
  .mxw-mob-nav .menus-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 50%;
    max-width: 450px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transform: translateX(50%);
  }
  .mxw-mob-nav .menus-box.active {
    visibility: visible;
    opacity: 1;
  }
  .mxw-mob-nav .menus-box.active .menus {
    transform: translateX(0);
  }
  .mxw-mob-nav .menus {
    width: 60%;
    height: 100%;
    margin-right: 0;
    margin-left: auto;
    background: #fff;
    transform: translateX(100%);
    transition: all 0.5s;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
  }
  .mxw-mob-nav .menus > ul {
    width: 100%;
    overflow: auto;
  }
  .mxw-mob-nav .menus > ul > li.active > ul {
    display: block;
  }
  .mxw-mob-nav .menus > ul > li > a {
    display: block;
    width: 100%;
    padding: 15px 18px;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mxw-mob-nav .menus > ul > li > a.sub:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-top: 4px solid #555;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 0;
    margin-left: 10px;
  }
  .mxw-mob-nav .menus > ul > li > ul {
    display: none;
    padding: 0px 24px;
  }
  .mxw-mob-nav .menus > ul > li > ul > li > a {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 36px;
    height: 36px;
    border-bottom: 1px solid #f3f3f3;
  }
  .mxw-mob-nav .menus-head {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8F8F8;
    border-bottom: 0.6px solid #eee;
    font-size: 16.8px;
    font-weight: bold;
    line-height: 54px;
    height: 54px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .mxw-mob-nav .menus-head .text {
    color: #333;
    line-height: 1.2;
  }
  .mxw-mob-nav .menus-head .mxw-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none;
    position: relative;
    transform: rotate(45deg);
  }
  .mxw-mob-nav .menus-head .mxw-close:before,
  .mxw-mob-nav .menus-head .mxw-close:after {
    content: "";
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
  }
  .mxw-mob-nav .menus-head .mxw-close:before {
    width: 2px;
    height: 100%;
  }
  .mxw-mob-nav .menus-head .mxw-close:after {
    width: 100%;
    height: 2px;
  }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
  font-size: 0;
  position: relative;
}
.mxw-banner .swiper-slide {
  overflow: hidden;
}
.mxw-banner .swiper-slide img {
  width: 100%;
}
.mxw-banner .swiper-pagination {
  width: 100%;
  max-width: 1680px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 40px;
  right: 50%;
  transform: translateX(50%);
  left: auto;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
  width: 0.9rem;
  height: 3px;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  margin-left: 3px;
  margin-right: 3px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ea1c0f;
}
.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;
  /* 设置按钮大小 */
}
.mxw-banner .banner-text {
  z-index: 8;
  width: 80%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  left: 50%;
  color: #fff;
  text-align: center;
}
.mxw-banner .banner-text .text1 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 30px;
}
.mxw-banner .banner-text .text2 {
  font-size: 16px;
  opacity: 0.67;
  margin-bottom: 50px;
}
.mxw-banner .banner-text .mxw-more {
  width: 190px;
  height: 45px;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  background-color: #ea1c0f;
  line-height: 45px;
  display: block;
}
@media screen and (min-width: 1680px) {
  .banner-swiper {
    min-width: 1920px;
  }
}
@media screen and (max-width: 751px) {
  .mxw-banner .swiper-pagination {
    padding-right: 0px;
    bottom: 10px;
    max-width: 80%;
  }
  .mxw-banner .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    font-size: 14px;
    width: 8px;
    height: 8px;
  }
  .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-size: 18px;
  }
  .mxw-banner .swiper-button-next,
  .mxw-banner .swiper-button-prev {
    display: none;
  }
  .mxw-banner .banner-text {
    width: 90%;
  }
  .mxw-banner .banner-text .text1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .mxw-banner .banner-text .text2 {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .mxw-banner .banner-text .mxw-more {
    width: auto;
    height: auto;
    line-height: inherit;
    font-size: 12px;
    padding: 6px 20px;
  }
}
/* ==================== 轮播图 end ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
  margin-bottom: 1rem;
  overflow: hidden;
  text-align: center;
}
.mxw-title .text1 {
  font-size: 0.6667rem;
  font-weight: bold;
  color: #333;
  opacity: 0.1;
  text-transform: uppercase;
  line-height: 1.2;
}
.mxw-title .text2 {
  font-size: 0.6667rem;
  color: #333;
  line-height: 1.2;
  font-weight: bold;
  margin-top: -0.5rem;
}
@media screen and (max-width: 751px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-size: 18px;
    margin-bottom: 0px;
  }
  .mxw-title .text2 {
    font-size: 20px;
    margin-top: 0;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 推荐产品 start ==================== */
.mxw-recommend-product .item {
  border-radius: 0.0833rem;
  overflow: hidden;
  background-color: #ea1c0f;
  display: flex;
  align-items: center;
  padding: 0.8333rem 1.3333rem;
}
.mxw-recommend-product .item:nth-child(2n) .info {
  order: 2;
}
.mxw-recommend-product .item .info {
  min-width: 0;
  flex-grow: 1;
  color: #fff;
}
.mxw-recommend-product .item .info .text1 {
  font-size: 0.3rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.mxw-recommend-product .item .info .text2 {
  font-size: 0.6333rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.mxw-recommend-product .item .info .text3 {
  font-size: 0.3rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0.3333rem;
}
.mxw-recommend-product .item .info .mxw-more {
  font-size: 0.2667rem;
  border-bottom: 0.0167rem solid #fff;
  display: table;
}
.mxw-recommend-product .item .image {
  flex-shrink: 0;
  width: 3.8333rem;
  background: url(../image/411dd148b1df602436bd6898fd0b6aba18d5cee8.png) no-repeat center;
  background-size: contain;
}
.mxw-recommend-product .item .image .mxw-image {
  overflow: visible;
}
@media screen and (min-width: 751px) {
  .mxw-recommend-product .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
  }
  .mxw-recommend-product .swiper-slide {
    padding-top: 20px;
  }
  .mxw-recommend-product .item {
    transition: transform 0.4s;
    max-width: 13.1667rem;
  }
  .mxw-recommend-product .item:hover {
    transform: translateY(-20px);
  }
  .mxw-recommend-product .item:nth-child(2n-1) .image {
    margin-left: 0.6667rem;
  }
  .mxw-recommend-product .item:nth-child(2n) .image {
    margin-right: 0.6667rem;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-recommend-product .item .info .text2 {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-recommend-product .item {
    padding: 20px;
    flex-wrap: wrap;
  }
  .mxw-recommend-product .item .info .text1 {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .mxw-recommend-product .item .info .text2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .mxw-recommend-product .item .info .text3 {
    font-size: 12px;
    line-height: 1.8;
  }
  .mxw-recommend-product .item .info .mxw-more {
    font-size: 12px;
  }
  .mxw-recommend-product .item .image {
    margin: 0 auto;
    order: 3;
    margin-top: 20px;
  }
}
/* ==================== 推荐产品 end ==================== */
/* ==================== 后台必备单品 start ==================== */
.mxw-product2 .swiper-slide {
  display: block;
}
.mxw-product2 .image {
  display: block;
  margin: 0 auto 0.6667rem;
  overflow: visible;
}
.mxw-product2 .info {
  text-align: center;
  color: #333;
}
.mxw-product2 .info .text1 {
  font-size: 0.3333rem;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.mxw-product2 .info .text2 {
  font-size: 0.3rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.mxw-product2 .info .mxw-more {
  width: 2.1667rem;
  height: 0.5rem;
  line-height: 0.5rem;
  background-color: #ea1c0f;
  text-align: center;
  font-size: 0.2667rem;
  color: #fff;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 751px) {
  .mxw-product2 .mxw-box {
    padding-top: 0;
    padding-bottom: 1.6667rem;
  }
  .mxw-product2 .product2-swiper {
    padding-top: 40px;
  }
  .mxw-product2 .image {
    width: 5.3333rem;
  }
  .mxw-product2 .swiper-slide {
    max-width: 33.333%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-product2 .swiper-slide {
    max-width: 50%;
  }
  .mxw-product2 .image {
    margin-bottom: 20px;
  }
  .mxw-product2 .info .text1 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.6;
  }
  .mxw-product2 .info .text2 {
    font-size: 12px;
  }
  .mxw-product2 .info .mxw-more {
    font-size: 12px;
    width: 100%;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
  }
}
/* ==================== 后台必备单品 end ==================== */
/* ==================== 特色产品 start ==================== */
.mxw-hot-product .info .text1 {
  font-size: 0.3rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  color: #787878;
}
.mxw-hot-product .info .text2 {
  font-size: 0.8333rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 0.4167rem;
  line-height: 1.2;
}
.mxw-hot-product .info .text3 {
  font-size: 0.2667rem;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
  letter-spacing: 2px;
}
.mxw-hot-product .info .text3:after {
  content: "";
  display: block;
  width: 1.3333rem;
  height: 0.0333rem;
  background-color: #909090;
  margin-top: 0.5rem;
}
.mxw-hot-product .info .text4 {
  font-size: 0.3333rem;
  color: #666;
  line-height: 1.8;
  text-align: justify;
}
.mxw-hot-product .info .mxw-more {
  display: block;
  width: 2.1667rem;
  height: 0.5rem;
  line-height: 0.5rem;
  background-color: #ea1c0f;
  text-align: center;
  font-size: 0.2667rem;
  color: #fff;
  margin-top: 0.8333rem;
}
.mxw-hot-product .swiper-button-next,
.mxw-hot-product .swiper-button-prev {
  width: 0.8333rem;
  height: 1.5rem;
  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-hot-product .swiper-button-next.swiper-button-disabled,
.mxw-hot-product .swiper-button-prev.swiper-button-disabled {
  display: none;
}
.mxw-hot-product .swiper-button-next:after,
.mxw-hot-product .swiper-button-prev:after {
  color: #fff;
  font-size: 0.3333rem;
}
.mxw-hot-product .swiper-button-next {
  right: 0.6667rem;
}
.mxw-hot-product .swiper-button-prev {
  left: 0.6667rem;
}
@media screen and (min-width: 751px) {
  .mxw-hot-product .info .mxw-more {
    transition: transform 0.4s;
  }
  .mxw-hot-product .info .mxw-more:hover {
    transform: translateX(10px);
  }
  .mxw-hot-product .mxw-box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 21.6667rem;
  }
  .mxw-hot-product .info {
    max-width: 9rem;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-hot-product .mxw-box {
    max-width: 86%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-hot-product .mxw-box {
    max-width: 100%;
  }
  .mxw-hot-product .info .text1 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .mxw-hot-product .info .text2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .mxw-hot-product .info .text3 {
    font-size: 12px;
    letter-spacing: 0;
  }
  .mxw-hot-product .info .text3:after {
    margin-top: 15px;
  }
  .mxw-hot-product .info .text4 {
    font-size: 14px;
  }
  .mxw-hot-product .info .mxw-more {
    font-size: 12px;
    width: 100%;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
    margin-top: 20px;
  }
}
/* ==================== 特色产品 end ==================== */
/* ==================== 产品展示 start ==================== */
.mxw-show-product .itembox {
  padding-bottom: 0.3333rem;
}
.mxw-show-product .item {
  padding: 0.3333rem 0 0.633rem;
  border: 0.0167rem solid #efefef;
  display: block;
  transition: box-shadow 0.4s;
}
.mxw-show-product .item:hover {
  box-shadow: 0 0 0.3333rem -0.0333rem rgba(0, 0, 0, 0.2);
}
.mxw-show-product .item .image {
  margin: 0 auto;
  display: block;
}
.mxw-show-product .item .info {
  padding: 0 0.6667rem;
  text-align: center;
}
.mxw-show-product .item .title {
  font-size: 0.3333rem;
  color: #333;
  line-height: 1.2;
}
.mxw-show-product .item .mxw-more {
  display: block;
  width: 2.1667rem;
  height: 0.5rem;
  line-height: 0.5rem;
  background-color: #ea1c0f;
  text-align: center;
  font-size: 0.2667rem;
  color: #fff;
  margin: 0.5rem auto 0;
}
@media screen and (min-width: 751px) {
  .mxw-show-product {
    padding-top: 1.6667rem;
  }
  .mxw-show-product .item .image {
    width: 6.6667rem;
    margin-bottom: 0.4rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-show-product {
    padding: 30px 20px;
  }
  .mxw-show-product .item {
    padding: 15px;
  }
  .mxw-show-product .item .title {
    font-size: 12px;
  }
  .mxw-show-product .item .info {
    padding: 0;
  }
  .mxw-show-product .item .mxw-more {
    font-size: 12px;
    width: 100%;
    height: auto;
    line-height: inherit;
    padding: 5px 10px;
    margin-top: 20px;
  }
}
/* ==================== 产品展示 end ==================== */
/* ==================== 关于我们 start ==================== */
.mxw-about {
  background: url(../image/7d3f30ac48e5a900fdbd04fbdf9332d4523e4953.jpg) no-repeat left 5.1667rem;
}
.mxw-about .info .text1 {
  font-size: 0.6rem;
  font-weight: bold;
  line-height: 1.2;
  color: #333;
  margin-bottom: 0.3333rem;
}
.mxw-about .info .text2 {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.2;
  margin-bottom: 0.6667rem;
}
.mxw-about .info .text2:after {
  content: "";
  display: block;
  width: 1.1667rem;
  height: 0.05rem;
  background-color: #ea1c0f;
  margin-top: 0.5rem;
}
.mxw-about .info .desc {
  font-size: 0.3rem;
  color: #787878;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0.8333rem;
}
.mxw-about .info .text3 {
  font-size: 0.4rem;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.mxw-about .info .mxw-more {
  margin-top: 0.5rem;
  width: 3.1667rem;
  height: 0.8333rem;
  line-height: 0.8333rem;
  color: #fff;
  text-align: center;
  font-size: 0.2667rem;
  display: block;
  background-color: #ea1c0f;
}
@media screen and (min-width: 751px) {
  .mxw-about .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
  }
  .mxw-about .body {
    display: flex;
    align-items: center;
  }
  .mxw-about .info {
    min-width: 0;
    flex-grow: 1;
  }
  .mxw-about .image {
    margin-left: 1.6667rem;
    width: 58%;
    flex-shrink: 0;
    margin-right: -3.5rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-about .mxw-box {
    padding-top: 0;
  }
  .mxw-about .info {
    margin-bottom: 20px;
  }
  .mxw-about .info .text1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .mxw-about .info .text2 {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .mxw-about .info .text2:after {
    height: 2px;
    margin-top: 10px;
    margin-bottom: 0px;
  }
  .mxw-about .info .text3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .mxw-about .info .desc {
    font-size: 12px;
    line-height: 2;
    margin-bottom: 20px;
  }
  .mxw-about .info .mxw-more {
    font-size: 12px;
    width: 100%;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
    margin-top: 20px;
  }
}
/* ==================== 关于我们 end ==================== */
/* ==================== 关于我们2 start ==================== */
.mxw-about2 .item {
  background-size: cover;
  height: 100%;
  display: flex;
  align-items: center;
}
.mxw-about2 .info {
  padding-top: 1.6667rem;
  padding-bottom: 2.1667rem;
  padding-left: 2.6667rem;
  padding-right: 2.6667rem;
  max-width: 23.7667rem;
  color: #fff;
}
.mxw-about2 .info .text1 {
  font-size: 0.6rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.8333rem;
}
.mxw-about2 .info .desc {
  font-size: 0.2667rem;
  line-height: 2em;
  text-align: justify;
}
.mxw-about2 .itembox2 {
  margin-top: 1.6667rem;
  width: 15.3333rem;
  display: flex;
  align-items: flex-start;
}
.mxw-about2 .item2 {
  padding: 0 0.3333rem;
  border-right: 0.0333rem solid rgba(255, 255, 255, 0.14);
  text-align: center;
  padding: 0 1rem;
}
.mxw-about2 .item2:first-child {
  padding-left: 0;
}
.mxw-about2 .item2:last-child {
  border-right: 0;
  padding-right: 0;
}
.mxw-about2 .item2 .icon {
  width: 1rem;
  margin: 0 auto 0.3333rem;
}
.mxw-about2 .item2 .text2 {
  font-size: 0.2667rem;
  color: #fff;
  line-height: 1.6;
}
.mxw-about2 .arrow {
  width: 0.8333rem;
  display: block;
  margin-top: 1.5rem;
  transition: all 0.4s;
}
.mxw-about2 .arrow:hover {
  transform: translateX(0.3333rem);
}
@media screen and (min-width: 751px) {
  .mxw-about2 {
    display: flex;
    align-items: stretch;
  }
  .mxw-about2 .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
  }
  .mxw-about2 .itembox {
    min-width: 0;
    flex-grow: 1;
    display: flex;
    align-items: stretch;
  }
  .mxw-about2 .item {
    width: 2.1667rem;
    cursor: pointer;
  }
  .mxw-about2 .item .title {
    padding: 0 0.8333rem;
    font-size: 0.3333rem;
    color: #d9d9d9;
    line-height: 2.5em;
    background-color: #2a2a2a;
    border-left: 0.0167rem solid #535353;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
  }
  .mxw-about2 .item.active {
    min-width: 0;
    flex-grow: 1;
    width: auto;
  }
  .mxw-about2 .item.active .title {
    display: none;
  }
  .mxw-about2 .item.active .info {
    display: block;
  }
  .mxw-about2 .item .info {
    display: none;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-about2 .info {
    max-width: 100%;
    padding-left: 1.1667rem;
    padding-right: 1.1667rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-about2 .title {
    display: none;
  }
  .mxw-about2 .info {
    padding: 30px 20px;
  }
  .mxw-about2 .info .text1 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .mxw-about2 .info .desc {
    font-size: 14px;
  }
  .mxw-about2 .itembox2 {
    margin-top: 20px;
    flex-wrap: wrap;
    width: 100%;
  }
  .mxw-about2 .item2 {
    padding: 0;
    width: 50%;
    border-right: 0;
    margin-bottom: 20px;
  }
  .mxw-about2 .item2 .icon {
    width: 40px;
    margin-bottom: 10px;
  }
  .mxw-about2 .arrow {
    margin: 0 auto auto 0;
    display: none;
  }
}
/* ==================== 关于我们2 end ==================== */
/* ==================== 新闻中心 start ==================== */
.mxw-news .body {
  overflow: hidden;
}
.mxw-news .news-swiper {
  max-width: 78%;
  margin-left: 0;
  margin-right: auto;
  overflow: visible;
}
.mxw-news .swiper-slide {
  display: block;
}
.mxw-news .swiper-scrollbar {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  background-color: #f7f7f7;
  margin-top: 1rem;
}
.mxw-news .swiper-scrollbar .swiper-scrollbar-drag {
  cursor: pointer;
  background-color: #ea1c0f;
}
.mxw-news .image {
  position: relative;
}
.mxw-news .image::before {
  content: "";
  display: block;
  background: url(../image/a86756d542fc1af4933a3d8e881e031bb75b6ae0.png) no-repeat;
  width: 0.8333rem;
  height: 1.1667rem;
  background-size: 100%;
  top: 0;
  left: 0.5rem;
  position: absolute;
  z-index: 9;
}
.mxw-news .info {
  margin-top: 0.5rem;
}
.mxw-news .info .title {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.3333rem;
}
.mxw-news .info .date {
  font-size: 0.2333rem;
  color: #999;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.mxw-news .info .desc {
  font-size: 0.2667rem;
  color: #6f6f6f;
  line-height: 1.8em;
  text-align: justify;
  height: 3.6em;
}
@media screen and (min-width: 751px) {
  .mxw-news .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-news .news-swiper {
    max-width: 100%;
  }
  .mxw-news .info .title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .mxw-news .info .date {
    margin-bottom: 10px;
  }
  .mxw-news .swiper-scrollbar {
    margin-top: 30px;
    height: 3px;
  }
}
/* ==================== 新闻中心 end ==================== */
/* ==================== 广告图 start ==================== */
.mxw-ad {
  position: relative;
}
.mxw-ad .info .mxw-box {
  width: 100%;
}
.mxw-ad .info .text1 {
  font-size: 0.8333rem;
  line-height: 1.6;
  text-shadow: 0rem 0.05rem 0.1167rem rgba(0, 0, 0, 0.42);
  color: #fff;
  margin-bottom: 1.6667rem;
  font-weight: bold;
}
.mxw-ad .info .tel {
  display: table;
  padding-bottom: 0.1667rem;
  border-bottom: 0.0167rem solid #fff;
}
@media screen and (min-width: 751px) {
  .mxw-ad .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
  }
  .mxw-ad .info .tel p {
    display: flex;
    align-items: center;
    font-size: 0.4667rem;
    color: #fff;
    font-weight: bold;
  }
  .mxw-ad .info .tel p strong {
    font-size: 0.6167rem;
  }
  .mxw-ad .info .tel p img {
    width: 0.6667rem;
    flex-shrink: 0;
    margin-right: 0.1667rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-ad .info {
    text-align: center;
  }
  .mxw-ad .info .text1 {
    color: #333;
    font-size: 18px;
    text-shadow: none;
    margin-bottom: 20px;
  }
  .mxw-ad .info .tel {
    display: block;
  }
  .mxw-ad .info .tel p {
    color: #333;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
  }
  .mxw-ad .info .tel p img {
    display: none;
  }
}
/* ==================== 广告图 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  background-color: #1b1b1b;
}
footer .mxw-link {
  position: relative;
}
footer .mxw-link > .mxw-box {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  font-size: 0.2333rem;
}
footer .mxw-link .title {
  color: #a1a1a1;
  font-weight: bold;
  cursor: pointer;
}
footer .mxw-link .title img {
  margin-right: 0.3333rem;
}
footer .mxw-link .mxw-local-link {
  display: flex;
  align-items: center;
}
footer .mxw-link .mxw-local-link a {
  display: block;
  padding-right: 0.3333rem;
  color: #a1a1a1;
}
footer .mxw-link .mxw-local-link a:hover {
  color: #ea1c0f;
}
footer .mxw-link .mxw-local-link a:last-child {
  padding-right: 0;
}
footer .mxw-link .mxw-online-link {
  color: #333;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  padding: 0.1667rem;
  display: none;
  background: #fff;
  line-height: 1.8;
}
footer .mxw-link .mxw-online-link a {
  font-size: 0.2333rem;
  line-height: 1.8;
  padding-right: 19.998px;
}
footer .mxw-link .mxw-online-link a:last-child {
  padding-right: 0;
}
footer .foot-top {
  display: flex;
  align-items: flex-start;
  padding: 0.8rem 0 0.7rem;
  border-bottom: 0.0167rem solid rgba(255, 255, 255, 0.19);
}
footer .foot-top .head {
  display: block;
  font-size: 0.3rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
footer .foot-nav {
  display: flex;
  align-items: flex-start;
  width: 12rem;
  justify-content: space-between;
  flex-shrink: 0;
  margin-right: 1.5rem;
}
footer .foot-nav .nav-item {
  flex-shrink: 0;
}
footer .foot-nav .nav-item ul > li {
  font-size: 0.2333rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
footer .foot-nav .nav-item ul > li:last-child {
  margin-bottom: 0;
}
footer .foot-message {
  min-width: 0;
  flex-grow: 1;
  border-left: 0.0167rem solid rgba(255, 255, 255, 0.19);
  padding-left: 1.6rem;
}
footer .foot-message form label {
  font-weight: 400;
  background-color: #363636;
  display: flex;
  align-items: center;
}
footer .foot-message form label img {
  width: 0.3333rem;
  flex-shrink: 0;
  margin-right: 0.0833rem;
}
footer .foot-message form input,
footer .foot-message form textarea {
  min-width: 0;
  flex-grow: 1;
  height: 100%;
  color: #fff;
  font-size: 0.2333rem;
}
footer .foot-message form input::-webkit-input-placeholder,
footer .foot-message form textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(255, 255, 255, 0.34);
}
footer .foot-message form input:-moz-placeholder,
footer .foot-message form textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(255, 255, 255, 0.34);
}
footer .foot-message form input::-moz-placeholder,
footer .foot-message form textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(255, 255, 255, 0.34);
}
footer .foot-message form input:-ms-input-placeholder,
footer .foot-message form textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(255, 255, 255, 0.34);
}
footer .foot-message form .top {
  margin-bottom: 0.25rem;
}
footer .foot-message form .top label {
  width: 48%;
  margin-right: 4%;
  height: 0.7rem;
  line-height: 0.7rem;
  padding: 0 0.2667rem;
}
footer .foot-message form .top label:nth-child(2n) {
  margin-right: 0;
}
footer .foot-message form .mxw-textarea {
  height: 2.0833rem;
  padding: 0.2333rem 0.2667rem;
  align-items: flex-start;
  margin-bottom: 0.25rem;
}
footer .foot-message form .mxw-textarea textarea {
  resize: none;
  height: 100%;
  background: none;
  border: 0;
}
footer .foot-message form .code-image {
  margin-bottom: 0.25rem;
  height: 0.7rem;
  line-height: 0.7rem;
  padding: 0 0.0833rem 0 0.3333rem;
}
footer .foot-message form .code-image .image {
  flex-shrink: 0;
  width: 2rem;
  cursor: pointer;
  margin-left: 0.3333rem;
}
footer .foot-message form .code-image .image img {
  width: 100%;
  height: 100%;
}
footer .foot-message form button {
  width: 3.3333rem;
  height: 0.6667rem;
  background-color: #fff;
  text-align: center;
  font-size: 0.2667rem;
  color: #333;
  line-height: 0.6667rem;
  display: block;
  outline: none;
  cursor: pointer;
}
footer .foot-bottom {
  padding-top: 0.7rem;
  padding-bottom: 0.4667rem;
  border-bottom: 0.0167rem solid rgba(255, 255, 255, 0.19);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .foot-bottom .head {
  font-size: 0.3rem;
  display: block;
  margin-bottom: 0.3667rem;
  color: #a1a1a1;
}
footer .foot-tel .desc {
  font-size: 0.5rem;
  color: #fefefe;
  line-height: 1.2;
}
footer .foot-tel .desc img {
  width: 0.5rem;
  margin-right: 0.1667rem;
}
footer .foot-contact .desc {
  font-size: 0.3333rem;
  color: #fff;
  line-height: 1.8;
}
footer .foot-qr {
  display: flex;
  align-items: flex-start;
}
footer .foot-qr .qr {
  text-align: center;
  margin-right: 1.1rem;
}
footer .foot-qr .qr p {
  font-size: 0.3rem;
  color: #a1a1a1;
}
footer .foot-qr .qr img {
  display: block;
  margin-top: 0.1667rem;
  width: 1.5rem;
}
footer .mxw-copyright {
  padding: 0.3667rem 0;
  justify-content: space-between;
  font-size: 0.2333rem;
  color: #a1a1a1;
  line-height: 1.8;
}
footer .mxw-copyright a {
  color: inherit;
}
footer .mxw-copyright a:hover {
  color: #ea1c0f;
}
footer .mxw-copyright .logo {
  width: 3.3333rem;
  flex-shrink: 0;
}
footer .mxw-copyright .mxw-box{max-width: 100%!important;}
@media screen and (max-width: 1680px) {
  footer .foot-message{padding-left:1.5rem;}
  footer .foot-nav{margin-right:1.5rem;}
  footer .foot-qr .qr{margin-right: 1rem;}
}
@media screen and (max-width: 751px) {
  footer .foot-bottom {
    padding: 0;
    flex-wrap: wrap;
    padding-bottom: 30px;
  }
  footer .foot-bottom .head {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
  }
  footer .foot-tel {
    margin-bottom: 30px;
    width: 100%;
  }
  footer .foot-tel .desc {
    font-size: 21px;
  }
  footer .foot-tel .desc p {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  footer .foot-tel .desc .img {
    width: 20px;
    margin-right: 10px;
  }
  footer .foot-contact {
    width: 100%;
    text-align: center;
  }
  footer .foot-contact .desc {
    font-size: 15px;
  }
  footer .mxw-copyright {
    flex-wrap: wrap;
    padding: 20px 0 0;
  }
  footer .mxw-copyright .logo {
    width: 40%;
    margin: 0 auto 20px;
  }
  footer .mxw-copyright .right {
    text-align: center;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 1600px;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
}
.mxw-box a:hover {
  color: #ea1c0f;
}
/* 内页 banner */
.ny-banner img {
  width: 100%;
}
/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px !important;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-box {
    max-width: 86%;
  }
}
@media screen and (min-width: 751px) {
  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }
  .mxw-ny-box {
    padding-top: 1.1667rem;
    padding-bottom: 1.1667rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-ny-box {
    max-width: 100%;
    font-size: 0;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 751px) {
  body {
    margin-top: 60px;
  }
  html {
    font-size: 50px;
  }
  .m-none,
  .pc-nav {
    display: none !important;
  }
  .mxw-box {
    padding: 30px 20px;
    max-width: 100%;
  }
  .mxw-section {
    padding-left: 0;
    padding-right: 0;
  }
  article {
    font-size: 15px;
  }
}
/* ==================== 页面自定义样式 end ==================== */
/* ==================== 动画 start ==================== */
@keyframes arrowAnimate {
  0% {
    transform: translate(0rem, 0rem);
  }
  50% {
    transform: translate(0rem, -0.1667rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
/* ==================== 动画 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:#ea1c0f;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;}
/*  */
.page-position .wh2,
.wh2{max-width: 1400px;}
.fen .xypg-left-nav > li > a{border-bottom:2px solid transparent}
.fen .xypg-left-nav > li:hover > a,
.fen .xypg-left-nav > li.clicked > a{border-bottom-color:#ea1c0f;background:none;}
.xypg-product-list li .img{border:1px solid #ddd;}
.xypg-product-list{margin:0;}
/*  */
  .nacon{text-align: justify;}
@media screen and (min-width: 751px) {
  /* .page-wrap{padding-top:30px;} */
  .easyzoom-flyout img{max-width:inherit;}
  .container{width:100%;max-width:1400px;}
  .page-position{position: sticky;top:0;background-color: #fff;z-index:1001}
  .product-detail-slick a.slick-item{height: auto;}
  .aleft2{width: 58%;}
.abox1{display: flex;align-items: center;justify-content: space-between;}
.abox1:before,
.abox1:after{display: none;}
.product-detail-tabbox iframe{width:790px!important;height:445px!important}
.page-product-detail-effect{width: 400px;}
.page-product-detail-right{width:60%;}
.page-product-detail-effect .big-img a img,
.page-product-detail-effect .big-img{
  width:100%;
}
.page-product-detail-effect .big-img a{height: auto;}
.wei{padding-left:0;}
}
@media screen and (max-width: 1680px) {
  .page-position .wh2,
  .wh2{
    max-width: 90%;
  }
}
@media screen and (max-width: 751px) {
  .wh2{max-width: 100%;padding: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%;}
  
  .product-detail-tabbox iframe{width:100%!important;height:221px!important;}
}