@charset "utf-8";
/* 公共响应变量 */
@font-face {
  font-family: 'NEXABOLD';
  src: url('../fonts/NEXABOLD.OTF') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  /* 可选：控制字体加载时的显示行为 */
}
.font-num {
  font-family: 'NEXABOLD';
}
:root {
  --zcolor: #3caf8c;
}
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw / 19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width: 1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw / 15);
  }
}
@media (max-width: 480px) {
  html {
    font-size: calc(100vw / 7.5);
  }
}
body {
  min-height: 100%;
  font-family: 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
}
img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
  font-weight: normal;
}
input,
textarea {
  resize: none;
}
input[type='submit'],
input[type='reset'],
input[type='button'],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.f_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
.public-img > video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
@media (max-width: 990px) {
  .public-pc-img {
    display: none !important;
  }
}
.public-mb-img {
  display: none;
}
@media (max-width: 990px) {
  .public-mb-img {
    display: flex;
    justify-content: center;
  }
}
.font-b {
  font-weight: bold;
}
#hi-video-pop {
  color: var(--zcolor);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-video-pop * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-video-pop .hi-close {
  position: fixed;
  top: 85%;
  left: 50%;
  z-index: 5;
  margin-left: -25px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #fff;
  border-radius: 50%;
  transition: 0.4s;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#hi-video-pop .hi-close:after,
#hi-video-pop .hi-close:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 20px;
  height: 2px;
  margin: -1px 0 0 -10px;
  background: #333;
  transition: 0.4s;
}
#hi-video-pop .hi-close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#hi-video-pop .hi-close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#hi-video-pop .hi-close:hover {
  background: var(--zcolor);
}
#hi-video-pop .hi-close:hover:after,
#hi-video-pop .hi-close:hover:before {
  background: #fff;
}
#hi-video-pop .hi-video-box {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hi-video-pop .hi-video-box .hi-video-wrap {
  max-width: 90vh;
  border: 2px solid #fff;
}
@media (max-width: 767px) {
  #hi-video-pop .hi-video-box .hi-video-wrap {
    max-width: 90%;
  }
}
#hi-video-pop .hi-video-box .hi-video-wrap video {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.zpublic-nav-banner {
  position: relative;
  overflow: hidden;
}
.zpublic-nav-banner .img::before {
  padding-top: 25%;
}
.z-problemlist {
  border-bottom: 1px solid #eee;
  padding: 1.2rem 0;
  background-color: #Fff;
  position: relative;
}
.z-problemlist .w1600 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.z-problemlist .w1600 .left {
  position: sticky;
  position: -webkit-sticky;
  width: 20%;
  top: calc(var(--header-height) + 0.2rem);
}
@media (max-width: 990px) {
  .z-problemlist .w1600 .left {
    width: 100%;
    top: 0;
    position: relative;
  }
}
.z-problemlist .w1600 .right {
  width: 75%;
}
@media (max-width: 990px) {
  .z-problemlist .w1600 .right {
    width: 100%;
    margin-top: 1rem;
  }
}
.z-problemlist .w1600 .right .z-problembox .zcn1 {
  border-bottom: 1px solid #eee;
  color: #333333;
  padding-bottom: 0.35rem;
  padding-left: 30px;
  background: url(../images/contrast-title-bg.png) no-repeat left top;
  background-size: 15px 15px;
  background-position-y: 5px;
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a {
  margin-top: 0.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #eee;
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2title {
  color: #000000;
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c {
  margin-top: 0.2rem;
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c1 {
  background-color: #f5f5f5;
  padding: 0.2rem 0.3rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.5s;
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c1 .zcn2 {
  color: #666666;
  line-height: 0.3rem;
  transition: all 0.5s;
  padding-right: 0.3rem;
}
@media (max-width: 990px) {
  .z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c1 .zcn2 {
    line-height: 0.4rem;
  }
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c1 .zcn3 {
  height: 0.3rem;
  display: flex;
  align-items: center;
  transition: all 0.5s;
}
@media (max-width: 990px) {
  .z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c1 .zcn3 {
    height: 0.4rem;
  }
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c1 .zcn3 svg path {
  fill: #999;
  transition: all 0.5s;
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c1:hover,
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c1.active {
  background-color: #f7fbfa;
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c1:hover .zcn2,
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c1.active .zcn2 {
  color: var(--zcolor);
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c1:hover .zcn3 svg path,
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c1.active .zcn3 svg path {
  fill: var(--zcolor);
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c1.active .zcn3 {
  transform: rotate(180deg);
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c2 {
  display: none;
  padding: 0.3rem 0.3rem 0.1rem;
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c2 .zcn4 {
  color: #666666;
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c2 .zcn5 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem;
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c2 .zcn5 .zcn6 {
  margin-top: 0.25rem;
  width: calc(100% / 3);
  padding: 0 0.15rem;
}
@media (max-width: 767px) {
  .z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c2 .zcn5 .zcn6 {
    width: 100%;
  }
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c2 .zcn5 .zcn6 .zcn6b {
  cursor: pointer;
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c2 .zcn5 .zcn6 .zcn6b::before {
  padding-top: 55.55555556%;
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c2 .zcn5 .zcn6 .zcn6b .zcn6d {
  z-index: 3;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.6rem;
  height: 0.6rem;
  background-color: rgba(255, 255, 255, 0.32);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.z-problemlist .w1600 .right .z-problembox2 .zproblembox2a .zproblembox2b .zproblembox2c .zproblembox2c2 .zcn5 .zcn6 .zcn6c {
  line-height: 0.8rem;
  padding: 0 0.2rem;
  border: 1px solid #eee;
  color: #666666;
  text-align: center;
}
.zpublic-nav-list .zpbox:last-child .zpnav {
  border-bottom: 1px solid #eee;
}
.zpublic-nav-list .zpbox .zptitle {
  padding: 0.2rem 0.3rem;
  display: flex;
  justify-content: space-between;
  transition: all 0.5s;
  border: 1px solid #eee;
}
.zpublic-nav-list .zpbox .zptitle .pcn1 {
  color: #000000;
  transition: all 0.5s;
}
.zpublic-nav-list .zpbox .zptitle .pcn2 {
  flex-shrink: 0;
  color: var(--zcolor);
  transition: all 0.5s;
}
.zpublic-nav-list .zpbox .zptitle .pcn2 svg path {
  fill: var(--zcolor);
  transition: all 0.5s;
}
.zpublic-nav-list .zpbox .zptitle.active,
.zpublic-nav-list .zpbox .zptitle:hover {
  background-color: var(--zcolor);
  border-color: var(--zcolor);
}
.zpublic-nav-list .zpbox .zptitle.active .pcn1,
.zpublic-nav-list .zpbox .zptitle:hover .pcn1 {
  color: #fff;
}
.zpublic-nav-list .zpbox .zptitle.active .pcn2,
.zpublic-nav-list .zpbox .zptitle:hover .pcn2 {
  color: #fff;
}
.zpublic-nav-list .zpbox .zptitle.active .pcn2 svg path,
.zpublic-nav-list .zpbox .zptitle:hover .pcn2 svg path {
  fill: #Fff;
}
.zpublic-nav-list .zpbox .zpnav {
  display: block;
  padding: 0.2rem 0.3rem;
  border: 1px solid #eee;
  border-top: 0;
  border-bottom: 0;
  display: none;
}
.zpublic-nav-list .zpbox .zpnav .zpnavtitle {
  padding: 0.2rem;
  color: #999999;
  transition: all 0.5s;
}
.zpublic-nav-list .zpbox .zpnav .zpnavtitle.active {
  background-color: #f7fbfa;
  color: var(--zcolor);
}
.textflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.textflow2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.textflow3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.textflow4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
.textflow5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}
.ztech-box {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #eeee;
  background-color: #fff;
  position: relative;
}
.ztech-box .ztechtop form {
  width: 100%;
}
.ztech-box .ztechtop .zbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}
.ztech-box .ztechtop .zbox .zleft {
  width: calc(100% - 4rem);
  padding-right: 1rem;
}
@media (max-width: 990px) {
  .ztech-box .ztechtop .zbox .zleft {
    width: calc(100% - 5rem);
  }
}
@media (max-width: 767px) {
  .ztech-box .ztechtop .zbox .zleft {
    width: 100%;
    padding-right: 0;
  }
}
.ztech-box .ztechtop .zbox .zleft .layui-form-checkbox {
  margin-top: 0.05rem;
  margin-bottom: 0.05rem;
}
@media (max-width: 990px) {
  .ztech-box .ztechtop .zbox .zleft .layui-form-checkbox {
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
  }
}
.ztech-box .ztechtop .zbox .zleft .layui-form-checkbox[lay-skin=primary] > div {
  padding-right: 0.4rem;
}
.ztech-box .ztechtop .zbox .zleft .layui-form-checkbox[lay-skin=primary]:hover > i {
  border-color: var(--zcolor) !important;
}
.ztech-box .ztechtop .zbox .zleft .layui-form-checked,
.ztech-box .ztechtop .zbox .zleft .layui-form-checked:hover {
  border-color: var(--zcolor) !important;
}
.ztech-box .ztechtop .zbox .zleft .layui-form-checked[lay-skin=primary] > i {
  background-color: var(--zcolor);
  border-color: var(--zcolor) !important;
}
.ztech-box .ztechtop .zbox .zright {
  margin: 0 0 0 auto;
  width: 4rem;
  position: relative;
}
@media (max-width: 990px) {
  .ztech-box .ztechtop .zbox .zright {
    width: 5rem;
  }
}
@media (max-width: 767px) {
  .ztech-box .ztechtop .zbox .zright {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.ztech-box .ztechtop .zbox .zright input {
  width: 100%;
  border: 1px solid #eee;
  padding: 0 0.7rem 0 0.2rem;
  line-height: 0.5rem;
  color: #333;
}
@media (max-width: 990px) {
  .ztech-box .ztechtop .zbox .zright input {
    line-height: 0.8rem;
    padding: 0 1.4rem 0 0.4rem;
  }
}
.ztech-box .ztechtop .zbox .zright input::placeholder {
  color: #999999;
}
.ztech-box .ztechtop .zbox .zright button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0;
  cursor: pointer;
  border: 0;
  background-color: transparent;
}
@media (max-width: 990px) {
  .ztech-box .ztechtop .zbox .zright button {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.ztech-box .ztechbottom .public-download-list .pbox {
  border-top: 1px solid var(--zcolor);
  background-color: #f7fbfa;
  display: flex;
}
.ztech-box .ztechbottom .public-download-list .pbox .pcn1 {
  padding: 0.25rem 0.3rem;
  color: #3caf8c;
}
.ztech-box .ztechbottom .public-download-list .pbox .pcn1.pcn1a {
  width: calc(100% - 420px);
}
@media (max-width: 767px) {
  .ztech-box .ztechbottom .public-download-list .pbox .pcn1.pcn1a {
    width: calc(100% - 90px);
  }
}
.ztech-box .ztechbottom .public-download-list .pbox .pcn1.pcn1b {
  width: 290px;
}
@media (max-width: 767px) {
  .ztech-box .ztechbottom .public-download-list .pbox .pcn1.pcn1b {
    width: 100px;
    display: none !important;
  }
}
.ztech-box .ztechbottom .public-download-list .pbox .pcn1.pcn1c {
  width: 130px;
}
@media (max-width: 767px) {
  .ztech-box .ztechbottom .public-download-list .pbox .pcn1.pcn1c {
    width: 90px;
  }
}
.ztech-box .ztechbottom .public-download-list .pbox2 a {
  cursor: pointer;
}
.ztech-box .ztechbottom .public-download-list .pbox2 .pbox {
  border-top: 0;
  background-color: transparent;
  border-bottom: 1px solid #eee;
}
.ztech-box .ztechbottom .public-download-list .pbox2 .pbox .pcn1 {
  color: #000000;
  display: flex;
}
.ztech-box .ztechbottom .public-download-list .pbox2 .pbox .pcn1 .pcn2 {
  width: 20px;
  display: flex;
  align-items: center;
  margin-right: 0.1rem;
}
@media (max-width: 767px) {
  .ztech-box .ztechbottom .public-download-list .pbox2 .pbox .pcn1 .pcn2 {
    width: 12px;
  }
}
.ztech-box .ztechbottom .public-download-list .pbox2 .pbox .pcn1 .pcn2 img,
.ztech-box .ztechbottom .public-download-list .pbox2 .pbox .pcn1 .pcn2 svg {
  width: 100%;
}
.ztech-box .ztechbottom .public-download-list .pbox2 .pbox .pcn1 .pcn2 img path,
.ztech-box .ztechbottom .public-download-list .pbox2 .pbox .pcn1 .pcn2 svg path {
  fill: #666;
  transition: all 0.5s;
}
.ztech-box .ztechbottom .public-download-list .pbox2 .pbox .pcn1 .pcn3 {
  color: #000000;
  transition: all 0.5s;
  width: calc(100% - 0.1rem - 20px);
}
.ztech-box .ztechbottom .public-download-list .pbox2 .pbox .pcn1 .pcn4 {
  color: #666;
  width: 100%;
}
.ztech-box .ztechbottom .public-download-list .pbox2 .pbox .pcn1 .pcn5 {
  transition: all 0.5s;
  color: #666;
}
.ztech-box .ztechbottom .public-download-list .pbox2 .pbox:hover .pcn1 .pcn2 img path,
.ztech-box .ztechbottom .public-download-list .pbox2 .pbox:hover .pcn1 .pcn2 svg path {
  fill: var(--zcolor);
}
.ztech-box .ztechbottom .public-download-list .pbox2 .pbox:hover .pcn1 .pcn3 {
  color: var(--zcolor);
}
.ztech-box .ztechbottom .public-download-list .pbox2 .pbox:hover .pcn1 .pcn5 {
  color: var(--zcolor);
}
.hi-pagination6 {
  margin-top: 0.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.hi-pagination6 .layui-laypage .layui-laypage-prev {
  margin-right: 0 !important;
  border-radius: 25px;
}
.hi-pagination6 .layui-laypage .layui-laypage-prev .c-prev {
  background-color: transparent !important;
}
.hi-pagination6 .layui-laypage .layui-laypage-prev:hover {
  background-color: var(--zcolor);
}
.hi-pagination6 .layui-laypage .layui-laypage-prev:hover .c-prev {
  color: #Fff !important;
}
.hi-pagination6 .layui-laypage .layui-laypage-prev:hover .c-prev svg path {
  fill: #Fff !important;
}
.hi-pagination6 .layui-laypage .layui-laypage-next {
  border-radius: 25px;
  margin-left: 0 !important;
}
.hi-pagination6 .layui-laypage .layui-laypage-next .c-next {
  background-color: transparent !important;
}
.hi-pagination6 .layui-laypage .layui-laypage-next:hover {
  background-color: var(--zcolor);
}
.hi-pagination6 .layui-laypage .layui-laypage-next:hover .c-next {
  color: #Fff !important;
}
.hi-pagination6 .layui-laypage .layui-laypage-next:hover .c-next svg path {
  fill: #Fff !important;
}
.hi-pagination6 a,
.hi-pagination6 input,
.hi-pagination6 .layui-laypage-prev,
.hi-pagination6 .layui-laypage-next {
  margin: 0 5px 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 25px;
  border: 1px solid #eee;
  transition: all 0.4s;
  background-color: #fff;
  color: #999;
  cursor: pointer;
}
@media (max-width: 767px) {
  .hi-pagination6 a,
  .hi-pagination6 input,
  .hi-pagination6 .layui-laypage-prev,
  .hi-pagination6 .layui-laypage-next {
    margin: 0 5px 5px;
    width: 34px;
    min-width: 34px;
    height: 34px;
  }
}
.hi-pagination6 a img,
.hi-pagination6 input img,
.hi-pagination6 .layui-laypage-prev img,
.hi-pagination6 .layui-laypage-next img,
.hi-pagination6 a svg,
.hi-pagination6 input svg,
.hi-pagination6 .layui-laypage-prev svg,
.hi-pagination6 .layui-laypage-next svg {
  width: 7px;
  height: 10px;
}
.hi-pagination6 a img path,
.hi-pagination6 input img path,
.hi-pagination6 .layui-laypage-prev img path,
.hi-pagination6 .layui-laypage-next img path,
.hi-pagination6 a svg path,
.hi-pagination6 input svg path,
.hi-pagination6 .layui-laypage-prev svg path,
.hi-pagination6 .layui-laypage-next svg path {
  fill: currentColor;
}
.hi-pagination6 span {
  margin: 0 5px 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 25px;
  border: 1px solid #eee;
  transition: all 0.4s;
  background-color: #fff;
  color: #999;
}
@media (max-width: 767px) {
  .hi-pagination6 span {
    margin: 0 5px 5px;
    min-width: 34px;
    height: 34px;
  }
}
.hi-pagination6 span img,
.hi-pagination6 span svg {
  width: 7px;
  height: 10px;
}
.hi-pagination6 span img path,
.hi-pagination6 span svg path {
  fill: currentColor;
  transition: all 0.4s;
}
.hi-pagination6 span.layui-laypage-curr {
  color: #fff;
  background: var(--zcolor);
  border-color: var(--zcolor);
}
.hi-pagination6 span.layui-laypage-curr em {
  color: #Fff;
}
.hi-pagination6 span.layui-laypage-curr svg path {
  fill: #fff;
}
.hi-pagination6 a.on {
  color: #fff;
  background: var(--zcolor);
  border-color: var(--zcolor);
}
.hi-pagination6 a.on svg path {
  fill: #fff;
}
.hi-pagination6 a:hover {
  color: #fff;
  background: var(--zcolor);
  border-color: var(--zcolor);
}
.hi-pagination6 a:hover svg path {
  fill: #fff;
}
.hi-pagination6 .c-prev img,
.hi-pagination6 .c-prev svg {
  transform: rotate(180deg);
}
.hi-pagination6 .c-prev.none,
.hi-pagination6 .c-next.none {
  cursor: auto;
  border-color: #eee !important;
  background-color: #eeeeee !important;
}
.hi-pagination6 .c-prev.none svg path,
.hi-pagination6 .c-next.none svg path {
  fill: #999 !important;
}
.public-nav-bigbox {
  background-color: #fff;
  padding: 0.3rem 0 0.65rem;
}
.public-nav-bigbox .public-nav-box {
  display: flex;
  flex-wrap: wrap;
}
.public-nav-bigbox .public-nav-box .pcn1 {
  padding-top: 0.05rem;
  color: #999;
  display: flex;
  transition: all 0.5s;
  align-items: center;
}
.public-nav-bigbox .public-nav-box .pcn1 svg path {
  fill: #7d7d7d;
}
.public-nav-bigbox .public-nav-box .pcn1:last-child {
  max-width: 50%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #000;
}
@media (max-width: 990px) {
  .public-nav-bigbox .public-nav-box .pcn1:last-child {
    display: none;
  }
}
.public-nav-bigbox .public-nav-box .pcn1:hover {
  color: var(--zcolor);
}
.public-nav-bigbox .public-nav-box .pcn2 {
  padding-top: 0.05rem;
  margin: 0 0.1rem;
  display: flex;
  align-items: center;
  color: #999;
}
.public-nav-bigbox .public-nav-box .pcn2 svg path {
  fill: #666;
}
@media (max-width: 990px) {
  .public-nav-bigbox .public-nav-box .pcn2:nth-last-child(2) {
    display: none;
  }
}
.news-info {
  padding-bottom: 1.2rem;
}
.news-info .social-share {
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
.news-info .social-share * {
  font-family: "socialshare" !important;
}
.news-info .social-share .icon-tencent:before {
  content: "\f07a";
}
.news-info .social-share .icon-qq:before {
  content: "\f11a";
}
.news-info .social-share .icon-weibo:before {
  content: "\f12a";
}
.news-info .social-share .icon-wechat:before {
  content: "\f09a";
}
.news-info .social-share .icon-douban:before {
  content: "\f10a";
}
.news-info .social-share .icon-heart:before {
  content: "\f20a";
}
.news-info .social-share .icon-like:before {
  content: "\f00a";
}
.news-info .social-share .icon-qzone:before {
  content: "\f08a";
}
.news-info .social-share .icon-linkedin:before {
  content: "\f01a";
}
.news-info .social-share .icon-diandian:before {
  content: "\f05a";
}
.news-info .social-share .icon-facebook:before {
  content: "\f03a";
}
.news-info .social-share .icon-google:before {
  content: "\f04a";
}
.news-info .social-share .icon-twitter:before {
  content: "\f06a";
}
.news-info .social-share a {
  position: relative;
  text-decoration: none;
  margin: 4px;
  display: inline-block;
  outline: none;
}
.news-info .social-share .social-share-icon {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  font-size: 20px;
  border-radius: 50%;
  line-height: 32px;
  border: 1px solid #666;
  color: #666;
  text-align: center;
  vertical-align: middle;
  transition: background 0.6s ease-out 0s;
}
.news-info .social-share .social-share-icon:hover {
  background: #666;
  color: #fff;
}
.news-info .social-share .icon-weibo {
  color: #ff763b;
  border-color: #ff763b;
}
.news-info .social-share .icon-weibo:hover {
  background: #ff763b;
}
.news-info .social-share .icon-tencent {
  color: #56b6e7;
  border-color: #56b6e7;
}
.news-info .social-share .icon-tencent:hover {
  background: #56b6e7;
}
.news-info .social-share .icon-qq {
  color: #56b6e7;
  border-color: #56b6e7;
}
.news-info .social-share .icon-qq:hover {
  background: #56b6e7;
}
.news-info .social-share .icon-qzone {
  color: #FDBE3D;
  border-color: #FDBE3D;
}
.news-info .social-share .icon-qzone:hover {
  background: #FDBE3D;
}
.news-info .social-share .icon-douban {
  color: #33b045;
  border-color: #33b045;
}
.news-info .social-share .icon-douban:hover {
  background: #33b045;
}
.news-info .social-share .icon-linkedin {
  color: #0077B5;
  border-color: #0077B5;
}
.news-info .social-share .icon-linkedin:hover {
  background: #0077B5;
}
.news-info .social-share .icon-facebook {
  color: #44619D;
  border-color: #44619D;
}
.news-info .social-share .icon-facebook:hover {
  background: #44619D;
}
.news-info .social-share .icon-google {
  color: #db4437;
  border-color: #db4437;
}
.news-info .social-share .icon-google:hover {
  background: #db4437;
}
.news-info .social-share .icon-twitter {
  color: #55acee;
  border-color: #55acee;
}
.news-info .social-share .icon-twitter:hover {
  background: #55acee;
}
.news-info .social-share .icon-diandian {
  color: #307DCA;
  border-color: #307DCA;
}
.news-info .social-share .icon-diandian:hover {
  background: #307DCA;
}
.news-info .social-share .icon-wechat {
  position: relative;
  color: #7bc549;
  border-color: #7bc549;
}
.news-info .social-share .icon-wechat:hover {
  background: #7bc549;
}
.news-info .social-share .icon-wechat .wechat-qrcode {
  display: none;
  border: 1px solid #eee;
  position: absolute;
  z-index: 9;
  top: -205px;
  left: -84px;
  width: 200px;
  height: 192px;
  color: #666;
  font-size: 12px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 2px 10px #aaa;
  transition: all 200ms;
  -webkit-tansition: all 350ms;
  -moz-transition: all 350ms;
}
.news-info .social-share .icon-wechat .wechat-qrcode.bottom {
  top: 40px;
  left: -84px;
}
.news-info .social-share .icon-wechat .wechat-qrcode.bottom:after {
  display: none;
}
.news-info .social-share .icon-wechat .wechat-qrcode h4 {
  font-weight: normal;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  background-color: #f3f3f3;
  margin: 0;
  padding: 0;
  color: #777;
}
.news-info .social-share .icon-wechat .wechat-qrcode .qrcode {
  width: 105px;
  margin: 10px auto;
}
.news-info .social-share .icon-wechat .wechat-qrcode .qrcode table {
  margin: 0 !important;
}
.news-info .social-share .icon-wechat .wechat-qrcode .help p {
  font-weight: normal;
  line-height: 16px;
  padding: 0;
  margin: 0;
}
.news-info .social-share .icon-wechat .wechat-qrcode:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -6px;
  bottom: -13px;
  width: 0;
  height: 0;
  border-width: 8px 6px 6px 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.news-info .social-share .icon-wechat:hover .wechat-qrcode {
  display: block;
}
.news-info .social-share .icon-wechat .wechat-qrcode:after {
  display: none;
}
.news-info .social-share .icon-wechat .wechat-qrcode {
  top: 100%;
}
@media (max-width: 990px) {
  .news-info .social-share .icon-wechat .wechat-qrcode {
    right: 0;
    left: initial;
  }
}
.news-info .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-info .container .left {
  position: sticky;
  position: -webkit-sticky;
  left: 0;
  top: calc(var(--header-height) + 0.2rem);
  width: 32.5%;
  border-bottom: 1px solid #eee;
}
@media (max-width: 990px) {
  .news-info .container .left {
    width: 100%;
    left: 0;
    top: 0;
    position: relative;
  }
}
.news-info .container .left .ptitle {
  color: #000000;
  line-height: 1.2;
}
.news-info .container .left .pcn10 {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 0.2rem;
}
.news-info .container .left .pcn10 .pcn11 {
  margin: 0.1rem 0;
  display: flex;
  flex-wrap: wrap;
}
.news-info .container .left .pcn10 .pcn11 .pcn11a {
  margin-right: 0.35rem;
  display: flex;
  align-items: center;
  color: #666666;
}
.news-info .container .left .pcn10 .pcn11 .pcn11a img,
.news-info .container .left .pcn10 .pcn11 .pcn11a svg {
  margin-right: 0.1rem;
}
.news-info .container .left .pcn10 .share {
  display: flex;
  align-items: center;
  color: #666666;
  position: relative;
  z-index: 5;
  margin: 0 0 0 auto;
}
.news-info .container .left .pcn10 .share .cn6a {
  margin-left: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  position: relative;
  color: #999;
  background-color: transparent;
}
.news-info .container .left .pcn10 .share .cn6a::before {
  display: none;
}
.news-info .container .left .pcn10 .share .cn6a svg path {
  fill: #848b93;
  opacity: 1;
}
.news-info .container .left .pcn10 .share .cn6a:hover {
  transition: all 0.5s;
}
.news-info .container .left .pcn10 .share .cn6a:hover svg path {
  fill: var(--zcolor);
}
.news-info .container .right {
  width: 65%;
}
@media (max-width: 990px) {
  .news-info .container .right {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.news-info .container .right .public-content {
  color: #666666;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #eee;
}
.news-info .container .right .news-info3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 0.55rem;
}
.news-info .container .right .news-info3a {
  max-width: 50%;
}
.news-info .container .right .news-info3a .nicn1 {
  display: block;
  color: #666666;
  transition: all 0.5s;
}
.news-info .container .right .news-info3a .nicn1 span {
  transition: all 0.5s;
  color: #000;
}
.news-info .container .right .news-info3a .nicn1:hover span {
  color: var(--zcolor);
}
.news-info .container .right .news-info3a .nicn1:nth-child(2) {
  margin-top: 0.1rem;
}
.news-info .container .right .news-info3b .public-btn-box .public-btn .pbtncn2 {
  margin-left: 0;
  margin-right: 0.1rem;
}
.zpublic-btn-box {
  display: flex;
  flex-wrap: wrap;
}
.zpublic-btn-box .public-btn {
  align-items: center;
  display: flex;
  border-radius: 0.6rem;
  padding: 0.1rem;
  border: 1px solid var(--zcolor);
  transition: all 0.5s;
  background-color: transparent;
  cursor: pointer;
}
.zpublic-btn-box .public-btn .pbtncn2 {
  width: 0.3rem;
  height: 0.3rem;
  background-color: var(--zcolor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.zpublic-btn-box .public-btn .pbtncn2 img,
.zpublic-btn-box .public-btn .pbtncn2 svg {
  width: 100%;
  height: 100%;
}
.zpublic-btn-box .public-btn .pbtncn2 img path,
.zpublic-btn-box .public-btn .pbtncn2 svg path {
  transition: all 0.5s;
  fill: #Fff;
}
.zpublic-btn-box .public-btn .pbtncn1 {
  transition: all 0.5s;
  padding: 0 0.23rem;
  color: var(--zcolor);
}
.zpublic-btn-box .public-btn:hover {
  background-color: var(--zcolor);
}
.zpublic-btn-box .public-btn:hover .pbtncn2 {
  background-color: #Fff;
}
.zpublic-btn-box .public-btn:hover .pbtncn2 img path,
.zpublic-btn-box .public-btn:hover .pbtncn2 svg path {
  fill: var(--zcolor);
}
.zpublic-btn-box .public-btn:hover .pbtncn1 {
  color: #Fff;
}
.zpublic-btn {
  display: flex;
}
.zpublic-btn .zpcn1 {
  color: #000000;
  transition: all 0.5s;
}
.zpublic-btn .zpcn2 {
  margin-left: 0.1rem;
}
.zpublic-btn .zpcn2 svg path {
  fill: var(--zcolor);
}
.publicnewslinks {
  background-color: #fff;
  border: solid 1px #e6e6e6;
}
.publicnewslinks .pimg::before {
  padding-top: 50%;
}
.publicnewslinks .pimg .ptips {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--zcolor);
  color: #fff;
  line-height: 30px;
  min-width: 86px;
  text-align: center;
  padding: 0 0.2rem;
  max-width: 50%;
  z-index: 3;
}
.publicnewslinks .ptext {
  padding: 0.35rem 0.4rem;
}
.publicnewslinks .ptext .pcn0 {
  display: flex;
}
.publicnewslinks .ptext .pcn1 {
  margin-right: 0.3rem;
  display: flex;
  align-items: center;
  color: #444444;
  transition: all 0.5s;
}
.publicnewslinks .ptext .pcn1:last-child {
  margin-right: 0;
}
.publicnewslinks .ptext .pcn1 img,
.publicnewslinks .ptext .pcn1 svg {
  margin-right: 0.1rem;
}
.publicnewslinks .ptext .pcn2 {
  margin-top: 0.1rem;
  color: #000000;
  line-height: 1.25;
  height: 2.5em;
  transition: all 0.5s;
  font-weight: normal;
}
@media (max-width: 767px) {
  .publicnewslinks .ptext .pcn2 {
    margin-top: 0.2rem;
  }
}
.publicnewslinks .ptext .zpublic-btn {
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px solid #eee;
}
.publicnewslinks:hover .pimg img {
  transform: scale(1.05);
}
.publicnewslinks:hover .ptext .pcn2 {
  color: var(--zcolor);
}
.publicnewslinks:hover .zpublic-btn .zpcn1 {
  color: var(--zcolor);
}
.publicnewslinks:hover .zpublic-btn .zpcn2 svg path {
  fill: var(--zcolor);
}
.news-info2 {
  background-color: #f5f5f5;
  padding: 1.2rem 0;
}
.news-info2 .container .public_title {
  font-size: var(--font40);
}
.news-info2 .newsinfo2swiper {
  position: relative;
  overflow: hidden;
  margin-top: 0.6rem;
}
.contact-box0 {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #eee;
}
.contact-box1 {
  overflow: hidden;
  position: relative;
  padding-top: 1.2rem;
}
.contact-box1 .bgimg {
  position: absolute;
  right: 0;
  top: 0;
}
.contact-box1 .bgimg img {
  width: 100%;
}
.contact-box1 .container {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-box1 .container .left {
  width: 41.875%;
}
@media (max-width: 990px) {
  .contact-box1 .container .left {
    width: 100%;
  }
}
.contact-box1 .container .left .public_title {
  font-size: var(--font40);
}
.contact-box1 .container .left .box {
  padding-left: 30px;
  margin-top: 0.3rem;
}
.contact-box1 .container .left .box .box2 {
  display: flex;
  padding: 20px 0 30px;
  border-bottom: 1px solid #eee;
}
.contact-box1 .container .left .box .box2:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.contact-box1 .container .left .box .box2 .img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}
.contact-box1 .container .left .box .box2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-box1 .container .left .box .box2 .cn1 {
  width: calc(100% - 30px);
}
.contact-box1 .container .left .box .box2 .cn1 .cn2 {
  line-height: 20px;
  color: #666;
}
.contact-box1 .container .left .box .box2 .cn1 .cn3 {
  margin-top: 0.1rem;
  color: #000000;
  line-height: 24px;
}
.contact-box1 .container .right {
  width: 50%;
}
@media (max-width: 990px) {
  .contact-box1 .container .right {
    margin-top: 0.6rem;
    width: 100%;
  }
}
.contact-box1 .container .right .public-form-box {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.4rem;
  border: 1px solid #eee;
  border-radius: 0.1rem;
}
@media (max-width: 767px) {
  .contact-box1 .container .right .public-form-box {
    padding: 0.4rem 0.4rem;
  }
}
.public-form-box .layui-form {
  width: 100%;
}
.public-form-box .pcn1 {
  color: #000000;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #eee;
}
.public-form-box .pbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.1rem;
}
.public-form-box .pbox .pbox2 {
  margin-top: 0.2rem;
  width: calc(50% - 0.1rem);
}
@media (max-width: 767px) {
  .public-form-box .pbox .pbox2 {
    width: 100%;
  }
}
.public-form-box .pbox .pbox2.pbox2w100 {
  width: 100%;
}
.public-form-box .pbox .pbox2.pbox2tips {
  color: #666666;
}
.public-form-box .pbox .pbox2.pbox2tips .layui-form-checkbox > div {
  white-space: normal;
}
.public-form-box .pbox .pbox2.pbox2tips .layui-form-checkbox[lay-skin=primary]:hover > i {
  border-color: var(--zcolor) !important;
}
.public-form-box .pbox .pbox2.pbox2tips .layui-form-checked,
.public-form-box .pbox .pbox2.pbox2tips .layui-form-checked:hover {
  border-color: var(--zcolor) !important;
}
.public-form-box .pbox .pbox2.pbox2tips .layui-form-checked[lay-skin=primary] > i {
  background-color: var(--zcolor);
  border-color: var(--zcolor) !important;
}
.public-form-box .pbox .pbox2.pbox2tips .layui-form-checkbox[lay-skin=primary] > i {
  border-radius: 50%;
}
@media (max-width: 767px) {
  .public-form-box .pbox .pbox2.pbox2tips .layui-form-checkbox > div {
    font-size: 12px;
  }
}
.public-form-box .pbox .pbox2.pbox2tips a {
  color: var(--zcolor);
  display: inline;
}
.public-form-box .pbox .pbox2 .pcn2 {
  color: #000000;
}
.public-form-box .pbox .pbox2 .pcn2 span {
  color: #ff0000;
}
.public-form-box .pbox .pbox2 .pcn3 {
  margin-top: 0.1rem;
  width: 100%;
  position: relative;
}
.public-form-box .pbox .pbox2 .pcn3 .layui-input,
.public-form-box .pbox .pbox2 .pcn3 input,
.public-form-box .pbox .pbox2 .pcn3 textarea {
  width: 100%;
  border-radius: 0.1rem;
  border: 1px solid #eee;
  color: #000;
  box-shadow: none !important;
  padding: 0.15rem 0.2rem;
  height: auto;
  font-size: var(--font14);
}
@media (max-width: 990px) {
  .public-form-box .pbox .pbox2 .pcn3 .layui-input,
  .public-form-box .pbox .pbox2 .pcn3 input,
  .public-form-box .pbox .pbox2 .pcn3 textarea {
    padding: 0.2rem 0.3rem;
  }
}
.public-form-box .pbox .pbox2 .pcn3 .layui-input:focus,
.public-form-box .pbox .pbox2 .pcn3 input:focus,
.public-form-box .pbox .pbox2 .pcn3 textarea:focus {
  border-color: var(--zcolor) !important;
}
.public-form-box .pbox .pbox2 .pcn3 .layui-input::placeholder,
.public-form-box .pbox .pbox2 .pcn3 input::placeholder,
.public-form-box .pbox .pbox2 .pcn3 textarea::placeholder {
  color: #999;
}
.public-form-box .pbox .pbox2 .pcn3 .layui-form-select dl dd {
  font-size: var(--font14);
}
.public-form-box .pbox .pbox2 .pcn3 .layui-form-select dl {
  top: 100%;
}
.public-form-box .pbox .pbox2 .pcn3 .layui-form-select dl dd.layui-this {
  color: var(--zcolor);
}
.public-form-box .pbox .pbox2 .pcn3 .layui-edge {
  background-image: url(../images/zimg39.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 0;
  margin-top: -3px;
  width: 10px;
  height: 6px;
  right: 0.2rem;
  border-width: 0;
}
.public-form-box .pbox .pbox2 .pcn3 textarea {
  height: 1.3rem;
}
.public-form-box .pbox .pbox2.pbox2filebox {
  display: flex;
  flex-wrap: wrap;
}
.public-form-box .pbox .pbox2.pbox2filebox .pbox2filebox2 {
  border: solid 1px #eeeeee;
  position: relative;
  border-radius: 5px;
  background-color: #f5f5f5;
  line-height: 0.5rem;
  padding: 0 20px;
  margin-right: 0.1rem;
}
.public-form-box .pbox .pbox2.pbox2filebox .pbox2filebox2 .pbox2filename {
  color: #666;
  font-size: var(--font14);
  max-width: 2rem;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.public-form-box .pbox .pbox2.pbox2filebox .pbox2filebox2 .close {
  position: absolute;
  right: 4px;
  top: 4px;
  display: flex;
  align-items: center;
}
.public-form-box .pbox .pbox2 .pbox2file {
  display: flex;
}
.public-form-box .pbox .pbox2 .pbox2file .filetitle {
  cursor: pointer;
  color: var(--zcolor);
  text-decoration: underline;
  position: relative;
}
.public-form-box .pbox .pbox2 .pbox2file .filetitle input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.contact-box2 {
  padding-top: 1.2rem;
}
.contact-box2 .tdt-label {
  background-color: transparent;
  box-shadow: none;
  border: 0;
  color: #000;
  font-size: var(--font16);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-box2 .tdt-marker-icon {
  background-image: url(../images/zimg28.png);
  width: 0.6rem;
  height: 0.76rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-box2 img {
  max-height: initial;
}
.contact-box2 .container {
  position: relative;
}
.contact-box2 .map-container {
  width: 800px;
  height: 500px;
  border: 2px solid #2c3e50;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.contact-box2 #mapDiv {
  width: 100%;
  height: 100%;
}
.contact-box2a {
  padding-top: 1.2rem;
}
.contact-box2a .mapbox2 {
  width: 100%;
}
.contact-box2a .mapbox2 img {
  width: 100%;
}
.contact-box3 {
  padding-top: 1.2rem;
}
.contact-box3 .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-box3 .box .public_title {
  font-size: var(--font40);
}
.contact-box3 .box .box2 {
  display: flex;
}
.contact-box3 .box .box2 .box2a {
  margin-left: 0.4rem;
  color: #999999;
  position: relative;
  padding-bottom: 0.1rem;
  cursor: pointer;
}
.contact-box3 .box .box2 .box2a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--zcolor);
  transition: all 0.5s;
}
.contact-box3 .box .box2 .box2a.on {
  color: #000;
}
.contact-box3 .box .box2 .box2a.on::before {
  width: 100%;
}
.contact-box3 .box3 {
  position: relative;
}
.contact-box3 .box3 .bgimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.contact-box3 .box3 .bgimg img {
  width: 100%;
}
.contact-box3 .box3 .box3a {
  z-index: 3;
  position: relative;
  display: none;
}
.contact-box3 .box3 .box3a.on {
  display: block;
}
.contact-box3 .box3 .box3a .box3b {
  display: flex;
  flex-wrap: wrap;
  margin: 0.2rem -0.2rem 0;
}
.contact-box3 .box3 .box3a .box3b .box3c {
  width: 50%;
  padding: 0 0.2rem;
  margin: 0.4rem 0 0;
}
@media (max-width: 990px) {
  .contact-box3 .box3 .box3a .box3b .box3c {
    width: 100%;
  }
}
.contact-box3 .box3 .box3a .box3b .box3c .box3d {
  padding: 0.35rem;
  border: 1px solid #eee;
  border-radius: 0.1rem;
  display: flex;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  flex-wrap: wrap;
}
.contact-box3 .box3 .box3a .box3b .box3c .box3d .cn1 {
  color: #000000;
  padding-right: 0.4rem;
  width: 20%;
}
@media (max-width: 767px) {
  .contact-box3 .box3 .box3a .box3b .box3c .box3d .cn1 {
    width: 100%;
  }
}
.contact-box3 .box3 .box3a .box3b .box3c .box3d .cn2 {
  width: 80%;
  padding: 0 0.4rem;
  position: relative;
}
@media (max-width: 767px) {
  .contact-box3 .box3 .box3a .box3b .box3c .box3d .cn2 {
    margin-top: 0.4rem;
    width: 100%;
    padding: 0;
  }
}
.contact-box3 .box3 .box3a .box3b .box3c .box3d .cn2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #eee;
}
@media (max-width: 767px) {
  .contact-box3 .box3 .box3a .box3b .box3c .box3d .cn2::before {
    display: none;
  }
}
.contact-box3 .box3 .box3a .box3b .box3c .box3d .cn2 .cn3 {
  display: flex;
  margin-top: 0.1rem;
}
.contact-box3 .box3 .box3a .box3b .box3c .box3d .cn2 .cn3:nth-child(1) {
  margin-top: 0;
}
.contact-box3 .box3 .box3a .box3b .box3c .box3d .cn2 .cn3 .cn4 {
  flex-shrink: 0;
  color: #666666;
}
.contact-box3 .box3 .box3a .box3b .box3c .box3d .cn2 .cn3 .cn5 {
  color: #000;
}
header {
  z-index: 1001;
}
.public-form-windows {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}
.public-form-windows .public-form-windows2 {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.public-form-windows .public-form-windows2 .container {
  background-color: #fff;
  max-width: 800px;
  border-radius: 0.1rem;
  padding: 0.4rem;
  position: relative;
  max-height: 90vh;
  width: 90%;
  margin: 0 auto;
  overflow: auto;
}
.public-form-windows .public-form-windows2 .container::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 3px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 5px;
}
.public-form-windows .public-form-windows2 .container::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: var(--zcolor);
}
.public-form-windows .public-form-windows2 .container::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
@media (max-width: 990px) {
  .public-form-windows .public-form-windows2 .container {
    max-height: 80vh;
  }
}
.public-form-windows .public-form-windows2 .zbox .zcn1 {
  color: #000000;
}
.public-form-windows .public-form-windows2 .zbox .zcn2 {
  color: #666666;
  margin-top: 0.1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.3rem;
}
.public-form-windows .public-form-windows2 .pclose {
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
  width: 12px;
  color: #061b2c;
  transition: all 0.5s;
}
.public-form-windows .public-form-windows2 .pclose svg,
.public-form-windows .public-form-windows2 .pclose img {
  width: 100%;
  height: auto;
}
.public-form-windows .public-form-windows2 .pclose svg path,
.public-form-windows .public-form-windows2 .pclose img path {
  fill: #666;
  stroke: none;
  transition: all 0.5s;
}
.public-form-windows .public-form-windows2 .pclose:hover svg path {
  color: var(--zcolor);
}
.add-box1 {
  padding: 1.2rem 0;
}
.add-box1 .container {
  display: flex;
  flex-wrap: wrap;
}
.add-box1 .container .left {
  width: 50%;
}
@media (max-width: 990px) {
  .add-box1 .container .left {
    width: 100%;
  }
}
.add-box1 .container .left .public_title {
  font-size: var(--font40);
}
.add-box1 .container .left .cn1 {
  padding-right: 1rem;
  padding-left: 30px;
  margin-top: 0.3rem;
  color: #666666;
  line-height: 1.66666667;
}
@media (max-width: 990px) {
  .add-box1 .container .left .cn1 {
    padding-right: 0;
  }
}
.add-box1 .container .right {
  width: 50%;
}
@media (max-width: 990px) {
  .add-box1 .container .right {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.add-box1 .container .right::before {
  padding-top: 60%;
}
.add-box2 {
  padding: 1.2rem 0;
  background-color: #f5f6f7;
}
.add-box2 .public_title {
  font-size: var(--font40);
}
.add-box2 .addbox2swiper {
  position: relative;
  overflow: hidden;
  margin-top: 0.6rem;
}
.publicaddlinks {
  background-color: #fff;
  border: solid 1px #e6e6e6;
}
.publicaddlinks .pimg::before {
  padding-top: 50%;
}
.publicaddlinks .ptext {
  padding: 0.35rem 0.4rem;
}
.publicaddlinks .ptext .pcn0 {
  display: flex;
}
.publicaddlinks .ptext .pcn2 {
  color: #000000;
  line-height: 1.25;
  height: 2.5em;
  transition: all 0.5s;
}
.publicaddlinks .ptext .pcn3 {
  margin-top: 0.2rem;
  color: #666;
  line-height: 1.33333333;
  height: 2.66666667em;
}
.publicaddlinks:hover .pimg img {
  transform: scale(1.05);
}
.publicaddlinks:hover .ptext .pcn2 {
  color: var(--zcolor);
}
.znews-list {
  padding-top: 1.2rem;
  position: relative;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #eee;
}
.znews-list .bgimg {
  position: absolute;
  right: 0;
  top: 0;
}
.znews-list .bgimg img {
  width: 100%;
}
.znews-list .news-swiper {
  margin-top: 0.6rem;
  position: relative;
  overflow: hidden;
}
.znews-list .news-swiper .swiper-slide .publicnewslinks {
  padding: 0.4rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .znews-list .news-swiper .swiper-slide .publicnewslinks {
    padding: 0.3rem;
  }
}
.znews-list .news-swiper .swiper-slide .publicnewslinks .pimg {
  width: 67.10526316%;
}
@media (max-width: 767px) {
  .znews-list .news-swiper .swiper-slide .publicnewslinks .pimg {
    width: 100%;
  }
}
.znews-list .news-swiper .swiper-slide .publicnewslinks .ptext {
  width: 32.89473684%;
  padding: 0.35rem 0 0.35rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .znews-list .news-swiper .swiper-slide .publicnewslinks .ptext {
    width: 100%;
    padding: 0.3rem 0;
  }
}
.znews-list .news-swiper .swiper-slide .publicnewslinks .ptext .ptext2 .pcn2 {
  margin-top: 0.2rem;
}
.znews-list .news-swiper .swiper-slide .publicnewslinks .ptext .ptext2 .pcn3 {
  color: #666666;
  padding-top: 0.35rem;
  border-top: 1px solid #eee;
  margin-top: 0.35rem;
}
.znews-list .container {
  position: relative;
  z-index: 2;
}
.znews-list .ztitle1box .public_title {
  font-size: var(--font50);
}
.znews-list .ztitle1box .public_desc {
  padding-left: 30px;
  font-size: var(--font20);
  margin-top: 0.1rem;
  color: #000000;
}
.znews-list .public-news-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0.2rem -0.1rem 0;
}
.znews-list .public-news-list .pbox {
  width: calc(100% / 3);
  padding: 0 0.1rem;
  margin-top: 0.2rem;
}
@media (max-width: 990px) {
  .znews-list .public-news-list .pbox {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .znews-list .public-news-list .pbox {
    width: 100%;
  }
}
.hi-nav1 {
  margin-top: 0.5rem;
}
.hi-nav1 .swiper .swiper-slide {
  width: auto;
  margin-right: 0.4rem;
  line-height: 0.5rem;
}
.hi-nav1 .swiper .swiper-slide:last-child {
  margin-right: 0;
}
.hi-nav1 .swiper .swiper-slide .c-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: all 0.4s;
}
.hi-nav1 .swiper .swiper-slide .c-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  border-top: 0.03rem solid var(--zcolor);
  transition: all 0.4s;
}
.hi-nav1 .swiper .swiper-slide.on .c-text,
.hi-nav1 .swiper .swiper-slide:hover .c-text {
  color: #000;
}
.hi-nav1 .swiper .swiper-slide.on .c-text::before,
.hi-nav1 .swiper .swiper-slide:hover .c-text::before {
  width: 100%;
  left: 0;
}
.hi-nav1 .swiper .swiper-scrollbar {
  left: 0;
  bottom: 0;
  width: 100%;
  background: #eee;
  border-radius: 0;
}
.hi-nav1 .swiper .swiper-scrollbar .swiper-scrollbar-drag {
  border-radius: 0;
  background: var(--zcolor);
}
.after-box1 {
  padding-top: 1.2rem;
  background-color: #Fff;
}
.after-box1 .container .public_title {
  font-size: var(--font40);
}
.after-box1 .container .public_desc {
  margin-top: 0.2rem;
  font-size: var(--font18);
  color: #666;
  padding-left: 30px;
}
.after-box1 .container .img {
  margin-top: 0.6rem;
  width: 100%;
}
.after-box1 .container .img img {
  width: 100%;
}
.after-box2 .w1600 {
  position: relative;
  z-index: 3;
}
.after-box2 .w1600 .container .text_box .public_title {
  font-size: var(--font40);
}
.after-box2 .w1600 .container .text_box .text_box {
  position: relative;
  z-index: 2;
  color: #666666;
  font-size: var(--font18);
  width: 100%;
  margin-top: 0.2rem;
  padding-left: 30px;
}
.after-box2:nth-child(even) .w1600 .container {
  flex-direction: row-reverse;
}
.after-box2:nth-child(even) .motive-wr02 {
  left: 40%;
}
.after-box3 {
  padding-top: 1.2rem;
  background-color: #Fff;
}
.after-box3 .container .public_title {
  font-size: var(--font40);
}
.after-box3 .container .ztechbottom {
  margin-top: 0.55rem;
}
.after-box3 .container .ztechbottom .public-download-list .pbox {
  border-top: 1px solid var(--zcolor);
  background-color: #f7fbfa;
  display: flex;
}
.after-box3 .container .ztechbottom .public-download-list .pbox .pcn1 {
  padding: 0.25rem 0.3rem;
  color: #3caf8c;
}
.after-box3 .container .ztechbottom .public-download-list .pbox .pcn1.pcn1a {
  width: 260px;
  border-right: 1px solid #eee;
}
@media (max-width: 990px) {
  .after-box3 .container .ztechbottom .public-download-list .pbox .pcn1.pcn1a {
    width: 120px;
  }
}
.after-box3 .container .ztechbottom .public-download-list .pbox .pcn1.pcn1b {
  width: calc(100% - 260px);
}
@media (max-width: 990px) {
  .after-box3 .container .ztechbottom .public-download-list .pbox .pcn1.pcn1b {
    width: calc(100% - 120px);
  }
}
.after-box3 .container .ztechbottom .public-download-list .pbox2 .pbox {
  border-top: 0;
  background-color: transparent;
  border-bottom: 1px solid #eee;
}
.after-box3 .container .ztechbottom .public-download-list .pbox2 .pbox:nth-child(1) {
  border-top: 1px solid #eee;
}
.after-box3 .container .ztechbottom .public-download-list .pbox2 .pbox:nth-child(even) {
  background-color: #f5f6f7;
}
.after-box3 .container .ztechbottom .public-download-list .pbox2 .pbox .pcn1 {
  color: #000000;
  display: flex;
}
.after-box3 .container .ztechbottom .public-download-list .pbox2 .pbox .pcn1 .pcn3 {
  color: #000000;
  transition: all 0.5s;
  width: calc(100% - 0.1rem - 20px);
}
.after-box3 .container .ztechbottom .public-download-list .pbox2 .pbox .pcn1 .pcn4 {
  color: #666;
  width: 100%;
}
.after-box4 {
  padding: 1.2rem 0;
  border-bottom: 1px solid #eee;
}
.after-box4 .container {
  display: flex;
  flex-wrap: wrap;
}
.after-box4 .container .left {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1rem 0.4rem;
  width: 38.75%;
}
@media (max-width: 990px) {
  .after-box4 .container .left {
    width: 100%;
  }
}
.after-box4 .container .left .public_title {
  font-size: var(--font40);
}
.after-box4 .container .right {
  width: calc(61.25% + 0.2rem);
  padding: 0.35rem 0.4rem;
  border-radius: 0.1rem;
  border: 1px solid #eee;
  margin-left: -0.2rem;
  background-color: #fff;
}
@media (max-width: 990px) {
  .after-box4 .container .right {
    margin-left: 0;
    margin-top: -0.2rem;
    width: 100%;
  }
}
.invest-box1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.2rem 0;
}
.invest-box1 .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.invest-box1 .container .left {
  width: 50%;
  padding-right: 1rem;
}
@media (max-width: 990px) {
  .invest-box1 .container .left {
    width: 100%;
    padding-right: 0;
  }
}
.invest-box1 .container .left .public_title {
  font-size: var(--font18);
  color: var(--zcolor);
}
.invest-box1 .container .left .cn1 {
  margin-top: 0.1rem;
  padding-left: 30px;
  color: #000000;
}
@media (max-width: 1280px) {
  .invest-box1 .container .left .cn1 br {
    display: none;
  }
}
.invest-box1 .container .left .cn2 {
  margin-top: 0.2rem;
  color: #666666;
  padding-left: 30px;
}
.invest-box1 .container .right {
  width: 50%;
}
@media (max-width: 990px) {
  .invest-box1 .container .right {
    margin-top: 0.6rem;
    width: 100%;
  }
}
.invest-box1 .container .right::before {
  padding-top: 65%;
}
.invest-box2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.2rem 0;
  background-color: #f5f5f5;
}
.invest-box2 .container .public_title {
  font-size: var(--font40);
}
.invest-box2 .container .pbox {
  display: flex;
  flex-wrap: wrap;
  margin: 0.35rem -0.1rem 0;
}
.invest-box2 .container .pbox .pbox2 {
  margin-top: 0.2rem;
  width: calc(100% / 3);
  padding: 0 0.1rem;
}
@media (max-width: 990px) {
  .invest-box2 .container .pbox .pbox2 {
    width: 100%;
  }
}
.invest-box2 .container .pbox .pbox2 .pbox2a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  padding: 0.45rem 0.6rem;
  overflow: hidden;
}
.invest-box2 .container .pbox .pbox2 .bgimg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.invest-box2 .container .pbox .pbox2 .bgimg img {
  height: 100%;
  width: 100%;
}
.invest-box2 .container .pbox .pbox2 .box1 {
  position: relative;
  z-index: 2;
  padding-bottom: 0.55rem;
}
.invest-box2 .container .pbox .pbox2 .box1 .cn1 {
  color: #000000;
}
.invest-box2 .container .pbox .pbox2 .box1 .cn2 {
  margin-top: 0.1rem;
  color: #666666;
}
.invest-box2 .container .pbox .pbox2 .box2 {
  border-top: 1px solid #eee;
  position: relative;
  z-index: 2;
  padding-top: 0.6rem;
  text-align: right;
}
.invest-box2 .container .pbox .pbox2 .box2 .cn3 {
  font-size: var(--font80);
  color: var(--zcolor);
}
.invest-box3.solve1_section {
  padding: 1.2rem 0 !important;
  background-color: #fff;
}
.invest-box3.solve1_section .container {
  flex-direction: row-reverse;
}
@media (max-width: 990px) {
  .invest-box3.solve1_section .container {
    padding: 0.3rem 20px;
  }
}
.invest-box3.solve1_section .container .text_box {
  position: relative;
  z-index: 3;
}
.invest-box3.solve1_section .container .text_box .public_title {
  font-size: var(--font18);
  color: var(--zcolor);
}
.invest-box3.solve1_section .container .text_box .cn1 {
  margin-top: 0.1rem;
  padding-left: 30px;
  color: #000;
  line-height: 1.2;
  font-weight: 400;
}
.invest-box3.solve1_section .container .text_box .text_box2 {
  margin-top: 0.2rem;
  padding-left: 30px;
  color: #666666;
  line-height: 1.5;
}
.invest-box3.solve1_section .bag {
  bottom: 1rem;
  left: 40%;
}
.invest-box4 {
  padding: 1.2rem 0;
  background-color: #F5f6f7;
}
.invest-box4 .container .public_title {
  color: #000;
  font-size: var(--font40);
}
.invest-box4 .public-invest-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.25rem;
}
.invest-box4 .public-invest-list .pbox {
  width: calc(700/1600*100%);
}
@media (max-width: 767px) {
  .invest-box4 .public-invest-list .pbox {
    width: 100%;
  }
}
.invest-box4 .public-invest-list .pbox .pbox2 {
  display: flex;
  padding: 0.25rem 0;
  border-bottom: 1px solid #eee;
  justify-content: space-between;
}
.invest-box4 .public-invest-list .pbox .pbox2 .pcn1 {
  color: #000000;
  transition: all 0.5s;
}
.invest-box4 .public-invest-list .pbox .pbox2 .pcn2 {
  flex-shrink: 0;
}
.invest-box4 .public-invest-list .pbox .pbox2:hover .pcn1 {
  color: var(--zcolor);
}
.invest-box5 {
  padding: 1.2rem 0;
  background-color: #Fff;
  position: relative;
}
.invest-box5 .public_title {
  color: #000000;
}
.invest-box5 .box {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
}
.invest-box5 .box .box2 {
  padding: 1rem 0.4rem 0.65rem;
  width: calc(100% / 3);
  border: 1px solid #eee;
  margin-top: -1px;
  margin-left: -1px;
  text-align: center;
}
@media (max-width: 990px) {
  .invest-box5 .box .box2 {
    width: 100%;
  }
}
.invest-box5 .box .box2 .img {
  width: 1.2rem;
  background-color: #F5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.invest-box5 .box .box2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.invest-box5 .box .box2 .cn1 {
  margin-top: 0.35rem;
  color: #666666;
}
.invest-box5 .box .box2 .cn2 {
  margin-top: 0.15rem;
  color: #000000;
}
.join-box1 {
  padding: 1.2rem 0;
  background-color: #Fff;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.join-box1 .public_title {
  color: var(--zcolor);
  font-size: var(--font18);
}
.join-box1 .cn1 {
  padding-left: 30px;
  color: #000000;
  margin-top: 0.1rem;
  font-weight: 400;
}
.join-box1 .box {
  display: flex;
  flex-wrap: wrap;
}
.join-box1 .box .box2 {
  margin-top: 0.55rem;
  width: calc(100% / 3);
  text-align: center;
}
@media (max-width: 990px) {
  .join-box1 .box .box2 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .join-box1 .box .box2 {
    width: 100%;
  }
}
.join-box1 .box .box2 .box2a {
  padding: 0 1rem;
}
@media (max-width: 990px) {
  .join-box1 .box .box2 .box2a {
    padding: 0 0.3rem;
  }
}
.join-box1 .box .box2 .img {
  width: 1.2rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.join-box1 .box .box2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.join-box1 .box .box2 .cn1 {
  margin-top: 0.35rem;
  color: #000;
  padding-left: 0;
}
.join-box1 .box .box2 .cn2 {
  margin-top: 0.2rem;
  color: #666666;
}
.join-box2 {
  overflow: hidden;
  padding: 1.2rem 0;
  background-color: #Fff;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.join-box2 .public_title {
  color: var(--zcolor);
  font-size: var(--font18);
}
.join-box2 .cn1 {
  padding-left: 30px;
  color: #000000;
  margin-top: 0.1rem;
}
.join-box2 .joinbox2swiper {
  width: 75%;
  margin: 0.55rem auto 0;
}
@media (max-width: 767px) {
  .join-box2 .joinbox2swiper {
    width: 100%;
  }
}
.join-box2 .joinbox2swiper .swiper-slide .img::before {
  padding-top: 43.33333333%;
}
.join-box2 .joinbox2swiper .swiper-slide .img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
  transition: all 0.5s;
}
.join-box2 .joinbox2swiper .swiper-slide .cn2 {
  color: #000;
  margin-top: 0.35rem;
  opacity: 0;
  transition: all 0.5s;
}
.join-box2 .joinbox2swiper .swiper-slide .cn3 {
  color: #666;
  margin-top: 0.1rem;
  opacity: 0;
  transition: all 0.5s;
}
.join-box2 .joinbox2swiper .swiper-slide.swiper-slide-active .img::after {
  opacity: 0;
}
.join-box2 .joinbox2swiper .swiper-slide.swiper-slide-active .cn2 {
  opacity: 1;
}
.join-box2 .joinbox2swiper .swiper-slide.swiper-slide-active .cn3 {
  opacity: 1;
}
.join-box3 {
  padding: 1.2rem 0;
  background-color: #f5f5f5;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.join-box3 .public_title {
  color: var(--zcolor);
  font-size: var(--font18);
}
.join-box3 .cn1 {
  padding-left: 30px;
  color: #000000;
  margin-top: 0.1rem;
}
.join-box3 .cn2 {
  margin-top: 0.2rem;
  display: flex;
  padding-left: 30px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
@media (max-width: 990px) {
  .join-box3 .cn2 {
    flex-wrap: wrap;
    padding-left: 0;
  }
}
.join-box3 .cn2 .cn3 {
  color: #666;
}
@media (max-width: 990px) {
  .join-box3 .cn2 .cn3 {
    padding-left: 30px;
    width: 100%;
  }
}
.join-box3 .cn2 .cn3 a {
  display: inline;
  color: var(--zcolor);
  text-decoration: underline;
}
.join-box3 .cn2 .cn4 {
  flex-shrink: 0;
  margin-left: 0.3rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 990px) {
  .join-box3 .cn2 .cn4 {
    width: 100%;
    margin: 0.3rem 0 0;
  }
}
.join-box3 .cn2 .cn4 .layui-form {
  width: 100%;
}
.join-box3 .cn2 .cn4 .layui-form .pbox {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 990px) {
  .join-box3 .cn2 .cn4 .layui-form .pbox {
    margin: 0 -0.1rem;
  }
}
.join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 {
  width: 2.5rem;
  margin-left: 0.1rem;
}
@media (max-width: 990px) {
  .join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 {
    width: calc(50% - 0.2rem);
    margin: 0 0.1rem;
  }
}
.join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 .layui-input,
.join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 input,
.join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 textarea {
  width: 100%;
  border: 1px solid #eee;
  color: #000;
  box-shadow: none !important;
  padding: 0.15rem 0.2rem;
  height: auto;
  font-size: var(--font14);
}
@media (max-width: 990px) {
  .join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 .layui-input,
  .join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 input,
  .join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 textarea {
    padding: 0.2rem 0.3rem;
  }
}
.join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 .layui-input:focus,
.join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 input:focus,
.join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 textarea:focus {
  border-color: var(--zcolor) !important;
}
.join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 .layui-input::placeholder,
.join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 input::placeholder,
.join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 textarea::placeholder {
  color: #999;
}
.join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 .layui-form-select dl dd {
  font-size: var(--font14);
}
.join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 .layui-form-select dl {
  top: 100%;
}
.join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 .layui-form-select dl dd.layui-this {
  color: var(--zcolor);
}
.join-box3 .cn2 .cn4 .layui-form .pbox .pbox2 .pcn3 .layui-edge {
  background-image: url(../images/zimg39.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 0;
  margin-top: -3px;
  width: 10px;
  height: 6px;
  right: 0.2rem;
  border-width: 0;
}
.join-box3 .public-join-list {
  margin-top: 0.55rem;
}
.join-box3 .public-join-list .pbox {
  padding: 0 0.3rem;
  border-bottom: 1px solid #f5f5f5;
  background-color: #Fff;
}
.join-box3 .public-join-list .pbox.active .pbox1 .pcn1 {
  color: var(--zcolor);
}
.join-box3 .public-join-list .pbox.active .pbox1 .pcn3 svg {
  transform: rotate(180deg);
}
.join-box3 .public-join-list .pbox.active .pbox1 .pcn3 svg path {
  fill: var(--zcolor);
}
.join-box3 .public-join-list .pbox .pbox1 {
  background-color: #Fff;
  display: flex;
  align-items: center;
  padding: 0.15rem 0;
  cursor: pointer;
  position: relative;
}
.join-box3 .public-join-list .pbox .pbox1 .pcn1 {
  color: #666666;
  width: 160px;
  padding-right: 0.1rem;
  transition: all 0.5s;
}
.join-box3 .public-join-list .pbox .pbox1 .pcn2 {
  display: flex;
  align-items: center;
  color: #666666;
}
.join-box3 .public-join-list .pbox .pbox1 .pcn2 img,
.join-box3 .public-join-list .pbox .pbox1 .pcn2 svg {
  margin-right: 0.1rem;
}
.join-box3 .public-join-list .pbox .pbox1 .pcn2 span {
  max-width: 160px;
}
@media (max-width: 767px) {
  .join-box3 .public-join-list .pbox .pbox1 .pcn2 span {
    max-width: 100px;
  }
}
.join-box3 .public-join-list .pbox .pbox1 .pcn3 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.join-box3 .public-join-list .pbox .pbox1 .pcn3 svg {
  transition: all 0.5s;
}
.join-box3 .public-join-list .pbox .pbox1 .pcn3 svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.join-box3 .public-join-list .pbox .pbox2 {
  display: none;
  background-color: #Fff;
  border-top: 1px solid #f5f5f5;
  padding: 0.35rem 0;
}
.join-box3 .public-join-list .pbox .pbox2 h3 {
  color: #000000;
  font-size: var(--font18);
}
.join-box3 .public-join-list .pbox .pbox2 p {
  font-size: var(--font16);
  color: #666666;
  line-height: 1.875;
}
.select-box {
  position: sticky;
  position: -webkit-sticky;
  left: 0;
  z-index: 5;
  top: 0;
  background-color: #f5f5f5;
}
.select-box .hi-nav1 .swiper .swiper-slide .c-text {
  line-height: 0.7rem;
}
@media (max-width: 990px) {
  .select-box .hi-nav1 .swiper .swiper-slide .c-text {
    line-height: 0.9rem;
  }
}
.select-box .hi-nav1 {
  margin-top: 0;
}
.select-box .hi-nav1 .swiper-wrapper {
  flex-wrap: wrap;
}
.select-box .w1600 {
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.select-box .w1600 .left {
  max-width: 100%;
}
.select-box .w1600 .right {
  margin: 0.1rem 0 0.1rem auto;
  flex-shrink: 0;
}
.mbselect-box {
  display: none;
  margin-top: 0.5rem;
}
@media (max-width: 990px) {
  .mbselect-box {
    display: block;
  }
}
.mbselect-box .container {
  display: flex;
  justify-content: flex-end;
}
.select-box2 {
  padding: 1.2rem 0;
}
.select-box2 .box1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .select-box2 .box1 {
    flex-wrap: wrap;
  }
}
@media (max-width: 990px) {
  .select-box2 .box1 .box1a {
    width: 100%;
  }
}
.select-box2 .box1 .box1a .public_title {
  font-size: var(--font18);
  color: var(--zcolor);
}
.select-box2 .box1 .box1a .cn1 {
  padding-left: 30px;
  color: #000000;
  margin-top: 0.1rem;
}
.select-box2 .box1 .box1a .cn2 {
  padding-left: 30px;
  margin-top: 0.2rem;
  color: #666666;
}
.select-box2 .box1 .box1b {
  margin-left: 1rem;
  flex-shrink: 0;
}
@media (max-width: 990px) {
  .select-box2 .box1 .box1b {
    flex-shrink: initial;
    margin-left: 30px;
    margin-top: 0.2rem;
  }
}
.select-box2 .box1 .box1b .cn3 {
  display: flex;
  align-items: center;
  color: var(--zcolor);
}
.select-box2 .box1 .box1b .cn3 img {
  margin-left: 0.15rem;
}
.select-box2 .box2 .box2a {
  padding: 0.4rem;
  border: 1px solid #eee;
  margin-top: 0.6rem;
}
.select-box2 .box2 .box2a .cn4 {
  color: #000000;
}
.select-box2 .box2 .box2a .cn5 {
  margin-top: 0.1rem;
  color: #666666;
}
.select-box2 .box2 .box2a .cn6 {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
}
.select-box2 .box2 .box2a .cn6 .cn6a {
  width: 50%;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .select-box2 .box2 .box2a .cn6 .cn6a {
    width: 100%;
    padding-right: 0;
  }
}
.select-box2 .box2 .box2a .cn6 .cn6a .cn7 {
  color: #000000;
  font-size: var(--font80);
}
.select-box2 .box2 .box2a .cn6 .cn6a .cn7 img {
  max-width: 100%;
  object-fit: contain;
}
.select-box2 .box2 .box2a .cn6 .cn6a .public-select-list .pbox.active .pbox1 .pcn1 {
  color: var(--zcolor);
}
.select-box2 .box2 .box2a .cn6 .cn6a .public-select-list .pbox.active .pbox1 .pcn3 svg {
  transform: rotate(180deg);
}
.select-box2 .box2 .box2a .cn6 .cn6a .public-select-list .pbox.active .pbox1 .pcn3 svg path {
  fill: var(--zcolor);
}
.select-box2 .box2 .box2a .cn6 .cn6a .public-select-list .pbox .pbox1 {
  display: flex;
  align-items: center;
  padding: 0.15rem 0;
  cursor: pointer;
  position: relative;
}
.select-box2 .box2 .box2a .cn6 .cn6a .public-select-list .pbox .pbox1 .pcn1 {
  color: #666666;
  width: 80%;
  padding-right: 0.1rem;
  transition: all 0.5s;
}
.select-box2 .box2 .box2a .cn6 .cn6a .public-select-list .pbox .pbox1 .pcn3 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.select-box2 .box2 .box2a .cn6 .cn6a .public-select-list .pbox .pbox1 .pcn3 svg {
  transition: all 0.5s;
}
.select-box2 .box2 .box2a .cn6 .cn6a .public-select-list .pbox .pbox1 .pcn3 svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.select-box2 .box2 .box2a .cn6 .cn6a .public-select-list .pbox .pbox2 {
  display: none;
  padding: 0 0 0.35rem;
}
.select-box2 .box2 .box2a .cn6 .cn6a .public-select-list .pbox .pbox2 p {
  margin-top: 0.15rem;
  color: #666666;
  font-size: var(--font16);
}
.select-box2 .box2 .box2a .cn6 .cn6a .public-select-list .pbox .pbox2 ul li {
  margin-top: 0.15rem;
  display: flex;
}
.select-box2 .box2 .box2a .cn6 .cn6a .public-select-list .pbox .pbox2 ul li p:nth-child(1) {
  width: 0.3rem;
  height: 0.3rem;
  background-color: #f7fbfa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.1rem;
}
.select-box2 .box2 .box2a .cn6 .cn6a .public-select-list .pbox .pbox2 ul li p:nth-child(1) img {
  width: 100%;
  height: 100%;
}
.select-box2 .box2 .box2a .cn6 .cn6a .public-select-list .pbox .pbox2 ul li p:nth-child(2) {
  width: calc(100% - 0.4rem);
  color: #666666;
  line-height: 0.3rem;
}
.select-box2 .box2 .box2a .cn6 .cn6b {
  padding-left: 1rem;
  width: 50%;
  position: relative;
}
@media (max-width: 767px) {
  .select-box2 .box2 .box2a .cn6 .cn6b {
    width: 100%;
    padding-left: 0;
    margin-top: 0.4rem;
    padding-top: 0.4rem;
    border-top: 1px solid #eee;
  }
}
.select-box2 .box2 .box2a .cn6 .cn6b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #eee;
}
@media (max-width: 767px) {
  .select-box2 .box2 .box2a .cn6 .cn6b::before {
    display: none;
  }
}
.select-box2 .box2 .box2a .cn6 .cn6b .cn8 {
  color: #666;
  line-height: 1.875;
}
.select-box2 .box2 .box2a .cn9 {
  background-color: #f7fbfa;
  margin-top: 0.4rem;
  color: #666666;
  padding: 0.15rem 0.3rem;
  position: relative;
}
.select-box2 .box2 .box2a .cn9::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.03rem;
  height: 100%;
  background-color: var(--zcolor);
}
.select-box3 .contact-box1 {
  padding: 1.2rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.select-box3 .contact-box1 .left .cn100 {
  margin-top: 0.15rem;
  padding-left: 30px;
}
.select-box3 .contact-box1 .left .box {
  margin-top: 0.55rem;
}
.select-box3 .contact-box1 .left .box .box2 {
  border-bottom: 1px solid #e0e0e0 !important;
  padding: 20px 0 30px !important;
}
.select-box3 .contact-box1 .left .box .box2:nth-child(1) {
  border-top: 1px solid #e0e0e0;
}
.select-box3 .contact-box1 .right .public-form-box {
  background-color: #Fff;
}
.deve-box1 {
  padding-top: 1.2rem;
  background-color: #Fff;
}
.deve-box1 .container .public_title {
  font-size: var(--font18);
  color: var(--zcolor);
}
.deve-box1 .container .cn1 {
  margin-top: 0.2rem;
  font-size: var(--font40);
  color: #000;
  padding-left: 30px;
}
.deve-box1 .container .public_desc {
  /* max-width: 890px; */
  margin-top: 0.2rem;
  font-size: var(--font18);
  color: #666;
  padding-left: 30px;
}
.deve-box1 .container .public_desc span {
  color: #000;
}
.deve-box1 .container .img {
  margin-top: 0.6rem;
  width: 100%;
}
.deve-box1 .container .img img {
  width: 100%;
}
.deve-box2 .w1600 {
  position: relative;
  z-index: 3;
}
.deve-box2 .w1600 .container .text_box .public_title {
  font-size: var(--font18);
  color: var(--zcolor);
}
.deve-box2 .w1600 .container .text_box .cn1 {
  margin-top: 0.1rem;
  font-size: var(--font40);
  color: #000;
  padding-left: 30px;
}
.deve-box2 .w1600 .container .text_box .text_box {
  position: relative;
  z-index: 2;
  color: #666666;
  font-size: var(--font18);
  width: 100%;
  margin-top: 0.2rem;
  padding-left: 30px;
}
.deve-box2 .w1600 .container .text_box .cn10 {
  margin-top: 0.4rem;
}
.deve-box2 .w1600 .container .text_box .cn10 .cn10a {
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  padding: 0.2rem 0.3rem;
}
.deve-box2 .w1600 .container .text_box .cn10 .cn10a .cn11 {
  flex-shrink: 0;
  margin-right: 0.2rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: rgba(60, 175, 140, 0.1);
}
.deve-box2 .w1600 .container .text_box .cn10 .cn10a .cn11 img {
  width: 100%;
  height: 100%;
}
.deve-box2 .w1600 .container .text_box .cn10 .cn10a .cn12 .cn12a {
  color: #000000;
}
.deve-box2 .w1600 .container .text_box .cn10 .cn10a .cn12 .cn12b {
  margin-top: 0.05rem;
  color: #666666;
  line-height: 1.25;
}
.deve-box2:nth-child(even) .w1600 .container {
  flex-direction: row-reverse;
}
.deve-box2:nth-child(even) .motive-wr02 {
  left: 40%;
}
.deve-box3 {
  padding: 1.2rem 0;
}
.deve-box3 .public_title {
  font-size: var(--font18);
  color: var(--zcolor);
}
.deve-box3 .cn1 {
  margin-top: 0.1rem;
  font-size: var(--font40);
  color: #000;
  padding-left: 30px;
}
.deve-box3 .devebox3swiper {
  position: relative;
  overflow: hidden;
  margin-top: 0.6rem;
}
.deve-box3 .devebox3swiper .publicaddlinks .ptext .pcn2 {
  height: auto;
}
.deve-box3 .cn4 {
  margin-top: 0.5rem;
  text-align: center;
  color: #000;
}
.deve-box3 .cn5 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}
.deve-box3 .cn5 .zpublic-btn .zpcn1 {
  color: var(--zcolor);
}
.deve-box5 {
  padding-bottom: 1.2rem;
  padding-top: 1.2rem;
}
.deve-box5 .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .deve-box5 .box {
    flex-wrap: wrap;
  }
}
@media (max-width: 990px) {
  .deve-box5 .box .box10 {
    width: 100% l;
  }
}
.deve-box5 .box .box10 .public_title {
  font-size: var(--font18);
  color: var(--zcolor);
}
.deve-box5 .box .box10 .cn1 {
  margin-top: 0.1rem;
  font-size: var(--font40);
  color: #000;
  padding-left: 30px;
}
.deve-box5 .box .box2 {
  display: flex;
}
@media (max-width: 990px) {
  .deve-box5 .box .box2 {
    justify-content: center;
    width: 100%;
    margin-top: 0.55rem;
  }
}
.deve-box5 .box .box2 .box2a {
  margin-left: 0.4rem;
  color: #999999;
  position: relative;
  padding-bottom: 0.1rem;
  cursor: pointer;
}
.deve-box5 .box .box2 .box2a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--zcolor);
  transition: all 0.5s;
}
.deve-box5 .box .box2 .box2a.on {
  color: #000;
}
.deve-box5 .box .box2 .box2a.on::before {
  width: 100%;
}
.deve-box5 .box3 {
  position: relative;
}
.deve-box5 .box3 .box3a {
  z-index: 3;
  position: relative;
  display: none;
}
.deve-box5 .box3 .box3a.on {
  display: block;
}
.deve-box5 .box3 .box4 {
  flex-wrap: wrap;
  margin: 0.4rem -0.1rem 0;
  display: flex;
}
.deve-box5 .box3 .box4 .box5 {
  margin-top: 0.2rem;
  width: calc(100% / 3);
  padding: 0 0.1rem;
}
@media (max-width: 990px) {
  .deve-box5 .box3 .box4 .box5 {
    width: 100%;
  }
}
.deve-box5 .box3 .box4 .box5 .box5a {
  height: 100%;
  border: 1px solid #eee;
}
.deve-box5 .box3 .box4 .box5 .box5a .cn20::before {
  padding-top: 50%;
}
.deve-box5 .box3 .box4 .box5 .box5a .cn21 {
  padding: 0.4rem;
}
.deve-box5 .box3 .box4 .box5 .box5a .cn21 .cn22 {
  color: #000;
}
.deve-box5 .box3 .box4 .box5 .box5a .cn21 .cn23 {
  margin-top: 0.2rem;
  color: #666666;
}
.deve-box6 {
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 1.2rem;
  padding-top: 1.2rem;
  min-height: 8rem;
}
.deve-box6 .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.deve-box6 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.deve-box6 .container {
  position: relative;
}
.deve-box6 .container .public_title {
  background: url(../images/contrast-title-bg-white.png) no-repeat left top;
  line-height: 1;
  background-size: 15px 15px;
  color: #fff;
  font-size: var(--font18);
}
.deve-box6 .container .cn1 {
  padding-left: 30px;
  margin-top: 0.1rem;
  color: #Fff;
  font-size: var(--font40);
}
.deve-box6 .container .cn2 {
  padding-left: 30px;
  margin-top: 0.2rem;
  max-width: 670px;
  color: #Ffff;
}
.deve-box4 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.2rem 0;
  background-color: #f5f5f5;
}
.deve-box4 .container .public_title {
  font-size: var(--font18);
  color: var(--zcolor);
}
.deve-box4 .container .cn31 {
  margin-top: 0.1rem;
  font-size: var(--font40);
  color: #000;
  padding-left: 30px;
}
.deve-box4 .container .pbox {
  display: flex;
  flex-wrap: wrap;
  margin: 0.35rem -0.1rem 0;
}
.deve-box4 .container .pbox .pbox2 {
  margin-top: 0.2rem;
  width: calc(100% / 3);
  padding: 0 0.1rem;
}
@media (max-width: 990px) {
  .deve-box4 .container .pbox .pbox2 {
    width: 100%;
  }
}
.deve-box4 .container .pbox .pbox2 .pbox2a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  padding: 0.45rem 0.6rem;
  overflow: hidden;
}
.deve-box4 .container .pbox .pbox2 .bgimg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.deve-box4 .container .pbox .pbox2 .bgimg img {
  height: 100%;
  width: 100%;
}
.deve-box4 .container .pbox .pbox2 .box1 {
  position: relative;
  z-index: 2;
  padding-bottom: 0.55rem;
}
.deve-box4 .container .pbox .pbox2 .box1 .cn1 {
  color: #000000;
}
.deve-box4 .container .pbox .pbox2 .box1 .cn2 {
  margin-top: 0.1rem;
  color: #666666;
}
.deve-box4 .container .pbox .pbox2 .box2 {
  border-top: 1px solid #eee;
  position: relative;
  z-index: 2;
  padding-top: 0.6rem;
  text-align: right;
}
.deve-box4 .container .pbox .pbox2 .box2 .cn3 {
  font-size: var(--font80);
  color: var(--zcolor);
}
.deve-box4 .container .cn10 {
  margin-top: 0.55rem;
  text-align: center;
  color: #000;
}
.deve-box4 .container .pbox11 {
  display: flex;
  flex-wrap: wrap;
}
.deve-box4 .container .pbox11 .pbox11a {
  margin-top: 0.55rem;
  width: 50%;
  padding: 0 1rem;
}
@media (max-width: 990px) {
  .deve-box4 .container .pbox11 .pbox11a {
    padding: 0;
    width: 100%;
  }
}
.deve-box4 .container .pbox11 .pbox11a .cn11 {
  width: 100%;
}
.deve-box4 .container .pbox11 .pbox11a .cn11 img {
  width: 100%;
}
.deve-box4 .container .pbox11 .pbox11a .cn12 {
  margin-top: 0.35rem;
  text-align: center;
  color: #666;
}
.deve-box1 .container .public_desc span {
  max-width: initial;
}
.deve-box2 .w1600 .container .text_box .cn10 .cn10a .cn12 .cn12a {
  font-weight: bold;
}
.deve-box4 .container .cn31 {
  font-weight: bold;
}
.join-box3 .public-join-list .pbox .pbox2 h3 {
  font-weight: bold;
}
.join-box1 .cn1 {
  font-weight: bold;
}
.deve-box6 .container .cn1 {
  font-weight: bold;
}
.deve-box3 .cn1 {
  font-weight: bold;
}
.deve-box4 .container .pbox .pbox2 .box1 .cn1 {
  font-weight: bold;
}
.deve-box4 .container .cn10 {
  font-weight: bold;
}
.deve-box5 .box .box2 .box2a {
  font-weight: bold;
}
.deve-box5 .box3 .box4 .box5 .box5a .cn21 .cn22 {
  font-weight: bold;
}
.deve-box5 .box .box10 .cn1 {
  font-weight: bold;
}
.deve-box2 .w1600 .container .text_box .cn1 {
  font-weight: bold;
}
.deve-box1 .container .cn1 {
  font-weight: bold;
}
.contact-box1 .container .left .box .box2 .cn1 .cn3 {
  font-weight: bold;
}
.contact-box3 .box3 .box3a .box3b .box3c .box3d .cn1 {
  font-weight: bold;
}
.invest-box1 .container .left .cn1 {
  font-weight: bold;
}
.invest-box5 .box .box2 .cn2 {
  font-weight: bold;
}
.invest-box2 .container .pbox .pbox2 .box1 .cn1 {
  font-weight: bold;
}
.join-box2 .joinbox2swiper .swiper-slide.swiper-slide-active .cn2 {
  font-weight: bold;
}
.invest-box3.solve1_section .container .text_box .cn1 {
  font-weight: bold;
}
.contact-box3 .box3 .box3a .box3b .box3c .box3d .cn2 .cn3 .cn5 {
  font-weight: bold;
}
.invest-box3.solve1_section .container .text_box {
  line-height: initial;
}
.solve1_section.deve-box2 .text_box {
  line-height: initial;
}
.solve1_section.after-box2 .text_box {
  line-height: initial;
}
.select-box3 .public_title {
  background-position-y: 0.2em;
}
.after-box1 .public_title {
  background-position-y: 0.2em;
}
.after-box2 .w1600 .container .text_box .public_title {
  background-position-y: 0.2em;
}
.after-box3 .public_title {
  background-position-y: 0.2em;
}
.after-box4 .public_title {
  background-position-y: 0.2em;
}
.contact-box1 .container .left .public_title {
  background-position-y: 0.2em;
}
.contact-box3 .box .public_title {
  background-position-y: 0.2em;
}
.add-box1 .public_title {
  background-position-y: 0.2em;
}
.add-box2 .public_title {
  background-position-y: 0.2em;
}
.invest-box5 .public_title {
  background-position-y: 0.2em;
  font-size: var(--font40);
}
.news-info2 .container .public_title {
  background-position-y: 0.2em;
}
.invest-box2 .container .public_title {
  background-position-y: 0.2em;
}
.invest-box4 .container .public_title {
  background-position-y: 0.2em;
}
.deve-box1 .container .public_title {
  font-weight: normal;
}
.deve-box2 .w1600 .container .text_box .public_title {
  font-weight: normal;
}
.deve-box3 .public_title {
  font-weight: normal;
}
.deve-box4 .container .public_title {
  font-weight: normal;
}
.deve-box5 .box .box10 .public_title {
  font-weight: normal;
}
.deve-box6 .container .public_title {
  font-weight: normal;
}
.invest-box3.solve1_section .container .text_box .public_title {
  font-weight: normal;
}
.join-box1 .public_title {
  font-weight: normal;
}
.join-box2 .public_title {
  font-weight: normal;
}
.join-box3 .public_title {
  font-weight: normal;
}
.invest-box1 .container .left .public_title {
  font-weight: normal;
}
.invest-box3.solve1_section .container .text_box .public_title {
  font-weight: normal;
}
.select-box2 .box1 .box1a .public_title {
  font-weight: normal;
}
