@charset "UTF-8";
@font-face {
  font-family: "Georgia";
  src: url(font/Georgia.ttf);
}
@font-face {
  font-family: "Apertura-Medium";
  src: url(font/Apertura-Medium.otf);
}
/* ==================== 重置默认样式 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 ==================== */
.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 ==================== */
.mxw-links {
  padding-top: 20px;
  padding-bottom: 25px;
  position: relative;
  border-bottom: 1px solid #efc249;
  margin-bottom: 30px;
}
.mxw-links > a {
  color: #333;
  line-height: 14px;
  margin-right: 10px;
  line-height: 1.6;
}
.mxw-links .title {
  display: inline-block;
  font-weight: bold;
  font-size: 17px;
  color: #333;
  line-height: 1.2;
  margin-right: 20px;
  cursor: pointer;
}
.mxw-links .title img {
  margin-right: 10px;
  vertical-align: sub;
}
.mxw-online-links {
  background-color: #fff;
  position: absolute;
  bottom: 100%;
  padding: 10px 15px;
  width: 100%;
  border: 1px solid #ddd;
  display: none;
}
.mxw-online-links a {
  color: #333;
  line-height: 1.6;
  font-size: 14px;
}
.mxw-online-links a:last-child:after {
  display: none;
}
.mxw-online-links a:after {
  content: ',';
  padding: 0 5px;
}
/* ==================== 头部 start ==================== */
header {
  z-index: 99;
  background-color: #fff;
  width: 100%;
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
header .welcome {
  overflow: hidden;
  background-color: #75861b;
}
header .welcome .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}
header .welcome .mxw-box a {
  color: #fff;
}
header .welcome .mxw-box a:hover {
  color: #75861b;
}
header .pc-nav {
  position: relative;
  z-index: 9;
}
header .pc-nav .nav-top .mxw-box {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .pc-nav .nav-bottom {
  background-color: #75861b
}
header .pc-nav .logo {
  display: block;
  width: 565px;
  flex-shrink: 0;
}
header .pc-nav .language {
  display: flex;
  align-items: center;
}
header .pc-nav .language a {
  margin-right: 20px;
}
header .pc-nav .language a:last-child {
  margin-right: 0;
}
header .pc-menu {
  display: flex;
  align-items: center;
  padding-right: 190px;
}
header .pc-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  flex-grow: 1;
}
header .pc-menu > li:hover > a {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff !important;
}
header .pc-menu > li:hover > ul {
  visibility: visible;
  opacity: 1;
}
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 0px;
  line-height: 1.2;
  width: 100%;
  font-family: "Apertura-Medium";
}
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: 1740px) {
  header .welcome .mxw-box,
  header .pc-nav .mxw-box {
    max-width: 96%;
  }
  header .pc-menu > li {
    margin-right: 40px;
  }
  header .pc-menu > li > a {
    font-size: 17px;
  }
  header .pc-nav .nav-contact .nav-tel .icon {
    width: 30px;
  }
  header .pc-nav .nav-contact .nav-tel strong {
    font-size: 22px;
  }
  header .pc-nav .nav-contact .search input {
    font-size: 12px;
  }
  header .pc-nav .nav-contact .nav-tel {
    margin-right: 30px;
  }
  header .pc-nav .logo {
    width: 380px;
  }
}
@media screen and (max-width: 1300px) {
  header .pc-nav .logo {
    width: 320px;
  }
  header .pc-menu > li > a {
    font-size: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1280px) {
  header .pc-menu>li>a {
      font-size: 13px;
      padding-top: 10px;
      padding-bottom: 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: 31px;
  }
  .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 > a {
    background-color: rgba(0, 0, 0, 0.07);
  }
  .mxw-mob-nav .menus > ul > li.active > ul {
    display: block;
  }
  .mxw-mob-nav .menus > ul > li > a {
    display: block;
    width: 100%;
    padding: 15px 18px;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mxw-mob-nav .menus > ul > li > a.sub:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-top: 4px solid #555;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 0;
    margin-left: 10px;
  }
  .mxw-mob-nav .menus > ul > li > ul {
    display: none;
    padding: 0px 24px;
  }
  .mxw-mob-nav .menus > ul > li > ul > li > a {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 36px;
    height: 36px;
    border-bottom: 1px solid #f3f3f3;
  }
  .mxw-mob-nav .menus-head {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8F8F8;
    border-bottom: 0.6px solid #eee;
    font-size: 16.8px;
    font-weight: bold;
    line-height: 54px;
    height: 54px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .mxw-mob-nav .menus-head .text {
    color: #333;
    line-height: 1.2;
  }
  .mxw-mob-nav .menus-head .mxw-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none;
    position: relative;
    transform: rotate(45deg);
  }
  .mxw-mob-nav .menus-head .mxw-close:before,
  .mxw-mob-nav .menus-head .mxw-close:after {
    content: "";
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
  }
  .mxw-mob-nav .menus-head .mxw-close:before {
    width: 2px;
    height: 100%;
  }
  .mxw-mob-nav .menus-head .mxw-close:after {
    width: 100%;
    height: 2px;
  }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
  height: 100%;
  font-size: 0;
  position: relative;
}
.mxw-banner .banner-swiper {
  height: 100%;
  width: 100%;
}
.mxw-banner .swiper-slide {
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.mxw-banner .swiper-slide img {
  width: 100%;
  height: 100%;
}
.mxw-banner .swiper-pagination {
  width: 100%;
  max-width: 1680px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  left: auto;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  margin-left: 15px;
  margin-right: 15px;
  border: 1px solid #fff;
  transition: width 0.4s;
  border-radius: 100%;
  background: none;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
  width: 50px;
  height: 90px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.33);
  background-image: none;
  outline: none;
  z-index: 99;
  transform: translateY(-50%);
  top: 50%;
}
.mxw-banner .swiper-button-next {
  right: 40px;
}
.mxw-banner .swiper-button-prev {
  left: 40px;
}
.mxw-banner .banner-swiper {
  --swiper-navigation-color: #fff;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 24px;
  /* 设置按钮大小 */
}
.mxw-banner .swiper-slide.swiper-slide-active .text {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.mxw-banner .swiper-slide .text {
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 2s;
  position: absolute;
  top: 50%;
  margin-top: -1.3833rem;
  width: 13.35rem;
  right: 4.2667rem;
}
.mxw-banner .swiper-slide .text img {
  width: auto;
  height: auto;
}
.mxw-banner .tool {
  z-index: 40;
  font-size: 0;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mxw-banner .tool .swiper-pagination {
  position: static;
  width: auto;
  margin: 0;
  transform: inherit;
}
.mxw-banner .tool .mxw-next,
.mxw-banner .tool .mxw-prev {
  font-size: 18px;
  color: #fff;
  position: static;
  opacity: 1;
  width: auto;
  height: auto;
  line-height: 1.2;
  cursor: pointer;
  position: relative;
}
.mxw-banner .tool .mxw-next:after,
.mxw-banner .tool .mxw-prev:after {
  content: "";
  display: block;
  background: url(../images/arrow.png) no-repeat center;
  width: 20px;
  height: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.mxw-banner .tool .mxw-next {
  margin-left: 50px;
}
.mxw-banner .tool .mxw-next:after {
  right: -30px;
}
.mxw-banner .tool .mxw-prev {
  margin-right: 50px;
}
.mxw-banner .tool .mxw-prev::after {
  left: -30px;
  transform: rotateY(180deg) translateY(-50%);
}
@media screen and (max-width: 1280px) {
  .mxw-banner .swiper-slide .text {
    width: 300px;
  }
  .mxw-banner .swiper-slide .text img {
    height: auto;
  }
  .mxw-banner .tool {
    zoom: 0.8;
  }
  
}
@media screen and (max-width: 1200px) {
  .mxw-banner .swiper-pagination {
    padding-right: 0px;
    bottom: 10px;
    max-width: 80%;
  }
  .mxw-banner .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    font-size: 14px;
    width: 8px;
    height: 8px;
  }
  .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-size: 18px;
  }
  .mxw-banner .swiper-button-next,
  .mxw-banner .swiper-button-prev {
    display: none;
  }
  .mxw-banner .swiper-slide .text {
    width: 150px;
    margin-top: -15px;
    right: 30px;
  }
}
/* ==================== 轮播图 end ==================== */
/* ==================== 通用 - 无缝滚动 end ==================== */
.mxw-scroll {
  overflow: hidden;
}
.mxw-scroll .scroll-wrap {
  display: flex;
  align-items: stretch;
  transform: translateX(0);
}
.mxw-scroll .scroll-item {
  flex-shrink: 0;
  padding-top:10px;
}
@media screen and (min-width: 1200px) {
  .mxw-scroll .scroll-item {
    width: 23.5%;
    margin-right: 2%;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-scroll .scroll-item {
    width: 48%;
    margin-right: 4%;
  }
}
/* ==================== 通用 - 无缝滚动 end ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
  overflow: hidden;
  margin-bottom: 1rem;
  text-align: center;
  color: #fff;
}
.mxw-title .text1 {
  font-size: 0.7667rem;
  line-height: 1.2;
  font-family: "Georgia";
}
.mxw-title .text2 {
  font-size: 0.3rem;
  line-height: 1.8;
  font-family: "Georgia";
  margin-top: 0.3333rem;
}
@media screen and (max-width: 1280px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-size: 28px;
  }
  .mxw-title .text2 {
    font-size: 12px;
    line-height: 1.6;
    font-family: "Georgia";
    margin-top: 6px;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-size: 22px;
    line-height: 1.1;
  }
  .mxw-title .text2 {
    font-size: 12px;
    margin-top: 10px;
    line-height: 1.4;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 首页整【屏滚动样式 start ==================== */
.main-swiper {
  height: 100vh;
  width: 100vw;
}
.main-swiper > .swiper-wrapper > .swiper-slide {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.main-swiper > .swiper-wrapper > .swiper-slide .mxw-box {
  width: 100%;
}
.main-swiper .mxw-more {
  display: block;
}
.main-swiper .mxw-more img {
  transition: transform 0.4s;
}
.main-swiper .mxw-more:hover img {
  box-shadow: 0 0 10px -2px #75861b;
  transform: translateX(10px);
}
@media screen and (min-width: 1200px) {
  
  .main-swiper > .swiper-wrapper > .swiper-slide:last-child {
    height: 80px!important;
    padding-top: 0!important;
  }
}
@media screen and (max-width: 1280px) {
  /* .main-swiper .mxw-more img {
    width: 100px;
  }
  .main-swiper > .swiper-wrapper > .swiper-slide:last-child {
    height: 73px!important;
  } 
  */

}
@media screen and (max-width: 1200px) {
  .main-swiper{
    height: calc(100vh - 60px);
  }
  /* .main-swiper > .swiper-wrapper > .swiper-slide:last-child {
    height: auto!important;
  }
  .main-swiper > .swiper-wrapper {
    display: block;
  }
  .main-swiper > .swiper-wrapper > .swiper-slide {
    display: block;
  }
  */
  .main-swiper .mxw-more {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
  .main-swiper .mxw-more img {
    width: 130px;
  } 
  .main-swiper > .swiper-wrapper > .swiper-slide {
    overflow: auto;
  }
  
}
/* ==================== 首页整【屏滚动样式 end ==================== */
/* ==================== 悬浮侧边栏 start ==================== */
.mxw-tool {
  position: fixed;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1999;
}
.mxw-tool > a {
  margin-bottom: 0.0833rem;
  display: block;
  font-size: 0;
  position: relative;
}
.mxw-tool > a:hover .qr {
  visibility: visible;
  opacity: 1;
}
.mxw-tool > a:last-child {
  margin-bottom: 0;
}
.mxw-tool > a > img {
  border-radius: 0.1667rem;
  overflow: hidden;
  border: 0.0167rem solid #ddd;
}
.mxw-tool > a .qr {
  background-color: #fff;
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: -0.1667rem;
  transform: translateX(-100%) translateY(-50%);
  top: 50%;
  display: block;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.4s, opacity 0.4s;
}
@media screen and (max-width: 1366px) {
  .mxw-tool {
    zoom: 0.7;
  }
}
@media screen and (max-width: 1280px) {
  .mxw-tool {
    zoom: 0.6;
  }
}
/* ==================== 悬浮侧边栏 end ==================== */
/* ==================== 关于我们 start ==================== */
.mxw-about {
  background: url(../images/img15.jpg) no-repeat center;
  background-size: cover;
}
.mxw-about .info .desc {
  font-size: 0.4rem;
  color: #fff;
  line-height: 2em;
  font-family: "Georgia";
}
.mxw-about .info .desc p {
  font-family: inherit;
}
.mxw-about .info .mxw-more {
  display: block;
  margin-top: 1rem;
}
.mxw-about .mxw-video {
  position: relative;
  cursor: pointer;
}
.mxw-about .mxw-video.active:after {
  display: none;
}
.mxw-about .mxw-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mxw-about .mxw-video:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/img16.png) no-repeat center;
}
.mxw-about .mxw-video iframe {
    width: 100%;
    height: 100%;
}
.mxw-about .mxw-video.dc::after{
display:none
}

@media screen and (min-width: 1200px) {
  .mxw-about .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mxw-about .info {
    min-width: 0;
    flex-grow: 1;
  }
  .mxw-about .info .mxw-more {
    display: inline-block;
  }
  .mxw-about .mxw-video {
    margin-left: 0.8333rem;
    width: 13.75rem;
    height: 8.3333rem;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 1280px) {
  .mxw-about .info .desc {
    font-size: 14px;
  }
  .mxw-about .mxw-video {
    width: 510px;
    height: 310px;
  }
  .mxw-about .mxw-video:after {
    background-size: 100px;
  }

}
@media screen and (max-width: 1200px) {
  .mxw-about .info .desc {
    font-size: 14px;
  }
  .mxw-about .info .mxw-more {
    margin-top: 30px;
  }
  .mxw-about .mxw-video {
    margin-top: 30px;
    height: auto;
    width:100%;
  }
  .mxw-about .mxw-video:after {
    background-size: 70px;
  }

.mxw-about .mxw-video iframe {
    width: 100%;
    height: 220px;
}

}
/* ==================== 关于我们 end ==================== */
/* ==================== 团队 start ==================== */
.mxw-team {
  background: url(../images/img18.jpg) no-repeat center;
  background-size: cover;
}
.mxw-team .swiper-wrapper {
  padding-top: 10px;
}
.mxw-team .team-item {
  display: block;
  text-align: center;
}
.mxw-team .team-item .image {
  width: 4.5rem;
  overflow: hidden;
  border-radius: 100%;
  border: 8px solid #fff;
  display: block;
  margin: 0 auto 0.3333rem;
}
.mxw-team .team-item .bottom {
  color: #fff;
}
.mxw-team .team-item .bottom .text1 {
  font-size: 0.3rem;
  text-transform: uppercase;
  font-family: 'Georgia';
  margin-bottom: 0.1667rem;
}
.mxw-team .team-item .bottom .text2 {
  font-size: 0.2667rem;
  line-height: 1.2;
  font-family: 'Georgia';
}
.mxw-team .mxw-more {
  margin-top: 1.6667rem;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .mxw-team .team-item .image,
  .mxw-team .team-item .bottom {
    transition: transform 0.4s;
  }
  .mxw-team .team-item:hover .image,
  .mxw-team .team-item:hover .bottom {
    transform: translateY(-10px);
  }
}
@media screen and (max-width: 1600px) {
  .mxw-team .team-item .image {
    width: 3.8333rem;
  }
  .mxw-team .mxw-more {
    margin-top: 0.6667rem;
  }
}
@media screen and (max-width: 1280px) {
  .mxw-team .swiper-slide .image{
    width: 130px;
    border-width: 6px;
  }
  .mxw-team .mxw-more {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-team .team-item .image {
    width: 140px;
    border-width: 4px;
  }
  .mxw-team .team-item .bottom .text1 {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .mxw-team .team-item .bottom .text2 {
    font-size: 12px;
  }
  .mxw-team .mxw-more {
    margin-top: 50px;
  }
}
/* ==================== 优势 end ==================== */
/* ==================== 产品中心 start ==================== */
.mxw-product {
  background: url(../images/img23.jpg) no-repeat center;
  background-size: cover;
}
.mxw-product .swiper-slide {
  display: block;
}
.mxw-product .swiper-slide:hover .image img:first-child{
  margin-left: -100%;
}
.mxw-product .swiper-slide .image {
  border: 8px solid #eaecde;
  border-radius: 100%;
  overflow: hidden;
  width: 4.6667rem;
  margin: 0 auto 0.3333rem;
  display: flex;
  align-items: stretch;
}
.mxw-product .swiper-slide .image img{
  flex-shrink: 0;
  width: 100%;
  transition: margin-left 0.4s;
}
.mxw-product .swiper-slide .title {
  font-size: 0.3rem;
  color: #fff;
  font-family: "Georgia";
  text-align: center;
  font-weight: bold;
}
.mxw-product .mxw-more {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .mxw-product .mxw-more {
    margin-top: 1.6667rem;
  }
}
@media screen and (max-width: 1280px) {
  .mxw-product .swiper-slide .image{
    width: 130px;
    border-width: 6px;
  }
  .mxw-product .mxw-more {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-product .swiper-slide .image {
    width: 140px;
    height: 140px;
    border-width: 4px;
  }
  .mxw-product .swiper-slide .title {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
  }
}
/* ==================== 产品中心 end ==================== */
/* ==================== 服务 start ==================== */
.mxw-server {
  background: url(../images/img28.jpg) no-repeat center;
  background-size: cover;
}
.mxw-server .swiper-slide {
  display: block;
}
.mxw-server .swiper-slide .image {
  border: 8px solid #eaecde;
  border-radius: 100%;
  overflow: hidden;
  width: 4.3333rem;
  margin: 0 auto 0.3333rem;
}
.mxw-server .swiper-slide .title {
  font-size: 0.3rem;
  color: #fff;
  font-family: "Georgia";
  text-align: center;
  font-weight: bold;
}
.mxw-server .mxw-more {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .mxw-server .mxw-box {
    max-width: 83.3%;
  }
  .mxw-server .mxw-more {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1600px) {
  .mxw-server .swiper-slide .image {
    width: 3.5rem;
  }
  .mxw-server .mxw-more {
    margin-top: 0.8333rem;
  }
}
@media screen and (max-width: 1280px) {
  .mxw-server .swiper-slide .image{
    width: 130px;
    border-width: 6px;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-server .swiper-slide .image {
    width: 140px;
    height: 140px;
    border-width: 4px;
  }
  .mxw-server .swiper-slide .title {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .mxw-server .mxw-more{
    margin-top:50px;
  }
}
/* ==================== 服务 end ==================== */
/* ==================== 荣誉证书 start ==================== */
.mxw-certificates {
  background: url(../images/img34.jpg) no-repeat left center;    background-size: cover;
}
.mxw-certificates .certificates-swiper .swiper-slide {
  background: url(../images/img36.png) no-repeat left top;
  background-size: cover;
  padding: 0.1667rem;
}
@media screen and (min-width: 1200px) {
  .mxw-certificates {
    padding-right: 3.3333rem;
  }
  .mxw-certificates .mxw-box {
    padding-right: 1.6667rem;
    max-width: 83.3%;
    margin-right: 0;
  }
  .mxw-certificates .mxw-title {
     text-align: center;
  }
  .mxw-certificates .mxw-more {
    margin-top: 100px;
  text-align: center;
  }
}
@media screen and (max-width: 1600px) {
  .mxw-certificates .mxw-more {
    margin-top: 0.6667rem;
  }
}
@media screen and (max-width: 1280px) {
  .mxw-certificates .mxw-box {

  }
.mxw-certificates .certificates-swiper .swiper-slide{
    padding-bottom: 0.3rem;
}
}
@media screen and (max-width: 1200px) {
  .mxw-certificates .mxw-more {
    margin-top: 30px;
  }
}
/* ==================== 荣誉证书 end ==================== */
/* ==================== 新闻资讯 start ==================== */
.mxw-news {
  background: url(../images/img37.jpg) no-repeat center;
  background-size: cover;
}
.mxw-news .news-swiper {
  margin-bottom: 0.8333rem;
}
.mxw-news .swiper-slide {
  display: block;
  border-radius: 0.2667rem;
  overflow: hidden;
}
.mxw-news .swiper-slide .mxw-image {
    height: 3.58rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mxw-news .swiper-slide .title {
  font-size: 0.3rem;
  color: #64513d;
  padding: 0.3333rem;
  text-align: center;
  background-color: #fff;
}
.mxw-news .swiper-scrollbar {
  height: 0.1167rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0.0667rem;
  overflow: hidden;
}
.mxw-news .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #fff;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .mxw-news .mxw-box {
    max-width: 83.3%;
  }
  .mxw-news .mxw-more {
    margin-top: 0.8333rem;
    text-align: center;
  }
}
@media screen and (max-width: 1280px) {
  .mxw-news .mxw-more{
    margin-top: 20px;
  }
  .mxw-news .swiper-slide .title {
    font-size: 12px;
    padding: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-news .news-swiper {
    margin-bottom: 30px;
  }
  .mxw-news .swiper-scrollbar {
    height: 4px;
  }
  .mxw-news .swiper-slide {
    border-radius: 10px;
  }
  .mxw-news .swiper-slide .title {
    font-size: 12px;
    padding: 10px 15px;
  }
.mxw-news .swiper-slide .mxw-image{ height:115px;}
.mxw-news .swiper-slide .mxw-image img{height:100%;}
}
/* ==================== 新闻资讯 end ==================== */
/* ==================== 联系我们 start ==================== */
.mxw-contact {
  background: url(../images/img41.jpg) no-repeat center;
  background-size: cover;
}
.mxw-contact .info {
  padding: 1.1667rem;
  background-color: #fff;
}
.mxw-contact .info .item {
  margin-bottom: 0.6667rem;
}
.mxw-contact .info .item:last-child {
  margin-bottom: 0;
}
.mxw-contact .info .item .text1 {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  font-family: "Georgia";
  margin-bottom: 0.3333rem;
  font-weight: bold;
}
.mxw-contact .info .item .text2 {
  font-size: 0.2667rem;
  font-family: "Georgia";
  line-height: 1.8;
}
.mxw-contact .info .item .text2 img {
  width: 0.4rem;
  margin-right: 0.3333rem;
}
.mxw-contact form {
  background-color: #eaecde;
  padding: 0.6667rem 1.1667rem;
}
.mxw-contact form label {
  display: block;
}
.mxw-contact form .label {
  font-size: 0.3rem;
  color: #666;
  font-family: "Georgia";
  margin-bottom: 0.1667rem;
}
.mxw-contact form input,
.mxw-contact form textarea {
  background-color: #fff;
  color: #333;
  resize: none;
}
.mxw-contact form input {
  width: 100%;
  height: 0.8333rem;
  line-height: 0.8333rem;
  padding: 0 0.25rem;
}
.mxw-contact form .mxw-textarea {
  width: 100%;
  margin-right: 0;
}
.mxw-contact form .mxw-textarea textarea {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0.25rem 0.3333rem;
  height: 1.5rem;
}
.mxw-contact form button {
  display: block;
  cursor: pointer;
  outline: none;
  background-color: #75861b;
  color: #fff;
  height: 0.8333rem;
  line-height: 0.8333rem;
  text-align: center;
  margin-top: 0.3333rem;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .mxw-contact .body {
    display: flex;
    align-items: stretch;
  }
  .mxw-contact .info,
  .mxw-contact form {
    width: 50%;
  }
  .mxw-contact .mxw-box {
    max-width: 83.3%;
  }
}
@media screen and (max-width: 1600px) {
  .mxw-contact .mxw-title {
    margin-bottom: 0.5rem;
  }
  .mxw-contact .info {
    padding: 0.8333rem;
  }
  .mxw-contact form {
    padding: 0.5rem 0.8333rem;
  }
}
@media screen and (max-width: 1280px) {
  .mxw-contact{
    justify-content: flex-start!important;
    padding-top: 90px;
  }
  .mxw-contact form,
  .mxw-contact .info {
    padding: 24px;
  }
  .mxw-contact .info .item {
    margin-bottom: 15px;
  }
  .mxw-contact .u-row-2 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 2%;
  }
  .mxw-contact form input,
  .mxw-contact form button {
    height: 24px;
    line-height: 24px;
    font-size: 12px;
  }
  .mxw-contact .info .item .text2 {
    font-size: 12px;
  }
  .mxw-contact .info .item .text1 {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .mxw-contact form input,
  .mxw-contact form textarea {
    font-size: 12px;
  }
  .mxw-contact form .label {
    font-size: 12px;
  }

}
@media screen and (max-width: 1200px) {
  .mxw-contact{padding-top:30px;padding-bottom:0;}
  .mxw-contact .info {
    padding: 30px 20px;
  }
  .mxw-contact .info .item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
  }
  .mxw-contact .info .item .text1 {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .mxw-contact .info .item .text2 {
    font-size: 12px;
  }
  .mxw-contact .info .item .text2 img {
    width: 12px;
    margin-right: 10px;
  }
  .mxw-contact form {
    padding: 30px 20px;
  }
  .mxw-contact form .label {
    font-size: 14px;
  }
  .mxw-contact form input {
    height: 36px;
    line-height: 36px;
  }
  .mxw-contact form .mxw-textarea textarea {
    height: 150px;
    font-size: 12px;
    padding: 10px;
  }
  .mxw-contact form button {
    height: 36px;
    line-height: 36px;
  }
}
/* ==================== 联系我们 end ==================== */
/* ==================== 内页 - 分类 start ==================== */
.ny-cate .mxw-box {
  padding-bottom: 0.4167rem;
  border-bottom: 0.0167rem solid #75861b;
}
.ny-cate .itembox {
  align-items: stretch!important;
}
.ny-cate .title {
  font-size: 0.6667rem;
  color: #75861b;
  font-family: "Georgia";
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.ny-cate .itembox {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.ny-cate .item {
  display: block;
  background-color: #fff;
  text-align: center;
  font-size: 0.3rem;
  color: #333;
  padding: 0.25rem 0.0833rem;
  font-weight: bold;
  font-family: "Georgia";
}
.ny-cate .item:hover,
.ny-cate .item.active {
  background-color: #75861b;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .ny-cate .item {
    width: 19.2%;
    margin-right: 1%;
  }
  .ny-cate .item:nth-child(5n) {
    margin-right: 0;
  }
  .ny-cate .item:nth-child(5) ~ .item {
    margin-top: 1%;
  }
}
@media screen and (max-width: 1200px) {
  .ny-cate .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .ny-cate .item {
    letter-spacing: 0;
    font-size: 12px;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* ==================== 内页 - 分类 start ==================== */
/* ==================== 内页 - 产品中心 start ==================== */
.ny-product {
  background: url(../images/img45.jpg) no-repeat center bottom #e0e8d9;
}
.ny-product .body .itembox {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.ny-product .body .item:hover .image img:first-child {
  margin-left: -100%;
}
.ny-product .body .item:hover .btn-group {
  opacity: 1;
  visibility: visible;
}
.ny-product .body .item .image {
  border: 0.15rem solid #afb87d;
  display: block;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 0.3333rem;
  display: flex;
  align-items: stretch;
}
.ny-product .body .item .image img {
  flex-shrink: 0;
  width: 100%;
  transition: margin-left 0.4s;
}
.ny-product .body .item .title {
  margin-bottom: 0.3333rem;
  text-align: center;
  font-size: 0.3rem;
  font-family: "Georgia";
  color: #333;
  line-height: 1.2;
  font-weight: bold;
}
.ny-product .body .item .btn-group {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s, opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ny-product .body .item .btn-group .mxw-btn {
  display: block;
  width: 49%;
  border: 0.0167rem solid #728534;
  background-color: #fff;
  font-family: "Georgia";
  text-align: center;
  padding: 0.1667rem;
  font-size: 16px;
}
.ny-product .body .item .btn-group .mxw-btn:hover {
  background-color: #728534;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .ny-product .body .item {
    width: 18.8%;
    margin-right: 8.26666%;
  }
  .ny-product .body .item:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .ny-product {
    background-size: 100% auto;
  }
  .ny-product .body .item .image {
    width: 100%;
    border-width: 4px;
  }
  .ny-product .body .item .btn-group {
    display: none;
  }
}
/* ==================== 内页 - 产品中心 end ==================== */
/* ==================== 产品详情页 start ==================== */
.ny-product-desc {
  overflow: hidden;
}
.ny-product-desc .product-image {
  width: 44%;
  margin-right: 3%;
  flex-shrink: 0;
  position: relative;
  z-index: 9;
}
.ny-product-desc .product-image img {
  width: 100%;
}
.ny-product-desc .product-desc {
  width: 53%;
}
.ny-product-desc .product-desc .title {
  font-size: 0.4667rem;
  padding-bottom: 0.3333rem;
  border-bottom: 0.0167rem solid #ddd;
  margin-bottom: 0.3333rem;
  font-weight: bold;
  color: #75861b;
}
.ny-product-desc .product-desc .desc {
  word-break: break-all;
  font-size: 0.3rem;
  color: #666;
  line-height: 1.8;
}
.ny-product-desc .bottom {
  margin-top: 0.6667rem;
  font-size: 0.2667rem;
  line-height: 1.8;
  text-align: justify;
}
.easyzoom-flyout img {
  max-width: inherit!important;
  width: auto!important;
}
@media screen and (max-width: 1200px) {
  .ny-product-desc {
    padding: 0;
  }
  .ny-product-desc .product-image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    pointer-events: none;
  }
  .ny-product-desc .product-desc {
    width: 100%;
  }
  .ny-product-desc .product-desc .title {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .ny-product-desc .top {
    flex-flow: column;
  }
  .ny-product-desc .product-desc .desc {
    font-size: 14px;
  }
  .ny-product-desc .bottom {
    margin-top: 15px;
  }
}
/* ==================== 产品详情页 end ==================== */
/* ==================== 内页 - 服务 start ==================== */
.ny-server {
  overflow: hidden;
  background: url(../images/img50.jpg) no-repeat center;
  background-size: cover;
}
.ny-server .mxw-box {
  position: relative;
  z-index: 3;
}
.ny-server .itembox {
  display: flex;
  align-items: flex-start;
}
.ny-server .item {
  display: block;
  width: 17.8%;
  margin-right: 2.75%;
}
.ny-server .item .image {
  border-radius: 100%;
  overflow: hidden;
  border: 8px solid #fff;
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.ny-server .item .title {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  text-align: center;
  font-weight: bold;
  font-family: "Georgia";
}
.ny-server .item:last-child {
  margin-right: 0;
}
@media screen and (min-width: 1200px) {
  .ny-server {
    min-height: calc(100vh - 3.6833rem);
  }
}
@media screen and (max-width: 1200px) {
  .ny-server {
    min-height: calc(100vh - 154px);
  }
  .ny-server .itembox {
    flex-wrap: wrap;
  }
  .ny-server .item {
    width: 47%;
    margin-right: 6%;
  }
  .ny-server .item .title {
    font-size: 12px;
  }
  .ny-server .item .image {
    border-width: 4px;
    width: 80%;
    margin: 0 auto 10px;
  }
  .ny-server .item:nth-child(2n) {
    margin-right: 0;
  }
  .ny-server .item:nth-child(2) ~ .item {
    margin-top: 4%;
  }
}
/* ==================== 内页 - 服务 end ==================== */
/* ==================== 内页 - 标题 start ==================== */
.ny-title {
  border-bottom: 0.0167rem solid #75861b;
  padding-bottom: 0.6667rem;
  margin-bottom: 1.1667rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ny-title .text1 {
  font-size: 0.6667rem;
  color: #75861b;
  line-height: 1.2;
  font-family: "Georgia";
}
.ny-title .more-group {
  display: flex;
  align-items: stretch;
}
.ny-title .mxw-more {
  min-width: 3.1667rem;
  height: 0.8333rem;
  line-height: 0.8333rem;
  text-align: center;
  color: #fff;
  font-size: 0.3rem;
  background-color: #fff;
  color: #333;
  font-family: "Georgia";
  margin-right: 0.25rem;
  font-weight: bold;
  padding: 0 0.25rem;
}
.ny-title .mxw-more.active,
.ny-title .mxw-more:hover {
  background-color: #75861b;
  color: #fff;
}
.ny-title .mxw-more:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1200px) {
  .ny-title {
    padding-bottom: 10px;
    margin-bottom: 30px;
    display: block;
  }
  .ny-title .text1 {
    font-size: 22px;
    font-weight: bold;
  }
  .ny-title .more-group {
    margin-top: 20px;
    width: 100%;
    flex-wrap: wrap;
  }
  .ny-title .mxw-more {
    width: 49%;
    margin-right: 2%;
    padding: 8px ;
    height: auto;
    line-height: inherit;
    font-size: 12px;
  }
  .ny-title .mxw-more:nth-child(2n) {
    margin-right: 0;
  }
  .ny-title .mxw-more:nth-child(2) ~ .mxw-more {
    margin-top: 2%;
  }
}
/* ==================== 内页 - 标题 end ==================== */
/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact {
  background: url(../images/img51.jpg) no-repeat center;
  background-size: cover;
}
.ny-contact .mxw-contact {
  background: none;
}
.ny-contact .section2 .mxw-ny-box {
  padding-top: 0;
}
.ny-contact .section2 .map img {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .ny-contact .mxw-contact .mxw-ny-box {
    max-width: 72.9%;
  }
}
@media screen and (max-width: 1680px) {
  .ny-contact .mxw-contact .mxw-ny-box {
    max-width: 86%;
  }
}
/* ==================== 内页 - 联系我们 end ==================== */
/* ==================== 内页 - 关于我们 start ==================== */
.ny-about {
  overflow: hidden;
  background: url(../images/img53.jpg) no-repeat center;
  background-size: cover;
}
.ny-about .section1 .info {
  background-color: #fff;
  font-size: 0.3rem;
  color: #333;
  line-height: 1.6em;
  text-align: justify;
  height: 6.37rem;
  padding: 0.6667rem;
}
.ny-about .section1 .desc {
  overflow: auto;
  height: 100%;
  font-family: "Georgia";
}
.ny-about .section2 {
  padding-bottom: 1.6667rem;
}
.ny-about .section2 > .mxw-ny-box {
  padding-bottom: 0;
}
.ny-about .section2 .ny-about2-swiper {
  max-width: 1650px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow: visible;
}
.ny-about .section2 .ny-about2-swiper .image {
  border: 0.0833rem solid #fff;
}
@media screen and (min-width: 1200px) {
  .ny-about {
    min-height: calc(100vh - 3.6833rem);
  }
  .ny-about .section1 {
    display: flex;
    align-items: stretch;
  }
  .ny-about .section1 .image {
    width: 48%;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 1680px) {
  .ny-about .section1 .image {
    width: 50.6%;
  }
  .ny-about .section1 .info {
    height: 6.72rem;
  }
  .ny-about .section2 .ny-about2-swiper {
    max-width: 90%;
  }
}
@media screen and (max-width: 1200px) {
  .ny-about {
    min-height: calc(100vh - 154px);
  }
  .ny-about .section1 .image {
    width: 100%;
  }
  .ny-about .section1 .info {
    padding: 20px;
    font-size: 12px;
    height: auto;
  }
  .ny-about .section2 {
    padding-bottom: 30px;
  }
  .ny-about .section2 .ny-about2-swiper {
    padding: 0 20px;
    max-width: 100%;
  }
  .ny-about .section2 .ny-about2-swiper .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .ny-about .section2 .ny-about2-swiper .swiper-slide {
    width: 48%;
  }
  .ny-about .section2 .ny-about2-swiper .swiper-slide:nth-child(2n-1) {
    margin-right: 4%;
  }
  .ny-about .section2 .ny-about2-swiper .swiper-slide:nth-child(2) ~ .swiper-slide {
    margin-top: 4%;
  }
  .ny-about .section2 .ny-about2-swiper .image {
    border-width: 2px;
  }
}
/* ==================== 内页 - 关于我们 end ==================== */
/* ==================== 内页 - 团队列表 start ==================== */
.ny-team {
  background: url(../images/img55.jpg) no-repeat center;
  background-size: cover;
}
.ny-team .mxw-team {
  background: none;
}
.ny-team .mxw-team .team-item .image {
  width: 100%;
}
.ny-team .mxw-team .team-item .bottom .text1,
.ny-team .mxw-team .team-item .bottom .text2 {
  font-family: "Georgia";
}
.ny-team .mxw-team .team-item .bottom .text1 {
  color: #75861b;
}
.ny-team .mxw-team .team-item .bottom .text2 {
  color: #333;
}
@media screen and (min-width: 1200px) {
  .ny-team .team-item {
    width: 18.5%;
    margin-right: 8.666%;
  }
  .ny-team .team-item:nth-child(4n) {
    margin-right: 0;
  }
  .ny-team .team-item:nth-child(4) ~ .team-item {
    margin-top: 0.8333rem;
  }
}
/* ==================== 内页 - 团队列表 end ==================== */
/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
  padding: 0.7258rem 0.4032rem;
  padding-top: 0;
  margin-bottom: 0.5645rem;
}
.ny-news-desc > .mxw-box {
  padding-top: 1rem;
}
.ny-news-desc .title {
  font-weight: bold;
  font-size: 0.4516rem;
  color: #333;
  padding-bottom: 0.3226rem;
}
.ny-news-desc .info {
  font-size: 0;
  padding-bottom: 0.3226rem;
  border-bottom: 1px solid #d5d5d5;
  margin-bottom: 0.3226rem;
}
.ny-news-desc .info .text {
  font-size: 0.2581rem;
  color: #999;
  display: inline-block;
  margin-right: 0.3226rem;
  border-left: 1px solid #ccc;
  padding-left: 0.3226rem;
}
.ny-news-desc .info .tip {
  border: 1px solid #999;
  border-radius: 1.6129rem;
  padding: 0.0806rem 0.1613rem;
  line-height: 1;
  font-size: 0.2258rem;
  display: inline-block;
  color: #999;
}
.ny-news-desc .info .tip + .text {
  border-left: 0;
}
.ny-news-desc .article {
  line-height: 1.8;
  text-align: justify;
  font-size: 0.2581rem;
}
.ny-news-desc .article img {
  display: block;
  margin: 0 auto;
}
.ny-news-desc .article p {
  line-height: 1.8;
}
@media screen and (max-width: 1200px) {
  .ny-news-desc {
    padding: 0;
    background: none;
    margin-bottom: 0;
  }
  .ny-news-desc > .mxw-box {
    padding: 30px 20px;
  }
  .ny-news-desc .article {
    font-size: 0.28rem;
  }
  .ny-news-desc .info {
    padding-bottom: 0.2rem;
  }
  .ny-news-desc .info .text {
    margin-right: 0.1rem;
    padding-left: 0.1rem;
    line-height: 2em;
    display: inline;
  }
}
/* ==================== 新闻详情 end ==================== */
/* ==================== 新闻列表 start ==================== */
.ny-news {
  background: url(../images/img70.jpg) no-repeat center;
  background-size: cover;
}
.ny-news .itembox {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.ny-news .item {
  display: block;
  border-radius: 0.2667rem;
  overflow: hidden;
}
.ny-news .item .mxw-image{
height: 215px;
    display: flex;

    align-items: flex-start;
}

.ny-news .item .info {
  background-color: #fff;
  padding: 0.4167rem;
}
.ny-news .item .title {
  font-size: 0.3rem;
  color: #75861b;
  line-height: 1.2;
  font-family: "Georgia";
  margin-bottom: 0.3333rem;
  font-weight: bold;
}
.ny-news .item .date {
  font-size: 0.2667rem;
  color: #75861b;
  font-family: "Georgia";
  line-height: 1.2;
  margin-bottom: 0.1667rem;
}
.ny-news .item .desc {
  font-size: 0.2333rem;
  color: #666;
  line-height: 2em;
height:4em;
  text-align: justify;
  font-family: "Georgia";
}
.ny-news .item .mxw-more {
  margin-top: 0.5rem;
  font-size: 0;
  transition: all 0.4s;
}
.ny-news .item .mxw-more:hover {
  transform: translateX(0.1667rem);
}
@media screen and (max-width: 1200px) {
  .ny-news .item {
    border-radius: 5px;
  }
  .ny-news .item .title {
    font-size: 14px;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
  }
  .ny-news .item .date {
    font-size: 12px;
  }
  .ny-news .item .desc {
    font-size: 12px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    height: 2.8em;
    opacity: 0.8;
  }
  .ny-news .item .info {
    padding: 15px;
  }
  .ny-news .item .mxw-more {
    margin-top: 15px;
    text-align: left;
  }
  .ny-news .item .mxw-more img {
    width: 50%;
  }

.ny-news .item .mxw-image{
height: 115px;
    display: flex;

    align-items: flex-start;
}
.ny-news .item .mxw-image img{
height: 100%;

}

}
/* ==================== 新闻列表 end ==================== */
/* ==================== 相册列表 start ==================== */
.ny-albums {
  background: url(../images/img71.jpg) no-repeat center;
  background-size: cover;
}
.ny-albums .itembox {
  justify-content: center;
}
.ny-albums .item {
  background: url(../images/img36.png) no-repeat center;
  background-size: contain;
  padding: 10px;
}
@media screen and (min-width: 1200px) {
  .ny-albums {
    min-height: calc(100vh - 3.6833rem);
  }
}
@media screen and (max-width: 1200px) {
  .ny-albums {
    min-height: calc(100vh - 154px);
  }
}
/* ==================== 相册列表 end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc .top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.ny-product-desc .big-swiper {
  border: 1px solid #ddd;
}
.ny-product-desc .ny-product-image {
  width: 30%;
  flex-shrink: 0;
  margin-right: 5%;
}
.ny-product-desc .right {
  width: 65%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.ny-product-desc .info {
  flex-grow: 1;
  width: 100%;
}
.ny-product-desc .info .head {
  padding-bottom: 0.1667rem;
  width: 100%;
  border-bottom: 0.0167rem solid #dcdcdc;
  margin-bottom: 0.3333rem;
}
.ny-product-desc .info .head .text1 {
  font-size: 0.5667rem;
  font-weight: bold;
  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;
}
.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;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.ny-product-desc .small-image .swiper-slide {
  max-width: 2rem;
}
.ny-product-desc .small-image .mxw-image {
  cursor: pointer;
  border: 3px solid #eee;
  border-radius: 0.0833rem;
  background-color: #75861b;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
  border-color: #75861b;
}
.ny-product-desc .small-image .swiper-button-disabled {
  opacity: 1;
}
.ny-product-desc .small-image .swiper-button-next:after,
.ny-product-desc .small-image .swiper-button-prev:after {
  font-size: 0.4667rem;
  color: #ccc;
}
.ny-product-desc .small-image .swiper-button-next {
  right: 0rem;
}
.ny-product-desc .small-image .swiper-button-prev {
  left: 0rem;
}
.ny-product-desc .bottom {
  margin-top: 0.8333rem;
}
.ny-product-desc .bottom .head {
  width: 100%;
  border-bottom: 0.0167rem 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;
  border-bottom: 0.0833rem solid transparent;
  font-size: 0.3rem;
  line-height: 0.8333rem;
  height: 0.8333rem;
  color: #75861b;
  cursor: pointer;
}
.ny-product-desc .bottom .head .text1.active {
  border-bottom-color:#75861b;
}
.ny-product-desc .bottom .desc{
  display: none;
}

.ny-product-desc .bottom .desc iframe{
	width:800px; height:450px;
	margin:0 auto;
}

@media screen and (min-width: 1200px) {
  .ny-product-desc .mxw-box {
    max-width: 1400px;
  }
  .ny-product-desc .top {
    align-items: stretch;
  }
.ny-product-desc .bottom .desc iframe{
	max-width:100%;height:220px;
	margin:0 auto;
}

}
@media screen and (max-width: 1480px) {
  .ny-product-desc .mxw-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 1200px) {

}
@media screen and (max-width: 1200px) {
  .ny-product-desc .mxw-box {
    max-width: 100%;
  }
  .ny-product-desc .top {
    flex-wrap: wrap;
  }
  .ny-product-desc .ny-product-image {
    width: 100%;
    margin-right: 0;
  }
  .ny-product-desc .right {
    width: 100%;
  }
  .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 .swiper-button-next,
  .ny-product-desc .swiper-button-prev {
    display: none;
  }
  .ny-product-desc .info .head {
    margin-bottom: 15px;
  }
  .ny-product-desc .info .head .text1 {
    font-size: 22px;
  }
  .ny-product-desc .info .head .text2 {
    font-size: 14px;
  }
  .ny-product-desc .info .detail {
    font-size: 14px;
  }
  .ny-product-desc .info .mxw-more {
    margin-top: 20px;
  }
  .ny-product-desc .bottom {
    margin-top: 30px;
  }
  .ny-product-desc .bottom .head {
    margin-bottom: 10px;
  }
  .ny-product-desc .bottom .head .text1 {
    font-size: 16px;
    border-bottom-width: 3px;
    height: 40px;
    line-height: 40px;
  }
}
/* ==================== 内页 - 产品详情 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
  margin-top: 50px;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
font-size:14px;
}
.mxw-pagination  a {
  padding: 6px 12px;
  font-size: 14px;
  color: #666;
  line-height: 1.2;
  border: 1px solid #ccc;

  margin: 4px;
  background: #fff;
}
.mxw-pagination  a.plane {
  border: 0;
}
.mxw-pagination  a.active,
.mxw-pagination  a.current,
.mxw-pagination  a:hover {
  background-color: #75861b;
  color: #fff !important;
}
.mxw-pagination  a:first-child {
  margin-left: 0;
}
.mxw-pagination  a:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1200px) {
  .mxw-pagination {
    margin-top: 30px;
  }
  .mxw-pagination  a {
    font-size: 12px;
    margin: 2px;
    padding: 8px 10px;
  }
}
/* ==================== 分页样式 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  width: 100%;
  display: block;
  background: #75861b;
}
footer .mxw-box {
  color: #fff;
  line-height: 1.8;
  text-align: center;
  font-size: 14px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 1280px) {
  footer .mxw-box {
    font-size: 12px!important;
  }
}
@media screen and (max-width: 1200px) {
  footer .mxw-box {
    font-size: 12px;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 72.9%;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
  font-family: inherit;
}
.mxw-box a:hover {
  color: #75861b;
}
/* 内页 banner */
.ny-banner img {
  width: 100%;
}
/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1200px) {
  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }
  .mxw-ny-box {
    padding-top: 1.3333rem;
    padding-bottom: 0.8334rem;
    max-width: 72.9%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-box {
    max-width: 86%;
  }
}
@media screen and (max-width: 1200px) {
  body {
    margin-top: 60px;
  }
  .m-none,
  .pc-nav {
    display: none !important;
  }
  .mxw-box {
    padding: 30px 20px;
    max-width: 100%;
  }
  .mxw-section {
    padding-left: 0;
    padding-right: 0;
  }
  article {
    font-size: 15px;
  }
  .mxw-ny-box {
    max-width: 100%;
    font-size: 0;
    padding: 30px 20px;
  }
  .ny-contact .mxw-contact .mxw-ny-box{
    max-width: 100%;
  }
}
@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 ==================== */
  footer .mxw-box a:hover{ color: #fff;}
