@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: 0.3333rem;
  bottom: 10%;
  width: 0.6667rem;
  height: 0.6667rem;
  cursor: pointer;
  background: #b4a06c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #fff;
}
#goto-top.active {
  visibility: visible;
  opacity: 1;
}
#goto-top:after {
  content: "";
  display: block;
  width: 0.2333rem;
  height: 0.2333rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 6px;
}
@media screen and (max-width: 751px) {
  #goto-top {
    width: 30px;
    height: 30px;
    right: 10px;
  }
}
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.u-line-2 {
  -webkit-line-clamp: 2;
}
.u-line-3 {
  -webkit-line-clamp: 3;
}
.u-line-4 {
  -webkit-line-clamp: 4;
}
.u-line-5 {
  -webkit-line-clamp: 5;
}
.u-line-6 {
  -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.u-flex-wrap {
  flex-wrap: wrap;
}
.u-flex-nowrap {
  flex-wrap: nowrap;
}
.u-flex-col {
  flex-direction: column;
}
.u-grow-1 {
  flex-grow: 1;
}
.u-col-center {
  align-items: center;
}
.u-col-top {
  align-items: flex-start;
}
.u-col-bottom {
  align-items: flex-end;
}
.u-row-center {
  justify-content: center;
}
.u-row-left {
  justify-content: flex-start;
}
.u-row-right {
  justify-content: flex-end;
}
.u-row-between {
  justify-content: space-between;
}
.u-row-around {
  justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 > .u-col {
    width: 48%;
  }
  .u-row-2 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-2 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
  .u-row-3 > .u-col {
    width: 32%;
  }
  .u-row-3 > .u-col:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .u-row-3 > .u-col:nth-child(3) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-4 > .u-col {
    width: 23.5%;
    margin-right: 2%;
  }
  .u-row-4 > .u-col:nth-child(4n) {
    margin-right: 0%;
  }
  .u-row-4 > .u-col:nth-child(4) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-5 > .u-col {
    width: 18.4%;
    margin-right: 2%;
  }
  .u-row-5 > .u-col:nth-child(5n) {
    margin-right: 0%;
  }
  .u-row-5 > .u-col:nth-child(5) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-6 > .u-col {
    width: 15%;
    margin-right: 2%;
  }
  .u-row-6 > .u-col:nth-child(6n) {
    margin-right: 0%;
  }
  .u-row-6 > .u-col:nth-child(6) ~ .u-col {
    margin-top: 2%;
  }
}
@media screen and (max-width: 751px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 .u-col {
    width: 100%;
  }
  .u-row-2 .u-col:nth-child(1) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-3 > .u-col,
  .u-row-4 > .u-col,
  .u-row-5 > .u-col,
  .u-row-6 > .u-col {
    width: 48%;
  }
  .u-row-3 > .u-col:nth-child(2n),
  .u-row-4 > .u-col:nth-child(2n),
  .u-row-5 > .u-col:nth-child(2n),
  .u-row-6 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-3 > .u-col:nth-child(2) ~ .u-col,
  .u-row-4 > .u-col:nth-child(2) ~ .u-col,
  .u-row-5 > .u-col:nth-child(2) ~ .u-col,
  .u-row-6 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 新闻中心 start ==================== */
.ny-news .itembox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;min-height:50px;
}
.ny-news .itembox .item {
  width: 32%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
}
.ny-news .itembox .item:nth-child(3n-1) {
  margin-left: 2%;
  margin-right: 2%;
}
.ny-news .itembox .item:nth-child(3) ~ .item {
  margin-top: 2%;
}
.ny-news .itembox .item .image {
  margin-bottom: 0.3333rem;
  border-top-left-radius: 0.1667rem;
  border-top-right-radius: 0.1667rem;
  width: 100%;
}
.ny-news .itembox .item .head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 0.1667rem;
  border-bottom: 1px solid #eee;
}
.ny-news .itembox .item .head .type {
  background: #b4a06c;
  color: #fff;
  border-radius: 1.6667rem;
  font-size: 0.2rem;
  line-height: 1;
  padding: 0.1333rem 0.4167rem;
}
.ny-news .itembox .item .head .time {
  font-size: 0.2667rem;
  line-height: 1;
  color: #999;
}
.ny-news .itembox .item .title {
  font-size: 0.2833rem;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
  font-weight: bold;
  min-width: 0;
  width: 100%;
}
.ny-news .itembox .item .desc {
  line-height: 1.6;
  font-size: 0.2667rem;
  color: #999;
}
.ny-news .more {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ny-news .more > a {
  color: #fff;
  line-height: 1;
  font-size: 0.2833rem;
  background: #b4a06c;
  border-radius: 1.6667rem;
  padding: 0.2167rem 1.0833rem;
}
@media screen and (max-width: 751px) {
  .ny-news {
    padding-bottom: 0;
  }
  .ny-news .mxw-box {
    padding: 30px 20px;
  }
  .ny-news .itembox {
    margin-bottom: 0;
  }
  .ny-news .itembox .item {
    width: 48%;
    margin-bottom: 0;
  }
  .ny-news .itembox .item:nth-child(3n-1) {
    margin-left: inherit;
    margin-right: inherit;
  }
  .ny-news .itembox .item:nth-child(3) ~ .item {
    margin-top: inherit;
  }
  .ny-news .itembox .item:nth-child(2n) {
    margin-left: 4%;
  }
  .ny-news .itembox .item:nth-child(2) ~ .item {
    margin-top: 4%;
  }
  .ny-news .itembox .item .image {
    margin-bottom: 10px;
  }
  .ny-news .itembox .item .head .type {
    font-size: 12px;
    padding: 5px 10px;
  }
  .ny-news .itembox .item .head {
    margin-bottom: 10px;
  }
  .ny-news .itembox .item .title {
    margin-bottom: 5px;
  }
  .ny-news .more > a {
    padding: 8px 20px;
  }
}
/* ==================== 新闻中心 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 + .text {
  border-left: 0;
}
.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 .article img {
  display: block;
  margin: 0 auto;
}
.ny-news-desc .article {
  line-height: 1.8;
  text-align: justify;
  font-size: 0.2581rem;
}
.ny-news-desc .article p {
  line-height: 1.8;
}
@media screen and (max-width: 751px) {
  .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 .text {
    margin-right: 0.1rem;
    padding-left: 0.1rem;
    line-height: 2em;
    display: inline;
  }
  .ny-news-desc .info {
    padding-bottom: 0.2rem;
  }
}
/* ==================== 新闻详情 end ==================== */
/* ==================== 案例展示 start ==================== */
.ny-cases {
  font-size: 0;
}
.ny-cases .item {
  position: relative;
  overflow: hidden;
}
.ny-cases .item:hover .title {
  transform: translateY(-100%);
}
.ny-cases .item .title {
  width: 100%;
  position: absolute;
  top: 100%;
  transform: translateY(-1rem);
  text-align: center;
  padding-bottom: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  transition: all 0.4s;
}
.ny-cases .item .title .name {
  font-size: 0.3333rem;
  line-height: 1rem;
  height: 1rem;
  padding: 0 0.25rem;
}
.ny-cases .item .title .more {
  background: #b4a06c;
  font-size: 0.2167rem;
  line-height: 1.2;
  padding: 0.1667rem 0.5833rem;
  border-radius: 0.05rem;
  display: inline-block;
}
@media screen and (max-width: 751px) {
  .ny-cases .item .title {
    transform: translateY(0);
    top: auto;
    bottom: 0;
    padding-bottom: 0;
  }
  .ny-cases .item:hover .title {
    transform: translateY(0);
  }
  .ny-cases .item .title .more {
    display: none;
  }
  .ny-cases .item .title .name {
    line-height: inherit;
    height: auto;
    padding: 8px 15px;
    font-size: 14px;
  }
}
/* ==================== 案例展示 end ==================== */
/* ==================== 通用留言板 start ==================== */
.ny-message .title {
  text-align: center;
  font-size: 0.6667rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.6667rem;
  font-weight: bold;
}
.ny-message .mxw-form {
  background-color: #f1f3f5;
  padding: 4%;
}
.ny-message .mxw-form .top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.ny-message .mxw-form input,
.ny-message .mxw-form textarea {
  display: block;
  width: 100%;
  border: 1px solid #e4e6e8;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  transition: all 0.4s;
}
.ny-message .mxw-form input:focus,
.ny-message .mxw-form textarea:focus {
  border-color: #b4a06c;
}
.ny-message .mxw-form input::-webkit-input-placeholder,
.ny-message .mxw-form textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
}
.ny-message .mxw-form input:-moz-placeholder,
.ny-message .mxw-form textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
}
.ny-message .mxw-form input::-moz-placeholder,
.ny-message .mxw-form textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
}
.ny-message .mxw-form input:-ms-input-placeholder,
.ny-message .mxw-form textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
}
.ny-message .mxw-form input {
  padding: 8px 15px;
}
.ny-message .mxw-form textarea {
  width: 100%;
  height: 140px;
  padding: 15px;
  resize: none;
}
.ny-message .mxw-form button {
  background-color: #b4a06c;
  color: #fff;
  font-size: 16px;
  text-align: center;
  height: 46px;
  line-height: 46px;
  width: 200px;
  border-radius: 5px;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  cursor: pointer;
  transition: all 0.4s;
}
.ny-message .mxw-form button:hover {
  box-shadow: 0 0 8px #b4a06c;
}
@media screen and (min-width: 751px) {
  .ny-message .mxw-form input {
    width: 49%;
    margin-bottom: 2%;
  }
  .ny-message .mxw-form input:nth-child(2n) {
    margin-left: 2%;
  }
}
@media screen and (max-width: 751px) {
  .ny-message .title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .ny-message .mxw-form {
    padding: 6% 4%;
  }
  .ny-message .mxw-form input {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .ny-message .mxw-form textarea {
    padding: 8px 15px;
  }
  .ny-message .mxw-form button {
    width: 100%;
    height: 38px;
    line-height: 38px;
    font-size: 12px;
    margin-top: 10px;
  }
}
/* ==================== 通用留言板 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: 14px;
  margin: 0 0.0867rem;
  min-width: 0.6667rem;
padding: 0 0.1667rem;
  height: 0.6667rem;
  line-height: 0.6667rem;
}
.Pagination a:hover,
.Pagination .active,.Pagination a.current {
  color: white!important;
  background: #b4a06c;
  border-color: #b4a06c;
}


@media screen and (min-width: 751px) {
  .Pagination a.first {
    width: 1.1667rem;
    margin-left: 0;
    margin-right: 0;
  }
  .Pagination a.plane {
    background: none;
    border: 0;
  }
}
@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 ==================== */
header {
  width: 100%;
  z-index: 99;
  transition: all 0.4s;
  background-color: #000;
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  background-image: linear-gradient(0, rgba(0, 0, 0, 0), #000000);
}
header.fixed .search {
  margin-right: 0px;
}
header.fixed .language {
  position: absolute;
  bottom: -30px;
  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.white {
  background-image: none;
  background-color: rgba(255, 255, 255, 0.2);
}
header.white .pc-menu > li > a {
  color: #000;
}
header .pc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 60px;
  padding-right: 30px;
}
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 .search {
  margin-right: 25px;
  width: 40px;
  height: 40px;
  background-color: #b4a06c;
  border-radius: 100%;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
header .search:after {
  content: "";
  display: block;
  width: 0.3333rem;
  height: 0.3333rem;
  background: url(../images/search.png) no-repeat center;
  background-size: 100%;
}
header .search.active {
  overflow: visible;
}
header .search.active form {
  opacity: 1;
  right: 0;
  visibility: visible;
}
header .search form {
  font-size: 0;
  position: absolute;
  top: 130%;
  right: -100%;
  z-index: 33;
  width: 3.3334rem;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  height: 0.5667rem;
  line-height: 0.5667rem;
}
header .search form input {
  background: #fff;
  padding: 0.1334rem 0.1667rem;
  outline: none;
  font-size: 0.2333rem;
  width: 2.7rem;
  height: 100%;
}
header .search form button {
  position: relative;
  width: 0.8333rem;
  height: 100%;
  background: #b4a06c;
  cursor: pointer;
}
header .search form button img {
  width: 20px;
  height: 20px;
}
header .search form button:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid #b4a06c;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}
header .search form button img {
  width: 16px;
  height: 16px;
}
header .language {
  position: relative;
  width: 40px;
  flex-shrink: 0;
  z-index: 9;
}
header .language .btn1,
header .language .btn2 {
  transition: all 0.4s;
  display: block;
}
header .language .btn1 span,
header .language .btn2 span {
  display: block;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #b4a06c;
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  line-height: 40px;
}
header .language .btn1:active,
header .language .btn2:active {
  transform: scale(1.1);
}
header .language .btn1 {
  position: relative;
  z-index: 3;
}
header .language .btn1:hover + .btn2 {
  padding-top: 60px;
}
header .language .btn2 {
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.4s;
}
header .language .btn2:hover {
  padding-top: 60px;
}
header .pc-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-width: 0;
  flex-grow: 1;
  padding-right: 40px;
/*  border-right: 1px solid #3e3e3e;*/
}
header .pc-menu > li {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-right: 1%;padding-left:5px;
}

header .pc-menu > li:hover > a,
header .pc-menu > li.active > a {
  color: #b4a06c !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: -25px;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
}
header .pc-menu > li > a {
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  transition: color 0.4s;
  text-align: center;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
header .pc-menu > li .pc-sub-menu {
  width: 200px;
  position: absolute;
  top: 100%;

  z-index: 30;
  /* opacity: 0;
  visibility: hidden; */
  /* transition: all 0.4s; */
  padding-top: 0px;
  color: #333;
  display:none;
}
header .pc-menu > li .pc-nav-box {
 
  position: relative;
  background: rgba(0,0,0,.7);
  /* -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{
 color: #fff;
}
header .pc-menu > li .pc-nav-box > li:hover {
 background: rgb(180 160 108);
    color: #fff;
}
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 (max-width: 1550px) {
  header .pc-nav {
    padding-left: 30px;
  }
  header .pc-nav .logo {
    width: 320px;
  }
  header .right {
    width: 73%;
  }
  header .pc-menu > li > a {
    font-size: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  header .pc-menu {
    margin-right: 20px;
    padding-right: 20px;
  }
  header .search {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1280px) {
  header .pc-nav .logo {
    width: 300px;
  }
}
/* ==================== 头部 end ==================== */
/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
  .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: #fff;
    border-bottom: 1px solid #eee;
  }
  .mxw-mob-nav .logo {
    display: block;
    flex-shrink: 0;
  }
  .mxw-mob-nav .logo img {
    height: 36px;
  }
  .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: #333;
  }
  .mxw-mob-nav .menus-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 50%;
    max-width: 450px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transform: translateX(50%);
  }
  .mxw-mob-nav .menus-box.active {
    visibility: visible;
    opacity: 1;
  }
  .mxw-mob-nav .menus-box.active .menus {
    transform: translateX(0);
  }
  .mxw-mob-nav .menus {
    width: 60%;
    height: 100%;
    margin-right: 0;
    margin-left: auto;
    background: #fff;
    transform: translateX(100%);
    transition: all 0.5s;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
  }
  .mxw-mob-nav .menus > ul {
    width: 100%;
    overflow: auto;
  }
  .mxw-mob-nav .menus > ul > li.active > ul {
    display: block;
  }
  .mxw-mob-nav .menus > ul > li > a {
    display: block;
    width: 100%;
    padding: 15px 18px;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mxw-mob-nav .menus > ul > li > a.sub:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-top: 4px solid #555;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 0;
    margin-left: 10px;
  }
  .mxw-mob-nav .menus > ul > li > ul {
    display: none;
    padding: 0px 24px;
  }
  .mxw-mob-nav .menus > ul > li > ul > li > a {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 36px;
    height: 36px;
    border-bottom: 1px solid #f3f3f3;
  }
  .mxw-mob-nav .menus-head {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8F8F8;
    border-bottom: 0.6px solid #eee;
    font-size: 16.8px;
    font-weight: bold;
    line-height: 54px;
    height: 54px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .mxw-mob-nav .menus-head .text {
    color: #333;
    line-height: 1.2;
  }
  .mxw-mob-nav .menus-head .mxw-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none;
    position: relative;
    transform: rotate(45deg);
  }
  .mxw-mob-nav .menus-head .mxw-close:before,
  .mxw-mob-nav .menus-head .mxw-close:after {
    content: "";
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
  }
  .mxw-mob-nav .menus-head .mxw-close:before {
    width: 2px;
    height: 100%;
  }
  .mxw-mob-nav .menus-head .mxw-close:after {
    width: 100%;
    height: 2px;
  }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 首页主体样式 start ==================== */
@media screen and (min-width: 751px) {
  .mxw-main:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 99;
  }
  .mxw-main .mxw-pagination {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
  }
  .mxw-main .mxw-pagination .swiper-pagination-bullet {
    background-color: transparent;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    border: 1px solid transparent;
    margin-bottom: 30px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mxw-main .mxw-pagination .swiper-pagination-bullet:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #d4d4d4;
  }
  .mxw-main .mxw-pagination .swiper-pagination-bullet:last-child {
    margin-bottom: 0;
  }
  .mxw-main .mxw-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: #fff;
  }
  .mxw-main .mxw-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    background-color: #fff;
  }
}
@media screen and (max-width: 1550px) {
  .mxw-main:before {
    right: 90px;
  }
  .mxw-main .mxw-pagination {
   
  }
  .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: #b4a06c;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
  width: 2rem;
  height: 1.2667rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.18);
  background-image: none;
}
.mxw-banner .swiper-button-next {
  right: 0px;
}
.mxw-banner .swiper-button-prev {
  left: 0px;
}
.mxw-banner .banner-swiper {
  --swiper-navigation-color: #fff;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 24px;
  /* 设置按钮大小 */
}
.mxw-banner .down-btn {
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin-left: -55px;
  z-index: 10;
  animation: arrowAnimate  2s linear infinite;
  cursor: pointer;
  width: 110px;
}
.mxw-banner .mxw-video,
.mxw-banner #mxw-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@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 .swiper-button-next,
  .mxw-banner .swiper-button-prev {
    display: none;
  }
  .mxw-banner .down-btn {
    width: 60px;
    margin-left: -30px;
    bottom: 10px;
  }
}
/* ==================== 轮播图 end ==================== */
/* ==================== 关于我们 start ==================== */
.mxw-about {
  background: url(../images/img04.jpg) no-repeat center;
  background-size: cover;
}
.mxw-about .info {
  position: relative;
}
.mxw-about .number {
  font-size: 4.4rem;
  color: #ececec;
  line-height: 0.9;
  font-weight: bold;
  position: absolute;
  left: -1rem;
  top: -0.1667rem;
  transform: translateX(-100%);
  transition-duration: 1s!important;
}
.mxw-about .text1,
.mxw-about .text2,
.mxw-about .text3,
.mxw-about .desc {
  position: relative;
  z-index: 3;
}
.mxw-about .text1 {
  font-size: 0.2333rem;
  color: #b4a06c;
  line-height: 1.8;
  margin-bottom: 0.1667rem;
  font-weight: bold;
display:none;
}
.mxw-about .text2 {
  font-size: 0.4rem;
  color: #333;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.3333rem;
}
.mxw-about .text3 {
  font-size: 0.333rem;
  color: #b4a06c;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: bold;
}
.mxw-about .desc {
  font-size: 14px;
  color: #777;
  line-height: 1.8;
  text-align:left;
  margin-bottom: 0.5rem;
}
.mxw-about .image {
  width: 81.2%;
  flex-shrink: 0;
  margin-left: 1.3333rem;
  margin-right: -3.8333rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.mxw-about .image img {
  /*width: 0;
  transition: width 0.8s linear 0s !important;*/
  height: auto;
}
.mxw-about.swiper-slide .number {
  transform: translateX(0);
}
.mxw-about.swiper-slide .image img {
  width: 100%;
}

.mxw-about .about-itembox{
  z-index:9;position:relative;margin-bottom:20px;
  display:flex;align-items:flex-start;justify-content:space-between;
}
.mxw-about .about-itembox .item{display:block;text-align:center;}
.mxw-about .about-itembox .item .icon{width:100px;margin-left:auto;margin-right:auto;margin-bottom:20px;}
.mxw-about .about-itembox .item .item-text1{font-size:0.3333rem;color:#333;line-height:1.2;margin-bottom:10px;font-weight:bold;}
.mxw-about .about-itembox .item .item-text2{font-size:0.26666rem;color:#777;line-height:1.2;}
@media screen and (max-width: 1400px) {
.mxw-about .desc{margin-bottom:0.4rem;}
}
@media screen and (max-width: 751px) {
  .mxw-about > .mxw-box {
    flex-wrap: wrap;
  }
  .mxw-about .text1 {
    font-size: 12px;
    line-height: 1.6;
  }
  .mxw-about .text2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .mxw-about .text3 {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .mxw-about .desc {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .mxw-about .image {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    margin-top: 20px;
  }
  .mxw-about .image img {
    height: auto;
    width: 100%;
  }
  .mxw-about .about-itembox .item .icon{width:80px;}
  .mxw-about .about-itembox .item .item-text1{font-size:16px;}
  .mxw-about .about-itembox .item .item-text2{font-size:12px;}
}
/* ==================== 关于我们 end ==================== */
/* ==================== 通用更多按钮 start ==================== */
.mxw-more {
  display: flex;
  align-items: center;
}
.mxw-more:hover .icon {
  width: 50px;
}
.mxw-more:hover .text {
  font-weight: bold;
}
.mxw-more .icon {
  width: 25px;
  position: relative;
  margin-right: 15px;
  height: 1px;
  background: #b4a06c;
  transition: width 0.4s;
}
.mxw-more .icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #b4a06c;
  border-right: 1px solid #b4a06c;
  width: 10px;
  height: 10px;
}
.mxw-more .text {
  font-size: 14px;
  color: #b4a06c;
  line-height: 1.2;
  transition: color 0.4s;
}
@media screen and (max-width: 751px) {
  .mxw-more .text {
    font-size: 12px;
  }
  .mxw-more .icon:after {
    width: 6px;
    height: 6px;
  }
}
/* ==================== 通用更多按钮 end ==================== */
/* ==================== 人物介绍 start ==================== */
.mxw-figure {
  background: url(../images/img05.jpg) no-repeat center;
  background-size: cover;
}
.mxw-figure .swiper-slide {
  overflow: hidden;
}
.mxw-figure .item {
  display: flex;
  align-items: center;
  max-width: 1420px;
  margin: 0 auto;
}
.mxw-figure .item .image {
  margin-right: 2rem;
  position: relative;
  padding-bottom: 0.6667rem;
  padding-top: 0.5667rem;
  padding-left: 1.5rem;
}
.mxw-figure .item .image .bg-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 9.9667rem;
  height: 6.7333rem;
}
.mxw-figure .item .image .mxw-image {
  position: relative;
  z-index: 9;
  width: 9.6667rem;
}
.mxw-figure .item .info {
  min-width: 0;
  flex-grow: 1;
}
.mxw-figure .item .text1 {
display:none;
  font-size: 0.2333rem;
  color: #b4a06c;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.mxw-figure .item .text2 {
  margin-bottom: 0.3333rem;
  font-size: 0.3rem;
  color: #fff;
  line-height: 1.2;
}
.mxw-figure .item .text2 strong {
  font-size: 0.8167rem;
  font-weight: bold;
  line-height: 1.2;
}
.mxw-figure .item .text3 {
  font-size: 0.4rem;
  font-weight: bold;
  color: #b4a06c;
  line-height: 1.2;
  margin-bottom: .8rem;
}
.mxw-figure .item .desc {
  font-size: 0.2667rem;
  color: #929292;
  line-height: 2.4em;
  text-align: justify;
  margin-bottom: 1.1667rem; max-height:150px;    overflow: hidden;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
}
.mxw-figure .item .info {
  position: relative;
}
.mxw-figure .item .info .text1,
.mxw-figure .item .info .text2,
.mxw-figure .item .info .text3,
.mxw-figure .item .info .desc.mxw-more {
  position: relative;
  z-index: 9;
}
.mxw-figure .number {
  font-size: 4.4rem;
  color: #ececec;
  line-height: 0.9;
  font-weight: bold;
  position: absolute;top: 21%;
  right: 47%;
  transform: translateX(100%);
  transition-duration: 1s!important;
  opacity: 0.04;
}
.mxw-figure .itembox {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
margin-bottom:0.5rem;
}
.mxw-figure .itembox .item2 {
  display: block;
  cursor: pointer;
  background: url(../images/img18.png) no-repeat left center;
  background-size: auto 100%;
  padding-top: 0.1667rem;
  padding-bottom: 0.1667rem;
  padding-left: 0.3333rem;
  margin-right: 2.25rem;
  position: relative;
}
.mxw-figure .itembox .item2:last-child {
  margin-right: 0;
}
.mxw-figure .itembox .item2:last-child:before,
.mxw-figure .itembox .item2:last-child:after {
  display: none;
}
.mxw-figure .itembox .item2:after {
  content: "";
  display: block;
  width: 80%;
  height: 0;
  border-top: 1px dashed #b4a06c;
  position: absolute;
  right: -83%;
  top: 50%;
  transform: translateY(-50%);
}
.mxw-figure .itembox .item2:before {
  content: "";
  display: block;
  background: url(../images/ico.png) no-repeat center;
  background-size: 100%;
  width: 0.6667rem;
  height: 0.6667rem;
  z-index: 9;
  position: absolute;
  right: -50%;
  transform: translate(0.1667rem, -50%);
  top: 50%;
}
.mxw-figure .itembox .item2 .image {
  width: 2.3333rem;
}
.mxw-figure.swiper-slide-active .info .number {
  transform: translateX(0);
}
@media screen and (max-width: 1650px) {
  .mxw-figure .item {
    max-width: 94%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-figure .item {
    flex-wrap: wrap;
    max-width: 100%;
  }
  .mxw-figure .item .image {
    margin-bottom: 30px;
    margin-right: 0;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-left: 30px;
  }
  .mxw-figure .item .image .mxw-image {
    width: 100%;
  }
  .mxw-figure .item .image .bg-icon {
    width: auto;
    height: auto;
    margin-right: 20px;
  }
  .mxw-figure .item .text1 {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .mxw-figure .item .text2 {
    margin-bottom: 10px;
  }
  .mxw-figure .item .text2 strong {
    font-size: 22px;
  }
  .mxw-figure .item .text3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  .mxw-figure .item .desc {
    font-size: 12px;
    line-height: 2;
    margin-bottom: 20px;
  }
  .mxw-figure .itembox {
    margin-top: 30px;
  }
  .mxw-figure .itembox .item2 {
    margin-right: 30px;
  }
  .mxw-figure .itembox .item2:before,
  .mxw-figure .itembox .item2:after {
    display: none;
  }
  .mxw-figure .number{
    top: 40%;
    transform:inherit;
    right: 0;left:auto;
  }
}
/* ==================== 人物介绍 end ==================== */
/* ==================== 制造基地 start ==================== */
.mxw-cases {
  background: url(../images/img09.jpg) no-repeat center;
  background-size: cover;
}
.mxw-cases > .mxw-box {
  width: 100%;
}
.mxw-cases .cases-swiper {
  width: 73.8%;
  flex-shrink: 0;
  margin-left: -2.6667rem;
}
.mxw-cases .cases-swiper .swiper-slide-active .item .info {
  transform: translateY(0);
  opacity: 1;
}
.mxw-cases .item {
  position: relative;
  display: block;
}
.mxw-cases .item .bg-image {
  margin-right: 1.05rem;
  width: 100%;
}
.mxw-cases .item .info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.6667rem;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000 50%);
  width: 100%;
  transform: translateY(100%);
  transition: all 0.8s;
  opacity: 0;
}
.mxw-cases .item .image {
  width: 10.35rem;
  margin-bottom: 0.6667rem;
}
.mxw-cases .item .desc {
  font-size: 0.2333rem;
  color: #fff;
  text-align: justify;
  line-height: 1.8;
}
.mxw-cases .right {
  position: relative;
  flex-grow: 1;
  min-width: 0;
  margin-left: 1rem;
}
.mxw-cases .right .right-item {
  padding-left: 1rem;
}
.mxw-cases .right .text1,
.mxw-cases .right .text2,
.mxw-cases .right .text3,
.mxw-cases .right .text4,
.mxw-cases .right .mxw-more {
  position: relative;
  z-index: 3;
}
.mxw-cases .right .number {
  font-size: 4.4rem;
  color: #ececec;
  line-height: 0.9;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -0.3333rem;
  transform: translateX(100%);
  transition-duration: 1s!important;
}
.mxw-cases .right .text1 {
display:none;
  font-size: 0.2333rem;
  color: #b4a06c;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
  font-weight: bold;
}
.mxw-cases .right .text2 {
  font-size: 0.4rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
  font-weight: bold;
}
.mxw-cases .right .text3 {
  font-size: 0.333rem;
  line-height: 1.2;
  color: #b4a06c;
  margin-bottom: 0.3333rem;
  font-weight: bold;
}
.mxw-cases .right .text4 {
  font-size: 0.2667rem;
  line-height: 2.4em;
  color: #777;
  margin-bottom: 0.5rem;
}
.mxw-cases .right .itembox {
  margin-top: 0.6667rem;
  display: flex;
  align-items: stretch;
}
.mxw-cases .right .item2 {
  border: 2px solid #c9c9c9;
  cursor: pointer;
  text-align: center;
}
.mxw-cases .right .item2.active,
.mxw-cases .right .item2:hover {
  border-color: #b4a06c;
}
.mxw-cases.swiper-slide .right .number {
  transform: translateX(0);
}
@media screen and (max-width: 1680px) {
  .mxw-cases .cases-swiper {
    margin-left: -6%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-cases > .mxw-box {
    flex-wrap: wrap;
  }
  .mxw-cases .cases-swiper {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .mxw-cases .cases-swiper .item {
    margin-bottom: 20px;
  }
  .mxw-cases .cases-swiper .item .info {
    display: none;
  }
  .mxw-cases .right {
    margin-left: 0;
  }
  .mxw-cases .right .number {
    font-size: 100px;
    right: 0;
    transform: translateX(0px);
    left: auto;
    top: 0;
  }
  .mxw-cases .right .right-item {
    padding-left: 0;
  }
  .mxw-cases .right .text2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .mxw-cases .right .text3 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .mxw-cases .right .text4 {
    line-height: 1.6;
  }
  .mxw-cases .right .item2 {
    width: 48%;
    margin: 0!important;
  }
  .mxw-cases .right .item2:nth-child(2n) {
    margin-left: 4%!important;
  }
  .mxw-cases .right .item2:nth-child(2) ~ .item2 {
    margin-top: 4%!important;
  }
}
/* ==================== 制造基地 end ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
  position: relative;
  text-align: center;
  margin-bottom: 1.1667rem;
}
.mxw-title .number {
  font-size: 4.4rem;
  font-weight: bold;
  color: #ececec;
  opacity: 0.04;
  line-height: 0.9;
  position: absolute;
  top: -0.6667rem;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
}
.mxw-title .text1,
.mxw-title .text2,
.mxw-title .text3 {
  position: relative;
  z-index: 3;
}
.mxw-title .text1 {
display:none;
  font-size: 0.2333rem;
  color: #b4a06c;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.mxw-title .text2 {
  font-size: 0.4rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.mxw-title .text3 {
  font-size: 0.333rem;
  color: #b4a06c;
  line-height: 1.2;
}
@media screen and (max-width: 751px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
  }
  .mxw-title .text2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .mxw-title .text3 {
    font-size: 12px;
    line-height: 1.6;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 新闻资讯 start ==================== */
.mxw-news {
  background: url(../images/img16.jpg) no-repeat center;
  background-size: cover;
}
.mxw-news .mxw-title .number {
  transform: translate(-50%, 100%);
  transition: all 1s!important;
}
.mxw-news .news-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  /*之前是ease-out*/
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.mxw-news .item {
  display: block;
  padding: 0.3333rem;
  transition: all 0.4s;
}
.mxw-news .item .image {
  margin-bottom: 0.5rem;
}
.mxw-news .item .info {
  padding-bottom: 0.3333rem;
  border-bottom: 1px solid #dfdfdf;
}
.mxw-news .item .info .title {
  font-size: 0.3rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.3167rem;
}
.mxw-news .item .info .desc {
  font-size: 0.2333rem;
  color: #adadad;
  line-height: 1.6;
  text-align: justify;
  padding-right: 1.3333rem;
}
.mxw-news .item .info .bottom {
  margin-top: 0.5833rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.mxw-news .item .info .year {
  display: flex;
  align-items: center;
}
.mxw-news .item .info .year .day {
  font-size: 0.4667rem;
  color: #b4a06c;
  font-family: fantasy;
  padding-right: 0.1667rem;
}
.mxw-news .item .info .year .month {
  font-size: 0.3333rem;
  color: #fff;
  font-family: fantasy;
}
.mxw-news.swiper-slide-active .mxw-title .number {
  transform: translate(-50%, 0%);
}
.mxw-news .mxw-title{    margin-bottom: 0.8rem;}

@media screen and (min-width: 751px) {
  .mxw-news .item:hover {
    background-color: #fff;
  }
  .mxw-news .item:hover .info .title {
    color: #000;
  }
  .mxw-news .item:hover .info .year .month {
    color: #000;
  }
}
@media screen and (max-width: 1400px) {
.mxw-news .mxw-title{
    margin-bottom: 0.3rem;
}
}
@media screen and (max-width: 751px) {
.mxw-title .mxw-title{
margin-bottom:30px;
}
  .mxw-news .item {
    padding: 0;
  }
  .mxw-news .item .image {
    margin-bottom: 15px;
  }
  .mxw-news .item .info {
    padding-bottom: 10px;
  }
  .mxw-news .item .info .title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .mxw-news .item .info .desc {
    padding-right: 0;
    font-size: 12px;
    line-height: 1.6;
  }
  .mxw-news .item .info .bottom {
    margin-top: 10px;
  }
  .mxw-news .item .info .year .day,
  .mxw-news .item .info .year .month {
    font-size: 12px;
    font-family: inherit;
  }
  .mxw-news .item .info .year .day {
    padding-right: 4px;
  }
}
/* ==================== 新闻资讯 end ==================== */
/* ==================== 内页 - banner start ==================== */
.ny-banner {
  position: relative;
}
.ny-banner .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.ny-banner .info > .mxw-box {
  width: 100%;display: none;
}
.ny-banner .text1 {
  font-size: 14px;
  color: #b4a06c;
  line-height: 1.8;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: bold;
}
.ny-banner .text2 {
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}
@media screen and (max-width: 751px) {
  .ny-banner {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ny-banner img {
    /*max-width: 230%;*/
  }
  .ny-banner .text1 {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .ny-banner .text2 {
    font-size: 16px;
  }
}
/* ==================== 内页 - banner end ==================== */
/* ==================== 内页 - 分类 start ==================== */
.ny-cate {
  border-bottom: 1px solid #e5e5e5;
}
.ny-cate > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ny-cate .cate-item {
  display: block;
  margin-right: 86px;
  font-size: 16px;
  color: #333;
  line-height: 1.2;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
.ny-cate .cate-item:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #b4a06c;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  transition: all 0.4s;
}
.ny-cate .cate-item:last-child {
  margin-right: 0;
}
.ny-cate .cate-item:hover,
.ny-cate .cate-item.active {
  color: #b4a06c;
}
.ny-cate .cate-item:hover:after,
.ny-cate .cate-item.active:after {
  width: 100%;
}
@media screen and (max-width: 751px) {
  .ny-cate > .mxw-box {
    flex-wrap: wrap;
    padding: 10px 20px;
    justify-content: flex-start;
  }
  .ny-cate .cate-item {
    width: 32%;
    margin: 0!important;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .ny-cate .cate-item:nth-child(3n-1) {
    margin-left: 2%!important;
    margin-right: 2%!important;
  }
  .ny-cate .cate-item:nth-child(3) ~ .cate-item {
    margin-top: 2%!important;
  }
}
/* ==================== 内页 - 分类 end ==================== */
/* ==================== 内页 - 标题 start ==================== */
.ny-title {
  margin-bottom: 0.5rem;
  position: relative;
  padding-top: 0.6667rem;
}
.ny-title .text1 {
  font-size: 3.15rem;
  line-height: 0.8;
  color: #ececec;
  opacity: 0.36 !important;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  text-transform: uppercase;    z-index: -1;
}
.ny-title .text2 {
  position: relative;
  z-index: 3;
  font-size: 0.7667rem;
  line-height: 1.2;
  color: #b4a06c;
  margin-bottom: 0.3333rem;
  font-weight: bold;
}
.ny-title .text3 {
  position: relative;
  z-index: 3;
  font-size: 0.4rem;
  color: #b4a06c;
  line-height: 1.2;
}
@media screen and (max-width: 751px) {
  .ny-title {
    padding-top: 10px;
    margin-bottom: 20px;
  }
  .ny-title .text1 {
    font-size: 50px;
  }
  .ny-title .text2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .ny-title .text3 {
    font-size: 12px;
  }
}
/* ==================== 内页 - 标题 end ==================== */
/* ==================== 内页 - 关于我们 start ==================== */
.ny-about {
  overflow: hidden;
}
.ny-about .section1 .desc {
  font-size: 0.2667rem;
  color: #777;
  line-height: 2;
  text-align: justify;
  margin-bottom: 0.8333rem;
}
.ny-about .section1 .item {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.ny-about .section1 .item .name {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  text-align: center;
}
.ny-about .section1 .item .name:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-top: 8px solid #b4a06c;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.ny-about .section2 {
  padding-top: 1.3333rem;
  padding-bottom: 1.3333rem;
}
.ny-about .section2 .item {
  display: block;
}
.ny-about .section2 .item .image {
  margin-bottom: 0.4167rem;
}
.ny-about .section2 .item .text {
  font-size: 0.3333rem;
  color: #333;
  line-height: 1.2;
  text-align: center;
}
.ny-about .section3 .body {
  display: flex;
  align-items: center;
}
.ny-about .section3 .left {
  margin-right: 1.3333rem;

}
.ny-about .section3 .icon {
  width: 0.6667rem;
  margin-bottom: 0.8333rem;
}
.ny-about .section3 .title2 {
  font-size: 0.6167rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.6667rem;
  font-weight: bold;
}
.ny-about .section3 .desc {
  font-size: 0.28rem;
  color: #666;
  text-align: left;
  line-height: 1.7;
}
.ny-about .section3 .image {
  width: 70.8%;
  margin-right: -2.5rem;
  flex-shrink: 0;
}
@media screen and (min-width: 751px) {
  .ny-about .section1 .item:nth-child(2n-1) .image {
    margin-bottom: 30px;
  }
  .ny-about .section1 .item:nth-child(2n-1) .name:before {
    transform: rotate(180deg);
  }
  .ny-about .section1 .item:nth-child(2n) {
    margin-top: 60px;
  }
  .ny-about .section1 .item:nth-child(2n) .name {
    order: -2;
  }
  .ny-about .section1 .item:nth-child(2n) .image {
    margin-top: 30px;
  }
}
@media screen and (max-width: 751px) {
  .ny-about .section1 .desc {
    margin-bottom: 20px;
  }
  .ny-about .section1 .item {
    margin-bottom: 20px;
  }
  .ny-about .section1 .item:last-child {
    margin-bottom: 0;
  }
  .ny-about .section1 .item .image {
    margin-bottom: 10px;
  }
  .ny-about .section1 .item .name {
    font-size: 12px;
  }
  .ny-about .section2 {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .ny-about .section2 .itembox {
    justify-content: center;
  }
  .ny-about .section2 .item .image {
    margin-bottom: 10px;
  }
  .ny-about .section2 .item .text {
    font-size: 14px;
    line-height: 1.4;
  }
  .ny-about .section3 .body {
    flex-wrap: wrap;
  }
  .ny-about .section3 .left {
    margin-right: 0;
  }
  .ny-about .section3 .icon {
    width: 20px;
    margin-bottom: 20px;
  }
  .ny-about .section3 .title2 {
    margin-bottom: 20px;
    font-size: 17px;
    margin-bottom: 10px;
  }
  .ny-about .section3 .desc {
    font-size: 12px;
  }
  .ny-about .section3 .image {
    margin-top: 20px;
    width: 100%;
  }
}
/* ==================== 内页 - 关于我们 end ==================== */
/* ==================== 内页 - 发展历程 start ==================== */
.ny-about2 .body {
  background: url(../images/img28.jpg) no-repeat center;
  background-size: cover;
}
.ny-about2 .title {
  position: relative;
  text-align: center;
  margin-bottom: 1rem;
  padding-top: 0.3333rem;
}
.ny-about2 .title .text1 {
  position: absolute;
  bottom: 0;
  left: 0;
  line-height: 0.8em;
  font-size: 3.15rem;
  color: #e2e2e2;
  opacity: 0.28;
  font-weight: bold;
  width: 100%;
  text-align: center;
  text-transform:uppercase;
}
.ny-about2 .title .text2 {
  position: relative;
  z-index: 9;
  font-size: 0.7667rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
  font-weight: bold;
}
.ny-about2 .title .text3 {
  position: relative;
  z-index: 9;
  font-size: 0.7667rem;
  color: #b4a06c;
  line-height: 1.2;
  font-weight: bold;
}
.ny-about2 .itembox {
  position: relative;
  box-shadow: 0rem 0.05rem 0.5833rem 0rem rgba(7, 7, 7, 0.09);
  background-color: #fff;
  padding: 0 0.6667rem;
  overflow: hidden;
}
.ny-about2 .itembox:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  transform: translateX(-50%);
  background-color: #b4a06c;
  height: 0.0333rem;
  width: calc(100% - 1.3333rem);
}
.ny-about2 .about2-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  /*之前是ease-out*/
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.ny-about2 .item {
  position: relative;
  display: block;
  cursor: move;
}
.ny-about2 .item .year {
  background: url(../images/img29.png) no-repeat center;
  background-size: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.34rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0rem 1px 0.0667rem rgba(44, 44, 44, 0.32);
  width: 2rem;
  height: 2rem;
  padding-right: 0.2333rem;
  padding-bottom: 0.2333rem;
}
.ny-about2 .item .detail {
  padding-left: 0.6rem;
  position: relative;
  font-size: 0.25rem;
  color: #333;
  line-height: 1.8;

}
.ny-about2 .item .detail:before {
  content: "";
  display: block;
  width: 0.1667rem;
  height: 0.1667rem;
  background-color: #b4a06c;
  transform: rotate(45deg);
  position: absolute;
  left: 0.1667rem;
  top: 0.1667rem;
}
@media screen and (min-width: 751px) {
  .ny-about2 .swiper-slide {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }
  .ny-about2 .swiper-slide .item .detail {
    position: absolute;
    left: 0;
  }
  .ny-about2 .swiper-slide:nth-child(2n-1) .item .detail {
    top: 0;
    transform: translate(-25%, -130%);
  }
  .ny-about2 .swiper-slide:nth-child(2n) .item .detail {
    bottom: 0;
    transform: translate(-25%, 120%);
  }
}
@media screen and (max-width: 751px) {
  .ny-about2 .itembox {
    padding: 20px;
  }
  .ny-about2 .itembox:after {
    display: none;
  }
  .ny-about2 .about2-swiper .swiper-wrapper {
    flex-wrap: wrap;
  }
  .ny-about2 .about2-swiper .swiper-slide {
    width: 100%;
  }
  .ny-about2 .about2-swiper .swiper-slide .item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .ny-about2 .about2-swiper .swiper-slide .item .year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    font-size: 12px;
  }
}
/* ==================== 内页 - 发展历程 end ==================== */
/* ==================== 内页 - 研发实力 start ==================== */
.ny-about3 {
  overflow: hidden;
}
.ny-about3 .section1 {
  padding-top: 60px;
  padding-bottom: 1.1667rem;
}
.ny-about3 .section1 > .mxw-box {
  padding-top: 0;
}
.ny-about3 .section1 .desc {
  font-size: 0.2667rem;
  color: #777;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 0.8333rem;
  position: relative;
  z-index: 3;
}
.ny-about3 .section1 .body {
  display: flex;
  align-items: stretch;
}
.ny-about3 .section1 .about3-swiper-big {
  width: 75%;
  margin-right: 1.2%;
}
.ny-about3 .section1 .item {
  position: relative;
}
.ny-about3 .section1 .item .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 0.8333rem 1rem;
  color: #fff;
  font-size: 0.35rem;
  line-height: 1.2;    text-align: center;
}
.ny-about3 .section1 .about3-swiper-small {
  width: 23.8%;
  height: 12rem;
}
.ny-about3 .section1 .about3-swiper-small .swiper-slide {
  cursor: pointer;
}
.ny-about3 .section1 .itembox2 {
  display: flex;
  align-items: flex-start;
  margin-top: 1.1667rem;
}
.ny-about3 .section1 .item2 {
  position: relative;
  width: 25%;
  text-align: center;
}
.ny-about3 .section1 .item2:last-child:after {
  display: none;
}
.ny-about3 .section1 .item2:after {
  content: "";
  display: block;
  background: url(../images/img41.png) no-repeat center;
  background-size: 100%;
  width: 1px;
  height: 2.7rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.ny-about3 .section1 .item2 .image {
  margin: 0 auto;
  width: 1.7rem;
  margin-bottom: 0.3333rem;
}
.ny-about3 .section1 .item2 .text {
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.8;
}
.ny-about3 .section2,
.ny-about3 .section3,
.ny-about3 .section4 {
  position: relative;
}
.ny-about3 .section2 .mxw-box,
.ny-about3 .section3 .mxw-box,
.ny-about3 .section4 .mxw-box {
  width: 100%;
}
.ny-about3 .section2 .info .text1,
.ny-about3 .section3 .info .text1,
.ny-about3 .section4 .info .text1 {
  font-size: 0.4667rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 0.8333rem;    max-width: 750px;
}
.ny-about3 .section2 .info .desc,
.ny-about3 .section3 .info .desc,
.ny-about3 .section4 .info .desc {
  font-size: 0.2667rem;
  line-height: 2;
  text-align: left;
  max-width: 10.1667rem;
}
.ny-about3 .section2 .info .desc p,
.ny-about3 .section3 .info .desc p,
.ny-about3 .section4 .info .desc p {
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 751px) {
  .ny-about3 .section2,
  .ny-about3 .section3,
  .ny-about3 .section4 {
    background-image: none;
  }
  .ny-about3 .section2 .info,
  .ny-about3 .section3 .info,
  .ny-about3 .section4 .info {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .ny-about3 .section2 .info {
    align-items: flex-end;
  }
  .ny-about3 .section2 .info .text1,
  .ny-about3 .section2 .info .desc {
    color: #666;
  }
  .ny-about3 .section2 .info .desc {
    line-height: 2;
  }
  .ny-about3 .section3 .mxw-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .ny-about3 .section3 .info {
    color: #333;
  }
.ny-about3 .section3 .info .text1 {
    color: #fff;
  }
  .ny-about3 .section3 .info .desc {
    color: #fff;
  }
  .ny-about3 .section4 .info {
    color: #000033;
  }
  .ny-about3 .section4 .info .desc {
    color: #666666;
  }
}
@media screen and (max-width: 1680px) {
  .ny-about3 .section1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .ny-about3 .section1 .about3-swiper-big {
    margin-right: 1.9%;
  }
  .ny-about3 .section1 .about3-swiper-small {
    width: 23.1%;
    height: 10.2333rem;
  }
}
@media screen and (max-width: 751px) {
  .ny-about3 .section1 .desc {
    margin-bottom: 20px;
  }
  .ny-about3 .section1 .item .text {
    padding: 10px;
    font-size: 14px;
  }
  .ny-about3 .section1 .body {
    flex-wrap: wrap;
  }
  .ny-about3 .section1 .about3-swiper-big {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .ny-about3 .section1 .about3-swiper-small {
    width: 100%;
    height: auto;
  }
  .ny-about3 .section1 .itembox2 {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ny-about3 .section1 .item2 {
    width: 48%;
    margin-bottom: 10px;
  }
  .ny-about3 .section1 .item2:after {
    display: none;
  }
  .ny-about3 .section1 .item2 .image {
    width: 60px;
    margin-bottom: 10px;
  }
  .ny-about3 .section1 .item2 .text {
    font-size: 12px;
  }
  .ny-about3 .section2 .info .text1,
  .ny-about3 .section3 .info .text1,
  .ny-about3 .section4 .info .text1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .ny-about3 .section2 .info .desc,
  .ny-about3 .section3 .info .desc,
  .ny-about3 .section4 .info .desc {
    max-width: 100%;
  }
  .ny-about3 .section2 .info .desc {
    line-height: 1.8;
  }
  .ny-about3 .section2 .info .desc p {
    margin-bottom: 5px;
  }
}
/* ==================== 内页 - 研发实力 end ==================== */
/* ==================== 内页 - 核心竞争力 start ==================== */
.ny-about4 .section1 {
  background: url(../images/img45.jpg) no-repeat center bottom;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 6.1667rem;
}
.ny-about4 .section1 .desc {
  position: relative;
  z-index: 9;
  font-size: 0.2667rem;
  color: #777;
  text-align: justify;
  line-height: 2em;
  margin-bottom: 0.8333rem;
}
.ny-about4 .section1 .itembox {
  display: flex;
  align-items: flex-start;
  margin-top: 70.002px;
}
.ny-about4 .section1 .item {
  position: relative;
  width: 25%;
  text-align: center;
}
.ny-about4 .section1 .item:last-child:after {
  display: none;
}
.ny-about4 .section1 .item:after {
  content: "";
  display: block;
  background: url(../images/img41.png) no-repeat center;
  background-size: 100%;
  width: 1.002px;
  height: 162px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.ny-about4 .section1 .item .icon {
  margin: 0 auto;
  width: 102px;
  margin-bottom: 19.998px;
}
.ny-about4 .section1 .item .info {
  text-align: center;
}
.ny-about4 .section1 .item .text1 {
  font-size: 0.3333rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
  font-weight: bold;
}
.ny-about4 .section1 .item .text2 {
  font-size: 0.2667rem;
  color: #777;
  line-height: 1.6;
    width: 80%;
    margin: 0 auto;
}
.ny-about4 .section2 {
  padding-top: 1.1667rem;
  padding-bottom: 1.1667rem;
}
.ny-about4 .section2 .desc {
  font-size: 0.2667rem;
  color: #777;
  line-height: 2em;
  z-index: 9;
  position: relative;
}
.ny-about4 .section2 .item {
  position:relative;
  margin-top: 1.3333rem;
}
.ny-about4 .section2 .item .title {
  font-size: 0.5rem;
  color: #333;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.6667rem;
}
.ny-about4 .section2 .itembox1 {
  display: flex;
  align-items: stretch;
  width: 10.9333rem;margin-right: 0;margin-left:auto;;
}
.ny-about4 .section2 .item1 {
  border-left: 1px solid #fff;
  cursor: pointer;
}
.ny-about4 .section2 .item1 .image img{width:100%;height:100%;max-width:inherit;}
.ny-about4 .section2 .item1 .text {
  background-color: #080734;
  color: #fff;
  padding-left: 0.9333rem;
  padding-right: 0.9333rem;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 0.3333rem;
  line-height: 1.8;
}
.ny-about4 .section2 .item2 {
  border-radius: 0.7667rem 0.7667rem 0 0;
  overflow: hidden;
  padding-top: 0.6667rem;
  padding-bottom: 1.5rem;
  padding-left: 0.3333rem;
  padding-right: 0.3333rem;
  background-image: linear-gradient(to bottom, #f1eee4 80%, rgba(241, 238, 228, 0));
}
.ny-about4 .section2 .item2 .icon {
  width: 1.7rem;
  display: block;
  margin: 0 auto 0.5rem;
}
.ny-about4 .section2 .item2 .info {
  text-align: center;
}
.ny-about4 .section2 .item2 .text1 {
  font-size: 0.3333rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
  font-weight: bold;
}
.ny-about4 .section2 .item2 .text2 {
  font-size: 0.2667rem;
  color: #777;
}
@media screen and (min-width: 751px) {
  .ny-about4 .section2 .item1.active .image{
    display:block;
  }
  .ny-about4 .section2 .item1 .text {
    min-height:7.25rem;
  }
  .ny-about4 .section2 .item1.active .text{background-color:#b4a06c;}
  .ny-about4 .section2 .item1 .image{position:absolute;left:0;width:59%;bottom:0;display:none;height:7.25rem;}
}
@media screen and (max-width: 1680px) {
  .ny-about4 .section2 .item1 .image{width: 51.7%;}
}
@media screen and (max-width: 751px) {
  .ny-about4 .section1 {
    background-size: 100%;
    padding-top: 0;
    padding-bottom: 60px;
  }
  .ny-about4 .section1 .desc {
    margin-bottom: 0px;
  }
  .ny-about4 .section1 .itembox {
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ny-about4 .section1 .item {
    width: 48%;
  }
  .ny-about4 .section1 .item:nth-child(2) ~ .item {
    margin-top: 20px;
  }
  .ny-about4 .section1 .item:after {
    display: none;
  }
  .ny-about4 .section1 .item .icon {
    width: 70px;
    margin-bottom: 10px;
  }
  .ny-about4 .section1 .item .text1 {
    font-size: 15px;
  }
  .ny-about4 .section1 .item .text2 {
    font-size: 12px;
  }
  .ny-about4 .section2 .item1 .image{width:100%;}
  .ny-about4 .section2 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .ny-about4 .section2 .desc {
    padding-right: 0;
  }
  .ny-about4 .section2 .item {
    margin-top: 30px;
  }
  .ny-about4 .section2 .item .title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .ny-about4 .section2 .itembox1 {
    width:100%;
    flex-wrap: wrap;
  }
  .ny-about4 .section2 .item1 {
    width: 100%;
  }
  .ny-about4 .section2 .item1:first-child ~ .item1 {
    margin-top: 10px;
  }
  .ny-about4 .section2 .item1 .text {
    position: static;
    padding: 0;
    background: none;
    height: auto;
    width: 100%;
    color: #080734;
    text-align: center;
    justify-content: center;
    font-size: 14px;
    margin-top: 10px;
  }
  .ny-about4 .section2 .item2 {
    border-radius: 10px;
    padding: 20px 10px 30px;
  }
  .ny-about4 .section2 .item2 .text1 {
    font-size: 14px;
  }
  .ny-about4 .section2 .item2 .icon {
    width: 50px;
    margin-bottom: 10px;
  }
}
/* ==================== 内页 - 核心竞争力 end ==================== */
/* ==================== 内页 - 产品中心 start ==================== */
.ny-product .list {
  flex-wrap: wrap;
  display: flex;
  align-items: flex-start;
}
.ny-product .list-item:hover .title {
  background-color: #b4a06c;
  border-bottom-color: #b4a06c;
}
.ny-product .h_list .list-item:hover .title{
  background-color:#fff;
  border-bottom-color: #f2f2f2;
}
.ny-product .list-item:hover .name {
  color: #fff;
}
.ny-product .h_list .list-item:hover .name {
  color: #333;
}
.ny-product .list-item:hover .arrow {
  border-color: #fff;
  color: #fff;
}
.ny-product .h-item {
    width: 24.25%;
    margin-right: 1%;
}

.ny-product .list-item .title,.ny-product .h-item .title {
  width: 100%;
  border-bottom: 1px solid #f2f2f2;
  padding: 0.3333rem 0.2rem;
  display: flex;
  align-items: center;
  transition: all 0.4s;
}
.ny-product .list-item .name,.ny-product .h-item .name {
  color: #333;
  font-size: 0.2833rem;
  line-height: 1.3;
  min-width: 0;
  flex-grow: 1;
  transition: all 0.4s;
}
.ny-product .list-item .arrow {
  width: 1rem;
  height: 0.8333rem;
  line-height: 0.8333rem;
  border: 1px solid transparent;
  font-size: 0.4167rem;
  text-align: center;
  transition: all 0.4s;
  flex-shrink: 0;
}
.ny-product .list-item:hover .mxw-more .text{color:#fff;}
.ny-product .list-item:hover .mxw-more .icon{
  background-color:#fff;
}
.ny-product .list-item:hover .mxw-more .icon:after{
  border-top-color:#fff;
  border-right-color:#fff;
}
@media screen and (min-width: 751px) {
  .ny-product .list-item {
    width: 24.25%;
    margin-right: 1%;
  }
  .ny-product .list-item:nth-child(4n) {
    margin-right: 0;
  }
  .ny-product .list-item:nth-child(4) ~ .list-item {
    margin-top: 0.8333rem;
  }
}
@media screen and (max-width: 751px) {
  .ny-product .list-item {
    width: 48%;
  }
  .ny-product .list-item:nth-child(2n) {
    margin-left: 4%;
  }
  .ny-product .list-item:nth-child(2) ~ .list-item {
    margin-top: 20px;
  }
  .ny-product .list-item .arrow {
    display: none;
  }
  .ny-product .list-item .title {
    padding: 10px 10px;
    font-size: 12px;
  }
}
/* ==================== 内页 - 产品中心 end ==================== */
/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact {
  background: url(../images/img59.jpg) no-repeat center;
  background-size: cover;
}
.ny-contact .body {
  background: #fff;
  display: flex;
  align-items: center;
  box-shadow: 0rem 0.1167rem 0.5333rem 0rem rgba(3, 0, 0, 0.11);
}
.ny-contact .image {
  width: 13.5rem;
  flex-shrink: 0;
}
.ny-contact .info {
  min-width: 0;
  flex-grow: 1;
  padding: 0.9167rem;
}
.ny-contact .info .text1 {
  font-size: 0.5833rem;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  margin-bottom: 0.4333rem;
}
.ny-contact .info .desc {
  font-size: 0.2833rem;
  color: #333;
  line-height: 2.6;
  text-align: justify;
}
@media screen and (min-width: 751px) {
  .ny-contact .mxw-box {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
@media screen and (max-width: 751px) {
  .ny-contact .body {
    flex-wrap: wrap;
  }
  .ny-contact .image {
    width: 100%;
  }
  .ny-contact .info {
    padding: 20px 15px;
    background: none;
  }
  .ny-contact .info .text1 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
  }
  .ny-contact .info .desc {
    font-size: 14px;
    line-height: 2;
  }
}
/* ==================== 内页 - 联系我们 end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc {
  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: 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: 1px 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: 0.05rem solid #fff;
  border-radius: 0.0833rem;
  background-color: #b4a06c;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
  border-color: #b4a06c;
}
.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;*/    font-size: 16px;
    line-height: 1.75;
}
.ny-product-desc .bottom .head {
  width: 100%;
  border-bottom: 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;
  border-bottom: 0.0833rem solid #b4a06c;
  font-size: 0.3rem;
  line-height: 0.8333rem;
  height: 0.8333rem;
  color: #b4a06c;
}
@media screen and (min-width: 751px) {
  .ny-product-desc .mxw-box {
        max-width: 1060px;
  }
  .ny-product-desc .top {
    align-items: stretch;
  }
}
@media screen and (max-width: 1480px) {
  .ny-product-desc .mxw-box {
  
  }
}
@media screen and (max-width: 751px) {
  .ny-product-desc > .mxw-box {
    max-width:100%;
    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%;
  }
  .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 ==================== */
.recommend {
  position: sticky;
  top: 20px;
  width: 250px;
  flex-shrink: 0;
  margin-right: 20px;
  --swiper-navigation-color: #000;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 24px;
  /* 设置按钮大小 */
}
.recommend .title{
  font-size:24px;line-height:1.2;color:#333;margin-bottom: 10px;font-weight:bold;
  background-color:#b4a06c;
  padding: 15px 0;
  color: #fff;text-align:center;
}
.recommend .list{
max-height:50vh;    overflow-y: scroll;
}
.recommend .list::-webkit-scrollbar {
  display: none;
}
.recommend .list-item {
  font-size: 16px;
  text-align: left;
  color: #333;
  padding: 8px 10px;
  display: block;
}
.recommend .list-item.ctc::before,.recommend .list-item:hover::before {   background-color: #b4a06c;}

.recommend .list-item:before{content:"";display:inline-block;vertical-align:middle;width:6px;height:6px;background-color:#000;border-radius:100%;margin-right:5px;}

.recommend .swiper-btn-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top:20px;
}
.recommend .swiper-btn-group .swiper-button-prev,
.recommend .swiper-btn-group .swiper-button-next{position:static;margin-top:0;width:50px;height:40px;background-color:#d9d9d9;opacity:1;}
.recommend .swiper-btn-group .swiper-button-prev:after,
.recommend .swiper-btn-group .swiper-button-next:after{transform: rotate(90deg);font-size: 15px;}
.recommend .swiper-btn-group .swiper-button-prev:hover,
.recommend .swiper-btn-group .swiper-button-next:hover{background-color:#b4a06c;color:#fff;}
@media screen and (min-width: 751px) {
  .recommend-btn{display:flex;justify-content:center;align-items:center;margin-top: 20px;}
  .recommend .recommend-swiper {
    height: 300px;
  }
}
@media screen and (max-width: 751px) {
  .recommend {
    position:static;
    margin-right:0;
    width: 100%;
  }
  .recommend .title{display: block;font-size:15px;padding-top:8px;padding-bottom:8px;}
  .recommend .list-item{text-align:left;padding-top:6px;padding-bottom:6px;}
  .recommend .swiper-btn-group{margin-top:0;}
}
/* ==================== 内页 - 推荐产品 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  width: 100%;
  background-color: #000;
}
footer > .mxw-box {
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
footer .foot-contact {
  font-size: 14px;
  color: #fff;
  line-height: 2;
  text-align: justify;
}
footer .mxw-copyright {
  font-size: 14px;
  color: #666;
  line-height: 2;
}
footer .foot-qr {
  flex-shrink: 0;
  text-align: center;
}
footer .foot-qr img {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}
footer .foot-qr p {
  font-size: 14px;
  color: #666;
}
@media screen and (max-width: 751px) {
  footer {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  footer .mxw-box {
    text-align: center;
    padding: 0;
  }
  footer .foot-contact {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  footer .mxw-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 20px;
    padding-top: 15px;
    font-size: 12px;
    line-height: 1.8;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 1600px;
  margin: 0 auto;
  font-size: 0;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
}
.mxw-box a:hover {
  color: #b4a06c;
}
/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px !important;
  }
}
@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: 159px;
  }
  #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 .mxw-box {
    margin-top: 100px;
  }
  .mxw-ny-box {
    padding-top: 60px;
    padding-bottom: 100px;
    max-width: 1600px;
  }
}



@media screen and (max-width: 1680px) {
  .mxw-box,
  .mxw-ny-box {
    max-width: 84%;
  }
}
@media screen and (max-width: 1280px) {
  .mxw-ny-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 751px) {
  body {
    margin-top: 60px;
  }
  html {
    font-size: 50px;
  }
  .m-none,
  .pc-nav {
    display: none !important;
  }
  .mxw-box {
    padding: 30px 20px;
    max-width: 100%;
  }
  .mxw-section {
    padding-left: 0;
    padding-right: 0;
  }
  article {
    font-size: 15px;
  }
  .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 ==================== */
/* ==================== 通用标签页 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: #d20000;
  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 ==================== */
.ny-video{}
.ny-video .vieo-content{height:500px;overflow:hidden;border-radius:10px;   }

.ny-video .vieo-content iframe,
.ny-video .vieo-content video{display:block;width:100%;height:100%;border:0;background:none;}
.ny-video .vieo-content video{object-fit: cover;height:500px;}
.ny-video .body{position:relative;
  --swiper-navigation-color: #333;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 24px;
  /* 设置按钮大小 */
}
.ny-video .swiper-button-prev,
.ny-video .swiper-button-next{background-color:#f5f5f5;height:100%;margin-top:0;top:50%;bottom:auto;transform:translateY(-50%);width: 40px;}
.ny-video .swiper-button-prev:after,
.ny-video .swiper-button-next:after{color:#333;font-size:20px;}
.ny-video .swiper-button-prev:hover,
.ny-video .swiper-button-next:hover{background-color:#b4a06c}
.ny-video .swiper-button-prev:hover:after,
.ny-video .swiper-button-next:hover:after{color:#fff;}
.ny-video .swiper-button-prev{}
.ny-video .swiper-button-next{}
.ny-video .video-swiper2{margin-top:40px;width: calc(100% - 150px);}
.ny-video .video-swiper2 .item{
  display:block;
  text-align: center;
  cursor: pointer;
  font-size: 0.3rem;
  white-space: nowrap;
  background: #eaeaea;
  color: #333;
  line-height: 0.6667rem;
}
.ny-video .video-swiper2 .item:hover,
.ny-video .video-swiper2 .item.acitve{
  background: #b4a06c;
  color: #fff;
}
@media screen and (min-width: 751px) {
    .ny-video{
    }
}
@media screen and (max-width: 751px) {
  .ny-video .vieo-content{height:200px;}
  .ny-video .video-swiper2{margin-top:20px;max-width:70%;}
}
/* ==================== 内页 - 科技与品牌 end ==================== */


.ny-about2  .ny_page{ padding:0; height: auto; overflow: hidden;  margin: 0 auto; box-shadow: none; font-size: 16px; line-height: 1.75;max-width:100%;}
.ny-about2  .ny_page2{ width:100%;}
.ny-about2  .ny_page::after{ display: none}
.ny_page_box .body{ background: none;}

.tz{    font-size: 14px;transition: all 0.4s;    border-bottom: 1px solid #f2f2f2;
    padding: 0 0.2rem 0.333rem;}
.ny-product .list-item .title.ta {
  border-bottom:none;   background: none;    padding-bottom: 0.15rem;
}

.ny-product .list-item:hover {
    background-color: #b4a06c;
    border-bottom-color:#f2f2f2;
color: #fff
}


.ny-product .list-item.tc:hover {
    background-color: #fff;
    border-bottom-color: #b4a06c;
    color: #fff;
}

.ny-product .list-item.tc:hover .title {
 background-color: #fff;
    border-bottom-color: #f2f2f2;
    color: #fff;
}
.ny-product .list-item.tc:hover .name {
    color: #333;
}
.ny-product .h-item{ margin-bottom:30px;}
.ny-product .h-item:hover{    cursor: default;}
.ny-product .h-item:nth-child(4n){ margin-right:0}

.ny-product .k_list .h-item{
	width:calc(90%/6) ;
    margin-right:2%;
}
.ny-product .k_list .h-item:nth-child(4n){  margin-right:2%;}
.ny-product .k_list .h-item:nth-child(6n){ margin-right:0; }


.ny-product .list-item p.tz{min-height:60px;overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;}

@media screen and (max-width: 1680px) {
.ny-contact .image{width:12.5rem;}


.mxw-cases .right .right-item{padding-left:0.5rem}
.mxw-cases .item .bg-image img{}
.mxw-cases .item .bg-image{  }
.mxw-cases .right .text2{font-size: 0.7167rem;}
.mxw-cases .right .text3{    font-size: 0.35rem;}
.mxw-cases .right .item2 img{ height:110px;  }
.mxw-cases .cases-swiper{     margin-left: -10%;}


}

.cpzz ul{    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;}
.cpzz ul li{    margin: 60px -1px 0 0;
    border: 1px solid #ccc;
width: auto;    text-align: center;}
.cpzz ul li a{    padding: 10px 30px;
    display: block;}
.cpzz ul li.active,.cpzz ul li:hover{    border-bottom: 1px solid #b4a06c}
.cpzz ul li.active a,.cpzz ul li:hover a{    color: #b4a06c; }
.option{max-width: 1600px;
    margin: 0 auto;
    font-size: 0;
    color: #333;}

.ny-news-desc .article iframe{width:800px; height:500px;}


@media screen and (max-width: 751px) {
.ny-product .h-item{ width:48%;margin-right: 4%;}
.ny-product .h-item:nth-child(2n){ margin-right:0}
.ny-video .vieo-content video{height:200px;}

.mxw-cases .cases-swiper{margin-left:0}
.mxw-about .number{    font-size: 100px;
    right: 0;
    left: initial;
    top: -15px;}
.cpzz ul{        flex-wrap: wrap;
   
    text-align: center;
    width: 95%;
    margin: 0 auto;}
.cpzz ul li{        width: 25%;
    margin: 20px -1px 0 0;}
.cpzz ul li a {
    padding: 5px 0;
    display: block;
    font-size: 14px;
}
.ny-news-desc .article iframe{width:100%; height:210px;}
}







