@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 {
  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: 30px;
  bottom: 10%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: #b38d54;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
  border-radius: 100%;
}
#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 ==================== */
.Pagination {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 1rem;
  font-size: 0;
}
.Pagination a {
  display: inline-block;
  border: 1px solid #CCCCCC;
  color: #666666;
  font-size: 16px;
  margin: 0 5px;
  padding: 4px 8px;
}
.Pagination a:hover,
.Pagination .active {
  color: white!important;
  background: #b38d54;
  border-color: #b38d54;
}
@media screen and (max-width: 751px) {
  .Pagination {
    margin-top: 20px;
  }
  .Pagination a {
    width: auto;
    height: auto;
    line-height: inherit;
    padding: 6px 12px;
    font-size: 12px;
    margin-left: 2px;
    margin-right: 2px;
  }
}
/* ==================== 分页样式 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: #b38d54;
  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 ==================== */
header {
  width: 100%;
  z-index: 99;
  transition: all 0.4s;
}
header.absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
}
header.fixed .search {
  margin-right: 0px;
}
header.fixed .language {
  position: absolute;
  bottom: -80px;
  right: 0;
}
header.fixed .language .btn1:hover + .btn2 {
  padding-top: 0;
  padding-right: 60px;
}
header.fixed .language .btn2:hover {
  padding-top: 0;
  padding-right: 60px;
}
header.fixed .pc-menu {
  border-right: 0;
}
header.ny {
  background-color: #000000;
}
header.ny .pc-menu > li > a {
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
}
header .pc-nav > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .pc-nav .logo {
  width: 402px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
header .right {
  position: relative;
  width: 71%;
  display: flex;
  align-items: center;
}
header .pc-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  min-width: 0;
  flex-grow: 1;
}
header .pc-menu > li {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
header .pc-menu > li:hover > a,
header .pc-menu > li.active > a {
  color: #b38d54 !important;
}
header .pc-menu > li:hover .icon,
header .pc-menu > li.active .icon {
  transform: translate(0, -50%);
  opacity: 1;
  visibility: visible;
}
header .pc-menu > li:hover .pc-sub-menu {
  opacity: 1;
  visibility: visible;
}
header .pc-menu > li:hover .pc-sub-menu .pc-nav-box {
  transform: perspective(1200px) rotateX(0deg);
  -webkit-transform: perspective(1200px) rotateX(0deg);
  -moz-transform: perspective(1200px) rotateX(0deg);
  -ms-transform: perspective(1200px) rotateX(0deg);
  -o-transform: perspective(1200px) rotateX(0deg);
}
header .pc-menu > li:hover .pc-sub-menu .pc-nav-box:before {
  width: 100%;
  visibility: visible;
}
header .pc-menu > li .icon {
  flex-shrink: 0;
  width: 20px;
  position: absolute;
  top: 50%;
  transform: translate(100%, -50%);
  left: 0;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
}
header .pc-menu > li > a {
  font-size: 16px;
  color: #777;
  line-height: 1.2;
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  text-align: center;
  height: 100%;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
}
header .pc-menu > li .pc-sub-menu {
  width: 200px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  padding-top: 0px;
  color: #333;
}
header .pc-menu > li .pc-nav-box {
  border: 1px solid #ddd;
  position: relative;
  background: #fff;
  -webkit-transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
  transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: perspective(1200px) rotateX(-90deg);
  transform: perspective(1200px) rotateX(-90deg);
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}
header .pc-menu > li .pc-nav-box::before {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  visibility: hidden;
  left: 0;
  top: 0;
  position: absolute;
  transition: all 0.4s;
}
header .pc-menu > li .pc-nav-box > li:hover {
  background: rgba(0, 0, 0, 0.05);
}
header .pc-menu > li .pc-nav-box > li > a {
  display: block;
  text-align: center;
  font-size: 13px;
  height: 46px;
  line-height: 46px;
}
@media screen and (min-width: 751px) {
  header .mxw-box {
    max-width: 1425px;
  }
}
@media screen and (max-width: 1680px) {
  header .mxw-box {
    max-width: 96%;
  }
}
/* ==================== 头部 end ==================== */
/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
  header {
    position: fixed!important;
  }
  .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: #000;
    border-bottom: 1px solid #eee;
  }
  .mxw-mob-nav .logo {
    display: block;
    flex-shrink: 0;
  }
  .mxw-mob-nav .logo img {
    height: 44px;
  }
  .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: #fff;
  }
  .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 ==================== */
#index-swiper .swiper-wrapper.z-index-top {
  position: relative;
  z-index: 9999;
}
@media screen and (min-width: 751px) {
  .mxw-main .mxw-pagination {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
  }
  .mxw-main .mxw-pagination .swiper-pagination-bullet {
    background-color: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    border-radius: 100%;
    border: 1px solid transparent;
    margin-bottom: 30px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .mxw-main .mxw-pagination .swiper-pagination-bullet:after {
    content: "";
    display: block;
    width: 0px;
    height: 2px;
    border-radius: 100%;
    background-color: #b38d54;
  }
  .mxw-main .mxw-pagination .swiper-pagination-bullet:last-child {
    margin-bottom: 0;
  }
  .mxw-main .mxw-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    width: 10px;
    margin-left: 14px;
  }
  .mxw-main .mxw-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .num {
    font-size: 20px;
    color: #b38d54;
  }
  .mxw-main .mxw-pagination .swiper-pagination-bullet .num {
    color: #c4c4c4;
    font-size: 12px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1550px) {
  .mxw-main:before {
    right: 90px;
  }
  .mxw-main .mxw-pagination {
    display: none;
  }
  .mxw-main-swiper > .swiper-wrapper {
    flex-flow: column;
  }
}
/* ==================== 首页主体样式 start ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
  font-size: 0;
  position: relative;
  width: 100%;
  height: 100%;
}
.mxw-banner .swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 20px;
  right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
  width: 0.5667rem;
  height: 0.0667rem;
  opacity: 1;
  background: #fff;
  margin-left: 3px;
  margin-right: 3px;
  border-radius: 100px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #b38d54;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
  font-weight: bold;
  z-index: 99999;
}
.mxw-banner .banner-swiper {
  --swiper-navigation-color: #4d4d4d;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 24px;
  /* 设置按钮大小 */
}
@media screen and (min-width: 751px) {
  .mxw-banner .swiper-button-next:before,
  .mxw-banner .swiper-button-prev:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0px;
    height: 2px;
    background-color: #333;
    border-radius: 100px;
    transition: all 0.4s;
  }
  .mxw-banner .swiper-button-next:after,
  .mxw-banner .swiper-button-prev:after {
    transition: margin-right 0.4s, margin-left 0.4s;
  }
  .mxw-banner .swiper-button-next:hover:before,
  .mxw-banner .swiper-button-prev:hover:before {
    width: 20px;
  }
  .mxw-banner .swiper-button-next {
    right: 40px;
  }
  .mxw-banner .swiper-button-next:before {
    right: 0;
  }
  .mxw-banner .swiper-button-next:hover:before {
    right: 10px;
  }
  .mxw-banner .swiper-button-prev {
    left: 40px;
  }
  .mxw-banner .swiper-button-prev:before {
    left: 0px;
  }
  .mxw-banner .swiper-button-prev:hover:before {
    left: 10px;
  }
}
@media screen and (max-width: 751px) {
  .mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 5px;
  }
  .mxw-banner .swiper-pagination {
    bottom: 10px;
  }
  .mxw-banner .down-btn {
    width: 60px;
    margin-left: -30px;
    bottom: 10px;
  }
}
/* ==================== 轮播图 end ==================== */
/* ==================== 通用 - 标题 start ==================== */
.mxw-title {
  width: 100%;
  font-size: 0;
  margin-bottom: 35px;
}
.mxw-title .text1 {
  font-size: 20px;
  line-height: 1.2;
  color: #444;
  margin-bottom: 15px;
}
.mxw-title .text2 {
  font-size: 14px;
  line-height: 1.2;
  color: #777;
}
@media screen and (max-width: 751px) {
  .mxw-title {
    margin-bottom: 20px;
  }
  .mxw-title .text1 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .mxw-title .text2 {
    font-size: 12px;
  }
}
/* ==================== 通用 - 标题 end ==================== */
/* ==================== 通用 - 通用分页器样式 start ==================== */
.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #b38d54;
  opacity: 0.4;
  margin-left: 5px;
  margin-right: 5px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
@media screen and (max-width: 751px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin-left: 3px;
    margin-right: 3px;
  }
}
/* ==================== 通用 - 通用分页器样式 end ==================== */
/* ==================== 首页 - 产品中心 start ==================== */
.mxw-product {
  background-color: #fafafa;
}
.mxw-product .item {
  display: block;
  background-color: #fff;
  padding: 10px;
  padding-bottom: 0;
}
.mxw-product .item .info {
  background-color: #fff;
}
.mxw-product .item .name {
  font-size: 14px;
  color: #424242;
  line-height: 1.8;
  text-align: center;
  padding: 15px 20px;
}
.mxw-product .swiper-pagination {
  position: static;
  margin-top: 60px;
}
@media screen and (max-width: 751px) {
  .mxw-product .item .name {
    padding: 10px 0;
    font-size: 12px;
  }
  .mxw-product .swiper-pagination {
    margin-top: 20px;
  }
}
/* ==================== 首页 - 产品中心 end ==================== */
/* ==================== 首页 - 新闻中心 start ==================== */
.mxw-news .body {
  display: flex;
  align-items: flex-start;
}
.mxw-news .left {
  display: block;
  width: 8.1667rem;
  flex-shrink: 0;
  margin-right: 1rem;
}
.mxw-news .left .image {
  margin-bottom: 0.8333rem;
  border-radius: 0.1667rem;
  overflow: hidden;
}
.mxw-news .left .title {
  font-size: 0.2667rem;
  color: #4e3d24;
  margin-bottom: 0.3333rem;
}
.mxw-news .left .desc {
  font-size: 0.2333rem;
  color: #666;
  line-height: 1.6;
  text-align: justify;
}
.mxw-news .news-swiper {
  min-width: 0;
  flex-grow: 1;
}
.mxw-news .news-swiper .item {
  display: block;
  border-radius: 0.1667rem;
  overflow: hidden;
}
.mxw-news .news-swiper .swiper-pagination {
  position: static;
  margin-top: 0.5rem;
}
@media screen and (max-width: 751px) {
  .mxw-news .body {
    flex-wrap: wrap;
  }
  .mxw-news .left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .mxw-news .left .image {
    margin-bottom: 20px;
  }
  .mxw-news .left .title {
    margin-bottom: 10px;
  }
  .mxw-news .left .desc {
    font-size: 12px;
    line-height: 1.8;
  }
  .mxw-news .news-swiper {
    width: 100%;
  }
  .mxw-news .news-swiper .swiper-pagination {
    margin-top: 20px;
  }
}
/* ==================== 首页 - 新闻中心 end ==================== */
/* ==================== 首页 - 关于我们 start ==================== */
.mxw-about {
  background-color: #f4f4f4;
}
.mxw-about .body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mxw-about .left {
  flex-shrink: 0;
}
.mxw-about .left .info {
  display: block;
}
.mxw-about .left video,
.mxw-about .left iframe {
  display: block;
  width: 100%;
  height: 7rem;
  margin-bottom: 0.5833rem;
}
.mxw-about .left .desc {
  font-size: 0.2rem;
  color: #000;
  line-height: 2.6;
  text-align: justify;
  margin-bottom: 1rem;
}
.mxw-about .left .more {
  display: block;
  width: 3rem;
  height: 0.75rem;
  line-height: 0.75rem;
  border-radius: 0.0833rem;
  background-color: #b38d54;
  color: #fff;
  font-size: 0.2333rem;
  text-align: center;
}
.mxw-about .right {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.mxw-about .right .image {
  width: 32%;
  text-align: center;
}
.mxw-about .right .image:nth-child(3n-1) {
  margin-left: 2%;
  margin-right: 2%;
}
.mxw-about .right .image:nth-child(3) ~ .image {
  margin-top: 4%;
}
.mxw-about .right .image:nth-child(7),
.mxw-about .right .image:nth-child(8) {
  width: 48%;
}
.mxw-about .right .image:nth-child(8) {
  margin-left: 4%;
  margin-right: 0!important;
}
@media screen and (min-width: 751px) {
  .mxw-about .left {
    width: 48%;
  }
  .mxw-about .right {
    width: 38%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-about .body {
    flex-wrap: wrap;
    width: 100%;
  }
  .mxw-about .left,
  .mxw-about .right {
    width: 100%;
  }
  .mxw-about .left {
    margin-bottom: 20px;
  }
  .mxw-about .left video,
  .mxw-about .left iframe {
    height: 200px;
    margin-bottom: 20px;
  }
  .mxw-about .left .desc {
    margin-bottom: 20px;
  }
  .mxw-about .left .more {
    width: 100%;
    height: 34px;
    line-height: 34px;
    font-size: 12px;
  }
}
/* ==================== 首页 - 关于我们 end ==================== */
/* ==================== 首页 - 联系我们 start ==================== */
.mxw-contact {
  background: url(../images/img13.jpg) no-repeat center top #f4f4f4;
  background-size: auto 9.4167rem;
}
.mxw-contact .body {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1667rem 1rem 0.9167rem 1.8333rem;
  border-radius: 0.1667rem;
  overflow: hidden;
}
.mxw-contact .map {
  width: 42%;
  height: 5.5rem;
  background-color: #fff;
}
.mxw-contact .address {
  width: 44%;
}
.mxw-contact .desc {
  font-size: 0.3333rem;
  color: #000000;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1rem;
}
.mxw-contact .qr-group {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.mxw-contact .qr {
  width: 1.6667rem;
  flex-shrink: 0;
  margin-right: 0.3333rem;
  text-align: center;
}
.mxw-contact .qr .name {
  margin-top: 0.0833rem;
  font-size: 0.2333rem;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .mxw-contact .mxw-box {
    max-width: 1550px;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-contact .mxw-box {
    max-width: 84%;
  }
  .mxw-contact .address {
    width: 50%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-contact {
    background-size: auto 130px;
  }
  .mxw-contact .mxw-box {
    max-width: 100%;
  }
  .mxw-contact .body {
    padding: 20px;
    flex-wrap: wrap;
  }
  .mxw-contact .map {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
  }
  .mxw-contact .address {
    width: 100%;
  }
  .mxw-contact .address .desc {
    font-size: 12px;
    text-align: left;
    margin-bottom: 20px;
  }
  .mxw-contact .address .qr-group {
    justify-content: center;
  }
}
/* ==================== 首页 - 联系我们 end ==================== */
/* ==================== 内页 - 品牌介绍 start ==================== */
.ny-about {
  overflow: hidden;
}
.ny-about .section1 .item {
  display: block;
}
.ny-about .section1 .image {
  border-radius: 0.1667rem;
  overflow: hidden;
}
.ny-about .section1 .info {
  margin-top: 0.75rem;
  text-align: center;
}
.ny-about .section1 .info .title {
  font-size: 0.2667rem;
  color: #b38d54;
  line-height: 1.2;
}
.ny-about .section1 .info .desc {
  font-size: 0.2333rem;
  color: #777;
  line-height: 1.2;
  line-height: 2.4em;
  margin-top: 0.4167rem;
}
.ny-about .section2 {
  text-align: center;
}
.ny-about .section2 .desc {
  font-size: 0.2333rem;
  line-height: 1.8;
  color: #777777;
  margin-bottom: 0.6667rem;
}
.ny-about .section2 .video {
  cursor: pointer;
  width: 100%;
  overflow: hidden;
  border-radius: 0.1667rem;
  display: block;
  position: relative;
}
.ny-about .section2 .video:hover:after {
  transform: translateY(0);
}
.ny-about .section2 .video:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/img15.png) no-repeat center;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 0.4s;
}
.ny-about .section3 > .mxw-box {
  display: flex;
  align-items: center;
}
.ny-about .section3 .item {
  display: block;
}
.ny-about .section3 .item .image {
  border-radius: 0.1667rem;
  overflow: hidden;
}
.ny-about .section3 .item .info .title {
  color: #b38d54;
  font-size: 0.2667rem;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.ny-about .section3 .item .info .desc {
  font-size: 0.2333rem;
  color: #777;
  line-height: 2em;
  text-align: justify;
}
@media screen and (min-width: 751px) {
  .ny-about .mxw-box {
    padding-top: 1.3333rem;
    padding-bottom: 1.3333rem;
  }
  .ny-about .section1 .item {
    width: 30.666%;
  }
  .ny-about .section1 .item:nth-child(3n-1) {
    margin-left: 4%;
    margin-right: 4%;
  }
  .ny-about .section3 .left,
  .ny-about .section3 .right {
    width: 48%;
  }
  .ny-about .section3 .left {
    margin-right: 4%;
  }
  .ny-about .section3 .left .image {
    margin-bottom: 0.6667rem;
  }
  .ny-about .section3 .right .item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8333rem;
  }
  .ny-about .section3 .right .item:last-child {
    margin-bottom: 0;
  }
  .ny-about .section3 .right .image {
    width: 6.3333rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
  }
  .ny-about .section3 .right .info {
    min-width: 0;
    flex-grow: 1;
  }
}
@media screen and (max-width: 751px) {
  .ny-about .section1 .item {
    width: 100%;
  }
  .ny-about .section1 .item:nth-child(2n) {
    margin-left: 0;
  }
  .ny-about .section1 .item:nth-child(1) ~ .item {
    margin-top: 4%;
  }
  .ny-about .section1 .info {
    margin-top: 20px;
  }
  .ny-about .section1 .info .desc {
    margin-top: 10px;
  }
  .ny-about .section2 .desc {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .ny-about .section3 > .mxw-box {
    flex-wrap: wrap;
  }
  .ny-about .section3 .item {
    margin-bottom: 20px;
  }
  .ny-about .section3 .item:last-child {
    margin-bottom: 0;
  }
  .ny-about .section3 .item .image {
    margin-bottom: 20px;
  }
  .ny-about .section3 .item .info .title {
    margin-bottom: 10px;
  }
}
/* ==================== 内页 - 品牌介绍 end ==================== */
/* ==================== 通用 下拉视频样式 start ==================== */
.downVideo {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  top: -100%;
}
.downVideo.on {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.downVideo .video-body {
  width: 13.3333rem;
  text-align: center;
  position: relative;
}
.downVideo .close {
  background: url(../images/close.png) no-repeat center;
  background-size: 100%;
  width: 0.8333rem;
  height: 0.8333rem;
  position: absolute;
  top: -0.8333rem;
  right: -0.8333rem;
  cursor: pointer;
}
.downVideo iframe {
  width: 100%;
}
.downVideo video {
  background: #fff;
  height: 6.6667rem;
  display: block;
  width: auto;
  max-width: 100%;
}
@media screen and (max-width: 751px) {
  .downVideo .video-body {
    width: 100%;
    padding: 0 0.3333rem;
  }
  .downVideo .close {
    width: 0.5rem;
    height: 0.5rem;
    top: -0.6667rem;
    right: 0.3333rem;
  }
  .downVideo iframe {
    height: 5rem;
  }
  .downVideo video {
    height: 200px;
  }
}
/* ==================== 通用 下拉视频样式 end ==================== */
/* ==================== 内页 - 产品中心 start ==================== */
.ny-product {
  background: url(../images/img16.jpg) no-repeat center;
  background-size: cover;
}
.ny-product .mxw-title {
  text-align: center;
}
.ny-product .mxw-tabs-header {
  border-bottom: 1px solid #e6e6e6;
  justify-content: flex-start;
}
.ny-product .mxw-tabs-item {
  background: none;
  margin-right: 0;
  padding: 16px 20px;
  font-size: 14px;
  color: #202020;
  line-height: 1.2;
  position: relative;
}
.ny-product .mxw-tabs-item.active {
  background: none;
  color: #ee6328;
}
.ny-product .mxw-tabs-item.active:before {
  width: 100%;
}
.ny-product .mxw-tabs-item:last-child:after {
  display: none;
}
.ny-product .mxw-tabs-item::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #ee6328;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s;
}
.ny-product .mxw-tabs-item:after {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #ddd;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ny-product .item {
  background-color: #fff;
  transition: all 0.4s;
}
.ny-product .item:hover {
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.2);
}
.ny-product .item .image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ny-product .item .name {
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
  color: #ee6328;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 751px) {
  .ny-product .item .name {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
  }
}
/* ==================== 内页 - 产品中心 end ==================== */
/* ==================== 内页 - 通用banner end ==================== */
.ny-banner {
  font-size: 0;
}
.ny-banner .image img {
  width: 100%;
}
/* ==================== 内页 - 通用banner end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc {
  font-size: 0;
  overflow: inherit;
}
.ny-product-desc > .mxw-box {
  display: flex;
  align-items: flex-start;
  zoom: 1;
}
.ny-product-desc .product-detail {
  flex-grow: 1;
  min-width: 0;
}
.ny-product-desc .top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.ny-product-desc .ny-product-image {
  width: 36%;
  flex-shrink: 0;
  margin-right: 2%;
}
.ny-product-desc .right {
  width: 62%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.ny-product-desc .info {
  flex-grow: 1;
  width: 100%;
}
.ny-product-desc .info .head {
  width: 100%;
}
.ny-product-desc .info .head .text1 {
  font-size: 0.3333rem;
  color: #333;
  line-height: 1.6;
  text-align: justify;
}
.ny-product-desc .info .head .text2 {
  font-size: 0.2667rem;
  color: #606060;
  line-height: 1.8;
  text-align: justify;
}
.ny-product-desc .info .detail {
  font-size: 0.2667rem;
  line-height: 1.8;
  text-align: justify;
  border-top: 1px solid #dcdcdc;
  padding-top: 0.3333rem;
  margin-top: 0.1667rem;
}
.ny-product-desc .info .price {
  background-color: #f7f7f7;
  padding: 0.6667rem 0.5rem;
  color: #b38d54;
  font-size: 0.4rem;
  line-height: 1.2;
  margin-top: 0.5rem;
}
.ny-product-desc .info .price strong {
  font-size: 0.5rem;
}
.ny-product-desc .info .contact {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.ny-product-desc .info .contact > a {
  display: block;
  width: 3.3333rem;
  height: 0.7rem;
  line-height: 0.7rem;
  color: #b38d54;
  border: 0.0167rem solid #b38d54;
  font-size: 0.25rem;
  text-align: center;
  border-radius: 0.35rem;
  cursor: pointer;
  margin-right: 0.3333rem;
}
.ny-product-desc .info .contact > a:last-child {
  margin-right: 0;
}
.ny-product-desc .info .contact > a img {
  width: 0.2667rem;
  display: inline-block;
  margin-right: 0.0833rem;
}
.ny-product-desc .info .contact > a.color {
  background-color: #b38d54;
  color: #fff;
}
.ny-product-desc .info .mxw-more {
  margin-top: 1rem;
  border-radius: 1.6667rem;
  margin-left: 0;
}
.ny-product-desc .small-image {
  width: 100%;
  max-width: 10rem;
  margin-top: 0.5rem;
  position: relative;
}
.ny-product-desc .small-image .swiper-slide {
  max-width: 2rem;
}
.ny-product-desc .small-image .mxw-image {
  cursor: pointer;
  border: 0.05rem solid #fff;
  border-radius: 0.0833rem;
  background-color: #fff;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
  border-color: #b38d54;
}
.ny-product-desc .mxw-btn-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.ny-product-desc .product-prev,
.ny-product-desc .product-next {
  transition: all 0.4s, font-size 0s;
  width: 1.3333rem;
  height: 0.5rem;
  line-height: 0.4667rem;
  text-align: center;
  font-size: 0.2333rem;
  border-radius: 1.6667rem;
  color: #666;
  border: 1px solid #e9e9e9;
  cursor: pointer;
}
.ny-product-desc .product-prev:hover,
.ny-product-desc .product-next:hover {
  border-color: #b38d54;
  background-color: #b38d54;
  color: #fff;
  box-shadow: 0 0 10px -2px #b38d54;
}
.ny-product-desc .bottom {
  margin-top: 0.8333rem;
}
.ny-product-desc .bottom .head {
  width: 100%;
  border: 1px solid #d9d9d9;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 0.6667rem;
}
.ny-product-desc .bottom .head .text1 {
  padding: 0 0.3333rem;
  font-size: 0.25rem;
  line-height: 0.9rem;
  height: 0.9rem;
  color: #b38d54;
  position: relative;
  border-right: 1px solid #d9d9d9;
  width: 2.6667rem;
  text-align: center;
}
.ny-product-desc .bottom .head .text1:before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #b38d54;
  position: absolute;
  left: 0;
  top: -1px;
}
@media screen and (min-width: 751px) {
  .ny-product-desc .mxw-ny-box {
    padding-top: 1rem;
    padding-bottom: 1rem;
    max-width: 1400px;
  }
}
@media screen and (max-width: 1480px) {
  .ny-product-desc .mxw-ny-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 751px) {
  .ny-product-desc > .mxw-ny-box {
    max-width: 100%;
  }
  .ny-product-desc > .mxw-box {
    flex-wrap: wrap;
  }
  .ny-product-desc .top {
    flex-wrap: wrap;
  }
  .ny-product-desc .ny-product-image {
    width: 100%;
    margin-right: 0;
  }
  .ny-product-desc .right {
    width: 100%;
    margin-top: 30px;
  }
  .ny-product-desc .info {
    order: 2;
  }
  .ny-product-desc .small-image {
    padding: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .ny-product-desc .small-image .swiper-slide {
    max-width: 120px;
  }
  .ny-product-desc .product-prev,
  .ny-product-desc .product-next {
    width: 120px;
    height: 30px;
    line-height: 30px;
    padding: 0;
  }
  .ny-product-desc .info .head .text1 {
    font-size: 18px;
    font-weight: bold;
  }
  .ny-product-desc .info .head .text2 {
    font-size: 14px;
  }
  .ny-product-desc .info .detail {
    font-size: 14px;
  }
  .ny-product-desc .info .price {
    margin-top: 10px;
    padding: 15px;
    font-size: 12px;
  }
  .ny-product-desc .info .price strong {
    font-size: 18px;
  }
  .ny-product-desc .info .mxw-more {
    margin-top: 20px;
  }
  .ny-product-desc .info .contact {
    justify-content: space-between;
  }
  .ny-product-desc .info .contact > a {
    width: 48%;
    margin: 0;
  }
  .ny-product-desc .bottom {
    margin-top: 30px;
  }
  .ny-product-desc .bottom .head {
    margin-bottom: 10px;
  }
  .ny-product-desc .bottom .head .text1 {
    font-size: 12px;
    border-bottom-width: 3px;
    height: 36px;
    line-height: 36px;
    width: 100px;
  }
}
/* ==================== 内页 - 产品详情 end ==================== */
/* ==================== 内页 - 新闻中心 start ==================== */
.ny-news-box .tag {
  margin-top: 10px;
  border: 1px solid #e5e5e5;
  text-align: center;
  padding: 4px 8px;
  border-radius: 5px;
  color: #999;
  display: block;
  font-size: 14px;
  display: table;
}
.ny-news {
  overflow: hidden;
  background: url(../images/img16.jpg) no-repeat center;
  background-size: cover;
}
.ny-news .list {
  justify-content: space-between;
}
.ny-news .list .item {
  display: block;
  background-color: #fff;
  padding: 30px;
  position: relative;
  transition: box-shadow 0.4s;
}
.ny-news .list .item:hover {
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.2);
  z-index: 9;
}
.ny-news .list .item:after {
  content: "";
  display: block;
  width: 96%;
  height: 1px;
  background-color: #e5e5e5;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.ny-news .list .item .title {
  font-size: 16px;
  color: #333;
  line-height: 1.2;
}
.ny-news .list .item .desc {
  margin-top: 20px;
  line-height: 1.8;
  color: #666;
  font-size: 14px;
  text-align: justify;
}
@media screen and (min-width: 751px) {
  .ny-news .list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
  }
  .ny-news .list .item {
    width: 48%;
  }
}
@media screen and (max-width: 751px) {
  .ny-news-box .tag {
    font-size: 12px;
  }
  .ny-news .list .item {
    padding: 20px;
  }
  .ny-news .list .item .title {
    font-size: 14px;
  }
  .ny-news .list .item .desc {
    margin-top: 10px;
    font-size: 12px;
  }
}
/* ==================== 内页 - 新闻中心 end ==================== */
/* ==================== 内页 - 新闻详情 start ==================== */
.ny-news-desc .body .title {
  font-size: 0.3667rem;
  color: #333;
  line-height: 1.6;
}
.ny-news-desc .body .time {
  margin-top: 0.5833rem;
  color: #999;
  line-height: 1.2;
  font-size: 0.2333rem;
  width: 100%;
  padding-bottom: 0.3333rem;
  border-bottom: 0.0167rem solid #eee;
}
.ny-news-desc .body .desc {
  margin-top: 0.5rem;
  font-size: 0.2333rem;
  color: #666;
  text-align: justify;
  line-height: 2.4;
  border-bottom: 0.0167rem dashed #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.ny-news-desc .mxw-message {
  margin-top: 1rem;
  display: block;
  width: 100%;
}
.ny-news-desc .mxw-message .item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  width: 100%;
}
.ny-news-desc .mxw-message .item:last-child {
  margin-bottom: 0;
}
.ny-news-desc .mxw-message label {
  width: 1rem;
  font-size: 0.2333rem;
  color: #666;
  line-height: 1.2;
  height: 0.6333rem;
  line-height: 0.6333rem;
  flex-shrink: 0;
}
.ny-news-desc .mxw-message input,
.ny-news-desc .mxw-message textarea {
  border-radius: 0.0833rem;
  border: 0.0167rem solid #e9e9e9;
  font-size: 0.2167rem;
  display: block;
}
.ny-news-desc .mxw-message input::-webkit-input-placeholder,
.ny-news-desc .mxw-message textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #757575;
}
.ny-news-desc .mxw-message input:-moz-placeholder,
.ny-news-desc .mxw-message textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #757575;
}
.ny-news-desc .mxw-message input::-moz-placeholder,
.ny-news-desc .mxw-message textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #757575;
}
.ny-news-desc .mxw-message input:-ms-input-placeholder,
.ny-news-desc .mxw-message textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #757575;
}
.ny-news-desc .mxw-message input {
  height: 0.6333rem;
  line-height: 0.6333rem;
  padding-left: 0.1667rem;
  padding-right: 0.1667rem;
  width: 4.6rem;
}
.ny-news-desc .mxw-message textarea {
  padding: 0.2333rem;
  height: 4.1667rem;
  width: 100%;
}
.ny-news-desc .mxw-message .code-img {
  display: flex;
  align-items: center;
}
.ny-news-desc .mxw-message .code-img input {
  min-width: 0;
  flex-grow: 1;
  width: 3.3333rem;
  margin-right: 0.1667rem;
}
.ny-news-desc .mxw-message .code-img img {
  flex-shrink: 0;
  height: 0.6333rem;
  width: 2rem;
}
.ny-news-desc .mxw-message button {
  border-radius: 1.6667rem;
  color: #fff;
  background-color: #b38d54;
  height: 0.6667rem;
  line-height: 0.6667rem;
  width: 25%;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.2333rem;
  display: block;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .ny-news-desc .mxw-ny-box {
    max-width: 1400px;
  }
}
@media screen and (max-width: 1480px) {
  .ny-news-desc .mxw-ny-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 751px) {
  .ny-news-desc .mxw-ny-box {
    max-width: 100%;
  }
  .ny-news-desc .body .time {
    margin-top: 10px;
  }
  .ny-news-desc .mxw-message {
    margin-top: 30px;
  }
  .ny-news-desc .mxw-message input {
    width: 100%;
  }
  .ny-news-desc .mxw-message button {
    width: 100%;
  }
}
/* ==================== 内页 - 新闻详情 end ==================== */
/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact {
  overflow: hidden;
}
.ny-contact .mxw-ny-box {
  max-width: 1500px;
}
.ny-contact .section1 .mxw-ny-box {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.ny-contact .section1 .info {
  width: 580px;
}
.ny-contact .section1 .image {
  width: 780px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.ny-contact .section1 .desc {
  font-size: 14px;
  color: #777;
  line-height: 2;
  text-align: justify;
}
.ny-contact .section1 .bottom {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 14px;
  color: #777;
  line-height: 2;
}
.ny-contact .section1 .bottom p {
  width: 50%;
}
.ny-contact .section2 {
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../images/img25.jpg) no-repeat center;
  background-size: cover;
}
.ny-contact .section2 .mxw-ny-box {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  background-color: #fff;
  padding: 70px;
}
.ny-contact .section2 .map {
  display: block;
  width: 570px;
  height: 300px;
  margin-right: 60px;
}
.ny-contact .section2 .info {
  min-width: 0;
  flex-grow: 1;
}
.ny-contact .section2 .info .desc {
  margin-top: 50px;
}
.ny-contact .section2 .info .desc .text1 {
  font-size: 16px;
  color: #b38d54;
  line-height: 1.2;
  margin-bottom: 20px;
}
.ny-contact .section2 .info .desc .text2 {
  font-size: 14px;
  color: #777;
  line-height: 2.4;
  text-align: justify;
}
.ny-contact .section3 .body {
  display: flex;
  align-items: center;
  width: 100%;
}
.ny-contact .section3 .image {
  width: 650px;
  flex-shrink: 0;
  margin-right: 75px;
  overflow: hidden;
  border-radius: 5px;
}
.ny-contact .section3 .right {
  min-width: 0;
  flex-grow: 1;
}
.ny-contact .section3 .right .text1 {
  font-size: 14px;
  color: #777;
  line-height: 1.2;
  margin-bottom: 46px;
}
.ny-contact .section3 .mxw-message .item {
  margin-bottom: 20px;
}
.ny-contact .section3 .mxw-message .item:last-child {
  margin-bottom: 0;
}
.ny-contact .section3 .mxw-message label {
  font-size: 14px;
  color: #666;
  line-height: 1.2;
  margin-bottom: 10px;
  display: block;
}
.ny-contact .section3 .mxw-message label i {
  color: #ff0000;
  margin-left: 10px;
}
.ny-contact .section3 .mxw-message input,
.ny-contact .section3 .mxw-message textarea {
  background-color: #f7f7f7;
  border-radius: 5px;
  font-size: 13px;
  color: #333;
  display: block;
  width: 100%;
}
.ny-contact .section3 .mxw-message input {
  padding-left: 10px;
  padding-right: 10px;
  height: 44px;
  line-height: 44px;
}
.ny-contact .section3 .mxw-message textarea {
  padding: 9px 14px;
  height: 100px;
  line-height: 1.8;
  resize: none;
  margin-bottom: 20px;
  border: 0;
  outline: none;
}
.ny-contact .section3 .mxw-message button {
  width: 300px;
  height: 44px;
  line-height: 44px;
  background-color: #b38d54;
  color: #fff;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .ny-contact .section2 {
    background-attachment: fixed;
  }
}
@media screen and (max-width: 1580px) {
  .ny-contact .mxw-ny-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 751px) {
  .ny-contact .mxw-ny-box {
    max-width: 100%;
  }
  .ny-contact .section1 .mxw-ny-box {
    flex-wrap: wrap;
  }
  .ny-contact .section1 .info {
    width: 100%;
  }
  .ny-contact .section1 .desc {
    font-size: 12px;
  }
  .ny-contact .section1 .bottom {
    margin-top: 10px;
  }
  .ny-contact .section1 .bottom p {
    width: 100%;
    font-size: 12px;
  }
  .ny-contact .section1 .image {
    width: 100%;
    margin-top: 20px;
  }
  .ny-contact .section2 {
    padding: 30px 20px;
  }
  .ny-contact .section2 .mxw-ny-box {
    padding: 15px;
    flex-wrap: wrap;
  }
  .ny-contact .section2 .map {
    width: 100%;
    margin-right: 0;
    height: 230px;
    margin-bottom: 30px;
  }
  .ny-contact .section2 .info .desc {
    margin-top: 20px;
  }
  .ny-contact .section2 .info .desc .text1 {
    margin-bottom: 10px;
  }
  .ny-contact .section2 .info .desc .text2 {
    font-size: 12px;
    line-height: 2;
  }
  .ny-contact .section3 .body {
    flex-wrap: wrap;
  }
  .ny-contact .section3 .image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .ny-contact .section3 .right .text1 {
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 20px;
  }
  .ny-contact .section3 .mxw-message input {
    height: 40px;
    line-height: 40px;
  }
  .ny-contact .section3 .mxw-message button {
    width: 100%;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
  }
}
/* ==================== 内页 - 联系我们 end ==================== */
/* ==================== 底部样式 start ==================== */
.mxw-footer footer {
  width: 100%;
  height: 100%;
}
.mxw-footer .mxw-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
footer {
  text-align: center;
  background-color: #2b2b2b;
}
footer .mxw-copyright {
  color: #575757;
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (min-width: 751px) {
  footer .mxw-box {
    padding: 30px 20px;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  font-size: 0;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
}
.mxw-box a:hover {
  color: #b38d54;
}
/* ==================== 页面自定义样式 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: 84%;
  }
}
@media screen and (min-width: 751px) {
  .pc-none,
  .mob-nav {
    display: none !important;
  }
  body,
  html,
  .mxw-container,
  .mxw-main,
  #index-swiper,
  .banner,
  .banner-swiper,
  .banner-swiper .swiper-slide {
    height: 100%;
    width: 100%;
  }
  .banner-image {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover!important;
    background-position: center!important;
    background-repeat: no-repeat !important;
  }
  .banner-image img {
    display: none;
  }
  #index-swiper header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  }
  #index-swiper > .swiper-wrapper > .swiper-slide:last-child {
    height: 130px;
  }
  #index-swiper > .swiper-wrapper > .swiper-slide:last-child .mxw-box {
    margin-top: 0;
  }
  #index-swiper > .swiper-wrapper > .swiper-slide {
    display: flex;
    align-items: center;
  }
  #index-swiper > .swiper-wrapper > .swiper-slide .wow {
    transition: all 0.4s;
  }
  .mxw-ny-box {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 751px) {
  body {
    margin-top: 0.5px;
  }
  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;
  }
  .mxw-ny-box {
    max-width: 100%;
  }
}
/* ==================== 页面自定义样式 end ==================== */
/* ==================== 动画 start ==================== */
@keyframes arrowAnimate {
  0% {
    transform: translate(0rem, 0rem);
  }
  50% {
    transform: translate(0rem, -0.1667rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
/* ==================== 动画 end ==================== */
