@charset "UTF-8";
@font-face {
  font-family: mxw_font;
  src: url(font/SourceHanSerifCN-Bold-2.ttf);
}
/* ==================== 重置默认样式 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: #9d2f19;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #fff;
}
#goto-top.active {
  visibility: visible;
  opacity: 1;
}
#goto-top:after {
  content: "";
  display: block;
  width: 0.2333rem;
  height: 0.2333rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 6px;
}
@media screen and (max-width: 1200px) {
  #goto-top {
    width: 30px;
    height: 30px;
    right: 10px;
  }
}
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.u-line-2 {
  -webkit-line-clamp: 2;
}
.u-line-3 {
  -webkit-line-clamp: 3;
}
.u-line-4 {
  -webkit-line-clamp: 4;
}
.u-line-5 {
  -webkit-line-clamp: 5;
}
.u-line-6 {
  -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.u-flex-wrap {
  flex-wrap: wrap;
}
.u-flex-nowrap {
  flex-wrap: nowrap;
}
.u-flex-col {
  flex-direction: column;
}
.u-grow-1 {
  flex-grow: 1;
}
.u-col-center {
  align-items: center;
}
.u-col-top {
  align-items: flex-start;
}
.u-col-bottom {
  align-items: flex-end;
}
.u-row-center {
  justify-content: center;
}
.u-row-left {
  justify-content: flex-start;
}
.u-row-right {
  justify-content: flex-end;
}
.u-row-between {
  justify-content: space-between;
}
.u-row-around {
  justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 1200px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 > .u-col {
    width: 48%;
  }
  .u-row-2 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-2 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
  .u-row-3 > .u-col {
    width: 32%;
  }
  .u-row-3 > .u-col:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .u-row-3 > .u-col:nth-child(3) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-4 > .u-col {
    width: 23.5%;
    margin-right: 2%;
  }
  .u-row-4 > .u-col:nth-child(4n) {
    margin-right: 0%;
  }
  .u-row-4 > .u-col:nth-child(4) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-5 > .u-col {
    width: 18.4%;
    margin-right: 2%;
  }
  .u-row-5 > .u-col:nth-child(5n) {
    margin-right: 0%;
  }
  .u-row-5 > .u-col:nth-child(5) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-6 > .u-col {
    width: 15%;
    margin-right: 2%;
  }
  .u-row-6 > .u-col:nth-child(6n) {
    margin-right: 0%;
  }
  .u-row-6 > .u-col:nth-child(6) ~ .u-col {
    margin-top: 2%;
  }
}
@media screen and (max-width: 1200px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 .u-col {
    width: 100%;
  }
  .u-row-2 .u-col:nth-child(1) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-3 > .u-col,
  .u-row-4 > .u-col,
  .u-row-5 > .u-col,
  .u-row-6 > .u-col {
    width: 48%;
  }
  .u-row-3 > .u-col:nth-child(2n),
  .u-row-4 > .u-col:nth-child(2n),
  .u-row-5 > .u-col:nth-child(2n),
  .u-row-6 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-3 > .u-col:nth-child(2) ~ .u-col,
  .u-row-4 > .u-col:nth-child(2) ~ .u-col,
  .u-row-5 > .u-col:nth-child(2) ~ .u-col,
  .u-row-6 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 动画 start ==================== */
@keyframes arrowAnimate {
  0% {
    transform: translate(0rem, 0rem);
  }
  50% {
    transform: translate(0rem, -0.1667rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
/* ==================== 动画 end ==================== */
/* ==================== 头部 start ==================== */
header {
  background: url(../images/img25.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  z-index: 99;
  transition: all 0.4s;
  position: sticky;
  top: 0;
  left: 0;
}
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: #9d2f19;
}
header .pc-nav .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .pc-nav .logo {
  width: 210px;
  flex-shrink: 0;
}
header .pc-menu {
  display: flex;
  align-items: center;
  margin-right: -45px;
}
header .pc-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
header .pc-menu > li:hover > a {
  color: #9d2f19 !important;
  background-color: #fff;
}
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: 40px 45px;
  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: 1500px) {
  header .pc-menu > li > a {
    padding: 35px 30px;
  }
}
@media screen and (max-width: 1300px) {
  header .pc-menu > li > a {
    padding: 30px 25px;
    font-size: 16px;
  }
}
/* ==================== 头部 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 p {
    flex-shrink: 0;
    width: 26px;
    height: 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
  }
  .mxw-mob-nav .menu-btn p i {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 100px;
    background-color: #333;
  }
.mxw-mob-nav .menu-btn  span{
font-size:12px;
}
  .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 ==================== */
.first-image {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mxw-main {
  position: relative;
  z-index: 3;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .first-image {
    height: auto;
    top: 60px;
  }
}
/* ==================== 轮播图 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: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
  right: 80px;
  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: #9d2f19;
}
.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: 25px;
  color: #b98c3c;
  font-family: "mxw_font";
  opacity: 0.2;
}
.mxw-title .text2 {
  font-size: 36px;
  color: #b72a1b;
  line-height: 1.2;
  font-family: "mxw_font";
  margin-top: -20px;
  margin-bottom: 10px;
  font-weight: bold;
}
.mxw-title .text3 {
  font-size: 16px;
  color: #c99a47;
  font-weight: bold;
  font-family: "mxw_font";
}
@media screen and (min-width: 1200px) {
  .mxw-title .content {
    display: inline-block;
    vertical-align: middle;
    position: relative;
  }
  .mxw-title .content:before,
  .mxw-title .content:after {
    content: "";
    display: block;
    background: url(../images/img02.png) no-repeat center;
    background-size: 100%;
    position: absolute;
    top: 50%;
    width: 150px;
    height: 30px;
    transform: translateY(-50%);
  }
  .mxw-title .content:before {
    left: -150px;
  }
  .mxw-title .content:after {
    right: -150px;
    transform: rotateY(180deg) translateY(-50%);
  }
}
@media screen and (max-width: 1200px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .mxw-title .text2 {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .mxw-title .text3 {
    font-size: 12px;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 热销推荐 start ==================== */
.mxw-hots {
  background-color: #fff;
}
.mxw-hots .body {
  width: 100%;
}
.mxw-hots .body .center {
  position: relative;
}
.mxw-hots .body .swiper-slide {
  text-align: center;
}
.mxw-hots .body .image {
  background: url(../images/img05.png) no-repeat center bottom;
  background-size: contain;
  display: block;
  margin: 0 auto;
}
.mxw-hots .body .image img {
  transform: translateY(1.6667rem);
}
.mxw-hots .body .name {
  margin-top: 1.8333rem;
  text-align: center;
  font-size: 0.4rem;
  color: #333;
  font-family: "mxw_font";
  font-weight: bold;
  padding: 0 1.2333rem;
  display: inline-block;
}
.mxw-hots .body .mxw-prev,
.mxw-hots .body .mxw-next {
  display: block;
  background: url(../images/img07.png) no-repeat center;
  width: 0.5333rem;
  height: 0.5333rem;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  cursor: pointer;
  outline: none;
  z-index: 9;
}
.mxw-hots .body .mxw-prev {
  left: 0;
  transform: rotateY(180deg);
}
.mxw-hots .body .mxw-next {
  right: 0;
}
@media screen and (min-width: 1200px) {
  .mxw-hots .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 3rem;
  }
  .mxw-hots .body {
    justify-content: space-around;
    display: flex;
    align-items: center;
  }
  .mxw-hots .body .left {
    flex-shrink: 0;
    width: 22%;
  }
  .mxw-hots .body .center {
    width: 36%;
    flex-shrink: 0;
  }
  .mxw-hots .body .right {
    flex-shrink: 0;
    width: 25.8%;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-hots .body .name {
    padding: 0;
    font-size: 15px;
  }
}
/* ==================== 热销推荐 end ==================== */
/* ==================== 关于我们 start ==================== */
.mxw-about {
  background-color: #fffaf1;
}
.mxw-about .title {
  height: 1.3333rem;
  line-height: 1.3333rem;
  text-align: center;
  margin-bottom: 1.2333rem;
}
.mxw-about .title .content {
  height: 100%;
  background: url(../images/img09.png) repeat-x;
  background-size: auto 100%;
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-left: 1.1667rem;
  margin-right: 1.1667rem;
}
.mxw-about .title .content:before,
.mxw-about .title .content:after {
  content: "";
  display: block;
  background: url(../images/img08.png) no-repeat left center;
  width: 1.1667rem;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: auto 100%;
}
.mxw-about .title .content:before {
  left: -1.166rem;
}
.mxw-about .title .content:after {
  right: -1.166rem;
  transform: rotateY(180deg);
}
.mxw-about .title span {
  position: relative;
  z-index: 9;
  min-width: 4rem;
  font-size: 0.6rem;
  color: #fefefe;
  line-height: 1.2;
  font-family: "mxw_font";
}
.mxw-about .body {
  display: flex;
  align-items: center;
}
.mxw-about .body .left {
  position: relative;
  z-index: 9;
  margin-right: -2.6667rem;
  flex-shrink: 0;
  width: 13.3333rem;
  height: 9rem;

  background-size: cover;
}
.mxw-about .body .left .mxw-video {

  width: 100%;
  height: 100%;
  position: relative;
}
.mxw-about .body .left .mxw-video.active:after {
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
}
.mxw-about .body .left .mxw-video:after {
 // content: "";
  display: block;
  background: url(../images/img13.png) no-repeat center;
  background-size: 2.3333rem;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  transition: transform 0.4s, opacity 0.4s, visibility 0.4s;
}
.mxw-about .body .left .mxw-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.mxw-about .body .right {
  padding-left: 4.3333rem;
  padding-top: 2.1667rem;
  padding-right: 0.8333rem;
  padding-bottom: 2.1667rem;
  background: url(../images/img10.png) repeat;
}
.mxw-about .body .info .text1 {
  font-size: 0.6rem;
  color: #b72a1b;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  font-family: "mxw_font";
  font-weight: bold;
}
.mxw-about .body .info .text2 {
  font-size: 0.2rem;
  color: #c99a47;
  line-height: 1.2;
  margin-bottom: 0.6667rem;
  font-family: "mxw_font";
}
.mxw-about .body .info .desc {
  font-size: 0.3rem;
  color: #666;
  line-height: 1.8;
  text-align: justify;
  -webkit-line-clamp: 8;
  font-family: "mxw_font";
  font-weight: bold;
}
.mxw-about .body .info .desc p {
  font-family: inherit;
}
.mxw-about .body .info .mxw-more {
  display: block;
  margin-top: 1rem;
  width: 2.1667rem;
  height: 0.5rem;
  margin-left: auto;
  margin-right: 0;
  transition: transform 0.4s;
}
.mxw-about .body .info .mxw-more:hover {
  transform: translateX(-0.3333rem);
}
@media screen and (min-width: 1200px) {
  .mxw-about .mxw-box {
    padding-top: 0.9167rem;
    padding-bottom: 1.45rem;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-about .body .left {
    width: 12rem;
    height: 8.4rem;
  }
  .mxw-about .body .right {
    padding-top: 1.4667rem;
    padding-bottom: 1.1667rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-about .title {
    font-size: 0;
    height: 50px;
    margin-bottom: 30px;
  }
  .mxw-about .title span {
    font-size: 20px;
    min-width: inherit;
  }
  .mxw-about .body {
    flex-wrap: wrap;
  }
  .mxw-about .body .left {
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }
  .mxw-about .body .left .mxw-video {
    transform: translate(0);
  }
.mxw-about .body .left .mxw-video iframe{
height:210px;}
  .mxw-about .body .left .mxw-video:after {
    background-size: 50px;
  }
  .mxw-about .body .right {
    width: 100%;
    padding: 30px 20px;
  }
  .mxw-about .body .info .text1 {
    font-size: 20px;
  }
  .mxw-about .body .info .text2 {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .mxw-about .body .info .desc {
    font-size: 14px;
    -webkit-line-clamp: inherit;
  }
  .mxw-about .body .info .mxw-more {
    margin-top: 30px;
  }
}
/* ==================== 关于我们 end ==================== */
/* ==================== 产品中心 start ==================== */
.mxw-product {
  background-color: #fff;
}
.mxw-product .mxw-cate {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}
.mxw-product .mxw-cate .product-cate-swiper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mxw-product .mxw-cate .swiper-wrapper {
  width: auto;
  margin: 0 auto;
}
.mxw-product .mxw-cate .swiper-slide {
  width: 2.6667rem;
  padding: 0.2333rem;
  text-align: center;
  color: #9d2f19;
  font-family: "mxw_font";
  position: relative;
  background-color: #fff;
  font-size: 0.35rem;
  font-weight: bold;
}
.mxw-product .mxw-cate .swiper-slide:last-child {
  margin-right: 0!important;
}
.mxw-product .mxw-cate .swiper-slide:before,
.mxw-product .mxw-cate .swiper-slide:after {
  content: "";
  display: block;
  background: url(../images/img15.png) no-repeat left top;
  width: 1.1rem;
  height: 0.5333rem;
  background-repeat: no-repeat;
  background-size: 1.1rem 1.0667rem;
  position: absolute;
}
.mxw-product .mxw-cate .swiper-slide:before {
  top: 0.0167rem;
  left: 0.0167rem;
}
.mxw-product .mxw-cate .swiper-slide:after {
  bottom: 0.0167rem;
  right: 0.0167rem;
  transform: rotate(180deg);
}
.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: #9d2f19;
  color: #fff;
  text-align: center;
}
.mxw-product .mxw-cate .swiper-slide.active:before,
.mxw-product .mxw-cate .swiper-slide:hover:before,
.mxw-product .mxw-cate .swiper-slide.swiper-slide-thumb-active:before,
.mxw-product .mxw-cate .swiper-slide.active:after,
.mxw-product .mxw-cate .swiper-slide:hover:after,
.mxw-product .mxw-cate .swiper-slide.swiper-slide-thumb-active:after {
  background-position-y: 100%;
}
.mxw-product .mxw-cate .swiper-button-prev,
.mxw-product .mxw-cate .swiper-button-next {
  background-color: #fff;
  border-radius: 100%;
  width: 0.5rem;
  height: 0.5rem;
  transform: translateY(-50%);
  margin: 0;
  box-shadow: 0 0 0.1667rem -0.0333rem 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: 0.2333rem;
  color: #9d2f19;
}
.mxw-product .mxw-cate .swiper-button-prev {
  left: -0.25rem;
}
.mxw-product .mxw-cate .swiper-button-next {
  right: -0.25rem;
}
.mxw-product .product-swiper .swiper-slide {
  padding: 0.2667rem;
  padding-top: 0.4333rem;
}
.mxw-product .product-swiper .item:hover .image,
.mxw-product .product-swiper .item:hover .title {
  transform: translateY(-0.1667rem);
}
.mxw-product .product-swiper .item:hover .title {
  color: #9d2f19;
}
.mxw-product .product-swiper .image,
.mxw-product .product-swiper .title {
  transition: transform 0.4s;
}
.mxw-product .product-swiper .image {
  margin-bottom: 0.3333rem;
  display: block;
  box-shadow: 0rem 0rem 0.2667rem 0rem rgba(116, 32, 15, 0.84);
height:6rem;	
    display: flex;
    align-items: center;
    justify-content: center;
}
.mxw-product .product-swiper .image img{
 max-height:100%;
 max-width:100%;
 width: initial;
}
.mxw-product .product-swiper .title {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  text-align: center;
  font-family: "mxw_font";
}
.mxw-product .body {
  position: relative;
}
.mxw-product .swiper-button-prev,
.mxw-product .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  outline: none;
  opacity: 1;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 100%;
  background-color: #f4ede0;
}
.mxw-product .swiper-button-prev:after,
.mxw-product .swiper-button-next:after {
  font-size: 0.4167rem;
  color: #c7a363;
}
.mxw-product .swiper-button-prev {
  left: -1.5667rem;
}
.mxw-product .swiper-button-next {
  right: -1.5667rem;
}
@media screen and (min-width: 1200px) {
  .mxw-product .mxw-box {
    padding-top: 1.1667rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-product .mxw-cate {
    margin-bottom: 20px;
  }
  .mxw-product .mxw-cate .swiper-wrapper {
    width: 100%;
    flex-wrap: wrap;
  }
  .mxw-product .mxw-cate .swiper-slide {
    width: 49%!important;
    margin-right: 2%!important;
    font-size: 12px;
  }
  .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 .title {
    font-size: 12px;
  }
  .mxw-product .product-swiper .swiper-slide {
    padding: 10px;
  }
  .mxw-product .product-swiper .image {
    box-shadow: 0 0 10px 0px rgba(116, 32, 15, 0.84);
  }
}
/* ==================== 产品中心 end ==================== */
/* ==================== 新闻资讯 start ==================== */
.mxw-news {
  background: url(../images/img17.jpg) no-repeat center;
  background-size: cover;
}
.mxw-news .mxw-cate {
  position: relative;
  width: 100%;
  margin-bottom: 0.6667rem;
}
.mxw-news .mxw-cate .product-cate-swiper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mxw-news .mxw-cate .swiper-wrapper {
  width: auto;
  margin: 0 auto;
}
.mxw-news .mxw-cate .swiper-slide {
  height: 0.8rem;
  line-height: 0.8rem;
  text-align: center;
  position: relative;
  font-size: 0.3333rem;
  color: #9d2f19;
}
.mxw-news .mxw-cate .swiper-slide:before,
.mxw-news .mxw-cate .swiper-slide:after {
  content: "";
  display: block;
  background: url(../images/img18.png) no-repeat left top;
  width: 0.8333rem;
  height: 0.8333rem;
  background-size: 0.8333rem 1.6667rem;
  position: absolute;
  top: 0;
}
.mxw-news .mxw-cate .swiper-slide:before {
  left: 0;
}
.mxw-news .mxw-cate .swiper-slide:after {
  right: 0;
  transform: rotateY(180deg);
}
.mxw-news .mxw-cate .swiper-slide span {
  background: url(../images/img19.png) repeat-x;
  display: block;
  height: 100%;
}
.mxw-news .mxw-cate .swiper-slide.active,
.mxw-news .mxw-cate .swiper-slide:hover,
.mxw-news .mxw-cate .swiper-slide.swiper-slide-thumb-active {
  background-color: #9d2f19;
  color: #fff;
  text-align: center;
}
.mxw-news .mxw-cate .swiper-slide.active:before,
.mxw-news .mxw-cate .swiper-slide:hover:before,
.mxw-news .mxw-cate .swiper-slide.swiper-slide-thumb-active:before,
.mxw-news .mxw-cate .swiper-slide.active:after,
.mxw-news .mxw-cate .swiper-slide:hover:after,
.mxw-news .mxw-cate .swiper-slide.swiper-slide-thumb-active:after {
  background-position-y: 100%;
}
.mxw-news .mxw-cate .swiper-button-prev,
.mxw-news .mxw-cate .swiper-button-next {
  background-color: #fff;
  border-radius: 100%;
  width: 0.5rem;
  height: 0.5rem;
  transform: translateY(-50%);
  margin: 0;
  box-shadow: 0 0 0.1667rem -0.0333rem rgba(0, 0, 0, 0.2);
}
.mxw-news .mxw-cate .swiper-button-prev.swiper-button-disabled,
.mxw-news .mxw-cate .swiper-button-next.swiper-button-disabled {
  display: none;
}
.mxw-news .mxw-cate .swiper-button-prev:after,
.mxw-news .mxw-cate .swiper-button-next:after {
  font-size: 0.2333rem;
  color: #9d2f19;
}
.mxw-news .mxw-cate .swiper-button-prev {
  left: -0.25rem;
}
.mxw-news .mxw-cate .swiper-button-next {
  right: -0.25rem;
}
.mxw-news .body {
  position: relative;
}
.mxw-news .itembox {
  margin-bottom: 0.5rem;
}
.mxw-news .item {
  display: block;
  border: 0.0167rem solid #c99a47;
  padding: 0.5rem;
}
.mxw-news .item:hover {
  background-color: #c99a47;
}
.mxw-news .item:hover .title {
  color: #fff;
}
.mxw-news .item:hover .date {
  color: #fff;
}
.mxw-news .item:hover .bottom:after {
  background-position-y: 100%;
}
.mxw-news .item .title {
  font-size: 0.4rem;
  color: #333;
  line-height: 1.2;
  font-family: "mxw_font";
  height: 2.4em;
}
.mxw-news .item .bottom {
  margin-top: 0.5833rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mxw-news .item .bottom:after {
  content: "";
  display: block;
  background: url(../images/img26.png) no-repeat left top;
  width: 0.7rem;
  height: 0.1667rem;
  background-size: 0.7rem 0.3333rem;
}
.mxw-news .item .date {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.2;
  font-family: "mxw_font";
}
.mxw-news .mxw-more {
  width: 2.1333rem;
  height: 0.7167rem;
  overflow: hidden;
  display: block;
  margin: 0.6rem auto 0;
}
.mxw-news .mxw-more:hover img {
  transform: translateY(-50%);
}
@media screen and (min-width: 1200px) {
  .mxw-news .mxw-box {
    padding: 56px 0 36px;
  }
}
@media screen and (max-width: 751px) {
  .mxw-news .mxw-cate {
    margin-bottom: 20px;
  }
  .mxw-news .mxw-cate .swiper-wrapper {
    width: 100%;
    flex-wrap: wrap;
  }
  .mxw-news .mxw-cate .swiper-slide {
    width: 49%!important;
    margin-right: 2%!important;
    font-size: 12px;
  }
  .mxw-news .mxw-cate .swiper-slide .text1:after {
    display: none;
  }
  .mxw-news .mxw-cate .swiper-slide:nth-child(2) ~ .swiper-slide {
    margin-top: 2%!important;
  }
  .mxw-news .mxw-cate .swiper-slide:nth-child(2n) {
    margin-right: 0!important;
  }
  .mxw-news .itembox {
    margin-bottom: 15px;
  }
  .mxw-news .item {
    padding: 15px;
  }
  .mxw-news .item .title {
    font-size: 14px;
  }
  .mxw-news .item .bottom {
    margin-top: 10px;
  }
  .mxw-news .item .bottom .date {
    font-size: 12px;
  }

.mxw-product .product-swiper .image{ height:2.4rem}

}
/* ==================== 新闻资讯 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  position: relative;
  z-index: 9;
}
footer .foot-top {
  background: url(../images/img23.jpg) repeat center;
}
footer .foot-top .mxw-box {
  padding-top: 1rem;
  padding-bottom: 1.1667rem;
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
footer .foot-top .left {
  display: flex;
  align-items: flex-start;
}
footer .logo {
  display: block;
  width: 6rem;
  flex-shrink: 0;
  margin-right: 1.3333rem;
}
footer .foot-contact {
  color: #fff;
}
footer .foot-contact .text1 {
  font-size: 0.3667rem;
  line-height: 1.2;
  font-family: "mxw_font";
  margin-bottom: 0.3333rem;
  font-weight: bold;
}
footer .foot-contact .desc {
  font-size: 0.2667rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "mxw_font";
  line-height: 1.6;
}
footer .foot-contact .desc p {
  font-family: inherit;
  margin-bottom: 0.0833rem;
}
footer .foot-qr {
  width: 2.5rem;
  flex-shrink: 0;
  font-size: 0.2667rem;
  color: #fff;
  text-align: center;
}
footer .foot-qr img {
  margin-bottom: 0.25rem;width:100%;
}
footer .mxw-copyright {
  background-color: #3b1209;
}
footer .mxw-copyright .mxw-box {
  text-align: center;
  color: #fff;
  padding: 0.1667rem 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 .mxw-box {
    flex-wrap: wrap;
    padding: 20px;
  }
  footer .foot-top .left {
    flex-wrap: wrap;
    width: 100%;
  }
  footer .logo {
    width: 225px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
  footer .foot-contact {
    width: 100%;
  }
  footer .mxw-copyright .mxw-box {
    padding: 15px;
    line-height: 2;
    font-size: 12px;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 83.3%;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
}
.mxw-box a:hover {
  color: #9d2f19;
}
/* 内页 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 ==================== */
