@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: #229b92;
  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;
}
.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: #229b92;
  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: #229b92;
  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-product-desc {
  overflow: hidden;
}
.ny-product-desc .product-image {
  width: 10rem;
  margin-right: 0.6667rem;
  flex-shrink: 0;
  position: relative;
  z-index: 9;
}
.ny-product-desc .product-image img {
  width: 100%;
}
.ny-product-desc .product-desc {
  flex-grow: 1;
}
.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: #229b92;
}
.ny-product-desc .product-desc .desc {
  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: 751px) {
  .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 .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-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(-0.8333rem);
  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.3rem;
  line-height: 0.8333rem;
  height: 0.8333rem;
  padding: 0 0.25rem;
}
.ny-cases .item .title .more {
  background: #229b92;
  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: #229b92;
}
.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: #229b92;
  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 #229b92;
}
@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: 0.0167rem solid #CCCCCC;
  color: #666666;
  font-size: 0.3rem;
  margin: 0 0.1667rem;
  padding: 0 0.2rem;
  height: 0.6667rem;
  line-height: 0.6667rem;
}
.Pagination a:hover,
.Pagination .current {
  color: white!important;
  background: #229b92;
  border-color: #229b92;
}
@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;
}
header .mxw-box {
  max-width: 1500px;
}
header .pc-nav .nav-top {
  background-color: #ebfffe;
}
header .pc-nav .nav-top > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 10px;
  padding-bottom: 10px;
}
header .pc-nav .nav-top .text1 {
  font-size: 14px;
  color: #7b918f;
  line-height: 1.2;
  margin-right: 25px;
}
header .pc-nav .nav-top .text1:last-child {
  margin-right: 0;
}
header .pc-nav .logo img {
  width: 140px;
}
header .pc-nav .bottom {
  background-color: #229b92;
}
header .pc-nav .bottom > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .pc-nav .bottom .right {
  display: flex;
  align-items: center;
}
header .pc-nav .search {
  width: 40px;
  height: 40px;
  background-color: #229b92;
  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 .pc-nav .search:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/search.png) no-repeat center;
  background-size: 100%;
}
header .pc-nav .search.active {
  overflow: visible;
}
header .pc-nav .search.active form {
  opacity: 1;
  right: 0;
  visibility: visible;
}
header .pc-nav .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;
  border: 1px solid #eee;
}
header .pc-nav .search form input {
  background: #fff;
  padding: 0.1334rem 0.1667rem;
  outline: none;
  font-size: 0.2333rem;
  width: 2.7rem;
  height: 100%;
}
header .pc-nav .search form button {
  position: relative;
  width: 0.8333rem;
  height: 100%;
  background: #229b92;
  cursor: pointer;
}
header .pc-nav .search form button img {
  width: 20px;
  height: 20px;
}
header .pc-nav .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 #229b92;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}
header .pc-nav .search form button img {
  width: 16px;
  height: 16px;
}
header .pc-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 100%;
}
header .pc-menu > li {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 25px;
  padding-right: 25px;
}
header .pc-menu > li:last-child {
  padding-right: 0;
}
header .pc-menu > li:hover > a {
  color: #fff !important;
  background-color: #229b92;
}
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 > a {
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  text-align: center;
  height: 60px;
}
header .pc-menu > li .pc-sub-menu {
  width: 200px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  padding-top: 0px;
  color: #333;
}
header .pc-menu > li .pc-nav-box {
  border: 1px solid #ddd;
  position: relative;
  background: #fff;
  -webkit-transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
  transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: perspective(1200px) rotateX(-90deg);
  transform: perspective(1200px) rotateX(-90deg);
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}
header .pc-menu > li .pc-nav-box::before {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  visibility: hidden;
  left: 0;
  top: 0;
  position: absolute;
  transition: all 0.4s;
}
header .pc-menu > li .pc-nav-box > li:hover {
  background: rgba(0, 0, 0, 0.05);
}
header .pc-menu > li .pc-nav-box > li > a {
  display: block;
  text-align: center;
  font-size: 13px;
  height: 46px;
  line-height: 46px;
}
@media screen and (max-width: 1580px) {
  header .pc-nav .nav-top > .mxw-box,
  header .pc-nav .bottom > .mxw-box {
    max-width: 90%;
  }
}
/* ==================== 头部 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: #333;
    border-bottom: 1px solid #eee;
  }
  .mxw-mob-nav .logo {
    display: block;
    flex-shrink: 0;
  }
  .mxw-mob-nav .logo img {
    height: 50px;
  }
  .mxw-mob-nav .menu-btn {
    flex-shrink: 0;
    width: 26px;
    height: 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }
  .mxw-mob-nav .menu-btn i {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 100px;
    background: #fff;
  }
  .mxw-mob-nav .menus-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 50%;
    max-width: 450px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transform: translateX(50%);
  }
  .mxw-mob-nav .menus-box.active {
    visibility: visible;
    opacity: 1;
  }
  .mxw-mob-nav .menus-box.active .menus {
    transform: translateX(0);
  }
  .mxw-mob-nav .menus {
    width: 60%;
    height: 100%;
    margin-right: 0;
    margin-left: auto;
    background: #fff;
    transform: translateX(100%);
    transition: all 0.5s;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
  }
  .mxw-mob-nav .menus > ul {
    width: 100%;
    overflow: auto;
  }
  .mxw-mob-nav .menus > ul > li.active > ul {
    display: block;
  }
  .mxw-mob-nav .menus > ul > li > a {
    display: block;
    width: 100%;
    padding: 15px 18px;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mxw-mob-nav .menus > ul > li > a.sub:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-top: 4px solid #555;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 0;
    margin-left: 10px;
  }
  .mxw-mob-nav .menus > ul > li > ul {
    display: none;
    padding: 0px 24px;
  }
  .mxw-mob-nav .menus > ul > li > ul > li > a {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 36px;
    height: 36px;
    border-bottom: 1px solid #f3f3f3;
  }
  .mxw-mob-nav .menus-head {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8F8F8;
    border-bottom: 0.6px solid #eee;
    font-size: 16.8px;
    font-weight: bold;
    line-height: 54px;
    height: 54px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .mxw-mob-nav .menus-head .text {
    color: #333;
    line-height: 1.2;
  }
  .mxw-mob-nav .menus-head .mxw-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none;
    position: relative;
    transform: rotate(45deg);
  }
  .mxw-mob-nav .menus-head .mxw-close:before,
  .mxw-mob-nav .menus-head .mxw-close:after {
    content: "";
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
  }
  .mxw-mob-nav .menus-head .mxw-close:before {
    width: 2px;
    height: 100%;
  }
  .mxw-mob-nav .menus-head .mxw-close:after {
    width: 100%;
    height: 2px;
  }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
  background: #fff;
  font-size: 0;
  position: relative;
}
/* .mxw-banner .swiper-slide img {
  display: block;
  transition: 1s linear 2s!important;
  transform: scale(1.1, 1.1);
  width: 100%;
}
.mxw-banner .swiper-slide-active img,
.mxw-banner .swiper-slide-duplicate-active img {
  transition: 4s linear!important;
  transform: scale(1, 1);
} */
.mxw-banner .swiper-slide {
  overflow: hidden;
}
.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: #229b92;
}
.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);
}
.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 .swiper-slide{
  position: relative;
  text-align: center;
  background-color:#fff;overflow: hidden;
}
.mxw-banner .swiper-slide .mxw-box{position: absolute;top:0;left:0;width: 100%;height: 100%;max-width: 100%;padding-top: 1.3333rem;z-index:9;}
.mxw-banner .swiper-slide .text1,
.mxw-banner .swiper-slide .desc,
.mxw-banner .swiper-slide .mxw-more,
.mxw-banner .swiper-slide .image{transform: translateY(0.5rem);transition: transform 1s,opacity 1s,visibility 1s;opacity: 0;visibility: hidden;}
.mxw-banner .swiper-slide .text1{transition-delay: 0.2s;}
.mxw-banner .swiper-slide .desc{transition-delay: 0.4s;}
.mxw-banner .swiper-slide .mxw-more{transition-delay: 0.6s;}
.mxw-banner .swiper-slide .image{transition-delay: 0.1s;}
.mxw-banner .swiper-slide.ani-slide .text1,
.mxw-banner .swiper-slide.ani-slide .desc,
.mxw-banner .swiper-slide.ani-slide .mxw-more,
.mxw-banner .swiper-slide.ani-slide .image{transform: translateY(0);opacity: 1;visibility: visible;}
.mxw-banner .swiper-slide .text1{
  font-size: 0.6667rem;
  color: #1d1d1f;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.mxw-banner .swiper-slide .desc{
  font-size: 0.2667rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
.mxw-banner .swiper-slide .mxw-more{
  font-size: 0.2667rem;
  color: #229b92;
  line-height: 1.2;
  display: inline-block;
}
.mxw-banner .swiper-slide .image{}

/* 第二张 */
.mxw-banner .swiper-slide2 .mxw-box{
  max-width: 5.6667rem;
  left: auto;
  right: 25%;
  padding-bottom: 1.5rem;
  top: 20%;
}
.mxw-banner .swiper-slide2 .text1{font-weight: 400;}
.mxw-banner .swiper-slide2 .text1,
.mxw-banner .swiper-slide2 .mxw-more,
.mxw-banner .swiper-slide2 .desc{color:#fff;}
.mxw-banner .swiper-slide2 .desc{margin-bottom: 1.5rem;}
.mxw-banner .swiper-slide3 .text1,
.mxw-banner .swiper-slide3 .mxw-more,
.mxw-banner .swiper-slide3 .desc{color:#fff;}
@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;
  }
}
/* ==================== 轮播图 end ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
  overflow: hidden;
  font-size: 0;
  text-align: center;
  margin-bottom: 0.6667rem;
}
.mxw-title .text1 {
  font-size: 0.6rem;
  line-height: 1.2;
  color: #1d1d1f;
}
.mxw-title .text2 {
  font-size: 0.2667rem;
  line-height: 1.2;
  color: #666;
  margin-top: 0.3333rem;
}
@media screen and (max-width: 751px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 {
    font-size: 22px;
  }
  .mxw-title .text2 {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== section1 start ==================== */
.section1 .mxw-card {
  overflow: hidden;
  margin-bottom: 0.1333rem;
}
.section1 .mxw-card.mxw-card1,
.section1 .mxw-card.mxw-card2 {
  background: url(../images/img16.jpg) repeat-y center bottom;
}
.section1 .mxw-card.mxw-card1 .image,
.section1 .mxw-card.mxw-card2 .image {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section1 .mxw-card.mxw-card1 > .mxw-box {
  padding-top: 1.3333rem;
}
.section1 .mxw-card.mxw-card1 .image {
  margin-bottom: -0.3333rem;
}
.section1 .mxw-card.mxw-card2 > .mxw-box {
  padding-top: 1.8333rem;
}
.section1 .mxw-card.mxw-card3 {
  background-color: #e6eae5;
}
.section1 .mxw-card.mxw-card3 > .mxw-box {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section1 .mxw-card.mxw-card3 .image {
  margin-top: 0;
}
.section1 .mxw-card .info {
  position: relative;
  z-index: 9;
  text-align: center;
}
.section1 .mxw-card .info .text1 {
  font-size: 0.6667rem;
  color: #1d1d1f;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.section1 .mxw-card .info .desc {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.section1 .mxw-card .info .mxw-more {
  font-size: 0.2667rem;
  color: #229b92;
  line-height: 1.2;
  transition: all 0.7s;
  display: inline-block;
  padding: 20px 0;
}
.section1 .mxw-card .info .mxw-more:hover {
  transform: translateY(-0.1667rem);
  font-weight: bold;
}
.section1 .mxw-card .image {
  margin-top: 0.8333rem;
}
.section1 .mxw-card .image img {
  transition: all 0.4s;
}
.section1 .mxw-card .image:hover img {
  transform: scale(1.05);
}
@media screen and (max-width: 751px) {
  .section1 .mxw-card .info .text1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .section1 .mxw-card .info .desc {
    font-size: 12px;
  }
  .section1 .mxw-card .info .mxw-more {
    font-size: 12px;
  }
  .section1 .mxw-card.mxw-card1 > .mxw-box {
    padding-top: 30px;
  }
  .section1 .mxw-card.mxw-card2 > .mxw-box {
    padding-top: 30px;
    padding-bottom: 0;
  }
  .section1 .mxw-card.mxw-card3 > .mxw-box {
    padding-top: 30px;
    padding-bottom: 0;
    flex-wrap: wrap;
  }
}
/* ==================== section1 end ==================== */
/* ==================== 推荐产品 start ==================== */
.mxw-product {
  --swiper-navigation-color: #7a7a7a;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 0.3333rem;
  /* 设置按钮大小 */
}
.mxw-product .itembox {
  padding-left: 0.8333rem;
  padding-right: 0.8333rem;
  position: relative;
}
.mxw-product .item {
  display: block;
}
.mxw-product .item .image {
  margin-bottom: 0.4167rem;
}
.mxw-product .item .info {
  text-align: center;
  padding-bottom: 0.3333rem;
}
.mxw-product .item .text1 {
  font-size: 0.3rem;
  color: #1b1b1b;
  margin-bottom: 0.1667rem;
  line-height: 1.2;
  font-family: fangsong;
}
.mxw-product .item .text2 {
  font-size: 0.3rem;
  color: #1b1b1b;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.mxw-product .item .text3 {
  font-size: 0.2333rem;
  color: #535151;
  line-height: 1.2;
}
.mxw-product .swiper-button-next,
.mxw-product .swiper-button-prev {
  background-image: none;
  position: absolute;
}
.mxw-product .itembox2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mxw-product .item2 {
  width: 49.5%;
  position: relative;
}
.mxw-product .item2:nth-child(2) ~ .item2 {
  margin-top: 1%;
}
.mxw-product .item2 .info {
  position: absolute;
  top: 0.8333rem;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 9;
}
.mxw-product .item2 .text1 {
  font-size: 0.3rem;
  line-height: 1.2;
  color: #1d1d1f;
  margin-bottom: 0.3333rem;
}
.mxw-product .item2 .text2 {
  font-size: 0.4667rem;
  color: #1d1d1f;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.mxw-product .item2 .mxw-btn {
  font-size: 0.2667rem;
  color: #229b92;
  display: block;
}
.mxw-product .item2 .mxw-btn > div {
  transition: all 0.4s;
}
.mxw-product .item2 .mxw-btn:hover > div {
  transform: translateY(-10px);
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .mxw-product .mxw-box {
    padding-top: 1.25rem;
    padding-bottom: 1.8333rem;
  }
  .mxw-product .item {
    transition: all 0.4s;
    margin: 8px;
  }
  .mxw-product .item:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 751px) {
  .mxw-product {
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
  }
  .mxw-product .itembox {
    padding-left: 0;
    padding-right: 0;
  }
  .mxw-product .item .text1 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .mxw-product .item .text2 {
    font-size: 14px;
  }
  .mxw-product .item .text3 {
    font-size: 12px;
    line-height: 1.6;
  }
  .mxw-product .itembox2 {
    flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
  }
  .mxw-product .item2 {
    width: 100%;
    margin-top: 0!important;
  }
  .mxw-product .item2 .info {
    top: 30px;
    position: static;
    padding: 20px 0;
  }
  .mxw-product .item2 .text1 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
  }
  .mxw-product .item2 .text2 {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
/* ==================== 推荐产品 end ==================== */
/* ==================== 新闻中心 start ==================== */
.mxw-news {
  overflow: hidden;
}
.mxw-news .mxw-box {
  max-width: 1200px;
}
.mxw-news .itembox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mxw-news .item {
  width: 49.5%;
  position: relative;
  display: block;
}
.mxw-news .item:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, transparent 60%, rgba(34, 155, 146, 0.5));
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.mxw-news .item .image {
  width: 100%;
}
.mxw-news .item .image img {
  width: 100%;
}
.mxw-news .item .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 0.3333rem;
  color: #fff;
  padding-bottom: 0.6667rem;
  text-align: center;
  padding-left: 0.3333rem;
  padding-right: 0.3333rem;
  z-index: 9;
}
@media screen and (max-width: 1280px) {
  .mxw-news .mxw-box {
    max-width: 90%;
  }
}
@media screen and (min-width: 751px) {
  .mxw-news .mxw-box {
    padding-top: 76px;
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 751px) {
  .mxw-news .mxw-box {
    max-width: 100%;
  }
  .mxw-news .itembox {
    flex-wrap: wrap;
  }
  .mxw-news .item {
    width: 100%;
  }
  .mxw-news .item:first-child {
    margin-bottom: 15px;
  }
  .mxw-news .item .title {
    font-size: 14px;
    padding: 20px 10px;
  }
}
/* ==================== 新闻中心 end ==================== */
/* ==================== 内页 - 通用分类 start ==================== */
.ny-cate {
  background-color: #fff;
  overflow: hidden;
}
.ny-cate > .mxw-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.ny-cate .cate-item {
  display: block;
  margin-right: 3rem;
}
.ny-cate .cate-item:hover .name:after ,.ny-cate .cate-item.active .name:after{
  opacity: 1;
}
.ny-cate .cate-item:last-child {
  margin-right: 0;
}
.ny-cate .cate-item .icon {
  margin-bottom: 0.25rem;
  width: 0.8333rem;
  margin-left: auto;
  margin-right: auto;
}
.ny-cate .cate-item .name {
  font-size: 0.2667rem;
  color: #666;
  position: relative;
}
.ny-cate .cate-item .name:after {
  content: "";
  display: inline-block;
  width: 0.1333rem;
  height: 0.1333rem;
  border-top: 0.0167rem solid #666;
  border-right: 0.0167rem solid #666;
  transform: rotate(135deg) translateY(-50%);
  margin-bottom: 0.0833rem;
  opacity: 0;
  transition: all 0.4s;
  position: absolute;
  right: -0.25rem;
}
@media screen and (min-width: 751px) {
  .ny-cate {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media screen and (max-width: 751px) {
  .ny-cate .mxw-box {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .ny-cate .cate-item {
    width: 32%;
    margin-right: 0;
    text-align: center;
  }
  .ny-cate .cate-item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .ny-cate .cate-item:nth-child(3) ~ .cate-item {
    margin-top: 4%;
  }
  .ny-cate .cate-item .icon {
    width: 40px;
    margin-bottom: 10px;
  }
  .ny-cate .cate-item .name {
    font-size: 13px;
    line-height: 1.6;
    padding-left: 10px;
    padding-right: 10px;
  }
  .ny-cate .cate-item .name:after {
    display: none;
  }
}
/* ==================== 内页 - 通用分类 end ==================== */
/* ==================== 内页 - 内页标题 start ==================== */
.ny-title {
  font-size: 0;
  display: table;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: bold;
  position: relative;
  margin-bottom: 0.8333rem;
}
.ny-title .text {
  display: inline-block;
  position: relative;
  z-index: 9;
  font-size: 0.6667rem;
  color: #1d1d1f;
}
.ny-title:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #7bc7c3;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 751px) {
  .ny-title {
    margin-bottom: 30px;
  }
  .ny-title .text {
    font-size: 20px;
  }
}
/* ==================== 内页 - 内页标题 end ==================== */
/* ==================== 内页 - 关于我们 start ==================== */
.ny-about {
  overflow: hidden;
}
.ny-about .section1 {
  padding-bottom: 1.3333rem;
  font-size: 0;
  overflow: hidden;
  background-color: #f7f9fa;
  text-align: center;
}
.ny-about .section1 .text1 {
  font-size: 0.6667rem;
  color: #1d1d1f;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
}
.ny-about .section1 .text2 {
  font-size: 0.6667rem;
  color: #229b92;
  line-height: 1.2;
}
.ny-about .section1 .mxw-video {
  overflow: hidden;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.5s;
  width: 1200px;
  height: 60vh;
  border-radius: 0.1667rem;
}
.ny-about .section1 .mxw-video.active {
  width: 100%;
  height: 100vh;
  border-radius: 0;
}
.ny-about .section1 .mxw-video video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ny-about .section2 {
  overflow: hidden;
}
.ny-about .section2 .desc {
  font-size: 0.3rem;
  color: #585858;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 1rem;
}
.ny-about .section2 .item:nth-child(2) {
  margin-top: 1.8333rem;
}
.ny-about .section2 .image {
  margin-bottom: 0.5833rem;
}
.ny-about .section2 .title2 {
  font-size: 0.3667rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.ny-about .section2 .desc2 {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.6;
  text-align: justify;
}
.ny-about .section3 > .mxw-ny-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ny-about .section3 .image {
  margin-right: 1.3333rem;
  position: relative;
  width: 15rem;
  flex-shrink: 0;
}
.ny-about .section3 .image .icon {
  position: absolute;
  top: 41%;
  left: 46%;
  z-index: 9;
  width: 2.3333rem;
}
.ny-about .section3 .info {
  width: 10rem;
  flex-shrink: 0;
}
.ny-about .section3 .info .ny-title {
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 1.1667rem;
}
.ny-about .section3 .info .content {
  background-color: #fff;
  box-shadow: 0rem 0.05rem 0.5833rem 0rem rgba(0, 0, 0, 0.11);
  border-radius: 0.1667rem;
  padding: 0.5rem;
  height: 7.9rem;
}
.ny-about .section3 .info .itembox {
  height: 100%;
  overflow-y: auto;
  padding-right: 0.8333rem;
}
.ny-about .section3 .info .itembox::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0.0667rem;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 0.0167rem;
}
.ny-about .section3 .info .itembox::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 0.1667rem;
  box-shadow: inset 0 0 0.0833rem rgba(0, 0, 0, 0.2);
  background: #219b92;
}
.ny-about .section3 .info .itembox::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 0.0833rem rgba(0, 0, 0, 0.2);
  border-radius: 0.1667rem;
  background: #dadada;
}
.ny-about .section3 .info .item {
  border-bottom: 0.0167rem dashed #e7e7e7;
  padding-top: 0.4167rem;
  padding-bottom: 0.4167rem;
}
.ny-about .section3 .info .item:first-child {
  padding-top: 0;
}
.ny-about .section3 .info .item .text1 {
  position: relative;
  padding-left: 0.6667rem;
  font-weight: bold;
  font-size: 0.3667rem;
  color: #333;
  margin-bottom: 0.1667rem;
}
.ny-about .section3 .info .item .text1:before {
  content: "";
  display: block;
  background: url(../images/img26.png) no-repeat center;
  background-size: 100%;
  width: 0.3333rem;
  height: 0.3333rem;
  position: absolute;
  left: 0;
  top: 4px;
}
.ny-about .section3 .info .item .text2 {
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.6;
  text-align: justify;
  padding-left: 0.6667rem;
}
@media screen and (max-width: 1280px) {
  .ny-about .section1 .mxw-video {
    width: 90%;
  }
}
@media screen and (min-width: 751px) {
  .ny-about .section1 .mxw-ny-box {
    padding-top: 1.6667rem;
    padding-bottom: 0.5rem;
  }
  .ny-about .section2 .mxw-ny-box {
    padding-top: 1.5rem;
    padding-bottom: 1.3333rem;
  }
  .ny-about .section3 {
    padding-bottom: 0.6667rem;
  }
  .ny-about .section3 .mxw-ny-box {
    max-width: 100%;
  }
  .ny-about .section3 .image {
    width: auto;
    flex-shrink: inherit;
  }
}
@media screen and (max-width: 1680px) {
  .ny-about .section3 .mxw-ny-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 751px) {
  .ny-about .section1 {
    padding-bottom: 30px;
  }
  .ny-about .section1 .text1 {
    font-size: 16px;
    font-weight: bold;
  }
  .ny-about .section1 .text2 {
    font-size: 16px;
    font-weight: bold;
  }
  .ny-about .section1 .mxw-video {
    height: 40vh;
  }
  .ny-about .section1 .mxw-play {
    background-size: 100px;
  }
  .ny-about .section2 .image {
    margin-bottom: 20px;
  }
  .ny-about .section2 .title2 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
  }
  .ny-about .section2 .desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .ny-about .section2 .item {
    margin-bottom: 20px;
  }
  .ny-about .section2 .item:last-child {
    margin-bottom: 0;
  }
  .ny-about .section2 .item:nth-child(2) {
    margin-top: 0;
  }
  .ny-about .section2 .desc2 {
    line-height: 1.8;
  }
  .ny-about .section3 .mxw-ny-box {
    max-width: 100%;
    flex-wrap: wrap;
  }
  .ny-about .section3 .image {
    width: 100%;
    margin-right: 0;
  }
  .ny-about .section3 .image .icon {
    width: 50px;
    top: 42%;
  }
  .ny-about .section3 .info {
    width: 100%;
  }
  .ny-about .section3 .info .ny-title {
    margin-left: auto;
    margin-bottom: 30px;
  }
  .ny-about .section3 .info .itembox {
    padding-right: 20px;
  }
  .ny-about .section3 .info .item {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .ny-about .section3 .info .item .text1 {
    padding-left: 25px;
    font-size: 14px;
  }
  .ny-about .section3 .info .item .text1:before {
    top: 2px;
  }
  .ny-about .section3 .info .item .text2 {
    font-size: 12px;
    padding-left: 20px;
  }
}
/* ==================== 内页 - 关于我们 end ==================== */
/* ==================== 内页 - 箭头动画 start ==================== */
.mxw-UpDown {
  animation: myfirst 2s infinite;
  z-index: 99;
}
.mxw-round {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-0.8333rem, 0.8333rem);
}
.mxw-round .round {
  border: dashed 0.0167rem #229b92;
  border-radius: 100%;
  transition: all 0.4s;
}
.mxw-round .round1 {
  width: 2.2667rem;
  height: 0.6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -0.3rem;
  margin-left: -1.1333rem;
  animation: myfirst2 2s linear infinite;
  opacity: 0.28;
}
.mxw-round .round2 {
  width: 3.75rem;
  height: 1.05rem;
  animation: myfirst2 2s linear infinite;
  opacity: 0.2;
}
@media screen and (max-width: 751px) {
  .mxw-round {
    transform: translate(-69px, 10px);
  }
}
@keyframes myfirst {
  0% {
    transform: translate(0rem, 0rem);
  }
  50% {
    transform: translate(0rem, -0.1667rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
@keyframes myfirst2 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
/* ==================== 内页 - 箭头动画 end ==================== */
/* ==================== 内页 - 产品中心 start ==================== */
.ny-product {
  background-color: #f7f9fa;
}
.ny-product .list-item {
  background-color: #fff;
  padding: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.ny-product .list-item:last-child {
  margin-bottom: 0;
}
.ny-product .list-item .info {
  min-width: 0;
  flex-grow: 1;
}
.ny-product .list-item .info .text1 {
  font-size: 35px;
  line-height: 1.2;
  color: #1d1d1f;
  margin-bottom: 20px;
}
.ny-product .list-item .info .text2 {
  font-size: 28px;
  line-height: 1.2;
  color: #1d1d1f;
  margin-bottom: 30px;
}
.ny-product .list-item .info .desc {
  font-size: 14px;
  color: #535151;
  line-height: 2;
}
.ny-product .list-item .info .bottom {
  display: flex;
  align-items: center;
  margin-top: 60px;
  font-size: 18px;
}
.ny-product .list-item .info .bottom .mxw-inquiry {
  padding: 10px 25px;
  color: #fff;
  background-color: #229b92;
  border-radius: 100px;
  display: block;
  margin-right: 30px;
}
.ny-product .list-item .info .bottom .mxw-desc {
  font-size: 16px;
  color: #229b92;
  line-height: 1.2;
}
.ny-product .list-item .image {
  width: 500px;
}
@media screen and (min-width: 751px) {
  .ny-product .mxw-ny-box {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 751px) {
  .ny-product .list-item {
    padding: 20px;
    flex-wrap: wrap;
  }
  .ny-product .list-item .info {
    margin-bottom: 20px;
  }
  .ny-product .list-item .info .text1 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .ny-product .list-item .info .text2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .ny-product .list-item .info .bottom {
    margin-top: 30px;
  }
  .ny-product .list-item .info .bottom .mxw-inquiry {
    padding: 8px 30px;
    font-size: 12px;
    margin-right: 20px;
  }
  .ny-product .list-item .info .bottom .mxw-desc {
    font-size: 12px;
  }
}
/* ==================== 内页 - 产品中心 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: 40%;
  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: 0.05rem solid #fff;
  border-radius: 0.0833rem;
  background-color: #fff;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
  border-color: #229b92;
}
.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 #229b92;
  font-size: 0.3rem;
  line-height: 0.8333rem;
  height: 0.8333rem;
  color: #229b92;
}
@media screen and (min-width: 751px) {
  .ny-product-desc .mxw-ny-box {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 751px) {
  .ny-product-desc > .mxw-box {
    flex-wrap: wrap;
  }
  .ny-product-desc .top {
    flex-wrap: wrap;
  }
  .ny-product-desc .ny-product-image {
    width: 100%;
    margin-right: 0;
  }
  .ny-product-desc .right {
    width: 100%;
  }
  .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: 0;
  width:3rem;
  flex-shrink: 0;
  margin-right: 0.6667rem;
  --swiper-navigation-color: #229b92;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 0.6667rem;
  /* 设置按钮大小 */
}
.recommend .recommend-item {
  display: block;
  border-bottom: 0.0167rem dashed #ddd;
}
.recommend .recommend-item:first-child ~ .recommend-item {
  margin-top: 0.1667rem;
}
.recommend .recommend-image {
  width: 100%;
}
.recommend .name {
  font-size: 0.2333rem;
  text-align: center;
  padding: 0.1667rem 0.3333rem;
  color: #333;
}
.recommend .swiper-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
}
.recommend .recommend-title {
  text-align: center;
  background-color: #229b92;
  color: #fff;
  font-size: 0.2333rem;
  padding: 0.1667rem 0.25rem;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 751px) {
  .recommend .recommend-swiper {
    height: 9.3rem;
  }
  .recommend .swiper-button-prev {
    margin-right: 0.8333rem;
  }
  .recommend .swiper-button-prev,
  .recommend .swiper-button-next {
    z-index: 99;
    position: static;
    transform: rotate(90deg);
    margin-top: 0;
  }
}
@media screen and (max-width: 751px) {
  .recommend {
    margin-top: 20px;
    position: relative;
    order: 2;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-right: 0;
  }
  .recommend .recommend-title {
    width: 100%;
  }
  .recommend .recommend-swiper {
    margin-top: 20px;
  }
  .recommend .swiper-button-prev {
    left: -10px;
    right: auto;
  }
  .recommend .swiper-button-next {
    right: -10px;
    left: auto;
  }
}
/* ==================== 内页 - 推荐产品 end ==================== */
/* ==================== 内页 - 产品优势 start ==================== */
.ny-advantage {
  overflow: hidden;
}
.ny-advantage .section1 .body1 {
  background: url(../images/img33.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
}
.ny-advantage .section1 .body1 .text1,
.ny-advantage .section1 .body1 .text2 {
  font-weight: bold;
  font-size: 0.8667rem;
  line-height: 1.2;
}
.ny-advantage .section1 .body1 .text1 {
  color: #1d1d1f;
  margin-bottom: 0.25rem;
}
.ny-advantage .section1 .body1 .text2 {
  color: #229b92;
}
.ny-advantage .section1 .body1 .more {
  margin-top: 1.9167rem;
  background-color: #229b92;
  color: #fff;
  padding: 0.1667rem 0.4167rem;
  border-radius: 1.6667rem;
  display: table;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.3rem;
}
.ny-advantage .section1 .body2 .image {
  flex-shrink: 0;
  width: 5rem;
  margin-right: 0.6667rem;
}
.ny-advantage .section1 .body2 .info {
  min-width: 0;
  flex-grow: 1;
}
.ny-advantage .section1 .body2 .text1 {
  font-size: 0.4333rem;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.ny-advantage .section1 .body2 .text2 {
  font-size: 0.2667rem;
  line-height: 1.6;
  color: #515151;
}
.ny-advantage .section2 .mxw-ny-box {
  max-width: 1380px;padding-top:0.8333rem
}
.ny-advantage .section2 .body {
  display: flex;
  align-items: center;
  padding-top: 1rem;
}
.ny-advantage .section2 .image {
  width: 9.5rem;
  flex-shrink: 0;
  margin-right: 1.3333rem;
}
.ny-advantage .section2 .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ny-advantage .section2 .item .icon {
  width: 1.3333rem;
  height: 1.3333rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0rem 0.0333rem 0.45rem 0rem rgba(148, 148, 148, 0.22);
  margin-right: 0.3333rem;
}
.ny-advantage .section2 .item .icon img {
  width: 0.8333rem;
}
.ny-advantage .section2 .item .text {
  font-size: 0.3rem;
  line-height: 1.6;
  text-align: justify;
}
.ny-advantage .section3 .text1 {
  text-align: center;
  margin-bottom: 0.6667rem;
  font-size: 0.3rem;
  color: #666;
  line-height: 1.8;
}
.ny-advantage .section3 .item {
  position: relative;
}
.ny-advantage .section3 .item:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.3));
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.ny-advantage .section3 .item .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 0.4667rem;
  padding: 0.5rem;
  z-index: 9;
}
.ny-advantage .section3 .advantage-swiper {
  max-width: 20rem;
  overflow: visible;
  --swiper-navigation-color: #fff;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 0.5833rem;
  /* 设置按钮大小 */
}
@media screen and (min-width: 751px) {
  .ny-advantage .section1 .body1 {
    min-height: 13.4833rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
  }
  .ny-advantage .section1 .body2 .mxw-ny-box {
    position: relative;
  }
  .ny-advantage .section1 .body2 .mxw-ny-box:after {
    content: "";
    width: 0.0667rem;
    height: 100%;
    background-color: #f7f7f7;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
  .ny-advantage .section1 .body2 .item {
    display: flex;
    align-items: center;
    width: 48%;
    position: relative;
    z-index: 9;
  }
  .ny-advantage .section1 .body2 .item:after {
    content: "";
    display: block;
    width: 0.2667rem;
    height: 0.2667rem;
    background: #fff;
    border: 0.05rem solid #f7f7f7;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
  }
  .ny-advantage .section1 .body2 .item:first-child ~ .item {
    margin-top: -1.5rem;
  }
  .ny-advantage .section1 .body2 .item:nth-child(2n-1) {
    margin-left: 0;
    margin-right: auto;
  }
  .ny-advantage .section1 .body2 .item:nth-child(2n-1):after {
    right: -5.7%;
  }
  .ny-advantage .section1 .body2 .item:nth-child(2n) {
    margin-left: auto;
    margin-right: 0;
  }
  .ny-advantage .section1 .body2 .item:nth-child(2n):after {
    left: -5.7%;
  }
  .ny-advantage .section1 .body2 .item:nth-child(2n) .image {
    order: 2;
  }
  .ny-advantage .section1 .body2 .item:nth-child(2n) .info {
    text-align: right;
  }
  .ny-advantage .section2 .item:nth-child(2) ~ .item {
    margin-top: 0.8333rem;
  }
  .ny-advantage .section3 {
    padding-bottom: 1.6667rem;
    padding-top: 2.5rem;
  }
}
@media screen and (max-width: 1680px) {
  .ny-advantage .section1 .body2 .item:nth-child(2n-1):after {
    right: -5.4%;
  }
  .ny-advantage .section1 .body2 .item:nth-child(2n):after {
    left: -5.4%;
  }
  .ny-advantage .section2 .mxw-ny-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 751px) {
  .ny-advantage .section1 .body1 .text1 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .ny-advantage .section1 .body1 .text2 {
    font-size: 20px;
  }
  .ny-advantage .section1 .body1 .more {
    margin-top: 40px;
    font-size: 12px;
  }
  .ny-advantage .section1 .body2 .item {
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .ny-advantage .section1 .body2 .item .image {
    flex-shrink: 0;
    width: 90px;
    margin-right: 10px;
  }
  .ny-advantage .section1 .body2 .text1 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .ny-advantage .section1 .body2 .text2 {
    font-size: 12px;
    line-height: 1.8;
  }
  .ny-advantage .section2 .body {
    flex-wrap: wrap;
    padding-top: 20px;
  }
  .ny-advantage .section2 .image {
    width: 100%;
    margin-right: 0;
  }
  .ny-advantage .section2 .mxw-ny-box {
    max-width: 100%;
  }
  .ny-advantage .section2 .item:first-child ~ .item {
    margin-top: 15px;
  }
  .ny-advantage .section2 .item .icon {
    width: 50px;
    height: 50px;
  }
  .ny-advantage .section2 .item .icon img {
    width: 36px;
  }
  .ny-advantage .section2 .item .text {
    font-size: 14px;
  }
  .ny-advantage .section2 .item .text p {
    display: inline;
  }
  .ny-advantage .section3 .ny-title {
    margin-bottom: 20px;
  }
  .ny-advantage .section3 .text1 {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .ny-advantage .section3 .item .text {
    font-size: 14px;
    padding: 10px 10px;
  }
}
/* ==================== 内页 - 产品优势 end ==================== */
/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact .ny-cate {
  border-bottom: 1px solid #ececec;
}
.ny-contact .body {
  display: flex;
  align-items: center;
}
.ny-contact .body .info {
  min-width: 0;
  flex-grow: 1;
}
.ny-contact .body .info .text1 {
  font-size: 0.2667rem;
  color: #229b92;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.ny-contact .body .info .ny-title {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
.ny-contact .body .tel .item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.ny-contact .body .tel .icon {
  flex-shrink: 0;
  width: 0.6667rem;
  margin-right: 0.3333rem;
}
.ny-contact .body .tel .desc {
  font-size: 0.2333rem;
  color: #333;
}
.ny-contact .body .tel .desc p {
  margin-bottom: 0.1667rem;
}
.ny-contact .body .tel .desc strong {
  font-size: 0.5rem;
  line-height: 1;
}
.ny-contact .body .qr-group {
  background-color: #7bc7c3;
  border-radius: 0.5rem 0 0 0.5rem;
  padding-top: 0.4167rem;
  padding-bottom: 0.2333rem;
  padding-left: 1.8333rem;
  display: flex;
  align-items: flex-start;
}
.ny-contact .body .qr-group .qr {
  margin-right: 1.3333rem;
}
.ny-contact .body .qr-group .qr:last-child {
  margin-right: 0;
}
.ny-contact .body .qr-group .qr .image {
  width: 2.3333rem;
  margin-bottom: 0.1667rem;
}
.ny-contact .body .qr-group .qr .name {
  display: flex;
  align-items: center;
}
.ny-contact .body .qr-group .qr .name img {
  flex-shrink: 0;
  width: 0.5rem;
}
.ny-contact .body .qr-group .qr .name .text {
  font-size: 0.2667rem;
  line-height: 1.2;
  color: #fff;
}
.ny-contact .body .right-image {
  width: 8.6667rem;
  flex-shrink: 0;
  border-radius: 0rem 0.7833rem 0.7833rem 0.7833rem;
  overflow: hidden;
  margin-left: -0.1667rem;
}
@media screen and (min-width: 751px) {
  .ny-contact .mxw-ny-box {
    padding-top: 80px;
    padding-bottom: 110px;
  }
  .ny-contact .ny-title:after {
    width: 50%;
    left: 0;
    transform: translateX(0);
  }
}
@media screen and (max-width: 751px) {
  .ny-contact .body {
    flex-wrap: wrap;
  }
  .ny-contact .body .qr-group {
    border-radius: 10px;
    padding: 10px;
    padding-top: 15px;
    justify-content: center;
  }
  .ny-contact .body .qr-group .qr:first-child {
    margin-right: 20px;
  }
  .ny-contact .body .tel .icon {
    margin-right: 10px;
  }
  .ny-contact .body .tel .item {
    margin-bottom: 10px;
  }
  .ny-contact .body .tel .desc strong {
    font-size: 18px;
  }
  .ny-contact .body .right-image {
    margin-top: 30px;
    width: 100%;
    margin-left: 0;
    border-radius: 0;
    height: 200px;
    position: relative;
  }
  .ny-contact .body .right-image img {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
/* ==================== 内页 - 联系我们 end ==================== */
/* ==================== 通用招聘卡片 start ==================== */
.job-itembox .job-item {
  margin-bottom: 0.6667rem;
}
.job-itembox .job-item:last-child {
  margin-bottom: 0;
}
.job-itembox .job-item .head {
  cursor: pointer;
  background-image: linear-gradient(90deg, #229b92 9%, #57bba7 100%);
  height: 1.05rem;
  line-height: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.5rem;
  padding-right: 0.8333rem;
}
.job-itembox .job-item .head.active:after {
  transform: rotateX(-180deg);
}
.job-itembox .job-item .head:after {
  content: "";
  display: block;
  background: url(../images/img90.png) no-repeat center;
  background-size: 100%;
  width: 0.5rem;
  height: 0.5rem;
  transition: all 0.4s;
}
.job-itembox .job-item .head .text {
  font-size: 0.3333rem;
  color: #fff;
  font-weight: bold;
}
.job-itembox .job-item .body {
  display: none;
  border: 1px solid #d7d7d7;
}
.job-itembox .job-item .itembox {
  display: block;
 font-size: 16px;
  line-height: 1.75;
  border-top: 0;
  padding: 0.6667rem 0.5833rem;
}
.job-itembox .job-item .item {
  position: relative;
}
.job-itembox .job-item .item:after {
  content: "";
  display: block;
  width: 1px;
  height: 3.1667rem;
  background: #d5d5d5;
  position: absolute;
  right: 0;
  top: 0;
}
.job-itembox .job-item .item:last-child:after {
  display: none;
}
.job-itembox .job-item .item p {
  font-size: 0.3rem;
}
.job-itembox .job-item .item.item1 {
  width: 4.3333rem;
  flex-shrink: 0;
}
.job-itembox .job-item .item.item1 .text {
  font-size: 0.3333rem;
  line-height: 1.2;
  margin-bottom: 0.6667rem;
}
.job-itembox .job-item .item.item1 .text02 {
  margin-bottom: 0.8333rem;
}
.job-itembox .job-item .item.item2 {
  width: 9.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.job-itembox .job-item .item.item3 {
  flex-grow: 1;
  min-width: 0;
  padding-left: 1rem;
}
.job-itembox .job-item .item .item-head {
  font-size: 0.3333rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.job-itembox .job-item .desc {
  font-size: 0.3333rem;
  color: #333;
  line-height: 2;
}
.job-itembox .job-item .mxw-btn {
  display: block;
  font-size: 0.3rem;
  width: 2.7333rem;
  text-align: center;
  height: 0.7333rem;
  line-height: 0.7333rem;
  background: #fff;
  color: #00947e;
  border: solid 0.0167rem #00947e;
}
@media screen and (min-width: 751px) {
  .ny-job .mxw-ny-box {
    padding-top: 0px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 751px) {
  .job-itembox .job-item {
    margin-bottom: 15px;
  }
  .job-itembox .job-item .head {
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
  }
  .job-itembox .job-item .head .text {
    font-size: 15px;
  }
  .job-itembox .job-item .head:after {
    width: 15px;
    height: 15px;
  }
  .job-itembox .job-item .itembox {
    flex-wrap: wrap;
    padding: 20px;
  }
  .job-itembox .job-item .item {
    width: 100%!important;
  }
  .job-itembox .job-item .item::after {
    display: none;
  }
  .job-itembox .job-item .item.item1 .text {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .job-itembox .job-item .item.item2 {
    padding: 0;
    margin-bottom: 30px;
  }
  .job-itembox .job-item .item.item3 {
    padding: 0;
  }
  .job-itembox .job-item .item .item-head {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .job-itembox .job-item .item p {
    font-size: 14px;
  }
  .job-itembox .job-item .mxw-btn {
    width: 90%;
    font-size: 14px;
    height: auto;
    line-height: inherit;
    padding: 8px 20px;
    margin: 0 auto 20px;
  }
  .ny-job .section03 {
    padding-bottom: 0;
  }
}
/* ==================== 通用招聘卡片 end ==================== */
/* ==================== 内页 - 新闻列表2 start ==================== */
.ny-news2 .item {
  display: block;
  padding: 0.5rem;
  transition: all 0.4s;
  border: 0.0167rem solid #dedede;
  box-shadow: 0rem 0rem 0rem 0rem rgba(0, 0, 0, 0.14);
  margin-bottom: 0.6667rem;
}
.ny-news2 .item:hover {
  box-shadow: 0rem 0rem 0.1667rem 0rem rgba(0, 0, 0, 0.14);
}
.ny-news2 .item:hover .title {
  color: #229b92;
}
.ny-news2 .item .head {
  display: flex;
  align-items: center;
  color: #888;
  padding-bottom: 0.1667rem;
  border-bottom: 0.0167rem solid #888;
  margin-bottom: 0.3333rem;
}
.ny-news2 .item .title {
  flex-grow: 1;
  font-size: 0.4rem;
  line-height: 1.2;
}
.ny-news2 .item .time {
  font-size: 0.2667rem;
  line-height: 1.2;
  flex-shrink: 0;
}
.ny-news2 .item .desc {
  font-size: 0.2667rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.ny-news2 .item .more {
  width: 2.0833rem;
  height: 0.6rem;
  line-height: 0.6rem;
  background-color: #fff;
  border: solid 0.0167rem #dedede;
  display: block;
  text-align: center;
  font-size: 0.2rem;
  color: #888888;
}
@media screen and (min-width: 751px) {
  .ny-news2 .mxw-ny-box {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 751px) {
  .ny-news2 .item {
    padding: 15px;
    margin-bottom: 20px;
  }
  .ny-news2 .item .head {
    margin-bottom: 10px;
  }
  .ny-news2 .item .title {
    font-size: 16px;
  }
  .ny-news2 .item .time {
    font-size: 12px;
  }
  .ny-news2 .item .desc {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.8em;
    height: 3.6em;
    margin-bottom: 10px;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: inherit;
  }
  .ny-news2 .item .more {
    width: 100%;
    padding: 8px 20px;
    font-size: 12px;
    height: auto;
    line-height: inherit;
  }
}
/* ==================== 内页 - 新闻列表2 end ==================== */
/* ==================== 内页 - 留言板 start ==================== */
@media screen and (min-width: 751px) {
  .ny-message .mxw-ny-box {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}
/* ==================== 内页 - 留言板 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  background-color: #f5f5f7;
}
footer .mxw-box {
  max-width: 17.5rem;
  padding-top: 0.6667rem;
  padding-bottom: 0.5rem;
}
footer .foot-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6667rem;
}
footer .foot-nav > a {
  font-size: 0.25rem;
  color: #333;
  line-height: 1.2;
  padding-left: 0.8333rem;
  padding-right: 0.8333rem;
  position: relative;
}
footer .foot-nav > a:after {
  content: "";
  display: block;
  width: 0.0167rem;
  height: 100%;
  background-color: #c4c4c4;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
footer .foot-nav > a:first-child {
  padding-left: 0;
}
footer .foot-nav > a:last-child {
  padding-right: 0;
}
footer .foot-nav > a:last-child::after {
  display: none;
}
footer .foot-contact {
  display: flex;
  align-items: center;
  padding-bottom: 0.25rem;
  margin-bottom: 0.25rem;
  border-bottom: 0.0167rem solid #ddd;
}
footer .foot-contact .left {
  font-size: 0.2333rem;
  color: #787878;
  min-width: 0;
  flex-grow: 1;
}
footer .foot-contact .right {
  flex-shrink: 0;
  position: relative;
}
footer .foot-contact .right .icon {
  width: 0.5rem;
  cursor: pointer;
}
footer .foot-contact .float-contact {
  position: absolute;
  left: 50%;
  bottom: 100%;
  background-color: #fff;
  border-radius: 1.6667rem;
  width: 0.6667rem;
  padding-top: 0.1667rem;
  padding-bottom: 0.1667rem;
  transform: translate(-50%, -0.3333rem);
  box-shadow: 0 0 0.6333rem 0rem #dbdbdb;
  display: none;
}
footer .foot-contact .float-contact:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-width: 0.1rem;
  border-style: solid;
  border-color: #fff transparent transparent #fff;
  position: absolute;
  bottom: -0.1667rem;
  left: 0.25rem;
}
footer .foot-contact .float-contact .item {
  width: 0.5rem;
  height: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  position: relative;
}
footer .foot-contact .float-contact .item:hover .text,
footer .foot-contact .float-contact .item:hover .qr {
  visibility: visible;
}
footer .foot-contact .float-contact .item:hover .text {
  transform: translate(0.3333rem, -50%);
  opacity: 1;
}
footer .foot-contact .float-contact .item:hover .qr {
  opacity: 1;
}
footer .foot-contact .float-contact .item:last-child {
  margin-bottom: 0;
}
footer .foot-contact .float-contact .item .text {
  background-color: #fff;
  border-radius: 1.6667rem;
  font-size: 0.2333rem;
  color: #333;
  line-height: 1.2;
  padding: 0.1667rem 0.3333rem;
  white-space: nowrap;
}
footer .foot-contact .float-contact .item .text,
footer .foot-contact .float-contact .item .qr {
  opacity: 0;
  transition: all 0.4s;
  box-shadow: 0 0 0.6333rem 0rem #dbdbdb;
  transform: translate(-100%, -50%);
  position: absolute;
  left: 100%;
  top: 50%;
  visibility: hidden;
}
footer .foot-contact .float-contact .item .qr {
  width: 2rem;
  padding: 0.1667rem;
  background-color: #fff;
  transform: translate(0.3333rem, -50%);
}
footer .mxw-copyright {
  padding-top: 0.3rem;
  color: #787878;
  font-size: 0.2333rem;
  line-height: 1.8;
}
footer .mxw-copyright span {
  color: #229b92;
}
@media screen and (max-width: 751px) {
  footer .mxw-box {
    padding: 30px 20px;
    max-width: 100%;
  }
  footer .foot-contact .left {
    line-height: 1.6;
  }
  footer .foot-contact .right {
    display: none;
  }
  footer .mxw-copyright {
    padding-top: 0;
    text-align: center;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 1500px;
  margin: 0 auto;
  font-size: 0;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
}
.mxw-box a:hover {
  color: #229b92;
}
/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1580px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px !important;
  }
}
@media screen and (max-width: 1580px) {
  .mxw-box {
    max-width: 90%;
  }
}
@media screen and (min-width: 751px) {
  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }
  .mxw-ny-box {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-ny-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-ny-box {
    max-width: 100%;
    font-size: 0;
    padding: 30px 20px;
  }
}
@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;
  }
}
/* ==================== 页面自定义样式 end ==================== */
/* ==================== 动画 start ==================== */
@keyframes arrowAnimate {
  0% {
    transform: translate(0rem, 0rem);
  }
  50% {
    transform: translate(0rem, -0.1667rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
/* ==================== 动画 end ==================== */
/* ==================== 内页 - 案例 start ==================== */
.ny-cases2 .itembox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.ny-cases2 .item {
  overflow: hidden;
  display: block;
  position: relative;
}
.ny-cases2 .info {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-0.8667rem);
  width: 100%;
  transition: transform 0.4s;
}
.ny-cases2 .info .title {
  background-color: #fff;
  height: 0.8667rem;
  display: flex;
  align-items: center;
  border-bottom: 0.0833rem solid #229b92;
  font-size: 0.26rem;
  color: #333;
  text-align: center;
  width: 100%;
  justify-content: center;
}
.ny-cases2 .info .desc {
  font-size: 0.21rem;
  color: #fff;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 0.3333rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.ny-cases2 .info .mxw-more {
  width: 2rem;
  height: 0.5rem;
  border: 1px solid #fff;
  display: block;
  margin: 0 auto;
  line-height: 0.5rem;
  font-size: 0.2rem;
  text-align: center;
  color: #fff;
}
.ny-cases2 .info .mxw-more:hover {
  color: #fff;
}
@media screen and (min-width: 751px) {
  .ny-cases2 .mxw-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
  }
  .ny-cases2 .item:hover .info {
    padding: 0.3333rem 0.6667rem 0.5rem;
    transform: translateY(-100%);
    background-color: rgba(34,155,145,0.7);
  }
  .ny-cases2 .item:hover .info .title {
    border-bottom: 0;
    height: auto;
    background-color: transparent;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0.25rem;
  }
  .ny-cases2 .item:hover .info .desc {
    opacity: 1;
  }
}
@media screen and (max-width: 751px) {
  .ny-cases2 .info {
    transform: translateY(0);
    position: static;
  }
  .ny-cases2 .info .title {
    display: block;width: 100%;
    height: auto;
    line-height: 1.2;
    padding: 8px 10px;
    font-size: 12px;
  }
  .ny-cases2 .info .desc,
  .ny-cases2 .info .mxw-more {
    display: none;
  }
}
/* ==================== 内页 - 案例 end ==================== */
