@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: #e47e29;
  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: #e47e29;
  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: #e47e29;
  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: #e47e29;
}
.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: #e47e29;
  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: #e47e29;
}
.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: #e47e29;
  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 #e47e29;
}
@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;
  width: 0.6667rem;
  height: 0.6667rem;
  line-height: 0.6667rem;
}
.Pagination a:hover,
.Pagination .current {
  color: white!important;
  background: #e47e29;
  border-color: #e47e29;
}
@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 ==================== */
/* 标签页 */
.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: #e47e29;
  color: #fff;
}
@media screen and (max-width: 751px) {
  .mxw-tabs .mxw-tabs-header {
    margin-bottom: 20px;
  }
  .mxw-tabs .mxw-tabs-item {
    font-size: 14px;
    padding: 0 20px;
    margin-right: 10px;
  }
  .mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
  }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 头部 start ==================== */
header {
  width: 100%;
  z-index: 99;
  transition: all 0.4s;
}
header .mxw-box {
  max-width: 1500px;
}
header .pc-nav .welcome {
  background: #333;
}
header .pc-nav .welcome .mxw-box {
  font-size: 13px;
  color: #fff;
  line-height: 40px;
  height: 40px;
}
header .pc-nav .welcome .mxw-box a:hover {
  color: #e47e29;
}
header .pc-nav .welcome .left a {
  font-weight: bold;
  color: #e47e29;
}
header .pc-nav .welcome .right a:after {
  content: "|";
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: inherit;
  color: #767676;
}
header .pc-nav .welcome .right a:last-child:after {
  display: none;
}
header .pc-nav .top {
  padding-top: 15px;
  padding-bottom: 15px;
}
header .pc-nav .top .logo {
  flex-shrink: 0;
}
header .pc-nav .top .logo img {
  height: 92px;
}
header .pc-nav .top .tel {
  display: flex;
  align-items: center;
}
header .pc-nav .top .tel .icon {
  width: 40px;
  margin-right: 20px;
}
header .pc-nav .top .tel .info p {
  font-size: 20px;
  line-height: 1.6;
}
header .pc-nav .top .tel .info strong {
  color: #e47e29;
}
header .pc-nav .bottom {
  background: #f6f6f6;
  border-bottom: 2px solid #e47e29;
}
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;
}
header .pc-menu > li:after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #c8c8c8;
}
header .pc-menu > li:last-child:after {
  display: none;
}
header .pc-menu > li:hover > a {
  color: #fff !important;
  background-color: #e47e29;
}
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: 18px;
  color: #333;
  line-height: 1.2;
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  transition: all 0.4s;
  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 .mxw-box {
    max-width: 96%;
  }
  header .pc-nav .top .logo img {
    height: 80px;
  }
  header .pc-menu li a {
    height: 50px;
    font-size: 16px;
  }
}
/* ==================== 头部 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: 55px;
  }
  .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 ==================== */
.mxw-banner {
  background: #000;
  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: #e47e29;
}
.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;
  /* 设置按钮大小 */
}
@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 {
  text-align: center;
  overflow: hidden;
  margin-bottom: 0.6667rem;
}
.mxw-title .text1 .text-block {
  font-size: 0.6333rem;
  color: #333;
  line-height: 1.2;
  display: inline-block;
  position: relative;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.mxw-title .text1 .text-block:before,
.mxw-title .text1 .text-block:after {
  content: "";
  display: block;
  background: url(../images/img02.png) no-repeat center;
  background-size: 100%;
  width: 0.6667rem;
  height: 0.6667rem;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.mxw-title .text1 .text-block:before {
  left: -0.6667rem;
  transform: translateY(-50%) rotateY(180deg);
}
.mxw-title .text1 .text-block:after {
  right: -0.6667rem;
}
.mxw-title .line {
  width: 9rem;
  height: 1px;
  background-color: #dfdfdf;
  position: relative;
  margin: 0 auto;
  margin-top: 0.4167rem;
}
.mxw-title .line:after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: #e47e29;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
}
.mxw-title .text2 {
  margin-top: 0.3333rem;
  line-height: 1.2;
  color: #666;
  font-size: 0.3rem;
}
@media screen and (max-width: 751px) {
  .mxw-title {
    margin-bottom: 30px;
  }
  .mxw-title .text1 .text-block {
    font-size: 22px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .mxw-title .text1 .text-block:before,
  .mxw-title .text1 .text-block:after {
    width: 20px;
    height: 20px;
  }
  .mxw-title .text1 .text-block:before {
    left: -20px;
  }
  .mxw-title .text1 .text-block:after {
    right: -20px;
  }
  .mxw-title .line {
    width: 80%;
    margin-top: 10px;
  }
  .mxw-title .line:after {
    width: 20%;
  }
  .mxw-title .text2 {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 服务范围 start ==================== */
.mxw-server .itembox {
  align-items: stretch;
}
.mxw-server .item {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.mxw-server .item .image {
  width: 100%;
}
.mxw-server .item .info {
  background-color: #f9f9f9;
  border: solid 0.0167rem #e1e1e1;
  padding: 0.5rem;
  text-align: center;
  flex-grow: 1;
  width: 100%;
}
.mxw-server .item .title {
  font-size: 0.4rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.4167rem;
}
.mxw-server .item .desc {
  font-size: 0.2667rem;
  color: #8d8d8d;
  line-height: 1.8;
  text-align: justify;
}
.mxw-server .mxw-more {
  margin-top: 0.6667rem;
}
@media screen and (min-width: 751px) {
  .mxw-server .mxw-box {
    padding-top: 1.3333rem;
    padding-bottom: 1.1667rem;
    max-width: 1610px;
  }
  .mxw-server .item {
    transition: all 0.4s;
  }
  .mxw-server .item .title {
    transition: color 0.4s;
  }
  .mxw-server .item:hover {
    transform: translateY(-15px);
  }
  .mxw-server .item:hover .title {
    color: #e47e29;
  }
}
@media screen and (max-width: 1700px) {
  .mxw-server .mxw-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-server .mxw-box {
    max-width: 100%;
  }
  .mxw-server .item .title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .mxw-server .item .info {
    padding: 15px;
  }
  .mxw-server .item .desc {
    font-size: 12px;
    line-height: 1.5;
  }
  .mxw-server .mxw-more {
    margin-top: 20px;
  }
}
/* ==================== 服务范围 end ==================== */
/* ==================== 通用更多按钮 start ==================== */
.mxw-more {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 166px;
  font-size: 18px;
  color: #333;
  text-align: center;
  height: 46px;
  line-height: 46px;
  border-radius: 100px;
  transition: all 0.4s;
  border: solid 1px #afafaf;
}
.mxw-more:hover {
  width: 200px;
  border-color: #e47e29;
  box-shadow: 0 0 4px #e47e29;
  background-color: #e47e29;
  color: #fff !important;
}
@media screen and (max-width: 751px) {
  .mxw-more {
    font-size: 12px;
    width: 50%;
    height: 36px;
    line-height: 36px;
  }
}
/* ==================== 通用更多按钮 end ==================== */
/* ==================== 解决方案 start ==================== */
.mxw-solution {
  background: url(../images/img41.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
}
.mxw-solution .text1,
.mxw-solution .text2 {
  line-height: 1.2;
  margin-bottom: 0.3333rem;
  color: #fff;
  text-align: center;
}
.mxw-solution .text1 {
  font-size: 0.4333rem;
}
.mxw-solution .text2 {
  font-size: 0.6rem;
}
.mxw-solution .arrow {
  animation: arrowAnimate 2s infinite;
  width: 0.5rem;
  display: block;
  margin: 0 auto 0.75rem;
}
.mxw-solution .item {
  display: block;
}
.mxw-solution .item .info {
  background-color: #fff;
  padding: 0.6667rem;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}
.mxw-solution .item .title {
  font-size: 0.4rem;
  color: #333;
  line-height: 1.2;
}
.mxw-solution .item .title:after {
  content: "";
  display: block;
  width: 1rem;
  height: 0.0667rem;
  background-color: #e47e29;
  margin-top: 0.3333rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.3333rem;
}
.mxw-solution .item .desc {
  font-size: 0.2667rem;
  color: #666666;
  line-height: 1.8;
}
.mxw-solution .item .mxw-more {
  margin-top: 20px;
  font-size: 14px;
  width: 150px;
  height: 40px;
  line-height: 40px;
  margin-bottom: -60px;
  transform: translateY(60px);
  border-color: #e47e29;
  background-color: #e47e29;
  color: #fff;
}
@media screen and (min-width: 751px) {
  .mxw-solution {
    background-attachment: fixed;
  }
  .mxw-solution .mxw-box {
    padding-top: 0.8333rem;
    padding-bottom: 1rem;
    max-width: 24rem;
  }
  .mxw-solution .itembox {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .mxw-solution .item {
    width: 30%;
    transition: all 0.4s;
  }
  .mxw-solution .item:hover {
    margin-top: -0.1667rem;
    box-shadow: 0 0 0.1333rem #e47e29;
  }
  .mxw-solution .item:hover .info {
    margin-top: -50px;
  }
  .mxw-solution .item:hover .mxw-more {
    margin-bottom: 0px;
    transform: translateY(0px);
  }
  .mxw-solution .item:nth-child(3n-1) {
    margin-left: 5%;
    margin-right: 5%;
  }
}
@media screen and (max-width: 1700px) {
  .mxw-solution .mxw-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-solution .mxw-box {
    max-width: 100%;
  }
  .mxw-solution .text1,
  .mxw-solution .text2 {
    margin-bottom: 10px;
  }
  .mxw-solution .text1 {
    font-size: 16px;
  }
  .mxw-solution .text2 {
    font-size: 18px;
  }
  .mxw-solution .arrow {
    margin-bottom: 30px;
    width: 20px;
  }
  .mxw-solution .item {
    width: 100%;
    margin-bottom: 20px;
  }
  .mxw-solution .item:last-child {
    margin-bottom: 0;
  }
  .mxw-solution .item .info {
    padding: 20px 15px;
  }
  .mxw-solution .item .title {
    font-size: 18px;
    font-weight: bold;
  }
  .mxw-solution .item .title:after {
    margin-top: 15px;
    margin-bottom: 15px;
    height: 2px;
    width: 40px;
  }
  .mxw-solution .item .desc {
    font-size: 14px;
    line-height: 1.6;
  }
}
/* ==================== 解决方案 end ==================== */
/* ==================== 项目案例 start ==================== */
.mxw-cases .mxw-tabs-header {
  position: relative;
}
.mxw-cases .mxw-tabs-header:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0167rem;
  background-color: #6f6f6f;
  position: absolute;
  bottom: 0.0667rem;
  left: 0;
  opacity: 0.2;
}
.mxw-cases .mxw-tabs-wrap {
  min-width: 25rem;
}
.mxw-cases .mxw-tabs-item {
  flex-grow: 1;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  background: none;
  position: relative;
  z-index: 9;
  white-space: inherit;
}
.mxw-cases .mxw-tabs-item:hover,
.mxw-cases .mxw-tabs-item.active {
  background: none;
}
.mxw-cases .mxw-tabs-item:hover .icon img,
.mxw-cases .mxw-tabs-item.active .icon img {
  transform: translateY(-50%);
}
.mxw-cases .mxw-tabs-item:hover .name,
.mxw-cases .mxw-tabs-item.active .name {
  color: #e47e29;
}
.mxw-cases .mxw-tabs-item:hover .name:after,
.mxw-cases .mxw-tabs-item.active .name:after {
  background-color: #e47e29;
}
.mxw-cases .mxw-tabs-item .icon {
  width: 1.1667rem;
  height: 1.1667rem;
  overflow: hidden;
  margin-bottom: 0.1667rem;
  margin-left: auto;
  margin-right: auto;
}
.mxw-cases .mxw-tabs-item .name {
  color: #666;
  font-size: 0.3rem;
  line-height: 1.2;
}
.mxw-cases .mxw-tabs-item .name:after {
  content: "";
  display: block;
  width: 0.1667rem;
  height: 0.1667rem;
  border-radius: 100%;
  background-color: #666666;
  margin-top: 0.3333rem;
  margin-left: auto;
  margin-right: auto;
}
.mxw-cases .item {
  display: block;
  position: relative;
}
.mxw-cases .item .name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9;
  font-size: 0.3rem;
  height: 0.8333rem;
  line-height: 0.8333rem;
  text-align: center;
  padding: 0 0.1667rem;
}
.mxw-cases .mxw-more {
  margin-top: 0.8333rem;
}
@media screen and (min-width: 751px) {
  .mxw-cases {
    padding-top: 1.3333rem;
    padding-bottom: 0.8333rem;
  }
}
@media screen and (max-width: 1700px) {
  .mxw-cases .mxw-tabs-wrap {
    max-width: 90%;
    min-width: inherit;
    width: 100%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-cases .mxw-tabs-header:after {
    bottom: 2px;
  }
  .mxw-cases .mxw-tabs-item {
    padding-left: 5px;
    padding-right: 5px;
  }
  .mxw-cases .mxw-tabs-item .icon {
    width: 35px;
    height: 35px;
    margin-bottom: 5px;
  }
  .mxw-cases .mxw-tabs-item .name {
    font-size: 12px;
    max-width: 70px;
    line-height: 1.4;
  }
  .mxw-cases .mxw-tabs-item .name:after {
    width: 6px;
    height: 6px;
    margin-top: 15px;
  }
  .mxw-cases .cases-tabs > .mxw-box {
    padding-top: 0;
  }
  .mxw-cases .item .name {
    font-size: 13px;
    height: 30px;
    line-height: 30px;
  }
  .mxw-cases .mxw-more {
    margin-top: 20px;
  }
}
/* ==================== 项目案例 end ==================== */
/* ==================== 优势 start ==================== */
.mxw-advantage {
  background: url(../images/img24.jpg) no-repeat center;
  background-size: cover;
}
.mxw-advantage .mxw-title .text1 .text-block {
  color: #fff;
}
.mxw-advantage .text-group {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3333rem;
}
.mxw-advantage .text-group .text.color {
  background-color: #e47e29;
  color: #fff;
}
.mxw-advantage .text-group .text {
  color: #211f36;
  padding: 0.1667rem 0.6667rem;
  font-size: 0.4rem;
  line-height: 1.2;
  background-color: #fff;
}
.mxw-advantage .text-group .text1 {
  margin-right: 0.1333rem;
  border-radius: 0.0667rem 0 0 0.0667rem;
}
.mxw-advantage .text-group .text2 {
  border-radius: 0 0.0667rem 0.0667rem 0;
}
.mxw-advantage .advantage-swiper {
  max-width: 14.45rem;
  margin: 0 auto;
}
.mxw-advantage .advantage-swiper .swiper-slide {
  overflow: hidden;
}
.mxw-advantage .advantage-swiper .swiper-slide-shadow-bottom,
.mxw-advantage .advantage-swiper .swiper-slide-shadow-left,
.mxw-advantage .advantage-swiper .swiper-slide-shadow-right,
.mxw-advantage .advantage-swiper .swiper-slide-shadow-top {
  background-image: inherit!important;
}
.mxw-advantage .item {
  display: flex;
  align-items: center;
}
.mxw-advantage .item .icon {
  width: 1.3333rem;
  flex-shrink: 0;
}
.mxw-advantage .item .info {
  min-width: 0;
  flex-grow: 1;
}
.mxw-advantage .item .title {
  font-size: 0.4rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.mxw-advantage .item .desc {
  font-size: 0.2667rem;
  color: #b2b2b2;
  line-height: 1.6;
  text-align: justify;
}
@media screen and (min-width: 751px) {
  .mxw-advantage .mxw-box {
    padding-top: 1.3333rem;
  }
  .mxw-advantage .body {
    position: relative;
  }
  .mxw-advantage .item {
    position: absolute;
    align-items: flex-start;
    z-index: 9;
  }
  .mxw-advantage .item .info {
    max-width: 5.8333rem;
  }
  .mxw-advantage .item.item1 {
    left: 3%;
    top: 10%;
    text-align: right;
  }
  .mxw-advantage .item.item1 .icon {
    order: 2;
    margin-left: 0.5rem;
  }
  .mxw-advantage .item.item1 .desc {
    text-align: right;
  }
  .mxw-advantage .item.item2 {
    left: -7%;
    top: 50%;
    text-align: right;
  }
  .mxw-advantage .item.item2 .icon {
    order: 2;
    margin-left: 0.5rem;
  }
  .mxw-advantage .item.item2 .desc {
    text-align: right;
  }
  .mxw-advantage .item.item3 {
    right: 3%;
    top: 10%;
  }
  .mxw-advantage .item.item3 .icon {
    margin-right: 0.5rem;
  }
  .mxw-advantage .item.item4 {
    right: -7%;
    top: 50%;
  }
  .mxw-advantage .item.item4 .icon {
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 1580px) {
  .mxw-advantage .advantage-swiper {
    max-width: 50%;
  }
  .mxw-advantage .item.item2 {
    left: -4%;
  }
  .mxw-advantage .item.item4 {
    right: -4%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-advantage > .mxw-box {
    padding-bottom: 0;
  }
  .mxw-advantage .text-group {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .mxw-advantage .text-group .text {
    width: 100%;
    margin-right: 0;
    font-size: 12px;
    padding: 10px 10px;
    border-radius: 4px;
    text-align: center;
  }
  .mxw-advantage .text-group .text.text1 {
    margin-bottom: 5px;
  }
  .mxw-advantage .item {
    margin-bottom: 20px;
  }
  .mxw-advantage .item .icon {
    margin-right: 15px;
    width: 60px;
  }
  .mxw-advantage .item .title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .mxw-advantage .item .desc {
    font-size: 12px;
  }
  .mxw-advantage .advantage-swiper {
    max-width: 100%;
  }
}
/* ==================== 优势 end ==================== */
/* ==================== 关于我们 start ==================== */
.mxw-about {
  position: relative;
}
.mxw-about:after {
  content: "";
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  background: #383737;
  height: 4.6667rem;
}
.mxw-about > .mxw-box {
  position: relative;
  z-index: 9;
}
.mxw-about .body {
  box-shadow: 0 0 0.2rem -0.1333rem #e47e29;
  background: #fff;
  padding: 0.6667rem 0.5rem;
}
.mxw-about .image {
  width: 45%;
  flex-shrink: 0;
  margin-right: 0.9333rem;
  box-shadow: 0.1167rem 0.2rem 0.35rem 0rem rgba(3, 0, 0, 0.28);
}
.mxw-about .info {
  min-width: 0;
  flex-grow: 1;
}
.mxw-about .desc {
  font-size: 0.2667rem;
  color: #333;
  line-height: 2em;
  margin-bottom: 0.5rem;
}
.mxw-about .itembox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.mxw-about .item {
  text-align: center;
}
.mxw-about .item:hover .icon img {
  transform: translateY(0);
}
.mxw-about .item .icon {
  width: 1.5rem;
  height: 1.5rem;
  overflow: hidden;
  margin-bottom: 0.1667rem;
  margin-left: auto;
  margin-right: auto;
}
.mxw-about .item .icon img {
  transform: translateY(-50%);
}
.mxw-about .item .name {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
}
.mxw-about .itembox2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 1rem;
}
.mxw-about .item2 {
  text-align: center;
}
.mxw-about .item2 .number span {
  font-size: 1.1rem;
  color: #e47e29;
  line-height: 1;
  display: inline-block;
}
.mxw-about .item2 .number em {
  font-size: 0.5rem;
  color: #e47e29;
  font-style: inherit;
  height: 0.5rem;
  display: inline-block;
  vertical-align: middle;
  line-height: 0.5rem;
  margin-top: -1.5rem;
}
.mxw-about .item2 .number i {
  font-style: inherit;
  width: 0.5rem;
  height: 0.5rem;
  line-height: 0.5rem;
  border-radius: 100%;
  background: #fff;
  color: #505050;
  display: inline-block;
  font-size: 0.3rem;
  margin-left: 0.0833rem;
}
.mxw-about .item2 .text {
  font-size: 0.2833rem;
  color: #fff;
  margin-top: 0.2667rem;
}
@media screen and (min-width: 751px) {
  .mxw-about .mxw-box {
    padding-top: 1.1667rem;
    padding-bottom: 1rem;
  }
  .mxw-about .body {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 751px) {
  .mxw-about .image {
    width: 100%;
    margin-bottom: 20px;
  }
  .mxw-about .body {
    padding: 20px 10px;
    box-shadow: 0 0 8px -5px #e47e29;
  }
  .mxw-about .item .icon {
    width: 50px;
    height: 50px;
  }
  .mxw-about .item .name {
    font-size: 12px;
  }
  .mxw-about .itembox2 {
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .mxw-about .item2 {
    width: 50%;
  }
  .mxw-about .item2:nth-child(2) ~ .item2 {
    margin-top: 20px;
  }
  .mxw-about .item2 .number span {
    font-size: 30px;
  }
  .mxw-about .item2 .number em {
    font-size: 20px;
    height: 20px;
    line-height: 20px;
    margin-top: -50px;
  }
  .mxw-about .item2 .number i {
    font-size: 12px;
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
  .mxw-about .item2 .text {
    margin-top: 5px;
  }
}
/* ==================== 关于我们 end ==================== */
/* ==================== 荣誉资质 start ==================== */
.mxw-honor {
  background: url(../images/img36.jpg) no-repeat center;
  background-size: cover;
}
.mxw-honor .body {
  padding-top: 0.8333rem;
  padding-bottom: 0.5rem;
  padding-left: 1.3333rem;
  padding-right: 1.3333rem;
  background-color: #fff;
  position: relative;
}
.mxw-honor .mxw-swiper-prev,
.mxw-honor .mxw-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/img37.png) no-repeat center;
  width: 0.6667rem;
  height: 0.6667rem;
  background-size: 100%;
  cursor: pointer;
}
.mxw-honor .mxw-swiper-prev {
  left: -1.3333rem;
  transform: rotateY(180deg);
}
.mxw-honor .mxw-swiper-next {
  right: -1.3333rem;
}
.mxw-honor .item {
  display: block;
}
.mxw-honor .item:hover .name {
  color: #e47e29;
}
.mxw-honor .item img {
  margin-bottom: 0.5rem;
}
.mxw-honor .item .name {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .mxw-honor .mxw-box {
    padding-top: 1.25rem;
    padding-bottom: 0.6667rem;
    max-width: 1440px;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-honor .body {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 94%;
    margin: 0 auto;
  }
  .mxw-honor .mxw-swiper-prev {
    left: -50px;
  }
  .mxw-honor .mxw-swiper-next {
    right: -50px;
  }
}
@media screen and (max-width: 1520px) {
  .mxw-honor > .mxw-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-honor > .mxw-box {
    max-width: 100%;
  }
  .mxw-honor .body {
    max-width: 100%;
    padding: 20px;
  }
  .mxw-honor .item img {
    margin-bottom: 15px;
  }
  .mxw-honor .item .name {
    font-size: 12px;
  }
  .mxw-honor .mxw-swiper-prev,
  .mxw-honor .mxw-swiper-next {
    display: none;
  }
}
/* ==================== 荣誉资质 end ==================== */
/* ==================== 新闻资讯 start ==================== */
.mxw-news {
  background-color: #fff;
}
.mxw-news .mxw-tabs-header {
  margin-bottom: 0.6667rem;
}
.mxw-news .mxw-tabs-item {
  height: 0.8333rem;
  line-height: 0.8333rem;
  margin-right: 0.4333rem;
  border-radius: 100px;
}
.mxw-news .mxw-tabs-item:last-child {
  margin-right: 0;
}
.mxw-news .left {
  display: flex;
  flex-flow: column;
}
.mxw-news .left:hover .title {
  color: #e47e29;
}
.mxw-news .left .info {
  background: #f5f5f5;
  padding-top: 0.5rem;
  padding-left: 0.6667rem;
  padding-right: 0.6667rem;
  padding-bottom: 0.5rem;
  flex-grow: 1;
  width: 100%;
}
.mxw-news .left .title {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
  font-weight: bold;
  translate: all 0.4s;
}
.mxw-news .left .desc {
  font-size: 0.25rem;
  color: #666;
  line-height: 1.8;
  height: 3.6em;
  text-align: justify;
  margin-bottom: 0.5rem;
}
.mxw-news .left .more {
  font-size: 0.2333rem;
  color: #999;
  border-left: 1px solid;
  padding-left: 0.25rem;
}
.mxw-news .right {
  min-width: 0;
  flex-grow: 1;
}
.mxw-news .right .item {
  display: block;
  position: relative;
  transition: all 0.4s;
}
.mxw-news .right .info {
  padding-top: 10px;
  padding-bottom: 10px;
  min-width: 0;
  flex-grow: 1;
}
.mxw-news .right .title,
.mxw-news .right .desc,
.mxw-news .right .time {
  position: relative;
  z-index: 3;
  transition: all 0.4s;
}
.mxw-news .right .title {
  font-size: 0.3rem;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
}
.mxw-news .right .desc {
  font-size: 0.2333rem;
  color: #999;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.mxw-news .right .time {
  font-size: 0.2333rem;
  color: #999;
  line-height: 1.2;
}
.mxw-news .right .time:after {
  content: "→";
  height: 0.2333rem;
  line-height: 0.2333rem;
  display: inline-block;
  border-left: 1px solid;
  padding-left: 0.1667rem;
  color: #999;
  margin-left: 15px;
}
@media screen and (min-width: 751px) {
  .mxw-news > .mxw-box {
    max-width: 1440px;
  }
  .mxw-news .body {
    align-items: stretch;
    display: flex;
  }
  .mxw-news .mxw-box {
    padding-top: 1.1667rem;
    padding-bottom: 0.5rem;
  }
  .mxw-news .mxw-tabs-item {
    min-width: 180px;
  }
  .mxw-news .left {
    width: 40%;
    flex-shrink: 0;
    margin-right: 2%;
  }
  .mxw-news .right .item {
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
  }
  .mxw-news .right .item:last-child {
    margin-bottom: 0;
  }
  .mxw-news .right .item .image {
    width: 3.6667rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
    z-index: 9;
    position: relative;
  }
  .mxw-news .right .item:hover {
    transform: translateX(20px);
  }
  .mxw-news .right .item:hover .title {
    color: #e47e29;
  }
}
@media screen and (max-width: 1520px) {
  .mxw-news > .mxw-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 751px) {
  .mxw-news > .mxw-box {
    max-width: 100%;
  }
  .mxw-news .left {
    margin-bottom: 10px;
  }
  .mxw-news .right .item .image {
    display: none;
  }
  .mxw-news .left .info {
    padding: 20px 15px;
  }
  .mxw-news .left .title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .mxw-news .left .desc {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
/* ==================== 新闻资讯 end ==================== */
/* ==================== 内页 - 通用分类 start ==================== */
.ny-cate {
  background-color: #f1f1f1;
}
.ny-cate > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.ny-cate .cate-item {
  display: block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  position: relative;
  margin-left: 0.8333rem;
  margin-right: 0.8333rem;
  font-size: 0.3rem;
}
.ny-cate .cate-item.active,
.ny-cate .cate-item:hover {
  font-weight: bold;
  color: #e47e29;
}
.ny-cate .cate-item.active:before,
.ny-cate .cate-item:hover:before {
  width: 100%;
}
.ny-cate .cate-item:last-child:after {
  display: none;
}
.ny-cate .cate-item:before {
  content: "";
  display: block;
  width: 0;
  height: 0.0333rem;
  background-color: #e47e29;
  transition: all 0.4s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.ny-cate .cate-item:after {
  content: "";
  display: block;
  width: 0.0167rem;
  height: 0.3333rem;
  background-color: #bdbdbd;
  position: absolute;
  right: -0.8333rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 751px) {
  .ny-cate > .mxw-box {
    padding: 10px;
  }
  .ny-cate .cate-item {
    width: 32%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .ny-cate .cate-item:after {
    right: 0;
  }
  .ny-cate .cate-item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .ny-cate .cate-item:nth-child(3n):after {
    display: none;
  }
}
/* ==================== 内页 - 通用分类 end ==================== */
/* ==================== 内页 - 通用标题 start ==================== */
.ny-title {
  font-size: 0;
  text-align: center;
  margin-bottom: 1rem;
}
.ny-title .text1 {
  display: inline-block;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  font-size: 0.5667rem;
  line-height: 1.2;
  color: #333;
  padding-bottom: 0.4rem;
  position: relative;
}
.ny-title .text1:before,
.ny-title .text1:after {
  content: "";
  display: block;
  bottom: 0;
  position: absolute;
}
.ny-title .text1:before {
  width: 100%;
  height: 0.02rem;
  background-color: #dfdfdf;
  left: 0;
}
.ny-title .text1:after {
  bottom: -0.02rem;
  height: 0.04rem;
  background-color: #e47e29;
  width: 30%;
  left: 50%;
  transform: translateX(-50%);
}
.ny-title .text1 strong {
  font-size: 60px;
  color: #e47e29;
  line-height: 0.8;
  display: inline-block;
  font-style: italic;
}
.ny-title .text2 {
  font-size: 0.3rem;
  line-height: 1.6;
  margin-top: 0.3333rem;
  color: #666;
}
@media screen and (max-width: 751px) {
  .ny-title {
    margin-bottom: 30px;
  }
  .ny-title .text1 {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    min-width: 280px;
  }
  .ny-title .text2 {
    font-size: 12px;
    margin-top: 10px;
  }
}
/* ==================== 内页 - 通用标题 end ==================== */
/* ==================== 内页 - 关于大鹏 start ==================== */
/* ==================== 内页 - 关于大鹏 end ==================== */
/* ==================== 内页 - 发展历程 start ==================== */
.ny-about2 {
  overflow: hidden;
}
.ny-about2 .body {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ny-about2 .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px;
  border: 1px solid #d4d4d4;
  position: relative;
}
.ny-about2 .item .image {
  flex-shrink: 0;
}
.ny-about2 .item .info {
  min-width: 0;
  flex-grow: 1;
}
.ny-about2 .item .year {
  font-size: 26px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 10px;
}
.ny-about2 .item .desc {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}
@media screen and (min-width: 751px) {
  .ny-about2 .body:after {
    content: "";
    display: block;
    width: 0;
    border-right: 1px dashed #666;
    position: absolute;
    right: 50%;
    transform: translate(50%, -50%);
    top: 50%;
    height: 88%;
  }
  .ny-about2 .item {
    position: relative;
    z-index: 9;
    cursor: pointer;
    width: 45.35%;
    transition: all 0.4s;
  }
  .ny-about2 .item .image {
    width: 240px;
  }
  .ny-about2 .item:hover {
    border-color: #e47e29;
  }
  .ny-about2 .item:hover:before {
    background-color: #e47e29;
  }
  .ny-about2 .item:hover:after {
    border-color: #e47e29;
  }
  .ny-about2 .item:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #d4d4d4;
    border-radius: 100%;
    z-index: 99;
    transition: all 0.4s;
  }
  .ny-about2 .item:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-top: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4;
    background-color: #fff;
    position: absolute;
    top: 50%;
    transition: all 0.4s;
  }
  .ny-about2 .item:first-child {
    margin-top: 0!important;
  }
  .ny-about2 .item:nth-child(2n-1) {
    margin-top: -20px;
  }
  .ny-about2 .item:nth-child(2n-1):before {
    right: -11.65%;
  }
  .ny-about2 .item:nth-child(2n-1):after {
    transform: translate(50%, -50%) rotate(45deg);
    right: 0px;
  }
  .ny-about2 .item:nth-child(2n-1) .image {
    margin-right: 30px;
  }
  .ny-about2 .item:nth-child(2n) {
    text-align: right;
    margin-top: 140px;
  }
  .ny-about2 .item:nth-child(2n):before {
    left: -11.65%;
  }
  .ny-about2 .item:nth-child(2n):after {
    transform: translate(50%, -50%) rotate(-135deg);
    left: -16px;
  }
  .ny-about2 .item:nth-child(2n) .image {
    order: 2;
    margin-left: 30px;
  }
}
@media screen and (max-width: 751px) {
  .ny-about2 .item {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .ny-about2 .item .image {
    width: 100%;
    margin-bottom: 10px;
  }
  .ny-about2 .item .year {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .ny-about2 .item .desc {
    font-size: 12px;
    line-height: 1.8;
  }
}
/* ==================== 内页 - 发展历程 end ==================== */
/* ==================== 内页 - 服务范围 start ==================== */
.ny-server-list .item {
  border: 0.0167rem solid #dadada;
  padding: 0.3333rem;
  display: flex;
  align-items: center;
}
.ny-server-list .image {
  width: 5rem;
  flex-shrink: 0;
  margin-right: 0.5833rem;
}
.ny-server-list .info {
  min-width: 0;
  flex-grow: 1;
}
.ny-server-list .info .name {
  font-size: 0.3333rem;
  color: #333;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.3333rem;
}
.ny-server-list .info .desc {
  font-size: 0.2667rem;
  color: #8d8d8d;
  line-height: 1.8;
  text-align: justify;
}
.ny-server-list .btn-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.ny-server-list .btn-1,
.ny-server-list .btn-2 {
  width: 48%;
  height: 0.5333rem;
  line-height: 0.5333rem;
  text-align: center;
  font-size: 0.2667rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.0167rem solid;
}
.ny-server-list .btn-1 {
  color: #8d8d8d;
  border-color: #999;
}
.ny-server-list .btn-2 {
  color: #e47e29;
  border-color: #e47e29;
}
.ny-server-list .btn-2:before {
  content: "";
  display: block;
  width: 0.2667rem;
  height: 0.2667rem;
  margin-right: 0.0833rem;
  background: url(../images/img45.png) no-repeat center;
  background-size: 100%;
}
@media screen and (min-width: 751px) {
  .ny-server-list .item {
    width: 49%;
  }
  .ny-server-list .item:nth-child(2n) {
    margin-left: 2%;
  }
  .ny-server-list .item:nth-child(2) ~ .item {
    margin-top: 2%;
  }
  .ny-server-list .item .btn-group {
    padding-right: 1.1667rem;
  }
}
@media screen and (max-width: 751px) {
  .ny-server-list .item {
    flex-wrap: wrap;
    width: 100%;
    padding: 10px;
  }
  .ny-server-list .item:first-child ~ .item {
    margin-top: 20px;
  }
  .ny-server-list .item .image {
    width: 100%;
    margin-bottom: 15px;
  }
  .ny-server-list .info {
    width: 100%;
  }
  .ny-server-list .info .name {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .ny-server-list .info .desc {
    font-size: 12px;
  }
  .ny-server-list .btn-group {
    margin-top: 15px;
  }
  .ny-server-list .btn-group .btn-1,
  .ny-server-list .btn-group .btn-2 {
    font-size: 12px;
  }
}
/* ==================== 内页 - 服务范围 end ==================== */
/* ==================== 内页 - 鉴定流程 start ==================== */
.ny-server {
  overflow: hidden;
}
.ny-server .mxw-ny-box {
  padding-top: 0;
  padding-bottom: 0;
}
.ny-server .body {
  padding-top: 1rem;
}
.ny-server .ny-title {
  margin-bottom: 1.3333rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: url(../images/img49.jpg) no-repeat center;
  background-size: cover;
  max-width: 26.6667rem;
  margin-left: auto;
  margin-right: auto;
}
.ny-server .ny-title .text1 {
  color: #fff;
}
.ny-server .server-title {
  font-size: 0.6333rem;
  line-height: 1.2;
  padding-bottom: 0.5rem;
  position: relative;
  border-bottom: 0.0167rem solid #dfdfdf;
  margin-bottom: 0.6667rem;
}
.ny-server .server-title:after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 0.0333rem;
  background-color: #e47e29;
  left: 0;
  bottom: -0.0167rem;
  position: absolute;
}
.ny-server .mxw-btn {
  display: block;
  border-radius: 1.6667rem;
  background-color: #e47e29;
  color: #fff;
  font-size: 0.3rem;
  line-height: 0.8333rem;
  height: 0.8333rem;
  text-align: center;
  width: 3.4333rem;
}
.ny-server .mxw-btn:hover {
  color: #fff !important;
}
.ny-server .section1 > .mxw-ny-box {
  position: relative;
  padding-bottom: 1.6667rem;
  padding-left: 8.75%;
  padding-right: 8.75%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.ny-server .section1 .item {
  width: 25%;
  position: relative;
  z-index: 9;
}
.ny-server .section1 .icon {
  width: 1.9333rem;
  height: 1.9333rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee;
  border-radius: 100%;
  margin: 0 auto 0.3333rem;
}
.ny-server .section1 .icon img {
  width: 1rem;
}
.ny-server .section1 .info {
  text-align: center;
}
.ny-server .section1 .title {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.ny-server .section1 .desc {
  font-size: 0.25rem;
  color: #9b9b9b;
  line-height: 1.8;
}
.ny-server .section2 {
  margin-bottom: 1.1667rem;
  position: relative;
  background-image: linear-gradient(to top, #f2f2f2, #fff);
  flex-wrap: wrap;
}
.ny-server .section2:after {
  content: "";
  display: block;
  width: 100%;
  background: url(../images/img61.png) no-repeat center;
  height: 2.1667rem;
  margin-top: 1.1667rem;
  transform: translateY(1.1667rem);
}
.ny-server .section2 > .mxw-ny-box {
  display: flex;
  align-items: center;
}
.ny-server .section2 .info {
  min-width: 0;
  flex-grow: 1;
}
.ny-server .section2 .info .item {
  margin-bottom: 0.5rem;
}
.ny-server .section2 .info .item:last-child {
  margin-bottom: 0;
}
.ny-server .section2 .info .text1 {
  font-size: 0.3333rem;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
}
.ny-server .section2 .info .text2 {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.8;
  padding-left: 0.5rem;
}
.ny-server .section3 > .mxw-ny-box {
  padding-bottom: 0.8333rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
}
.ny-server .section3 .image {
  width: 28%;
  flex-shrink: 0;
  margin-right: 12.5%;
}
.ny-server .section3 .info {
  min-width: 0;
  flex-grow: 1;
}
.ny-server .section3 .desc {
  line-height: 1.8;
  text-align: justify;
  color: #333;
  font-size: 0.3rem;
}
@media screen and (min-width: 751px) {
  .ny-server .section1 > .mxw-ny-box:after {
    content: "";
    display: block;
    width: 84%;
    height: 4.6667rem;
    border: 0.0167rem solid #d6d6d6;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
  }
  .ny-server .section1 .item:after {
    content: "";
    display: block;
    background: url(../images/img58.png) no-repeat center;
    background-size: 100%;
    width: 0.3333rem;
    height: 0.3333rem;
    position: absolute;
    right: -0.1667rem;
    top: 0.8667rem;
  }
  .ny-server .section1 .item:nth-child(4)::after {
    transform: rotate(90deg);
    right: -15%;
    top: 3.1667rem;
  }
  .ny-server .section1 .item:nth-child(4) ~ .item {
    margin-top: 0.8333rem;
  }
  .ny-server .section1 .item:nth-child(4) ~ .item:after {
    transform: rotateY(-180deg);
  }
  .ny-server .section1 .item:nth-child(5) {
    order: 5;
  }
  .ny-server .section1 .item:nth-child(5):after {
    display: none;
  }
  .ny-server .section1 .item:nth-child(6) {
    order: 4;
  }
  .ny-server .section1 .item:nth-child(7) {
    order: 3;
  }
  .ny-server .section1 .item:nth-child(8) {
    order: 2;
  }
  .ny-server .section2 .image {
    margin-right: 1.6667rem;
    flex-shrink: 0;
    width: 46%;
  }
  .ny-server .section2 .info .mxw-btn {
    margin-top: 0.8333rem;
  }
  .ny-server .section3 > .mxw-ny-box {
    max-width: 1380px;
  }
  .ny-server .section3 .mxw-btn {
    margin-top: 1.6667rem;
  }
  .ny-server .section3 .info {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 1680px) {
  .ny-server .mxw-ny-box {
    max-width: 90%;
  }
  .ny-server .section1 .mxw-ny-box {
    padding-left: 0;
    padding-right: 0;
  }
  .ny-server .section1 .mxw-ny-box:after {
    width: 100%;
  }
  .ny-server .section1 .item:nth-child(4)::after {
    right: -3%;
  }
  .ny-server .section3 .mxw-ny-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 751px) {
  .ny-server .mxw-ny-box {
    width: 100%;
    max-width: 100%!important;
    padding: 30px 20px!important;
  }
  .ny-server .body {
    padding-top: 0px;
  }
  .ny-server .ny-title {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 0px;
  }
  .ny-server .server-title {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .ny-server .server-title:after {
    width: 50px;
  }
  .ny-server .mxw-btn {
    width: 100%;
    font-size: 12px;
    height: 30px;
    line-height: 30px;
    margin-top: 30px;
  }
  .ny-server .section1 > .mxw-ny-box {
    justify-content: center;
    padding-bottom: 0!important;
  }
  .ny-server .section1 .item {
    width: 48%;
  }
  .ny-server .section1 .item:nth-child(2) ~ .item {
    margin-top: 20px;
  }
  .ny-server .section1 .item:nth-child(2n) {
    margin-left: 4%;
  }
  .ny-server .section1 .icon {
    width: 60px;
    height: 60px;
  }
  .ny-server .section1 .icon img {
    width: 30px;
  }
  .ny-server .section1 .title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .ny-server .section1 .desc {
    font-size: 12px;
    line-height: 1.6;
  }
  .ny-server .section1 .desc p {
    display: inline;
  }
  .ny-server .section2 {
    margin-bottom: 50px;
  }
  .ny-server .section2:after {
    height: 50px;
    background-size: auto 50px;
    transform: translateY(30px);
    margin-top: 0;
  }
  .ny-server .section2 > .mxw-ny-box {
    flex-wrap: wrap;
    padding-bottom: 0!important;
  }
  .ny-server .section2 .image {
    margin-bottom: 20px;
  }
  .ny-server .section2 .info .text1 {
    font-size: 15px;
  }
  .ny-server .section2 .info .text2 {
    font-size: 12px;
    padding-left: 20px;
  }
  .ny-server .section2 .info .item {
    margin-bottom: 20px;
  }
  .ny-server .section3 > .mxw-ny-box {
    padding-top: 0!important;
    flex-wrap: wrap;
  }
  .ny-server .section3 .image {
    width: 80%;
    text-align: center;
    margin: 0 auto 20px;
  }
  .ny-server .section3 .desc {
    font-size: 14px;
  }
}
/* ==================== 内页 - 鉴定流程 end ==================== */
/* ==================== 内页 - 项目案例 start ==================== */
.ny-cases {
  overflow: hidden;
}
/* ==================== 内页 - 项目案例 end ==================== */
/* ==================== 内页 - 通用分类样式2 start ==================== */
.ny-cate2 {
  margin-bottom: 0.8333rem;
}
.ny-cate2 .cate-item {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #b1b1b1;
}
.ny-cate2 .cate-item .title {
  flex-shrink: 0;
  font-size: 0.3rem;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
  padding-bottom: 0.4167rem;
  padding-top: 0.4167rem;
  margin-right: 0.5rem;
  position: relative;
  padding-right: 0.3333rem;
}
.ny-cate2 .cate-item .title:after {
  content: "：";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ny-cate2 .cate-item .list {
  min-width: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.ny-cate2 .cate-item .list > a {
  display: block;
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.2;
  padding-left: 0.3333rem;
  padding-right: 0.3333rem;
}
.ny-cate2 .cate-item .list > a.active,
.ny-cate2 .cate-item .list > a:hover {
  color: #e47e29;
}
@media screen and (min-width: 751px) {
  .ny-cate2 .cate-item .title {
    min-width: 200px;
  }
}
@media screen and (max-width: 751px) {
  .ny-cate2 .cate-item {
    flex-wrap: wrap;
    padding-bottom: 5px;
  }
  .ny-cate2 .cate-item .title {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
  }
  .ny-cate2 .cate-item .list {
    margin-left: -10px;
    margin-right: -10px;
  }
  .ny-cate2 .cate-item .list > a {
    padding: 8px 10px;
  }
}
/* ==================== 内页 - 通用分类样式2 end ==================== */
/* ==================== 内页 - 解决方案通用板块 start ==================== */
.ny-solution {
  overflow: hidden;
}
.ny-solution .solution1 .mxw-more {
  margin-top: 1rem;
}
.ny-solution .solution2 {
  background-color: #f6f6f6;
}
.ny-solution .solution2 > .mxw-ny-box {
  max-width: 24.1667rem;
}
.ny-solution .solution2 .item {
  background-color: #fff;
  box-shadow: 0 0 0.1667rem rgba(0, 0, 0, 0.06);
  border-radius: 0.1667rem;
  overflow: hidden;
}
.ny-solution .solution2 .image {
  border-radius: 0.1667rem;
  overflow: hidden;
}
.ny-solution .solution2 .info {
  padding: 0.5833rem;
  text-align: center;
  padding-bottom: 0.4167rem;
}
.ny-solution .solution2 .info .text1 {
  font-size: 0.3667rem;
  color: #e47e29;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 0.3333rem;
}
.ny-solution .solution2 .info .desc {
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.6;
  max-width: 84%;
  margin-left: auto;
  margin-right: auto;
}
.ny-solution .solution3 {
  position: relative;
}
.ny-solution .solution3 .itembox {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
}
.ny-solution .solution3 .item {
  width: 14.28%;
}
.ny-solution .solution3 .item.active .icon,
.ny-solution .solution3 .item:hover .icon {
  background-color: #e47e29;
}
.ny-solution .solution3 .item.active .icon .min-icon:before,
.ny-solution .solution3 .item:hover .icon .min-icon:before,
.ny-solution .solution3 .item.active .icon .min-icon:after,
.ny-solution .solution3 .item:hover .icon .min-icon:after {
  background-color: #e47e29;
}
.ny-solution .solution3 .icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.3333rem;
  width: 1.3333rem;
  height: 1.3333rem;
  background-color: #818181;
  border-radius: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ny-solution .solution3 .icon img {
  width: 0.8333rem;
}
.ny-solution .solution3 .icon:after {
  content: "";
  display: block;
  width: 98%;
  height: 98%;
  border: 0.0167rem solid rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ny-solution .solution3 .icon .min-icon {
  position: absolute;
  bottom: -0.3333rem;
  left: 50%;
  transform: translateX(-50%);
}
.ny-solution .solution3 .icon .min-icon:before,
.ny-solution .solution3 .icon .min-icon:after {
  content: "";
  display: block;
  border-radius: 100%;
  background-color: #818181;
  margin-left: auto;
  margin-right: auto;
}
.ny-solution .solution3 .icon .min-icon:before {
  width: 0.1167rem;
  height: 0.1167rem;
  margin-bottom: 0.0333rem;
}
.ny-solution .solution3 .icon .min-icon:after {
  width: 0.0833rem;
  height: 0.0833rem;
}
.ny-solution .solution3 .info {
  text-align: center;
}
.ny-solution .solution3 .title {
  font-size: 0.3333rem;
  color: #e47e29;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  font-weight: bold;
}
.ny-solution .solution3 .desc {
  font-size: 0.2667rem;
  color: #3a3a3a;
  line-height: 1.8;
  text-align: center;
  max-width: 2.4333rem;
  margin-left: auto;
  margin-right: auto;
}
.ny-solution .solution4 {
  background: url(../images/img78.jpg) no-repeat center;
  background-size: cover;
}
.ny-solution .solution4 .ny-title .text1,
.ny-solution .solution4 .ny-title .text2 {
  color: #fff;
}
.ny-solution .solution4 .ny-title .text1:before {
  display: none;
}
.ny-solution .solution4 form {
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}
.ny-solution .solution4 form .top {
  margin-bottom: 0.3333rem;
}
.ny-solution .solution4 form input,
.ny-solution .solution4 form textarea {
  border: solid 0.0167rem rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
  font-size: 0.2667rem;
  border-radius: 0.1rem;
  color: #fff;
}
.ny-solution .solution4 form input::-webkit-input-placeholder,
.ny-solution .solution4 form textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(255, 255, 255, 0.33);
}
.ny-solution .solution4 form input:-moz-placeholder,
.ny-solution .solution4 form textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(255, 255, 255, 0.33);
}
.ny-solution .solution4 form input::-moz-placeholder,
.ny-solution .solution4 form textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(255, 255, 255, 0.33);
}
.ny-solution .solution4 form input:-ms-input-placeholder,
.ny-solution .solution4 form textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(255, 255, 255, 0.33);
}
.ny-solution .solution4 form input {
  height: 0.7667rem;
  line-height: 0.7667rem;
  padding-left: 0.3333rem;
  padding-right: 0.3333rem;
}
.ny-solution .solution4 form textarea {
  padding: 0.2333rem 0.3333rem;
  width: 100%;
  resize: none;
  height: 2.6667rem;
}
.ny-solution .solution4 form button {
  margin-top: 0.75rem;
  width: 3.0833rem;
  height: 0.6667rem;
  line-height: 0.6667rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  text-align: center;
  font-size: 0.2667rem;
  color: #333;
  font-weight: bold;
  display: block;
  border-radius: 1.6667rem;
  cursor: pointer;
}
.ny-solution .solution5 .body {
  display: flex;
  align-items: center;
}
.ny-solution .solution5 .image {
  width: 48%;
  flex-shrink: 0;
  margin-right: 6.25%;
}
.ny-solution .solution5 .info {
  min-width: 0;
  flex-grow: 1;
}
.ny-solution .solution5 .info .text1 {
  font-size: 0.55rem;
  line-height: 1.2;
  font-weight: bold;
  color: #e47e29;
  margin-bottom: 0.6667rem;
}
.ny-solution .solution5 .info .desc {
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.8;
}
.ny-solution .solution5 .info .desc p {
  position: relative;
  margin-bottom: 0.3167rem;
}
.ny-solution .solution5 .info .desc p:last-child {
  margin-bottom: 0;
}
.ny-solution .solution5 .info .desc p:before {
  content: "";
  display: inline-block;
  background: url(../images/img83.png) no-repeat center;
  width: 0.3333rem;
  height: 0.3333rem;
  background-size: 100%;
  margin-right: 0.25rem;
}
.ny-solution .solution5 .info .mxw-btn {
  margin-top: 1.25rem;
  display: block;
  width: 3.4333rem;
  height: 0.8333rem;
  line-height: 0.8333rem;
  text-align: center;
  color: #fff;
  font-size: 0.3rem;
  border-radius: 1.6667rem;
  background-color: #e47e29;
  transition: all 0.4s;
}
.ny-solution .solution5 .info .mxw-btn:hover {
  color: #fff !important;
  box-shadow: 0 0 4px #e47e29;
}
@media screen and (min-width: 751px) {
  .ny-solution .solution1 .mxw-ny-box {
    padding-top: 0.5833rem;
    padding-bottom: 1.25rem;
  }
  .ny-solution .solution2 .mxw-ny-box {
    padding-top: 0.9rem;
    padding-bottom: 1rem;
  }
  .ny-solution .solution2 .item {
    width: 31%;
  }
  .ny-solution .solution2 .item:nth-child(3n-1) {
    margin-left: 3.5%;
    margin-right: 3.5%;
  }
  .ny-solution .solution3 .mxw-ny-box {
    padding-top: 1.1667rem;
    padding-bottom: 1.6667rem;
  }
  .ny-solution .solution3:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #bfbfbf;
    position: absolute;
    top: 50%;
  }
  .ny-solution .solution4 .mxw-ny-box {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }
  .ny-solution .solution5 .mxw-ny-box {
    padding-top: 1.1667rem;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 751px) {
  .ny-solution .solution1 {
    padding-bottom: 0;
  }
  .ny-solution .solution1 .mxw-more {
    margin-top: 20px;
  }
  .ny-solution .solution2 {
    padding-bottom: 0;
  }
  .ny-solution .solution2 .item {
    width: 100%;
    margin: 0!important;
  }
  .ny-solution .solution2 .item:first-child ~ .item {
    margin-top: 20px!important;
  }
  .ny-solution .solution2 .item .info {
    padding: 15px;
  }
  .ny-solution .solution2 .item .info .text1 {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
  }
  .ny-solution .solution2 .item .desc {
    max-width: 100%;
    font-size: 12px;
  }
  .ny-solution .solution3 .itembox {
    flex-wrap: wrap;
  }
  .ny-solution .solution3 .item {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .ny-solution .solution3 .item:last-child {
    margin-bottom: 0;
  }
  .ny-solution .solution3 .item .icon {
    flex-shrink: 0;
    margin-bottom: 20px;
    margin-right: 20px;
    width: 50px;
    height: 50px;
  }
  .ny-solution .solution3 .item .icon img {
    width: 25px;
  }
  .ny-solution .solution3 .item .info {
    min-width: 0;
    flex-grow: 1;
  }
  .ny-solution .solution3 .item .title {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 5px;
    text-align: left;
  }
  .ny-solution .solution3 .item .desc {
    max-width: 100%;
    text-align: justify;
    font-size: 12px;
  }
  .ny-solution .solution4 form .top {
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .ny-solution .solution4 form input,
  .ny-solution .solution4 form textarea {
    font-size: 14px;
  }
  .ny-solution .solution4 form input {
    width: 100%;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    height: 40px;
    line-height: 40px;
  }
  .ny-solution .solution4 form input:first-child ~ input {
    margin-top: 15px!important;
  }
  .ny-solution .solution4 form input:nth-child(2n) {
    margin-left: 0;
  }
  .ny-solution .solution4 form textarea {
    padding: 10px;
  }
  .ny-solution .solution4 form button {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    margin-top: 20px;
  }
  .ny-solution .solution5 {
    padding: 0;
  }
  .ny-solution .solution5 .body {
    flex-wrap: wrap;
  }
  .ny-solution .solution5 .image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .ny-solution .solution5 .info .text1 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .ny-solution .solution5 .info .desc p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .ny-solution .solution5 .info .desc p:before {
    margin-right: 5px;
  }
  .ny-solution .solution5 .info .mxw-btn {
    width: 100%;
    font-size: 12px;
    margin-top: 20px;
    height: 36px;
    line-height: 36px;
  }
}
/* ==================== 内页 - 解决方案通用板块 start ==================== */
/* ==================== 内页 - 防水补漏及加固施工解决方案 start ==================== */
.ny-solution3 {
  overflow: hidden;
}
.ny-solution3 .body1 {
  padding-top: 1.1667rem;
}
.ny-solution3 .body1 .ny-title {
  margin-bottom: 0.8333rem;
}
.ny-solution3 .section {
  position: relative;
  background-color: #f4f4f4;
}
.ny-solution3 .section:after {
  content: "";
  display: block;
  width: 100%;
  height: 4rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ny-solution3 .section .swiper-slide {
  overflow: hidden;
}
.ny-solution3 .section > .mxw-ny-box {
  z-index: 9;
  position: relative;
}
.ny-solution3 .section .top {
  position: relative;
}
.ny-solution3 .section .solution3-swiper-top {
  background-color: #f4f4f4;
  position: relative;
}
.ny-solution3 .section .solution3-swiper-top .item {
  display: flex;
  align-items: flex-start;
}
.ny-solution3 .section .solution3-swiper-top .info {
  min-width: 0;
  flex-grow: 1;
  padding-top: 0.6667rem;
}
.ny-solution3 .section .solution3-swiper-top .title {
  line-height: 1.2;
  padding-bottom: 0.4167rem;
  width: 100%;
  border-bottom: 0.0167rem solid #dcdcdc;
  margin-bottom: 0.6667rem;
  display: flex;
  align-items: flex-end;
}
.ny-solution3 .section .solution3-swiper-top .title .text1 {
  font-size: 0.4667rem;
  color: #292929;
  font-weight: bold;
}
.ny-solution3 .section .solution3-swiper-top .title .text2 {
  font-size: 0.3rem;
  color: #666;
  margin-left: 24px;
}
.ny-solution3 .section .solution3-swiper-top .desc .text1 {
  font-size: 0.4333rem;
  color: #292929;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.ny-solution3 .section .solution3-swiper-top .desc .text2 {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.8;
  text-align: justify;
  height: 3.6em;
}
.ny-solution3 .section .bottom {
  background-color: #383737;
  position: relative;
  padding-top: 0.3333rem;
  padding-bottom: 0.3333rem;
}
.ny-solution3 .section .solution3-swiper-bottom .item {
  position: relative;
}
.ny-solution3 .section .solution3-swiper-bottom .image {
  box-shadow: 0rem 0.2333rem 0.35rem 0rem rgba(3, 0, 0, 0.28);
}
.ny-solution3 .section .solution3-swiper-bottom .name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.3rem;
  line-height: 0.6667rem;
  height: 0.6667rem;
  text-align: center;
}
.ny-solution3 .section .mxw-swiper-btn {
  background: url(../images/img67.png) no-repeat center;
  background-size: 100%;
  width: 0.6667rem;
  height: 0.6667rem;
  display: block;
  cursor: pointer;
}
.ny-solution3 .section .mxw-swiper-btn.mxw-swiper-prev {
  transform: rotateY(-180deg);
  margin-right: 0.4167rem;
}
@media screen and (min-width: 751px) {
  .ny-solution3 .body1 .mxw-ny-box {
    padding-top: 0;
    padding-bottom: 0;
  }
  .ny-solution3 .ny-title .text1 {
    font-size: 0.5667rem;
  }
  .ny-solution3 .section {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
  }
  .ny-solution3 .section:nth-child(2n) .solution3-swiper-top .image {
    order: 2;
    margin-left: 4%;
  }
  .ny-solution3 .section:nth-child(2n) .mxw-btn-group {
    left: 0;
  }
  .ny-solution3 .section:nth-child(2n) .bottom {
    padding-right: 0.3333rem;
  }
  .ny-solution3 .section:nth-child(2n) .bottom:after {
    left: -100%;
  }
  .ny-solution3 .section:nth-child(2n-1) .solution3-swiper-top .image {
    margin-right: 4%;
  }
  .ny-solution3 .section:nth-child(2n-1) .mxw-btn-group {
    left: 43%;
  }
  .ny-solution3 .section:nth-child(2n-1) .bottom {
    padding-left: 0.3333rem;
  }
  .ny-solution3 .section:nth-child(2n-1) .bottom:after {
    right: -100%;
  }
  .ny-solution3 .section .solution3-swiper-top .image {
    width: 39%;
    flex-shrink: 0;
    box-shadow: 0rem 0.2333rem 0.35rem 0rem rgba(3, 0, 0, 0.28);
    margin-bottom: 0.6667rem;
  }
  .ny-solution3 .section .mxw-btn-group {
    position: absolute;
    bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 9;
  }
  .ny-solution3 .section .bottom:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #383737;
    position: absolute;
  }
  .ny-solution3 .section .bottom .swiper-slide {
    max-width: 400px;
  }
}
@media screen and (max-width: 751px) {
  .ny-solution3 .body1 {
    padding-top: 30px;
  }
  .ny-solution3 .body1 .mxw-ny-box {
    padding: 0;
  }
  .ny-solution3 .body1 .ny-title {
    margin-bottom: 30px;
  }
  .ny-solution3 .section-itembox {
    padding-left: 20px;
    padding-right: 20px;
  }
  .ny-solution3 .section {
    margin-bottom: 20px;
  }
  .ny-solution3 .section:last-child {
    margin-bottom: 0;
  }
  .ny-solution3 .section .solution3-swiper-top .item {
    flex-wrap: wrap;
  }
  .ny-solution3 .section .solution3-swiper-top .info {
    padding: 15px 10px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .ny-solution3 .section .solution3-swiper-top .title {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .ny-solution3 .section .solution3-swiper-top .title .text1 {
    font-size: 16px;
  }
  .ny-solution3 .section .solution3-swiper-top .title .text2 {
    display: none;
  }
  .ny-solution3 .section .solution3-swiper-top .desc .text1 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .ny-solution3 .section .solution3-swiper-top .desc .text2 {
    font-size: 12px;
  }
  .ny-solution3 .section .mxw-swiper-btn {
    position: absolute;
    top: 25%;
    z-index: 99;
  }
  .ny-solution3 .section .mxw-swiper-btn.mxw-swiper-prev {
    left: 10px;
  }
  .ny-solution3 .section .mxw-swiper-btn.mxw-swiper-next {
    right: 10px;
  }
  .ny-solution3 .section .bottom {
    padding: 10px;
  }
  .ny-solution3 .section .bottom .name {
    font-size: 12px;
    height: 30px;
    line-height: 30px;
  }
}
/* ==================== 内页 - 防水补漏及加固施工解决方案 end ==================== */
/* ==================== 内页 - 建筑结构加固设计解决方案 start ==================== */
.ny-solution2 .section2 .body {
  position: relative;
}
.ny-solution2 .section2 .image {
  width: 43.75%;
  margin-left: auto;
  margin-right: auto;
}
.ny-solution2 .section2 .item .title {
  color: #fff;
  font-size: 0.3333rem;
  font-weight: bold;
  background: url(../images/img81.png) no-repeat center;
  background-size: 100%;
  width: 2.8333rem;
  height: 0.7rem;
  text-align: center;
  margin-bottom: 0.3333rem;
  line-height: 0.6333rem;
}
.ny-solution2 .section2 .item .desc {
  font-size: 0.2667rem;
  line-height: 1.8;
  max-width: 5.3333rem;
}
@media screen and (min-width: 751px) {
  .ny-solution2 .section2 .mxw-ny-box {
    padding-top: 1rem;
    padding-bottom: 1.6667rem;
  }
  .ny-solution2 .section2 .item {
    position: absolute;
  }
  .ny-solution2 .section2 .item .desc {
    padding-left: 0.3333rem;
  }
  .ny-solution2 .section2 .item:after {
    content: "";
    display: block;
    background: url(../images/img82.png) no-repeat right bottom;
    width: 2.1667rem;
    height: 1.6667rem;
    position: absolute;
  }
  .ny-solution2 .section2 .item:nth-child(1) {
    top: 1.4167rem;
    left: 0.5rem;
  }
  .ny-solution2 .section2 .item:nth-child(1) .title {
    margin-right: 0;
    margin-left: auto;
  }
  .ny-solution2 .section2 .item:nth-child(1) .desc {
    text-align: right;
    padding-left: 0;
  }
  .ny-solution2 .section2 .item:nth-child(1):after {
    top: 0.5rem;
    right: -2rem;
  }
  .ny-solution2 .section2 .item:nth-child(2) {
    top: 4.5833rem;
    left: 1.8333rem;
  }
  .ny-solution2 .section2 .item:nth-child(2) .title {
    margin-right: 0;
    margin-left: auto;
  }
  .ny-solution2 .section2 .item:nth-child(2) .desc {
    text-align: right;
    padding-left: 0;
  }
  .ny-solution2 .section2 .item:nth-child(2):after {
    top: 0.5rem;
    right: -2rem;
  }
  .ny-solution2 .section2 .item:nth-child(3) {
    top: 1.2833rem;
    right: 1rem;
  }
  .ny-solution2 .section2 .item:nth-child(3):after {
    top: 0.5rem;
    right: 5.1833rem;
    transform: rotateY(180deg);
  }
  .ny-solution2 .section2 .item:nth-child(4) {
    top: 4.6667rem;
    right: 1.1667rem;
  }
  .ny-solution2 .section2 .item:nth-child(4):after {
    top: 0.5rem;
    right: 5.1833rem;
    transform: rotateY(180deg);
  }
  .ny-solution2 .section2 .item:nth-child(5) {
    top: 7.3333rem;
    right: 6rem;
  }
  .ny-solution2 .section2 .item:nth-child(5):after {
    top: -0.1667rem;
    right: 5.1833rem;
    transform: rotateY(180deg);
    width: 1.3333rem;
  }
}
@media screen and (max-width: 1680px) {
  .ny-solution2 .section2 .mxw-ny-box {
    max-width: 100%;
  }
}
@media screen and (max-width: 751px) {
  .ny-solution2 .section2 {
    padding: 0;
  }
  .ny-solution2 .section2 .image {
    width: 90%;
    margin-bottom: 20px;
  }
  .ny-solution2 .section2 .item {
    margin-bottom: 20px;
  }
  .ny-solution2 .section2 .item:last-child {
    margin-bottom: 0;
  }
  .ny-solution2 .section2 .item .title {
    width: 120px;
    height: 34px;
    text-align: center;
    margin-bottom: 10px;
    line-height: 30px;
    font-size: 14px;
  }
  .ny-solution2 .section2 .item .desc {
    max-width: 100%;
    font-size: 12px;
  }
}
/* ==================== 内页 - 建筑结构加固设计解决方案 end ==================== */
/* ==================== 内页 - 房屋鉴定报告的分类 start ==================== */
.ny-solution1 .section1 .name {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  margin-top: 0.4167rem;
  text-align: center;
}
.ny-solution1 .section2 {
  background: url(../images/img92.jpg) no-repeat center;
  background-size: cover;
}
.ny-solution1 .section2 .body {
  overflow: hidden;
  padding: 1.1667rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  background-color: #fff;
}
.ny-solution1 .section2 .body .image {
  width: 9.8333rem;
  flex-shrink: 0;
  margin-right: 1.6667rem;
}
.ny-solution1 .section2 .body .info {
  min-width: 0;
  flex-grow: 1;
}
.ny-solution1 .section2 .body .item {
  margin-bottom: 0.8333rem;
}
.ny-solution1 .section2 .body .item:last-child {
  margin-bottom: 0;
}
.ny-solution1 .section2 .body .item .title {
  font-size: 0.3333rem;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.ny-solution1 .section2 .body .item .desc {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.6;
}
.ny-solution1 .section2 .body .item .desc a {
  color: #e47e29;
  display: inline;
  padding-left: 0.3333rem;
}
@media screen and (min-width: 751px) {
  .ny-solution1 .section1 .mxw-ny-box {
    padding-top: 0.5833rem;
  }
  .ny-solution1 .section2 {
    padding: 1.2rem 0 1.4167rem 0;
  }
  .ny-solution1 .section2 .mxw-ny-box {
    padding-top: 0rem;
    padding-bottom: 0;
  }
  .ny-solution1 .solution1 .mxw-ny-box {
    padding-top: 1.3333rem;
  }
}
@media screen and (max-width: 751px) {
  .ny-solution1 .section1 .name {
    font-size: 14px;
    margin-top: 15px;
  }
  .ny-solution1 .section2 .body {
    padding: 20px 15px;
    flex-wrap: wrap;
  }
  .ny-solution1 .section2 .body .image {
    width: 100%;
    margin-bottom: 20px;
  }
  .ny-solution1 .section2 .body .item {
    margin-bottom: 20px;
  }
  .ny-solution1 .section2 .body .item:last-child {
    margin-bottom: 0;
  }
  .ny-solution1 .section2 .body .item .title {
    font-size: 14px;
  }
  .ny-solution1 .section2 .body .item .desc {
    font-size: 12px;
  }
  .ny-solution1 .section2 .body .item .desc a {
    padding-left: 0;
  }
}
/* ==================== 内页 - 房屋鉴定报告的分类 end ==================== */
/* ==================== 内页 - 公司简介 start ==================== */
.ny-about {
  overflow: hidden;
}
.ny-about .mxw-swiper-btn {
  position: absolute;
  background: url(../images/img37.png) no-repeat center;
  background-size: 100%;
  width: 0.6667rem;
  height: 0.6667rem;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}
.ny-about .mxw-swiper-btn.mxw-btn-prev {
  left: -1.1667rem;
  transform: rotateY(180deg) translateY(-50%);
}
.ny-about .mxw-swiper-btn.mxw-btn-next {
  right: -1.1667rem;
}
.ny-about .section1 .body1 .body {
  display: flex;
  align-items: center;
}
.ny-about .section1 .body1 .body .desc {
  text-align: justify;
  min-width: 0;
  flex-grow: 1;
  font-size: 0.3rem;
  color: #333;
  line-height: 1.8;
  margin-right: 0.75rem;
}
.ny-about .section1 .body1 .body .desc strong {
  font-size: 0.4333rem;
  font-weight: bold;
}
.ny-about .section1 .body1 .body .desc p {
  margin-bottom: 0.3333rem;
}
.ny-about .section1 .body1 .body .desc p:last-child {
  margin-bottom: 0;
}
.ny-about .section1 .body1 .body .image {
  width: 12.3333rem;
  flex-shrink: 0;
  box-shadow: 0rem 0.2333rem 0.35rem 0rem rgba(3, 0, 0, 0.28);
}
.ny-about .section1 .body2 {
  overflow: hidden;
  background-color: #383737;
}
.ny-about .section1 .body2 .item {
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.ny-about .section1 .body2 .item .text1 {
  display: flex;
  align-items: flex-end;
}
.ny-about .section1 .body2 .item .text1 span {
  font-size: 1.1rem;
  color: #e47e29;
  line-height: 0.8;
}
.ny-about .section1 .body2 .item .text1 i {
  color: #e47e29;
  font-size: 0.6667rem;
  font-weight: bold;
  line-height: 0.5rem;
  height: 0.5rem;
  align-self: flex-start;
}
.ny-about .section1 .body2 .item .text1 .text {
  background-color: #fff;
  font-size: 0.3rem;
  width: 0.5rem;
  height: 0.5rem;
  text-align: center;
  line-height: 0.5rem;
  border-radius: 100%;
  margin-left: 0.0833rem;
}
.ny-about .section1 .body2 .item .text2 {
  font-size: 0.2833rem;
  color: #fff;
  line-height: 1.2;
  margin-top: 0.25rem;
}
.ny-about .section1 .body3 > .mxw-ny-box {
  position: relative;
}
.ny-about .section2 {
  background-color: #f6f6f6;
}
.ny-about .section2 .item {
  background-color: #fff;
  border-radius: 0.1667rem;
  overflow: hidden;
  box-shadow: 0 0 0.1667rem 0.0333rem rgba(0, 0, 0, 0.08);
}
.ny-about .section2 .item .image {
  border-bottom-left-radius: 0.1667rem;
  border-bottom-right-radius: 0.1667rem;
}
.ny-about .section2 .item .info {
  padding: 0.6667rem 0.3333rem;
  text-align: center;
}
.ny-about .section2 .item .title {
  font-size: 0.3667rem;
  line-height: 1.2;
  font-weight: bold;
  color: #e47e29;
  margin-bottom: 0.3333rem;
}
.ny-about .section2 .item .desc {
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.8;
  text-align: center;
}
.ny-about .section3 .mxw-ny-box {
  position: relative;
}
.ny-about .section3 .body {
  display: flex;
  align-items: center;
}
.ny-about .section3 .item {
  display: block;
  text-align: center;
}
.ny-about .section3 .item:hover .name {
  color: #e47e29;
}
.ny-about .section3 .item .image {
  margin-bottom: 0.5833rem;
}
.ny-about .section3 .item .name {
  font-size: 0.3rem;
  line-height: 1.2;
  color: #333;
}
.ny-about .section3 .about-swiper2 {
  min-width: 0;
  flex-grow: 1;
}
.ny-about .section3 .mxw-swiper-btn {
  position: static;
  flex-shrink: 0;
}
.ny-about .section3 .mxw-swiper-btn.mxw-btn-prev {
  margin-right: 1.1667rem;
}
.ny-about .section3 .mxw-swiper-btn.mxw-btn-next {
  margin-left: 1.1667rem;
}
.ny-about .section4 {
  background-color: #f9f9f9;
}
.ny-about .section4 .mxw-ny-box {
  position: relative;
}
.ny-about .section4 .ny-title {
  margin-bottom: 0.1667rem;
}
.ny-about .section4 .item {
  text-align: center;
}
.ny-about .section4 .item .image {
  border: 0.0167rem solid #dcdcdc;
  margin-bottom: 0.25rem;
}
.ny-about .section4 .item .name {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
}
.ny-about .section4 .about-swiper3 .swiper-wrapper {
  flex-wrap: wrap;
  flex-flow: row wrap;
}
.ny-about .section4 .about-swiper3 .swiper-slide {
  margin-top: 0.6667rem !important;
}
.ny-about .section4 .about-swiper3 .swiper-slide img {
  width: 100%;
  max-width: 5rem;
}
.ny-about .section4 .mxw-swiper-btn {
  top: 53%;
}
.ny-about .section5 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.ny-about .section5 .mxw-more {
  padding: 0 0.5rem;
  width: auto;
  max-width: auto;
  display: table;
}
@media screen and (min-width: 751px) {
  .ny-about .section1 .body1 .mxw-ny-box {
    padding-top: 1.1667rem;
    padding-bottom: 1.25rem;
  }
  .ny-about .section1 .body2 .mxw-ny-box {
    padding-top: 0.8333rem;
    padding-bottom: 0.8333rem;
  }
  .ny-about .section1 .body3 .mxw-ny-box {
    padding-top: 1rem;
    padding-bottom: 1.3333rem;
  }
  .ny-about .section2 .mxw-ny-box {
    padding-top: 60px;
    padding-bottom: 70px;
  }
  .ny-about .section3 .mxw-ny-box {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .ny-about .section4 .mxw-ny-box {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1680px) {
  .ny-about .section3 .mxw-ny-box {
    max-width: 98%;
  }
}
@media screen and (max-width: 751px) {
  .ny-about .mxw-swiper-btn {
    display: none;
  }
  .ny-about .section1 .body1 .body {
    flex-wrap: wrap;
  }
  .ny-about .section1 .body1 .body .desc {
    margin-right: 0;
  }
  .ny-about .section1 .body1 .body .desc p {
    margin-bottom: 10px;
  }
  .ny-about .section1 .body1 .body .desc strong {
    font-size: 16px;
  }
  .ny-about .section1 .body1 .body .image {
    width: 100%;
    margin-top: 20px;
  }
  .ny-about .section1 .body2 .mxw-ny-box {
    padding: 20px;
  }
  .ny-about .section1 .body2 .item .text1 i {
    font-size: 16px;
  }
  .ny-about .section1 .body2 .item .text1 span {
    font-size: 29px;
  }
  .ny-about .section1 .body2 .item .text1 .text {
    font-size: 12px;
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
  .ny-about .section2 .item {
    width: 100%;
  }
  .ny-about .section2 .item:nth-child(2n) {
    margin-left: 0;
  }
  .ny-about .section2 .item:nth-child(1) ~ .item {
    margin-top: 20px!important;
  }
  .ny-about .section2 .item .image {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ny-about .section2 .item .title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .ny-about .section2 .item .info {
    padding: 15px;
  }
  .ny-about .section2 .item .desc {
    font-size: 12px;
  }
  .ny-about .section3 .item .image {
    margin-bottom: 10px;
  }
  .ny-about .section3 .item .name {
    font-size: 12px;
  }
  .ny-about .section4 .about-swiper3 .swiper-slide {
    margin-top: 15px!important;
  }
  .ny-about .section4 .item .name {
    font-size: 12px;
  }
  .ny-about .section5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/* ==================== 内页 - 公司简介 end ==================== */
/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact {
  background: url(../images/img108.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.8333rem;
}
.ny-contact .info .desc {
  font-size: 0.2833rem;
  color: #333;
  line-height: 2.6;
  text-align: justify;
}
@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 ==================== */
footer .top {
  background-color: #363636;
}
footer .top .mxw-box {
  padding-top: 60px;
  padding-bottom: 45px;
  display: flex;
  align-items: flex-start;
}
footer .foot-nav {
  margin-right: 5.4%;
  flex-shrink: 0;
  width: 62%;
  justify-content: space-between;
  display: flex;
  align-items: flex-start;
}
footer .foot-nav .nav-item .head {
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: bold;
}
footer .foot-nav .nav-item .list a {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 20px;
}
footer .foot-contact {
  flex-grow: 1;
  min-width: 0;
  margin-right: 2.7%;
}
footer .foot-contact .text1 {
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  margin-bottom: 25px;
}
footer .foot-contact .text2 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}
footer .foot-contact .text3 {
  font-size: 28px;
  font-weight: bold;
  color: #e47e29;
  line-height: 1.2;
  margin-bottom: 15px;
  margin-top: 5px;
}
footer .qr-code {
  width: 120px;
  flex-shrink: 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.2;
}
footer .qr-code img {
  margin-bottom: 20px;
}
footer .mxw-link {
  background-color: #3a3a3a;
}
footer .mxw-link > .mxw-box {
  padding-top: 15px;
  padding-bottom: 15px;
}
footer .mxw-link .title {
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
  padding-right: 20px;
  display: inline;
}
footer .mxw-link a {
  font-size: 14px;
  vertical-align: inherit;
  color: rgba(255, 255, 255, 0.2);
  padding-right: 20px;
}
footer .mxw-link a:last-child {
  padding-right: 0;
}
footer .mxw-copyright {
  background-color: #4c4c4c;
  border-top: 1px solid #5a5a5a;
}
footer .mxw-copyright > .mxw-box {
  padding-top: 15px;
  padding-bottom: 15px;
}
footer .mxw-copyright > .mxw-box {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 750px) {
  footer .mxw-box {
    max-width: 1440px;
  }
}
@media screen and (max-width: 1520px) {
  footer .mxw-box {
    max-width: 90%;
  }
  footer .foot-nav {
    width: 60%;
    margin-right: 4%;
  }
  footer .foot-contact {
    margin-right: 2%;
  }
  footer .foot-contact .text1 {
    font-size: 18px;
  }
  footer .foot-contact .text3 {
    font-size: 25px;
  }
  footer .qr-code {
    width: 100px;
  }
}
@media screen and (max-width: 751px) {
  footer .mxw-box {
    max-width: 100%;
  }
  footer .top > .mxw-box {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  footer .foot-contact .text1 {
    margin-bottom: 15px;
  }
  footer .mxw-copyright .mxw-box {
    font-size: 12px;
  }
}
/* ==================== 底部样式 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: #e47e29;
}
/* ==================== 页面自定义样式 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 {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
    max-width: 1600px;
    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 ==================== */
