@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;
}
/* 图片统一动画 */
.nzbz-image {
  overflow: hidden;
  height: 100%;
  position: relative;
}

.nzbz-image:hover img {
  transform: scale(1.1);
}

.nzbz-image img {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
#goto-top {
  position: fixed;
  z-index: 10;
  right: 0.3333rem;
  bottom: 10%;
  width: 0.6667rem;
  height: 0.6667rem;
  cursor: pointer;
  background: #1c5fda;
  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 ==================== */
/* 标签页 */
.nzbz-tabs {
  padding-left: 0;
  padding-right: 0;
}
.nzbz-tabs .nzbz-tabs-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.nzbz-tabs .nzbz-tabs-wrap {
  position: relative;
  display: flex;
  overflow-x: scroll;
  max-width: 100%;
  align-items: center;
  justify-content: flex-start;
}
.nzbz-tabs .nzbz-tabs-wrap::-webkit-scrollbar {
  display: none;
}
.nzbz-tabs .nzbz-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;
}
.nzbz-tabs .nzbz-tabs-item:last-child {
  margin-right: 0;
}
.nzbz-tabs .nzbz-tabs-item.active {
  background: #1c5fda;
  color: #fff;
}
@media screen and (max-width: 751px) {
  .nzbz-tabs .nzbz-tabs-header {
    margin-bottom: 20px;
  }
  .nzbz-tabs .nzbz-tabs-item {
    font-size: 14px;
    padding: 0 20px;
    margin-right: 10px;
  }
  .nzbz-tabs .nzbz-tabs-item:last-child {
    margin-right: 0;
  }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.nzbz-keywords {
  z-index: 99;
  width: 100%;
  border-bottom: 1px solid #dfdfdf;
}
.nzbz-keywords .nzbz-box {
  height: 1.1667rem;
}
.nzbz-keywords .left {
  position: relative;
  flex-grow: 1;
  font-size: 0.3rem;
  line-height: 1.2;
  color: #333;
  padding-left: 0.25rem;
}
.nzbz-keywords .left:before {
  content: "";
  display: block;
  width: 1px;
  background: #e5e5e5;
  height: 1.1667rem;
  left: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.nzbz-keywords .left span {
  font-size: inherit;
  font-weight: bold;
  line-height: 1.2;
  color: #1c5fda;
}
.nzbz-keywords .left a {
  color: #666;
}
.nzbz-keywords .left a:hover {
  color: #1c5fda;
}
.nzbz-keywords .left a:last-child:after {
  display: none;
}
.nzbz-keywords .left a:after {
  content: "、";
}
.nzbz-keywords .right form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nzbz-keywords .right input {
  width: 5.6667rem;
  height: 1.1667rem;
  line-height: 1.1667rem;
  padding: 0.1667rem 0.25rem;
  font-size: 0.2333rem;
  color: #333;
  border-left: 1px solid #dddddd;
  border-right: 0;
}
.nzbz-keywords .right input::-webkit-input-placeholder {
  /*Webkit browsers*/
  color: #999;
  font-size: 14px;
}
.nzbz-keywords .right input:-moz-placeholder {
  /*Mozilla Firefox 4 to 8*/
  color: #999;
  font-size: 14px;
}
.nzbz-keywords .right input::moz-placeholder {
  /*Mozilla Firefox 19+*/
  color: #999;
  font-size: 14px;
}
.nzbz-keywords .right input:-ms-input-placeholder {
  /*Internet Explorer 10+*/
  color: #999;
  font-size: 14px;
}
.nzbz-keywords .right button {
  width: 1.1333rem;
  height: 1.1667rem;
  background: #1c5fda;
  border: 0;
  border-left: 0;
  cursor: pointer;
}
.nzbz-keywords .right button .icon {
  display: block;
  width: 0.2667rem;
  height: 0.2667rem;
  margin: 0 auto;
  background: url(../images/sousuo.png) no-repeat;
  background-size: 100%;
}
/* ==================== 关键词 end ==================== */
/* ==================== 头部 start ==================== */
header {
  width: 100%;
  z-index: 99;
  transition: all 0.4s;
  position: relative;
}
header .pc-nav .nzbz-box {
  overflow: visible;
}
header .pc-nav .welcome {
  background: #ececec;
}
header .pc-nav .welcome .nzbz-box {
  font-size: 14px;
  color: #666;
  line-height: 34px;
  height: 34px;
}
header .pc-nav .welcome .nzbz-box a:hover {
  color: #1c5fda;
}
header .pc-nav .welcome .left a {
  font-weight: bold;
  color: #1c5fda;
}
header .pc-nav .top {
  padding-top: 30px;
  padding-bottom: 30px;
}
header .pc-nav .bottom {
  background-color: #1c5fda;
}
header .pc-nav .logo {
  width: 550px;
  position: relative;
  flex-shrink: 0;
}
header .pc-nav .text01 {
  flex-grow: 1;
  color: #040202;
  position: relative;
  margin-left: 30px;
  padding-left: 30px;
}
header .pc-nav .text01:before {
  content: "";
  display: block;
  width: 1px;
  height: 70px;
  background: #ddd;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .pc-nav .text01:before {
  right: auto;
  left: 0;
}
header .pc-nav .text01 .cn {
  font-size: 27px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
}
header .pc-nav .text01 .cn strong {
  color: #1c5fda;
}
header .pc-nav .text01 .cn02 {
  font-size: 18px;
  line-height: 1.2;
  color: #666;
}
header .pc-nav .tel {
  margin-right: 30px;
  color: #333;
}
header .pc-nav .tel .icon {
  width: 40px;
  margin-right: 20px;
  flex-shrink: 0;
}
header .pc-nav .tel .desc {
  font-size: 18px;
  line-height: 1.2;
}
header .pc-nav .tel .desc p {
  margin-bottom: 5px;
}
header .pc-nav .tel .desc p:last-child {
  margin-bottom: 0;
}
header .pc-nav .tel .desc strong {
  font-size: 36px;
  line-height: 1;
}
header .pc-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  flex-grow: 1;
}
header .pc-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  text-align: center;
  flex-grow: 1;
}
header .pc-menu > li.active > a,
header .pc-menu > li:hover > a {
  background-color: #202b3f;
  color: #fff !important;
}
header .pc-menu > li:last-child {
  padding-right: 0;
}
header .pc-menu > li ul {
  background-color: #fff;
  width: 3.3333rem;
  position: relative;
  display: none;
  transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
}
header .pc-menu > li ul:hover {
  opacity: 1;
  visibility: visible;
}
header .pc-menu > li ul li.active > ul,
header .pc-menu > li ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
header .pc-menu > li ul li a {
  position: relative;
}
header .pc-menu > li ul li a:after {
  content: "";
  display: block;
  width: 80%;
  height: 0.0167rem;
  background-color: #eee;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
header .pc-menu > li ul a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  font-size: 0.2333rem;
  color: #333;
  line-height: 1.2;
  padding: 0.2333rem;
}
header .pc-menu > li > a {
  font-size: 18px;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
header .pc-menu > li > ul {
  border-top: 0.0167rem solid #ddd;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
header .pc-menu > li > ul > li > a.active,
header .pc-menu > li > ul > li > a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
header .pc-menu > li > ul > li > a.active:after,
header .pc-menu > li > ul > li > a:hover:after {
  display: none;
}
header .pc-menu > li > ul > li > a:last-child:after {
  display: none;
}
header .pc-menu > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 0.0167rem solid #ddd;
}
header .pc-menu > li > ul > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 0.0167rem solid #ddd;
}
@media screen and (max-width: 1680px) {
  header .welcome .nzbz-box,
  header .pc-nav .nzbz-box {
    max-width: 96%;
  }
}
@media screen and (max-width: 1430px) {
  header .pc-nav .top {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  header .pc-nav .logo {
    width: 300px;
  }
  header .pc-nav .text01 {
    padding-left: 20px;
    margin-left: 20px;
  }
  header .pc-nav .text01 .cn {
    font-size: 22px;
    margin-bottom: 5px;
  }
  header .pc-nav .text01 .cn02 {
    font-size: 16px;
  }
  header .pc-nav .tel .desc strong {
    font-size: 30px;
  }
  header .pc-menu > li > a {
    font-size: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
@media screen and (max-width: 1200px) {
  header .pc-nav .nzbz-box {
    justify-content: space-between;
  }
  header .pc-nav .text01 {
    display: none;
  }
}
/* ==================== 头部 end ==================== */
/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
  header {
    z-index: 999;
  }
  .nzbz-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;
  }
  .nzbz-mob-nav .logo {
    display: block;
    flex-shrink: 0;
  }
  .nzbz-mob-nav .logo img {
    height: 40px;
  }
  .nzbz-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;
  }
  .nzbz-mob-nav .menu-btn i {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 100px;
    background: #333;
  }
  .nzbz-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%);
  }
  .nzbz-mob-nav .menus-box.active {
    visibility: visible;
    opacity: 1;
  }
  .nzbz-mob-nav .menus-box.active .menus {
    transform: translateX(0);
  }
  .nzbz-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;
  }
  .nzbz-mob-nav .menus > ul {
    width: 100%;
    overflow: auto;
  }
  .nzbz-mob-nav .menus > ul > li.active > ul {
    display: block;
  }
  .nzbz-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;
  }
  .nzbz-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;
  }
  .nzbz-mob-nav .menus > ul > li > ul {
    display: none;
    padding: 0px 24px;
  }
  .nzbz-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;
  }
  .nzbz-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;
  }
  .nzbz-mob-nav .menus-head .text {
    color: #333;
    line-height: 1.2;
  }
  .nzbz-mob-nav .menus-head .nzbz-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none;
    position: relative;
    transform: rotate(45deg);
  }
  .nzbz-mob-nav .menus-head .nzbz-close:before,
  .nzbz-mob-nav .menus-head .nzbz-close:after {
    content: "";
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
  }
  .nzbz-mob-nav .menus-head .nzbz-close:before {
    width: 2px;
    height: 100%;
  }
  .nzbz-mob-nav .menus-head .nzbz-close:after {
    width: 100%;
    height: 2px;
  }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.nzbz-banner {
  font-size: 0;
  position: relative;
}
.nzbz-banner .swiper-slide {
  overflow: hidden;
}
.nzbz-banner .swiper-slide img {
  width: 100%;
}
.nzbz-banner .swiper-pagination {
  width: 100%;
  max-width: 1680px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 25px;
  right: 50%;
  transform: translateX(50%);
  left: auto;
  padding-right: 40px;
}
.nzbz-banner .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #fff;
  opacity: 1;
  margin-left: 9px;
  margin-right: 9px;
}
.nzbz-banner .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.nzbz-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1c5fda;
}
.nzbz-banner .swiper-button-next,
.nzbz-banner .swiper-button-prev {
  width: 1.1667rem;
  height: 1.1667rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.18);
  background-image: none;
  outline: none;
}
.nzbz-banner .swiper-button-next {
  right: 0.75rem;
}
.nzbz-banner .swiper-button-prev {
  left: 0.75rem;
}
.nzbz-banner .banner-swiper {
  --swiper-navigation-color: #fff;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 24px;
  /* 设置按钮大小 */
}
@media screen and (max-width: 751px) {
  .nzbz-banner .swiper-pagination {
    padding-right: 0px;
    bottom: 10px;
    max-width: 80%;
  }
  .nzbz-banner .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    font-size: 14px;
    width: 8px;
    height: 8px;
  }
  .nzbz-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-size: 18px;
  }
  .nzbz-banner .swiper-button-next,
  .nzbz-banner .swiper-button-prev {
    display: none;
  }
}
/* ==================== 轮播图 end ==================== */
/* ==================== 通用标题 start ==================== */
.nzbz-title {
  overflow: hidden;
  text-align: center;
  margin-bottom: 0.6667rem;
}
.nzbz-title .en {
  font-size: 0.2667rem;
  line-height: 1.2;
  font-weight: 200;
  color: #1c5fda;
  margin-bottom: 0.25rem;
}
.nzbz-title .en .text {
  display: inline-block;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nzbz-title .en .text:before {
  content: "-";
  padding-right: 0.0833rem;
}
.nzbz-title .en .text:after {
  content: "-";
  padding-left: 0.0833rem;
}
.nzbz-title .cn {
  font-weight: bold;
  font-size: 0.7333rem;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 0.3167rem;
}
.nzbz-title .cn strong {
  color: #1c5fda;
}
.nzbz-title .desc {
  font-size: 0.3rem;
  color: #626262;
  line-height: 1.2;
}
@media screen and (max-width: 751px) {
  .nzbz-title {
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .nzbz-title .cn {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .nzbz-title .en {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .nzbz-title .desc {
    font-size: 12px;
    line-height: 1.6;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 产品中心 start ==================== */
.nzbz-product {
  overflow: hidden;
}
.nzbz-product .nzbz-tabs-header {
  margin-bottom: 0.6667rem;
}
.nzbz-product .nzbz-tabs-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.3333rem;
  line-height: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  background-color: #f7f7f7;
  padding-left: 0.1667rem;
  padding-right: 0.1667rem;
  border: solid 0.0167rem #dcdcdc;
}
.nzbz-product .nzbz-tabs-item.active,
.nzbz-product .nzbz-tabs-item:hover {
  border-color: transparent;
  background: #2163dc;
}
.nzbz-product .nzbz-tabs-item.active .image img,
.nzbz-product .nzbz-tabs-item:hover .image img {
  margin-top: 0;
}
.nzbz-product .nzbz-tabs-item.active .name,
.nzbz-product .nzbz-tabs-item:hover .name {
  color: #fff;
}
.nzbz-product .nzbz-tabs-item:last-child {
  margin-right: 0;
}
.nzbz-product .nzbz-tabs-item .image {
  width: 0.5rem;
  height: 0.5rem;
  overflow: hidden;
  font-size: 0;
  margin-right: 0.3333rem;
}
.nzbz-product .nzbz-tabs-item .image img {
  margin-top: -1rem;
  transition: all 0.4s;
}
.nzbz-product .nzbz-tabs-item .name {
  font-size: 0.3167rem;
  color: #1a1a1a;
  line-height: 1.2;
}
.nzbz-product .nzbz-tabs-swiper > .swiper-wrapper > .swiper-slide {
  overflow: hidden;
}
.nzbz-product .item {
  border: 1px solid #ededed;
  margin-bottom:1px;
  align-items: stretch;
}
.nzbz-product .item .image {
  width: 40%;
  flex-shrink: 0;
}
.nzbz-product .item .info {
  padding: 0.6667rem 0.6667rem;
  text-align: center;
}
.nzbz-product .item .info .cn {
  font-size: 0.5333rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.0833rem;
  font-weight: bold;
}
.nzbz-product .item .info .en {
  font-size: 0.2333rem;
  color: #929292;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.nzbz-product .item .info .icon {
  width: 100%;
  height: 0.0167rem;
  background: #dcdcdc;
  position: relative;
  margin-bottom: 0.5rem;
}
.nzbz-product .item .info .icon:after {
  content: "";
  display: block;
  width: 1.5833rem;
  height: 0.05rem;
  background: #194bd8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.nzbz-product .item .info .desc {
  text-align: justify;
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 0.8333rem;
  height: 5.4em;
}
.nzbz-product .item .info .head {
  font-size: 0.3333rem;
  line-height: 1.2;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.4167rem;
  display: flex;
  align-items: center;
  display: none;
}
.nzbz-product .item .info .head:before {
  content: "";
  display: block;
  background: url(../images/sjiantou.png) no-repeat center;
  width: 0.4rem;
  height: 0.3333rem;
  background-size: 100%;
  margin-right: 0.1667rem;
}
.nzbz-product .itembox {
  margin-bottom: 0.6667rem;
  display:none;
}
.nzbz-product .itembox .item02 {
  text-align: center;
}
.nzbz-product .itembox .image {
  width: 1.6667rem;
  margin-bottom: 0.25rem;
  border-radius: 100%;
}
.nzbz-product .itembox .name {
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.2;
}
.nzbz-product .more {
  width: 2.6667rem;
  font-size: 0.2667rem;
  color: #fff;
  line-height: 0.7rem;
  margin: 0 auto;
  height: 0.7rem;
  background-color: #1c5fda;
}
.nzbz-product .product-swiper {
  max-width: 50%;
  overflow: visible;
}
.nzbz-product .product-swiper .swiper-slide-prev,
.nzbz-product .product-swiper .swiper-slide-next {
  opacity: 0.5;
}
@media screen and (min-width: 751px) {
  .nzbz-product {
    padding-top: 0.8333rem;
    padding-bottom: 1.5rem;
  }
}
@media screen and (max-width: 751px) {
  .nzbz-product {
    padding: 30px 20px;
  }
  .nzbz-product .item {
    flex-flow: column;
  }
  .nzbz-product .nzbz-tabs-header {
    margin-bottom: 20px;
  }
  .nzbz-product .nzbz-tabs-wrap {
    flex-wrap: wrap;
  }
  .nzbz-product .nzbz-tabs-item {
    width: 32%;
    height: auto;
    line-height: inherit;
    padding: 10px;
    margin-right: 0px;
  }
  .nzbz-product .nzbz-tabs-item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .nzbz-product .nzbz-tabs-item:nth-child(3) ~ .nzbz-tabs-item {
    margin-top: 2%;
  }
  .nzbz-product .nzbz-tabs-item:last-child {
    margin-right: 0;
  }
  .nzbz-product .nzbz-tabs-item .name {
    font-size: 12px;
  }
  .nzbz-product .nzbz-tabs-item .image {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .nzbz-product .nzbz-tabs-item .image img {
    margin-top: -20px;
  }
  .nzbz-product .item .image {
    width: 100%;
  }
  .nzbz-product .item .info {
    padding: 20px 10px;
  }
  .nzbz-product .item .info .cn {
    font-size: 18px;
  }
  .nzbz-product .item .info .icon {
    margin-bottom: 10px;
  }
  .nzbz-product .item .info .desc {
    margin-bottom: 20px;
  }
  .nzbz-product .itembox {
    margin-bottom: 20px;
  }
  .nzbz-product .item02 {
    width: 23.5%;
    margin: 0!important;
    margin-right: 2%!important;
  }
  .nzbz-product .item02:nth-child(4n) {
    margin-right: 0!important;
  }
  .nzbz-product .product-swiper{max-width: 100%;}
}
/* ==================== 产品中心 end ==================== */
/* ==================== 通用 swiper 前进后退按钮 start ==================== */
.nzbz-swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/swjiantou.png) no-repeat center;background-size:100%;
  width: 1rem;
  height: 1rem;
  outline: none;
  cursor: pointer;
  z-index: 9;
}
.nzbz-swiper-btn.nzbz-swiper-prev {
  left: -1.3rem;
  transform: translateY(-50%) rotateY(180deg);
}
.nzbz-swiper-btn.nzbz-swiper-next {
  right: -1.3rem;
}
/* ==================== 通用 swiper 前进后退按钮 end ==================== */
/* ==================== 热销产品 start ==================== */
.nzbz-hot-product {
  overflow: hidden;
  background: url(../images/cpbg.jpg) no-repeat center;
  background-size: cover;
}
.nzbz-hot-product .body {
  position: relative;
}
.nzbz-hot-product .item .image {
  margin-bottom: 9px;
}
.nzbz-hot-product .item .image img {
  width: 100%;
}
.nzbz-hot-product .item .name {
  width: 100%;
  height: 46px;
  line-height: 46px;
  text-align: center;
  padding: 0 20px;
  color: #fff;
  background: #1c5fda;
  font-size: 18px;
}
@media screen and (min-width: 751px) {
  .nzbz-hot-product .nzbz-box {
    overflow: visible;
    padding-top: 1.1rem;
    padding-bottom: 1.4667rem;
  }
  .nzbz-hot-product .nzbz-title {
    margin-bottom: 1.0667rem;
  }
}
@media screen and (max-width: 751px) {
  .nzbz-hot-product .item .name {
    line-height: inherit;
    height: auto;
    padding: 8px 10px;
    font-size: 14px;
  }
}
/* ==================== 热销产品 end ==================== */
/* ==================== 合作伙伴 start ==================== */
.nzbz-partner {
  overflow: hidden;
  padding-top: 1.1167rem;
}
.nzbz-partner .title {
  text-align: center;
}
.nzbz-partner .title .text01 {
  font-size: 0.7rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color:#333;
}
.nzbz-partner .title .text02 {
  font-size: 0.3rem;
  color: #626262;
  line-height: 1.2;
  margin-bottom: 1.1667rem;
}
.nzbz-partner .body {
  align-items: stretch;
}
.nzbz-partner .itembox {
  flex-grow: 1;
  background: #e7e7e7;
  padding: 0.3333rem;
}
.nzbz-partner .left-image {
  flex-grow: 1;
}
.nzbz-partner .info {
  padding: 1.1667rem 0.6667rem;
  width: 14.8rem;
  flex-shrink: 0;
  background: url(../images/hzbg.jpg) no-repeat;
  background-size: cover;
  color: #fff;
}
.nzbz-partner .info .text01 {
  font-size: 0.6rem;
  font-weight: bold;
  margin-bottom: 0.3333rem;
}
.nzbz-partner .info .text02 {
  font-size: 0.2667rem;
  margin-bottom: 0.3333rem;
  line-height: 1.8em;
  text-align: justify;
}
.nzbz-partner .info .image {
  background: #fff;
  border-radius: 0.0833rem;
}
.nzbz-partner .info-box {
  width: 100%;
  max-width: 610px;
}
.nzbz-partner .partner-swiper .swiper-wrapper {
  flex-wrap: wrap;
  flex-flow: row wrap;
}
.nzbz-partner .partner-swiper .swiper-slide {
  margin-top: 25.002px !important;
}
.nzbz-partner .more {
  margin-top: 0.8333rem;
  width: 100%;
}
.nzbz-partner .more:hover {
  color: #fff;
}
.nzbz-partner .more:before {
  content: "";
  display: block;
  flex-grow: 1;
  height: 0.0167rem;
  background: #fff;
  opacity: 0.3;
  margin-right: 0.4rem;
}
.nzbz-partner .more .text {
  font-size: 0.3rem;
  color: #fff;
  line-height: 1.2;
  flex-shrink: 0;
}
@media screen and (min-width: 751px) {
  .nzbz-partner .itembox .u-col {
    width: 49%;
  }
  .nzbz-partner .itembox .u-col:nth-child(2n) {
    margin-left: 2%;
  }
  .nzbz-partner .itembox .u-col:nth-child(2) ~ .u-col {
    margin-top: 2%;
  }
  .nzbz-partner .itembox .u-col .image {
    width: 100%;
    height: 100%;
    background-repeat: center;
    background: cover;
  }
}
@media screen and (max-width: 751px) {
  .nzbz-partner {
    padding: 30px 20px;
  }
  .nzbz-partner .title .text01 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .nzbz-partner .title .text02 {
    font-size: 12px;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  .nzbz-partner .body {
    flex-flow: column;
  }
  .nzbz-partner .itembox {
    padding: 10px;
  }
  .nzbz-partner .itembox .u-col {
    width: 49%;
    margin-right: 2%;
    margin-top: 0!important;
  }
  .nzbz-partner .itembox .u-col:nth-child(2n) {
    margin-right: 0;
  }
  .nzbz-partner .itembox .u-col:nth-child(2) ~ .u-col {
    margin-top: 2%!important;
  }
  .nzbz-partner .info {
    width: 100%;
    padding: 20px 15px;
  }
  .nzbz-partner .info .text01 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
  }
  .nzbz-partner .info .text02 {
    margin-bottom: 10px;
  }
  .nzbz-partner .partner-swiper .swiper-slide {
    margin-top: 10px!important;
  }
  .nzbz-partner .more {
    margin-top: 20px;
  }
  .nzbz-partner .info-box {
    max-width: 100%;
  }
}
/* ==================== 合作伙伴 end ==================== */
/* ==================== 四大优势 start ==================== */
.nzbz-advantage {
  background-color: #f8f8f8;
}
.nzbz-advantage .itembox {
  margin-bottom: 0.6667rem;
}
.nzbz-advantage .item {
  width: 25%;
  padding: 0.5rem;
  border: 0.0167rem solid #eee;
  position: relative;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
}
.nzbz-advantage .item.active,
.nzbz-advantage .item:hover {
  border-color: #1c5fda;
  background: #1c5fda;
}
.nzbz-advantage .item.active .num,
.nzbz-advantage .item:hover .num {
  color: #fff;
}
.nzbz-advantage .item.active .name,
.nzbz-advantage .item:hover .name {
  color: #fff;
}
.nzbz-advantage .item:before {
  content: "";
  display: block;
  background: url(../images/yuanxin.png) no-repeat center;
  width: 0.3667rem;
  height: 0.3667rem;
  position: absolute;
  top: -0.1833rem;
  left: 50%;
  transform: translateX(-50%);
}
.nzbz-advantage .item .num {
  font-size: 0.8rem;
  font-weight: bold;
  color: #1c5fda;
  line-height: 1.1;
  margin-bottom: 0.1667rem;
  font-family: fantasy;
}
.nzbz-advantage .item .name {
  font-size: 0.4rem;
  color: #666;
  line-height: 1.2;
}
.nzbz-advantage .body {
  background: #fff;
  box-shadow: 0 0 0.1667rem #e5e5e5;
}
.nzbz-advantage .item02 {
  display: flex;
  align-items: center;
  padding: 0.5rem;
}
.nzbz-advantage .item02 .image {
  width: 9.6667rem;
  flex-shrink: 0;
  margin-right: 1.5rem;
}
.nzbz-advantage .item02 .text01 {
  font-size: 0.4rem;
  color: #888;
  line-height: 1.2;
  margin-bottom: 0.15rem;
}
.nzbz-advantage .item02 .text02 {
  font-size: 0.5rem;
  line-height: 1.2;
  color: #333;
}
.nzbz-advantage .item02 .text02:after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 0.0833rem;
  background: #1c5fda;
  margin-top: 0.3333rem;
  margin-bottom: 0.5833rem;
}
.nzbz-advantage .item02 .desc {
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}
.nzbz-advantage .item02 .desc p {
  font-size: 0.2667rem;
  line-height: 2;
  color: #666;
  position: relative;
}
.nzbz-advantage .item02 .desc p:before {
  content: "";
  display: block;
  width: 0.1667rem;
  height: 0.1667rem;
  background: #1c5fda;
  position: absolute;
  left: -0.5rem;
  top: 0.1667rem;
}
@media screen and (min-width: 751px) {
  .nzbz-advantage .nzbz-box {
    padding-top: 1rem;
    padding-bottom: 2.1667rem;
  }
  .nzbz-advantage .nzbz-title {
    margin-bottom: 1.0167rem;
  }
}
@media screen and (max-width: 751px) {
  .nzbz-advantage .itembox {
    margin-bottom: 20px;
  }
  .nzbz-advantage .item {
    padding: 15px 5px;
  }
  .nzbz-advantage .item .num {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .nzbz-advantage .item .name {
    font-size: 14px;
  }
  .nzbz-advantage .item:before {
    width: 10px;
    height: 10px;
    background-size: 100%;
    top: -5px;
  }
  .nzbz-advantage .item02 {
    flex-flow: column;
    padding: 20px 10px;
  }
  .nzbz-advantage .item02 .image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .nzbz-advantage .item02 .text01 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .nzbz-advantage .item02 .text02 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
  }
  .nzbz-advantage .item02 .text02:after {
    margin-top: 10px;
    margin-bottom: 20px;
    width: 40px;
    height: 3px;
  }
  .nzbz-advantage .item02 .desc {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  .nzbz-advantage .item02 .desc p {
    font-size: 14px;
  }
  .nzbz-advantage .item02 .desc p:before {
    width: 8px;
    height: 8px;
    left: -20px;
  }
}
/* ==================== 四大优势 end ==================== */
/* ==================== 通用按钮02 start ==================== */
.nzbz-more02 {
  width: 5rem;
  display: block;
  line-height: 0.6667rem;
  height: 0.6667rem;
  background: #1c5fda;
  text-align: center;
  font-size: 0.2667rem;
  color: #fff;
}
.nzbz-more02:hover {
  color: #fff !important;
}
@media screen and (max-width: 751px) {
  .nzbz-more02 {
    width: 100%;
    height: auto;
    line-height: inherit;
    font-size: 12px;
    padding: 8px 10px;
  }
}
/* ==================== 通用按钮02 end ==================== */
/* ==================== 关于我们 start ==================== */
.nzbz-about {
  overflow: hidden;
  background: url(../images/abbg.jpg) no-repeat center;
  position: relative;
  background-size: cover;
}
.nzbz-about .body {
  padding-top: 1.3333rem;
  padding-bottom: 1rem;
  padding-left: 4rem;
  padding-right: 1.1667rem;
  border-right: 0.1667rem solid #1c5fda;
  background: rgba(255, 255, 255, 0.97);
  display:flex;align-items:center;
}
.nzbz-about .body .left{
}
.nzbz-about .body .right{
  width:11.5rem;
  margin-left:0.6667rem;
}
.nzbz-about .nzbz-title {
  text-align: left;
  margin-bottom: 0.5rem;
}
.nzbz-about .nzbz-title .en {
  margin-bottom: 0.1667rem;
}
.nzbz-about .nzbz-title .en .text {
  justify-content: flex-start;
}
.nzbz-about .nzbz-title .cn {
  margin-bottom: 0;
}
.nzbz-about .nzbz-title .cn:after {
  content: "";
  display: block;
  width: 1.2667rem;
  height: 0.0667rem;
  background: #1c5fda;
  margin-top: 0.3333rem;
}
.nzbz-about .desc {
  text-align: justify;
  width: 9.6667rem;
  line-height: 2;
  color: #5f5f5f;
  font-size: 0.2833rem;
  margin-bottom: 0.8333rem;
}
@media screen and (min-width: 751px) {
  .nzbz-about {
    background-attachment: fixed;
    display: flex;
    align-items: center;
    height: 13.1rem;
  }
  .nzbz-about .body{padding-left:7%;}
}
@media screen and (max-width: 751px) {
  .nzbz-about {
    height: auto;
    padding: 0;
    padding-top: 30px;
    background: none;
    padding-bottom: 30px;
  }
  .nzbz-about .body {
    position: relative;
    width: 90%;
    padding: 30px 20px;
    border-right: 0;
    margin: -50px auto 0;
    z-index: 9;
    right: auto;
    bottom: auto;
    background-size: 100%;
    background-position: center top;
    box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.18);
    flex-wrap:wrap;
  }
  .nzbz-about .body .right{
    widows:100%;margin-left:0;margin-top:20px;
  }
  .nzbz-about .desc {
    width: 100%;
    margin-bottom: 20px;
  }
  .nzbz-about .nzbz-title {
    padding: 0;
  }
  .nzbz-about .nzbz-title .cn:after {
    width: 40px;
    height: 2px;
  }
}
/* ==================== 关于我们 end ==================== */
/* ==================== 新闻资讯 start ==================== */
.nzbz-news {
  background-color: #fafafa;
}
.nzbz-news .item {
  display: block;
}
.nzbz-news .item:hover .title {
  color: #1c5fda;
}
.nzbz-news .item .info {
  background-color: #fff;
  padding: 0.6667rem 0.5rem;
  box-shadow: 0 0 0.1667rem -0.0333rem rgba(0, 0, 0, 0.18);
}
.nzbz-news .item .time {
  font-size: 0.2667rem;
  line-height: 1.2;
  color: #666;
  margin-bottom: 0.1667rem;
}
.nzbz-news .item .title {
  font-size: 0.3333rem;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.nzbz-news .item .desc {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 0.3333rem;
}
.nzbz-news .item .nzbz-more {
  color: #1c5fda;
  text-transform: uppercase;
  font-size: 0.2333rem;
}
.nzbz-news .right .item {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.0167rem dashed #ccc;
  transition: all 0.4s;
}
.nzbz-news .right .item:hover {
  transform: translateX(0.3333rem);
}
.nzbz-news .right .item:first-child {

}
@media screen and (min-width: 751px) {
  .nzbz-news .nzbz-box {
    padding-top: 1.0833rem;
    padding-bottom: 1.5rem;
  }
  .nzbz-news .nzbz-title {
    margin-bottom: 1rem;
  }
  .nzbz-news .nzbz-title .cn {
    margin-bottom: 0;
  }
  .nzbz-news .body {
    display: flex;
    align-items: flex-start;
  }
  .nzbz-news .left {
    width: 11.8333rem;
    flex-shrink: 0;
    margin-right: 0.6667rem;
  }
  .nzbz-news .right {
    min-width: 0;
    flex-grow: 1;
  }
}
@media screen and (max-width: 751px) {
  .nzbz-news .item .info {
    padding: 20px 15px;
  }
  .nzbz-news .item .title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .nzbz-news .left {
    margin-bottom: 20px;
  }
  .nzbz-news .right .item {
    padding-bottom: 15px;
    padding-top: 15px;
  }
}
/* ==================== 新闻资讯 end ==================== */
/* ==================== 留言板 start ==================== */
.nzbz-message {
  background: url(../images/xwbg.jpg) no-repeat center;
  background-size: cover;
}
.nzbz-message .left .text1 {
  font-size: 0.9rem;
  font-weight: bold;
  color: #000;
  line-height: 1.2;
  margin-bottom: 0.3333rem;
}
.nzbz-message .left .text2 {
  font-size: 0.3667rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.8333rem;
}
.nzbz-message .left .tel {
  display: flex;
  align-items: center;
}
.nzbz-message .left .tel .icon {
  width: 0.6rem;
  flex-shrink: 0;
  margin-right: 0.1667rem;
}
.nzbz-message .left .tel .text {
  font-size: 0.2rem;
  margin-right: 0.3333rem;
}
.nzbz-message .left .tel .text span {
  display: block;
  color: #333;
}
.nzbz-message .left .tel .number {
  font-size: 0.4667rem;
  color: #1c5fda;
  line-height: 1.2;
  font-weight: bold;
}
.nzbz-message form input,
.nzbz-message form textarea {
  border: 0;
  outline: none;
  resize: none;
}
.nzbz-message form label {
  width: 100%;
  height: 0.8667rem;
  background-color: #fff;
  font-weight:400;
  display:block;
}
.nzbz-message form label input {
  display: block;
  width: 100%;
  height: 100%;
}
.nzbz-message form .top {
  display: flex;
  align-items: center;
  margin-bottom: 0.3333rem;
}
.nzbz-message form .top label {
  position:relative;
  padding-left: 0.3333rem;
  padding-right: 0.3333rem;
}
.nzbz-message form .top label:first-child {
  margin-right: 0.3333rem;
}
.nzbz-message form .nzbz-textarea {
  position:relative;
  height:auto;
}
.nzbz-message form textarea {
  display: block;
  width: 100%;
  padding: 0.25rem 0.3333rem;
  height: 1.2333rem;
  margin-bottom: 0.3333rem;
}
.nzbz-message form .code-image {
  display: flex;
  align-items: stretch;
}
.nzbz-message form .code-left {
  width: 100%;
  margin-right: 0.3333rem;
  display: flex;
  align-items: stretch;
  background-color: #fff;
}
.nzbz-message form .code-left input {
  width: 100%;
  padding-left: 0.3333rem;
  padding-right: 0.3333rem;
  height:0.8667rem;
}
.nzbz-message form .code-left img {
  cursor: pointer;
}
.nzbz-message form button {
  width: 100%;
  background-color: #1c5fda;
  color: #fff;
  display: block;
  cursor: pointer;
  font-size: 0.2667rem;
  border-radius: 0.05rem;
}
.nzbz-message .msg-box{position:absolute;left:0;bottom:0;transform:translateY(100%);top:auto;right:auto;margin-top:0;}
.nzbz-message .n-icon{display:none;}
.nzbz-message .n-default .msg-wrap{position:static;}
@media screen and (min-width: 751px) {
  .nzbz-message .nzbz-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nzbz-message form {
    width: 10.5rem;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 751px) {
  .nzbz-message .left {
    margin-bottom: 20px;
  }
  .nzbz-message .left .tel .text {
    font-size: 0;
    margin-right: 10px;
  }
  .nzbz-message .left .tel .text span {
    display: inline;
    font-size: 14px;
  }
  .nzbz-message .left .text1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .nzbz-message .left .text2 {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .nzbz-message form .top {
    margin-bottom: 0px;
    flex-wrap: wrap;
  }
  .nzbz-message form .top label {
    width: 100%;
    margin-bottom: 20px;
  }
  .nzbz-message form .top label:first-child {
    margin-right: 0;
  }
  .nzbz-message form textarea {
    height: 100px;
    margin-bottom: 20px;
  }
  .nzbz-message form .code-image {
    flex-wrap: wrap;
  }
  .nzbz-message form .code-left {
    margin-right: 0;
  }
  .nzbz-message form button {
    margin-top: 20px;
    height: 40px;
    line-height: 40px;
  }
}
/* ==================== 留言板 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
  background: #1f1f1f;
}
footer > .nzbz-box {
  padding-top: 1.3333rem;
  padding-bottom: 0.8333rem;
}
footer .foot-nav {
  margin-bottom: 0.9167rem;
}
footer .foot-nav .head {
  display:block;
  font-size: 0.3rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.6667rem;
  line-height: 1.2;
}
footer .foot-nav > li {
  width: 2rem;
  margin-right: 1.1667rem;
  flex-shrink: 0;
}
footer .foot-nav > .col-2 {
  width: 3.3333rem;
}
footer .foot-nav > .col-2 .foot-sub {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .foot-nav > .col-2 .foot-sub > li {
  width: 50%;
}
footer .foot-sub > li {
  font-size: 0.2333rem;
  color: #949494;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 0.25rem;
}
footer .foot-sub > li:last-child {
  margin-bottom: 0;
}
footer .text01 {
  padding-right: 0.3333rem;
  flex-grow: 1;
}
footer .text01 p {
  font-size: 0.2333rem;
  color: #949494;
  line-height: 1.8;
}
footer .text01 strong {
  color: #1c5fda;
  font-size: 0.4667rem;
  line-height: 1;
  display: block;
  margin-top: 10px;
  margin-bottom: 20px;
}
footer .qr {
  width: 2rem;
  text-align: center;
  font-size: 0.2rem;
  line-height: 1.2;
  color: #949494;
}
footer .qr img {
  margin-bottom: 0.4rem;
}
footer .nzbz-copyright {
  font-size: 0.2333rem;
  color: #949494;
  line-height: 1.8;
  text-align: left;
}
footer .nzbz-links {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  z-index: 99;
  font-size: 0.2333rem;
  color: #606060;
  line-height: 1.8;
  position: relative;
}
footer .nzbz-links .title {
  cursor: pointer;
  display: inline-block;
  vertical-align: inherit;
  font-size: 0.2667rem;
  color: #fff;
  line-height: 1.2;
  margin-right: 0.1667rem;
}
footer .nzbz-links .title img {
  width: 0.2333rem;
  margin-right: 0.0833rem;
}
footer .nzbz-links > a {
  padding-right: 0.25rem;
}
footer .nzbz-links .nzbz-links-online {
  position: absolute;
  top: -0.1667rem;
  left: 0%;
  background: #eee;
  padding: 0.0833rem 0.1667rem;
  color: #333;
  font-size: 0.2rem;
  border: 1px solid #ddd;
  transform: translate(0%, -100%);
  display: none;
}
footer .nzbz-links .nzbz-links-online a {
  padding-right: 0.25rem;
  line-height: 2;
}
footer .nzbz-links .nzbz-links-online a:last-child {
  padding-right: 0;
}
footer .bottom {
  background-color: #161616;
}
@media screen and (max-width: 751px) {
  footer .top {
    flex-flow: column;
    width: 100%;
  }
  footer .nzbz-box {
    padding-bottom: 10px;
    padding-top: 20px;
  }
  footer .text01 {
    width: 100%;
    margin-right: 0;
    text-align: center;
    padding-right: 0;
    margin-bottom: 20px;
  }
  footer .text01 p {
    font-size: 13px;
  }
  footer .nzbz-copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.nzbz-box {
  max-width: 1440px;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}
.nzbz-box p {
  margin-bottom: 0;
}
.nzbz-box a:hover {
  color: #1c5fda;
}
/* 内页 banner */
.ny-banner img {
  width: 100%;
}
/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px !important;
  }
}
@media screen and (max-width: 1680px) {
  .nzbz-box {
    max-width: 86%;
  }
}
@media screen and (min-width: 751px) {
  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }
  .nzbz-ny-box {
    max-width: 1440px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1680px) {
  .nzbz-ny-box {
    max-width: 90%;
  }
}
@media screen and (max-width: 751px) {
  .nzbz-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;
  }
  .nzbz-box {
    padding: 30px 20px;
    max-width: 100%;
  }
  .nzbz-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 ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#1c5fda;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.ywcbs-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.ywcbs-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.ywcbs-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.ywcbs-album-list li:nth-child(3)~li{margin-top:2%;}
.ywcbs-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
  /* .page-wrap{padding-top:30px;} */
  .easyzoom-flyout img{max-width:inherit;}
  .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
  body{padding-bottom:0;padding-top:0;margin-bottom:50px;}
  .page-product-detail-effect .big-img{pointer-events:none;}
  .page-banner .nybt h3{font-size:20px;}
  .page-product-detail-effect .big-img a{height:auto;}
  .container2{padding-left:20px;padding-right:20px;}
  .page-product-detail-effect .big-img{height:auto;}
  .page-banner{
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .page-banner>img{
    max-width: 240%;
    width:240%;
  }
  .ywcbs-product-list,
  .ywcbs-case-list{display:flex;flex-wrap:wrap;}
  .ywcbs-product-list li,
  .ywcbs-case-list li{width:48%;margin:0;}
  .ywcbs-product-list li:nth-child(2n),
  .ywcbs-case-list li:nth-child(2n){margin-left:4%;}
  .ywcbs-product-list li:nth-child(2)~li,
  .ywcbs-case-list li:nth-child(2)~li{margin-top:4%;}
  .ywcbs-pagination>div{margin-bottom:10px;}
  .ywcbs-case-list li h3 a{padding-bottom:0;}
  .ywcbs-news-list li{padding:15px;margin-bottom:15px;}
  .ywcbs-news-list li .more{text-align:center;margin-top:0px;}
  .ywcbs-news-list li .more span{width:90px;margin:0 auto;}
  .product-detail-tabcon{font-size:16px;}
  .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
  .product-detail-tab .product-detail-tabli{height:auto;}
  /* 相册调整 */
  .ywcbs-album-list{justify-content:space-between;}
  .ywcbs-album-list:before,
  .ywcbs-album-list:after{display:none;}
  .ywcbs-album-list li{width:48%;margin:0;}
  .ywcbs-album-list li:nth-child(2)~li{margin-top:2%;}
}


