@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: #cd0205;
  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 ==================== */
.mxw-link {
  position: relative;
}
.mxw-link > .mxw-box {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  padding: 0!important;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  justify-content: flex-start !important;
}
.mxw-link > .mxw-box a {
  color: #666;
}
.mxw-link .title {
  flex-shrink: 0;
  line-height: 1.2;
  margin-right: 0.3333rem;
  padding: 0.0833rem 0.25rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.2333rem;
  font-weight: bold;
  cursor: pointer;
}
.mxw-link .title img {
  margin-right: 0.3333rem;
}
.mxw-link .mxw-local-link {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.mxw-link .mxw-local-link a {
  display: block;
  padding-right: 0.3333rem;
  color: #c2c2c2;
  font-size: 0.2333rem;
  line-height: 1.8;
}
.mxw-link .mxw-local-link a:hover {
  color: #9a41a0;
}
.mxw-link .mxw-local-link a:last-child {
  padding-right: 0;
}
.mxw-link .mxw-online-link {
  color: #333;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  padding: 0.0833rem 0.1667rem;
  display: none;
  background: #fff;
  line-height: 1.8;
  width: 100%;
}
.mxw-link .mxw-online-link a {
  font-size: 0.2333rem;
  line-height: 1.8;
  padding-right: 0.3333rem;
  color: #333;
}
.mxw-link .mxw-online-link a:hover {
  color: #cd0205 !important;
}
.mxw-link .mxw-online-link a:last-child {
  padding-right: 0;
}
/* ==================== 友情链接 end ==================== */
/* ==================== 头部 start ==================== */
header {
  width: 100%;
  z-index: 99;
  transition: all 0.4s;
  position: relative;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.17);
}
header .mxw-box {
  max-width: 1640px;
}
header .welcome {
  overflow: hidden;
  background-color: #f7f7f7;
}
header .welcome .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
  color: #999;
}
header .welcome .mxw-box a {
  color: #666;
}
header .welcome .mxw-box a:hover {
  color: #cd0205;
}
header .top .mxw-box {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .top .left {
  display: flex;
  align-items: center;
}
header .top .left .logo {
  width: 230px;
  flex-shrink: 0;
  margin-right: 60px;
  position: relative;
}
header .top .left .logo:after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background-color: #f0f0f0;
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}
header .top .left .info strong {
  display: block;
  font-size: 34px;
  color: #333;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 5px;
}
header .top .left .info p {
  font-size: 16px;
  color: #333;
  line-height: 1.2;
}
header .top .right {
  display: flex;
  align-items: center;
}
header .top .right .info {
  min-width: 0;
  text-align: right;
}
header .top .right .info p {
  font-size: 20px;
  color: #666;
  margin-bottom: 10px;
}
header .top .right .info p:last-child {
  margin-bottom: 0;
}
header .top .right .info strong {
  display: block;
  font-size: 40px;
  line-height: 1;
  color: #e60012;
}
header .top .right .icon {
  flex-shrink: 0;
  width: 50px;
  margin-left: 20px;
  filter: invert(18%) sepia(58%) saturate(5368%) hue-rotate(346deg) brightness(83%) contrast(122%);


}
header .bottom {
  background-color: #cd0205;
}
header .pc-menu {
  display: flex;
  align-items: center;
}
header .pc-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  flex-grow: 1;
  margin-right: 40px;
  margin-left: 40px;
}
header .pc-menu > li:first-child {
  margin-left: 0;
}
header .pc-menu > li:last-child {
  margin-right: 0;
}
header .pc-menu > li:last-child:after {
  display: none;
}
header .pc-menu > li:after {
  content: "";
  width: 0;
  border-right: 1px dashed rgba(255, 255, 255, 0.34);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 20px;
  right: -40px;
}
header .pc-menu > li.active > a,
header .pc-menu > li:hover > a {
  color: #fff !important;
  background-color: #676767;
}
header .pc-menu > li.active:hover > ul,
header .pc-menu > li:hover: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: 1px;
  background-color: #eee;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
header .pc-menu > li ul a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  font-size: 0.2333rem;
  color: #333;
  line-height: 1.2;
  padding: 0.2333rem;
}
header .pc-menu > li > a {
  font-size: 18px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  position: relative;
  padding: 20px;
  line-height: 1.2;
  width: 100%;
}
header .pc-menu > li > ul {
  border-top: 1px solid #ddd;
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.14);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
header .pc-menu > li > ul > li > a.active,
header .pc-menu > li > ul > li > a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
header .pc-menu > li > ul > li > a.active:after,
header .pc-menu > li > ul > li > a:hover:after {
  display: none;
}
header .pc-menu > li > ul > li > a:last-child:after {
  display: none;
}
header .pc-menu > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 1px solid #ddd;
}
header .pc-menu > li > ul > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 1px solid #ddd;
}
@media screen and (max-width: 1680px) {
  header .mxw-box {
    max-width: 92%;
  }
}
@media screen and (max-width: 1610px) {
  header .top .mxw-box {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  header .top .left .info strong {
    font-size: 32px;
  }
  header .top .left .info p {
    font-size: 15px;
  }
  header .top .right .info strong {
    font-size: 32px;
  }
  header .top .right .info p {
    margin-bottom: 5px;
  }
  header .pc-menu > li {
    margin-left: 20px;
    margin-right: 20px;
  }
  header .pc-menu > li > a {
    font-size: 16px;
    padding: 15px 20px;
  }
  header .pc-menu > li:after {
    right: -20px;
  }
}
@media screen and (max-width: 1240px) {
  header .pc-menu > li {
    margin-right: 10px;
    margin-left: 10px;
  }
  header .pc-menu > li:after {
    right: -10px;
  }
}
/* ==================== 头部 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: 50px;
  }
  .mxw-mob-nav .menu-btn {
    flex-shrink: 0;
    width: 26px;
    height: 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }
  .mxw-mob-nav .menu-btn i {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 100px;
    background-color: #333;
  }
  .mxw-mob-nav .menus-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 50%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transform: translateX(50%);
  }
  .mxw-mob-nav .menus-box.active {
    visibility: visible;
    opacity: 1;
  }
  .mxw-mob-nav .menus-box.active .menus {
    transform: translateX(0);
  }
  .mxw-mob-nav .menus {
    width: 60%;
    height: 100%;
    margin-right: 0;
    margin-left: auto;
    background: #fff;
    transform: translateX(100%);
    transition: all 0.5s;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
  }
  .mxw-mob-nav .menus > ul {
    width: 100%;
    overflow: auto;
  }
  .mxw-mob-nav .menus > ul > li.active > ul {
    display: block;
  }
  .mxw-mob-nav .menus > ul > li > a {
    display: block;
    width: 100%;
    padding: 15px 18px;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mxw-mob-nav .menus > ul > li > a.sub:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-top: 4px solid #555;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 0;
    margin-left: 10px;
  }
  .mxw-mob-nav .menus > ul > li > ul {
    display: none;
    padding: 0px 24px;
  }
  .mxw-mob-nav .menus > ul > li > ul > li > a {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 36px;
    height: 36px;
    border-bottom: 1px solid #f3f3f3;
  }
  .mxw-mob-nav .menus-head {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8F8F8;
    border-bottom: 0.6px solid #eee;
    font-size: 16.8px;
    font-weight: bold;
    line-height: 54px;
    height: 54px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .mxw-mob-nav .menus-head .text {
    color: #333;
    line-height: 1.2;
  }
  .mxw-mob-nav .menus-head .mxw-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none;
    position: relative;
    transform: rotate(45deg);
  }
  .mxw-mob-nav .menus-head .mxw-close:before,
  .mxw-mob-nav .menus-head .mxw-close:after {
    content: "";
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
  }
  .mxw-mob-nav .menus-head .mxw-close:before {
    width: 2px;
    height: 100%;
  }
  .mxw-mob-nav .menus-head .mxw-close:after {
    width: 100%;
    height: 2px;
  }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
  font-size: 0;
  position: relative;
  overflow: hidden;
}
.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: 50px;
  right: 50%;
  transform: translateX(50%);
  left: auto;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
  width: 27px;
  height: 6px;
  border-radius: 100px;
  margin-left: 3px;
  margin-right: 3px;
  background: #fff;
  transition: width 0.4s, opacity 0.4s;
  opacity: 1;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #676767;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
  width: 66px;
  height: 66px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: none;
  outline: none;
  z-index: 99;
  transform: translateY(-50%);
  top: 50%;
  margin-top: auto;
  margin-bottom: auto;
  bottom: auto;
}
.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: 1680px) {
  .banner-swiper {
    min-width: 1920px;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-banner .swiper-pagination {
    padding-right: 0px;
    bottom: 10px;
    max-width: 80%;
  }
  .mxw-banner .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    font-size: 14px;
    width: 8px;
    height: 8px;
  }
  .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-size: 18px;
  }
  .mxw-banner .swiper-button-next,
  .mxw-banner .swiper-button-prev {
    width: 30px;
    height: 50px;
  }
  .mxw-banner .swiper-button-next:after,
  .mxw-banner .swiper-button-prev:after {
    font-size: 14px;
  }
  .mxw-banner .swiper-button-next {
    right: 10px;
  }
  .mxw-banner .swiper-button-prev {
    left: 10px;
  }
  .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 {
  overflow: hidden;
  margin-bottom: 1rem;
  text-align: center;
}
.mxw-title .text1 {
  font-size: 0.6667rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.mxw-title .text2 {
  font-size: 0.3rem;
  color: #666;
  line-height: 1.6;
}
@media screen and (max-width: 1200px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .mxw-title .text2 {
    font-size: 14px;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 关于我们 start ==================== */
.mxw-about .section1 .info .text1 {
  font-size: 1.4rem;
  font-family: 'Impact';
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
}
.mxw-about .section1 .info .text2 {
  font-size: 0.4833rem;
  color: #cd0205;
  line-height: 1.2;
  margin-top: -0.8333rem;
  margin-bottom: 0.3333rem;
  font-weight: bold;
}
.mxw-about .section1 .info .text3 {
  font-size: 0.3rem;
  color: #676767;
}
.mxw-about .section1 .info .text3:after {
  content: "";
  display: block;
  width: 0.6667rem;
  height: 0.0167rem;
  background-color: #676767;
  margin-top: 0.4167rem;
  margin-bottom: 0.4167rem;
}
.mxw-about .section1 .info .desc {
  font-size: 0.3rem;
  color: #666;
  line-height: 2.2;
  text-align: justify;
  height: 11em;
}
.mxw-about .section1 .info .mxw-more {
  margin-top: 0.8333rem;
  display: block;
  width: 2.5rem;
  height: 0.6667rem;
  background-color: #676767;
  color: #fff;
  line-height: 0.6667rem;
  text-align: center;
}
.mxw-about .section1 .info .mxw-more:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 0.0833rem solid transparent;
  border-bottom: 0.0833rem solid transparent;
  border-left: 0.1667rem solid #fff;
  margin-right: 0.0833rem;
}
.mxw-about .section2 {
  background-color: #cd0205;
}
.mxw-about .section2 .mxw-box {
  color: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.mxw-about .section2 .item {
  position: relative;
  text-align: center;
}
.mxw-about .section2 .item:last-child:after {
  display: none;
}
.mxw-about .section2 .item:after {
  content: "";
  display: block;
  width: 0.0167rem;
  height: 1.3333rem;
  background-color: rgba(255, 255, 255, 0.22);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mxw-about .section2 .item .number {
  margin-bottom: 0.3333rem;
}
.mxw-about .section2 .item .number span {
  font-size: 0.8667rem;
  line-height: 1;
  font-weight: bold;
}
.mxw-about .section2 .item .number i {
  display: inline-block;
  margin-left: 0.1667rem;
  font-size: 0.2667rem;
  vertical-align: 0.5rem;
}
.mxw-about .section2 .item .text1 {
  font-size: 0.25rem;
  line-height: 1.4;
}
@media screen and (min-width: 1200px) {
  .mxw-about .section1 .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1rem;
  }
  .mxw-about .section1 .body {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mxw-about .section1 .image {
    width: 12.5rem;
    flex-shrink: 0;
    margin-right: 0.6667rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-about .section1 .info {
    margin-top: 30px;
  }
  .mxw-about .section1 .info .text1 {
    font-size: 30px;
    display: none;
  }
  .mxw-about .section1 .info .text2 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .mxw-about .section1 .info .text3 {
    font-size: 14px;
  }
  .mxw-about .section1 .info .text3:after {
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .mxw-about .section1 .info .desc {
    font-size: 14px;
    line-height: 2;
    height: auto;
    -webkit-line-clamp: inherit;
  }
  .mxw-about .section1 .info .mxw-more {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
  }
  .mxw-about .section2 .mxw-box {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .mxw-about .section2 .item:after {
    height: 40px;
  }
  .mxw-about .section2 .item:nth-child(2) ~ .item {
    margin-top: 20px;
  }
  .mxw-about .section2 .item:nth-child(2n):after {
    display: none;
  }
  .mxw-about .section2 .item .number {
    margin-bottom: 5px;
  }
  .mxw-about .section2 .item .number span {
    font-size: 30px;
  }
  .mxw-about .section2 .item .number i {
    vertical-align: 9px;
    margin-left: 0;
  }
  .mxw-about .section2 .item .text1 {
    font-size: 14px;
  }
}
/* ==================== 关于我们 end ==================== */
/* ==================== 产品中心 start ==================== */

.mxw-product  { 
background: #f6f6f6;
}


.mxw-product .mxw-cate {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}
.mxw-product .mxw-cate .swiper-slide {
  color: #999;
  font-size: 0.3333rem;
  background: #e6e6e6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}
.mxw-product .mxw-cate .swiper-slide .content {
  display: block;
}
.mxw-product .mxw-cate .swiper-slide .text1 {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.0833rem;
}
.mxw-product .mxw-cate .swiper-slide .text1:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 0.0833rem solid transparent;
  border-bottom: 0.0833rem solid transparent;
  border-left: 0.1333rem solid #676767;
  margin-left: 0.3333rem;
  vertical-align: 0.0333rem;
}
.mxw-product .mxw-cate .swiper-slide .text2 {
  font-size: 0.2333rem;
  color: #787878;
  line-height: 1.2;
}
.mxw-product .mxw-cate .swiper-slide.active,
.mxw-product .mxw-cate .swiper-slide:hover,
.mxw-product .mxw-cate .swiper-slide.swiper-slide-thumb-active {
  background-color: #cd0205;
  color: #fff;
  box-shadow: none;
}
.mxw-product .mxw-cate .swiper-slide.active .text1,
.mxw-product .mxw-cate .swiper-slide:hover .text1,
.mxw-product .mxw-cate .swiper-slide.swiper-slide-thumb-active .text1,
.mxw-product .mxw-cate .swiper-slide.active .text2,
.mxw-product .mxw-cate .swiper-slide:hover .text2,
.mxw-product .mxw-cate .swiper-slide.swiper-slide-thumb-active .text2 {
  color: #fff;
}
.mxw-product .mxw-cate .swiper-button-prev,
.mxw-product .mxw-cate .swiper-button-next {
  background-color: #fff;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  margin: 0;
  box-shadow: 0 0 10.002px -1.998px rgba(0, 0, 0, 0.2);
}
.mxw-product .mxw-cate .swiper-button-prev.swiper-button-disabled,
.mxw-product .mxw-cate .swiper-button-next.swiper-button-disabled {
  display: none;
}
.mxw-product .mxw-cate .swiper-button-prev:after,
.mxw-product .mxw-cate .swiper-button-next:after {
  font-size: 13.998px;
  color: #cd0205;
}
.mxw-product .mxw-cate .swiper-button-prev {
  left: -15px;
}
.mxw-product .mxw-cate .swiper-button-next {
  right: -15px;
}
.mxw-product .product-swiper .item {
  display: block;
}
.mxw-product .product-swiper .item .image {
  margin-bottom: 0.3333rem;
}
.mxw-product .product-swiper .item .title {
  font-size: 0.3333rem;
  line-height: 1.2;
  color: #333;
  padding: 0 0.3333rem;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .mxw-product .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-product .mxw-cate {
    margin-bottom: 30px;
  }
  .mxw-product .mxw-cate .swiper-wrapper {
    flex-wrap: wrap;
  }
  .mxw-product .mxw-cate .swiper-slide {
    width: 49%!important;
    margin-right: 2%!important;
    font-size: 12px;
    background-color: #f1f1f1;
  }
  .mxw-product .mxw-cate .swiper-slide .text1:after {
    display: none;
  }
  .mxw-product .mxw-cate .swiper-slide:nth-child(2) ~ .swiper-slide {
    margin-top: 2%!important;
  }
  .mxw-product .mxw-cate .swiper-slide:nth-child(2n) {
    margin-right: 0!important;
  }
  .mxw-product .product-swiper .item .image {
    margin-bottom: 10px;
  }
  .mxw-product .product-swiper .item .title {
    font-size: 12px;
  }
}
/* ==================== 产品中心 end ==================== */
/* ==================== 车间展示 start ==================== */
.mxw-show {
  font-size: 12px;
  background-image: url('/skin/images/beijing.jpg');
}
.mxw-show .swiper-slide {
  display: block;
  position: relative;
}
.mxw-show .swiper-slide:hover .info {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mxw-show .info {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  text-align: center;
  padding: 1.0833rem 0.3333rem 0.3333rem;
  background-color: rgba(0, 0, 0, 0.52);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s, opacity 0.4s, visibility 0.4s;
}
.mxw-show .info .title {
  font-size: 0.3333rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.mxw-show .info .arrow {
  width: 1.7333rem;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .mxw-show .info .title {
    font-size: 14px;
  }
}
/* ==================== 车间展示 end ==================== */
/* ==================== 优势 start ==================== */
.mxw-advantage {
  background: #f6f6f6;
}
.mxw-advantage .mxw-title .text1 {
  font-size: 0.6667rem;
  font-weight: bold;
  color: #333;
}
.mxw-advantage .mxw-title .text1 strong {
  color: #cd0205;
}
.mxw-advantage .body {
  background-color: #fff;
}
.mxw-advantage .left {
  display: block;
  text-align: center;
}
.mxw-advantage .left .item {
  border-bottom: 0.0167rem solid #f6f6f6;
  padding: 0.5rem 0.1667rem 0.3333rem;
  display: block;
}
.mxw-advantage .left .item.active {
  background-color: #cd0205;
}
.mxw-advantage .left .item.active .icon img {
  transform: translateY(-50%);
}
.mxw-advantage .left .item.active .text1,
.mxw-advantage .left .item.active .text2 {
  color: #fff;
}
.mxw-advantage .left .icon {
  width: 0.8333rem;
  height: 0.8333rem;
  overflow: hidden;
  margin: 0 auto 0.1667rem;
}
.mxw-advantage .left .text1 {
  font-size: 0.3667rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
}
.mxw-advantage .left .text2 {
  font-size: 0.2167rem;
  color: rgba(55, 55, 55, 0.5);
  line-height: 1.2;
}
.mxw-advantage .center {
  min-width: 0;
  flex-grow: 1;
  padding: 0.8333rem;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
}
.mxw-advantage .center .content {
  max-width: 8.6667rem;
}
.mxw-advantage .center .text1 {
  font-size: 0.3rem;
  color: rgba(55, 55, 55, 0.5);
  line-height: 1.2;
  margin-bottom: 0.1667rem;
}
.mxw-advantage .center .text2 {
  font-size: 0.5667rem;
  color: #333;
  line-height: 1.2;
}
.mxw-advantage .center .text2:after {
  content: "";
  display: block;
  width: 1.0833rem;
  height: 0.0667rem;
  background-color: #0d0d0d;
  opacity: 0.1;
  margin-top: 0.4167rem;
}
.mxw-advantage .center .desc {
  margin-top: 0.8333rem;
  font-size: 0.2667rem;
  color: #888;
  line-height: 2;
  /* height: 10em; */
}
.mxw-advantage .center .desc p {
  margin-bottom: 1em;
}
.mxw-advantage .center .desc p:last-child {
  margin-bottom: 0;
}
.mxw-advantage .center .desc p:before {
  content: "→";
  margin-right: 0.1667rem;
}
.mxw-advantage .center .tel {
  margin-top: 1.1667rem;
}
.mxw-advantage .center .tel .head {
  display: flex;
  align-items: center;
}
.mxw-advantage .center .tel .head img {
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  margin-right: 0.25rem;
}
.mxw-advantage .center .tel .title {
  padding: 0 0.8333rem;
}
.mxw-advantage .center .tel .title span {
  font-size: 0.2667rem;
  color: #999;
  line-height: 1.2;
  position: relative;
  padding: 0 0.1667rem;
}
.mxw-advantage .center .tel .title span:before,
.mxw-advantage .center .tel .title span:after {
  content: "";
  display: block;
  width: 0.6667rem;
  height: 0;
  border-top: 0.0167rem dashed #999;
  position: absolute;
  top: 50%;
}
.mxw-advantage .center .tel .title span:before {
  left: -0.6667rem;
}
.mxw-advantage .center .tel .title span:after {
  right: -0.6667rem;
}
.mxw-advantage .center .tel .bottom {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
}
.mxw-advantage .center .tel .phone {
  margin-right: 0.8333rem;
}
.mxw-advantage .center .tel .phone p {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
}
.mxw-advantage .center .tel .phone p:last-child {
  margin-bottom: 0;
}
.mxw-advantage .center .tel .phone strong {
  font-size: 0.4667rem;
  color: #cd0205;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
}
.mxw-advantage .center .tel .mxw-inquery {
  width: 2.2667rem;
  height: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.25rem;
  color: #fff;
  border-radius: 0.05rem;
  background-color: #cd0205;
  transition: transform 0.4s, box-shadow 0.4s;
}
.mxw-advantage .center .tel .mxw-inquery:hover {
  transform: translateX(0.1667rem);
  box-shadow: 0 0 0.1667rem -0.0333rem #cd0205;
}
.mxw-advantage .center .tel .mxw-inquery img {
  width: 0.5rem;
  margin-right: 0.1667rem;
}
.mxw-advantage .right .advantage-swiper-img {
  height: 100%;
}
.mxw-advantage .right .swiper-slide {
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1200px) {
  .mxw-advantage .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
  }
  .mxw-advantage .body {
    display: flex;
    align-items: stretch;
  }
  .mxw-advantage .left {
    width: 16%;
    flex-shrink: 0;
  }
  .mxw-advantage .right {
    width: 48%;
    margin-right: -2.6667rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-advantage .left {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
  }
  .mxw-advantage .left .item {
    width: 50%;
    padding: 20px;
    border-right: 1px solid #eee;
  }
  .mxw-advantage .left .item:nth-child(2n) {
    border-right: 0;
  }
  .mxw-advantage .left .text1 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  .mxw-advantage .left .text2 {
    font-size: 12px;
  }
  .mxw-advantage .center {
    padding: 30px 20px;
  }
  .mxw-advantage .center .content {
    max-width: 100%;
  }
  .mxw-advantage .center .text1 {
    font-size: 12px;
  }
  .mxw-advantage .center .text2 {
    font-size: 22px;
    font-weight: bold;
  }
  .mxw-advantage .center .text2:after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .mxw-advantage .center .desc {
    margin-top: 20px;
    height: auto;
  }
  .mxw-advantage .center .tel {
    margin-top: 30px;
  }
  .mxw-advantage .center .tel .head {
    justify-content: center;
  }
  .mxw-advantage .center .tel .bottom {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .mxw-advantage .center .tel .phone {
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
  .mxw-advantage .center .tel .phone p {
    font-size: 14px;
  }
  .mxw-advantage .center .tel .phone strong {
    font-size: 18px;
  }
  .mxw-advantage .center .tel .mxw-inquery {
    margin-top: 20px;
    width: 100%;
    height: auto;
    line-height: inherit;
    padding: 5px 8px;
  }
}
/* ==================== 优势 end ==================== */
/* ==================== 合作伙伴 start ==================== */
.mxw-brand {
  background-color: #cd0205;
}
.mxw-brand .mxw-title .text1,
.mxw-brand .mxw-title .text2 {
  color: #fff;
}
.mxw-brand .brand-swiper .swiper-wrapper {
  flex-flow: row wrap;
}
.mxw-brand .brand-swiper .swiper-slide {
  margin-top: 0.6rem !important;
}
@media screen and (min-width: 1200px) {
  .mxw-brand .mxw-box {
    padding: 0.9167rem 0;
    display: flex;
    align-items: center;
  }
  .mxw-brand .left {
    flex-shrink: 0;
    margin-right: 0.9333rem;
  }
  .mxw-brand .left .mxw-more {
    font-size: 0.3rem;
    color: #fff;
    padding-top: 0.1667rem;
    padding-bottom: 0.1667rem;
    display: block;
    border-top: 0.0167rem solid #fff;
    border-bottom: 0.0167rem solid #fff;
    text-align: center;
  }
  .mxw-brand .mxw-title {
    text-align: left;
  }
  .mxw-brand .brand-swiper .swiper-slide {
    max-width: 4rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-brand .mxw-title {
    margin-bottom: 20px;
  }
  .mxw-brand .brand-swiper .swiper-slide {
    margin-top: 15px!important;
  }
  .mxw-brand .mxw-more {
    font-size: 12px;
    width: 100%;
    color: #cd0205;
    background-color: #fff;
    text-align: center;
    padding: 8px 10px;
    display: block;
    border-radius: 2px;
    margin-top: 20px;
  }
}
/* ==================== 合作伙伴 end ==================== */
/* ==================== 新闻资讯 start ==================== */
.mxw-news {
  background-color: #f8f8f8;
}
.mxw-news .mxw-cate {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.mxw-news .cate-item {
  display: block;
  width: 3.6667rem;
  height: 0.9667rem;
  line-height: 0.9667rem;
  text-align: center;
  color: #333;
  background-color: #e6e6e6;
  margin-right: 0.3333rem;
  cursor: pointer;
  font-size: 0.3rem;
  position: relative;
}
.mxw-news .cate-item:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 0.1667rem solid transparent;
  border-right: 0.1667rem solid transparent;
  border-top: 0.1333rem solid #cd0205;
  position: absolute;
  bottom: -0.1333rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.mxw-news .cate-item:last-child {
  margin-right: 0;
}
.mxw-news .cate-item.active {
  background-color: #cd0205;
  color: #fff;
}
.mxw-news .cate-item.active:after {
  display: block;
}
.mxw-news .swiper-slide {
  padding-bottom: 1.25rem;
}
.mxw-news .item {
  display: block;
}
.mxw-news .item:hover .info {
  box-shadow: 0rem 0.1667rem 0.1667rem 0rem rgba(0, 0, 0, 0.08);
}
.mxw-news .item:hover .info .title {
  color: #cd0205;
}
.mxw-news .item:hover .info .arrow {
  background-color: #cd0205;
}
.mxw-news .item .info {
  max-width: 90%;
  position: relative;
  background-color: #fff;
  z-index: 10;
  padding: 0.6667rem 0.5rem 0.5rem;
  margin: -1.6667rem auto 0;
  transition: box-shadow 0.4s;
}
.mxw-news .item .info .title {
  font-size: 0.3333rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
  display: block;
  width: 100%;
}
.mxw-news .item .info .desc {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.8;
  text-align: justify;
  height: 3.6em;
}
.mxw-news .item .bottom {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mxw-news .item .date {
  font-size: 0.2333rem;
  color: #999;
  line-height: 1.2;
}
.mxw-news .item .arrow {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mxw-news .item .arrow:after {
  content: "";
  display: block;
  width: 0.1667rem;
  height: 0.1667rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (min-width: 1200px) {
  .mxw-news {
    padding-top: 1.6667rem;
    padding-bottom: 0.4167rem;
  }
}
@media screen and (max-width: 751px) {
  .mxw-news {
    padding: 30px 20px 20px;
  }
  .mxw-news .swiper-slide {
    padding-bottom: 20px;
  }
  .mxw-news .mxw-cate {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .mxw-news .cate-item {
    width: 32%;
    margin: 0;
    text-align: center;
    height: auto;
    line-height: inherit;
    padding: 8px;
    font-size: 12px;
  }
  .mxw-news .item .info {
    margin-top: 0;
    max-width: 100%;
    padding: 15px 10px;
  }
  .mxw-news .item .info .title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .mxw-news .item .info .desc {
    font-size: 12px;
  }
  .mxw-news .item .bottom {
    margin-top: 10px;
  }
}
/* ==================== 新闻资讯 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  background-color: #232323;
  border-top: 0.05rem solid #cd0205;
}
footer .foot-top {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}
footer .foot-top .mxw-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .foot-top .left {
  margin-right: 10%;
  width: 44%;
}
footer .foot-top .right {
  width: 42%;
  flex-shrink: 0;
}
footer .logo {
  flex-shrink: 0;
  margin-bottom: 1.3333rem;
  margin-bottom: 0.8333rem;
  display: block;
}
footer .foot-contact {
  font-size: 0.2667rem;
  color: rgba(255, 255, 255, 0.45);
}
footer .foot-contact img {
  width: 0.5rem;
  margin-right: 0.1667rem;
}
footer .foot-contact p {
  margin-bottom: 0.3333rem;
}
footer .foot-contact p:last-child {
  margin-bottom: 0;
}
footer .foot-nav {
  margin-bottom: 0.3333rem;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .foot-nav .head {
  display: block;
  font-size: 0.2667rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.4167rem;
}
footer .foot-nav ul li {
  font-size: 0.2333rem;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.2;
  display: block;
  margin-bottom: 0.25rem;
}
footer .foot-nav ul li:last-child {
  margin-bottom: 0;
}
footer .foot-qr {
  width: 4.3333rem;
  margin-right: 0;
  margin-left: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  text-align: center;
}
footer .foot-qr .qr {
  width: 1.6667rem;
  color: #888;
  font-size: 0.2333rem;
}
footer .foot-qr .qr img {
  margin-bottom: 0.1667rem;
  display: block;
}
footer .mxw-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .mxw-copyright .mxw-box {
  text-align: center;
  color: #9d9d9d;
  padding: 0.3333rem 0;
  font-size: 0.2333rem;
  line-height: 2;
}
footer .mxw-copyright .mxw-box a {
  color: inherit;
}
@media screen and (max-width: 1200px) {
  footer .foot-top {
    padding: 0;
  }
  footer .foot-top .left {
    width: 100%;
    margin-right: 0;
  }
  footer .foot-top .logo {
    margin-bottom: 30px;
  }
  footer .mxw-copyright .mxw-box {
    padding: 15px;
    line-height: 2;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 83.3%;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
}
.mxw-box a:hover {
  color: #cd0205;
}
/* 内页 banner */
.ny-banner img {
  width: 100%;
}
/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1200px) {
  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }
  .mxw-ny-box {
    padding-top: 1.1667rem;
    padding-bottom: 1.1667rem;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-box {
    max-width: 86%;
  }
}
@media screen and (max-width: 1200px) {
  body {
    margin-top: 60px;
  }
  .m-none,
  .pc-nav {
    display: none !important;
  }
  .mxw-box {
    padding: 30px 20px;
    max-width: 100%;
  }
  .mxw-section {
    padding-left: 0;
    padding-right: 0;
  }
  article {
    font-size: 15px;
  }
  .mxw-ny-box {
    max-width: 100%;
    font-size: 0;
    padding: 30px 20px;
  }
}
@media screen and (min-width: 1680px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1200px) {
  html {
    font-size: 50px;
  }
}
/* ==================== 页面自定义样式 end ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#cd0205;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;}

.ny-product-content iframe,
.xypg-right-content iframe{
  width: 10rem!important;
  height: 7rem!important;
}
.swiper-button-next,
.swiper-button-next:after,
.swiper-button-prev,
.swiper-button-prev:after{background-image:none!important;}


@media screen and (min-width: 751px) {
  /* .page-wrap{padding-top:30px;} */
  .easyzoom-flyout img{max-width:inherit;}
  .container{width:100%;max-width:1400px;}
  .xypg-album-list li{width: 23.5%;margin-right:2%!important;margin-left:0!important;margin-top:0!important;}
  .xypg-album-list li:nth-child(4n){margin-right:0!important;}
  .xypg-album-list li:nth-child(4)~li{margin-top:2%!important;}
  .wh{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-banner1 .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: 200%;
    width:240%;
  }
  
    .page-product-detail-effect .big-img{height:auto;}
  .page-banner1{
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .page-banner1>img{
    max-width: 110%;
    width:240%;
  }
  
  .xypg-product-list,
  .xypg-case-list{display:flex;flex-wrap:wrap;}
  .xypg-product-list li,
  .xypg-case-list li{width:48%;margin:0;}
  .xypg-product-list li:nth-child(2n),
  .xypg-case-list li:nth-child(2n){margin-left:4%;}
  .xypg-product-list li:nth-child(2)~li,
  .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
  .xypg-pagination>div{margin-bottom:10px;}
  .xypg-case-list li h3 a{padding-bottom:0;}
  .xypg-news-list li{padding:15px;margin-bottom:15px;}
  .xypg-news-list li .more{text-align:center;margin-top:0px;}
  .xypg-news-list li .more span{width:90px;margin:0 auto;}
  .product-detail-tabcon{font-size:16px;}
  .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
  .product-detail-tab .product-detail-tabli{height:auto;}
  /* 相册调整 */
  .xypg-album-list{justify-content:space-between;}
  .xypg-album-list:before,
  .xypg-album-list:after{display:none;}
  .xypg-album-list li{width:48%;margin:0;}
  .xypg-album-list li:nth-child(2)~li{margin-top:2%;}
    
  .ny-product-content iframe,
  .xypg-right-content iframe{
    width: 100%!important;
    height: 260px!important;
  }
}