@charset "utf-8";
:root {
  --color: #008fd7;
  --vh: 100vh;
}
/*字体*/
@font-face {
  font-family: "fontshuzi";
  src: url("../font/Poppins-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "dinbold";
  src: url("../font/Manrope-Light.ttf") format("truetype");
}
.font-shuzi {
  font-family: fontshuzi;
}
.font-m {
  font-family: dinbold;
}
* {
  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;
}
html ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
html ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #008fd7;
}
html ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  resize: none;
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  margin: 0 auto;
  width: 85%;
  max-width: 1400px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.font16 {
  font-size: 16px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .font16 {
    font-size: 0.28rem;
  }
}
.public-scrollbar {
  scrollbar-width: thin;
}
.public-scrollbar ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.public-scrollbar ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #008fd7;
}
.public-scrollbar ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
.public-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.2rem;
  min-width: 1rem;
}
.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.5s;
}
.public-content {
  color: #666;
  line-height: 1.8;
}
.public-content a {
  color: #666;
}
.public-content table {
  max-width: 100%;
}
.public-content table td,
.public-content table th {
  padding: 10px 15px;
  border: 1px solid #dbf1ed;
}
.public-content li {
  margin-left: 15px;
  list-style: disc;
}
.public-content ol {
  margin-left: 15px;
  list-style: decimal;
}
.public-content img,
.public-content video {
  max-width: 100%;
  height: auto !important;
}
#hi-upgrade {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
#hi-upgrade .hi-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -177px 0 0 -450px;
  width: 900px;
}
#hi-upgrade .hi-wrap .hi-title {
  font-size: 30px;
  line-height: 40px;
  color: #333;
}
#hi-upgrade .hi-wrap .hi-close {
  margin: 10px 0;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: #008fd7;
}
#hi-upgrade .hi-wrap .hi-close:hover {
  text-decoration: underline;
}
#hi-upgrade .hi-wrap .hi-text1 {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-text1 span {
  color: #008fd7;
}
#hi-upgrade .hi-wrap .hi-text2 {
  position: relative;
  margin: 60px 0;
  color: #333;
}
#hi-upgrade .hi-wrap .hi-text2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  border-top: 1px solid #ddd;
}
#hi-upgrade .hi-wrap .hi-text2 span {
  position: relative;
  z-index: 5;
  padding: 0 30px;
  background: #fff;
}
#hi-upgrade .hi-wrap .hi-list {
  overflow: hidden;
}
#hi-upgrade .hi-wrap .hi-list li {
  display: inline-block;
  width: 16%;
}
#hi-upgrade .hi-wrap .hi-list li div {
  margin: 0 auto 5px;
  width: 50px;
  height: 50px;
}
#hi-upgrade .hi-wrap .hi-list li a {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-list li a:hover {
  color: #008fd7;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
  background: url(../images/hi-llq-1.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
  background: url(../images/hi-llq-2.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
  background: url(../images/hi-llq-3.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
  background: url(../images/hi-llq-4.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
  background: url(../images/hi-llq-5.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
  background: url(../images/hi-llq-6.jpg) no-repeat center / 100%;
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 1.21rem;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 1.2rem;
  }
}
/*顶部*/
#c-header {
  display: flex;
  align-items: center;
  height: 0.85rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 0.85rem;
  text-align: center;
  color: #373737;
  transition: 0.3s;
}
@media (max-width: 991px) {
  #c-header {
    line-height: 1.2rem;
    height: 1.2rem;
  }
}
#c-header a {
  color: #373737;
  transition: 0.3s;
}
#c-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  #c-header .container {
    height: 1.2rem;
  }
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
}
#c-header.c-head-move {
  top: -1.21rem;
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -1.2rem;
  }
}
#c-header.c-style2 {
  color: #333;
  background: rgba(255, 255, 255, 0.9);
}
#c-header.c-style2 a {
  color: #333;
}
/*顶部logo*/
#c-header .c-logo {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box img {
  width: 1.5rem;
  height: 0.28rem;
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img {
    width: 1.8rem;
    height: 0.336rem;
  }
}
#c-header .c-logo .c-img-box svg {
  width: 1.5rem;
  height: 0.28rem;
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box svg {
    width: 2rem;
    height: 0.37rem;
  }
}
#c-header .c-logo span {
  display: inline-block;
  margin-left: 0.2rem;
  padding-left: 0.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  #c-header .c-logo span {
    display: none;
  }
}
/*顶部pc导航*/
#c-header .c-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav > li {
  position: relative;
  margin-right: 0.7rem;
}
#c-header .c-nav > li:last-child {
  margin-right: 0;
}
#c-header .c-nav > li > .c-title-box {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#c-header .c-nav > li > .c-title-box > a {
  display: flex;
  align-items: center;
}
#c-header .c-nav > li > .c-title-box img,
#c-header .c-nav > li > .c-title-box svg {
  margin-left: 0.05rem;
  width: 10px;
  height: 6px;
}
#c-header .c-nav > li > .c-title-box img path,
#c-header .c-nav > li > .c-title-box svg path {
  fill: #333;
  transition: all 0.3s;
}
#c-header .c-nav > li > .c-title-box + .cn100 {
  width: 300vw;
  box-shadow: none;
  background-color: transparent;
}
#c-header .c-nav > li > .c-title-box + .cn100 em {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 300vw;
  height: 1.24rem;
  background-color: rgba(255, 255, 255, 0.9);
}
#c-header .c-nav > li > .c-title-box + .cn100 .cn101 {
  border-bottom: 0;
  display: inline-block;
}
#c-header .c-nav > li > .c-title-box + .cn100 .cn101 .cn102 {
  line-height: 1.24rem;
  color: #666666;
  padding: 0 0.4rem;
  position: relative;
}
#c-header .c-nav > li > .c-title-box + .cn100 .cn101 .cn102:hover {
  color: #008fd7;
}
#c-header .c-nav > li > .c-title-box + .cn100 .cn101 .cn102::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0.68rem;
  background-color: #d4d4d4;
}
#c-header .c-nav > li > .c-title-box + .cn100 .cn101:last-child .cn102::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0.68rem;
  background-color: #d4d4d4;
}
#c-header .c-nav > li a:before {
  display: none;
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  background: #008fd7;
  transition: 0.3s;
}
#c-header .c-nav li a {
  position: relative;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#c-header .c-nav ul {
  position: absolute;
  top: 100%;
  left: 50%;
  display: none;
  min-width: 1.5rem;
  line-height: 0.5rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#c-header .c-nav ul li {
  border-bottom: 1px solid #eee;
}
#c-header .c-nav ul li:last-child {
  border: 0;
}
#c-header .c-nav ul li a {
  color: #333;
}
#c-header.c-style2 .c-nav li.on > .c-title-box > a,
#c-header .c-nav li:hover > .c-title-box > a,
#c-header .c-nav li.on > a,
#c-header .c-nav li:hover > a {
  color: #008fd7;
}
#c-header.c-style2 .c-nav li.on > .c-title-box > a:before,
#c-header .c-nav li:hover > .c-title-box > a:before,
#c-header .c-nav li.on > a:before,
#c-header .c-nav li:hover > a:before {
  width: 100%;
}
#c-header.c-style2 .c-nav li.on > .c-title-box svg path,
#c-header .c-nav li:hover > .c-title-box svg path {
  fill: #008fd7 !important;
}
#c-header.c-style2 .c-nav li .c-title-box svg path {
  fill: #333;
}
/*顶部移动端导航*/
#c-header .c-nav2 {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 1rem;
  color: #333;
  background: #fff;
  overflow-y: auto;
  transition: 0.3s;
  text-align: left;
}
#c-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#c-header .c-nav2 li {
  padding: 0 0.5rem;
  border-top: 1px solid #f1f1f1;
}
@media (max-width: 767px) {
  #c-header .c-nav2 li {
    padding: 0 0.5rem;
  }
}
#c-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#c-header .c-nav2 li .c-title-box img,
#c-header .c-nav2 li .c-title-box svg {
  width: 0.3rem;
  height: 0.3rem;
  transition: all 0.3s;
}
#c-header .c-nav2 li .c-title-box img path,
#c-header .c-nav2 li .c-title-box svg path {
  fill: #333;
}
#c-header .c-nav2 li .c-title-box.on img,
#c-header .c-nav2 li .c-title-box.on svg {
  transform: rotate(90deg);
}
#c-header .c-nav2 li a {
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
  color: #008fd7;
}
#c-header .c-nav2 li ul {
  display: none;
}
.c-open #c-header .c-nav2 {
  height: calc(100vh - 1.2rem);
}
/*顶部导航开关*/
#c-header .c-switch {
  position: relative;
  display: none;
  width: 0.48rem;
  height: 0.4rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  #c-header .c-switch {
    display: block;
  }
}
#c-header .c-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #333;
  transition: all 0.3s;
}
#c-header .c-switch i:nth-child(1) {
  top: 0;
}
#c-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#c-header .c-switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
#c-header.c-style2 .c-switch i {
  background: #333;
}
body.c-open #c-header .c-switch i:nth-child(2) {
  opacity: 0;
}
body.c-open #c-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.c-open #c-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 顶部功能区 */
#c-header .c-gn {
  display: flex;
  align-items: center;
}
@media (max-width: 1260px) {
  #c-header .c-gn {
    display: none;
  }
}
#c-header .c-gn .ztop-language {
  display: flex;
  align-items: center;
  position: relative;
}
#c-header .c-gn .ztop-language .cn1 {
  display: flex;
  align-items: center;
}
#c-header .c-gn .ztop-language .cn1 svg {
  width: 0.31rem;
  height: 0.25rem;
}
#c-header .c-gn .ztop-language .cn2 {
  opacity: 0;
  top: 0;
  transition: all 0.5s;
  margin-top: 0.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  padding: 5px;
  border-radius: 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  line-height: 1.5em;
  height: auto;
}
#c-header .c-gn .ztop-language .cn2 .cn3 {
  display: block;
  color: #999;
  text-align: center;
  line-height: 50px;
  height: auto;
  position: relative;
}
#c-header .c-gn .ztop-language .cn2 .cn3::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60%;
  height: 1px;
  background-color: #e5e5e5;
}
#c-header .c-gn .ztop-language .cn2 .cn3:last-child::before {
  display: none;
}
#c-header .c-gn .ztop-language .cn2 .cn3.on {
  background-color: #008fd7;
  border-radius: 50%;
  color: #fff;
}
#c-header .c-gn .ztop-language .cn2 .cn3.on2::before {
  display: none;
}
#c-header .c-gn .ztop-language .cn2 .cn3:hover {
  background-color: #008fd7;
  border-radius: 50%;
  color: #fff;
}
#c-header .c-gn .ztop-language .cn2 .cn3:hover::before {
  display: none;
}
#c-header .c-gn .ztop-language:hover .cn2 {
  opacity: 1;
  top: 100%;
}
#c-header .c-gn .ztop-search {
  margin: 0.1rem 0;
  line-height: 0.65rem;
  height: 0.65rem;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0.2rem;
  margin-left: 0.1rem;
  transition: all 0.5s;
  cursor: pointer;
}
#c-header .c-gn .ztop-search form {
  padding-left: 0;
  width: auto;
}
#c-header .c-gn .ztop-search .cn1 {
  display: flex;
  align-items: center;
  position: relative;
}
#c-header .c-gn .ztop-search .cn1 img {
  width: 0.24rem;
  height: 0.24rem;
}
#c-header .c-gn .ztop-search .cn1 svg {
  width: 0.24rem;
  height: 0.24rem;
}
#c-header .c-gn .ztop-search .cn1 svg path {
  fill: #333;
  opacity: 1;
}
#c-header .c-gn .ztop-search .cn2 {
  position: absolute;
  right: 100%;
  width: 0;
  visibility: hidden;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
  height: 100%;
  line-height: 0.65rem;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#c-header .c-gn .ztop-search .cn2 input {
  line-height: 0.65rem;
}
#c-header .c-gn .ztop-search:hover {
  background-color: #008fd7;
}
#c-header .c-gn .ztop-search:hover .cn1 {
  text-align: center;
}
#c-header .c-gn .ztop-search:hover .cn1 svg path {
  fill: #fff;
}
#c-header .c-gn .ztop-search:hover .cn2 {
  opacity: 1;
  width: 200px;
  visibility: visible;
}
#c-go-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #008fd7;
  cursor: pointer;
}
@media (max-width: 767px) {
  #c-go-top {
    display: none !important;
  }
}
#c-go-top img,
#c-go-top svg {
  width: 50%;
  height: 50%;
  transform: rotate(-90deg);
}
#c-go-top img path,
#c-go-top svg path {
  fill: #ffff;
}
#c-code-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 910;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#c-code-pop .c-img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20px;
  width: 200px;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#c-code-pop .c-img-box .c-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  bottom: -60px;
  left: 50%;
  margin-left: -20px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.5s;
}
#c-code-pop .c-img-box .c-close img,
#c-code-pop .c-img-box .c-close svg {
  margin: 4px;
  width: 18px;
  height: 18px;
}
#c-code-pop .c-img-box .c-close img path,
#c-code-pop .c-img-box .c-close svg path {
  fill: #333;
  transition: all 0.5s;
}
#c-code-pop .c-img-box .c-close:hover {
  background-color: #008fd7;
}
#c-code-pop .c-img-box .c-close:hover svg path {
  fill: #fff;
}
#c-code-pop .c-img-box > img {
  width: 100%;
}
#c-code-pop .c-img-box .c-text {
  padding-top: 10px;
  line-height: 1;
  text-align: center;
  color: #333;
}
.textflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.textflow2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.textflow3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.textflow4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.textflow10 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.font60 {
  font-size: 0.6rem;
}
.font54 {
  font-size: 0.54rem;
}
.font50 {
  font-size: 0.5rem;
}
.font48 {
  font-size: 0.48rem;
}
@media (max-width: 991px) {
  .font48 {
    font-size: 0.5rem;
  }
}
.font42 {
  font-size: 0.42rem;
}
@media (max-width: 991px) {
  .font42 {
    font-size: 0.5rem;
  }
}
.font40 {
  font-size: 0.4rem;
}
@media (max-width: 991px) {
  .font40 {
    font-size: 0.4rem;
  }
}
.font38 {
  font-size: 0.38rem;
}
@media (max-width: 991px) {
  .font38 {
    font-size: 0.4rem;
  }
}
.font36 {
  font-size: 0.36rem;
  line-height: 1.5em;
}
@media (max-width: 991px) {
  .font36 {
    font-size: 0.4rem;
  }
}
.font34 {
  font-size: 0.34rem;
}
@media (max-width: 991px) {
  .font34 {
    font-size: 0.4rem;
  }
}
.font32 {
  font-size: 0.32rem;
}
@media (max-width: 991px) {
  .font32 {
    font-size: 0.4rem;
  }
}
.font30 {
  font-size: 0.3rem;
}
@media (max-width: 991px) {
  .font30 {
    font-size: 0.4rem;
  }
}
.font28 {
  font-size: 0.28rem;
}
@media (max-width: 991px) {
  .font28 {
    font-size: 0.4rem;
  }
}
.font26 {
  font-size: 26px;
}
@media (max-width: 1580px) {
  .font26 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .font26 {
    font-size: 0.3rem;
  }
}
.font24 {
  font-size: 24px;
}
@media (max-width: 1580px) {
  .font24 {
    font-size: 22px;
  }
}
@media (max-width: 1260px) {
  .font24 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .font24 {
    font-size: 0.3rem;
  }
}
.font22 {
  font-size: 22px;
  line-height: 1.5em;
}
@media (max-width: 1580px) {
  .font22 {
    font-size: 18px;
  }
}
@media (max-width: 1260px) {
  .font22 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .font22 {
    font-size: 0.3rem;
  }
}
.font20 {
  font-size: 20px;
  line-height: 1.5em;
}
@media (max-width: 1580px) {
  .font20 {
    font-size: 18px;
  }
}
@media (max-width: 1260px) {
  .font20 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .font20 {
    font-size: 0.3rem;
  }
}
.font18 {
  line-height: 1.5em;
  font-size: 18px;
}
@media (max-width: 1580px) {
  .font18 {
    font-size: 16px;
  }
}
@media (max-width: 1260px) {
  .font18 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .font18 {
    font-size: 0.28rem;
  }
}
.font16 {
  font-size: 16px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .font16 {
    font-size: 0.28rem;
  }
}
.font14 {
  font-size: 14px;
}
@media (max-width: 1580px) {
  .font14 {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .font14 {
    font-size: 0.24rem;
  }
}
.font12 {
  font-size: 12px;
}
.font-b {
  font-weight: bold;
}
.public-btnwhite {
  display: flex;
  justify-content: center;
}
.public-btnwhite .btnbox {
  text-align: center;
  min-width: 1.7rem;
  padding: 0 0.3rem;
  line-height: 0.52rem;
  border: 1px solid #fff;
  transition: all 0.4s;
  position: relative;
}
@media (max-width: 991px) {
  .public-btnwhite .btnbox {
    line-height: 0.76rem;
    padding: 0 0.4rem;
  }
}
.public-btnwhite .btnbox .btncn1 {
  color: #ffffff;
}
.public-btnwhite .btnbox .btncn2 {
  margin-left: 0.15rem;
  width: 0.16rem;
  height: 0.1rem;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .public-btnwhite .btnbox .btncn2 {
    width: 0.32rem;
    height: 0.2rem;
  }
}
.public-btnwhite .btnbox .btncn2 path {
  fill: #Fff;
  opacity: 1;
  stroke: none;
}
.public-btnwhite .btnbox:hover {
  border: 1px solid #008fd7;
  background-color: #008fd7;
}
.public-btnwhite .btnbox:hover .btncn2 {
  transform: translateX(5px);
}
.public-btnblack {
  display: flex;
}
.public-btnblack .btnbox {
  text-align: center;
  min-width: 1.7rem;
  padding: 0 0.3rem;
  line-height: 0.52rem;
  border: 1px solid #c9c9c9;
  transition: all 0.4s;
  position: relative;
}
@media (max-width: 991px) {
  .public-btnblack .btnbox {
    line-height: 0.76rem;
    padding: 0 0.4rem;
  }
}
.public-btnblack .btnbox .btncn1 {
  transition: all 0.4s;
  color: #222;
}
.public-btnblack .btnbox .btncn2 {
  margin-left: 0.15rem;
  width: 0.16rem;
  height: 0.1rem;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .public-btnblack .btnbox .btncn2 {
    width: 0.32rem;
    height: 0.2rem;
  }
}
.public-btnblack .btnbox .btncn2 path {
  transition: all 0.4s;
  fill: #222;
  opacity: 1;
  stroke: none;
}
.public-btnblack .btnbox:hover {
  border: 1px solid #008fd7;
  background-color: #008fd7;
}
.public-btnblack .btnbox:hover .btncn1 {
  color: #Fff;
}
.public-btnblack .btnbox:hover .btncn2 {
  transform: translateX(5px);
}
.public-btnblack .btnbox:hover path {
  fill: #Fff;
}
.public-btnblue {
  display: flex;
  justify-content: center;
}
.public-btnblue .btnbox {
  text-align: center;
  min-width: 1.7rem;
  padding: 0 0.3rem;
  line-height: 0.52rem;
  background-color: #008fd7;
  border: 1px solid #008fd7;
  transition: all 0.4s;
  position: relative;
}
@media (max-width: 991px) {
  .public-btnblue .btnbox {
    line-height: 0.76rem;
    padding: 0 0.4rem;
  }
}
.public-btnblue .btnbox .btncn1 {
  transition: all 0.4s;
  color: #fff;
}
.public-btnblue .btnbox .btncn2 {
  margin-left: 0.15rem;
  width: 0.16rem;
  height: 0.1rem;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .public-btnblue .btnbox .btncn2 {
    width: 0.32rem;
    height: 0.2rem;
  }
}
.public-btnblue .btnbox .btncn2 path {
  transition: all 0.4s;
  fill: #fff;
  opacity: 1;
  stroke: none;
}
.public-btnblue .btnbox:hover {
  border: 1px solid #008fd7;
  background-color: #008fd7;
}
.public-btnblue .btnbox:hover .btncn1 {
  color: #Fff;
}
.public-btnblue .btnbox:hover .btncn2 {
  transform: translateX(5px);
}
.public-btnblue .btnbox:hover path {
  fill: #Fff;
}
/**********************************00-01 首页s**********************************/
#c-header {
  flex-direction: column;
}
#c-header .zbox1 {
  width: 100%;
  background-color: #696969;
  line-height: 0.36rem;
  position: relative;
  z-index: 50;
}
@media (max-width: 991px) {
  #c-header .zbox1 {
    display: none;
  }
}
#c-header .zbox1 .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1620px;
  width: 90%;
}
#c-header .zbox1 .container .cn1 {
  color: #fff;
}
#c-header .zbox1 .container .cn2 {
  display: flex;
}
#c-header .zbox1 .container .cn2 .cn3 {
  position: relative;
  padding-right: 0.2rem;
}
#c-header .zbox1 .container .cn2 .cn3::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background-color: #fff;
  opacity: 0.2;
}
#c-header .zbox1 .container .cn2 .cn3 .cn5 {
  display: flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
}
#c-header .zbox1 .container .cn2 .cn3 .cn5 img {
  margin-left: 0.1rem;
  width: 10px;
  height: 7px;
}
#c-header .zbox1 .container .cn2 .cn3 .lcn1 {
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 90px;
  top: 100%;
  padding-top: 0.1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
#c-header .zbox1 .container .cn2 .cn3 .lcn1 .lcn2 {
  width: 100%;
  padding: 10px 0;
  margin: 5px 0;
  background-color: #fff;
  border: 1px solid #ebeef5;
  border-radius: 4px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}
#c-header .zbox1 .container .cn2 .cn3 .lcn1 .lcn2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  top: -5px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
#c-header .zbox1 .container .cn2 .cn3 .lcn1 .lcn2 .lcn3 {
  display: block;
  list-style: none;
  line-height: 36px;
  padding: 0 5px;
  margin: 0;
  font-size: 14px;
  color: #606266;
  cursor: pointer;
  outline: none;
  transition: all 0.4s;
}
#c-header .zbox1 .container .cn2 .cn3 .lcn1 .lcn2 .lcn3:hover {
  background-color: #008fd7;
  color: #fff;
}
#c-header .zbox1 .container .cn2 .cn3:hover .lcn1 {
  opacity: 1;
  visibility: visible;
}
#c-header .zbox1 .container .cn2 .cn4 {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
#c-header .zbox1 .container .cn2 .cn4 .cn6 {
  display: flex;
  align-items: center;
  padding-left: 0.26rem;
  cursor: pointer;
}
#c-header .zbox1 .container .cn2 .cn4 .cn6 img {
  width: 14px;
  height: 14px;
}
#c-header .zbox1 .container .cn2 .cn4:hover .c-box {
  opacity: 1;
  visibility: visible;
}
#c-header .zbox1 .container .cn2 .cn4 .c-box {
  position: absolute;
  top: 100%;
  right: 0;
  opacity: 0;
  transition: all 0.4s;
  visibility: hidden;
  width: 5rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  overflow: hidden;
}
#c-header .zbox1 .container .cn2 .cn4 .c-box .x-fo {
  display: flex;
  align-items: center;
  border: 1px solid #ececec;
  border-radius: 100px;
  height: 0.6rem;
  line-height: 0.6rem;
  padding: 0 0.3rem;
}
#c-header .zbox1 .container .cn2 .cn4 .c-box .x-fo input {
  width: calc(100% - 16px);
  padding-right: 0.2rem;
  color: #666666;
}
#c-header .zbox1 .container .cn2 .cn4 .c-box .x-fo input::placeholder {
  color: #666666;
}
#c-header .zbox1 .container .cn2 .cn4 .c-box .x-fo button {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
#c-header .zbox1 .container .cn2 .cn4 .c-box .x-fo button svg,
#c-header .zbox1 .container .cn2 .cn4 .c-box .x-fo button img {
  width: 100%;
  height: 100%;
}
#c-header .zbox1 .container .cn2 .cn4 .c-box .x-fo button svg path,
#c-header .zbox1 .container .cn2 .cn4 .c-box .x-fo button img path {
  fill: #666666;
}
#c-header .zbox1 .container .cn2 .cn4 .c-box .x-p {
  line-height: initial;
  display: flex;
  margin-top: 0.25rem;
  padding-left: 0.3rem;
}
#c-header .zbox1 .container .cn2 .cn4 .c-box .x-p span {
  color: #666666;
  flex-shrink: 0;
}
#c-header .zbox1 .container .cn2 .cn4 .c-box .x-p .x-a {
  display: flex;
  flex-wrap: wrap;
}
#c-header .zbox1 .container .cn2 .cn4 .c-box .x-p .x-a a {
  display: inline-block;
  color: #666;
  transition: 0.4s ease-in-out;
  margin-right: 0.15rem;
}
#c-header .zbox1 .container .cn2 .cn4 .c-box .x-p .x-a a:hover {
  color: #008fd7;
}
#c-header .zbox2 {
  width: 100%;
  display: flex;
  line-height: 0.85rem;
  height: 0.85rem;
  background-color: #Fff;
}
@media (max-width: 991px) {
  #c-header .zbox2 {
    line-height: 1.2rem;
    height: 1.2rem;
  }
}
#c-header .zbox2 .container {
  max-width: 1620px;
  width: 90%;
}
#c-header .zbox2 .container .c-logo {
  display: none;
}
@media (max-width: 991px) {
  #c-header .zbox2 .container .c-logo {
    display: block;
  }
}
#c-header .zbox2 .container .c-logo .c-img-box svg {
  width: 1.7rem;
  height: 0.39rem;
}
#c-header .zbox2 .container .c-right-box {
  width: 100%;
}
#c-header .zbox2 .container .c-right-box.rightbox9 {
  display: none;
}
@media (max-width: 991px) {
  #c-header .zbox2 .container .c-right-box.rightbox9 {
    width: auto;
    display: block;
  }
}
#c-header .zbox2 .container .c-right-box .c-nav {
  width: 100%;
  justify-content: space-between;
}
#c-header .zbox2 .container .c-right-box .c-nav > li {
  margin-right: 0;
}
#c-header .zbox2 .container .c-right-box .c-nav > li .c-title-box .cn1 {
  color: #222222;
  transition: all 0.4s;
}
#c-header .zbox2 .container .c-right-box .c-nav > li .c-title-box .cn1 .zlogo {
  width: 1.7rem;
  height: 0.39rem;
  margin: 0 1rem;
}
#c-header .zbox2 .container .c-right-box .c-nav > li .c-title-box .cn1:hover {
  color: #008fd7;
}
#c-header .zbox2 .container .c-right-box .c-nav2 {
  display: none;
}
@media (max-width: 991px) {
  #c-header .zbox2 .container .c-right-box .c-nav2 {
    display: block;
  }
}
.index-banner .index-bannera1 {
  position: relative;
  overflow: hidden;
}
.index-banner .index-bannera1 .indexbannerpage {
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0.55rem;
  z-index: 5;
}
.index-banner .index-bannera1 .indexbannerpage .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  opacity: 1;
  background-color: transparent;
  margin: 0 10px;
}
.index-banner .index-bannera1 .indexbannerpage .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #Fff;
}
.index-banner .index-bannera1 .swiper-slide {
  position: relative;
}
.index-banner .index-bannera1 .swiper-slide.ani-slide .img img {
  animation: donghua 10s linear 1 forwards;
}
.index-banner .index-bannera1 .swiper-slide.ani-slide .container .text .cn1 {
  top: 0;
  opacity: 1;
}
.index-banner .index-bannera1 .swiper-slide.ani-slide .container .text .public-btnblue {
  top: 0;
  opacity: 1;
}
.index-banner .index-bannera1 .img {
  width: 100%;
}
.index-banner .index-bannera1 .img img {
  width: 100%;
  height: 8.5rem;
  object-fit: cover;
}
.index-banner .index-bannera1 .img img.pc-img {
  display: block;
}
@media (max-width: 991px) {
  .index-banner .index-bannera1 .img img.pc-img {
    display: none;
  }
}
.index-banner .index-bannera1 .img img.mb-img {
  display: none;
}
@media (max-width: 991px) {
  .index-banner .index-bannera1 .img img.mb-img {
    display: block;
  }
}
.index-banner .index-bannera1 .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.index-banner .index-bannera1 .container .text .cn1 {
  margin-bottom: 0.9rem;
  font-size: 0.76rem;
  line-height: 1.31578947em;
  color: #fff;
  position: relative;
  top: 0.6rem;
  opacity: 0;
  transition: all 0.4s;
}
.index-banner .index-bannera1 .container .text .cn1 img {
  height: 1.9rem;
}
.index-banner .index-bannera1 .container .text .public-btnblue {
  justify-content: flex-start;
  position: relative;
  top: 0.6rem;
  opacity: 0;
  transition: all 0.4s;
}
@keyframes donghua {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
.index-about {
  overflow: hidden;
  width: 100%;
  margin-top: 1.05rem;
}
.index-about .container {
  display: flex;
  flex-wrap: wrap;
}
.index-about .container .left {
  padding-top: 1.2rem;
  width: 52.14285714%;
}
@media (max-width: 991px) {
  .index-about .container .left {
    padding-top: 0;
    width: 100%;
  }
}
.index-about .container .left .cn1 {
  color: #222222;
  line-height: 1em;
}
.index-about .container .left .cn2 {
  color: #222222;
  line-height: 1.625em;
  margin: 0.3rem 0 0.8rem;
  width: 71.23287671%;
}
@media (max-width: 1260px) {
  .index-about .container .left .cn2 {
    width: 90%;
  }
}
.index-about .container .right {
  width: 47.85714286%;
}
@media (max-width: 991px) {
  .index-about .container .right {
    margin-top: 0.5rem;
    width: 100%;
  }
}
.index-about .container .right .indexabouta1 {
  position: relative;
  overflow: hidden;
  width: 140%;
}
@media (max-width: 991px) {
  .index-about .container .right .indexabouta1 {
    width: 100%;
  }
}
.index-about .container .right .indexabouta1 .indexabouta1page {
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  text-align: center;
  z-index: 5;
}
.index-about .container .right .indexabouta1 .indexabouta1page .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border: solid 1px #008fd7;
  opacity: 1;
  transition: all 0.4s;
  margin: 0 0.12rem;
}
.index-about .container .right .indexabouta1 .indexabouta1page .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #008fd7;
}
.index-about .container .right .swiper-slide {
  width: 100%;
}
.index-about .container .right .img {
  width: 100%;
}
@media (max-width: 991px) {
  .index-about .container .right .img {
    width: 100%;
  }
}
.index-about .container .right .img video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-about .container .right .img::before {
  padding-top: 66.98924731%;
}
.index-num {
  background-color: #f1f7fd;
  padding: 1.4rem 0 2.4rem;
}
.index-num .container {
  display: flex;
  flex-wrap: wrap;
}
.index-num .container .box1 {
  width: 20%;
  margin-right: 6.42857143%;
}
@media (max-width: 991px) {
  .index-num .container .box1 {
    width: 48%;
    margin-right: 4%;
  }
}
.index-num .container .box1:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .index-num .container .box1:nth-child(4n) {
    margin-right: 4%;
  }
}
@media (max-width: 991px) {
  .index-num .container .box1:nth-child(2n) {
    margin-right: 0;
  }
}
.index-num .container .box1 .cn1 {
  color: #666;
  line-height: 1.71428571em;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #e7e7e7;
}
.index-num .container .box1 .cn2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.66rem;
}
.index-num .container .box1 .cn2 .num {
  color: #232323;
}
.index-apply {
  width: 100%;
  overflow: hidden;
  background-color: #f1f7fd;
  padding-bottom: 2rem;
}
.index-apply .container .box1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}
.index-apply .container .box1 .applyarrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.index-apply .container .box1 .applyarrow .applyarrow {
  display: none;
}
.index-apply .container .box1 .applyarrow .applyarrow.on {
  display: block;
}
.index-apply .container .box1 .publicprev {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.index-apply .container .box1 .publicprev svg {
  width: 0.22rem;
  height: 0.18rem;
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .index-apply .container .box1 .publicprev svg {
    width: 0.44rem;
    height: 0.36rem;
  }
}
.index-apply .container .box1 .publicprev svg path {
  fill: #5e5e5e;
  opacity: 0.5;
  stroke: none;
  transition: all 0.4s;
}
.index-apply .container .box1 .publicprev:hover svg path {
  fill: #008fd7;
  opacity: 1;
}
.index-apply .container .box1 .publicnext {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.index-apply .container .box1 .publicnext svg {
  width: 0.22rem;
  height: 0.18rem;
}
@media (max-width: 767px) {
  .index-apply .container .box1 .publicnext svg {
    width: 0.44rem;
    height: 0.36rem;
  }
}
.index-apply .container .box1 .publicnext svg path {
  fill: #5e5e5e;
  opacity: 0.5;
  stroke: none;
  transition: all 0.4s;
}
.index-apply .container .box1 .publicnext:hover svg path {
  fill: #008fd7;
  opacity: 1;
}
.index-apply .container .box1 .cn1 {
  flex-shrink: 0;
  line-height: 1em;
  color: #222222;
}
@media (max-width: 767px) {
  .index-apply .container .box1 .cn1 {
    width: 100%;
    text-align: center;
  }
}
.index-apply .container .box1 .box2 {
  width: 76.07142857%;
  border-bottom: 1px solid #d5dade;
  display: flex;
  position: relative;
}
@media (max-width: 767px) {
  .index-apply .container .box1 .box2 {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.index-apply .container .box1 .box2 .cn2 {
  line-height: 3.33333333em;
  color: #666666;
  position: relative;
  min-width: 1.4rem;
  transition: all 0.4s;
  display: block;
  text-align: center;
}
.index-apply .container .box1 .box2 .cn2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  transition: all 0.4s;
  background-color: #008fd7;
}
.index-apply .container .box1 .box2 .cn2.on {
  color: #008fd7;
}
.index-apply .container .box1 .box2 .cn2.on::before {
  width: 100%;
}
.index-apply .container .index-applya2 .swiper-slide-active .swiper-slide {
  pointer-events: auto;
}
.index-apply .container .index-applya1 {
  position: relative;
}
.index-apply .container .index-applya1 .swiper-slide {
  display: block;
  background-color: #fff;
}
.index-apply .container .index-applya1 .swiper-slide .img::before {
  padding-top: 55.86419753%;
}
.index-apply .container .index-applya1 .swiper-slide .text {
  height: 2.7rem;
  padding: 0.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1260px) {
  .index-apply .container .index-applya1 .swiper-slide .text {
    height: 3rem;
  }
}
@media (max-width: 991px) {
  .index-apply .container .index-applya1 .swiper-slide .text {
    height: 4rem;
  }
}
.index-apply .container .index-applya1 .swiper-slide .text .text1 {
  display: flex;
  width: 100%;
  justify-content: space-between;
  transition: all 0.4s;
}
.index-apply .container .index-applya1 .swiper-slide .text .text1 .cn3 {
  width: 50%;
  color: #222222;
  transition: all 0.4s;
}
.index-apply .container .index-applya1 .swiper-slide .text .text1 .cn4 {
  transition: all 0.4s;
  width: 50%;
  color: #666666;
  line-height: 1.5em;
}
.index-apply .container .index-applya1 .swiper-slide .text .text2 {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.index-apply .container .index-applya1 .swiper-slide .text .text2 .cn5 {
  color: #555;
  transition: all 0.4s;
}
.index-apply .container .index-applya1 .swiper-slide .text .text2 .cn6 {
  width: 0.35rem;
  height: 0.35rem;
  background-color: #008fd7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.index-apply .container .index-applya1 .swiper-slide .text .text2 .cn6 svg {
  width: 0.09rem;
  height: 0.09rem;
}
.index-apply .container .index-applya1 .swiper-slide .text .text2 .cn6 svg path {
  fill: #fff;
  opacity: 1;
  stroke: none;
  transition: all 0.4s;
}
.index-apply .container .index-applya1 .swiper-slide:hover .img img {
  transform: scale(1.05);
}
.index-apply .container .index-applya1 .swiper-slide:hover .text {
  background-color: #008fd7;
}
.index-apply .container .index-applya1 .swiper-slide:hover .text .text1 .cn3 {
  color: #fff;
}
.index-apply .container .index-applya1 .swiper-slide:hover .text .text1 .cn4 {
  color: #fff;
}
.index-apply .container .index-applya1 .swiper-slide:hover .text .text2 .cn5 {
  color: #fff;
}
.index-apply .container .index-applya1 .swiper-slide:hover .text .text2 .cn6 {
  background-color: #Fff;
}
.index-apply .container .index-applya1 .swiper-slide:hover .text .text2 .cn6 svg path {
  fill: #008fd7;
}
.index-deve {
  background-color: #ccc;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1rem 0 1.6rem;
  position: relative;
}
.index-deve .container .cn1 {
  text-align: left;
  color: #fff;
  line-height: 1em;
}
.index-deve .container .index-devea1 {
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}
.index-deve .container .index-devea1 .public-btnwhite {
  position: absolute;
  right: 0;
  z-index: 5;
  bottom: 0;
}
@media (max-width: 991px) {
  .index-deve .container .index-devea1 .public-btnwhite {
    position: relative;
  }
}
.index-deve .container .index-devea1 .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .index-deve .container .index-devea1 .swiper-wrapper {
    justify-content: space-between;
  }
}
.index-deve .container .index-devea1 .swiper-slide {
  width: 25%;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .index-deve .container .index-devea1 .swiper-slide:last-child .box {
    border-bottom: 2px solid #fff;
  }
}
@media (max-width: 991px) {
  .index-deve .container .index-devea1 .swiper-slide {
    width: 48%;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 767px) {
  .index-deve .container .index-devea1 .swiper-slide {
    width: 100%;
  }
}
.index-deve .container .index-devea1 .swiper-slide:nth-child(even) {
  flex-direction: column;
}
.index-deve .container .index-devea1 .swiper-slide:nth-child(even) .box::before {
  left: -2px;
}
.index-deve .container .index-devea1 .swiper-slide:nth-child(even) .box::after {
  right: -2px;
}
.index-deve .container .index-devea1 .swiper-slide:nth-child(even) .box2 {
  margin-top: -2px;
}
.index-deve .container .index-devea1 .swiper-slide:nth-child(odd) .box2 {
  margin-top: -2px;
}
.index-deve .container .index-devea1 .swiper-slide:nth-child(1) .box::before {
  left: 0;
}
.index-deve .container .index-devea1 .swiper-slide:nth-child(3) .box::before {
  left: 0;
}
.index-deve .container .index-devea1 .swiper-slide:nth-child(4) .box::after {
  right: 0;
}
.index-deve .container .index-devea1 .swiper-slide .box2 {
  aspect-ratio: 350/240;
}
@media (max-width: 991px) {
  .index-deve .container .index-devea1 .swiper-slide .box2 {
    display: none;
  }
}
.index-deve .container .index-devea1 .swiper-slide .box {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  aspect-ratio: 350/240;
  position: relative;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .index-deve .container .index-devea1 .swiper-slide .box {
    aspect-ratio: 350/200;
    border: 2px solid #fff;
  }
}
.index-deve .container .index-devea1 .swiper-slide .box::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #Fff;
}
@media (max-width: 991px) {
  .index-deve .container .index-devea1 .swiper-slide .box::before {
    display: none;
  }
}
.index-deve .container .index-devea1 .swiper-slide .box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #Fff;
}
@media (max-width: 991px) {
  .index-deve .container .index-devea1 .swiper-slide .box::after {
    display: none;
  }
}
.index-deve .container .index-devea1 .swiper-slide .box .text2 {
  position: absolute;
  left: 0.3rem;
  top: 0.3rem;
  width: calc(100% - 0.6rem);
  opacity: 0;
  transition: all 0.4s;
}
.index-deve .container .index-devea1 .swiper-slide .box .text2 .cn2 {
  color: #222222;
}
.index-deve .container .index-devea1 .swiper-slide .box .text2 .cn4 {
  color: #666666;
  line-height: 1.5em;
  margin: 0.2rem 0 0.5rem;
  letter-spacing: -0.5px;
}
.index-deve .container .index-devea1 .swiper-slide .box .text2 .cn5 {
  transition: all 0.4s;
}
.index-deve .container .index-devea1 .swiper-slide .box .text2 .cn5 img {
  width: 0.34rem;
  height: 0.11rem;
}
.index-deve .container .index-devea1 .swiper-slide .box .text2 .cn5 svg {
  width: auto;
  height: 0.11rem;
}
.index-deve .container .index-devea1 .swiper-slide .box .text2 .cn5 svg path {
  fill: #222;
  opacity: 1;
  stroke: none;
}
.index-deve .container .index-devea1 .swiper-slide .box .text1 {
  left: 0.3rem;
  bottom: 0.3rem;
  width: calc(100% - 0.6rem);
  position: absolute;
  opacity: 1;
  transition: all 0.4s;
}
.index-deve .container .index-devea1 .swiper-slide .box .text1 .cn2 {
  color: #ffffff;
}
.index-deve .container .index-devea1 .swiper-slide .box .text1 .cn3 {
  color: #ffffff;
}
.index-deve .container .index-devea1 .swiper-slide .box .icon1 {
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
}
.index-deve .container .index-devea1 .swiper-slide .box .icon1 svg {
  max-width: 0.4rem;
  height: auto;
}
.index-deve .container .index-devea1 .swiper-slide .box .icon1 svg path {
  fill: #Fff;
  stroke: none;
  opacity: 1;
}
.index-deve .container .index-devea1 .swiper-slide .box:hover {
  background-color: rgba(255, 255, 255, 0.78);
}
.index-deve .container .index-devea1 .swiper-slide .box:hover .text2 {
  opacity: 1;
}
.index-deve .container .index-devea1 .swiper-slide .box:hover .text2 .cn5 {
  transform: translateX(5px);
}
.index-deve .container .index-devea1 .swiper-slide .box:hover .text1 {
  opacity: 0;
}
.index-case {
  padding: 1.3rem 0 1.3rem;
}
.index-case .container .cn1 {
  text-align: center;
  color: #000000;
  line-height: 1em;
}
.index-case .container .index-casea1 {
  padding-bottom: 1.1rem;
  margin-top: 0.7rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .index-case .container .index-casea1 {
    display: none;
  }
}
.index-case .container .index-casea1 .indexcasepagination {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}
.index-case .container .index-casea1 .indexcasepagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border: solid 1px #008fd7;
  opacity: 1;
  transition: all 0.4s;
  margin: 0 0.12rem;
}
.index-case .container .index-casea1 .indexcasepagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #008fd7;
}
.index-case .container .index-casea1 .swiper-slide {
  width: 100%;
}
.index-case .container .index-casea1 .swiper-slide .imgbox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.index-case .container .index-casea1 .swiper-slide .img {
  width: 15.71428571%;
  margin-right: 1.14285714%;
  border: solid 1px #dddddd;
  background-color: #Fff;
  text-align: center;
  display: flex;
  align-items: center;
  height: 0.9rem;
  justify-content: center;
  margin-bottom: 0.16rem;
}
.index-case .container .index-casea1 .swiper-slide .img:nth-child(6n) {
  margin-right: 0;
}
.index-case .container .index-casea1 .swiper-slide .img img {
  max-height: 100%;
}
.index-case .container .index-mbcasea1 {
  padding-bottom: 1.1rem;
  margin-top: 0.7rem;
  position: relative;
  overflow: hidden;
  display: none;
}
@media (max-width: 991px) {
  .index-case .container .index-mbcasea1 {
    display: block;
  }
}
.index-case .container .index-mbcasea1 .indexcasepaginationa1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}
.index-case .container .index-mbcasea1 .indexcasepaginationa1 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border: solid 1px #008fd7;
  opacity: 1;
  transition: all 0.4s;
  margin: 0 0.12rem;
}
.index-case .container .index-mbcasea1 .indexcasepaginationa1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #008fd7;
}
.index-case .container .index-mbcasea1 .swiper-slide {
  width: 100%;
  padding: 0 1px;
}
.index-case .container .index-mbcasea1 .swiper-slide .imgbox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.index-case .container .index-mbcasea1 .swiper-slide .img {
  width: 32%;
  margin-right: 2%;
  border: solid 1px #dddddd;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  height: 1.5rem;
  justify-content: center;
  margin-bottom: 0.16rem;
}
.index-case .container .index-mbcasea1 .swiper-slide .img:nth-child(3n) {
  margin-right: 0;
}
.index-case .container .index-mbcasea1 .swiper-slide .img img {
  max-width: 90%;
  max-height: 100%;
}
.index-news {
  padding-bottom: 1.05rem;
}
.index-news .container .cn1 {
  text-align: center;
  color: #000000;
  line-height: 1em;
}
.index-news .container .box {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
}
.index-news .container .box .left {
  background-color: #Fff;
  border: solid 1px #efefef;
  width: 48.28571429%;
}
@media (max-width: 991px) {
  .index-news .container .box .left {
    display: none;
  }
}
.index-news .container .box .left .img::before {
  padding-top: 57.52212389%;
}
.index-news .container .box .left .text {
  padding: 0.45rem;
}
.index-news .container .box .left .text .cn2 {
  color: #222222;
}
.index-news .container .box .left .text .cn3 {
  color: #666666;
  line-height: 1.5em;
  margin: 0.2rem 0 0.4rem;
}
.index-news .container .box .left:hover .img img {
  transform: scale(1.05);
}
.index-news .container .box .left:hover .public-btnblack .btnbox {
  border: 1px solid #008fd7;
  background-color: #008fd7;
}
.index-news .container .box .left:hover .public-btnblack .btnbox .btncn1 {
  color: #Fff;
}
.index-news .container .box .left:hover .public-btnblack .btnbox .btncn2 {
  transform: translateX(5px);
}
.index-news .container .box .left:hover .public-btnblack .btnbox path {
  fill: #Fff;
}
.index-news .container .box .right {
  width: 50.57142857%;
}
@media (max-width: 991px) {
  .index-news .container .box .right {
    width: 100%;
  }
}
.index-news .container .box .right .rightbox {
  border: solid 1px #efefef;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 4.23728814%;
  margin-bottom: 0.3rem;
}
.index-news .container .box .right .rightbox:last-child {
  margin-bottom: 0;
}
.index-news .container .box .right .rightbox .img2 {
  width: 41.66666667%;
}
@media (max-width: 767px) {
  .index-news .container .box .right .rightbox .img2 {
    width: 100%;
  }
}
.index-news .container .box .right .rightbox .img2::before {
  padding-top: 57.52212389%;
}
.index-news .container .box .right .rightbox .text {
  width: 45.83333333%;
}
@media (max-width: 767px) {
  .index-news .container .box .right .rightbox .text {
    width: 100%;
    margin-top: 0.3rem;
  }
}
.index-news .container .box .right .rightbox .text .cn2 {
  color: #666666;
  line-height: 1.5em;
}
.index-news .container .box .right .rightbox .text .cn3 {
  color: #222222;
  line-height: 1.44444444em;
  margin: 0.1rem 0 0.2rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .index-news .container .box .right .rightbox .text .cn3 {
    font-size: 0.4rem;
    margin: 0.2rem 0 0.4rem;
  }
}
.index-news .container .box .right .rightbox:hover .img2 img {
  transform: scale(1.05);
}
.index-news .container .box .right .rightbox:hover .text .cn3 {
  color: #000;
}
.index-news .container .box .right .rightbox:hover .public-btnblack .btnbox {
  border: 1px solid #008fd7;
  background-color: #008fd7;
}
.index-news .container .box .right .rightbox:hover .public-btnblack .btnbox .btncn1 {
  color: #Fff;
}
.index-news .container .box .right .rightbox:hover .public-btnblack .btnbox .btncn2 {
  transform: translateX(5px);
}
.index-news .container .box .right .rightbox:hover .public-btnblack .btnbox path {
  fill: #Fff;
}
.index-banner2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0.77rem 0;
}
.index-banner2 .container .cn1 {
  text-align: center;
  color: #fff;
  line-height: 1.75em;
  margin-bottom: 0.45rem;
}
@media (max-width: 767px) {
  .index-banner2 .container .cn1 {
    width: 75%;
    margin: 0 auto 0.45rem;
  }
}
.footer {
  background-color: #f0f7fd;
}
.footer .container .box1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem 0 1.3rem;
}
@media (max-width: 991px) {
  .footer .container .box1 {
    padding: 0.35rem 0;
  }
}
@media (max-width: 991px) {
  .footer .container .box1 .left {
    width: 100%;
  }
}
.footer .container .box1 .left .cn1 {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .footer .container .box1 .left .cn1 {
    padding-bottom: 0.5rem;
  }
}
.footer .container .box1 .left .cn1 .cn2 {
  margin-right: 0.9rem;
}
@media (max-width: 1580px) {
  .footer .container .box1 .left .cn1 .cn2 {
    margin-right: 0.45rem;
  }
}
.footer .container .box1 .left .cn1 .cn2 .cn4 {
  max-width: 2.5rem;
}
@media (max-width: 991px) {
  .footer .container .box1 .left .cn1 .cn2 {
    margin-right: 0;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .footer .container .box1 .left .cn1 .cn2:last-child {
    display: none;
  }
}
.footer .container .box1 .left .cn1 .cn2 .cn3 {
  display: block;
  color: #001f32;
  margin-bottom: 0.5rem;
  position: relative;
}
@media (max-width: 991px) {
  .footer .container .box1 .left .cn1 .cn2 .cn3 {
    padding-bottom: 0.2rem;
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
    padding-top: 0.2rem;
    font-size: 0.32rem;
  }
}
.footer .container .box1 .left .cn1 .cn2 .cn3 .cn8 {
  position: relative;
}
.footer .container .box1 .left .cn1 .cn2 .cn3 .cn8::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: all 0.4s;
}
.footer .container .box1 .left .cn1 .cn2 .cn3:hover .cn8::before {
  width: 100%;
}
@media (max-width: 991px) {
  .footer .container .box1 .left .cn1 .cn2 .cn4 {
    padding-top: 0.2rem;
  }
}
.footer .container .box1 .left .cn1 .cn2 .cn4 .cn5 {
  display: block;
  margin-bottom: 0.15rem;
}
@media (max-width: 991px) {
  .footer .container .box1 .left .cn1 .cn2 .cn4 .cn5 {
    margin-bottom: 0.1rem;
  }
}
.footer .container .box1 .left .cn1 .cn2 .cn4 .cn5 .cn6 {
  line-height: 1.625em;
  color: #001f32;
  position: relative;
}
@media (max-width: 991px) {
  .footer .container .box1 .left .cn1 .cn2 .cn4 .cn5 .cn6 {
    font-size: 0.28rem;
    color: #333;
  }
}
.footer .container .box1 .left .cn1 .cn2 .cn4 .cn5 .cn6::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #2a5664;
  transition: all 0.4s;
}
.footer .container .box1 .left .cn1 .cn2 .cn4 .cn5 .cn7 {
  display: block;
  line-height: 1.625em;
  color: #2a5664;
  margin-bottom: 0.15rem;
}
@media (max-width: 991px) {
  .footer .container .box1 .left .cn1 .cn2 .cn4 .cn5 .cn7 {
    display: none;
  }
}
.footer .container .box1 .left .cn1 .cn2 .cn4 .cn5:hover .cn6::before {
  width: 100%;
}
@media (max-width: 991px) {
  .footer .container .box1 .right {
    width: 100%;
  }
}
.footer .container .box1 .right .rightbox1 .cn9 {
  text-align: right;
}
@media (max-width: 991px) {
  .footer .container .box1 .right .rightbox1 .cn9 {
    text-align: center;
  }
}
.footer .container .box1 .right .rightbox1 .cn9 img {
  width: 1.09rem;
  height: 1.09rem;
  object-fit: cover;
}
@media (max-width: 991px) {
  .footer .container .box1 .right .rightbox1 .cn9 img {
    width: 2rem;
    height: 2rem;
  }
}
.footer .container .box1 .right .rightbox1 .cn10 {
  text-align: right;
  margin-top: 0.2rem;
  color: #2a5664;
  line-height: 1.625em;
}
@media (max-width: 991px) {
  .footer .container .box1 .right .rightbox1 .cn10 {
    text-align: center;
  }
}
.footer .container .box1 .right .rightbox2 {
  margin-top: 0.8rem;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .footer .container .box1 .right .rightbox2 {
    margin-top: 0.35rem;
    justify-content: center;
  }
}
.footer .container .box1 .right .rightbox2 .cn11 {
  margin-left: 0.15rem;
}
@media (max-width: 991px) {
  .footer .container .box1 .right .rightbox2 .cn11 {
    margin: 0 0.2rem;
  }
}
.footer .container .box1 .right .rightbox2 .cn11 img {
  width: 0.37rem;
  height: 0.37rem;
}
@media (max-width: 991px) {
  .footer .container .box1 .right .rightbox2 .cn11 img {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.footer .container .box2 {
  border-top: 1px solid #d8dfe4;
  padding: 0.35rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer .container .box2 .left {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .footer .container .box2 .left {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.footer .container .box2 .left p {
  color: #003444;
  opacity: 0.7;
  margin-right: 0.3rem;
}
@media (max-width: 991px) {
  .footer .container .box2 .left p {
    margin: 0 0.2rem;
  }
}
.footer .container .box2 .left a {
  color: #003444;
  opacity: 0.7;
  margin-right: 0.3rem;
}
@media (max-width: 991px) {
  .footer .container .box2 .left a {
    margin: 0 0.2rem;
  }
}
.footer .container .box2 .right {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .footer .container .box2 .right {
    margin-top: 0.3rem;
    width: 100%;
    justify-content: center;
  }
}
.footer .container .box2 .right .cn2 {
  color: #003444;
  opacity: 0.7;
  margin-left: 0.3rem;
}
.footer .container .box2 .right .cn2 .cn3 {
  color: #003444;
  opacity: 0.7;
  position: relative;
}
.footer .container .box2 .right .cn2 .cn3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #2a5664;
  transition: all 0.4s;
}
.footer .container .box2 .right .cn2:hover .cn3::before {
  width: 100%;
}
/**********************************00-01 首页e**********************************/
.rc-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.rc-banner .img::before {
  padding-top: 33.85416667%;
}
@media (max-width: 991px) {
  .rc-banner .img::before {
    padding-top: 75%;
  }
}
.rc-banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
  transform: translate(-50%, -50%);
}
.rc-banner .text .cn1 {
  text-align: center;
  color: #ffffff;
  line-height: 1em;
}
.rc-banner .text .cn2 {
  margin: 0.2rem auto 0;
  color: #ffffff;
  text-align: center;
  line-height: 1.5em;
  width: 39.0625%;
}
@media (max-width: 1260px) {
  .rc-banner .text .cn2 {
    width: 90%;
  }
}
.rc-banner .text .box99 {
  margin-top: 0.4rem;
  display: flex;
  justify-content: center;
}
.rc-banner .text .box99 .public-btnwhite {
  margin: 0 0.1rem;
}
.icis-box1 {
  background-color: #f0f7fd;
}
.icis-box1 .container {
  padding: 1.2rem 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #d5dade;
}
@media (max-width: 991px) {
  .icis-box1 .container {
    padding: 1.2rem 0;
  }
}
.icis-box1 .container .left {
  width: 32.14285714%;
}
@media (max-width: 991px) {
  .icis-box1 .container .left {
    width: 100%;
  }
}
.icis-box1 .container .left .cn1 {
  color: #000000;
  line-height: 1em;
}
.icis-box1 .container .right {
  width: 67.85714286%;
}
@media (max-width: 991px) {
  .icis-box1 .container .right {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.icis-box1 .container .right .cn2 {
  color: #222;
  line-height: 1.625em;
}
.icis-box1 .container .right .cn3 {
  display: flex;
  flex-wrap: wrap;
}
.icis-box1 .container .right .cn3 .cn4 {
  margin-top: 0.9rem;
  width: 24.21052632%;
  margin-right: 13.68421053%;
}
@media (max-width: 767px) {
  .icis-box1 .container .right .cn3 .cn4 {
    width: 48%;
    margin-right: 4%;
  }
}
.icis-box1 .container .right .cn3 .cn4:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .icis-box1 .container .right .cn3 .cn4:nth-child(3n) {
    margin-right: 4%;
  }
}
@media (max-width: 767px) {
  .icis-box1 .container .right .cn3 .cn4:nth-child(2n) {
    margin-right: 0;
  }
}
.icis-box1 .container .right .cn3 .cn4 .cn5 {
  color: #666666;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #e7e7e7;
}
@media (max-width: 991px) {
  .icis-box1 .container .right .cn3 .cn4 .cn5 {
    font-size: 0.28rem;
  }
}
.icis-box1 .container .right .cn3 .cn4 .cn6 {
  margin-top: 0.3rem;
  font-size: 0.67rem;
  color: #232323;
  line-height: 1em;
  display: flex;
  align-items: flex-start;
}
.icis-box1 .container .right .cn3 .cn4 .cn6 .cn6a {
  line-height: 1em;
}
.icis-box1 .container .right .cn3 .cn4 .cn6 .cn6b {
  line-height: 1em;
}
.icis-box2 {
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
  background-color: #f0f7fd;
}
@media (max-width: 991px) {
  .icis-box2 {
    padding: 1.2rem 0;
  }
}
.icis-box2 .container {
  display: flex;
  flex-wrap: wrap;
}
.icis-box2 .container .left {
  width: 57.14285714%;
}
@media (max-width: 991px) {
  .icis-box2 .container .left {
    width: 100%;
  }
}
.icis-box2 .container .left .cn1 {
  color: #222222;
}
.icis-box2 .container .left .cn2 {
  color: #666666;
}
.icis-box2 .container .left .cn3 {
  margin-top: 0.3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.icis-box2 .container .left .cn3 .cn4 {
  margin-top: 0.3rem;
  width: 47.5%;
}
@media (max-width: 767px) {
  .icis-box2 .container .left .cn3 .cn4 {
    width: 100%;
  }
}
.icis-box2 .container .left .cn3 .cn4.cn7 {
  width: 100%;
}
.icis-box2 .container .left .cn3 .cn4.cn7 .cn6 {
  height: 2.74rem;
  background-image: url(../images/rcimg4.svg);
  background-repeat: no-repeat;
  background-size: 15px 16px;
  background-position: right 5px bottom 5px;
}
.icis-box2 .container .left .cn3 .cn4.cn9 .cn6 {
  padding: 0 0.4rem 0 0.2rem;
  background-image: url(../images/rcimg3.svg);
  background-repeat: no-repeat;
  background-size: 10px 6px;
  background-position: right 0.2rem center;
}
.icis-box2 .container .left .cn3 .cn4 .cn5 {
  line-height: 0.5rem;
  color: #222222;
}
@media (max-width: 991px) {
  .icis-box2 .container .left .cn3 .cn4 .cn5 {
    line-height: 0.76rem;
  }
}
.icis-box2 .container .left .cn3 .cn4 .cn5 em {
  color: #ff0000;
}
.icis-box2 .container .left .cn3 .cn4 .cn6 {
  background-color: #ffffff;
  line-height: 0.47rem;
  padding: 0 0.2rem;
  width: 100%;
  color: #666666;
}
@media (max-width: 991px) {
  .icis-box2 .container .left .cn3 .cn4 .cn6 {
    line-height: 0.76rem;
  }
}
.icis-box2 .container .left .cn3 .cn4 .cn6::placeholder {
  color: #666;
}
.icis-box2 .container .left .cn3 .cn8 {
  min-width: 1.6rem;
  line-height: 0.56rem;
  background-color: #008fd7;
  margin-top: 0.36rem;
  text-align: center;
  color: #fff;
  transition: all 0.4s;
  display: block;
}
@media (max-width: 991px) {
  .icis-box2 .container .left .cn3 .cn8 {
    line-height: 0.76rem;
  }
}
.icis-box2 .container .left .cn3 .cn8 button {
  height: 100%;
  width: 100%;
}
.icis-box2 .container .left .cn3 .cn8:hover {
  opacity: 0.8;
}
.icis-box2 .container .right {
  width: 42.85714286%;
  position: relative;
  padding-top: 1.3rem;
}
@media (max-width: 991px) {
  .icis-box2 .container .right {
    width: 100%;
    padding-top: 0.6rem;
    display: none;
  }
}
.icis-box2 .container .right .img {
  width: 78.33333333%;
  margin: 0 0 0 auto;
}
.index-case.icis-box3 {
  background-color: #f0f7fd;
}
.contact-box1 {
  background-color: #f0f7fd;
  padding-top: 0.8rem;
}
@media (max-width: 991px) {
  .contact-box1 {
    padding-top: 1.2rem;
  }
}
.contact-box1 .container {
  padding: 0 0.6rem;
}
@media (max-width: 1260px) {
  .contact-box1 .container {
    padding: 0;
  }
}
.contact-box1 .container .cn1 {
  color: #222222;
  line-height: 1em;
}
.contact-box1 .container .box1 {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.contact-box1 .container .box1 .box2 {
  display: flex;
  align-items: flex-start;
  max-width: 36.71875%;
  position: relative;
  margin-top: 1.2rem;
}
@media (max-width: 991px) {
  .contact-box1 .container .box1 .box2 {
    margin-top: 0.6rem;
    width: 100%;
    max-width: 100%;
  }
}
.contact-box1 .container .box1 .box2 .img {
  flex-shrink: 0;
  width: 0.65rem;
  position: relative;
  margin-top: 0.25rem;
}
@media (max-width: 991px) {
  .contact-box1 .container .box1 .box2 .img {
    width: 1rem;
  }
}
.contact-box1 .container .box1 .box2 .img::before {
  content: "";
  position: absolute;
  left: 0.63rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0.82rem;
  background-color: #e6e6e6;
}
@media (max-width: 991px) {
  .contact-box1 .container .box1 .box2 .img::before {
    left: 0.8rem;
  }
}
.contact-box1 .container .box1 .box2 .img img {
  width: 0.5rem;
}
.contact-box1 .container .box1 .box2 .cn2 {
  padding-left: 0.3rem;
}
.contact-box1 .container .box1 .box2 .cn2 .cn3 {
  color: #666666;
  display: block;
}
.contact-box1 .container .box1 .box2 .cn2 .cn4 {
  display: block;
  margin-top: 0.2rem;
  color: #222222;
}
.contact-box1 .container .box3 {
  margin-top: 1rem;
  display: block;
}
.contact-box1 .container .box3 img {
  width: 100%;
}
.contact-box2 {
  background-color: #f0f7fd;
  padding-top: 1.5rem;
}
@media (max-width: 991px) {
  .contact-box2 {
    padding-top: 1.2rem;
  }
}
.contact-box2 .container {
  padding: 0 0.6rem;
}
@media (max-width: 1260px) {
  .contact-box2 .container {
    padding: 0;
  }
}
.contact-box2 .container .cn1 {
  line-height: 1em;
  color: #222;
  margin-bottom: 0.5rem;
}
.contact-box2 .container .box {
  display: flex;
  flex-wrap: wrap;
}
.contact-box2 .container .box .cn2 {
  line-height: 0.6rem;
  position: relative;
  color: #999999;
  transition: all 0.4s;
  min-width: 1.4rem;
  display: block;
  text-align: center;
  margin-right: 0.4rem;
}
.contact-box2 .container .box .cn2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #008fd7;
  transition: all 0.4s;
}
.contact-box2 .container .box .cn2.on {
  color: #008fd7;
}
.contact-box2 .container .box .cn2.on::before {
  width: 100%;
}
.contact-box2 .container .box2 .box2a {
  justify-content: space-between;
  display: none;
  flex-wrap: wrap;
}
.contact-box2 .container .box2 .box2a .box3 {
  width: 48.828125%;
  margin-top: 0.3rem;
  background-color: #fff;
  padding: 0.6rem;
}
@media (max-width: 991px) {
  .contact-box2 .container .box2 .box2a .box3 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact-box2 .container .box2 .box2a .box3 {
    padding: 0.6rem 0.3rem;
  }
}
.contact-box2 .container .box2 .box2a .box3 .cn3 {
  line-height: 1em;
  color: #222222;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 991px) {
  .contact-box2 .container .box2 .box2a .box3 .cn3 {
    font-size: 0.32rem;
  }
}
.contact-box2 .container .box2 .box2a .box3 .cn4 {
  padding-top: 0.2rem;
}
.contact-box2 .container .box2 .box2a .box3 .cn4 .cn5 {
  display: flex;
  line-height: 1.66666667em;
}
.contact-box2 .container .box2 .box2a .box3 .cn4 .cn5 .cn6 {
  color: #666;
  flex-shrink: 0;
}
.contact-box2 .container .box2 .box2a .box3 .cn4 .cn5 .cn7 {
  color: #333;
}
.contact-box2 .container .box2 .box2a.on {
  display: flex;
}
.icis-box2.contact-box3 {
  padding-bottom: 1.8rem;
}
@media (max-width: 991px) {
  .icis-box2.contact-box3 {
    padding-bottom: 1.2rem;
  }
}
.icis-box2.contact-box3 .container {
  padding: 0 0.6rem;
}
@media (max-width: 1260px) {
  .icis-box2.contact-box3 .container {
    padding: 0;
  }
}
.deve-box1 {
  background-color: #f0f7fd;
  padding-top: 1rem;
}
.deve-box1 .container {
  padding: 0.9rem;
  display: flex;
  background-color: #Fff;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .deve-box1 .container {
    padding: 0.9rem 0.3rem;
  }
}
.deve-box1 .container .left {
  width: 50%;
  padding-right: 0.5rem;
}
@media (max-width: 991px) {
  .deve-box1 .container .left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0.5rem;
  }
}
.deve-box1 .container .right {
  width: 50%;
}
@media (max-width: 991px) {
  .deve-box1 .container .right {
    width: 100%;
  }
}
.deve-box1 .container .right .devebox1a {
  position: relative;
  overflow: hidden;
}
.deve-box1 .container .right .devebox1a .indexcasepaginationa1 {
  text-align: center;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  .deve-box1 .container .right .devebox1a .indexcasepaginationa1 {
    opacity: 1;
    visibility: visible;
  }
}
.deve-box1 .container .right .devebox1a .public-arrowleft {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background-color: #fff;
}
.deve-box1 .container .right .devebox1a .public-arrowleft:hover {
  background-color: #008fd7;
}
@media (max-width: 991px) {
  .deve-box1 .container .right .devebox1a .public-arrow {
    display: none;
  }
}
.deve-box1 .container .right .devebox1a .public-arrowright {
  z-index: 3;
  position: absolute;
  left: initial;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  background-color: #fff;
}
.deve-box1 .container .right .devebox1a .public-arrowright:hover {
  background-color: #008fd7;
}
.deve-box1 .container .right .devebox1a .swiper-slide .tu {
  height: 2.2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deve-box1 .container .right .devebox1a .swiper-slide .tu img {
  max-width: 80%;
  max-height: 100%;
}
.deve-box1 .container .right .devebox1a .swiper-slide .cn3 {
  line-height: 1.625em;
  color: #222;
  text-align: center;
  margin: 0.15rem;
  width: 80%;
  margin: 0.15rem auto 0;
}
.deve-box1 .container .cn1 {
  color: #222222;
  line-height: 1.27777778em;
  text-align: left;
}
@media (max-width: 991px) {
  .deve-box1 .container .cn1 {
    line-height: 1.5em;
    font-size: 0.5rem;
  }
}
.deve-box1 .container .cn2 {
  text-align: left;
  margin-top: 0.3rem;
  color: #666666;
  line-height: 1.44444444em;
}
.deve-box2 {
  background-color: #f0f7fd;
  padding-top: 1rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .deve-box2 {
    padding-top: 1.2rem;
  }
}
.deve-box2 .container .box {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.deve-box2 .container .box .cn1 {
  color: #222222;
  line-height: 1em;
}
@media (max-width: 991px) {
  .deve-box2 .container .box .cn1 {
    width: 100%;
    text-align: center;
    font-size: 0.5rem;
  }
}
.deve-box2 .container .deve-box2a {
  margin-top: 0.45rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .deve-box2 .container .deve-box2a {
    overflow: initial;
  }
}
.deve-box2 .container .deve-box2a .swiper-slide {
  background-color: #fff;
  padding: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.deve-box2 .container .deve-box2a .swiper-slide .text {
  padding: 0.3rem 0.15rem 0.6rem;
}
.deve-box2 .container .deve-box2a .swiper-slide .text .cn2 {
  color: #222222;
  white-space: initial;
}
.deve-box2 .container .deve-box2a .swiper-slide .text .cn3 {
  margin-top: 0.15rem;
  color: #666666;
  line-height: 1.5em;
}
.deve-box2 .container .deve-box2a .swiper-slide .img::before {
  padding-top: 62.65060241%;
}
.deve-box3 {
  padding-top: 1.5rem;
  background-color: #f0f7fd;
  padding-bottom: 1.8rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .deve-box3 {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
.deve-box3 .container .box {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.deve-box3 .container .box .cn1 {
  color: #222222;
  line-height: 1em;
}
@media (max-width: 991px) {
  .deve-box3 .container .box .cn1 {
    width: 100%;
    text-align: center;
    font-size: 0.5rem;
  }
}
.deve-box3 .container .deve-box3a {
  margin-top: 0.45rem;
}
.deve-box3 .container .deve-box3a .swiper-slide {
  display: flex;
  background-color: #fff;
  align-items: center;
  flex-wrap: wrap;
}
.deve-box3 .container .deve-box3a .swiper-slide .left {
  width: 65%;
}
@media (max-width: 991px) {
  .deve-box3 .container .deve-box3a .swiper-slide .left {
    width: 100%;
  }
}
.deve-box3 .container .deve-box3a .swiper-slide .left .img::before {
  padding-top: 57.69230769%;
}
.deve-box3 .container .deve-box3a .swiper-slide .right {
  width: 35%;
  padding: 0.6rem;
}
@media (max-width: 991px) {
  .deve-box3 .container .deve-box3a .swiper-slide .right {
    width: 100%;
  }
}
.deve-box3 .container .deve-box3a .swiper-slide .right .cn2 {
  color: #222222;
}
.deve-box3 .container .deve-box3a .swiper-slide .right .cn3 {
  color: #666666;
  line-height: 1.5em;
  margin-top: 0.15rem;
}
.public-arrow {
  display: flex;
}
@media (max-width: 991px) {
  .public-arrow {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}
.public-arrow .public-arrowleft {
  width: 0.43rem;
  height: 0.43rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c5c7c9;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .public-arrow .public-arrowleft {
    width: 0.76rem;
    height: 0.76rem;
  }
}
.public-arrow .public-arrowleft svg {
  width: 0.17rem;
  height: 0.15rem;
}
@media (max-width: 991px) {
  .public-arrow .public-arrowleft svg {
    width: 0.34rem;
    height: 0.3rem;
  }
}
.public-arrow .public-arrowleft svg path {
  fill: #565656;
  opacity: 1;
  stroke-width: none;
  transition: all 0.4s;
}
.public-arrow .public-arrowleft:hover {
  background-color: #008fd7;
  border: 1px solid #008fd7;
}
.public-arrow .public-arrowleft:hover svg path {
  fill: #fff;
}
.public-arrow .public-arrowright {
  width: 0.43rem;
  height: 0.43rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c5c7c9;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s;
  transform: rotate(180deg);
  margin-left: 0.2rem;
}
@media (max-width: 991px) {
  .public-arrow .public-arrowright {
    width: 0.76rem;
    height: 0.76rem;
  }
}
.public-arrow .public-arrowright svg {
  width: 0.17rem;
  height: 0.15rem;
}
@media (max-width: 991px) {
  .public-arrow .public-arrowright svg {
    width: 0.34rem;
    height: 0.3rem;
  }
}
.public-arrow .public-arrowright svg path {
  fill: #565656;
  opacity: 1;
  stroke-width: none;
  transition: all 0.4s;
}
.public-arrow .public-arrowright:hover {
  background-color: #008fd7;
  border: 1px solid #008fd7;
}
.public-arrow .public-arrowright:hover svg path {
  fill: #fff;
}
.sitemap-box {
  padding: 1.2rem 0;
}
.sitemap-box .container .cn1 {
  text-align: center;
  line-height: 1em;
  color: #191919;
  margin-bottom: 0.3rem;
}
.sitemap-box .container .box {
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 1260px) {
  .sitemap-box .container .box {
    width: 100%;
  }
}
.sitemap-box .container .box .box2 {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 0.3rem 0;
}
@media (max-width: 991px) {
  .sitemap-box .container .box .box2 {
    flex-wrap: wrap;
  }
}
.sitemap-box .container .box .box2 .cn2 {
  flex-shrink: 0;
  color: #333333;
  width: 1.8rem;
  padding-right: 0.4rem;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .sitemap-box .container .box .box2 .cn2 {
    width: 100%;
  }
}
.sitemap-box .container .box .box2 .cn2:hover {
  color: #008fd7;
}
.sitemap-box .container .box .box2 .box3 {
  display: flex;
  flex-wrap: wrap;
  margin-top: -0.4rem;
}
@media (max-width: 991px) {
  .sitemap-box .container .box .box2 .box3 {
    width: 100%;
    margin-top: 0rem;
  }
}
.sitemap-box .container .box .box2 .box3 .box4 {
  width: 1.8rem;
  padding-right: 0.4rem;
  margin-top: 0.4rem;
}
@media (max-width: 991px) {
  .sitemap-box .container .box .box2 .box3 .box4 {
    width: 50%;
  }
}
.sitemap-box .container .box .box2 .box3 .box4 .cn3 {
  color: #222222;
  transition: all 0.4s;
}
.sitemap-box .container .box .box2 .box3 .box4 .cn3:hover {
  color: #008fd7;
  font-weight: bold;
}
.sitemap-box .container .box .box2 .box3 .box4 .cn4 {
  margin-top: 0.2rem;
}
.sitemap-box .container .box .box2 .box3 .box4 .cn4 .cn5 {
  margin-top: 0.1rem;
}
.sitemap-box .container .box .box2 .box3 .box4 .cn4 .cn5 .cn6 {
  color: #666666;
  text-decoration: underline;
  line-height: 1.2em;
  transition: all 0.4s;
}
.sitemap-box .container .box .box2 .box3 .box4 .cn4 .cn5 .cn6:hover {
  color: #008fd7;
  font-weight: bold;
}
.public-nav {
  background-color: #f0f7fd;
  padding: 0.3rem 0;
}
.public-nav .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.public-nav .container .cn1 {
  display: block;
  color: #666666;
  transition: all 0.4s;
}
.public-nav .container .cn1:hover {
  color: #008fd7;
}
.public-nav .container .cn2 {
  display: block;
  margin: 0 0.1rem;
  color: #666666;
}
.apply-box1 {
  background-color: #f0f7fd;
}
.apply-box1 .container .box1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #d5dade;
}
.apply-box1 .container .box1 .left {
  width: 45%;
}
@media (max-width: 991px) {
  .apply-box1 .container .box1 .left {
    width: 100%;
  }
}
.apply-box1 .container .box1 .left .img::before {
  padding-top: 61.9047619%;
}
.apply-box1 .container .box1 .right {
  width: 55%;
  padding: 0 8.92857143%;
}
@media (max-width: 991px) {
  .apply-box1 .container .box1 .right {
    background-color: #fff;
    width: 100%;
    padding: 0.5rem 0.3rem;
  }
}
.apply-box1 .container .box1 .right .box2 {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d5dade;
  padding-bottom: 0.1rem;
  align-items: center;
}
@media (max-width: 991px) {
  .apply-box1 .container .box1 .right .box2 {
    padding-bottom: 0.3rem;
  }
}
.apply-box1 .container .box1 .right .box2 .cn2 {
  color: #222222;
  line-height: 1.1em;
}
.apply-box1 .container .box1 .right .box2 .cn3 {
  flex-shrink: 0;
  margin-left: 0.3rem;
}
.apply-box1 .container .box1 .right .box2 .cn3 img {
  width: 0.57rem;
}
.apply-box1 .container .box1 .right .cn4 {
  margin-top: 0.35rem;
  color: #666666;
  line-height: 1.625em;
}
.apply-box2 {
  background-color: #f0f7fd;
  padding-top: 1rem;
}
.apply-box2 .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.apply-box2 .container .left {
  width: 45%;
}
@media (max-width: 991px) {
  .apply-box2 .container .left {
    width: 100%;
  }
}
.apply-box2 .container .left .box {
  overflow: hidden;
  cursor: pointer;
}
.apply-box2 .container .left .box.on .box2 .box3 {
  left: 0;
}
.apply-box2 .container .left .box.on .box2 .cn1 {
  font-size: 0.28rem;
  font-weight: bold;
}
@media (max-width: 991px) {
  .apply-box2 .container .left .box.on .box2 .cn1 {
    font-size: 0.4rem;
  }
}
.apply-box2 .container .left .box.on .box2 .cn2 svg {
  transform: rotate(180deg);
}
.apply-box2 .container .left .box.on .box2 .cn2 svg path {
  fill: #008fd7;
}
.apply-box2 .container .left .box.on .cn3 {
  margin-top: 0.2rem;
  padding-bottom: 0.6rem;
  opacity: 1;
  visibility: visible;
  height: auto;
}
.apply-box2 .container .left .box .box2 {
  display: flex;
  position: relative;
  height: 0.7rem;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 991px) {
  .apply-box2 .container .left .box .box2 {
    height: 1.2rem;
  }
}
.apply-box2 .container .left .box .box2 .box3 {
  display: flex;
  position: relative;
  left: -0.98rem;
  transition: all 0.4s;
}
.apply-box2 .container .left .box .box2 .icon {
  position: relative;
  margin-right: 0.3rem;
  width: 0.68rem;
  display: flex;
  align-items: center;
}
.apply-box2 .container .left .box .box2 .icon img {
  max-width: 100%;
}
.apply-box2 .container .left .box .box2 .cn1 {
  color: #222222;
  font-size: 20px;
  line-height: 1.4em;
  max-width: 4rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 1580px) {
  .apply-box2 .container .left .box .box2 .cn1 {
    font-size: 18px;
  }
}
@media (max-width: 1260px) {
  .apply-box2 .container .left .box .box2 .cn1 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .apply-box2 .container .left .box .box2 .cn1 {
    font-size: 0.3rem;
  }
}
.apply-box2 .container .left .box .box2 .cn2 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.apply-box2 .container .left .box .box2 .cn2 svg {
  width: 0.15rem;
  height: 0.09rem;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .apply-box2 .container .left .box .box2 .cn2 svg {
    width: 0.3rem;
    height: 0.18rem;
  }
}
.apply-box2 .container .left .box .box2 .cn2 svg path {
  fill: #494949;
  opacity: 1;
  stroke: none;
  transition: all 0.4s;
}
.apply-box2 .container .left .box .cn3 {
  margin-top: 0;
  padding-bottom: 0;
  line-height: 1.375em;
  color: #222;
  visibility: visible;
  opacity: 0;
  height: 0;
  transition: all 0.4s;
}
.apply-box2 .container .right {
  width: 45%;
}
@media (max-width: 991px) {
  .apply-box2 .container .right {
    margin-top: 0.6rem;
    width: 100%;
  }
}
.apply-box2 .container .right .img::before {
  padding-top: 61.9047619%;
}
.product-box1 {
  background-color: #f0f7fd;
  padding-top: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .product-box1 {
    padding-top: 1.2rem;
  }
}
.product-box1 .container .box {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-box1 .container .box .cn1 {
  color: #222222;
  line-height: 1em;
}
@media (max-width: 991px) {
  .product-box1 .container .box .cn1 {
    width: 100%;
    text-align: center;
    font-size: 0.5rem;
  }
}
.product-box1 .container .product-box1a {
  margin-top: 0.45rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .product-box1 .container .product-box1a {
    overflow: initial;
  }
}
.product-box1 .container .product-box1a .swiper-slide {
  background-color: #fff;
  padding: 0.2rem;
}
.product-box1 .container .product-box1a .swiper-slide:hover .text .cn9 img {
  transform: rotate(45deg);
}
.product-box1 .container .product-box1a .swiper-slide:hover .text .cn2 {
  color: #008fd7;
}
.product-box1 .container .product-box1a .swiper-slide:hover .img img {
  transform: scale(1.05);
}
.product-box1 .container .product-box1a .swiper-slide .text {
  padding: 0.3rem 0.15rem 0.6rem;
  position: relative;
}
.product-box1 .container .product-box1a .swiper-slide .text .cn9 {
  position: absolute;
  right: 0.15rem;
  top: 0.3rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background-color: #008fd7;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .product-box1 .container .product-box1a .swiper-slide .text .cn9 {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.product-box1 .container .product-box1a .swiper-slide .text .cn9 img {
  transition: all 0.4s;
  width: 7px;
  height: 7px;
}
@media (max-width: 991px) {
  .product-box1 .container .product-box1a .swiper-slide .text .cn9 img {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.product-box1 .container .product-box1a .swiper-slide .text .cn2 {
  color: #222222;
  transition: all 0.4s;
  width: calc(100% - 0.5rem);
}
.product-box1 .container .product-box1a .swiper-slide .text .cn3 {
  margin-top: 0.15rem;
  color: #666666;
  line-height: 1.5em;
}
.product-box1 .container .product-box1a .swiper-slide .img::before {
  padding-top: 62.65060241%;
}
.icis-box2.apply-box3 {
  padding: 1.9rem 0 1.8rem;
}
@media (max-width: 991px) {
  .icis-box2.apply-box3 {
    padding: 1.2rem 0;
  }
}
.apply-box4 {
  background-color: #f0f7fd;
}
.apply-box4 .container {
  padding-top: 0.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #d5dade;
}
.apply-box4 .container .cn1 {
  text-align: center;
  color: #222222;
  line-height: 1.8em;
  width: 68.57142857%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .apply-box4 .container .cn1 {
    width: 100%;
  }
}
.about-box1 {
  background-color: #f0f7fd;
  padding: 1.35rem 0 0;
}
.about-box1 .container .cn1 {
  text-align: center;
  line-height: 1em;
  color: #222222;
}
.about-box1 .container .cn2 {
  line-height: 1.625em;
  color: #222222;
  text-align: center;
  width: 54.28571429%;
  margin: 0.5rem auto 0;
}
@media (max-width: 991px) {
  .about-box1 .container .cn2 {
    width: 100%;
  }
}
.about-box1 .container .cn3 {
  display: flex;
  flex-wrap: wrap;
}
.about-box1 .container .cn3 .cn4 {
  margin-top: 0.9rem;
  width: 20%;
  margin-right: 6.64285714%;
}
@media (max-width: 991px) {
  .about-box1 .container .cn3 .cn4 {
    width: 48%;
    margin-right: 4%;
  }
}
.about-box1 .container .cn3 .cn4:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .about-box1 .container .cn3 .cn4:nth-child(4n) {
    margin-right: 4%;
  }
}
@media (max-width: 991px) {
  .about-box1 .container .cn3 .cn4:nth-child(2n) {
    margin-right: 0;
  }
}
.about-box1 .container .cn3 .cn4 .cn5 {
  color: #666666;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #e7e7e7;
}
@media (max-width: 991px) {
  .about-box1 .container .cn3 .cn4 .cn5 {
    font-size: 0.28rem;
  }
}
.about-box1 .container .cn3 .cn4 .cn6 {
  margin-top: 0.3rem;
  font-size: 0.67rem;
  color: #232323;
  line-height: 1em;
}
.about-box1 .container .img10 {
  margin-top: 0.85rem;
  width: 100%;
  text-align: center;
}
.about-box2 {
  padding-top: 1.55rem;
  background-color: #f0f7fd;
  padding-bottom: 1.7rem;
}
.about-box2 .container .cn1 {
  text-align: center;
  line-height: 1em;
}
.about-box2 .container .box {
  flex-wrap: wrap;
  display: flex;
  position: relative;
  margin-top: 0.6rem;
}
.about-box2 .container .box .box2 {
  width: 33.28571429%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .about-box2 .container .box .box2 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .about-box2 .container .box .box2 {
    width: 100%;
  }
}
.about-box2 .container .box .box2::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 127.89699571%;
}
.about-box2 .container .box .box2 .img {
  position: absolute;
  top: 10.06711409%;
  left: 50%;
  transform: translateX(-50%);
  width: 62.23175966%;
  height: 48.65771812%;
  border-radius: 50%;
  overflow: hidden;
}
.about-box2 .container .box .box2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-box2 .container .box .box2 .text1 {
  position: absolute;
  left: 0;
  top: 73.82550336%;
  padding: 0 8.58369099%;
  width: 100%;
}
.about-box2 .container .box .box2 .text1 .cn2 {
  display: block;
  line-height: 1em;
  margin-bottom: 0.1rem;
}
.about-box2 .container .box .box2 .text1 .cn3 {
  line-height: 1.2em;
  display: block;
}
.about-box2 .container .box .box2 .box3 {
  width: 100%;
  height: 100%;
  background-color: #008fd7;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .about-box2 .container .box .box2 .box3 {
    display: none;
  }
}
.about-box2 .container .box .box2 .box3 .text2 {
  padding: 0 12.87553648%;
  position: absolute;
  left: 0;
  top: -23.48993289%;
  opacity: 0;
  transition: all 0.4s;
  transition-delay: 0.2s;
}
.about-box2 .container .box .box2 .box3 .text2 .cn2 {
  display: block;
  line-height: 1em;
  margin-bottom: 0.1rem;
  position: relative;
  color: #fff;
}
.about-box2 .container .box .box2 .box3 .text2 .cn2::before {
  content: "";
  position: absolute;
  left: -0.24rem;
  width: 0.07rem;
  height: 0.07rem;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.about-box2 .container .box .box2 .box3 .text2 .cn2::after {
  content: "";
  position: absolute;
  left: -0.24rem;
  top: -0.13rem;
  width: 4rem;
  height: 1px;
  background-color: #fff;
}
.about-box2 .container .box .box2 .box3 .text2 .cn3 {
  color: #Fff;
  line-height: 1.2em;
  display: block;
  margin-top: 0.5rem;
}
.about-box2 .container .box .box2 .box3 .cn4 {
  position: absolute;
  right: -66.52360515%;
  bottom: 21.81208054%;
  width: 60.72961373%;
  opacity: 0;
  transition: all 0.4s;
  transition-delay: 0.2s;
}
.about-box2 .container .box .box2 .box3 .cn4 img {
  width: 100%;
}
.about-box2 .container .box .box2 .box3 .cn5 {
  position: absolute;
  right: -3.21888412%;
  bottom: -64.93288591%;
  width: 108.36909871%;
  transition: all 0.4s;
  transition-delay: 0.2s;
  opacity: 0;
}
.about-box2 .container .box .box2 .box3 .cn5 img {
  width: 100%;
}
.about-box2 .container .box .box2.on .box3 {
  opacity: 1;
}
.about-box2 .container .box .box2.on .box3 .text2 {
  top: 10.06711409%;
  opacity: 1;
}
.about-box2 .container .box .box2.on .box3 .cn4 {
  opacity: 1;
  right: -23.60515021%;
}
.about-box2 .container .box .box2.on .box3 .cn5 {
  bottom: -14.59731544%;
  opacity: 1;
}
.about-box3 {
  background-color: #f0f7fd;
  padding-bottom: 2.1rem;
}
.about-box3 .container .cn1 {
  text-align: center;
  line-height: 1em;
}
.about-box3 .container .aboutbox3a {
  overflow: hidden;
  margin-top: 0.75rem;
  padding: 0 1px;
  position: relative;
}
.about-box3 .container .aboutbox3a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0.24rem;
  background-color: #dedede;
}
.about-box3 .container .aboutbox3a .swiper-slide {
  cursor: pointer;
  line-height: 0.8rem;
  border-top: 1px solid #dedede;
  position: relative;
}
.about-box3 .container .aboutbox3a .swiper-slide::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 0.24rem;
  background-color: #dedede;
}
.about-box3 .container .aboutbox3a .swiper-slide .cn2 {
  text-align: center;
  color: #999999;
  transition: all 0.4s;
}
.about-box3 .container .aboutbox3a .swiper-slide.swiper-slide-thumb-active .cn2 {
  color: #008fd7;
}
.about-box3 .container .aboutbox3b {
  margin-top: 0.4rem;
  position: relative;
  overflow: hidden;
}
.about-box3 .container .aboutbox3b .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  align-items: center;
}
.about-box3 .container .aboutbox3b .swiper-slide .left {
  width: 50%;
  padding: 0.75rem;
}
@media (max-width: 991px) {
  .about-box3 .container .aboutbox3b .swiper-slide .left {
    width: 100%;
    padding: 0.75rem 0.3rem;
  }
}
.about-box3 .container .aboutbox3b .swiper-slide .left .cn3 {
  line-height: 1em;
  color: #232323;
}
.about-box3 .container .aboutbox3b .swiper-slide .left .cn4 {
  margin: 0.3rem 0 0.5rem;
  line-height: 1.625em;
  height: 4.875em;
  color: #222;
}
@media (max-width: 991px) {
  .about-box3 .container .aboutbox3b .swiper-slide .left .cn4 {
    height: 8.125em;
    -webkit-line-clamp: 5;
  }
}
@media (max-width: 991px) {
  .about-box3 .container .aboutbox3b .swiper-slide .left .public-arrow {
    justify-content: flex-start;
  }
}
.about-box3 .container .aboutbox3b .swiper-slide .right {
  width: 50%;
}
@media (max-width: 991px) {
  .about-box3 .container .aboutbox3b .swiper-slide .right {
    width: 100%;
  }
}
.about-box3 .container .aboutbox3b .swiper-slide .right .img {
  width: 100%;
}
.about-box3 .container .aboutbox3b .swiper-slide .right .img::before {
  padding-top: 60%;
}
.about-box4 {
  background-color: #f0f7fd;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.about-box4 .container .box1 {
  position: relative;
}
.about-box4 .container .box1 .cn1 {
  color: #222222;
  line-height: 1em;
}
@media (max-width: 991px) {
  .about-box4 .container .box1 .cn1 {
    text-align: center;
  }
}
.about-box4 .container .box1 .cn2 {
  margin-top: 0.3rem;
  color: #666666;
  line-height: 1.3em;
}
@media (max-width: 991px) {
  .about-box4 .container .box1 .cn2 {
    text-align: center;
  }
}
.about-box4 .container .box1 .cn3 {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 991px) {
  .about-box4 .container .box1 .cn3 {
    position: relative;
    margin-top: 0.3rem;
  }
}
.about-box4 .container .aboutbox4a {
  margin-top: 0.8rem;
  padding-bottom: 0.9rem;
  position: relative;
}
.about-box4 .container .aboutbox4a .swiper-slide .img::before {
  padding-top: 65.31986532%;
}
.about-box4 .container .aboutbox4a .aboutbox4apage {
  position: absolute;
  bottom: 0;
  left: 0;
  top: initial;
}
.about-box4 .container .aboutbox4a .aboutbox4apage.swiper-pagination-progressbar {
  background-color: #f1f1f1;
}
.about-box4 .container .aboutbox4a .aboutbox4apage .swiper-pagination-progressbar-fill {
  background-color: #008fd7;
}
.policy {
  padding: 1.2rem 0;
}
.policy .container .tit h1 {
  text-align: center;
}
.policy .container .tit ul {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.policy .container .tit ul li {
  margin: 0 0.2rem;
}
.policy .container .public-content {
  margin-top: 0.5rem;
}
.policy .container .public-content h3 {
  font-weight: bold;
}
@media (max-width: 991px) {
  .policy .container .public-content h3 {
    font-size: 0.36rem !important;
  }
}
@media (max-width: 991px) {
  .policy .container .public-content p {
    font-size: 0.28rem !important;
  }
}
.error {
  padding: 2.4rem 0;
}
.error .container .img {
  text-align: center;
}
.error .container .img img {
  width: 11.66rem;
}
.error .container .cn1 {
  text-align: center;
}
@media (max-width: 991px) {
  .error .container .cn1 {
    font-size: 0.32rem;
  }
}
.error .container .cn2 {
  margin-top: 0.5rem;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}
.error .container .cn2 span {
  color: #666666;
}
.error .container .cn2 a {
  color: #008fd7;
  text-decoration: underline;
}
.news-box1 {
  border-bottom: 1px solid #e5e5e5;
  line-height: 0.7rem;
}
.news-box1 .container .public-nav {
  background-color: transparent;
  padding: 0;
}
.news-box1 .container .public-nav .container {
  width: 100%;
  max-width: 100%;
}
.news-box1 .container.box2 {
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-box1 .container .box1 {
  display: flex;
}
@media (max-width: 991px) {
  .news-box1 .container .box1 {
    width: 100%;
    justify-content: center;
  }
}
.news-box1 .container .box1 .cn8 {
  display: block;
  color: #999999;
  margin-left: 0.6rem;
  transition: all 0.4s;
  position: relative;
  line-height: 0.7rem;
}
@media (max-width: 991px) {
  .news-box1 .container .box1 .cn8 {
    margin: 0 0.3rem;
  }
}
.news-box1 .container .box1 .cn8::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  transition: all 0.4s;
  height: 1px;
  background-color: #008fd7;
}
.news-box1 .container .box1 .cn8:hover {
  color: #008fd7;
}
.news-box1 .container .box1 .cn8:hover::before {
  width: 100%;
}
.news-box1 .container .box1 .cn8.on {
  color: #008fd7;
}
.news-box1 .container .box1 .cn8.on::before {
  width: 100%;
}
.news-box2 {
  padding-top: 1.4rem;
  padding-bottom: 1.6rem;
}
@media (max-width: 991px) {
  .news-box2 {
    padding: 1.2rem 0;
  }
}
.news-box2 .container {
  display: flex;
  flex-wrap: wrap;
}
.news-box2 .container.container2 {
  margin-top: 0.5rem;
  justify-content: center;
}
.news-box2 .container .box1 {
  width: 32.28571429%;
  margin-right: 1.57142857%;
  margin-bottom: 0.2rem;
  border: solid 1px #efefef;
  display: block;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .news-box2 .container .box1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
}
.news-box2 .container .box1:nth-child(3n) {
  margin-right: 0;
}
.news-box2 .container .box1 .img {
  width: 100%;
}
.news-box2 .container .box1 .img::before {
  padding-top: 57.52212389%;
}
.news-box2 .container .box1 .text {
  padding: 0.35rem;
}
.news-box2 .container .box1 .text .cn1 {
  color: #333333;
  line-height: 1.41666667em;
  height: 2.83333333em;
  transition: all 0.4s;
}
.news-box2 .container .box1 .text .cn2 {
  margin-top: 0.1rem;
  color: #999999;
  line-height: 1.625em;
  color: #999;
  height: 4.875em;
}
.news-box2 .container .box1 .text .public-btnwhite {
  margin-top: 0.3rem;
  border-top: 1px solid #e5e5e5;
  padding-top: 0.3rem;
  justify-content: flex-start;
  position: relative;
}
.news-box2 .container .box1 .text .public-btnwhite::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  background-color: #008fd7;
  transition: all 0.4s;
}
.news-box2 .container .box1 .text .public-btnwhite .btnbox {
  border: solid 1px #c9c9c9;
  transition: all 0.4s;
}
.news-box2 .container .box1 .text .public-btnwhite .btnbox .btncn1 {
  color: #222222;
  transition: all 0.4s;
}
.news-box2 .container .box1 .text .public-btnwhite .btnbox svg path {
  fill: #222;
  transition: all 0.4s;
}
.news-box2 .container .box1:hover {
  box-shadow: 0px 3px 40px 0px rgba(0, 143, 215, 0.08);
}
.news-box2 .container .box1:hover .img img {
  transform: scale(1.05);
}
.news-box2 .container .box1:hover .text .cn1 {
  color: #008fd7;
}
.news-box2 .container .box1:hover .text .public-btnwhite::before {
  width: 100%;
}
.news-box2 .container .box1:hover .text .public-btnwhite .btnbox {
  background-color: #008fd7;
}
.news-box2 .container .box1:hover .text .public-btnwhite .btnbox .btncn1 {
  color: #fff;
}
.news-box2 .container .box1:hover .text .public-btnwhite .btnbox svg path {
  fill: #fff;
}
.x-page .x-con {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.x-page .x-con a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid #dddddd;
  margin: 0 5px 5px;
  transition: 0.4s ease-in-out;
  color: #222222;
}
@media (max-width: 767px) {
  .x-page .x-con a {
    width: 0.6rem;
    height: 0.6rem;
    margin: 0 0.1rem 0.1rem;
  }
}
.x-page .x-con a.active {
  background-color: #008fd7;
  color: #fff;
}
.x-page .x-con a:hover {
  background-color: #008fd7;
  color: #fff;
}
.x-page .x-con a:hover svg path {
  fill: #fff;
}
.x-page .x-con a.x-r svg {
  transform: rotate(180deg);
}
.x-page .x-con a svg {
  width: 8px;
  height: 13px;
}
@media (max-width: 991px) {
  .x-page .x-con a svg {
    width: 0.16rem;
    height: 0.26rem;
  }
}
.x-page .x-con a svg path {
  opacity: 1;
  stroke: none;
  fill: #999999;
  transition: 0.4s ease-in-out;
}
.x-page .x-con span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  font-weight: bold;
  margin: 0 -5px;
}
@media (max-width: 767px) {
  .x-page .x-con span {
    margin: 0;
  }
}
.x-page .x-con .x-f {
  display: flex;
  align-items: center;
}
.x-page .x-con .x-f input {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid #dddddd;
  margin: 0 5px;
  font-weight: bold;
  transition: 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .x-page .x-con .x-f input {
    width: 0.6rem;
    height: 0.6rem;
    margin: 0 0.05rem;
  }
}
.x-page .x-con .x-f input[type="number"]::-webkit-inner-spin-button,
.x-page .x-con .x-f input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.x-page .x-con .x-f p {
  font-weight: bold;
  color: #222;
}
.x-page .x-con .x-f p:nth-of-type(1) {
  margin: 0 0.15rem;
}
.x-page .x-con .x-f p:last-child {
  margin-left: 0.05rem;
}
.news-info1 {
  background-image: url(../images/rcimg57.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 1.2rem;
}
.news-info1 .public-nav {
  background-color: transparent;
}
.news-info1 .container .box {
  padding: 0.5rem 0 0.4rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.news-info1 .container .box .left {
  width: 60%;
}
@media (max-width: 767px) {
  .news-info1 .container .box .left {
    width: 100%;
  }
}
.news-info1 .container .box .right {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .news-info1 .container .box .right {
    margin-top: 0.4rem;
    width: 100%;
    justify-content: flex-end;
  }
}
.news-info1 .container .box .right a {
  display: block;
  margin-left: 0.15rem;
}
@media (max-width: 767px) {
  .news-info1 .container .box .right a {
    margin-left: 0.3rem;
  }
}
.news-info1 .container .box .right a svg {
  width: 0.22rem;
  height: auto;
}
@media (max-width: 991px) {
  .news-info1 .container .box .right a svg {
    width: 0.44rem;
  }
}
.news-info1 .container .box .right a svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
  transition: all 0.4s;
}
.news-info1 .container .box .right a:hover svg path {
  fill: #008fd7;
}
.news-info1 .container .box2 {
  padding-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news-info1 .container .box2 .cn5 {
  margin-left: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news-info1 .container .box2 .cn5 img {
  margin-right: 0.1rem;
}
#c-header.c-style9 {
  background-color: transparent;
}
.social-share a:before {
  display: none;
}
.social-share a:hover {
  background: transparent !important;
}
/* 微信二维码的 */
.social-share .icon-wechat .wechat-qrcode {
  top: 50px;
  left: 0;
}
.social-share .icon-wechat .wechat-qrcode:after {
  display: none;
}
@media (max-width: 992px) {
  .social-share .icon-wechat .wechat-qrcode h4 {
    display: none;
  }
  .social-share .icon-wechat .wechat-qrcode .help {
    display: none;
  }
  .social-share .icon-wechat .wechat-qrcode .qrcode {
    width: 100px;
  }
  .social-share .icon-wechat .wechat-qrcode {
    top: 50px;
    left: -50px;
    width: 120px;
    height: initial;
    z-index: 999;
  }
}
.news-info2 {
  padding: 1.2rem 0;
}
.news-info2 .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.news-info2 .container .left {
  width: 64.28571429%;
}
@media (max-width: 991px) {
  .news-info2 .container .left {
    width: 100%;
  }
}
.news-info2 .container .left .cn1 {
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #e8e8e8;
}
.news-info2 .container .left .cn1 p {
  color: #666666;
  line-height: 1.875em;
}
.news-info2 .container .left .cn2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 0.5rem;
}
.news-info2 .container .left .cn2 .cn2a {
  width: 70%;
}
@media (max-width: 767px) {
  .news-info2 .container .left .cn2 .cn2a {
    width: 100%;
  }
}
.news-info2 .container .left .cn2 .cn2a .cn2b {
  display: block;
  color: #666666;
  line-height: 1.875em;
  transition: all 0.4s;
}
.news-info2 .container .left .cn2 .cn2a .cn2b.wu {
  cursor: auto;
}
.news-info2 .container .left .cn2 .cn2a .cn2b.wu:hover {
  color: #666;
}
.news-info2 .container .left .cn2 .cn2a .cn2b:hover {
  color: #008fd7;
}
@media (max-width: 767px) {
  .news-info2 .container .left .cn2 .cn2c {
    margin-top: 0.4rem;
  }
}
.news-info2 .container .left .cn2 .cn2c .public-btnwhite {
  border: 1px solid #c9c9c9;
}
.news-info2 .container .left .cn2 .cn2c .public-btnwhite .btnbox {
  transition: all 0.4s;
}
.news-info2 .container .left .cn2 .cn2c .public-btnwhite .btnbox .btncn1 {
  color: #222222;
}
.news-info2 .container .left .cn2 .cn2c .public-btnwhite .btnbox svg path {
  fill: #222;
}
.news-info2 .container .left .cn2 .cn2c .public-btnwhite .btnbox:hover {
  background-color: #008fd7;
}
.news-info2 .container .left .cn2 .cn2c .public-btnwhite .btnbox:hover .btncn1 {
  color: #fff;
}
.news-info2 .container .left .cn2 .cn2c .public-btnwhite .btnbox:hover svg path {
  fill: #fff;
}
.news-info2 .container .right {
  width: 28.57142857%;
}
@media (max-width: 991px) {
  .news-info2 .container .right {
    margin-top: 1.2rem;
    width: 100%;
  }
}
.news-info2 .container .right .cn3 {
  color: #000;
  line-height: 1em;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #e8e8e8;
}
.news-info2 .container .right .cn4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.3rem 0;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
}
.news-info2 .container .right .cn4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #008fd7;
  transition: all 0.4s;
}
.news-info2 .container .right .cn4 .img {
  width: 32.5%;
}
.news-info2 .container .right .cn4 .img::before {
  padding-top: 57.52212389%;
}
.news-info2 .container .right .cn4 .cn5 {
  width: 62.5%;
}
.news-info2 .container .right .cn4 .cn5 .cn6 {
  color: #333333;
  line-height: 1.5em;
  height: 3em;
  color: #333;
  transition: all 0.4s;
}
.news-info2 .container .right .cn4 .cn5 .cn7 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #999999;
  line-height: 1.875em;
}
.news-info2 .container .right .cn4 .cn5 .cn7 img {
  margin-right: 0.1rem;
}
.news-info2 .container .right .cn4:hover::before {
  width: 100%;
}
.news-info2 .container .right .cn4:hover .img img {
  transform: scale(1.05);
}
.news-info2 .container .right .cn4:hover .cn5 .cn6 {
  color: #008fd7;
}
.product-search1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.product-search1 .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.product-search1 .container .cn1 {
  text-align: center;
  color: #ffffff;
  line-height: 1em;
}
@media (max-width: 767px) {
  .product-search1 .container .cn1 {
    font-size: 0.4rem;
  }
}
.product-search1 .container .cn2 {
  margin: 0.4rem 0;
  text-align: center;
  color: #ffffff;
  line-height: 1em;
}
.product-search1 .container .cn2 a {
  color: #fff;
  text-decoration: underline;
}
.product-search1 .container .cn3 {
  width: 40.42857143%;
  margin: 0 auto;
  position: relative;
  border: solid 1px #ffffff;
}
@media (max-width: 991px) {
  .product-search1 .container .cn3 {
    width: 100%;
  }
}
.product-search1 .container .cn3 input {
  width: 100%;
  line-height: 0.6rem;
  padding: 0 0.6rem 0 0.3rem;
  color: #fff;
}
@media (max-width: 991px) {
  .product-search1 .container .cn3 input {
    line-height: 0.76rem;
  }
}
.product-search1 .container .cn3 input::placeholder {
  color: #fff;
}
.product-search1 .container .cn3 button {
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
}
.product-search1 .container .cn4 {
  margin-top: 0.2rem;
  text-align: center;
  color: #fff;
  line-height: 1em;
}
.product-search2 {
  background-color: #f0f7fd;
  padding: 0.6rem 0 1.4rem;
}
@media (max-width: 991px) {
  .product-search2 {
    padding: 1.2rem 0;
  }
}
.product-search2 .container {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.product-search2 .container .left {
  width: 15.35714286%;
  padding: 0.22rem 0.18rem 1rem;
  background-color: #fff;
}
@media (max-width: 1260px) {
  .product-search2 .container .left {
    width: 20%;
  }
}
@media (max-width: 991px) {
  .product-search2 .container .left {
    width: 27%;
  }
}
@media (max-width: 767px) {
  .product-search2 .container .left {
    width: 100%;
    padding: 0.2rem;
  }
}
.product-search2 .container .left .box {
  margin-bottom: 0.3rem;
}
.product-search2 .container .left .box .cn1 {
  color: #222222;
  line-height: 1em;
  margin-bottom: 0.2rem;
}
.product-search2 .container .left .box .cn2 .cn3 {
  margin-bottom: 0.1rem;
}
.product-search2 .container .left .box .cn2 .cn3 .cn4 {
  display: block;
  border: 1px solid #c4d4dc;
  line-height: 0.44rem;
  padding: 0 0.2rem;
  color: #666666;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .product-search2 .container .left .box .cn2 .cn3 .cn4 {
    line-height: 0.76rem;
  }
}
.product-search2 .container .left .box .cn2 .cn3.on .cn4 {
  border: 1px solid #008fd7;
  background-color: #008fd7;
  color: #fff;
}
.product-search2 .container .left .box .cn2 .cn3:hover .cn4 {
  border: 1px solid #008fd7;
  background-color: #008fd7;
  color: #fff;
}
.product-search2 .container .right {
  width: 83.21428571%;
  background-color: #fff;
  padding: 0.2rem 0.4rem 1.4rem;
}
@media (max-width: 1260px) {
  .product-search2 .container .right {
    width: 77%;
  }
}
@media (max-width: 991px) {
  .product-search2 .container .right {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .product-search2 .container .right {
    margin-top: 1.2rem;
    width: 100%;
  }
}
.product-search2 .container .right .box {
  display: block;
  padding: 0.5rem 0;
  border-top: 1px solid #c4d4dc;
  position: relative;
}
.product-search2 .container .right .box::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #008fd7;
  transition: all 0.4s;
}
.product-search2 .container .right .box:nth-child(1) {
  padding: 0 0 0.5rem;
  border-top: 0;
}
.product-search2 .container .right .box .cn5 {
  color: #222222;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .product-search2 .container .right .box .cn5 {
    font-size: 0.4rem;
  }
}
.product-search2 .container .right .box .cn6 {
  margin-top: 0.1rem;
  color: #666666;
  line-height: 1.625em;
}
.product-search2 .container .right .box:hover::before {
  width: 100%;
}
.product-search2 .container .right .box:hover .cn5 {
  color: #008fd7;
}
.product-search2 .container .right .x-page {
  margin-top: 0.5rem;
}
.product-search2.product-center1 {
  margin-top: -0.5rem;
  padding-top: 0;
  z-index: 2;
  background-color: transparent;
  position: relative;
}
.product-search2.product-center1::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0.5rem;
  height: calc(100% - 0.5rem);
  background-color: #f0f7fd;
  z-index: -1;
}
.product-search2.product-center1 .container2 {
  margin-bottom: 0.3rem;
}
.product-search2.product-center1 .container2 .box2 {
  background-color: #ffffff;
  box-shadow: 3px -3px 27px 0px rgba(58, 58, 58, 0.16);
  border: solid 1px #ffffff;
  width: 100%;
  display: flex;
  padding: 0.1rem 0.5rem 0.2rem;
  flex-wrap: wrap;
  display: none;
}
.product-search2.product-center1 .container2 .box2 .cn20 {
  margin-top: 0.2rem;
  color: #666666;
  line-height: 1.44444444em;
  margin-right: 0.35rem;
  transition: all 0.4s;
}
.product-search2.product-center1 .container2 .box2 .cn20.on {
  font-weight: bold;
  color: #008fd7;
  text-decoration: underline;
}
.product-search2.product-center1 .container2 .box2.on {
  display: flex;
}
@media (max-width: 767px) {
  .product-search2.product-center1 .container3 .right {
    margin-top: 0.5rem;
  }
}
.product-search2.product-center1 .container3 .right .box10 {
  display: none;
}
.product-search2.product-center1 .container3 .right .box10.on {
  display: block;
}
.product-search2.product-center1 .container3 .right .box3 .cn21 {
  padding-top: 0.5rem;
  line-height: 1em;
  color: #222222;
  display: block;
  margin-bottom: 0.1rem;
}
@media (max-width: 991px) {
  .product-search2.product-center1 .container3 .right .box3 .cn21 {
    font-size: 0.4rem;
  }
}
.product-search2.product-center1 .container3 .right .box3 .box4 .box5 {
  display: flex;
  flex-wrap: wrap;
}
.product-search2.product-center1 .container3 .right .box3 .box4 .box5 .cn22 {
  width: 24.51612903%;
  margin-right: 0.64516129%;
  border: solid 1px #dae1e5;
  background-color: #fff;
  margin-top: 0.07rem;
  padding: 0.2rem 0.25rem;
  transition: all 0.4s;
  display: none;
}
@media (max-width: 991px) {
  .product-search2.product-center1 .container3 .right .box3 .box4 .box5 .cn22 {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 0.1rem;
  }
}
.product-search2.product-center1 .container3 .right .box3 .box4 .box5 .cn22:nth-child(-n+20) {
  display: block;
}
.product-search2.product-center1 .container3 .right .box3 .box4 .box5 .cn22:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .product-search2.product-center1 .container3 .right .box3 .box4 .box5 .cn22:nth-child(4n) {
    margin-right: 4%;
  }
}
@media (max-width: 991px) {
  .product-search2.product-center1 .container3 .right .box3 .box4 .box5 .cn22:nth-child(2n) {
    margin-right: 0;
  }
}
.product-search2.product-center1 .container3 .right .box3 .box4 .box5 .cn22 .cn23 {
  transition: all 0.4s;
  color: #222222;
}
.product-search2.product-center1 .container3 .right .box3 .box4 .box5 .cn22 .cn24 {
  transition: all 0.4s;
  margin-top: 0.1rem;
  color: #999999;
}
.product-search2.product-center1 .container3 .right .box3 .box4 .box5 .cn22:hover {
  border: 1px solid #008fd7;
}
.product-search2.product-center1 .container3 .right .box3 .box4 .box5 .cn22:hover .cn23 {
  font-weight: bold;
  color: #008fd7;
}
.product-search2.product-center1 .container3 .right .box3 .box4 .box5 .cn22:hover .cn24 {
  color: #222222;
}
.product-search2.product-center1 .container3 .right .box3 .box4 .box5.on .cn22 {
  display: block;
}
.product-search2.product-center1 .container3 .right .box3 .box4 .box6 {
  text-align: center;
  margin-top: 0.35rem;
  cursor: pointer;
  display: none;
}
.product-search2.product-center1 .container3 .right .box3 .box4 .box6.on {
  display: block;
}
.product-search2.product-center1 .container3 .right .box3 .box4 .box6 img {
  width: 0.3rem;
}
.product-info0 {
  background-color: #f0f7fd;
  overflow: hidden;
}
.product-info1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f0f7fd;
  position: relative;
}
.product-info1 .bgimg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
.product-info1 .public-nav {
  background-color: transparent;
  position: relative;
  z-index: 2;
}
.product-info1 .container {
  position: relative;
  z-index: 2;
}
.product-info1 .container .box {
  padding: 0.5rem 0 1.1rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.product-info1 .container .box .left {
  width: 37.5%;
}
@media (max-width: 767px) {
  .product-info1 .container .box .left {
    width: 100%;
  }
}
.product-info1 .container .box .left .cn3 {
  display: flex;
  color: #222222;
  line-height: 1.1em;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .product-info1 .container .box .left .cn3 {
    flex-wrap: wrap;
  }
}
.product-info1 .container .box .left .cn3 .cn4 {
  flex-shrink: 0;
  line-height: 1.1em;
  color: #222222;
  margin-left: 0.2rem;
}
@media (max-width: 991px) {
  .product-info1 .container .box .left .cn3 .cn4 {
    width: 100%;
    margin-top: 0.2rem;
    margin-left: 0;
  }
}
.product-info1 .container .box .left .cn5 {
  margin-top: 0.25rem;
  color: #222222;
  line-height: 1.625em;
}
.product-info1 .container .box .left .public-btnblue {
  justify-content: flex-start;
  margin-top: 0.55rem;
}
.product-info1 .container .box .left .public-btnblue .btnbox {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-info1 .container .box .left .public-btnblue .btnbox .btncn2 {
  height: 0.14rem;
}
@media (max-width: 991px) {
  .product-info1 .container .box .left .public-btnblue .btnbox .btncn2 {
    height: 0.4rem;
  }
}
.product-info1 .container .box .right {
  width: 35.71428571%;
}
@media (max-width: 767px) {
  .product-info1 .container .box .right {
    margin-top: 0.4rem;
    width: 100%;
    justify-content: flex-end;
  }
}
.product-info1 .container .box .right .cn6 {
  color: #222;
  line-height: 1em;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #b6b6b6;
}
.product-info1 .container .box .right .cn7 .cn8 {
  padding: 0.1rem 0;
  display: flex;
  border-bottom: 1px solid #b6b6b6;
}
.product-info1 .container .box .right .cn7 .cn8 .cn9 {
  color: #222222;
  width: 32%;
  padding-right: 0.2rem;
}
.product-info1 .container .box .right .cn7 .cn8 .cn10 {
  color: #222222;
  width: 68%;
}
.product-info2 {
  z-index: 2;
  padding-top: 0.5rem;
  position: relative;
}
.product-info2 .container .cn1 {
  line-height: 1em;
  color: #222222;
}
.product-info2 .container .cn2 {
  color: #222222;
  line-height: 1.625em;
  margin-top: 0.3rem;
}
.product-info3 {
  padding-bottom: 1.7rem;
  padding-top: 0.8rem;
}
@media (max-width: 991px) {
  .product-info3 {
    padding-bottom: 1.2rem;
  }
}
.product-info3 .container .cn1 {
  line-height: 1em;
  color: #222222;
}
.product-info3 .container .box {
  display: flex;
  flex-wrap: wrap;
}
.product-info3 .container .box .box20 {
  margin-top: 0.35rem;
  background-color: #ffffff;
  width: 32.5%;
  margin-right: 1.25%;
}
@media (max-width: 991px) {
  .product-info3 .container .box .box20 {
    width: 100%;
    margin-right: 0;
  }
}
.product-info3 .container .box .box20:nth-child(3n) {
  margin-right: 0;
}
.product-info3 .container .box .box20 .img::before {
  padding-top: 56.04395604%;
}
.product-info3 .container .box .box20 .text {
  padding: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-info3 .container .box .box20 .text .box2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.product-info3 .container .box .box20 .text .box2 .cn2 {
  max-width: 50%;
  padding-right: 0.2rem;
  color: #222222;
  transition: all 0.4s;
}
.product-info3 .container .box .box20 .text .box2 .cn3 {
  max-width: 50%;
  color: #666666;
}
.product-info3 .container .box .box20 .text .box3 {
  width: 100%;
  margin-top: 0.9rem;
  display: flex;
  justify-content: space-between;
}
.product-info3 .container .box .box20 .text .box3 .cn4 {
  max-width: 60%;
  color: #555555;
  line-height: 1.71428571em;
}
.product-info3 .container .box .box20 .text .box3 .cn5 {
  width: 0.26rem;
  height: 0.26rem;
  background-color: #008fd7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .product-info3 .container .box .box20 .text .box3 .cn5 {
    width: 0.52rem;
    height: 0.52rem;
  }
}
.product-info3 .container .box .box20 .text .box3 .cn5 img {
  width: 7px;
  height: 7px;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .product-info3 .container .box .box20 .text .box3 .cn5 img {
    width: 0.14rem;
    height: 0.14rem;
  }
}
.product-info3 .container .box .box20:hover .img img {
  transform: scale(1.05);
}
.product-info3 .container .box .box20:hover .text .box2 .cn2 {
  color: #008fd7;
}
.product-info3 .container .box .box20:hover .text .box3 .cn5 img {
  transform: rotate(45deg);
}
.public-aside {
  position: fixed;
  right: 0.24rem;
  bottom: 0.5rem;
  z-index: 4;
}
@media (max-width: 991px) {
  .public-aside {
    display: none;
  }
}
.public-aside .box {
  width: 56px;
  padding: 0.2rem 0 0.1rem;
  border-radius: 28px;
  background-color: #ffffff;
  box-shadow: -1px 3px 16px 0px rgba(148, 180, 255, 0.16);
}
.public-aside .box .box3 {
  cursor: pointer;
  padding-top: 0.2rem;
  position: relative;
  display: block;
}
.public-aside .box .box3 .box4 {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 187px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.public-aside .box .box3 .box4 .box5 {
  height: 100%;
  width: 167px;
  background-color: #fff;
  border-radius: 0.1rem;
  box-shadow: -1px 3px 16px 0px rgba(148, 180, 255, 0.16);
  position: relative;
  padding: 0.15rem;
}
.public-aside .box .box3 .box4 .box5::before {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: #fff;
}
.public-aside .box .box3 .box4 .box5 .cn3 {
  color: #999999;
}
.public-aside .box .box3 .box4 .box5 .cn4 {
  color: #008fd7;
  word-wrap: break-word;
}
.public-aside .box .box3:nth-child(1) {
  padding-top: 0;
}
.public-aside .box .box3:last-child .cn2::before {
  display: none;
}
.public-aside .box .box3 .cn1 {
  width: 36px;
  height: 36px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.4s;
}
.public-aside .box .box3 .cn1 svg {
  width: 20px;
  height: auto;
}
.public-aside .box .box3 .cn1 svg path {
  transition: all 0.4s;
  fill: #008fd7;
  opacity: 1;
  stroke: none;
}
.public-aside .box .box3 .cn2 {
  margin-top: 0.15rem;
  line-height: 1.1em;
  text-align: center;
  color: #999999;
  position: relative;
  padding-bottom: 0.1rem;
  width: 40px;
  margin: 0.1rem auto 0;
  font-size: 14px;
}
.public-aside .box .box3 .cn2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 43px;
  height: 1px;
  background-color: #f5f5f5;
}
.public-aside .box .box3:hover .cn1 {
  background-color: #008fd7;
}
.public-aside .box .box3:hover .cn1 svg path {
  fill: #Fff;
}
.public-aside .box .box3:hover .box4 {
  opacity: 1;
  visibility: visible;
}
.public-aside .box .box3.box3a .box4 .box5 {
  padding: 0.15rem;
}
.public-aside .box2 {
  margin-top: 0.06rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: -1px 3px 16px 0px rgba(148, 180, 255, 0.16);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s;
}
.public-aside .box2 svg {
  width: 26px;
  height: auto;
}
.public-aside .box2 svg path {
  transition: all 0.4s;
  fill: #008fd7;
  opacity: 1;
  stroke: none;
}
.public-aside .box2:hover {
  background-color: #008fd7;
}
.public-aside .box2:hover svg path {
  fill: #fff;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0 {
  position: relative;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  top: calc(100% + 0.4rem);
  width: 0.2rem;
  height: 0.2rem;
  background-color: #fff;
  opacity: 0;
  transition: all 0.4s;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0.on::before {
  opacity: 1;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0 .rcheaderproduct {
  position: absolute;
  left: -1.5rem;
  top: 100%;
  padding-top: 0.5rem;
  display: none;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0 .rcheaderproduct .box {
  width: 10rem;
  background-color: #fff;
  padding: 0.2rem;
  display: flex;
  justify-content: space-between;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0 .rcheaderproduct .box .box2 {
  background-color: #e7f6fe;
  width: calc(50% - 0.1rem);
  padding: 0 0.4rem;
  height: 5rem;
  overflow: auto;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0 .rcheaderproduct .box .box2 .cn1 {
  border-bottom: 1px solid #d1d1d1;
  text-align: left;
  padding-bottom: 0.1rem;
  line-height: 1em;
  padding-top: 0.3rem;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0 .rcheaderproduct .box .box2 .cn2 {
  text-align: left;
  line-height: 1em;
  margin: 0.2rem 0 0;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0 .rcheaderproduct .box .box2 .cn3 {
  margin-top: 0.1rem;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0 .rcheaderproduct .box .box2 .cn3 .cn4 {
  width: 50%;
  line-height: 1.71428571em;
  color: #666;
  padding-right: 0.2rem;
  transition: all 0.4s;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0 .rcheaderproduct .box .box2 .cn3 .cn4:hover {
  color: #008fd7;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0 .rcheaderproduct .box .box2 .box4 {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #d1d1d1;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0 .rcheaderproduct .box .box2 .box4 .cn3 {
  display: none;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0 .rcheaderproduct .box .box2 .box4 .cn3 .cn4 {
  width: 100%;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0 .rcheaderproduct .box .box2 .box4.on .cn3 {
  display: block;
  animation: fuxiandonghua 0.4s 1 forwards linear;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderproduct0 .rcheaderproduct .box .box2 .box4:last-child.on {
  border-bottom: 0;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderapply0 {
  position: relative;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderapply0::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  top: calc(100% + 0.4rem);
  width: 0.2rem;
  height: 0.2rem;
  background-color: #fff;
  opacity: 0;
  transition: all 0.4s;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderapply0.on::before {
  opacity: 1;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderapply0 .rcheaderapply {
  position: absolute;
  left: -1.5rem;
  top: 100%;
  padding-top: 0.5rem;
  display: none;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderapply0 .rcheaderapply .box {
  width: 5rem;
  background-color: #fff;
  padding: 0.2rem;
  display: flex;
  justify-content: space-between;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderapply0 .rcheaderapply .box .box2 {
  background-color: #e7f6fe;
  width: calc(100%);
  padding: 0 0.4rem;
  height: 5rem;
  overflow: auto;
  display: flex;
  justify-content: space-between;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderapply0 .rcheaderapply .box .box2.box21 {
  padding: 0;
  display: none;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderapply0 .rcheaderapply .box .box2 .box20 {
  width: 40%;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderapply0 .rcheaderapply .box .box2 .cn1 {
  line-height: 1em;
  border-bottom: 1px solid #d1d1d1;
  text-align: left;
  padding-bottom: 0.1rem;
  padding-top: 0.3rem;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderapply0 .rcheaderapply .box .box2 .cn2 {
  text-align: left;
  line-height: 1em;
  margin: 0.2rem 0 0;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderapply0 .rcheaderapply .box .box2 .cn3 {
  margin-top: 0.1rem;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderapply0 .rcheaderapply .box .box2 .cn3 .cn4 {
  width: 100%;
  line-height: 1.71428571em;
  color: #666;
  padding-right: 0.2rem;
  transition: all 0.4s;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderapply0 .rcheaderapply .box .box2 .cn3 .cn4:hover {
  color: #008fd7;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderapply0 .rcheaderapply .box .box2 .img {
  width: 100%;
}
#c-header .zbox2 .container .c-right-box .c-nav .rcheaderapply0 .rcheaderapply .box .box2 .img img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  margin-left: 0;
}
@keyframes fuxiandonghua {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.join-box1 {
  background-color: #f0f7fd;
  padding-top: 1.1rem;
  padding-bottom: 0.13rem;
}
@media (max-width: 991px) {
  .join-box1 {
    padding: 1.2rem 0;
  }
}
.join-box1 .container {
  background-color: #fff;
  padding: 0.6rem 0.5rem 0 0.77rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .join-box1 .container {
    padding: 0.6rem 0.3rem;
  }
}
.join-box1 .container .left {
  width: 46.85%;
  padding-right: 10%;
}
@media (max-width: 991px) {
  .join-box1 .container .left {
    width: 100%;
  }
}
.join-box1 .container .left .cn1 {
  padding-top: 0.55rem;
  line-height: 1em;
  color: #222222;
}
.join-box1 .container .left .cn2 {
  color: #222222;
  line-height: 1.625em;
  margin: 0.15rem 0 0.3rem;
}
.join-box1 .container .left .cn3 {
  color: #222222;
  line-height: 1.625em;
}
.join-box1 .container .right {
  width: 53.15%;
}
@media (max-width: 991px) {
  .join-box1 .container .right {
    margin-top: 0.4rem;
    width: 100%;
  }
}
.join-box1 .container .right .joinbox1a {
  position: relative;
  overflow: hidden;
  padding-bottom: 0.9rem;
}
.join-box1 .container .right .joinbox1a .swiper-slide .img::before {
  padding-top: 57.24852071%;
}
.join-box1 .container .right .joinbox1a .joinbox1apage {
  position: absolute;
  left: 0;
  bottom: 0.5rem;
  top: initial;
  width: 100%;
  text-align: center;
}
.join-box2 {
  background-color: #f0f7fd;
}
.join-box2 .container {
  padding: 0.7rem 0.5rem 0.9rem;
  background-color: #fff;
}
@media (max-width: 991px) {
  .join-box2 .container {
    padding: 0.6rem 0.3rem;
  }
}
.join-box2 .container .cn1 {
  line-height: 1em;
  color: #222222;
}
.join-box2 .container .box {
  margin-top: 0.3rem;
}
.join-box2 .container .box .box3 {
  display: flex;
  line-height: 0.7rem;
  border-bottom: 1px solid #cbcbcb;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .join-box2 .container .box .box3 {
    line-height: 0.8rem;
  }
}
.join-box2 .container .box .box3 .cn2 {
  line-height: 0.7rem;
  width: 40%;
  color: #222222;
  padding-right: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 0.7rem;
  position: relative;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .join-box2 .container .box .box3 .cn2 {
    width: 32.30769231%;
  }
}
@media (max-width: 767px) {
  .join-box2 .container .box .box3 .cn2 {
    width: 45.38461538%;
    padding-left: 0;
    font-size: 0.24rem;
  }
}
.join-box2 .container .box .box3 .cn3 {
  line-height: 0.7rem;
  width: 17.69230769%;
  color: #222222;
  padding-right: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .join-box2 .container .box .box3 .cn3 {
    display: none;
  }
}
.join-box2 .container .box .box3 .cn4 {
  line-height: 0.7rem;
  width: 17.69230769%;
  color: #222222;
  padding-right: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .join-box2 .container .box .box3 .cn4 {
    width: 26.53846154%;
  }
}
@media (max-width: 767px) {
  .join-box2 .container .box .box3 .cn4 {
    width: 35.38461538%;
    font-size: 0.24rem;
  }
}
.join-box2 .container .box .box3 .cn5 {
  line-height: 0.7rem;
  width: 17.69230769%;
  color: #222222;
  padding-right: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .join-box2 .container .box .box3 .cn5 {
    width: 26.53846154%;
  }
}
@media (max-width: 767px) {
  .join-box2 .container .box .box3 .cn5 {
    display: none;
  }
}
.join-box2 .container .box .box3 .cn6 {
  line-height: 0.7rem;
  width: 6.92307692%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1580px) {
  .join-box2 .container .box .box3 .cn6 {
    width: 14.61538462%;
  }
}
@media (max-width: 767px) {
  .join-box2 .container .box .box3 .cn6 {
    width: 19.23076923%;
    font-size: 0.24rem;
  }
}
@media (max-width: 767px) {
  .join-box2 .container .box .box3 .cn6 {
    width: 19.23076923%;
    font-size: 0.24rem;
  }
}
.join-box2 .container .box .box2 {
  display: flex;
  line-height: 0.7rem;
  border-bottom: 1px solid #cbcbcb;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .join-box2 .container .box .box2 {
    line-height: 0.8rem;
  }
}
.join-box2 .container .box .box2 .cn2 {
  line-height: 0.7rem;
  width: 40%;
  color: #222222;
  padding-right: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 0.7rem;
  position: relative;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .join-box2 .container .box .box2 .cn2 {
    width: 32.30769231%;
  }
}
@media (max-width: 767px) {
  .join-box2 .container .box .box2 .cn2 {
    width: 45.38461538%;
    padding-left: 0;
    font-size: 0.24rem;
  }
}
.join-box2 .container .box .box2 .cn2::before {
  content: "";
  position: absolute;
  left: 0.26rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  border: 1px solid #c8c8c8;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .join-box2 .container .box .box2 .cn2::before {
    display: none;
  }
}
.join-box2 .container .box .box2 .cn3 {
  line-height: 0.7rem;
  width: 17.69230769%;
  color: #222222;
  padding-right: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .join-box2 .container .box .box2 .cn3 {
    display: none;
  }
}
.join-box2 .container .box .box2 .cn4 {
  line-height: 0.7rem;
  width: 17.69230769%;
  color: #222222;
  padding-right: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .join-box2 .container .box .box2 .cn4 {
    width: 26.53846154%;
  }
}
@media (max-width: 767px) {
  .join-box2 .container .box .box2 .cn4 {
    width: 35.38461538%;
    font-size: 0.24rem;
  }
}
.join-box2 .container .box .box2 .cn5 {
  line-height: 0.7rem;
  width: 17.69230769%;
  color: #222222;
  padding-right: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .join-box2 .container .box .box2 .cn5 {
    width: 26.53846154%;
  }
}
@media (max-width: 767px) {
  .join-box2 .container .box .box2 .cn5 {
    display: none;
  }
}
.join-box2 .container .box .box2 .cn6 {
  line-height: 0.7rem;
  width: 6.92307692%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
}
@media (max-width: 1580px) {
  .join-box2 .container .box .box2 .cn6 {
    width: 14.61538462%;
  }
}
@media (max-width: 767px) {
  .join-box2 .container .box .box2 .cn6 {
    width: 19.23076923%;
    font-size: 0.24rem;
  }
}
.join-box2 .container .box .box2 .cn6 img {
  width: 0.2rem;
}
@media (max-width: 991px) {
  .join-box2 .container .box .box2 .cn6 img {
    width: 0.3rem;
  }
}
.join-box2 .container .box .box2:hover {
  background-color: #f0f7fd;
}
.join-box2 .container .box .box2:hover .cn2 {
  font-weight: bold;
}
.join-box2 .container .box .box2:hover .cn2::before {
  border: 1px solid #008fd7;
}
.join-box2 .container .box .box2:hover .cn3 {
  font-weight: bold;
}
.join-box2 .container .box .box2:hover .cn4 {
  font-weight: bold;
}
.join-box2 .container .box .box2:hover .cn5 {
  font-weight: bold;
}
.join-box2 .container .box .box2:hover .cn6 {
  text-decoration: underline;
  color: #008fd7;
}
.join-box2 .container .public-btnblue {
  margin-top: 0.5rem;
}
.join-box3 {
  background-color: #f0f7fd;
  padding-top: 0.9rem;
}
@media (max-width: 991px) {
  .join-box3 {
    padding-top: 1.2rem;
  }
}
.join-box3 .container .cn1 {
  color: #222222;
  line-height: 1em;
}
.join-box3 .container .cn2 {
  margin-top: 0.15rem;
  color: #222222;
  line-height: 1.625em;
}
.join-box3 .container .box {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.join-box3 .container .box .box2 {
  width: 49.64285714%;
  background-color: #ffffff;
  display: flex;
  padding: 0.7rem;
  position: relative;
  margin-bottom: 0.1rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .join-box3 .container .box .box2 {
    width: 100%;
    padding: 0.5rem 0.3rem;
  }
}
.join-box3 .container .box .box2 .img {
  width: 23.85321101%;
  position: relative;
  z-index: 4;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .join-box3 .container .box .box2 .img {
    width: 0.8rem;
  }
}
.join-box3 .container .box .box2 .img svg {
  max-width: 70%;
}
@media (max-width: 991px) {
  .join-box3 .container .box .box2 .img svg {
    width: 0.53rem;
  }
}
.join-box3 .container .box .box2 .img svg path {
  fill: #008fd7;
  opacity: 1;
  stroke: none;
  transition: all 0.4s;
}
.join-box3 .container .box .box2 .text {
  position: relative;
  width: 76.14678899%;
  z-index: 5;
}
@media (max-width: 991px) {
  .join-box3 .container .box .box2 .text {
    width: calc(100% - 0.8rem);
  }
}
.join-box3 .container .box .box2 .text .cn3 {
  display: block;
  color: #000000;
  line-height: 1em;
  transition: all 0.4s;
}
.join-box3 .container .box .box2 .text .cn4 {
  display: block;
  color: #666666;
  line-height: 1.5em;
  margin-top: 0.2rem;
  transition: all 0.4s;
}
.join-box3 .container .box .box2 .box3 {
  width: 100%;
  height: 100%;
  background-color: #008fd7;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s;
}
.join-box3 .container .box .box2 .box3 .cn6 {
  position: absolute;
  right: -45.06437768%;
  top: 50%;
  transform: translateY(-50%);
  width: 32.51798561%;
  opacity: 0;
  transition: all 0.4s;
  transition-delay: 0.2s;
}
.join-box3 .container .box .box2 .box3 .cn6 img {
  width: 100%;
}
.join-box3 .container .box .box2 .box3 .cn5 {
  position: absolute;
  right: -2.15827338%;
  bottom: -154.18326693%;
  width: 58.1294964%;
  transition: all 0.4s;
  transition-delay: 0.2s;
  opacity: 0;
}
.join-box3 .container .box .box2 .box3 .cn5 img {
  width: 100%;
}
.join-box3 .container .box .box2:hover .img svg path {
  fill: #Fff;
}
.join-box3 .container .box .box2:hover .text .cn3 {
  color: #fff;
}
.join-box3 .container .box .box2:hover .text .cn4 {
  color: #Fff;
}
.join-box3 .container .box .box2:hover .box3 {
  opacity: 1;
}
.join-box3 .container .box .box2:hover .box3 .cn6 {
  opacity: 1;
  right: -19.31330472%;
}
.join-box3 .container .box .box2:hover .box3 .cn5 {
  bottom: -79.6812749%;
  opacity: 1;
}
.join-box4 {
  background-color: #f0f7fd;
  padding-top: 1.7rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .join-box4 {
    padding: 1.2rem 0;
  }
}
.join-box4 .container .box1 {
  position: relative;
}
.join-box4 .container .box1 .cn1 {
  color: #222222;
  line-height: 1em;
}
@media (max-width: 991px) {
  .join-box4 .container .box1 .cn1 {
    text-align: center;
  }
}
.join-box4 .container .box1 .cn2 {
  margin-top: 0.3rem;
  color: #666666;
  line-height: 1.3em;
}
@media (max-width: 991px) {
  .join-box4 .container .box1 .cn2 {
    text-align: center;
  }
}
.join-box4 .container .box1 .cn3 {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 991px) {
  .join-box4 .container .box1 .cn3 {
    position: relative;
    margin-top: 0.3rem;
  }
}
.join-box4 .container .box1 .cn3 .aboutbox4apage {
  position: absolute;
  bottom: 0;
  left: 0;
  top: initial;
}
.join-box4 .container .box1 .cn3 .aboutbox4apage.swiper-pagination-progressbar {
  background-color: #f1f1f1;
}
.join-box4 .container .box1 .cn3 .aboutbox4apage .swiper-pagination-progressbar-fill {
  background-color: #008fd7;
}
.join-box4 .container .joinbox4a {
  margin-top: 0.8rem;
  position: relative;
}
.join-box4 .container .joinbox4a .swiper-slide .img::before {
  padding-top: 66.72413793%;
}
.join-box4 .container .joinbox4a .swiper-slide .cn20 {
  color: #000000;
  padding: 0 0.1rem;
  margin-top: 0.4rem;
  line-height: 1em;
}
.join-box4 .container .joinbox4a .swiper-slide .cn21 {
  margin-top: 0.1rem;
  padding: 0 0.1rem;
  color: #666666;
  line-height: 1.5em;
}
.join-box5 {
  background-color: #f0f7fd;
  padding-bottom: 1.6rem;
}
@media (max-width: 991px) {
  .join-box5 {
    padding-top: 1.2rem;
  }
}
.join-box5 .container {
  display: flex;
  flex-wrap: wrap;
  background-color: #ffffff;
  align-items: center;
}
.join-box5 .container .left {
  width: 50.42857143%;
  padding: 0.8rem;
}
@media (max-width: 991px) {
  .join-box5 .container .left {
    width: 100%;
    padding: 0.8rem 0.3rem;
  }
}
.join-box5 .container .left .cn1 {
  color: #222222;
}
.join-box5 .container .left .cn2 {
  color: #222222;
  line-height: 1.625em;
  color: #222;
}
.join-box5 .container .left .box {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
}
.join-box5 .container .left .box .cn3 {
  width: 50%;
  padding-right: 0.2rem;
}
@media (max-width: 767px) {
  .join-box5 .container .left .box .cn3 {
    width: 100%;
  }
}
.join-box5 .container .left .box .cn3 li {
  position: relative;
  color: #222222;
  padding-left: 0.25rem;
  margin-top: 0.1rem;
}
.join-box5 .container .left .box .cn3 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 0.1rem;
  background-color: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 50%;
}
.join-box5 .container .right {
  width: 49.57142857%;
}
@media (max-width: 991px) {
  .join-box5 .container .right {
    width: 100%;
  }
}
.join-box5 .container .right .img::before {
  padding-top: 81.50289017%;
}
.join-box6 {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.join-box6 .img::before {
  padding-top: 33.02083333%;
}
@media (max-width: 991px) {
  .join-box6 .img::before {
    padding-top: 75%;
  }
}
.join-box6 .text {
  position: absolute;
  left: 50%;
  top: 1.78rem;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
  transform: translateX(-50%);
}
.join-box6 .text .cn1 {
  text-align: center;
  color: #ffffff;
  line-height: 1em;
}
.join-box6 .text .cn2 {
  margin: 0.2rem auto 0;
  color: #ffffff;
  text-align: center;
  line-height: 1.5em;
  width: 39.0625%;
}
@media (max-width: 1260px) {
  .join-box6 .text .cn2 {
    width: 90%;
  }
}
.join-box6 .text .box99 {
  margin-top: 0.4rem;
  display: flex;
  justify-content: center;
}
.join-box6 .text .box99 .public-btnwhite {
  margin: 0 0.1rem;
}
.public-windows {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.public-windows.lianxiwindows {
  display: none;
}
.public-windows.shenqingggangwei {
  display: none;
}
.public-windows.shenqingggangwei .box {
  width: 8.9rem;
}
@media (max-width: 991px) {
  .public-windows.shenqingggangwei .box {
    width: 90%;
  }
}
.public-windows.shenqingggangwei .box .cn7 {
  margin-top: 0.1rem;
}
.public-windows.shenqingggangwei .box10 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.public-windows.shenqingggangwei .box10 .box2 {
  width: 48%;
}
.public-windows.shenqingggangwei .box10 .box2.box12 {
  width: 100%;
}
.public-windows.shenqingggangwei .box10 .cn13 {
  color: #008fd7;
  line-height: 0.4rem;
}
.public-windows.shenqingggangwei .box10 .box11 {
  width: 100%;
}
.public-windows.shenqingggangwei .box10 .box11 .cn4 {
  color: #666666;
  line-height: 0.4rem;
}
@media (max-width: 991px) {
  .public-windows.shenqingggangwei .box10 .box11 .cn4 {
    line-height: 0.6rem;
  }
}
.public-windows.shenqingggangwei .box10 .box11 .box12 {
  width: 100%;
  height: 2rem;
  border-radius: 6px;
  border: solid 1px #f2f2f2;
  position: relative;
  padding: 0.2rem;
  background-color: #fafafa;
}
.public-windows.shenqingggangwei .box10 .box11 .box12 .cn30 {
  color: #999999;
  line-height: 1.71428571em;
}
.public-windows.shenqingggangwei .box10 .box11 .box12 .cn31 {
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
  min-width: 1.1rem;
  line-height: 0.32rem;
  background-color: #008fd7;
  border-radius: 2px;
  overflow: hidden;
  color: #Ffff;
  text-align: center;
}
.public-windows.shenqingggangwei .box10 .box11 .box12 .cn31 span {
  display: block;
  position: relative;
  background-color: #008fd7;
  z-index: 2;
}
.public-windows.shenqingggangwei .box10 .box11 .box12 .cn31 input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 3;
}
.public-windows.shenqingggangwei .box10 .box11 .box12 .cn32 {
  display: flex;
  position: absolute;
  background-color: #ffffff;
  border-radius: 5px;
  height: 0.68rem;
  width: 2.8rem;
  bottom: 0.2rem;
  left: 0.2rem;
  align-items: center;
  justify-content: center;
}
.public-windows.shenqingggangwei .box10 .box11 .box12 .cn32 .zclose {
  position: absolute;
  right: -0.1rem;
  top: -0.1rem;
  cursor: pointer;
}
.public-windows.shenqingggangwei .box10 .box11 .box12 .cn32 .zclose img {
  width: 0.2rem;
}
.public-windows.shenqingggangwei .box10 .box11 .box12 .cn32 .cn33 {
  width: 0.33rem;
  margin-right: 0.07rem;
}
.public-windows.shenqingggangwei .box10 .box11 .box12 .cn32 .cn33 img {
  width: 0.33rem;
}
.public-windows.shenqingggangwei .box10 .box11 .box12 .cn32 .cn34 {
  width: 2.1rem;
}
.public-windows.shenqingggangwei .box10 .box11 .box12 .cn32 .cn34 .cn35 {
  display: block;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.public-windows.shenqingggangwei .box10 .box11 .box12 .cn32 .cn34 .cn36 {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.public-windows.shenqingggangwei .box10 .box11 .box12 .cn32 .cn34 .cn36 em {
  font-style: normal;
  color: #999999;
}
.public-windows .box {
  width: 7.5rem;
  border-radius: 0.1rem;
  background-color: #Fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.5rem 0.6rem;
  max-height: 100vh;
  overflow: auto;
}
@media (max-width: 991px) {
  .public-windows .box {
    width: 90%;
    padding: 0.5rem 0.3rem;
  }
}
.public-windows .box .cnclose {
  position: absolute;
  right: 0.6rem;
  top: 0.6rem;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  transition: all 0.4s;
  cursor: pointer;
}
.public-windows .box .cnclose span {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #333;
  transform: translate(-50%, -50%);
}
.public-windows .box .cnclose span:nth-child(1) {
  width: 100%;
  height: 1px;
}
.public-windows .box .cnclose span:nth-child(2) {
  width: 1px;
  height: 100%;
}
.public-windows .box .cnclose:hover {
  transform: rotate(-135deg);
}
.public-windows .box .cn1 {
  display: flex;
  align-items: center;
  margin-bottom: 0.4rem;
}
.public-windows .box .cn1 .cn2 {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 0.06rem;
  background-color: #e5f4fb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.2rem;
}
.public-windows .box .cn1 .cn2 img {
  width: 0.19rem;
}
.public-windows .box .cn1 .cn3 {
  color: #333333;
}
.public-windows .box .box2 .cn4 {
  color: #666666;
  line-height: 0.4rem;
}
@media (max-width: 991px) {
  .public-windows .box .box2 .cn4 {
    line-height: 0.6rem;
  }
}
.public-windows .box .box2 .cn4 .cn5 {
  color: #008fd7;
  margin-right: 5px;
}
.public-windows .box .box2 .cn6 {
  width: 100%;
}
.public-windows .box .box2 .cn6 input {
  padding: 0 0.2rem;
  width: 100%;
  line-height: 0.5rem;
  height: 0.5rem;
  background-color: #fafafa;
  border-radius: 6px;
  border: 1px solid #f2f2f2;
  color: #999;
}
@media (max-width: 991px) {
  .public-windows .box .box2 .cn6 input {
    line-height: 0.76rem;
    height: 0.76rem;
  }
}
.public-windows .box .box2 .cn6 input::placeholder {
  color: #999;
}
.public-windows .box .box2 .cn6 textarea {
  padding: 0 0.2rem;
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  height: 1.3rem;
  background-color: #fafafa;
  border-radius: 6px;
  border: 1px solid #f2f2f2;
  color: #999;
}
@media (max-width: 991px) {
  .public-windows .box .box2 .cn6 textarea {
    line-height: 0.76rem;
    height: 0.76rem;
  }
}
.public-windows .box .box2 .cn6 textarea::placeholder {
  color: #999;
}
.public-windows .box .cn7 {
  margin-top: 0.4rem;
  width: 100%;
  display: block;
  line-height: 0.5rem;
  border-radius: 4px;
  background-color: #008fd7;
  color: #fff;
}
@media (max-width: 991px) {
  .public-windows .box .cn7 {
    line-height: 0.76rem;
  }
}
.product-search2.searchsearch1 {
  padding: 1.2rem 0 0;
}
.product-search2.searchsearch1 .container .left {
  background-color: transparent;
  padding: 0;
  width: 100%;
}
.product-search2.searchsearch1 .container .left .box {
  margin-bottom: 0;
}
.product-search2.searchsearch1 .container .left .box .cn2 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
  justify-content: center;
}
.product-search2.searchsearch1 .container .left .box .cn2 .cn3 {
  margin: 0 0.1rem;
}
.product-search2.searchsearch1 .container .right {
  display: none;
}
.product-search2.searchsearch2 {
  padding: 0 0 1.2rem;
}
.product-search2.searchsearch2 .container .right {
  padding: 0.6rem 0 0;
  background-color: transparent;
  width: 100%;
}
.product-search2.searchsearch2 .container .news-box2 {
  padding: 0.6rem 0 0;
}
.product-search2.searchsearch2 .container .news-box2 .container {
  width: 100% !important;
}
.product-search2.searchsearch2 .container .news-box2 .container .box1 {
  background-color: #fff;
}
.product-search2.searchsearch2 .zanwu {
  justify-content: center ;
  width: 100%;
}
.product-search2.searchsearch2 .zanwu .simg1 {
  text-align: center;
}
.product-search2.searchsearch2 .zanwu .scn1 {
  text-align: center;
  line-height: 1em;
}
.join-list1 {
  padding-bottom: 1.2rem;
}
.join-list1 .container {
  display: flex;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}
.join-list1 .container .left {
  padding-right: 3.57142857%;
  width: 24%;
}
@media (max-width: 991px) {
  .join-list1 .container .left {
    width: 100%;
    padding-right: 0;
  }
}
.join-list1 .container .left .left1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 0.3rem;
  padding-bottom: 0.3rem;
}
@media (max-width: 991px) {
  .join-list1 .container .left .left1 {
    padding-left: 0;
  }
}
.join-list1 .container .left .left1 .cn1 {
  color: #222222;
}
.join-list1 .container .left .left1 .cn2 {
  color: #999999;
  transition: all 0.4s;
  cursor: pointer;
}
.join-list1 .container .left .left1 .cn2:hover {
  color: #008fd7;
}
.join-list1 .container .left .left2 .left3 {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 0.3rem;
  margin-bottom: 0.3rem;
}
.join-list1 .container .left .left2 .left3 .cn3 {
  padding-left: 0.3rem;
  color: #222222;
}
@media (max-width: 991px) {
  .join-list1 .container .left .left2 .left3 .cn3 {
    padding-left: 0;
  }
}
.join-list1 .container .left .left2 .left3 .left4 {
  margin-top: 0.1rem;
}
.join-list1 .container .left .left2 .left3 .left4 .cn4 {
  margin-bottom: 0.1rem;
  padding-left: 0.3rem;
  display: flex;
  align-items: center;
  color: #999999;
  line-height: 1.5em;
  cursor: pointer;
}
@media (max-width: 991px) {
  .join-list1 .container .left .left2 .left3 .left4 .cn4 {
    padding-left: 0;
  }
}
.join-list1 .container .left .left2 .left3 .left4 .cn4 .cn5 {
  display: block;
  margin-right: 0.1rem;
  flex-shrink: 0;
  width: 0.15rem;
  height: 0.15rem;
  border: 1px solid #e9ebef;
  transition: all 0.4s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.13rem 0.1rem;
}
@media (max-width: 991px) {
  .join-list1 .container .left .left2 .left3 .left4 .cn4 .cn5 {
    width: 0.3rem;
    height: 0.3rem;
    background-size: 0.26rem 0.2rem;
  }
}
.join-list1 .container .left .left2 .left3 .left4 .cn4.on {
  font-weight: bold;
}
.join-list1 .container .left .left2 .left3 .left4 .cn4.on .cn5 {
  border: 1px solid #008fd7;
  background-image: url(../images/rcimg95.svg);
  background-color: #008fd7;
}
.join-list1 .container .right {
  width: 76%;
  position: relative;
  padding-left: 4.28571429%;
}
@media (max-width: 991px) {
  .join-list1 .container .right {
    margin-top: 0.6rem;
    width: 100%;
    padding-left: 0;
  }
}
.join-list1 .container .right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .join-list1 .container .right::before {
    display: none;
  }
}
.join-list1 .container .right .cn6 {
  color: #222222;
  line-height: 1em;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.join-list1 .container .right .cn7 {
  color: #222222;
  line-height: 1.2em;
  padding: 0.2rem 0;
}
.join-list1 .container .right .cn8 .cn12 {
  cursor: pointer;
  position: relative;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.join-list1 .container .right .cn8 .cn12 .cn9 {
  line-height: 1.2em;
  color: #333333;
}
.join-list1 .container .right .cn8 .cn12 .cn10 {
  display: flex;
  margin-top: 0.2rem;
}
.join-list1 .container .right .cn8 .cn12 .cn10 .cn11 {
  display: flex;
  align-items: center;
  color: #666666;
  line-height: 1.5em;
  margin-right: 0.6rem;
}
.join-list1 .container .right .cn8 .cn12 .cn10 .cn11 img {
  margin-right: 5px;
}
.join-list1 .container .right .cn8 .cn12 .img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.join-list1 .container .right .cn8 .cn12 .img img {
  transition: all 0.4s;
}
.join-list1 .container .right .cn8 .cn12.on .img img {
  transform: rotate(180deg);
}
.join-list1 .container .right .cn8 .cn13 {
  padding: 0.3rem;
  background-color: #f9f9f9;
  display: none;
}
.join-list1 .container .right .cn8 .cn13 .public-content h3 {
  color: #333333;
  line-height: 1.5em;
}
.join-list1 .container .right .cn8 .cn13 .public-content p {
  color: #999999;
  line-height: 1.5em;
}
.join-list1 .container .right .cn8 .cn13 .cn14 {
  margin-top: 0.4rem;
  min-width: 1.2rem;
  line-height: 0.46rem;
  background-color: #008fd7;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 0 0.2rem;
}
@media (max-width: 991px) {
  .join-list1 .container .right .cn8 .cn13 .cn14 {
    line-height: 0.76rem;
  }
}
.join-list1 .container .right .x-page {
  margin-top: 0.7rem;
}
.z-cookies {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}
.z-cookies .z-cookies1 {
  width: 100%;
  padding: 0.4rem 0.5rem;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  right: 0;
  bottom: 0;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .z-cookies .z-cookies1 {
    padding: 1rem 0.3rem 0.6rem;
  }
}
.z-cookies .z-cookies1 .left {
  width: 62%;
}
@media (max-width: 991px) {
  .z-cookies .z-cookies1 .left {
    width: 100%;
  }
}
.z-cookies .z-cookies1 .left .cn1 {
  color: #333;
  font-size: 20px;
}
.z-cookies .z-cookies1 .left .cn2 {
  margin-top: 0.1rem;
  color: #333;
}
.z-cookies .z-cookies1 .left .cn2 a {
  color: #008fd7;
  text-decoration: underline;
}
.z-cookies .z-cookies1 .right {
  max-width: 38%;
  padding-right: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .z-cookies .z-cookies1 .right {
    max-width: 100%;
    width: 100%;
    margin-top: 0.2rem;
  }
}
.z-cookies .z-cookies1 .right .cn3 {
  background-color: #008fd7;
  color: #fff;
  transition: all 0.4s;
  min-width: 1.6rem;
  border-radius: 4px;
  text-align: center;
  margin-left: 0.25rem;
  padding: 0.15rem 0.2rem;
}
.z-cookies .z-cookies1 .right .cn3:hover {
  opacity: 0.8;
}
.z-cookies .z-cookies1 .close {
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 20px;
  height: 20px;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 991px) {
  .z-cookies .z-cookies1 .close {
    top: 0.5rem;
  }
}
.z-cookies .z-cookies1 .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.3s;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.z-cookies .z-cookies1 .close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 20px;
  height: 2px;
  margin: -1px 0 0 -10px;
  background: #333;
  transition: 0.3s;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.newsindexbox1 {
  padding: 1.3rem 0 2.6rem;
  background: linear-gradient(to top, #f1f7fd, #fff);
}
.newsindexbox1 .container .ncn1 {
  text-align: center;
  line-height: 1.2em;
  color: #222;
}
.newsindexbox1 .container .ncn2 {
  text-align: center;
  line-height: 1.625em;
  color: #222222;
  margin: 0.2rem 0 0;
}
.newsindexbox1 .container .index-num {
  background-color: transparent;
  padding: 0;
}
.newsindexbox1 .container .index-num .container {
  max-width: 100% !important;
  width: 100% !important;
}
.newsindexbox1 .container .index-num .container .box1 {
  margin-top: 0.5rem;
}
.newsindexbox1 .container .index-num .container .box1 .cn1 {
  border-bottom: 1px solid transparent;
  padding-bottom: 0.2rem;
  padding-top: 0.2rem;
  border-top: 1px solid #e7e7e7;
}
.newsindexbox1 .container .index-num .container .box1 .cn2 {
  align-items: flex-start;
}
.newsindexbox1 .container .index-num .container .box1 .cn2 .num {
  line-height: 1em;
}
.newsindexbox1 .container .index-num .container .box1 .cn2 .cn3 {
  line-height: 1em;
}
.newsindexbox1 .container .public-btnblack {
  margin-top: 0.7rem;
  justify-content: center;
}
.newsindexbox1 .container .ncn3 {
  display: flex;
  flex-wrap: wrap;
}
.newsindexbox1 .container .ncn3 .ncn4 {
  margin-top: 0.6rem;
  width: 32.85714286%;
  margin-right: 0.71428571%;
}
@media (max-width: 767px) {
  .newsindexbox1 .container .ncn3 .ncn4 {
    width: 100%;
  }
}
.newsindexbox1 .container .ncn3 .ncn4:nth-child(3n) {
  margin-right: 0;
}
.newsindexbox1 .container .ncn3 .ncn4::before {
  padding-top: 68.04347826%;
}
.product-info0 {
  overflow: initial;
}
.newsproductinfo1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.4rem;
  border-bottom: 1px solid #e5e5e5;
  align-items: flex-start;
}
.newsproductinfo1 .nbox {
  position: sticky;
  left: 0;
  top: 0;
  width: 42.85714286% !important;
  padding-bottom: 1.1rem;
}
@media (max-width: 991px) {
  .newsproductinfo1 .nbox {
    position: relative;
    width: 100% !important;
    padding-bottom: 0;
  }
}
.newsproductinfo1 .nbox .newsproductswiper {
  position: relative;
  overflow: hidden;
}
.newsproductinfo1 .nbox .newsproductswiper .swiper-slide .img::before {
  padding-top: 66.66%;
}
.newsproductinfo1 .nbox .newsproductswiper .applyprev0 {
  background-color: #Fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  border-radius: 50%;
  z-index: 4;
  cursor: pointer;
  width: 0.6rem;
  height: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.newsproductinfo1 .nbox .newsproductswiper .applyprev0:hover {
  background-color: #008fd7;
}
.newsproductinfo1 .nbox .newsproductswiper .applyprev0:hover svg path {
  fill: #Fff;
}
.newsproductinfo1 .nbox .newsproductswiper .applynext0 {
  background-color: #Fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 4;
  cursor: pointer;
  width: 0.6rem;
  height: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.newsproductinfo1 .nbox .newsproductswiper .applynext0:hover {
  background-color: #008fd7;
}
.newsproductinfo1 .nbox .newsproductswiper .applynext0:hover svg path {
  fill: #Fff;
}
.newsproductinfo1 .box {
  margin-right: 7.14285714%;
  width: 38.57142857% !important;
  border-bottom: 1px solid transparent !important;
}
@media (max-width: 991px) {
  .newsproductinfo1 .box {
    width: 100% !important;
    margin-right: 0 !important;
    margin-top: 0.5rem !important;
  }
}
.newsproductinfo1 .box .left {
  width: 100% !important;
}
.newsproductinfo1 .box .right {
  width: 100% !important;
  margin-top: 1.45rem;
}
.newindexcase {
  padding-top: 1.1rem;
}
.newindexcase .container .box {
  padding-bottom: 1.1rem;
}
.newindexcase .container .box .cn1 {
  text-align: center;
  color: #000;
  line-height: 1.16666667em;
}
.newindexcase .container .box .box2 {
  flex-wrap: wrap;
  display: flex;
  margin: 0.7rem -0.08rem 0;
}
.newindexcase .container .box .box2 .img2 {
  padding: 0 0.08rem;
  width: calc(100% / 6);
}
@media (max-width: 991px) {
  .newindexcase .container .box .box2 .img2 {
    width: calc(100% / 3);
  }
}
.newindexcase .container .box .box2 .img2 .img {
  border: 1px solid #eee;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  height: 0.9rem;
  justify-content: center;
  margin-bottom: 0.16rem;
}
@media (max-width: 991px) {
  .newindexcase .container .box .box2 .img2 .img {
    height: 1.5rem;
  }
}
.newindexcase .container .box .box2 .img2 .img img {
  max-width: 80%;
  max-height: 100%;
}
.font44 {
  font-size: 0.44rem;
}
.newsaboutbox .newsaboutbox1 {
  position: relative;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.newsaboutbox .newsaboutbox1 .bgimg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.newsaboutbox .newsaboutbox1 .bgimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsaboutbox .newsaboutbox1 .container {
  position: relative;
}
.newsaboutbox .newsaboutbox1 .container .cn1 {
  text-align: left;
  color: #Fff;
  line-height: 1.22727273em;
}
.newsaboutbox .newsaboutbox1 .container .box {
  width: 65%;
  flex-wrap: wrap;
  display: flex;
}
@media (max-width: 991px) {
  .newsaboutbox .newsaboutbox1 .container .box {
    width: 100%;
    justify-content: space-between;
  }
}
.newsaboutbox .newsaboutbox1 .container .box .box2 {
  width: 19.78021978%;
  margin-top: 0.6rem;
  margin-right: 6.59340659%;
}
@media (max-width: 991px) {
  .newsaboutbox .newsaboutbox1 .container .box .box2 {
    width: 48%;
    margin-right: 0;
  }
}
.newsaboutbox .newsaboutbox1 .container .box .box2:nth-child(4n) {
  margin-right: 0;
}
.newsaboutbox .newsaboutbox1 .container .box .box2 .cn2 {
  color: #ffffff;
  line-height: 1.71428571em;
  padding: 0.1rem 0;
  border-top: 1px solid rgba(231, 231, 231, 0.3);
}
.newsaboutbox .newsaboutbox1 .container .box .box2 .cn3 {
  display: flex;
  align-items: flex-start;
}
.newsaboutbox .newsaboutbox1 .container .box .box2 .cn3 .cn4 {
  color: #Fff;
  line-height: 1em;
}
.newsaboutbox .newsaboutbox1 .container .box .box2 .cn3 .cn5 {
  line-height: 1em;
  color: #Fff;
}
.newsaboutbox .newsaboutbox2 {
  background-color: #009b4c;
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}
.newsaboutbox .newsaboutbox2 .bgimg {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #008fd7;
}
@media (max-width: 991px) {
  .newsaboutbox .newsaboutbox2 .bgimg {
    display: none;
  }
}
.newsaboutbox .newsaboutbox2 .container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.newsaboutbox .newsaboutbox2 .container .box1 {
  width: 50%;
}
@media (max-width: 991px) {
  .newsaboutbox .newsaboutbox2 .container .box1 {
    width: 100%;
    margin-top: 1rem;
  }
}
.newsaboutbox .newsaboutbox2 .container .box1 .cn1 {
  color: #fff;
  line-height: 1.35714286em;
}
.newsaboutbox .newsaboutbox2 .container .box1 .cn2 {
  display: flex;
  flex-wrap: wrap;
}
.newsaboutbox .newsaboutbox2 .container .box1 .cn2 .cn3 {
  padding: 0 0.3rem;
  display: flex;
  align-items: center;
  margin-top: 0.4rem;
  position: relative;
  max-width: 33%;
}
@media (max-width: 991px) {
  .newsaboutbox .newsaboutbox2 .container .box1 .cn2 .cn3 {
    width: 50%;
    max-width: 50%;
  }
}
.newsaboutbox .newsaboutbox2 .container .box1 .cn2 .cn3:nth-child(1) {
  padding-left: 0;
}
@media (max-width: 991px) {
  .newsaboutbox .newsaboutbox2 .container .box1 .cn2 .cn3:nth-child(odd) {
    padding-left: 0;
  }
}
.newsaboutbox .newsaboutbox2 .container .box1 .cn2 .cn3:nth-child(3n)::before {
  display: none;
}
.newsaboutbox .newsaboutbox2 .container .box1 .cn2 .cn3:last-child::before {
  display: none;
}
.newsaboutbox .newsaboutbox2 .container .box1 .cn2 .cn3::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.46rem;
  background-color: #Fff;
  opacity: 0.3;
}
@media (max-width: 991px) {
  .newsaboutbox .newsaboutbox2 .container .box1 .cn2 .cn3::before {
    display: none;
  }
}
.newsaboutbox .newsaboutbox2 .container .box1 .cn2 .cn3 .cn4 {
  flex-shrink: 0;
  margin-right: 0.3rem;
}
.newsaboutbox .newsaboutbox2 .container .box1 .cn2 .cn3 .cn4 img {
  height: 0.42rem;
}
@media (max-width: 991px) {
  .newsaboutbox .newsaboutbox2 .container .box1 .cn2 .cn3 .cn4 img {
    height: 0.5rem;
  }
}
.newsaboutbox .newsaboutbox2 .container .box1 .cn2 .cn3 .cn5 .cn6 {
  display: block;
  color: #ffffff;
}
.newsaboutbox .newsaboutbox2 .container .box1 .cn2 .cn3 .cn5 .cn7 {
  display: block;
  color: #ffffff;
}
.newsaboutbox .newsaboutbox2 .container .box1:nth-child(2n) {
  padding-right: 0;
  padding-left: 0.85rem;
}
@media (max-width: 991px) {
  .newsaboutbox .newsaboutbox2 .container .box1:nth-child(2n) {
    padding-left: 0;
  }
}
.newsaboutbox .newsaboutbox2 .container .box1:nth-child(2n) .cn3 {
  max-width: 50%;
}