@charset "utf-8";
:root {
  --color: #0068ff;
  --vh: 100vh;
}
a {
  text-decoration: initial;
}
input::-webkit-input-placeholder {
  color: #999;
}
textarea::-webkit-input-placeholder {
  color: #999;
}
/*字体*/
/* @font-face {
	font-family: "Fontke";
	src: url("Fontke.woff2") format("woff2"),
		 url("Fontke.woff") format("woff"),
		 url("Fontke.ttf") format("truetype"),
		 url("Fontke.eot") format("embedded-opentype"),
		 url("Fontke.svg") format("svg"),
		 url("Fontke.otf") format("opentype");
}
 */
@font-face {
  font-family: 'oppo-b';
  src: url(../font/OPPOSans-B-2.ttf);
}
@font-face {
  font-family: 'oppo-r';
  src: url(../font/OPPOSans-R-2.ttf);
}
.font-pop {
  font-family: 'oppo-b', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
* {
  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: #0068ff;
}
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;
}
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;
}
svg path {
  fill: currentColor;
}
picture,
section,
main {
  display: block;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  margin: 0 auto;
  width: 85%;
  max-width: 1440px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.container2 {
  margin: 0 auto;
  width: 70%;
  max-width: 1000px;
}
@media (max-width: 1260px) {
  .container2 {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .container2 {
    width: 90%;
  }
}
.bg-color1 {
  background-color: #fff;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .ptb100 {
    padding-top: 1.2rem;
    padding-bottom: 1.2em;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .pt100 {
    padding-top: 1.2rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .pb100 {
    padding-bottom: 1.2rem;
  }
}
.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: #0068ff;
}
.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.8s;
}
.public-img > video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.8s;
}
.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;
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 1rem;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 1.2rem;
  }
}
/*顶部*/
#c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1rem;
  text-align: center;
  color: #fff;
  transition: 0.4s;
}
@media (max-width: 991px) {
  #c-header {
    line-height: 1.2rem;
  }
}
#c-header a {
  color: #fff;
  transition: 0.4s;
}
#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.1rem;
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -1.2rem;
  }
}
#c-header.c-style2 {
  color: #333;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#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 {
  height: 0.56rem;
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img {
    height: 0.6rem;
  }
}
#c-header .c-logo .c-img-box img:nth-child(2) {
  display: none;
}
#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;
  }
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(1) {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(2) {
  display: inline-block;
}
/*顶部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.3rem;
}
#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 img,
#c-header .c-nav > li > .c-title-box svg {
  margin-left: 0.05rem;
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: all 0.4s;
}
#c-header .c-nav > li a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0068ff;
  transition: 0.4s;
}
#c-header .c-nav li a {
  position: relative;
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#c-header .c-nav ul {
  position: absolute;
  top: 99%;
  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%);
  border-radius: 0 0 10px 10px;
}
#c-header .c-nav ul li:last-child a::before {
  display: none;
}
#c-header .c-nav ul li a {
  padding: 0 20px;
  color: #333;
}
#c-header .c-nav ul li a::before {
  bottom: 0;
  width: calc(100% - 40px) !important;
  left: 20px !important;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
#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: #0068ff;
}
#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 {
  left: 0;
  width: 100%;
}
#c-header.c-style2 .c-nav li.on > .c-title-box svg,
#c-header .c-nav li:hover > .c-title-box svg {
  color: #0068ff;
}
/*顶部移动端导航*/
#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.4s;
  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.4s;
}
#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.4s;
  transition: all 0.4s;
}
#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
  color: #0068ff;
}
#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: #fff;
  transition: all 0.4s;
}
#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 form {
  padding-left: 0.6rem;
  position: relative;
  cursor: pointer;
}
#c-header .c-gn form img,
#c-header .c-gn form svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
  vertical-align: middle;
}
@media (max-width: 991px) {
  #c-header .c-gn form img,
  #c-header .c-gn form svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
#c-header .c-gn form:hover > svg {
  color: #0068ff;
}
#c-header .c-gn form .c-box {
  position: absolute;
  top: 106%;
  right: 0;
  display: none;
  width: 280px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#c-header .c-gn form .c-box input {
  float: left;
  padding: 0 0.15rem;
  width: -webkit-calc(30%);
  width: calc(100% - 70px);
  height: 50px;
}
#c-header .c-gn form .c-box button {
  float: left;
  width: 70px;
  height: 50px;
  color: #fff;
  background: #0068ff;
  cursor: pointer;
}
#c-header .c-gn .c-phone {
  display: flex;
  align-items: center;
}
#c-header .c-gn .c-phone img,
#c-header .c-gn .c-phone svg {
  margin: 0 0.1rem 0 0.3rem;
  width: 20px;
  height: 20px;
}
#c-header .c-gn .c-phone span {
  font-weight: bold;
}
#c-header.c-style2 .c-gn .c-phone svg {
  color: #0068ff;
}
#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: #0068ff;
  cursor: pointer;
}
@media (max-width: 767px) {
  #c-go-top {
    display: none !important;
  }
}
#c-go-top img,
#c-go-top svg {
  width: 50%;
  height: 50%;
  color: #fff;
  transform: rotate(-90deg);
}
#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.4s;
  color: #333;
}
#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:hover {
  color: #fff;
  background-color: #0068ff;
}
#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;
}
/* 底部 */
#c-footer {
  color: #fff;
}
#c-footer a {
  color: #a9a9a9;
  transition: 0.4s;
}
#c-footer a:hover {
  color: #0068ff;
}
#c-footer .c-top-box {
  padding: 0.8rem 0;
  background: #333;
}
@media (max-width: 767px) {
  #c-footer .c-top-box {
    padding: 1rem 0 1.2rem;
  }
}
#c-footer .c-top-box .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
#c-footer .c-top-box .container .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.4rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-title-box {
    padding: 0.3rem 0;
    border-bottom: 1px solid #666;
  }
}
#c-footer .c-top-box .container .c-title-box .c-title {
  color: #fff;
}
#c-footer .c-top-box .container .c-title-box a {
  color: #fff;
}
#c-footer .c-top-box .container .c-title-box a:hover {
  color: #0068ff;
}
#c-footer .c-top-box .container .c-title-box img,
#c-footer .c-top-box .container .c-title-box svg {
  display: none;
  transition: 0.4s;
  width: 0.3rem;
  height: 0.3rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-title-box img,
  #c-footer .c-top-box .container .c-title-box svg {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list {
    padding-top: 0.2rem;
    display: none;
  }
}
#c-footer .c-top-box .container .c-list-box .c-list li {
  padding-bottom: 0.1rem;
}
#c-footer .c-top-box .container .c-list-box .c-list li:last-child {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list li:last-child {
    padding-bottom: 0.2rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list li {
    padding-bottom: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-list-box.on .c-title-box img,
#c-footer .c-top-box .container .c-list-box.on .c-title-box svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box.on .c-title-box img,
  #c-footer .c-top-box .container .c-list-box.on .c-title-box svg {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-box {
    padding-top: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-text-box p {
  padding-bottom: 0.1rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-box p {
    padding-bottom: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-ico {
  display: flex;
  align-items: center;
}
#c-footer .c-top-box .container .c-ico a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: #33444f;
  transition: 0.4s;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-ico a {
    width: 0.6rem;
    height: 0.6rem;
  }
}
#c-footer .c-top-box .container .c-ico a img,
#c-footer .c-top-box .container .c-ico a svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-ico a img,
  #c-footer .c-top-box .container .c-ico a svg {
    width: 0.3rem;
    height: 0.3rem;
  }
}
#c-footer .c-top-box .container .c-ico a:hover {
  background: #0068ff;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-wrap {
    width: 100%;
    padding-top: 0.4rem;
  }
}
#c-footer .c-bottom-box {
  padding: 0.25rem 0;
  border-top: 1px solid #999;
  color: #7f7f7f;
  background: #333;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box {
    padding: 0.6rem 0;
  }
}
#c-footer .c-bottom-box .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#c-footer .c-bottom-box .container a {
  color: #7f7f7f;
}
#c-footer .c-bottom-box .container a:hover {
  color: #0068ff;
}
#c-footer .c-bottom-box .container .c-copyright {
  word-wrap: break-word;
  word-break: break-all;
}
/*首页内容1*/
.c-home1 .swiper-slide {
  overflow: hidden;
}
.c-home1 .swiper-slide .c-img {
  width: 100%;
  height: 100%;
}
.c-home1 .swiper-slide .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-slide .c-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-button-next,
.c-home1 .swiper-button-prev {
  margin-top: -0.2rem;
  width: 0.6rem;
  height: 0.6rem;
  opacity: 0.2;
  transition: 0.4s;
  right: 0.6rem;
  background: transparent;
}
@media (max-width: 991px) {
  .c-home1 .swiper-button-next,
  .c-home1 .swiper-button-prev {
    display: none;
  }
}
.c-home1 .swiper-button-next::after,
.c-home1 .swiper-button-prev::after {
  display: none;
}
.c-home1 .swiper-button-next img,
.c-home1 .swiper-button-prev img,
.c-home1 .swiper-button-next svg,
.c-home1 .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  color: #fff;
}
.c-home1 .swiper-button-prev {
  left: 0.6rem;
  transform: rotate(180deg);
}
.c-home1 .swiper-button-next:hover,
.c-home1 .swiper-button-prev:hover {
  opacity: 1;
}
.c-home1 .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 0.4rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination {
    bottom: 0.6rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
  width: 0.6rem;
  height: 3px;
  vertical-align: top;
  margin: 0 0.1rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination .swiper-pagination-bullet {
    margin: 0 0.1rem;
    width: 0.3rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet div {
  height: 100%;
  background: #0068ff;
  width: 0%;
  transition-delay: 0s;
  transition-timing-function: linear;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active div {
  width: 100%;
}
/* 自己的公共样式 */
/*过渡*/
.img_hover img {
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  /* Firefox 4 */
  -webkit-transition: all 0.8s;
  /* Safari 和 Chrome */
  -o-transition: all 0.8s;
  /* Opera */
}
.pro_show_js_con * {
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  /* Firefox 4 */
  -webkit-transition: all 0.4s;
  /* Safari 和 Chrome */
  -o-transition: all 0.4s;
  /* Opera */
}
/*延迟*/
.sy_t_box:nth-child(2),
.xinw_nr_box:nth-child(2) {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(3),
.xinw_nr_box:nth-child(3) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(4),
.xinw_nr_box:nth-child(4) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(5) {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(6) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  /* Safari 和 Chrome */
}
.team_box:hover {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.wow_up {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* 普通移入效果 */
.mov_08 {
  transition: all 0.4s;
}
.mov_08:hover {
  opacity: 0.8;
}
/* 粘性布局调整 */
.sticky_top {
  top: 0 !important;
}
@media screen and (max-width: 1440px) {
  .sticky_top {
    top: 60px;
  }
}
/* 移入图片切换 */
.img_qh .img2 {
  display: none;
}
.img_qh:hover .img1 {
  display: none;
}
.img_qh:hover .img2 {
  display: block;
}
/* pc和移动端的隐藏显示 */
.xs,
.xs2 {
  display: block;
}
.yc,
.yc2 {
  display: none;
}
@media (max-width: 767px) {
  .xs,
  .xs2 {
    display: none;
  }
  .yc,
  .yc2 {
    display: block;
  }
}
.g_xs {
  display: block;
}
.g_yc {
  display: none;
}
@media (max-width: 767px) {
  .g_xs {
    display: none;
  }
  .g_yc {
    display: block;
  }
}
/* 图片移入效果 */
.img_hover:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
/* 使用swiper 出现闪屏问题 */
.swiper-slide {
  transform: translate3d(0, 0, 0);
  /* overflow: hidden; */
}
/* banner中间小图标 */
.banner_sb {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.5rem;
  width: 18px;
  height: auto;
  z-index: 100;
  object-fit: contain;
  animation: moveh 3s infinite linear;
  -webkit-animation: moveh 3s infinite linear;
}
@keyframes moveh {
  0% {
    bottom: 0.5rem;
  }
  50% {
    bottom: 0.3rem;
  }
  100% {
    bottom: 0.5rem;
  }
}
/* 子页面分隔 */
.gw {
  height: 80px;
  width: 100%;
  background: #fff;
}
.gw.on {
  height: 81px;
}
@media screen and (max-width: 1440px) {
  .gw {
    height: 60px;
  }
  .gw.on {
    height: 61px;
  }
}
.ceshi {
  -webkit-animation-name: fadeInRightSm;
  animation-name: fadeInRightSm;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  animation-delay: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.font14 {
  font-size: 14px;
}
.font16 {
  font-size: 16px;
}
.font18 {
  font-size: 18px;
}
.font20 {
  font-size: 20px;
}
.font22 {
  font-size: 22px;
}
.font24 {
  font-size: 24px;
}
.font26 {
  font-size: 26px;
}
.font28 {
  font-size: 28px;
}
.font30 {
  font-size: 30px;
}
.font32 {
  font-size: 32px;
}
.font34 {
  font-size: 34px;
}
.font36 {
  font-size: 36px;
}
.font38 {
  font-size: 38px;
}
.font40 {
  font-size: 40px;
}
.font42 {
  font-size: 42px;
}
.font44 {
  font-size: 44px;
}
.font46 {
  font-size: 46px;
}
.font48 {
  font-size: 48px;
}
.font50 {
  font-size: 50px;
}
.font52 {
  font-size: 52px;
}
.font54 {
  font-size: 54px;
}
.font56 {
  font-size: 56px;
}
.font60 {
  font-size: 60px;
}
.font80 {
  font-size: 80px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20 {
    font-size: 18px;
  }
  .font22 {
    font-size: 20px;
  }
  .font24 {
    font-size: 22px;
  }
  .font26 {
    font-size: 24px;
  }
  .font28 {
    font-size: 26px;
  }
  .font30 {
    font-size: 28px;
  }
  .font32 {
    font-size: 30px;
  }
  .font34 {
    font-size: 32px;
  }
  .font36 {
    font-size: 34px;
  }
  .font38 {
    font-size: 36px;
  }
  .font40 {
    font-size: 38px;
  }
  .font42,
  .font44 {
    font-size: 40px;
  }
  .font46 {
    font-size: 42px;
  }
  .font48 {
    font-size: 44px;
  }
  .font50 {
    font-size: 46px;
  }
  .font52 {
    font-size: 48px;
  }
  .font54 {
    font-size: 50px;
  }
  .font56 {
    font-size: 52px;
  }
  .font60,
  .font80 {
    font-size: 56px;
  }
}
@media (max-width: 1260px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20 {
    font-size: 18px;
  }
  .font22 {
    font-size: 20px;
  }
  .font24 {
    font-size: 22px;
  }
  .font26 {
    font-size: 24px;
  }
  .font28 {
    font-size: 24px;
  }
  .font30 {
    font-size: 26px;
  }
  .font32 {
    font-size: 28px;
  }
  .font34 {
    font-size: 28px;
  }
  .font36,
  .font38,
  .font40 {
    font-size: 30px;
  }
  .font42,
  .font44 {
    font-size: 32px;
  }
  .font46 {
    font-size: 36px;
  }
  .font48,
  .font50,
  .font52,
  .font54,
  .font56 {
    font-size: 38px;
  }
  .font60,
  .font80 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .font14,
  .font16 {
    font-size: 0.28rem;
  }
  .font18,
  .font20 {
    font-size: 0.3rem;
  }
  .font22,
  .font24,
  .font26,
  .font28 {
    font-size: 0.32rem;
  }
  .font30,
  .font32,
  .font34 {
    font-size: 0.34rem;
  }
  .font36,
  .font38,
  .font40 {
    font-size: 0.4rem;
  }
  .font42,
  .font44,
  .font46 {
    font-size: 0.46rem;
  }
  .font48,
  .font50,
  .font52,
  .font54,
  .font56,
  .font60,
  .font80 {
    font-size: 0.48rem;
  }
}
/*延迟*/
.yanchi1 {
  animation-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
  /* Safari 和 Chrome */
}
.yanchi2 {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}
.yanchi3 {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}
.yanchi4 {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}
.yanchi5 {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}
.yanchi6 {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}
.yanchi7 {
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
}
.yanchi8 {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}
.yanchi9 {
  animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
}
.yanchi10 {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}
.yanchi11 {
  animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
}
.yanchi12 {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}
.yanchi13 {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
}
.yanchi14 {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
}
.yanchi15 {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}
.yanchi16 {
  animation-delay: 1.6s;
  -webkit-animation-delay: 1.6s;
}
.yanchi17 {
  animation-delay: 1.7s;
  -webkit-animation-delay: 1.7s;
}
.yanchi18 {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}
.yanchi19 {
  animation-delay: 1.9s;
  -webkit-animation-delay: 1.9s;
}
.yanchi20 {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}
/* 缓动效果 */
@-webkit-keyframes slideInUp200 {
  from {
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp200 {
  from {
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp200 {
  -webkit-animation-name: slideInUp200;
  animation-name: slideInUp200;
}
@-webkit-keyframes slideInUp100 {
  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp100 {
  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp100 {
  -webkit-animation-name: slideInUp100;
  animation-name: slideInUp100;
}
@-webkit-keyframes slideInUp50 {
  from {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp50 {
  from {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp50 {
  -webkit-animation-name: slideInUp50;
  animation-name: slideInUp50;
}
@-webkit-keyframes slideInUp40 {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp40 {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp40 {
  -webkit-animation-name: slideInUp40;
  animation-name: slideInUp40;
}
@-webkit-keyframes slideInUp30 {
  from {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp30 {
  from {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp30 {
  -webkit-animation-name: slideInUp30;
  animation-name: slideInUp30;
}
@-webkit-keyframes slideInUp20 {
  from {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp20 {
  from {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp20 {
  -webkit-animation-name: slideInUp20;
  animation-name: slideInUp20;
}
@keyframes fadeInDown20 {
  from {
    opacity: 0;
    transform: translate3d(0%, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown20 {
  animation-name: fadeInDown20;
}
.ptb140 {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ptb120 {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.ptb110 {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.ptb90 {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.ptb80 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ptb60 {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 767px) {
  .ptb140 {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .ptb120 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .ptb110 {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
  .ptb100 {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .ptb90 {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .ptb80 {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
}
/* 导航设置 */
/* 默认导航栏颜色 */
/* 默认字体颜色 */
/* 默认svg颜色 */
/* 移入导航栏颜色 */
/* 移入导航栏字体和svg颜色 */
/* 移入文字字体和svg颜色 */
/* 移入文字下划线颜色 */
/* 子页面导航栏颜色 show_nav */
/* 子页面字体颜色 */
/* 子页面svg颜色 */
/* 导航 */
nav {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  background: none;
  /* border-bottom: 1px solid rgba(222,229,236,0.5); */
  /* show_nav 子页面导航class */
  /* nav_on 导航不在顶部后移入加上移除去掉的class */
  /* nav_on2 导航不在顶部后固定的class */
  /* 搜索下拉 */
}
@media (max-width: 1260px) {
  nav {
    background: #fff;
  }
}
nav.show_nav {
  background: #fff;
}
nav.show_nav .nav_top {
  background: none;
}
@media (max-width: 1260px) {
  nav.show_nav .nav_top {
    background: #0068ff;
  }
}
@media (max-width: 1260px) {
  nav.show_nav .xs {
    display: block;
  }
}
@media (max-width: 1260px) {
  nav.show_nav .yc {
    display: none;
  }
}
nav.show_nav svg path {
  fill: #333 !important;
}
@media (max-width: 1260px) {
  nav.show_nav svg path {
    fill: #333 !important;
  }
}
nav.show_nav .nav_ljbox .nav_l_box .logo .xs {
  display: none;
}
nav.show_nav .nav_ljbox .nav_l_box .logo .yc {
  display: block;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  color: #333 !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path {
  fill: #333 !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p {
  color: #0068ff !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after {
  background: #0068ff !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path {
  fill: #0068ff !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box {
  /* 语言 */
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn {
  border-color: #fff;
}
@media (max-width: 1260px) {
  nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn {
    border-color: #0068ff;
  }
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn p {
  color: #fff;
}
@media (max-width: 1260px) {
  nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn p {
    color: #0068ff;
  }
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
  color: #333 !important;
}
nav.nav_on,
nav.nav_on2 {
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.05);
  background: #fff !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg path,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg path {
  fill: #333;
}
nav.nav_on svg path,
nav.nav_on2 svg path {
  fill: #333;
}
nav.nav_on .nav_top,
nav.nav_on2 .nav_top {
  background: #0068ff;
}
nav.nav_on .nav_ljbox .nav_l_box .logo .xs,
nav.nav_on2 .nav_ljbox .nav_l_box .logo .xs {
  display: none;
}
nav.nav_on .nav_ljbox .nav_l_box .logo .yc,
nav.nav_on2 .nav_ljbox .nav_l_box .logo .yc {
  display: block;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
  color: #333 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  color: #333 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path {
  fill: #333 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p {
  color: #0068ff !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after {
  background: #0068ff !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path {
  fill: #0068ff !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box {
  /* 语言 */
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn {
  border-color: #0068ff;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn p {
  color: #0068ff;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
  color: #333;
}
@media (max-width: 1260px) {
  nav.nav_on #g-header .c-switch i,
  nav.nav_on2 #g-header .c-switch i {
    background: #333;
  }
}
nav .nav_top {
  transition: all 0.4s;
  background: #0068ff;
  height: 40px;
}
nav .nav_top .container {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav .nav_top .container a {
  color: #fff;
  margin-left: 0.4rem;
}
nav .nav_ljbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 80px;
  margin: auto;
  /* logo */
  /* 导航右侧 */
}
@media screen and (max-width: 1440px) {
  nav .nav_ljbox {
    height: 60px;
  }
}
@media (max-width: 1260px) {
  nav .nav_ljbox {
    width: 100%;
    padding: 0 5%;
  }
}
nav .nav_ljbox .nav_l_box .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_l_box .logo .xs {
    display: none;
  }
  nav .nav_ljbox .nav_l_box .logo .yc {
    display: block;
  }
}
nav .nav_ljbox .nav_l_box .logo img {
  width: 1.8rem;
  height: auto;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .logo img {
    width: 2.4rem;
  }
}
nav .nav_ljbox .nav_l_box .logo p {
  color: #333;
  margin-left: 20px;
  padding-left: 15px;
  border-left: 1px solid #01c390;
  width: 2.2rem;
  line-height: 1;
}
@media (max-width: 1580px) {
  nav .nav_ljbox .nav_l_box .logo p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .logo p {
    width: auto;
    padding-left: 10px;
    margin-left: 10px;
    font-size: 12px;
  }
}
nav .nav_ljbox .nav_r_box {
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box {
    display: flex;
  }
}
nav .nav_ljbox .nav_r_box .nav_r {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  /* 导航右边内容 */
}
nav .nav_ljbox .nav_r_box .nav_r .navbox {
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul {
  display: flex;
  align-items: center;
  height: 100%;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li {
  height: 100%;
  position: relative;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on2 {
  position: initial;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p {
  color: #0068ff !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p::after {
  width: 0.3rem;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a svg path {
  fill: #0068ff !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .xs,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .xs {
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .yc,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .yc {
  display: block;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .img1,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .img1 {
  display: none !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .img2,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .img2 {
  display: block !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
  color: #fff;
  margin: 0 0.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
    margin: 0 0.1rem;
    color: #333;
  }
}
@media (max-width: 991px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
    font-size: 12px;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > svg {
  width: 6px;
  height: auto;
  position: absolute;
  right: -11px;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > img {
  width: 8px;
  height: auto;
  margin-left: 10px;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a .img2 {
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  left: 50%;
  background: #0068ff;
  transform: translateX(-50%);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box {
  height: 100%;
  display: flex;
  align-items: center;
  /* 语言 */
  /* 搜索 */
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl {
  margin: 0 0.43rem 0 0.73rem;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan {
  margin-left: 3.35rem;
  height: 100%;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg path {
  fill: #fff;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg path {
    fill: #333;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box {
  display: flex;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
  color: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg {
  flex-shrink: 0;
  width: 6px;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.05);
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box {
  width: 100%;
  height: 100%;
  padding: 0.05rem 0.2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a {
  margin: 3px 0;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a:hover {
  color: #0068ff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search {
  position: relative;
  /* background: #fff; */
  /* border-radius: 5px; */
  padding: 0 0 0 0.22rem;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 12px;
  background: #a7a9ab;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_a {
  display: flex;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_a svg {
  width: 15px;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_a svg path {
  fill: #333;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form button {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form button svg {
  margin-right: 0.1rem;
  width: 15px;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form button svg path {
  fill: #999;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form input {
  width: 100%;
}
nav .g_navsearch {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  color: #222222;
  display: none;
}
nav .g_navsearch .container {
  padding: 0.6rem 0 1rem;
  position: relative;
}
@media (max-width: 767px) {
  nav .g_navsearch .container {
    padding-bottom: 0.6rem;
  }
}
nav .g_navsearch .f_close {
  position: absolute;
  right: 0.8rem;
  top: 0.96rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_close {
    right: 0;
    top: 0.3rem;
    width: 16px;
    height: 16px;
  }
}
nav .g_navsearch .f_close img {
  width: 100%;
  float: left;
}
nav .g_navsearch .f_close img:nth-child(2) {
  display: none;
}
nav .g_navsearch .f_close svg {
  width: 100%;
  height: auto;
  max-height: 100%;
}
nav .g_navsearch .f_close svg path {
  fill: #808080;
}
nav .g_navsearch .f_close:hover {
  transform: rotate(90deg);
}
nav .g_navsearch .f_cont {
  max-width: 1000px;
  margin: 0 auto;
}
nav .g_navsearch .f_cont .fz_title {
  margin-bottom: 1.36rem;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .fz_title {
    margin-bottom: 0.6rem;
  }
}
nav .g_navsearch .f_cont .f_form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.2rem;
  margin-bottom: 0.36rem;
  border-bottom: 1px solid rgba(194, 194, 194, 0.15);
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .f_form {
    padding-bottom: 0.3rem;
  }
}
nav .g_navsearch .f_cont .f_form input {
  width: calc(100% - 26px);
  padding-right: 0.26rem;
  padding-left: 10px;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .f_form input {
    width: calc(100% - 0.36rem);
  }
}
nav .g_navsearch .f_cont .f_form input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #555555;
}
nav .g_navsearch .f_cont .f_form input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555555;
}
nav .g_navsearch .f_cont .f_form input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #555555;
}
nav .g_navsearch .f_cont .f_form .f_sub {
  overflow: hidden;
  width: 26px;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .f_form .f_sub {
    width: 0.36rem;
  }
}
nav .g_navsearch .f_cont .f_form .f_sub img {
  float: left;
  width: 100%;
}
nav .g_navsearch .f_cont .f_form .f_sub svg {
  width: 100%;
}
nav .g_navsearch .f_cont .f_form .f_sub svg path {
  fill: #444444;
}
nav .g_navsearch .f_cont .f_form .f_sub:hover svg path {
  fill: #0068ff;
}
nav .g_navsearch .f_cont .f_jut {
  display: flex;
  line-height: 24px;
  align-items: flex-start;
  line-height: 36px;
}
@media (max-width: 1580px) {
  nav .g_navsearch .f_cont .f_jut {
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  nav .g_navsearch .f_cont .f_jut {
    line-height: 26px;
  }
}
nav .g_navsearch .f_cont .f_jut .name {
  fill: 0 0 auto;
  margin-top: 1px;
  display: block;
  padding-right: 0.2rem;
}
nav .g_navsearch .f_cont .f_jut .f_list {
  fill: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
}
nav .g_navsearch .f_cont .f_jut .f_list .li {
  margin-bottom: 10px;
  color: #555555;
  background-color: #f1f1f1;
  border-radius: 18px;
  display: block;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  padding: 0 0.22rem;
  margin-right: 0.16rem;
}
@media (max-width: 1580px) {
  nav .g_navsearch .f_cont .f_jut .f_list .li {
    border-radius: 16px;
  }
}
@media (max-width: 991px) {
  nav .g_navsearch .f_cont .f_jut .f_list .li {
    border-radius: 13px;
  }
}
nav .g_navsearch .f_cont .f_jut .f_list .li:hover {
  color: #ffffff;
  background-color: #0068ff;
}
/* 导航各种效果 */
/* .nav1_none{top: -100px !important;} */
/* .nav2_none{top: 100px !important;} */
@media (max-width: 1440px) {
  /* .nav1_none{top: -60px !important;} */
  /* .nav2_none{top: 60px !important;} */
}
/* 下拉导航 */
.pro_nav4 {
  position: absolute;
  top: 100%;
  left: -2rem;
  z-index: 1000;
  background: #f8f8f8;
  box-shadow: 0 6px 29px rgba(211, 211, 211, 0.08);
  display: none;
  width: 8.67rem;
}
.pro_nav4 .proxl_box {
  display: flex;
  justify-content: space-between;
}
.pro_nav4 .proxl_box .proxl_l {
  width: 53.40253749%;
  background: #fff;
}
.pro_nav4 .proxl_box .proxl_l .proxl_con {
  /* padding: 0.4rem 0.2rem 0 0.6rem; */
  /* h3{
					margin-bottom: 0.35rem;
					color: #021d49;
					font-weight: bold;
				}
				.proxl_r_a{
					
					.proxl_r_item{
						margin-bottom: 0.25rem;
						display: flex;
						align-items: center;
						&:hover{
							p{
								text-decoration: underline;
								color: @color1;
							}
							i{
								transform: translateX(5px);
								svg path{
									fill: @color1 !important;
								}
							}
						}
						p{
							color: #8d959a;
							transition: all 0.4s;
						}
						i{
							transition: all 0.4s;
							margin-left: 0.19rem;
							flex-shrink: 0;
							display: flex;
							width: 7px;
							height: auto;
							svg,img{
								width: 100%;
								height: auto;
								path{
									fill: #8d959a !important;
									transition: all 0.4s;
								}
							}
						}
					}
				} */
}
.pro_nav4 .proxl_box .proxl_l .proxl_con a {
  display: block;
  padding: 0.38rem 0.58rem 0.3rem;
}
.pro_nav4 .proxl_box .proxl_l .proxl_con a h3 {
  font-weight: bold;
  color: #021d49;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.pro_nav4 .proxl_box .proxl_l .proxl_con a .public-img {
  margin-top: 0.15rem;
}
.pro_nav4 .proxl_box .proxl_l .proxl_con a .public-img:before {
  padding-top: 56.39534884%;
}
.pro_nav4 .proxl_box .proxl_l .proxl_con a > p {
  color: #8d959a;
  opacity: 0.85;
  line-height: 1.7;
  margin-top: 0.08rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 5.1em;
}
.pro_nav4 .proxl_box .proxl_l .proxl_con a .pub_btn {
  margin-top: 0.2rem;
}
.pro_nav4 .proxl_box .proxl_l .proxl_more {
  background: #0068ff;
  padding: 0 0.2rem 0 0.55rem;
  height: 0.46rem;
  display: flex;
  align-items: center;
  transition: all 0.4s;
}
.pro_nav4 .proxl_box .proxl_l .proxl_more:hover i {
  transform: translateX(5px);
}
.pro_nav4 .proxl_box .proxl_l .proxl_more p {
  color: #fff;
}
.pro_nav4 .proxl_box .proxl_l .proxl_more i {
  transition: all 0.4s;
  margin-left: 0.19rem;
  flex-shrink: 0;
  display: flex;
  width: 7px;
  height: auto;
}
.pro_nav4 .proxl_box .proxl_l .proxl_more i svg,
.pro_nav4 .proxl_box .proxl_l .proxl_more i img {
  width: 100%;
  height: auto;
}
.pro_nav4 .proxl_box .proxl_l .proxl_more i svg path,
.pro_nav4 .proxl_box .proxl_l .proxl_more i img path {
  fill: #fff !important;
}
.pro_nav4 .proxl_box .proxl_r {
  width: 46.59746251%;
  padding: 0.4rem 0.5rem 0.4rem 0.6rem;
}
.pro_nav4 .proxl_box .proxl_r h3 {
  margin-bottom: 0.35rem;
  color: #021d49;
  font-weight: bold;
}
.pro_nav4 .proxl_box .proxl_r .proxl_r_a .proxl_r_item {
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
}
.pro_nav4 .proxl_box .proxl_r .proxl_r_a .proxl_r_item:hover p {
  text-decoration: underline;
  color: #0068ff;
}
.pro_nav4 .proxl_box .proxl_r .proxl_r_a .proxl_r_item:hover i {
  transform: translateX(5px);
}
.pro_nav4 .proxl_box .proxl_r .proxl_r_a .proxl_r_item:hover i svg path {
  fill: #0068ff !important;
}
.pro_nav4 .proxl_box .proxl_r .proxl_r_a .proxl_r_item p {
  color: #444;
  transition: all 0.4s;
}
.pro_nav4 .proxl_box .proxl_r .proxl_r_a .proxl_r_item i {
  transition: all 0.4s;
  margin-left: 0.19rem;
  flex-shrink: 0;
  display: flex;
  width: 7px;
  height: auto;
}
.pro_nav4 .proxl_box .proxl_r .proxl_r_a .proxl_r_item i svg,
.pro_nav4 .proxl_box .proxl_r .proxl_r_a .proxl_r_item i img {
  width: 100%;
  height: auto;
}
.pro_nav4 .proxl_box .proxl_r .proxl_r_a .proxl_r_item i svg path,
.pro_nav4 .proxl_box .proxl_r .proxl_r_a .proxl_r_item i img path {
  fill: #8d959a !important;
  transition: all 0.4s;
}
.pro_nav2 {
  position: absolute;
  top: 100%;
  left: 0.25rem;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 6px 29px rgba(211, 211, 211, 0.08);
  display: none;
  width: auto;
  white-space: nowrap;
}
.pro_nav2 .pro_nav2_one {
  position: relative;
}
.pro_nav2 .pro_nav2_one:hover .pro_nav2_a {
  background: #f1f4fb;
}
.pro_nav2 .pro_nav2_one:hover .pro_nav2_a p {
  text-decoration: underline;
  color: #0068ff;
}
.pro_nav2 .pro_nav2_one:hover .pro_nav2_a i svg path {
  fill: #0068ff;
}
.pro_nav2 .pro_nav2_one:hover .pro_nav2_two {
  top: 0;
  opacity: 1;
  pointer-events: initial;
}
.pro_nav2 .pro_nav2_one .pro_nav2_a {
  min-height: 0.54rem;
  padding: 0 0.2rem 0 0.38rem;
  display: flex;
  align-items: center;
  transition: all 0.4s;
}
.pro_nav2 .pro_nav2_one .pro_nav2_a p {
  color: #444;
  transition: all 0.4s;
}
.pro_nav2 .pro_nav2_one .pro_nav2_a i {
  transition: all 0.4s;
  margin-left: 0.19rem;
  flex-shrink: 0;
  display: flex;
  width: 7px;
  height: auto;
}
.pro_nav2 .pro_nav2_one .pro_nav2_a i svg,
.pro_nav2 .pro_nav2_one .pro_nav2_a i img {
  width: 100%;
  height: auto;
}
.pro_nav2 .pro_nav2_one .pro_nav2_a i svg path,
.pro_nav2 .pro_nav2_one .pro_nav2_a i img path {
  fill: #8d959a;
  transition: all 0.4s;
}
.pro_nav2 .pro_nav2_one .pro_nav2_two {
  opacity: 0;
  transition: all 0.4s;
  pointer-events: none;
  background: #fff;
  position: absolute;
  left: 100%;
  top: 0.4rem;
}
.pro_nav2 .pro_nav2_one .pro_nav2_two a {
  color: #8d959a;
  display: flex;
  align-items: center;
  min-height: 0.54rem;
  padding: 0 0.3rem;
}
.pro_nav3 {
  display: none;
  position: absolute;
  width: 100%;
  top: calc(100%);
  left: 0;
  background: #fff;
}
.pro_nav3 .pro_nav3_box {
  padding: 0.38rem 0 0.34rem;
  display: flex;
  justify-content: space-between;
}
.pro_nav3 .pro_nav3_box .gl {
  width: 75.41666667%;
  display: flex;
  justify-content: space-between;
}
.pro_nav3 .pro_nav3_box .gl .item {
  width: calc((100% - 2.88rem)/5);
}
.pro_nav3 .pro_nav3_box .gl .item .g_tit {
  margin-bottom: 0.22rem;
  padding-bottom: 0.14rem;
  border-bottom: 1px solid #f1f4fb;
}
.pro_nav3 .pro_nav3_box .gl .item .g_tit p {
  color: #021d49;
  font-weight: bold;
}
.pro_nav3 .pro_nav3_box .gl .item .pro_nav3_a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pro_nav3 .pro_nav3_box .gl .item .pro_nav3_a .pro_nav3_a_box {
  margin-bottom: 0.24rem;
  position: relative;
  padding-right: 0.38rem;
}
.pro_nav3 .pro_nav3_box .gl .item .pro_nav3_a .pro_nav3_a_box:hover p {
  color: #0068ff;
  text-decoration: underline;
}
.pro_nav3 .pro_nav3_box .gl .item .pro_nav3_a .pro_nav3_a_box:hover i svg path {
  fill: #0068ff !important;
}
.pro_nav3 .pro_nav3_box .gl .item .pro_nav3_a .pro_nav3_a_box p {
  transition: all 0.4s;
  color: #444;
  /* display: inline-block; */
}
.pro_nav3 .pro_nav3_box .gl .item .pro_nav3_a .pro_nav3_a_box i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: all 0.4s;
  margin-left: 0.19rem;
  flex-shrink: 0;
  display: flex;
  width: 7px;
  height: auto;
}
.pro_nav3 .pro_nav3_box .gl .item .pro_nav3_a .pro_nav3_a_box i svg,
.pro_nav3 .pro_nav3_box .gl .item .pro_nav3_a .pro_nav3_a_box i img {
  width: 100%;
  height: auto;
}
.pro_nav3 .pro_nav3_box .gl .item .pro_nav3_a .pro_nav3_a_box i svg path,
.pro_nav3 .pro_nav3_box .gl .item .pro_nav3_a .pro_nav3_a_box i img path {
  transition: all 0.4s;
  fill: #929a9e !important;
}
.pro_nav3 .pro_nav3_box .gr {
  width: 20.83333333%;
}
.pro_nav3 .pro_nav3_box .gr a:hover .public-img img {
  transform: scale(1.05);
}
.pro_nav3 .pro_nav3_box .gr a:hover .txt h3 {
  color: #0068ff !important;
}
.pro_nav3 .pro_nav3_box .gr a .public-img {
  margin-bottom: 0.1rem;
}
.pro_nav3 .pro_nav3_box .gr a .public-img:before {
  padding-top: 56.33333333%;
}
/* 移动端导航 */
#g-header {
  display: none;
}
@media (max-width: 1260px) {
  #g-header {
    display: flex;
    width: 50px;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    margin-right: -1rem;
    padding-right: 1rem;
    box-sizing: content-box;
  }
}
#g-header .c-nav2 {
  position: absolute;
  right: -100%;
  left: auto;
  width: 100%;
  top: 100px;
  height: calc(var(--vh) - 100px);
  font-size: 14px;
  line-height: 50px;
  background: #F1F1F1;
  overflow-y: auto;
  transition: all 0.8s;
  text-align: left;
}
@media (max-width: 1260px) {
  #g-header .c-nav2 {
    height: calc(var(--vh) - 60px);
    top: 60px;
  }
}
#g-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#g-header .c-nav2 li {
  padding: 0 0.5rem;
  border-top: 1px solid #fff;
}
#g-header .c-nav2 li.on img,
#g-header .c-nav2 li.on svg {
  transform: rotate(0deg) !important;
}
@media (max-width: 767px) {
  #g-header .c-nav2 li {
    padding: 0 0.5rem;
  }
}
#g-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#g-header .c-nav2 li .c-title-box img,
#g-header .c-nav2 li .c-title-box svg {
  transform: rotate(-90deg);
  width: 0.3rem;
  height: auto;
  transition: all 0.3s;
  margin: 0 0 0 10px;
  float: right;
  display: block;
}
@media (max-width: 1260px) {
  #g-header .c-nav2 li .c-title-box img,
  #g-header .c-nav2 li .c-title-box svg {
    width: 12px;
    height: auto;
  }
}
@media (max-width: 767px) {
  #g-header .c-nav2 li .c-title-box img,
  #g-header .c-nav2 li .c-title-box svg {
    width: 9px;
  }
}
#g-header .c-nav2 li .c-title-box img path,
#g-header .c-nav2 li .c-title-box svg path {
  fill: #333;
}
#g-header .c-nav2 li a {
  color: #333;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: block;
}
#g-header .c-nav2 li a i {
  font-size: 20px;
}
#g-header .c-nav2 li a:hover,
#g-header .c-nav2 li.on > a {
  color: #0068ff;
}
#g-header .c-nav2 li ul {
  display: none;
}
#g-header .c-switch {
  position: relative;
  width: 24px;
  height: 22px;
  cursor: pointer;
}
@media (max-width: 991px) {
  #g-header .c-switch {
    display: block;
  }
}
#g-header .c-switch i {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 1260px) {
  #g-header .c-switch i {
    background: #333;
  }
}
#g-header .c-switch i:nth-child(1) {
  top: 0;
}
#g-header .c-switch i:nth-child(2) {
  width: 18px;
  top: 50%;
}
#g-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#g-header .c-switch i .c-title-box img {
  width: 10px;
  height: auto;
  margin: 0 0 0 10px;
  float: right;
  display: block;
}
.c-title-con {
  display: none;
}
.c-open #g-header .c-nav2 {
  right: 0;
}
.c-open #g-header .c-nav2 .c-title-con {
  overflow: hidden;
  height: auto;
  display: none;
  padding-bottom: 0.25rem;
}
.c-open #g-header .c-nav2 .c-title-con > a {
  color: #999 !important;
  display: block;
  padding: 0.15rem 0 0.15rem 20px;
  line-height: 1.5;
}
.c-open #g-header .c-switch i:nth-child(2) {
  opacity: 0;
}
.c-open #g-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-open #g-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* banner */
@media (max-width: 1260px) {
  .h_banner .h_banner_swi {
    height: 100%;
  }
}
.h_banner .swiper-slide {
  overflow: hidden;
}
.h_banner .h_b_box {
  position: relative;
  width: 100%;
  height: var(--vh);
}
@media (max-width: 1260px) {
  .h_banner .h_b_box {
    height: calc(var(--vh) - 60px);
  }
}
@media (max-width: 767px) {
  .h_banner .h_b_box {
    height: 10rem;
  }
}
.h_banner .h_b_box .h_b_txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.h_banner .h_b_box .h_b_txt .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 0.6rem;
}
.h_banner .h_b_box .h_b_txt .container .txt_t .p1 {
  visibility: hidden;
  color: #fff;
  line-height: 1.2;
  font-weight: bold;
}
.h_banner .h_b_box .h_b_txt .container .txt_t .p2 {
  visibility: hidden;
  margin-top: 0.15rem;
  color: #fff;
}
.h_banner .h_b_box .h_b_txt .container .public-btn {
  visibility: hidden;
  margin-top: 0.56rem;
}
.h_banner .home_pag {
  bottom: 0.66rem;
}
.h_banner .home_pag .swiper-pagination-bullet {
  min-width: 1.8rem;
  height: auto;
  color: #fff;
  background: none;
  border-radius: 0;
  opacity: 1;
  padding-top: 0.16rem;
  position: relative;
  margin: 0 0.1rem;
}
.h_banner .home_pag .swiper-pagination-bullet span {
  opacity: 0.64;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet span {
    font-size: 0.24rem;
  }
}
.h_banner .home_pag .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet::after {
    height: 1px;
  }
}
.h_banner .home_pag .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  width: 0;
  transition: all 0s;
  height: 3px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet::before {
    height: 1px;
  }
}
.h_banner .home_pag .swiper-pagination-bullet-active span {
  opacity: 1;
}
.h_banner .home_pag .swiper-pagination-bullet-active::before {
  width: 100%;
  transition: all 5.8s;
}
.h_b_img {
  width: 100%;
  height: 100%;
  position: relative;
}
.h_b_img > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.h_b_img .img1 {
  z-index: 1;
}
@media (max-width: 767px) {
  .h_b_img .img1 {
    z-index: 1;
    display: none;
  }
}
.h_b_img .img2 {
  z-index: 2;
  display: none;
}
@media (max-width: 767px) {
  .h_b_img .img2 {
    z-index: 2;
    display: block;
  }
}
.h_b_img > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
/* 底部导航 */
.foot_nav {
  margin-right: 1.68rem;
}
@media (max-width: 767px) {
  .foot_nav {
    margin: 0 ;
  }
}
.foot_nav:last-child {
  margin-right: 0;
}
.foot_nav .a_tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}
.foot_nav .a_tit.on svg,
.foot_nav .a_tit.on img {
  transform: rotate(90deg);
}
.foot_nav .a_tit a {
  text-transform: uppercase;
  color: #fff;
}
.foot_nav .a_tit svg,
.foot_nav .a_tit img {
  transition: all 0.4s;
  width: 5px;
  height: auto;
  display: none;
}
@media (max-width: 767px) {
  .foot_nav .a_tit svg,
  .foot_nav .a_tit img {
    display: block;
  }
}
.foot_nav .a_tit svg path,
.foot_nav .a_tit img path {
  fill: #fff;
}
@media (max-width: 767px) {
  .foot_nav ul {
    display: none;
    padding-bottom: 0.2rem;
  }
}
.foot_nav ul li {
  margin-bottom: 0.12rem;
}
.foot_nav ul li a {
  color: #999;
}
/* 网站地图 */
.g-mapon {
  padding: 1.1rem 0 3.14rem;
}
.g-mapon .g-tit {
  text-align: center;
}
.g-mapon .g-tit h2 {
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .g-mapon .g-tit h2 {
    font-size: 0.48rem;
  }
}
.g-mapon .box {
  background: #fff;
  margin-top: 0.1rem;
}
.g-mapon .box .item {
  display: flex;
  padding: 0.45rem 0 0.3rem;
  border-bottom: 1px solid #eeeeee;
  position: relative;
}
@media (max-width: 767px) {
  .g-mapon .box .item {
    flex-direction: column;
  }
}
.g-mapon .box .item a:hover {
  color: #0068ff !important;
}
.g-mapon .box .item .g-la {
  font-weight: bold;
  width: 2.5rem;
  margin-bottom: 0.15rem;
  flex-shrink: 0;
  color: #231815;
}
@media (max-width: 767px) {
  .g-mapon .box .item .g-la {
    margin-bottom: 0.2rem;
    font-size: 0.32rem;
  }
}
.g-mapon .box .item .g-twa {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.g-mapon .box .item .g-twa a {
  min-width: 1.8rem;
  margin-right: 0.2rem;
  margin-bottom: 0.15rem;
  padding-right: 0.2rem;
  color: #000;
}
@media (max-width: 767px) {
  .g-mapon .box .item .g-twa a {
    min-width: auto;
  }
}
/* 免责声明 */
.g-pri {
  padding: 0.75rem 0 2rem;
}
.g-pri .box {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .g-pri .box {
    padding: 0;
  }
}
.g-pri .box .tit {
  margin-bottom: 0.35rem;
  text-align: center;
}
.g-pri .box .tit h2 {
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.g-pri .box .tit .g-p {
  display: flex;
  justify-content: center;
}
.g-pri .box .tit .g-p p {
  color: #999;
  margin: 0 0.18rem;
}
.g-pri .box .public-content h3 {
  font-size: 24px;
}
.g-pri .box .public-content .p1 {
  display: block;
  position: relative;
  padding-left: 20px;
}
.g-pri .box .public-content .p1:after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 12px;
}
@media (max-width: 1580px) {
  .g-pri .box .public-content .p1:after {
    top: 14px;
  }
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box {
  display: flex;
}
@media (max-width: 767px) {
  .g-pri .box .public-content .g-pritxt .g-pritxt-box {
    flex-direction: column;
  }
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box span {
  flex-shrink: 0;
  color: #222;
  display: block;
  position: relative;
  padding-left: 20px;
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box span:after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 12px;
}
@media (max-width: 1580px) {
  .g-pri .box .public-content .g-pritxt .g-pritxt-box span:after {
    top: 14px;
  }
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box ul {
  padding: 0;
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box ul li {
  list-style: none;
}
/* 二级 */
/* .nav_two_tit{display: flex;align-items: center;justify-content: space-between;}
.nav_two_tit>a{color: #666 !important;display: block;padding-left: 20px;line-height: 40px;}
.nav_two_tit svg{width: 8px;height: auto;}
.nav_two_tit svg path{fill: #666;}
.nav_three{display: none;}
.nav_three>a{color: #999 !important;display: block;padding-left: 30px;line-height: 36px;} */
/* 开始 */
.pub_btn {
  padding: 0 0.28rem 0 0.32rem;
  height: 0.47rem;
  background: #0068ff;
  border-radius: 100px;
  transition: all 0.4s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1580px) {
  .pub_btn {
    height: 0.6rem;
  }
}
@media (max-width: 767px) {
  .pub_btn {
    height: 0.8rem;
    padding: 0 0.4rem;
  }
}
.pub_btn.pub_btn2 {
  background: #014581;
}
.pub_btn.pub_btn3 {
  background: #fff;
}
.pub_btn.pub_btn3 p {
  color: #021d49;
}
.pub_btn.pub_btn3 i svg path,
.pub_btn.pub_btn3 i img path {
  fill: #021d49;
}
.pub_btn.pub_btn4 {
  height: auto;
  padding: 0;
  border-radius: 0;
  background: none;
}
.pub_btn.pub_btn4 p {
  color: #0068ff;
}
.pub_btn.pub_btn4 i svg path,
.pub_btn.pub_btn4 i img path {
  fill: #0068ff;
}
.pub_btn.pub_btn5 {
  background: #fff;
}
.pub_btn.pub_btn5:hover {
  opacity: 1;
}
.pub_btn.pub_btn5 p {
  color: #0068ff;
}
.pub_btn.pub_btn5 i svg path,
.pub_btn.pub_btn5 i img path {
  fill: #0068ff;
}
.pub_btn.pub_btn6 {
  padding: 0 0.3rem;
  border: 1px solid #fff;
  background: none;
}
.pub_btn.pub_btn6:hover {
  opacity: 1;
  border: 1px solid #0068ff;
  background: #0068ff;
}
.pub_btn.pub_btn6 p {
  color: #fff;
}
.pub_btn:hover {
  opacity: 0.8;
}
.pub_btn:hover i {
  transform: translateX(5px);
}
.pub_btn p {
  color: #fff;
  transition: all 0.4s;
}
.pub_btn i {
  transition: all 0.4s;
  margin-left: 0.22rem;
  flex-shrink: 0;
  display: flex;
  width: 7px;
  height: auto;
}
@media (max-width: 767px) {
  .pub_btn i {
    width: 5px;
  }
}
.pub_btn i svg,
.pub_btn i img {
  width: 100%;
  height: auto;
}
.pub_btn i svg path,
.pub_btn i img path {
  fill: #fff;
}
.banner {
  height: 100vh;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .banner {
    height: 80vh;
  }
}
@media (max-width: 991px) {
  .banner {
    height: 50vh;
  }
}
@media (max-width: 767px) {
  .banner {
    margin-top: 60px;
  }
}
.banner .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner .img img,
.banner .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .banner .img img,
  .banner .img video {
    object-position: 78%;
  }
}
.banner .img video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.banner .box {
  height: 100%;
  position: relative;
  z-index: 10;
}
.banner .box .container {
  color: #333;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .banner .box .container {
    flex-direction: column;
    padding-top: 1.5rem;
  }
}
.banner .box .container .txt .p1 {
  line-height: 1.2;
}
@media (max-width: 991px) {
  .banner .box .container .txt .p1 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .banner .box .container .txt .p1 {
    font-size: 0.4rem;
  }
}
.banner .box .container .txt .p2 {
  margin-left: 0.15rem;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .banner .box .container .txt .p2 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .banner .box .container .txt .p2 {
    font-size: 0.28rem;
  }
}
@media (max-width: 767px) {
  .banner .box .container .gl {
    width: 100%;
  }
}
.banner .box .container .gl .pub_btn {
  margin-top: 0.62rem;
}
.banner .box .container .gr {
  padding-bottom: 0.77rem;
  display: flex;
  align-items: flex-end;
  height: 100%;
  width: 3.98rem;
  margin-right: 0.42rem;
}
@media (max-width: 991px) {
  .banner .box .container .gr {
    width: 3rem;
  }
}
@media (max-width: 767px) {
  .banner .box .container .gr {
    width: 100%;
    height: 5.6rem;
    padding-bottom: 0;
    margin-right: 0;
    display: none;
  }
}
.banner .box .container .gr img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 767px) {
  .banner .box .container .gr img {
    height: 100%;
  }
}
.hon {
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .hon {
    padding-top: 0.5rem;
  }
}
.hon .container {
  position: relative;
}
.hon .box {
  display: flex;
  position: absolute;
  width: 100%;
  height: 1.54rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 0.1rem 0.1rem #f3f3f4;
}
@media (max-width: 767px) {
  .hon .box {
    position: initial;
    transform: translate(0%, 0%);
    box-shadow: none;
    border-radius: 0;
    flex-wrap: wrap;
    height: auto;
  }
}
.hon .box .item {
  height: 100%;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .hon .box .item {
    width: 50%;
    justify-content: flex-start;
    padding: 0.4rem 0.2rem 0 0;
    height: auto;
  }
}
.hon .box .item:hover .g_svg {
  border-color: transparent;
}
.hon .box .item:hover .g_svg i {
  border-radius: 0;
  transition: all 0.4s;
}
.hon .box .item:hover .g_svg i::after {
  opacity: 1;
}
.hon .box .item:hover .g_svg i svg path,
.hon .box .item:hover .g_svg i img path {
  fill: #fff;
}
.hon .box .item:hover .txt .hont b {
  color: #0068ff;
}
.hon .box .item:hover .txt .hont p {
  color: #0068ff;
}
.hon .box .item:hover .txt .honb p {
  color: #0068ff;
}
.hon .box .item .g_svg {
  margin-right: 0.16rem;
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid #0068ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .hon .box .item .g_svg {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.hon .box .item .g_svg i {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hon .box .item .g_svg i::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border-color: transparent;
  background: #0068ff;
  width: 0.44rem;
  height: 100%;
  opacity: 0;
}
@media (max-width: 767px) {
  .hon .box .item .g_svg i::after {
    width: 0.6rem;
  }
}
.hon .box .item .g_svg i svg,
.hon .box .item .g_svg i img {
  position: relative;
  z-index: 10;
  width: auto;
  height: 40%;
}
.hon .box .item .g_svg i svg path,
.hon .box .item .g_svg i img path {
  transition: all 0.4s;
  fill: #0068ff;
}
.hon .box .item .txt .hont {
  color: #021d49;
  line-height: 1.1;
  display: flex;
  align-items: center;
}
.hon .box .item .txt .hont b,
.hon .box .item .txt .hont p {
  transition: all 0.4s;
}
.hon .box .item .txt .honb {
  color: #97a3b6;
}
.hon .box .item .txt .honb p {
  transition: all 0.4s;
}
.pub_title {
  text-align: center;
}
@media (max-width: 991px) {
  .pub_title {
    /* padding: 0 5%; */
  }
}
.pub_title.pub_title2 h2 {
  color: #fff;
}
.pub_title.pub_title2 p {
  color: #fff;
}
.pub_title.pub_title3 {
  text-align: left;
}
@media (max-width: 991px) {
  .pub_title.pub_title3 {
    padding: 0 ;
  }
}
.pub_title h2 {
  line-height: 1.1;
  font-weight: bold;
  color: #021d49;
}
.pub_title p {
  margin-top: 0.26rem;
  color: #475468;
}
@media (max-width: 991px) {
  .pub_title p br {
    display: none;
  }
}
.htw .pub_title {
  padding-top: 2.15rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .htw .pub_title {
    padding-top: 1.2rem;
    margin-bottom: 0.1rem;
  }
}
.htw .box {
  /* height: 150vh; */
}
.htw .box .bbox {
  padding: 0.5rem 0 1.75rem;
  /* height: 100vh; */
  /* position: sticky;
			position: -webkit-sticky;
			top: 0; */
  transition: all 0.8s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateX(-20.5%);
}
@media (max-width: 767px) {
  .htw .box .bbox {
    transform: translateX(0);
    padding: 0 0 1.2rem;
    flex-direction: column;
  }
}
.htw .box .bbox.on {
  transform: translateX(0);
}
.htw .box .bbox.on .gl {
  opacity: 1;
}
.htw .box .bbox .gl {
  transition: all 0.8s;
  opacity: 0;
  padding-right: 1.7rem;
  width: 40.97222222%;
}
@media (max-width: 991px) {
  .htw .box .bbox .gl {
    padding-right: 0.5rem;
  }
}
@media (max-width: 767px) {
  .htw .box .bbox .gl {
    opacity: 1;
    width: 100%;
    padding-right: 0;
  }
}
.htw .box .bbox .gl .item {
  transition: all 0.4s;
  opacity: 0.15;
  margin: 0.75rem 0;
}
@media (max-width: 767px) {
  .htw .box .bbox .gl .item {
    display: flex;
    flex-direction: column-reverse;
    opacity: 1;
  }
}
.htw .box .bbox .gl .item.on {
  opacity: 1;
}
.htw .box .bbox .gl .item.on .g_tit h3 {
  color: #0068ff;
}
@media (max-width: 767px) {
  .htw .box .bbox .gl .item .g_lxs {
    padding: 0.4rem 0 0;
  }
}
.htw .box .bbox .gl .item .g_yc .public-img:before {
  padding-top: 76.47058824%;
}
.htw .box .bbox .gl .item .g_tit {
  margin-bottom: 0.25rem;
  display: flex;
  align-items: flex-start;
}
.htw .box .bbox .gl .item .g_tit i {
  flex-shrink: 0;
  display: flex;
  margin-top: 0.03rem;
  margin-right: 0.18rem;
  width: 0.26rem;
  height: auto;
}
@media (max-width: 767px) {
  .htw .box .bbox .gl .item .g_tit i {
    width: 0.36rem;
  }
}
.htw .box .bbox .gl .item .g_tit i svg,
.htw .box .bbox .gl .item .g_tit i img {
  width: 100%;
  height: auto;
}
.htw .box .bbox .gl .item .g_tit i svg path,
.htw .box .bbox .gl .item .g_tit i img path {
  fill: #0068ff;
}
.htw .box .bbox .gl .item .g_tit h3 {
  transition: all 0.4s;
  color: #021d49;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .htw .box .bbox .gl .item .g_tit h3 {
    color: #0068ff;
  }
}
.htw .box .bbox .gl .item .g_p {
  padding-left: 0.44rem;
}
@media (max-width: 767px) {
  .htw .box .bbox .gl .item .g_p {
    padding-left: 0;
  }
}
.htw .box .bbox .gl .item .g_p p {
  color: #7b899f;
}
.htw .box .bbox .gr {
  position: relative;
  width: 59.02777778%;
}
@media (max-width: 767px) {
  .htw .box .bbox .gr {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .htw .box .bbox .gr .gr_img {
    display: none;
  }
}
.htw .box .bbox .gr .gr_img .public-img {
  border-radius: 0.2rem;
  display: none;
}
.htw .box .bbox .gr .gr_img .public-img:first-child {
  display: flex;
}
.htw .box .bbox .gr .gr_img .public-img:before {
  padding-top: 76.47058824%;
}
.htw .box .bbox .gr .gr_a {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  padding-bottom: 0.1rem;
  width: 100%;
  height: 2rem;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: url(../images/home10.png) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .htw .box .bbox .gr .gr_a {
    position: initial;
    height: auto;
  }
}
.htw .box .bbox .gr .gr_a .pub_btn {
  margin: 0 0.05rem;
}
.hth .g_pubswi {
  margin-top: 0.7rem;
}
.hth .g_pubswi .g_pubswi_nav {
  display: flex;
  justify-content: center;
}
.hth .g_pubswi .g_pubswi_nav .gallery-top {
  padding-bottom: 0.38rem;
  width: 100%;
}
.hth .g_pubswi .g_pubswi_nav .swiper-slide:hover .gqh_box .txt h3 {
  text-decoration: underline;
}
.hth .g_pubswi .g_pubswi_nav .swiper-slide.swiper-slide-thumb-active .gqh_box .g_svg {
  border-color: transparent;
}
.hth .g_pubswi .g_pubswi_nav .swiper-slide.swiper-slide-thumb-active .gqh_box .g_svg i {
  border-radius: 0;
  transition: all 0.4s;
}
.hth .g_pubswi .g_pubswi_nav .swiper-slide.swiper-slide-thumb-active .gqh_box .g_svg i::after {
  opacity: 1;
}
.hth .g_pubswi .g_pubswi_nav .swiper-slide.swiper-slide-thumb-active .gqh_box .g_svg i svg path,
.hth .g_pubswi .g_pubswi_nav .swiper-slide.swiper-slide-thumb-active .gqh_box .g_svg i img path {
  fill: #fff;
}
.hth .g_pubswi .g_pubswi_nav .swiper-slide.swiper-slide-thumb-active .gqh_box .txt h3 {
  color: #0068ff;
}
.hth .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.hth .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg {
  margin-bottom: 0.18rem;
  width: 0.5rem;
  height: 0.5rem;
  box-shadow: 0 0 0.1rem #f3f3f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .hth .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.hth .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg i {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hth .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg i::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border-color: transparent;
  background: #0068ff;
  width: 0.42rem;
  height: 100%;
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .hth .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg i::after {
    width: 0.6rem;
  }
}
.hth .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg i svg,
.hth .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg i img {
  position: relative;
  z-index: 10;
  width: auto;
  height: 48%;
}
.hth .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg i svg path,
.hth .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg i img path {
  transition: all 0.4s;
  fill: #333;
}
.hth .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .txt {
  width: 6em;
  text-align: center;
}
.hth .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .txt h3 {
  transition: all 0.4s;
  color: #475468;
  max-width: 6em;
}
.hth .g_pubswi .g_pubswi_box {
  position: relative;
}
.hth .g_pubswi .g_pubswi_box::after {
  content: '';
  position: absolute;
  background: -webkit-linear-gradient(to b, #fafcff, #fff);
  background: linear-gradient(to right, #fafcff, #fff);
  width: 100%;
  height: 3rem;
  top: 0;
  left: 0;
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs {
  position: relative;
  z-index: 10;
  padding: 0.8rem 0 1.4rem;
}
@media (max-width: 767px) {
  .hth .g_pubswi .g_pubswi_box .gallery-thumbs {
    padding: 0.8rem 0 0.4rem;
  }
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gl {
  width: 66.38888889%;
}
@media (max-width: 991px) {
  .hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gl {
    width: 100%;
  }
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gl .public-img:before {
  padding-top: 56.38075314%;
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr {
  padding-left: 1.38rem;
  width: 33.61111111%;
}
@media (max-width: 1260px) {
  .hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr {
    padding-left: 0.5rem;
  }
}
@media (max-width: 991px) {
  .hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr {
    width: 100%;
    padding: 0.5rem 0;
  }
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .txt {
  margin-bottom: 0.4rem;
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .txt h3 {
  line-height: 1.2;
  margin-bottom: 0.32rem;
  font-weight: bold;
  color: #021d49;
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .txt p {
  color: #7b899f;
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .g_lab {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.92rem;
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .g_lab .g_lab_item {
  margin-right: 0.35rem;
  margin-bottom: 0.3rem;
  cursor: pointer;
  align-items: center;
  display: flex;
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .g_lab .g_lab_item:nth-child(3n) {
  margin-right: 0;
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .g_lab .g_lab_item:hover .g_i {
  border-color: #0068ff;
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .g_lab .g_lab_item:hover .g_i i {
  background: #0068ff;
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .g_lab .g_lab_item:hover p {
  color: #0068ff;
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .g_lab .g_lab_item .g_i {
  border: 1px solid transparent;
  transition: all 0.4s;
  margin-right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 0.22rem;
  height: 0.22rem;
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .g_lab .g_lab_item .g_i i {
  transition: all 0.4s;
  border-radius: 50%;
  background: #97a3b6;
  width: calc(8/22*100%);
  height: calc(8/22*100%);
}
.hth .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .g_lab .g_lab_item p {
  min-width: 4em;
  transition: all 0.4s;
  color: #808996;
}
.hfo {
  background: url(../images/home4.jpg) no-repeat;
  background-size: cover;
  padding: 1.35rem 0 1.2rem;
}
.hfo .box {
  margin-top: 0.75rem;
}
.hfo .box .gallery-thumbs .hfo_thu {
  min-height: 3.96rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hfo .box .gallery-thumbs .hfo_thu {
    flex-direction: column;
  }
}
.hfo .box .gallery-thumbs .hfo_thu .gl {
  border-radius: 0.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0.2rem 0.8rem;
  width: 28.75%;
  background: url(../images/home5.jpg) no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .hfo .box .gallery-thumbs .hfo_thu .gl {
    padding: 0.2rem;
  }
}
@media (max-width: 767px) {
  .hfo .box .gallery-thumbs .hfo_thu .gl {
    width: 100%;
    padding: 0.4rem;
  }
}
.hfo .box .gallery-thumbs .hfo_thu .gl .g_logo {
  margin-bottom: 0.22rem;
}
.hfo .box .gallery-thumbs .hfo_thu .gl .g_logo img {
  height: 0.35rem;
  width: auto;
}
@media (max-width: 767px) {
  .hfo .box .gallery-thumbs .hfo_thu .gl .g_logo img {
    height: 0.5rem;
  }
}
.hfo .box .gallery-thumbs .hfo_thu .gl .txt h3 {
  line-height: 1.2;
  color: #fff;
}
.hfo .box .gallery-thumbs .hfo_thu .gl .pub_btn {
  margin-top: 0.54rem;
}
.hfo .box .gallery-thumbs .hfo_thu .gr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  padding: 0.2rem 0.5rem 0.2rem 0.74rem;
  width: 71.25%;
}
@media (max-width: 767px) {
  .hfo .box .gallery-thumbs .hfo_thu .gr {
    width: 100%;
    padding: 0.4rem;
  }
}
.hfo .box .gallery-thumbs .hfo_thu .gr .g_p .g_item {
  margin: 0.12rem 0;
}
.hfo .box .gallery-thumbs .hfo_thu .gr .g_p .g_item h4 {
  margin-bottom: 0.05rem;
  font-weight: bold;
  color: #021d49;
}
.hfo .box .gallery-thumbs .hfo_thu .gr .g_p .g_item p {
  color: #5e6a7d;
  line-height: 1.625;
}
.hfo .hfo_nav .hfo_nav_box {
  position: relative;
}
.hfo .hfo_nav .hfo_nav_box .gallery-top {
  margin-left: -30px;
  width: calc(100% + 60px);
  padding: 0.3rem;
}
@media (max-width: 767px) {
  .hfo .hfo_nav .hfo_nav_box .gallery-top {
    width: 100%;
    margin-left: 0;
    padding: 0.3rem 2px;
  }
}
.hfo .hfo_nav .hfo_nav_box .gallery-top .swiper-slide-thumb-active .public-img {
  border-color: #b0cffb;
  box-shadow: 0 0 0.3rem rgba(176, 207, 251, 0.3);
}
@media (max-width: 767px) {
  .hfo .hfo_nav .hfo_nav_box .gallery-top .swiper-slide-thumb-active .public-img {
    box-shadow: none;
  }
}
.hfo .hfo_nav .hfo_nav_box .gallery-top .public-img {
  cursor: pointer;
  transition: all 0.4s;
  border: 1px solid transparent;
  border-radius: 0.1rem;
  background: rgba(255, 255, 255, 0.3);
}
.hfo .hfo_nav .hfo_nav_box .gallery-top .public-img:before {
  padding-top: 52.27272727%;
}
.hfo .hfo_nav .hfo_nav_box .gallery-top .public-img img {
  mix-blend-mode: multiply;
}
.hfo .hfo_nav .hfo_nav_box .g_qie .pub_prev {
  left: -1.22rem;
}
.hfo .hfo_nav .hfo_nav_box .g_qie .pub_next {
  right: -1.22rem;
}
@media (max-width: 1260px) {
  .g_qie {
    display: none;
  }
}
.g_qie .pub_nav {
  width: 0.46rem;
  height: 0.46rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.05);
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 10;
  cursor: pointer;
  transition: all 0.4s;
}
.g_qie .pub_nav:hover {
  background: #0068ff;
}
.g_qie .pub_nav:hover svg path {
  fill: #fff;
}
.g_qie .pub_nav svg {
  width: 0.21rem;
  height: 0.12rem;
}
.g_qie .pub_nav svg path {
  fill: #0068ff;
  opacity: 1;
  transition: all 0.4s;
}
.g_qie .pub_prev {
  left: 0.8rem;
}
.g_qie .pub_prev svg {
  transform: rotate(180deg);
}
.g_qie .pub_next {
  right: 0.8rem;
}
.hfi {
  padding: 1.35rem 0 0.9rem;
}
.hfi .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.22rem;
  margin-top: 0.6rem;
}
.hfi .box .item {
  width: 33.33%;
  margin-bottom: 0.45rem;
  padding: 0 0.22rem;
}
@media (max-width: 991px) {
  .hfi .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .hfi .box .item {
    width: 100%;
  }
}
.hfi .box .item:hover .itembox .public-img img {
  transform: scale(1.05);
}
.hfi .box .item:hover .itembox .public-img:after {
  opacity: 1;
}
.hfi .box .item:hover .itembox .txt h3 {
  color: #0068ff !important;
}
.hfi .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
.hfi .box .item .itembox .public-img {
  border-radius: 0.1rem;
}
.hfi .box .item .itembox .public-img:before {
  padding-top: 72.66666667%;
}
.hfi .box .item .itembox .public-img:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: url(../images/home9.png) no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all 0.4s;
}
.hfi .box .item .itembox .txt {
  margin-top: 0.28rem;
}
.hfi .box .item .itembox .txt span {
  color: #8d959a;
}
.hfi .box .item .itembox .txt h3 {
  transition: all 0.4s;
  margin-top: 0.15rem;
  color: #021d49;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hfi .box .item .itembox .pub_btn {
  margin-top: 0.2rem;
}
/* 底部 */
footer .foot_t {
  padding: 0.55rem 0 0.6rem;
  border-top: 1px solid #e5e8ec;
}
footer .foot_t .container {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
footer .foot_t .container .gl {
  height: 0.44rem;
}
@media (max-width: 767px) {
  footer .foot_t .container .gl {
    height: 0.55rem;
  }
}
footer .foot_t .container .gl img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
footer .foot_t .container .gr {
  display: flex;
  flex-wrap: wrap;
}
footer .foot_t .container .gr .item {
  cursor: pointer;
  transition: all 0.4s;
  margin-left: 0.2rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
footer .foot_t .container .gr .item.on .foot_t_r_ewm {
  transform: translateX(-50%) scale(1);
}
footer .foot_t .container .gr .item.on .foot_t_r_con svg path {
  fill: #fff;
}
footer .foot_t .container .gr .item .foot_t_r_ewm {
  position: absolute;
  top: 200%;
  left: 50%;
  background: #fff;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  z-index: 1;
  transform: translateX(-50%) scale(0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  width: 160px;
  height: 160px;
  padding: 5px;
}
footer .foot_t .container .gr .item .foot_t_r_ewm img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  footer .foot_t .container .gr .item {
    width: 0.7rem;
    height: 0.7rem;
  }
}
footer .foot_t .container .gr .item:hover {
  background: #0068ff;
}
footer .foot_t .container .gr .item:hover svg path,
footer .foot_t .container .gr .item:hover img path {
  fill: #fff;
}
footer .foot_t .container .gr .item svg,
footer .foot_t .container .gr .item img {
  width: 44%;
  height: auto;
}
footer .foot_t .container .gr .item svg path,
footer .foot_t .container .gr .item img path {
  transition: all 0.4s;
  fill: #0068ff;
}
footer .foot_b {
  color: #fff;
}
footer .foot_b .foot_b_t {
  padding: 0.91rem 0 0.79rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  footer .foot_b .foot_b_t {
    padding: 0 ;
  }
}
footer .foot_b .foot_b_t .gl {
  display: flex;
  padding-top: 0.12rem;
}
@media (max-width: 991px) {
  footer .foot_b .foot_b_t .gl {
    display: none;
  }
}
footer .foot_b .foot_b_t .gl .foot_thr {
  margin-right: 1.7rem;
}
footer .foot_b .foot_b_t .gl .foot_thr .foot_tit {
  margin-bottom: 0.32rem;
}
footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box {
  position: relative;
  margin-bottom: 0.12rem;
  width: 1.85rem;
}
footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box.on .foot_two_tit i {
  opacity: 1;
}
footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box.on .foot_two_tit p {
  color: #fff;
}
footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box.on .foot_thr_a {
  display: block;
}
footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box .foot_two_tit {
  display: flex;
  align-items: flex-start;
}
footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box .foot_two_tit p {
  transition: all 0.4s;
  color: #8d959a;
}
footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box .foot_two_tit i {
  transition: all 0.4s;
  opacity: 0;
  margin: 0.06rem 0.1rem 0 0.17rem;
  flex-shrink: 0;
  display: flex;
  width: 7px;
  height: auto;
}
@media (max-width: 767px) {
  footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box .foot_two_tit i {
    width: 5px;
  }
}
footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box .foot_two_tit i svg,
footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box .foot_two_tit i img {
  width: 100%;
  height: auto;
}
footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box .foot_two_tit i svg path,
footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box .foot_two_tit i img path {
  fill: #0068ff;
}
footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box .foot_thr_a {
  position: absolute;
  left: 100%;
  top: 0;
  width: 1.3rem;
  height: auto;
  display: none;
}
footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box .foot_thr_a .foot_thr_abox {
  padding-top: 2px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box .foot_thr_a .foot_thr_abox a {
  transition: all 0.4s;
  color: #8d959a;
  margin-bottom: 0.15rem;
}
footer .foot_b .foot_b_t .gl .foot_thr .foot_two .foot_two_box .foot_thr_a .foot_thr_abox a:hover {
  color: #fff;
  text-decoration: underline;
}
footer .foot_b .foot_b_t .gl .foot_ul {
  padding-right: 0.3rem;
  display: flex;
  flex-wrap: wrap;
}
footer .foot_b .foot_b_t .gl .foot_ul .foot_ul_box {
  margin-right: 0.82rem;
}
footer .foot_b .foot_b_t .gl .foot_ul .foot_ul_box:last-child {
  margin-right: 0;
}
footer .foot_b .foot_b_t .gl .foot_ul .foot_ul_box .foot_tit {
  margin-bottom: 0.32rem;
}
footer .foot_b .foot_b_t .gl .foot_ul .foot_ul_box .foot_ul_a {
  display: flex;
  flex-direction: column;
}
footer .foot_b .foot_b_t .gl .foot_ul .foot_ul_box .foot_ul_a a {
  max-width: 8em;
  transition: all 0.4s;
  margin-bottom: 0.12rem;
  color: #8d959a;
}
footer .foot_b .foot_b_t .gl .foot_ul .foot_ul_box .foot_ul_a a:hover {
  color: #fff;
}
footer .foot_b .foot_b_t .gr {
  padding: 0.14rem 0 0 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  footer .foot_b .foot_b_t .gr {
    border: none;
    padding: 0.5rem 0;
  }
}
footer .foot_b .foot_b_t .gr .gr_box span {
  opacity: 0.6;
}
footer .foot_b .foot_b_t .gr .gr_box p {
  margin-top: 0.2rem;
  font-weight: 900;
}
footer .foot_b .foot_b_b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.26rem 0;
}
@media (max-width: 991px) {
  footer .foot_b .foot_b_b {
    flex-direction: column;
    align-items: flex-start;
  }
}
footer .foot_b .foot_b_b .gl {
  display: flex;
  flex-wrap: wrap;
}
footer .foot_b .foot_b_b .gl a {
  transition: all 0.4s;
}
footer .foot_b .foot_b_b .gl a:hover {
  color: #fff;
  opacity: 1 !important;
}
footer .foot_b .foot_b_b .gl > p {
  color: rgba(255, 255, 255, 0.2);
}
footer .foot_b .foot_b_b .gl > p a {
  text-decoration: initial;
  color: rgba(255, 255, 255, 0.2);
}
footer .foot_b .foot_b_b .gl > a {
  opacity: 0.2;
  margin-left: 0.22rem;
  color: #fff;
}
@media (max-width: 991px) {
  footer .foot_b .foot_b_b .gl > a {
    margin-left: 0;
  }
}
footer .foot_b .foot_b_b .gr {
  flex-shrink: 0;
  margin-left: 0.2rem;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  footer .foot_b .foot_b_b .gr {
    margin: 0.1rem 0 0;
  }
}
footer .foot_b .foot_b_b .gr a {
  color: #8d959a;
  transition: all 0.4s;
}
footer .foot_b .foot_b_b .gr a:hover {
  color: #fff;
}
footer .foot_b .foot_b_b .gr span {
  margin: 0 0.14rem;
}
/* SaaS服务 */
.sub_banner {
  height: 6.8rem;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .sub_banner {
    height: 9rem;
    margin-top: 60px;
  }
}
.sub_banner .mob_pc {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sub_banner .mob_pc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub_banner .sub_banner_txt {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}
.sub_banner .sub_banner_txt .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container {
    flex-direction: column;
    justify-content: center;
  }
}
.sub_banner .sub_banner_txt .container .ban_l {
  width: 54%;
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container .ban_l {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.sub_banner .sub_banner_txt .container .ban_l .tit h1 {
  font-size: 56px;
}
@media (max-width: 1580px) {
  .sub_banner .sub_banner_txt .container .ban_l .tit h1 {
    font-size: 52px;
  }
}
@media (max-width: 1260px) {
  .sub_banner .sub_banner_txt .container .ban_l .tit h1 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container .ban_l .tit h1 {
    font-size: 0.4rem;
  }
}
.sub_banner .sub_banner_txt .container .ban_l .tit span {
  line-height: 1.3;
  font-weight: bold;
}
.sub_banner .sub_banner_txt .container .ban_l .sub_banner_p {
  padding-right: 1.8rem;
  margin-top: 0.1rem;
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container .ban_l .sub_banner_p {
    padding-right: 0;
  }
}
.sub_banner .sub_banner_txt .container .ban_l .sub_banner_p p {
  opacity: 0.85;
  font-size: 16px;
}
@media (max-width: 1580px) {
  .sub_banner .sub_banner_txt .container .ban_l .sub_banner_p p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container .ban_l .sub_banner_p p {
    font-size: 0.28rem;
  }
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container .ban_l .sub_banner_p p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    height: 7.5em;
  }
}
.sub_banner .sub_banner_txt .container .ban_l .ban_l_a {
  margin-top: 0.58rem;
}
.sub_banner .sub_banner_txt .container .ban_l .ban_l_a a {
  margin-right: 0.1rem;
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container .ban_l .ban_l_a a {
    margin-bottom: 0.1rem;
  }
}
.sub_banner .sub_banner_txt .container .ban_r {
  margin-left: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45%;
  position: relative;
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container .ban_r {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.sub_banner .sub_banner_txt .container .ban_r .img {
  opacity: 0.8;
  width: 5.93rem;
  height: 5.57rem;
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container .ban_r .img {
    width: 3.93rem;
    height: 3.5rem;
  }
}
.sub_banner .sub_banner_txt .container .ban_r .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sub_banner .sub_banner_txt .container .ban_r .txt {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sub_banner .sub_banner_txt .container .ban_r .txt i {
  flex-shrink: 0;
  display: flex;
  width: 0.55rem;
  height: auto;
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container .ban_r .txt i {
    width: 0.8rem;
  }
}
.sub_banner .sub_banner_txt .container .ban_r .txt i svg,
.sub_banner .sub_banner_txt .container .ban_r .txt i img {
  width: 100%;
  height: auto;
}
.sub_banner .sub_banner_txt .container .ban_r .txt i svg path,
.sub_banner .sub_banner_txt .container .ban_r .txt i img path {
  fill: #fff;
}
.sub_banner .sub_banner_txt .container .ban_r .txt p {
  margin-top: 0.2rem;
}
.saas .saas_nav {
  display: flex;
  align-items: center;
  height: 0.8rem;
  border-bottom: 1px solid #f1f4fb;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}
@media (max-width: 767px) {
  .saas .saas_nav {
    position: initial;
  }
}
.saas .saas_nav .container {
  height: 100%;
}
.saas .saas_nav .container .box {
  overflow: auto;
  height: 100%;
  display: flex;
  align-items: center;
}
.saas .saas_nav a {
  flex-shrink: 0;
  margin-right: 0.55rem;
  color: #475468;
  transition: all 0.4s;
}
.saas .saas_nav a.on {
  color: #0068ff;
}
.saason {
  padding: 1.2rem 0 0;
}
.saason .box {
  display: flex;
  justify-content: space-between;
  margin-top: 0.76rem;
}
@media (max-width: 991px) {
  .saason .box {
    flex-direction: column;
  }
}
.saason .box .gl {
  width: 49.30555556%;
}
@media (max-width: 991px) {
  .saason .box .gl {
    width: 100%;
  }
}
.saason .box .gl .public-img {
  cursor: pointer;
}
.saason .box .gl .public-img:before {
  padding-top: 73.8028169%;
}
.saason .box .gl .public-img img {
  object-fit: contain;
}
.saason .box .gr {
  width: 45%;
}
@media (max-width: 991px) {
  .saason .box .gr {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.saason .box .gr ul {
  border-bottom: 1px solid #eceef0;
}
.saason .box .gr ul li {
  margin-bottom: 0.35rem;
}
.saason .box .gr ul li:first-child .g_xia {
  display: block;
}
.saason .box .gr ul li .g_top {
  border-top: 1px solid #eceef0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.32rem 0.2rem 0;
  position: relative;
  cursor: pointer;
}
.saason .box .gr ul li .g_top.on {
  border-top: 1px solid #0068ff;
}
.saason .box .gr ul li .g_top.on .g_top_l p {
  color: #0068ff;
}
.saason .box .gr ul li .g_top.on .g_gb i {
  background: #0068ff;
}
.saason .box .gr ul li .g_top.on .g_gb .i2 {
  transform: translate(-50%, -50%) rotate(0deg);
}
.saason .box .gr ul li .g_top .g_top_l {
  width: 80%;
}
.saason .box .gr ul li .g_top .g_gb {
  position: relative;
  transition: 0.4s all;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.2rem;
  width: 0.2rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .saason .box .gr ul li .g_top .g_gb {
    width: 16px;
  }
}
.saason .box .gr ul li .g_top .g_gb i {
  width: 0.16rem;
  border-radius: 4px;
  height: 4px;
  background: #dadde1;
  display: block;
  position: absolute;
  transition: all 0.4s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .saason .box .gr ul li .g_top .g_gb i {
    width: 16px;
    height: 2px;
  }
}
.saason .box .gr ul li .g_top .g_gb .i2 {
  transform: translate(-50%, -50%) rotate(90deg);
}
.saason .box .gr ul li .g_xia {
  padding: 0 0.2rem;
  margin-top: 0.2rem;
  display: none;
}
.saason .box .gr ul li .g_xia .g_bjq p {
  color: #7b899f;
  margin-bottom: 0.08rem;
  display: block;
  position: relative;
  padding-left: 17px;
}
.saason .box .gr ul li .g_xia .g_bjq p:last-child {
  margin-bottom: 0;
}
.saason .box .gr ul li .g_xia .g_bjq p:after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #97a3b6;
  left: 0;
  top: 9px;
}
@media (max-width: 1580px) {
  .saason .box .gr ul li .g_xia .g_bjq p:after {
    top: 8px;
    width: 6px;
    height: 6px;
  }
}
.saastw {
  padding: 1.55rem 0 1.6rem;
}
@media (max-width: 767px) {
  .saastw {
    padding: 1.2rem 0 0.7rem;
  }
}
.saastw .g_pubswi {
  margin-top: 0.7rem;
}
.saastw .g_pubswi .g_pubswi_nav {
  border-bottom: 1px solid #f1f4fb;
  padding: 0 0.9rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .saastw .g_pubswi .g_pubswi_nav {
    padding: 0;
  }
}
.saastw .g_pubswi .g_pubswi_nav .gallery-top {
  width: 100%;
}
.saastw .g_pubswi .g_pubswi_nav .swiper-slide.swiper-slide-thumb-active .gqh_box::after {
  opacity: 1;
}
.saastw .g_pubswi .g_pubswi_nav .swiper-slide.swiper-slide-thumb-active .gqh_box .g_svg {
  border-color: transparent;
}
.saastw .g_pubswi .g_pubswi_nav .swiper-slide.swiper-slide-thumb-active .gqh_box .g_svg i {
  border-radius: 0;
  transition: all 0.4s;
}
.saastw .g_pubswi .g_pubswi_nav .swiper-slide.swiper-slide-thumb-active .gqh_box .g_svg i::after {
  opacity: 1;
}
.saastw .g_pubswi .g_pubswi_nav .swiper-slide.swiper-slide-thumb-active .gqh_box .g_svg i svg path,
.saastw .g_pubswi .g_pubswi_nav .swiper-slide.swiper-slide-thumb-active .gqh_box .g_svg i img path {
  fill: #fff;
}
.saastw .g_pubswi .g_pubswi_nav .swiper-slide.swiper-slide-thumb-active .gqh_box .txt h3 {
  color: #0068ff;
}
.saastw .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0.38rem;
  position: relative;
}
.saastw .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box::after {
  transition: all 0.4s;
  opacity: 0;
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #0068ff;
}
.saastw .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg {
  margin-bottom: 0.18rem;
  width: 0.5rem;
  height: 0.5rem;
  box-shadow: 0 0 0.1rem #f3f3f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .saastw .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.saastw .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg i {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.saastw .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg i::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border-color: transparent;
  background: #0068ff;
  width: 0.42rem;
  height: 100%;
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .saastw .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg i::after {
    width: 0.6rem;
  }
}
.saastw .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg i svg,
.saastw .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg i img {
  position: relative;
  z-index: 10;
  width: auto;
  height: 48%;
}
.saastw .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg i svg path,
.saastw .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .g_svg i img path {
  transition: all 0.4s;
  fill: #333;
}
.saastw .g_pubswi .g_pubswi_nav .swiper-slide .gqh_box .txt h3 {
  white-space: nowrap;
  transition: all 0.4s;
  color: #475468;
}
.saastw .g_pubswi .g_pubswi_box {
  position: relative;
  /* &::after{
				content: '';
				position: absolute;
				background: -webkit-linear-gradient(to b, #fafcff, #fff);
				background: linear-gradient(to right, #fafcff, #fff);
				width: 100%;
				height: 3rem;
				top: 0;
				left: 0;
			} */
}
.saastw .g_pubswi .g_pubswi_box .gallery-thumbs {
  position: relative;
  z-index: 10;
  padding: 0.8rem 0 0;
}
.saastw .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .saastw .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box {
    flex-direction: column;
  }
}
.saastw .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gl {
  width: 49.30555556%;
}
@media (max-width: 767px) {
  .saastw .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gl {
    width: 100%;
  }
}
.saastw .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gl .public-img:before {
  padding-top: 56.47887324%;
}
.saastw .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr {
  padding-left: 0.8rem;
  width: 50.69444444%;
}
@media (max-width: 767px) {
  .saastw .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr {
    width: 100%;
    padding: 0.5rem 0;
  }
}
.saastw .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .txt {
  margin-bottom: 0.34rem;
}
.saastw .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .txt h3 {
  line-height: 1.2;
  margin-bottom: 0.14rem;
  font-weight: bold;
  color: #021d49;
}
.saastw .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .txt p {
  color: #7b899f;
}
.saastw .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .g_p p {
  color: #7b899f;
  margin-bottom: 0.06rem;
  display: block;
  position: relative;
  padding-left: 17px;
}
.saastw .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .g_p p:after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #97a3b6;
  left: 0;
  top: 9px;
}
@media (max-width: 1580px) {
  .saastw .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .g_p p:after {
    top: 8px;
    width: 6px;
    height: 6px;
  }
}
.saastw .g_pubswi .g_pubswi_box .gallery-thumbs .hth_box .gr .pub_btn {
  margin-top: 0.66rem;
}
.saasth {
  background: url(../images/saas4.jpg) no-repeat;
  background-size: cover;
  padding: 1.16rem 0 1.2rem;
}
.saasth .box {
  margin-top: 0.72rem;
}
.saasth .box .saasth_nav {
  border-bottom: 1px solid #e0e4ec;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .saasth .box .saasth_nav {
    justify-content: flex-start;
    overflow: auto;
  }
}
.saasth .box .saasth_nav a {
  cursor: pointer;
  padding-bottom: 0.38rem;
  margin: 0 0.42rem;
  position: relative;
}
@media (max-width: 991px) {
  .saasth .box .saasth_nav a {
    flex-shrink: 0;
  }
}
.saasth .box .saasth_nav a.on {
  color: #0068ff;
}
.saasth .box .saasth_nav a.on::after {
  opacity: 1;
}
.saasth .box .saasth_nav a::after {
  transition: all 0.4s;
  opacity: 0;
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -1px;
  left: 0;
  background: #0068ff;
}
@media (max-width: 991px) {
  .saasth .box .saasth_nav a::after {
    height: 1px;
    bottom: 0;
  }
}
.saasth .box .saasth_box {
  margin-top: 0.4rem;
}
.saasth .box .saasth_box .saasth_item {
  display: none;
}
.saasth .box .saasth_box .saasth_item .saasth_item_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .saasth .box .saasth_box .saasth_item .saasth_item_box {
    flex-direction: column;
  }
}
.saasth .box .saasth_box .saasth_item .gl {
  border: 1px solid #e4e7ed;
  width: 23.95833333%;
  display: none;
}
@media (max-width: 767px) {
  .saasth .box .saasth_box .saasth_item .gl {
    width: 100%;
  }
}
.saasth .box .saasth_box .saasth_item .gl .l_item {
  transition: all 0.4s;
  cursor: pointer;
  padding: 0.26rem 0.3rem;
  background: #fff;
  border-bottom: 1px solid #e4e7ed;
}
.saasth .box .saasth_box .saasth_item .gl .l_item.on {
  background: #0068ff;
}
.saasth .box .saasth_box .saasth_item .gl .l_item.on .gl_tw i svg path {
  fill: #fff;
}
.saasth .box .saasth_box .saasth_item .gl .l_item.on .gl_tw h3 {
  color: #fff;
}
.saasth .box .saasth_box .saasth_item .gl .l_item:first-child .g_p {
  display: block;
}
.saasth .box .saasth_box .saasth_item .gl .l_item:last-child {
  border: none;
}
.saasth .box .saasth_box .saasth_item .gl .l_item .gl_tw {
  display: flex;
  align-items: center;
}
.saasth .box .saasth_box .saasth_item .gl .l_item .gl_tw i {
  margin-right: 0.24rem;
  flex-shrink: 0;
  display: flex;
  width: 0.22rem;
  height: auto;
}
@media (max-width: 767px) {
  .saasth .box .saasth_box .saasth_item .gl .l_item .gl_tw i {
    width: 0.32rem;
  }
}
.saasth .box .saasth_box .saasth_item .gl .l_item .gl_tw i svg,
.saasth .box .saasth_box .saasth_item .gl .l_item .gl_tw i img {
  width: 100%;
  height: auto;
}
.saasth .box .saasth_box .saasth_item .gl .l_item .gl_tw i svg path,
.saasth .box .saasth_box .saasth_item .gl .l_item .gl_tw i img path {
  transition: all 0.4s;
  fill: #475468;
  /* stroke: #475468; */
}
.saasth .box .saasth_box .saasth_item .gl .l_item .gl_tw h3 {
  transition: all 0.4s;
  color: #021d49;
}
.saasth .box .saasth_box .saasth_item .gl .l_item .g_p {
  padding-left: 0.46rem;
  margin-top: 0.07rem;
  display: none;
  color: #fff;
}
@media (max-width: 767px) {
  .saasth .box .saasth_box .saasth_item .gl .l_item .g_p {
    padding-left: 0.56rem;
  }
}
.saasth .box .saasth_box .saasth_item .gr {
  width: 100%;
}
@media (max-width: 767px) {
  .saasth .box .saasth_box .saasth_item .gr {
    width: 100%;
  }
}
.saasth .box .saasth_box .saasth_item .gr .public-img {
  display: none;
}
.saasth .box .saasth_box .saasth_item .gr .public-img:first-child {
  display: block;
}
.saasth .box .saasth_box .saasth_item .gr .public-img:before {
  padding-top: 51.80555556%;
}
.saasth .box .saasth_box .saasth_item .gr .public-img > video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
.saasfo {
  padding: 1.55rem 0 1.64rem;
}
@media (max-width: 767px) {
  .saasfo {
    padding: 1.2rem 0 1rem;
  }
}
.saasfo .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.1rem;
  margin-top: 0.75rem;
}
.saasfo .box .item {
  width: 25%;
  margin-bottom: 0.2rem;
  padding: 0 0.1rem;
}
@media (max-width: 991px) {
  .saasfo .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .saasfo .box .item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.saasfo .box .item:hover .itembox .imgbj {
  opacity: 1;
}
.saasfo .box .item:hover .itembox .g_con .g_svg {
  background: #fff;
}
.saasfo .box .item:hover .itembox .g_con .g_svg svg path {
  fill: #0068ff;
}
.saasfo .box .item:hover .itembox .g_con .txt h3 {
  color: #fff;
}
.saasfo .box .item:hover .itembox .g_con .txt p {
  color: #fff;
}
.saasfo .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
  background: #f1f4fb;
  position: relative;
}
.saasfo .box .item .itembox .imgbj {
  transition: all 0.4s;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.saasfo .box .item .itembox .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.saasfo .box .item .itembox .g_con {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
  padding: 0.6rem 0.2rem 0.76rem;
}
.saasfo .box .item .itembox .g_con .g_svg {
  transition: all 0.4s;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #475468;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .saasfo .box .item .itembox .g_con .g_svg {
    width: 1.3rem;
    height: 1.3rem;
  }
}
.saasfo .box .item .itembox .g_con .g_svg svg,
.saasfo .box .item .itembox .g_con .g_svg img {
  width: 38%;
  height: 38%;
}
.saasfo .box .item .itembox .g_con .g_svg svg path,
.saasfo .box .item .itembox .g_con .g_svg img path {
  transition: all 0.4s;
  fill: #fff;
}
.saasfo .box .item .itembox .g_con .txt {
  margin-top: 0.4rem;
  text-align: center;
}
.saasfo .box .item .itembox .g_con .txt h3 {
  transition: all 0.4s;
  color: #021d49;
  font-weight: bold;
}
.saasfo .box .item .itembox .g_con .txt p {
  transition: all 0.4s;
  margin-top: 0.12rem;
  color: #475468;
}
.saasfi {
  position: relative;
}
.saasfi .img {
  width: 100%;
  height: 9rem;
}
@media (max-width: 767px) {
  .saasfi .img {
    height: 10rem;
  }
}
.saasfi .img img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.saasfi .box {
  padding: 1.35rem 0 0;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.saasfi .box .container {
  height: 100%;
}
.saasfi .box .saasfo_nav {
  margin-top: 0.74rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  text-align: center;
}
.saasfi .box .saasfo_nav a {
  cursor: pointer;
  padding-bottom: 0.38rem;
  margin: 0 0.42rem;
  position: relative;
}
@media (max-width: 767px) {
  .saasfi .box .saasfo_nav a {
    margin: 0 0.2rem;
  }
}
.saasfi .box .saasfo_nav a.on {
  color: #0068ff;
}
.saasfi .box .saasfo_nav a.on::after {
  opacity: 1;
}
.saasfi .box .saasfo_nav a::after {
  transition: all 0.4s;
  opacity: 0;
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -1px;
  left: 0;
  background: #0068ff;
}
.saasfi .box .bbox {
  padding: 1.6rem 0 0;
}
@media (max-width: 1260px) {
  .saasfi .box .bbox {
    padding: 1rem 0 0;
  }
}
.saasfi .box .bbox .item {
  display: none;
  width: 49%;
}
@media (max-width: 1260px) {
  .saasfi .box .bbox .item {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .saasfi .box .bbox .item {
    width: 100%;
  }
}
.saasfi .box .bbox .item .txt h3 {
  color: #fff;
  line-height: 1.1;
}
.saasfi .box .bbox .item .txt p {
  color: #fff;
  margin-top: 0.36rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  height: 9em;
}
/* 立即定位平台-详情页模板 */
.platw {
  padding: 1.16rem 0 0.9rem;
  background: #f1f4fb;
  margin-top: 1.2rem;
}
.platw .box {
  margin-top: 0.7rem;
  border-radius: 0.1rem;
  background: #fff;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .platw .box {
    flex-direction: column;
  }
}
.platw .box .gl {
  padding: 0.53rem 0 0 0.6rem;
  width: 23.95833333%;
  position: relative;
}
@media (max-width: 991px) {
  .platw .box .gl {
    width: 100%;
    padding: 0.5rem;
  }
}
@media (max-width: 767px) {
  .platw .box .gl {
    padding: 0.4rem;
  }
}
.platw .box .gl::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2rem;
  background: linear-gradient(to top, #fff 20.45%, hsla(0, 0%, 100%, 0));
  bottom: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}
.platw .box .gl .gl_box {
  padding-left: 1px;
  height: 5.77rem;
  overflow: auto;
  border-left: 1px solid #f1f4fb;
}
@media (max-width: 1580px) {
  .platw .box .gl .gl_box {
    height: 7.6rem;
  }
}
@media (max-width: 767px) {
  .platw .box .gl .gl_box {
    height: auto;
    border: none;
  }
}
.platw .box .gl .gl_box .item {
  transition: all 0.4s;
  position: relative;
  padding: 0.18rem 0.22rem 0.18rem 0.3rem;
}
.platw .box .gl .gl_box .item:first-child .g_p {
  display: block;
}
.platw .box .gl .gl_box .item:last-child {
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .platw .box .gl .gl_box .item.on {
    background: -webkit-linear-gradient(to right, #eaf3ff, #fafcff);
    background: linear-gradient(to right, #eaf3ff, #fafcff);
  }
  .platw .box .gl .gl_box .item.on::after {
    opacity: 1;
  }
  .platw .box .gl .gl_box .item.on .tit h3 {
    color: #0068ff;
  }
  .platw .box .gl .gl_box .item.on .tit i {
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .platw .box .gl .gl_box .item {
    padding: 0;
    margin-bottom: 0.4rem;
  }
}
.platw .box .gl .gl_box .item::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: -1px;
  background: #0068ff;
  opacity: 0;
  transition: all 0.4s;
}
.platw .box .gl .gl_box .item .g_yc .img {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.platw .box .gl .gl_box .item .g_yc .img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.platw .box .gl .gl_box .item .g_yc .img:before {
  padding-top: 69.78508217%;
}
.platw .box .gl .gl_box .item .g_yc .img > img,
.platw .box .gl .gl_box .item .g_yc .img > video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
.platw .box .gl .gl_box .item .tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .platw .box .gl .gl_box .item .tit {
    margin-bottom: 0.4rem;
  }
}
.platw .box .gl .gl_box .item .tit h3 {
  transition: all 0.4s;
  color: #021d49;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .platw .box .gl .gl_box .item .tit h3 {
    font-size: 0.36rem;
  }
}
.platw .box .gl .gl_box .item .tit i {
  transition: all 0.4s;
  margin-left: 0.2rem;
  flex-shrink: 0;
  display: flex;
  width: 8px;
  height: auto;
}
@media (max-width: 767px) {
  .platw .box .gl .gl_box .item .tit i {
    display: none;
  }
}
.platw .box .gl .gl_box .item .tit i svg,
.platw .box .gl .gl_box .item .tit i img {
  width: 100%;
  height: auto;
}
.platw .box .gl .gl_box .item .tit i svg path,
.platw .box .gl .gl_box .item .tit i img path {
  fill: #4d5a6d;
}
.platw .box .gl .gl_box .item .g_p {
  display: none;
}
.platw .box .gr {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76.04166667%;
}
@media (max-width: 1580px) {
  .platw .box .gr {
    padding: 0.4rem;
  }
}
@media (max-width: 991px) {
  .platw .box .gr {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .platw .box .gr {
    display: none;
  }
}
.platw .box .gr .img {
  width: 90%;
  height: auto;
  object-fit: contain;
  display: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.platw .box .gr .img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.platw .box .gr .img:before {
  padding-top: 69.78508217%;
}
.platw .box .gr .img > img,
.platw .box .gr .img > video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
.plath {
  padding: 1.15rem 0 1.7rem;
}
.plath .pub_title p {
  line-height: 1.8;
}
.plath .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.1rem;
  margin-top: 0.7rem;
  position: relative;
}
.plath .box::after {
  content: '';
  position: absolute;
  width: 4.74rem;
  height: 1.18rem;
  background: url(../images/plabj.png) no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 1580px) {
  .plath .box::after {
    height: 1.8rem;
  }
}
.plath .box::before {
  content: '';
  position: absolute;
  width: 4.74rem;
  height: 1.18rem;
  background: url(../images/plabj.png) no-repeat;
  background-size: 100% 100%;
  bottom: 0.2rem;
  right: 0;
  transform: rotate(180deg);
  pointer-events: none;
  z-index: 10;
}
@media (max-width: 1580px) {
  .plath .box::before {
    height: 1.8rem;
  }
}
.plath .box .item {
  width: calc(100%/6);
  margin-bottom: 0.2rem;
  padding: 0 0.1rem;
}
@media (max-width: 991px) {
  .plath .box .item {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .plath .box .item {
    width: 50%;
  }
}
.plath .box .item:hover .itembox {
  background: #fff;
  box-shadow: 0 0 0.2rem #b3d2fe50;
}
.plath .box .item:hover .itembox .plath_box {
  opacity: 1;
  pointer-events: initial;
}
.plath .box .item:hover .itembox .img {
  border-color: #b3d2fe;
}
.plath .box .item .itembox {
  transition: all 0.4s;
  display: block;
  width: 100%;
  height: 100%;
  background: #f1f4fb;
  border-radius: 0.1rem;
  position: relative;
}
.plath .box .item .itembox .img {
  mix-blend-mode: multiply;
  border-radius: 0.1rem;
  transition: all 0.4s;
  border: 1px solid transparent;
}
.plath .box .item .itembox .plath_box {
  z-index: 100;
  transition: all 0.4s;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0.58rem;
  left: 1.6rem;
  width: 2.24rem;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
  box-shadow: 0 0 0.1rem #f3f3f4;
  background: #fff;
  display: none;
}
@media (max-width: 1580px) {
  .plath .box .item .itembox .plath_box {
    width: 3rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .plath .box .item .itembox .plath_box {
    top: 100%;
  }
}
.plath .box .item .itembox .plath_box .tit {
  padding: 0.09rem 0.2rem;
  background: #0068ff;
}
.plath .box .item .itembox .plath_box .tit p {
  color: #fff;
}
.plath .box .item .itembox .plath_box .plath_con {
  padding: 0.1rem 0.1rem 0.1rem 0.3rem;
}
.plath .box .item .itembox .plath_box .plath_con a {
  display: flex;
  align-items: center;
  margin: 0.2rem 0;
}
.plath .box .item .itembox .plath_box .plath_con a:hover {
  color: #0068ff;
}
.plath .box .item .itembox .plath_box .plath_con a:hover i {
  opacity: 1;
}
.plath .box .item .itembox .plath_box .plath_con a p {
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .plath .box .item .itembox .plath_box .plath_con a p {
    font-size: 0.24rem;
  }
}
.plath .box .item .itembox .plath_box .plath_con a i {
  transition: all 0.4s;
  opacity: 0;
  margin-left: 0.15rem;
  flex-shrink: 0;
  display: flex;
  width: 7px;
  height: auto;
}
.plath .box .item .itembox .plath_box .plath_con a i svg,
.plath .box .item .itembox .plath_box .plath_con a i img {
  width: 100%;
  height: auto;
}
.plath .box .item .itembox .plath_box .plath_con a i svg path,
.plath .box .item .itembox .plath_box .plath_con a i img path {
  fill: #0068ff;
}
.plafi {
  overflow: hidden;
  padding: 1.35rem 0 2rem;
}
@media (max-width: 767px) {
  .plafi {
    padding: 1.2rem 0 1.2rem;
  }
}
.plafi .box {
  margin-top: 0.72rem;
}
.plafi .box .swiper {
  overflow: initial;
}
.plafi .box .g_qie .pub_prev {
  left: -1.22rem;
}
.plafi .box .g_qie .pub_next {
  right: -1.22rem;
}
.plafi .box .plafi_box {
  position: relative;
}
.plafi .box .plafi_box:hover .gyc {
  opacity: 1;
}
.plafi .box .plafi_box .gxs {
  overflow: hidden;
  border-radius: 0.1rem;
  position: relative;
  width: 100%;
  height: 100%;
}
.plafi .box .plafi_box .gxs .public-img:before {
  padding-top: 107.29613734%;
}
.plafi .box .plafi_box .gxs .txt {
  padding: 0.54rem 0.44rem;
  z-index: 10;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.plafi .box .plafi_box .gxs .txt h3 {
  color: #fff;
}
.plafi .box .plafi_box .gyc {
  opacity: 0;
  transition: all 0.4s;
  overflow: hidden;
  border-radius: 0.1rem;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: url(../images/saas6.jpg) no-repeat;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.54rem 0.44rem;
}
.plafi .box .plafi_box .gyc .txt p {
  margin-top: 0.2rem;
  opacity: 0.6;
}
/* 产品对比页 */
.conton {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  background: #f1f4fb;
  z-index: 10;
  padding: 1.2rem 0 0.78rem;
}
@media (max-width: 767px) {
  .conton {
    position: initial;
  }
}
.conton.on .box .gr .item .conton_img {
  display: none;
}
.conton .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .conton .box {
    flex-direction: column;
  }
}
.conton .box .gl {
  width: 24.58333333%;
  padding: 0.26rem 0.2rem 0 0;
}
@media (max-width: 767px) {
  .conton .box .gl {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.conton .box .gl .pub_title {
  text-align: left;
}
@media (max-width: 767px) {
  .conton .box .gl .pub_title {
    padding: 0;
  }
}
@media (max-width: 1260px) {
  .conton .box .gl .pub_title h2 br {
    display: none;
  }
}
.conton .box .gl .pub_btn {
  margin-top: 0.32rem;
}
.conton .box .gr {
  display: flex;
  width: 75.41666667%;
}
@media (max-width: 767px) {
  .conton .box .gr {
    width: 100%;
    flex-wrap: wrap;
  }
}
.conton .box .gr .item {
  position: relative;
  margin-left: 0.2rem;
  width: calc((100%/3) - 0.2rem);
}
@media (max-width: 767px) {
  .conton .box .gr .item {
    width: 100%;
    margin: 0 0 0.4rem;
  }
}
.conton .box .gr .item .tit {
  background: #fff;
  border-radius: 0.1rem;
  margin-bottom: 1px;
  position: relative;
}
.conton .box .gr .item .tit .tit_t {
  height: 63px;
  width: 100%;
  padding: 0.15rem 0.22rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .conton .box .gr .item .tit .tit_t {
    padding: 0.25rem 0.22rem;
  }
}
.conton .box .gr .item .tit .tit_t.on i {
  opacity: 1;
  transform: rotate(180deg);
}
.conton .box .gr .item .tit .tit_t.on i svg path {
  fill: #0068ff;
}
.conton .box .gr .item .tit .tit_t p {
  color: #021d49;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.conton .box .gr .item .tit .tit_t i {
  transition: all 0.4s;
  margin-left: 0.2rem;
  opacity: 0.2;
  flex-shrink: 0;
  display: flex;
  width: 0.15rem;
  height: auto;
}
@media (max-width: 767px) {
  .conton .box .gr .item .tit .tit_t i {
    width: 0.2rem;
  }
}
.conton .box .gr .item .tit .tit_t i svg,
.conton .box .gr .item .tit .tit_t i img {
  width: 100%;
  height: auto;
}
.conton .box .gr .item .tit .tit_t i svg path,
.conton .box .gr .item .tit .tit_t i img path {
  fill: #021d49;
}
.conton .box .gr .item .tit .tit_sel {
  z-index: 100;
  display: none;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  padding-top: 1px;
}
.conton .box .gr .item .tit .tit_sel .tit_sel_box {
  width: 100%;
  height: auto;
  padding: 0.08rem 0.1rem;
  border-radius: 0.1rem;
  background: #fff;
  box-shadow: 0 0 0.2rem #b3d2fe50;
}
.conton .box .gr .item .tit .tit_sel .tit_sel_box .tit_sel_a {
  margin-bottom: 0.08rem;
}
.conton .box .gr .item .tit .tit_sel .tit_sel_box .tit_sel_a:hover p {
  background: #0068ff;
  color: #fff;
}
.conton .box .gr .item .tit .tit_sel .tit_sel_box .tit_sel_a p {
  transition: all 0.4s;
  border-radius: 0.1rem;
  padding: 0.1rem 0.24rem;
}
.conton .box .gr .item .conton_img {
  width: 100%;
  position: absolute;
  top: 64px;
  border-radius: 0.1rem;
  background: #fff;
  padding: 0.3rem;
}
@media (max-width: 767px) {
  .conton .box .gr .item .conton_img {
    position: initial;
  }
}
.conton .box .gr .item .conton_img .public-img {
  width: 100%;
}
.conttw {
  padding-top: 2rem;
  padding-bottom: 1.9rem;
  background: #f1f4fb;
}
@media (max-width: 991px) {
  .conttw {
    padding-top: 1rem;
  }
}
@media (max-width: 767px) {
  .conttw {
    padding-top: 0;
    padding-bottom: 1.2rem;
  }
}
.conttw .box ul li {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.1rem;
  margin-bottom: 0.1rem;
}
.conttw .box ul li .g_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.34rem 0.29rem 0.29rem;
  position: relative;
  cursor: pointer;
}
.conttw .box ul li .g_top .g_top_l {
  width: 80%;
}
.conttw .box ul li .g_top .g_top_l p {
  color: #021d49;
}
.conttw .box ul li .g_top .g_gb i {
  flex-shrink: 0;
  display: flex;
  width: 0.17rem;
  height: auto;
}
@media (max-width: 767px) {
  .conttw .box ul li .g_top .g_gb i {
    width: 0.2rem;
  }
}
.conttw .box ul li .g_top .g_gb i svg,
.conttw .box ul li .g_top .g_gb i img {
  width: 100%;
  height: auto;
}
.conttw .box ul li .g_top .g_gb i svg path,
.conttw .box ul li .g_top .g_gb i img path {
  fill: #021d49;
}
.conttw .box ul li .g_xia {
  display: none;
  border-top: 2px solid #0068ff;
}
.conttw .box ul li .g_xia .item {
  min-height: 0.52rem;
  border-bottom: 1px solid #eceef0;
  display: flex;
}
.conttw .box ul li .g_xia .item .item_box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  padding: 0.1rem 0.3rem;
  border-right: 1px solid #eceef0;
  word-break: break-all;
}
.conttw .box ul li .g_xia .item .item_box p {
  text-align: center;
  color: #475468;
}
@media (max-width: 767px) {
  .conttw .box ul li .g_xia .item .item_box p {
    font-size: 12px;
  }
}
.conttw .box ul li .g_xia .item .item_box i {
  flex-shrink: 0;
  display: flex;
  width: auto;
  height: 12px;
}
@media (max-width: 767px) {
  .conttw .box ul li .g_xia .item .item_box i {
    height: 9px;
  }
}
.conttw .box ul li .g_xia .item .item_box i svg,
.conttw .box ul li .g_xia .item .item_box i img {
  height: 100%;
  width: auto;
}
.conttw .box ul li .g_xia .item .item_box i svg path,
.conttw .box ul li .g_xia .item .item_box i img path {
  fill: #0068ff;
}
/* 硬件产品详情页 */
.pub_btn_jia:hover i {
  transform: translateX(0px);
}
.pub_btn_jia i {
  width: 12px;
}
@media (max-width: 767px) {
  .sub_banner_proinfo {
    height: 12rem;
  }
}
.sub_banner_proinfo .sub_banner_txt .container {
  padding: 80px 0 0;
}
@media screen and (max-width: 1440px) {
  .sub_banner_proinfo .sub_banner_txt .container {
    padding: 60px 0 0;
  }
}
.sub_banner_proinfo .sub_banner_txt .container .ban_l .ban_l_a .pub_btn5 p {
  color: #333;
}
.sub_banner_proinfo .sub_banner_txt .container .ban_l .ban_l_a .pub_btn5 i svg path,
.sub_banner_proinfo .sub_banner_txt .container .ban_l .ban_l_a .pub_btn5 i img path {
  fill: #333;
}
.sub_banner_proinfo .sub_banner_txt .container .ban_r {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .sub_banner_proinfo .sub_banner_txt .container .ban_r {
    justify-content: center;
  }
}
.sub_banner_proinfo .sub_banner_txt .container .ban_r .ban_r_box {
  position: relative;
  /* margin: 0.4rem 0 0; */
}
@media (max-width: 767px) {
  .sub_banner_proinfo .sub_banner_txt .container .ban_r .ban_r_box {
    margin-bottom: 0.7rem;
  }
}
.sub_banner_proinfo .sub_banner_txt .container .ban_r .ban_r_box .proinfo_tswi {
  background: #fff;
  border-radius: 0.1rem;
  width: 6rem;
  height: 6rem;
}
.sub_banner_proinfo .sub_banner_txt .container .ban_r .ban_r_box .g_qie .pub_prev {
  left: -1.17rem;
}
.sub_banner_proinfo .sub_banner_txt .container .ban_r .ban_r_box .g_qie .pub_next {
  right: -1.17rem;
}
.sub_banner_proinfo .sub_banner_txt .container .ban_r .ban_r_box .swip2_pag {
  bottom: -0.45rem;
}
@media (max-width: 767px) {
  .sub_banner_proinfo .sub_banner_txt .container .ban_r .ban_r_box .swip2_pag {
    bottom: -0.6rem;
  }
}
.sub_banner_proinfo .sub_banner_txt .container .ban_r .ban_r_box .swip2_pag span {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 0.1rem;
  position: relative;
}
@media (max-width: 767px) {
  .sub_banner_proinfo .sub_banner_txt .container .ban_r .ban_r_box .swip2_pag span {
    width: 6px;
    height: 6px;
    margin: 0 0.15rem;
  }
}
.sub_banner_proinfo .sub_banner_txt .container .ban_r .ban_r_box .swip2_pag span::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #0068ff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .sub_banner_proinfo .sub_banner_txt .container .ban_r .ban_r_box .swip2_pag span::after {
    width: 18px;
    height: 18px;
  }
}
.sub_banner_proinfo .sub_banner_txt .container .ban_r .ban_r_box .swip2_pag .swiper-pagination-bullet-active {
  background: #0068ff;
}
.sub_banner_proinfo .sub_banner_txt .container .ban_r .ban_r_box .swip2_pag .swiper-pagination-bullet-active::after {
  opacity: 1;
}
.sub_banner_proinfo .sub_banner_txt .container .ban_r .swiper-slide {
  /* padding: 0.3rem; */
}
.sub_banner_proinfo .sub_banner_txt .container .ban_r .swiper-slide .proinfo_tswi_img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub_banner_proinfo .sub_banner_txt .container .ban_r .swiper-slide .proinfo_tswi_img img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.proinfoon .item {
  padding: 0.72rem 0 0.85rem;
}
.proinfoon .item:nth-child(2n) {
  background: #f1f4fb;
}
.proinfoon .item.item5 .box .gdata li {
  width: 50%;
}
@media (max-width: 991px) {
  .proinfoon .item.item5 .box .gdata li {
    width: 100%;
  }
}
.proinfoon .item.item5 .box .gdata li .gl {
  width: 45%;
}
@media (max-width: 991px) {
  .proinfoon .item.item5 .box .gdata li .gl {
    width: 70%;
  }
}
.proinfoon .item .box .pub_title {
  text-align: left;
}
.proinfoon .item .box .gdata {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.38rem;
}
.proinfoon .item .box .gdata li {
  border-bottom: 1px solid #e0e4ec;
  padding: 0.05rem 0 0;
  width: 100%;
  display: flex;
}
@media (max-width: 767px) {
  .proinfoon .item .box .gdata li {
    width: 100%;
  }
}
.proinfoon .item .box .gdata li:nth-child(1) {
  /* border-top: 2px solid @color1; */
}
.proinfoon .item .box .gdata li:nth-child(2) {
  /* border-top: 1px solid #e0e4ec; */
}
@media (max-width: 767px) {
  .proinfoon .item .box .gdata li:nth-child(2) {
    border-top: none;
  }
}
.proinfoon .item .box .gdata li .gl {
  padding-right: 0.2rem;
  width: 28%;
}
@media (max-width: 767px) {
  .proinfoon .item .box .gdata li .gl {
    width: 45%;
  }
}
.proinfoon .item .box .gdata li .gl p {
  color: #021d49;
  margin-bottom: 0.05rem;
  line-height: 1.625;
}
@media (max-width: 991px) {
  .proinfoon .item .box .gdata li .gl p {
    word-break: break-all;
  }
}
.proinfoon .item .box .gdata li .gr {
  padding-right: 0.2rem;
  width: 52%;
}
@media (max-width: 767px) {
  .proinfoon .item .box .gdata li .gr {
    width: 55%;
  }
}
.proinfoon .item .box .gdata li .gr p {
  color: #475468;
  margin-bottom: 0.1rem;
  line-height: 1.625;
}
@media (max-width: 991px) {
  .proinfoon .item .box .gdata li .gr p {
    word-break: break-all;
  }
}
/* 智能硬件聚合页 */
.har_t {
  display: flex;
  align-items: center;
  height: 0.8rem;
  background: #fff;
}
@media (max-width: 767px) {
  .har_t {
    position: initial;
  }
}
.har_t .container {
  height: 100%;
}
.har_t .container .box {
  overflow: auto;
  height: 100%;
  display: flex;
  align-items: center;
}
.har_t a {
  flex-shrink: 0;
  margin-right: 0.55rem;
  color: #475468;
  transition: all 0.4s;
}
.har_t a.on {
  color: #0068ff;
}
.haron {
  background: #f1f4fb;
  padding: 1.2rem 0 1rem;
}
.haron .haron_tit {
  align-items: center;
  justify-content: space-between;
  display: flex;
}
.haron .haron_tit .pub_title {
  text-align: left;
}
@media (max-width: 767px) {
  .haron .haron_tit .pub_title {
    padding: 0;
  }
}
.haron .box {
  margin-top: 0.78rem;
}
.haron .box .bbox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.11rem;
}
.haron .box .bbox .item {
  width: calc(1/3*100%);
  margin-bottom: 0.3rem;
  padding: 0 0.11rem;
}
@media (max-width: 991px) {
  .haron .box .bbox .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .haron .box .bbox .item {
    margin-bottom: 0.2rem;
  }
}
.haron .box .bbox .item:hover .itembox .img {
  box-shadow: 0 0 0.59rem rgba(0, 0, 0, 0.18);
}
.haron .box .bbox .item:hover .itembox .public-img img {
  transform: scale(1.05);
}
.haron .box .bbox .item:hover .itembox .txt h3 {
  color: #0068ff;
}
.haron .box .bbox .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
.haron .box .bbox .item .itembox .img {
  transition: all 0.4s;
  background: #fff;
  border-radius: 0.1rem;
  padding: 0.2rem;
}
.haron .box .bbox .item .itembox .public-img:before {
  padding-top: 75%;
}
.haron .box .bbox .item .itembox .txt {
  text-align: center;
  padding: 0.26rem 0;
}
.haron .box .bbox .item .itembox .txt h3 {
  transition: all 0.4s;
  color: #475468;
  font-size: 16px;
}
@media (max-width: 1260px) {
  .haron .box .bbox .item .itembox .txt h3 {
    font-size: 14px;
  }
}
.haron .box .page {
  margin-top: 0.26rem;
}
.page {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page a {
  height: 0.48rem;
  min-width: 0.48rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.01rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 50%;
  color: #666;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page a {
    font-size: 0.28rem;
    height: 0.66rem;
    min-width: 0.66rem;
  }
}
.page a.prev {
  background: #fff;
}
.page a.prev img,
.page a.prev svg {
  transform: rotate(180deg);
}
.page a.next {
  background: #fff;
}
.page a:hover {
  color: #0068ff !important;
}
.page a:hover svg path {
  fill: #0068ff;
}
.page a img,
.page a svg {
  width: 11px;
  height: auto;
}
@media (max-width: 767px) {
  .page a img,
  .page a svg {
    width: 8px;
  }
}
.page a .img2 {
  display: none;
}
.page a svg path {
  fill: #333;
}
.page .active {
  color: #0068ff;
}
.page .active p,
.page .active a {
  color: #0068ff;
}
/* 解决方案聚合页 */
.sol_box {
  background: #f1f4fb;
}
.sol_box .saas_item {
  padding: 1.15rem 0 0;
}
.sol_box .saas_item:last-child {
  padding: 1.15rem 0 1.8rem;
}
.sol_box .saas_item .pub_title {
  text-align: left;
}
.sol_box .saas_item .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.1rem;
  margin-top: 0.56rem;
}
.sol_box .saas_item .box .item {
  width: 33.33%;
  margin-bottom: 0.2rem;
  padding: 0 0.1rem;
}
@media (max-width: 991px) {
  .sol_box .saas_item .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .sol_box .saas_item .box .item {
    width: 100%;
  }
}
.sol_box .saas_item .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.sol_box .saas_item .box .item .itembox:hover .gyc {
  opacity: 1;
}
.sol_box .saas_item .box .item .itembox .gxs {
  overflow: hidden;
  border-radius: 0.1rem;
  position: relative;
  width: 100%;
  height: 100%;
}
.sol_box .saas_item .box .item .itembox .gxs .public-img:before {
  padding-top: 107.49464668%;
}
.sol_box .saas_item .box .item .itembox .gxs .txt {
  display: flex;
  align-items: flex-end;
  padding: 0.4rem 0.42rem;
  z-index: 10;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.sol_box .saas_item .box .item .itembox .gxs .txt h3 {
  color: #fff;
}
.sol_box .saas_item .box .item .itembox .gyc {
  opacity: 0;
  transition: all 0.4s;
  overflow: hidden;
  border-radius: 0.1rem;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: url(../images/saas6.jpg) no-repeat;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.54rem 0.44rem;
}
.sol_box .saas_item .box .item .itembox .gyc .txt p {
  margin-top: 0.2rem;
  opacity: 0.6;
}
/* 解决方案聚合页 */
.solinfoon {
  padding: 1.16rem 0;
}
.solinfoon .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.14rem;
  margin-top: 0.75rem;
}
.solinfoon .box .item {
  width: 25%;
  margin-bottom: 0.25rem;
  padding: 0 0.14rem;
}
@media (max-width: 991px) {
  .solinfoon .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .solinfoon .box .item {
    width: 100%;
  }
}
.solinfoon .box .item:hover .itembox {
  border-color: #0068ff;
  box-shadow: 0 7px 0.37rem rgba(0, 104, 255, 0.48);
}
.solinfoon .box .item:hover .itembox .gyc {
  opacity: 1;
}
.solinfoon .box .item:hover .itembox .gxs .g_svg {
  box-shadow: none;
}
.solinfoon .box .item:hover .itembox .gxs .g_svg svg path {
  fill: #0068ff;
}
.solinfoon .box .item:hover .itembox .gxs .txt h3 {
  color: #fff;
}
.solinfoon .box .item:hover .itembox .gxs .txt p {
  color: #fff;
}
.solinfoon .box .item .itembox {
  transition: all 0.4s;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #eeeeee;
  border-radius: 0.1rem;
  padding: 0.4rem;
  position: relative;
}
.solinfoon .box .item .itembox .gxs {
  z-index: 20;
  overflow: hidden;
  border-radius: 0.1rem;
  position: relative;
  width: 100%;
  height: 100%;
}
.solinfoon .box .item .itembox .gxs .g_svg {
  background: #fff;
  margin-bottom: 0.34rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .solinfoon .box .item .itembox .gxs .g_svg {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.solinfoon .box .item .itembox .gxs .g_svg svg,
.solinfoon .box .item .itembox .gxs .g_svg img {
  width: 48%;
  height: 48%;
}
.solinfoon .box .item .itembox .gxs .g_svg svg path,
.solinfoon .box .item .itembox .gxs .g_svg img path {
  fill: #475468;
  transition: all 0.4s;
}
.solinfoon .box .item .itembox .gxs .txt h3 {
  margin-bottom: 0.12rem;
  color: #021d49;
  font-weight: bold;
  transition: all 0.4s;
}
.solinfoon .box .item .itembox .gxs .txt p {
  color: #475468;
  transition: all 0.4s;
}
.solinfoon .box .item .itembox .gyc {
  opacity: 0;
  transition: all 0.4s;
  overflow: hidden;
  border-radius: 0.07rem;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: url(../images/solinfo2.jpg) no-repeat;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.54rem 0.44rem;
}
.solinfotw .box .saasth_box .saasth_item .gl .l_item .gl_tw i {
  width: 0.3rem;
}
.solinfoth {
  padding: 1.56rem 0;
}
@media (max-width: 767px) {
  .solinfoth {
    padding: 1.2rem 0;
  }
}
.solinfoth .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.1rem;
  margin-top: 0.82rem;
}
.solinfoth .box .item {
  min-height: 2rem;
  width: 50%;
  margin-bottom: 0.2rem;
  padding: 0 0.1rem;
}
@media (max-width: 991px) {
  .solinfoth .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .solinfoth .box .item {
    width: 100%;
    min-height: 3rem;
  }
}
.solinfoth .box .item:hover .itembox {
  background: #0068ff;
  border-color: #0068ff;
  box-shadow: 0 7px 0.37rem rgba(0, 104, 255, 0.48);
}
.solinfoth .box .item:hover .itembox .g_svg {
  box-shadow: none;
}
.solinfoth .box .item:hover .itembox .g_svg svg path {
  fill: #0068ff;
}
.solinfoth .box .item:hover .itembox .txt h3 {
  color: #fff;
}
.solinfoth .box .item:hover .itembox .txt p {
  color: #fff;
}
.solinfoth .box .item .itembox {
  transition: all 0.4s;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #eeeeee;
  border-radius: 0.1rem;
  padding: 0.3rem 0.46rem 0.3rem 0.42rem;
  position: relative;
  background: #f1f4fb;
}
.solinfoth .box .item .itembox .g_svg {
  flex-shrink: 0;
  background: #fff;
  margin-right: 0.23rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .solinfoth .box .item .itembox .g_svg {
    width: 1.1rem;
    height: 1.1rem;
  }
}
.solinfoth .box .item .itembox .g_svg svg,
.solinfoth .box .item .itembox .g_svg img {
  width: 40%;
  height: 40%;
}
.solinfoth .box .item .itembox .g_svg svg path,
.solinfoth .box .item .itembox .g_svg img path {
  fill: #475468;
  transition: all 0.4s;
}
.solinfoth .box .item .itembox .txt h3 {
  margin-bottom: 0.12rem;
  color: #021d49;
  font-weight: bold;
  transition: all 0.4s;
}
.solinfoth .box .item .itembox .txt p {
  color: #475468;
  transition: all 0.4s;
  opacity: 0.6;
}
.solinfo {
  padding: 1.36rem 0 1.4rem;
}
.solinfo .box {
  overflow: hidden;
  margin-top: 0.78rem;
}
.solinfo .box .swiper {
  overflow: initial;
}
.solinfo .box .solinfo_swi {
  overflow: hidden;
  border-radius: 0.1rem;
  border: 1px solid #eeeeee;
}
.solinfo .box .solinfo_swi:hover .public-img img {
  transform: scale(1.05);
}
.solinfo .box .solinfo_swi:hover .txt h3 {
  color: #0068ff;
}
.solinfo .box .solinfo_swi .public-img:before {
  padding-top: 66.38115632%;
}
.solinfo .box .solinfo_swi .txt {
  text-align: center;
  padding: 0.28rem 0.2rem 0.35rem;
}
.solinfo .box .solinfo_swi .txt h3 {
  transition: all 0.4s;
  color: #021d49;
  font-weight: bold;
}
.solinfo .box .solinfo_swi .txt p {
  margin-top: 0.1rem;
}
/* 案例中心聚合页 */
.case_banner {
  background: #f1f4fb;
}
@media screen and (max-width: 1440px) {
  .case_banner {
    margin-top: 0;
  }
}
.case_banner .sub_banner_txt .container .ban_l .case_banner_logo {
  margin-bottom: 0.18rem;
}
.case_banner .sub_banner_txt .container .ban_l .case_banner_logo img {
  height: 0.42rem;
}
@media (max-width: 767px) {
  .case_banner .sub_banner_txt .container .ban_l .case_banner_logo img {
    height: 0.64rem;
  }
}
.case_banner .sub_banner_txt .container .ban_l .tit h1 {
  line-height: 1.2;
  font-weight: bold;
  color: #021d49;
}
.case_banner .sub_banner_txt .container .ban_r {
  width: 47.22222222%;
}
@media (max-width: 767px) {
  .case_banner .sub_banner_txt .container .ban_r {
    margin-left: 0;
    width: 100%;
  }
}
.case_banner .sub_banner_txt .container .ban_r .public-img {
  border-radius: 0.1rem;
  width: 100%;
}
.case_banner .sub_banner_txt .container .ban_r .public-img:before {
  padding-top: 58.82352941%;
}
.caseon {
  padding: 1.15rem 0 1.2rem;
}
.caseon .caseon_lab {
  margin-top: 0.58rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.caseon .caseon_lab .item {
  min-height: 0.6rem;
  width: calc(50% - 0.2rem);
  background: #f1f4fb;
  border-left: 4px solid #475468;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
  padding: 0.1rem 0.17rem;
}
@media (max-width: 1580px) {
  .caseon .caseon_lab .item {
    min-height: 0.9rem;
  }
}
@media (max-width: 767px) {
  .caseon .caseon_lab .item {
    width: 100%;
    min-height: 1.2rem;
    margin-bottom: 0.4rem;
  }
}
.caseon .caseon_lab .item span {
  padding-bottom: 2px;
  margin-right: 0.16rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  background: #475468;
}
@media (max-width: 1580px) {
  .caseon .caseon_lab .item span {
    padding-bottom: 0;
    width: 0.35rem;
    height: 0.35rem;
  }
}
.caseon .box {
  display: flex;
  justify-content: space-between;
  margin-top: 1.1rem;
}
@media (max-width: 767px) {
  .caseon .box {
    flex-direction: column-reverse;
  }
}
.caseon .box .gl {
  width: 47.01388889%;
}
@media (max-width: 767px) {
  .caseon .box .gl {
    width: 100%;
  }
}
.caseon .box .gl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.caseon .box .gr {
  width: 44.30555556%;
  object-fit: contain;
  margin: 0.45rem 0.34rem 0 0;
}
@media (max-width: 767px) {
  .caseon .box .gr {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}
.caseon .box .gr .gr_box {
  padding: 0.25rem;
  border-radius: 5px;
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: 1px solid #0068ff;
  border-left: 5px solid #0068ff;
  box-shadow: 0 7px 0.37rem rgba(0, 104, 255, 0.07);
}
@media (max-width: 1260px) {
  .caseon .box .gr .gr_box {
    padding: 0.38rem 0.3rem 0.18rem 0.36rem;
  }
}
.caseon .box .gr .gr_box .item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.2rem;
  width: calc(50% - 0.25rem);
}
.caseon .box .gr .gr_box .item i {
  margin-top: 0.07rem;
  margin-right: 0.18rem;
  flex-shrink: 0;
  display: flex;
  width: 0.16rem;
  height: auto;
}
@media (max-width: 1580px) {
  .caseon .box .gr .gr_box .item i {
    margin-top: 0.08rem;
  }
}
.caseon .box .gr .gr_box .item i svg,
.caseon .box .gr .gr_box .item i img {
  width: 100%;
  height: auto;
}
.caseon .box .gr .gr_box .item i svg path,
.caseon .box .gr .gr_box .item i img path {
  fill: #0068ff;
}
.caseon .box .gr .gr_box .item p {
  color: #021d49;
}
.casetw {
  background: #f1f4fb;
  padding: 1.15rem 0 1.2rem;
}
.casetw .pub_title {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .casetw .pub_title {
    flex-direction: column;
  }
}
.casetw .pub_title p {
  margin-top: 0.18rem;
  color: #021d49;
  line-height: 1.9;
  width: 46.875%;
}
@media (max-width: 767px) {
  .casetw .pub_title p {
    width: 100%;
    line-height: 1.5;
  }
}
.casetw .box {
  display: flex;
  justify-content: space-between;
  margin-top: 0.56rem;
}
@media (max-width: 767px) {
  .casetw .box {
    flex-wrap: wrap;
  }
}
.casetw .box .img {
  width: 48.19444444%;
}
@media (max-width: 767px) {
  .casetw .box .img {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.casetw .box .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.caseth {
  padding: 1.15rem 0 1.05rem;
}
@media (max-width: 767px) {
  .caseth {
    padding: 1.15rem 0 0.6rem;
  }
}
.caseth .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.11rem;
  margin-top: 0.6rem;
}
.caseth .box .item {
  width: 33.33%;
  margin-bottom: 0.2rem;
  padding: 0 0.11rem;
}
@media (max-width: 991px) {
  .caseth .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .caseth .box .item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.caseth .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
.caseth .box .item .itembox .public-img {
  padding: 0.3rem;
  border-radius: 0.1rem;
  border: 1px solid #cad4e4;
}
.caseth .box .item .itembox .txt {
  text-align: center;
}
.caseth .box .item .itembox .txt h3 {
  margin-top: 0.26rem;
  color: #475468;
}
.casefo {
  padding: 1.15rem 0 0.7rem;
  background: #f1f4fb;
}
.casefo_box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.22rem;
  margin-top: 0.53rem;
}
.casefo_box .item {
  width: 33.33%;
  margin-bottom: 0.4rem;
  padding: 0 0.22rem;
}
@media (max-width: 991px) {
  .casefo_box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .casefo_box .item {
    width: 100%;
  }
}
.casefo_box .item:hover .itembox {
  background: #0068ff;
  box-shadow: 0 7px 0.37rem rgba(0, 104, 255, 0.48);
}
.casefo_box .item:hover .itembox .g_logo {
  padding: 2px 0.1rem;
}
.casefo_box .item:hover .itembox .g_logo img {
  transform: scale(0.7);
}
.casefo_box .item:hover .itembox .txt h3 {
  color: #fff;
}
.casefo_box .item:hover .itembox .txt .g_lab span {
  color: rgba(255, 255, 255, 0.5);
  background: #0a6eff;
}
.casefo_box .item .itembox {
  transition: all 0.4s;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 0.1rem;
  padding: 0.43rem 0.18rem 0.3rem 0.38rem;
}
.casefo_box .item .itembox .g_logo {
  padding: 2px 0;
  height: 0.58rem;
  border-radius: 0.1rem;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .casefo_box .item .itembox .g_logo {
    height: 0.8rem;
  }
}
.casefo_box .item .itembox .g_logo img {
  transition: all 0.4s;
  max-height: 100%;
}
.casefo_box .item .itembox .txt {
  margin-top: 0.2rem;
}
.casefo_box .item .itembox .txt h3 {
  font-weight: bold;
  color: #021d49;
  transition: all 0.4s;
}
.casefo_box .item .itembox .txt .g_lab {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.26rem;
}
.casefo_box .item .itembox .txt .g_lab span {
  transition: all 0.4s;
  margin: 0 0.1rem 0.1rem 0;
  padding: 0.09rem 0.13rem;
  background: #f7f7f7;
  color: #999;
}
/* 案例中心聚合页 */
.caseinfo {
  background: #f1f4fb;
  padding: 1.18rem 0 2rem;
}
.caseinfo .casefo_box {
  margin-top: 0.38rem;
}
.caseinfo .page {
  margin-top: 0.4rem;
}
/* 新闻列表 */
.search_box {
  border: 1px solid #eeeeee;
  width: 4.87rem;
  max-width: 100%;
  height: 0.6rem;
  background: #fff;
  border-radius: 0.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .search_box {
    width: 60%;
    height: 0.8rem;
  }
}
.search_box input {
  padding: 0 0.3rem;
  width: 100%;
  color: #333;
}
.search_box a {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.3rem;
  width: 0.2rem;
  height: auto;
}
@media (max-width: 767px) {
  .search_box a {
    width: 0.3rem;
  }
}
.search_box a svg {
  width: 100%;
  height: auto;
}
.search_box a svg path {
  fill: #30333f;
}
.newon {
  background: #f1f4fb;
  padding: 1.2rem 0 0;
}
.newon .newon_top {
  display: flex;
}
.newon .newon_top .sot_select_nr {
  margin-right: 0.1rem;
}
@media (max-width: 767px) {
  .newon .newon_top .sot_select_nr {
    width: 40%;
    height: 0.8rem;
  }
}
.newon .box {
  position: relative;
  margin-top: 0.43rem;
}
.newon .box .newon_box {
  box-shadow: 0 0 0.13rem rgba(74, 70, 69, 0.1);
  border-radius: 0.1rem;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .newon .box .newon_box {
    flex-direction: column;
  }
}
.newon .box .newon_box .public-img {
  width: 50%;
}
@media (max-width: 767px) {
  .newon .box .newon_box .public-img {
    width: 100%;
  }
}
.newon .box .newon_box .public-img:before {
  padding-top: 72.77777778%;
}
.newon .box .newon_box .txt {
  width: 50%;
  background: #fff;
  padding: 0.75rem 0.63rem 0.5rem;
}
@media (max-width: 767px) {
  .newon .box .newon_box .txt {
    width: 100%;
    padding: 0.3rem;
  }
}
.newon .box .newon_box .txt .txt_t span {
  color: #8d959a;
}
.newon .box .newon_box .txt .txt_t h3 {
  line-height: 1.33;
  margin-top: 0.26rem;
  font-weight: bold;
  color: #021d49;
}
.newon .box .newon_box .txt .txt_t .g_p {
  margin-top: 0.24rem;
}
.newon .box .newon_box .txt .txt_t .g_p p {
  color: #475468;
}
.newon .box .newon_box .txt .pub_btn {
  margin-top: 0.52rem;
}
.newon .box .g_qie .pub_prev {
  left: -1.22rem;
}
.newon .box .g_qie .pub_next {
  right: -1.22rem;
}
.sot_select_nr {
  position: relative;
  min-width: 2.22rem;
}
.sot_select_nr .sel_text_x {
  background: #fff;
  width: 100%;
  height: 0.6rem;
  border: 1px solid #eeeeee;
  padding: 0 0.3rem 0 0.2rem;
  border-radius: 0.05rem;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sot_select_nr .sel_text_x {
    height: 0.8rem;
  }
}
.sot_select_nr .sel_text_x svg,
.sot_select_nr .sel_text_x img {
  width: 13px;
  height: auto;
  flex-shrink: 0;
  z-index: 100;
}
.sot_select_nr .sel_text_x svg path,
.sot_select_nr .sel_text_x img path {
  fill: #cacdd3;
}
.sot_select_nr .sel_text_x p {
  color: #999999;
}
.sot_select_nr .sel_text_box {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  position: absolute;
  left: 0;
  text-align: left;
  overflow: hidden;
  top: 100%;
  border: 1px solid #eeeeee;
  z-index: 200;
  display: none;
  max-height: 160px;
  overflow-y: auto;
}
.sot_select_nr .sel_text_box a {
  text-decoration: initial;
  transition: all 0.4s;
  color: #999;
  padding: 7px 0 7px 0.2rem;
  display: block;
  cursor: pointer;
}
.sot_select_nr .sel_text_box a:hover {
  background: #0068ff;
  color: #fff;
}
.newtw {
  background: #f1f4fb;
  padding: 0.4rem 0 2rem;
}
.newtw .page {
  margin-top: 0.4rem;
}
.new_box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.22rem;
}
.new_box .item {
  width: 33.33%;
  margin-bottom: 0.45rem;
  padding: 0 0.22rem;
}
@media (max-width: 991px) {
  .new_box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .new_box .item {
    width: 100%;
  }
}
.new_box .item:hover .itembox .public-img img {
  transform: scale(1.05);
}
.new_box .item:hover .itembox .public-img:after {
  opacity: 1;
}
.new_box .item:hover .itembox .txt h3 {
  color: #0068ff !important;
}
.new_box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
.new_box .item .itembox .public-img {
  border-radius: 0.1rem;
}
.new_box .item .itembox .public-img:before {
  padding-top: 72.66666667%;
}
.new_box .item .itembox .public-img:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: url(../images/home9.png) no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all 0.4s;
}
.new_box .item .itembox .txt {
  margin-top: 0.28rem;
}
.new_box .item .itembox .txt span {
  color: #8d959a;
}
.new_box .item .itembox .txt h3 {
  transition: all 0.4s;
  margin-top: 0.1rem;
  color: #021d49;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.new_box .item .itembox .pub_btn {
  margin-top: 0.2rem;
}
/* 新闻详情页 */
.crumbs_box {
  padding: 0.3rem 0;
}
.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.crumbs p {
  display: flex;
  align-items: center;
}
.crumbs p > a {
  margin-right: 0.1rem;
  color: #8d959a;
}
@media (max-width: 767px) {
  .crumbs p > a {
    font-size: 14px;
    margin-bottom: 0.05rem;
  }
}
.crumbs p:last-child a {
  color: #0068ff;
}
.crumbs p:last-child svg,
.crumbs p:last-child i {
  display: none;
}
.crumbs p svg {
  width: 5px;
  height: auto;
  margin-right: 0.1rem;
}
.crumbs p svg path {
  fill: #666;
}
.crumbs p i {
  font-style: initial;
  opacity: 0.7;
  color: #8d959a;
  margin-right: 0.12rem;
}
.newsinfoon {
  padding: 0.3rem 0 0;
}
.newsinfoon .box {
  margin-top: 0.95rem;
}
.newsinfoon .box .tit {
  text-align: center;
}
.newsinfoon .box .tit h1 {
  color: #021d49;
  font-weight: bold;
}
.newsinfoon .box .tit .g_top {
  display: flex;
  justify-content: center;
  margin: 0.2rem 0 0.38rem;
}
.newsinfoon .box .tit .g_top p {
  color: #8d959a;
  margin: 0 0.23rem;
}
.newsinfoon .box .b_lab {
  padding-bottom: 0.36rem;
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
}
.newsinfoon .box .b_lab span {
  margin-right: 0.32rem;
}
.newsinfoon .box .g_fy {
  border-top: 1px solid #e8e8e8;
  padding-top: 0.3rem;
}
.newsinfoon .box .g_fy .g_fy_box {
  margin-bottom: 0.12rem;
  display: flex;
  align-items: center;
}
.newsinfoon .box .g_fy .g_fy_box p {
  flex-shrink: 0;
}
.newsinfoon .box .g_fy .g_fy_box a {
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  transition: all 0.4s;
}
.newsinfoon .box .g_fy .g_fy_box .a1:hover {
  color: #0068ff;
  text-decoration: underline;
}
.newsinfotw {
  padding: 1rem 0 1.45rem;
}
.newsinfotw .box {
  margin: 0 -0.33rem;
  margin-top: 0.55rem;
}
.newsinfotw .box .item {
  width: 50%;
  margin-bottom: 0.45rem;
  padding: 0 0.33rem;
}
@media (max-width: 991px) {
  .newsinfotw .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .newsinfotw .box .item {
    width: 100%;
  }
}
/* 常见问题 */
.faqon {
  padding: 0.8rem 0 2rem;
  background: #f1f4fb;
}
.faqon .page {
  margin-top: 0.7rem;
}
.faqon .search_box {
  border: 1px solid #eeeeee;
  width: 4.87rem;
  height: 0.6rem;
  background: #fff;
  border-radius: 0.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .faqon .search_box {
    width: 60%;
    height: 0.8rem;
  }
}
.faqon .search_box input {
  padding: 0 0.3rem;
  width: 100%;
  color: #333;
}
.faqon .search_box a {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.3rem;
  width: 0.2rem;
  height: auto;
}
@media (max-width: 767px) {
  .faqon .search_box a {
    width: 0.3rem;
  }
}
.faqon .search_box a svg {
  width: 100%;
  height: auto;
}
.faqon .search_box a svg path {
  fill: #30333f;
}
.faqon .box {
  margin-top: 0.4rem;
}
.faqon .box ul li {
  transition: all 0.4s;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.1rem;
  margin-bottom: 0.1rem;
}
.faqon .box ul li.on {
  margin-bottom: 0.2rem;
  box-shadow: 0 7px 0.37rem rgba(0, 104, 255, 0.06);
}
.faqon .box ul li.on .g_top .g_gb i {
  transform: rotate(180deg);
}
.faqon .box ul li .g_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.34rem 0.29rem 0.29rem;
  position: relative;
  cursor: pointer;
}
.faqon .box ul li .g_top .g_top_l {
  width: 80%;
}
.faqon .box ul li .g_top .g_top_l p {
  font-weight: bold;
  color: #021d49;
}
.faqon .box ul li .g_top .g_gb i {
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  width: 0.17rem;
  height: auto;
}
@media (max-width: 767px) {
  .faqon .box ul li .g_top .g_gb i {
    width: 0.2rem;
  }
}
.faqon .box ul li .g_top .g_gb i svg,
.faqon .box ul li .g_top .g_gb i img {
  width: 100%;
  height: auto;
}
.faqon .box ul li .g_top .g_gb i svg path,
.faqon .box ul li .g_top .g_gb i img path {
  fill: #021d49;
}
.faqon .box ul li .g_xia {
  display: none;
  border-top: 2px solid #0068ff;
  padding: 0.38rem 0.35rem;
}
.faqon .box ul li .g_xia .g_p p {
  line-height: 1.9;
}
/* 加入我们 */
.joion {
  padding: 1.35rem 0 1.4rem;
  background: #f1f4fb;
}
.joion .pub_title p {
  line-height: 1.9;
  padding: 0 2.2rem;
}
@media (max-width: 991px) {
  .joion .pub_title p {
    padding: 0;
    line-height: 1.5 !important;
  }
}
.joion .box {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.joion .box .item {
  cursor: pointer;
  margin-bottom: 0.2rem;
  border-radius: 0.1rem;
  background: #fff;
  padding: 0.75rem 0.78rem 0.7rem;
  width: calc(50% - 0.1rem);
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .joion .box .item {
    width: 100%;
    padding: 0.4rem;
    margin-bottom: 0.4rem;
  }
}
.joion .box .item:hover {
  background: #0068ff;
}
.joion .box .item:hover .g_h3 h3 {
  color: #fff;
}
.joion .box .item:hover .g_h3 i {
  background: #fff;
}
.joion .box .item:hover .g_p p {
  color: #fff;
}
.joion .box .item .g_h3 {
  margin-bottom: 0.27rem;
}
.joion .box .item .g_h3 h3 {
  transition: all 0.4s;
  margin-bottom: 0.24rem;
  color: #021d49;
  font-weight: bold;
}
.joion .box .item .g_h3 i {
  transition: all 0.4s;
  width: 0.3rem;
  height: 1px;
  background: #0068ff;
  display: block;
}
.joion .box .item .g_p p {
  transition: all 0.4s;
  color: #475468;
  margin-bottom: 0.06rem;
}
.joitw {
  padding: 1.5rem 0 1.6rem;
}
.joitw .pub_title p {
  line-height: 1.9;
}
@media (max-width: 991px) {
  .joitw .pub_title p {
    line-height: 1.5;
  }
}
.joitw .box {
  margin-top: 0.54rem;
}
.join .pub_title p {
  margin-top: 0.52rem;
  line-height: 1.9;
}
@media (max-width: 767px) {
  .join .pub_title p {
    line-height: 1.5 !important;
  }
}
.joith {
  padding: 1.55rem 0 0;
  background: #f1f4fb;
}
.joith .box {
  position: relative;
  margin-top: 0.8rem;
}
.joith .box .swiper .joith_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 0.1rem;
  padding: 0.6rem 0.48rem 0.68rem;
}
.joith .box .swiper .joith_box .g_svg {
  margin-bottom: 0.42rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #475468;
}
.joith .box .swiper .joith_box .g_svg img,
.joith .box .swiper .joith_box .g_svg svg {
  width: 36%;
  height: auto;
}
.joith .box .swiper .joith_box .g_svg img path,
.joith .box .swiper .joith_box .g_svg svg path {
  fill: #fff;
}
.joith .box .swiper .joith_box .txt h3 {
  margin-bottom: 0.15rem;
  color: #021d49;
  font-weight: bold;
}
.joith .box .swiper .joith_box .txt p {
  color: #475468;
}
.joith .box .g_qie .pub_prev {
  left: -1.22rem;
}
.joith .box .g_qie .pub_next {
  right: -1.22rem;
}
/* 员工风采 */
.joifo {
  padding: 1.55rem 0 1.2rem;
  background: #f1f4fb;
}
.joifo .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.24rem;
  margin-top: 0.75rem;
}
.joifo .box .item {
  width: 33.33%;
  margin-bottom: 0.4rem;
  padding: 0 0.24rem;
}
@media (max-width: 991px) {
  .joifo .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .joifo .box .item {
    width: 100%;
  }
}
.joifo .box .item:hover .itembox .img .public-img img {
  transform: scale(1.05);
}
.joifo .box .item:hover .itembox .txt {
  background: rgba(2, 29, 73, 0.7);
}
.joifo .box .item:hover .itembox .txt h3 {
  padding-top: 0;
}
.joifo .box .item:hover .itembox .txt p {
  opacity: 1;
}
.joifo .box .item .itembox {
  border-radius: 0.1rem;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.joifo .box .item .itembox .img {
  position: relative;
}
.joifo .box .item .itembox .img .public-img:before {
  padding-top: 75%;
}
.joifo .box .item .itembox .img .imgbj {
  width: 100%;
  position: absolute;
  bottom: 0;
  height: auto;
  left: 0;
  z-index: 10;
}
.joifo .box .item .itembox .txt {
  transition: all 0.4s;
  padding: 0.45rem 0.5rem;
  background: none;
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  z-index: 20;
}
@media (max-width: 767px) {
  .joifo .box .item .itembox .txt {
    background: rgba(2, 29, 73, 0.7);
  }
}
.joifo .box .item .itembox .txt h3 {
  padding-top: 65%;
  margin-bottom: 0.13rem;
  font-weight: bold;
  color: #fff;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .joifo .box .item .itembox .txt h3 {
    padding-top: 0;
  }
}
.joifo .box .item .itembox .txt p {
  padding: 0 0.7rem 0 0;
  color: #fff;
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .joifo .box .item .itembox .txt p {
    opacity: 1;
  }
}
.joifi {
  padding: 1.55rem 0 1.35rem;
  overflow: hidden;
}
.joifi .box {
  margin-top: 0.8rem;
  padding: 0 0.5rem;
}
.joifi .box .swiper {
  overflow: initial;
}
.joifi .box .swiper .swiper-slide-active .public-img {
  opacity: 1;
}
.joifi .box .public-img {
  transition: all 0.4s;
  opacity: 0.2;
  border-radius: 0.1rem;
}
.joifi .box .public-img:before {
  padding-top: 50.74626866%;
}
.joisi {
  padding: 1.55rem 0 1.7rem;
  background: #f1f4fb;
}
@media (max-width: 767px) {
  .joisi {
    padding: 1.2rem 0;
  }
}
.joisi .box {
  margin-top: 0.53rem;
}
.joisi .box .joisi_t {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .joisi .box .joisi_t {
    flex-direction: column;
  }
}
.joisi .box .joisi_t .gl {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .joisi .box .joisi_t .gl {
    justify-content: space-between;
  }
}
.joisi .box .joisi_t .gl .sot_select_nr {
  margin-bottom: 0.1rem;
  margin-right: 0.1rem;
  min-width: 2.35rem;
}
.joisi .box .joisi_t .gl .sot_select_nr:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .joisi .box .joisi_t .gl .sot_select_nr {
    min-width: 32%;
    margin-right: 1%;
  }
}
.joisi .box .joisi_t .gl .sot_select_nr .sel_text_x {
  border: none;
}
.joisi .box .joisi_t .gl .sot_select_nr .sel_text_x .sel_text_xp {
  color: #8d959a;
}
.joisi .box .joisi_t .gl .sot_select_nr .sel_text_x svg,
.joisi .box .joisi_t .gl .sot_select_nr .sel_text_x img {
  width: 7px;
}
.joisi .box .joisi_t .gl .sot_select_nr .sel_text_x svg path,
.joisi .box .joisi_t .gl .sot_select_nr .sel_text_x img path {
  fill: #666666;
}
.joisi .box .joisi_t .gr {
  flex-shrink: 0;
  margin-left: 0.4rem;
}
@media (max-width: 991px) {
  .joisi .box .joisi_t .gr {
    margin-left: 0;
  }
}
.joisi .box .joisi_t .gr .search_box {
  width: 4.3rem;
  border: none;
  margin-right: 0.38rem;
}
@media (max-width: 767px) {
  .joisi .box .joisi_t .gr .search_box {
    width: 100%;
  }
}
.joisi .box .joisi_box {
  margin-top: 0.53rem;
}
.joisi .box .joisi_box .g_tit p span {
  color: #0068ff;
}
.joisi .box .joisi_box .joisi_box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem;
  margin-top: 0.35rem;
}
.joisi .box .joisi_box .joisi_box .item {
  width: 33.33%;
  margin-bottom: 0.3rem;
  padding: 0 0.15rem;
}
@media (max-width: 991px) {
  .joisi .box .joisi_box .joisi_box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .joisi .box .joisi_box .joisi_box .item {
    width: 100%;
  }
}
.joisi .box .joisi_box .joisi_box .item:hover .itembox {
  box-shadow: 0 4px 14px rgba(173, 176, 185, 0.3);
}
.joisi .box .joisi_box .joisi_box .item:hover .itembox::after {
  opacity: 1;
}
.joisi .box .joisi_box .joisi_box .item .itembox {
  transition: all 0.4s;
  position: relative;
  min-height: 3.7rem;
  padding: 0.57rem 0.38rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 0.1rem;
  width: 100%;
  height: 100%;
}
@media (max-width: 1580px) {
  .joisi .box .joisi_box .joisi_box .item .itembox {
    min-height: 4.7rem;
  }
}
.joisi .box .joisi_box .joisi_box .item .itembox::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background: #0068ff;
  border-radius: 10px;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.4s;
}
.joisi .box .joisi_box .joisi_box .item .itembox .txt h3 {
  margin-bottom: 0.2rem;
  font-weight: bold;
  color: #021d49;
}
.joisi .box .joisi_box .joisi_box .item .itembox .txt .g_p p {
  color: #666;
  margin-bottom: 0.07rem;
}
.joisi .box .joisi_box .joisi_box .item .itembox .txt .g_p p span {
  color: #222;
}
.joisi .box .joisi_box .joisi_box .item .itembox .b_a {
  margin-top: 0.2rem;
  flex-shrink: 0;
  border-top: 1px solid #eee;
  padding: 0.27rem 0 0.33rem;
}
/* 开发者文档 */
.devon {
  background: #f1f4fb;
  padding: 1.4rem 0 1.7rem;
}
.devon .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .devon .box {
    flex-direction: column;
  }
}
.devon .box .gl {
  width: 22.22222222%;
}
@media (max-width: 767px) {
  .devon .box .gl {
    width: 100%;
  }
}
.devon .box .gl .search_box {
  width: 100%;
}
.devon .box .gl .search_box a {
  margin-right: 0.13rem;
}
.devon .box .gl .search_box input {
  padding: 0 0.18rem;
}
.devon .box .gl .devon_grade {
  overflow: auto;
  height: calc(100% - 0.8rem);
  background: #fff;
  border-radius: 4px;
  margin-top: 0.2rem;
}
@media (max-width: 767px) {
  .devon .box .gl .devon_grade {
    height: calc(100% - 1rem);
  }
}
.devon .box .gl .devon_grade .grade_one .grade_one_tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  transition: all 0.4s;
  padding: 0.15rem 0.18rem 0.15rem 0.21rem;
}
.devon .box .gl .devon_grade .grade_one .grade_one_tit.on {
  background: #0068ff;
}
.devon .box .gl .devon_grade .grade_one .grade_one_tit.on p,
.devon .box .gl .devon_grade .grade_one .grade_one_tit.on a {
  color: #fff;
}
.devon .box .gl .devon_grade .grade_one .grade_one_tit.on i svg path,
.devon .box .gl .devon_grade .grade_one .grade_one_tit.on i img path {
  fill: #fff;
}
.devon .box .gl .devon_grade .grade_one .grade_one_tit p,
.devon .box .gl .devon_grade .grade_one .grade_one_tit a {
  transition: all 0.4s;
  color: #021d49;
}
.devon .box .gl .devon_grade .grade_one .grade_one_tit i {
  flex-shrink: 0;
  display: flex;
  width: 0.13rem;
  height: 0.08rem;
}
@media (max-width: 767px) {
  .devon .box .gl .devon_grade .grade_one .grade_one_tit i {
    width: 0.16rem;
    height: 0.11rem;
  }
}
.devon .box .gl .devon_grade .grade_one .grade_one_tit i svg,
.devon .box .gl .devon_grade .grade_one .grade_one_tit i img {
  width: 100%;
  height: auto;
}
.devon .box .gl .devon_grade .grade_one .grade_one_tit i svg path,
.devon .box .gl .devon_grade .grade_one .grade_one_tit i img path {
  transition: all 0.4s;
  fill: #8d959a;
}
.devon .box .gl .devon_grade .grade_one .grade_two {
  padding: 0.1rem 0;
  display: none;
}
.devon .box .gl .devon_grade .grade_one .grade_two .grade_two_tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.15rem 0.18rem 0.15rem 0.43rem;
}
.devon .box .gl .devon_grade .grade_one .grade_two .grade_two_tit.on p,
.devon .box .gl .devon_grade .grade_one .grade_two .grade_two_tit.on a {
  color: #0068ff;
}
.devon .box .gl .devon_grade .grade_one .grade_two .grade_two_tit p,
.devon .box .gl .devon_grade .grade_one .grade_two .grade_two_tit a {
  color: #021d49;
  transition: all 0.4s;
}
.devon .box .gl .devon_grade .grade_one .grade_two .grade_two_tit i {
  flex-shrink: 0;
  display: flex;
  width: 0.13rem;
  height: auto;
}
.devon .box .gl .devon_grade .grade_one .grade_two .grade_two_tit i svg,
.devon .box .gl .devon_grade .grade_one .grade_two .grade_two_tit i img {
  width: 100%;
  height: auto;
}
.devon .box .gl .devon_grade .grade_one .grade_two .grade_two_tit i svg path,
.devon .box .gl .devon_grade .grade_one .grade_two .grade_two_tit i img path {
  fill: #8d959a;
  transition: all 0.4s;
}
.devon .box .gl .devon_grade .grade_one .grade_two .grade_three {
  display: none;
}
.devon .box .gl .devon_grade .grade_one .grade_two .grade_three a {
  transition: all 0.4s;
  padding: 0.05rem 0.18rem;
  padding-left: 0.63rem;
  color: #475468;
  display: block;
}
.devon .box .gl .devon_grade .grade_one .grade_two .grade_three a:hover {
  color: #4892ff;
}
.devon .box .gr {
  padding: 0.56rem 0.6rem 0.34rem;
  background: #fff;
  width: 76.11111111%;
}
@media (max-width: 767px) {
  .devon .box .gr {
    width: 100%;
    margin-top: 0.4rem;
  }
}
.devon .box .gr .item {
  margin-bottom: 0.73rem;
}
.devon .box .gr .item:last-child {
  margin-bottom: 0;
}
.devon .box .gr .item h2 {
  padding-bottom: 0.33rem;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 0.37rem;
  color: #021d49;
  font-weight: bold;
}
.devon .box .gr .item .public-content table tr th {
  background: #0068ff;
  color: #fff;
  text-align: left;
}
/* 联系我们 */
.conon {
  padding: 0 0 2rem;
  background: #f1f4fb;
}
.conon .box {
  border: 1px solid #eee;
  z-index: 10;
  padding: 0.96rem 0.71rem 1rem 0.58rem;
  margin-top: -0.66rem;
  background: #fff;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 767px) {
  .conon .box {
    flex-direction: column;
    padding: 0.4rem;
  }
}
.conon .box::after {
  content: '';
  position: absolute;
  width: calc(100% + 2px);
  height: 4px;
  background: #0068ff;
  border-radius: 10px;
  left: -1px;
  top: -1px;
  z-index: 10;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .conon .box::after {
    height: 2px;
  }
}
.conon .box h2 {
  padding-bottom: 0.33rem;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 0.37rem;
  color: #021d49;
  font-weight: bold;
}
.conon .box .gl {
  width: 45.95419847%;
}
@media (max-width: 991px) {
  .conon .box .gl {
    width: 100%;
  }
}
.conon .box .gl .glbox .item {
  margin-bottom: 0.4rem;
}
.conon .box .gl .glbox .item span {
  color: #8d959a;
}
.conon .box .gl .glbox .item .g_p {
  padding-right: 1.55rem;
  margin-top: 0.1rem;
}
.conon .box .gl .glbox .item .g_p p {
  font-weight: 300;
  color: #021d49;
}
.conon .box .gl .imgline {
  margin-bottom: 0.28rem;
  width: 100%;
}
.conon .box .gl .g_QRcode h3 {
  color: #021d49;
  font-weight: bold;
  margin-bottom: 0.28rem;
}
.conon .box .gl .g_QRcode .g_QRcode_box {
  display: flex;
}
.conon .box .gl .g_QRcode .g_QRcode_box .item {
  text-align: center;
  margin-right: 0.46rem;
}
.conon .box .gl .g_QRcode .g_QRcode_box .item .public-img {
  width: 123px;
}
.conon .box .gl .g_QRcode .g_QRcode_box .item .txt {
  margin-top: 0.3rem;
}
.conon .box .gl .g_QRcode .g_QRcode_box .item .txt h4 {
  color: #021d49;
}
.conon .box .gr {
  width: 46.10687023%;
}
@media (max-width: 991px) {
  .conon .box .gr {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.conon .box .gr form .inp {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .conon .box .gr form .inp {
    flex-direction: column;
  }
}
.conon .box .gr form .inp .inp_box {
  width: calc(50% - 0.2rem);
  margin-bottom: 0.26rem;
}
@media (max-width: 767px) {
  .conon .box .gr form .inp .inp_box {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.conon .box .gr form .inp .inp_box .inp_txt {
  margin-bottom: 0.2rem;
}
.conon .box .gr form .inp .inp_box .inp_txt p {
  color: #021d49;
  font-weight: bold;
}
.conon .box .gr form .inp .inp_box .inp_txt p span {
  color: #0068ff;
}
.conon .box .gr form .inp .inp_box input {
  padding: 0 0.2rem;
  width: 100%;
  height: 0.5rem;
  border: 1px solid #eeeeee;
  border-radius: 0.1rem;
}
@media (max-width: 767px) {
  .conon .box .gr form .inp .inp_box input {
    height: 0.8rem;
  }
}
.conon .box .gr form .inp .inp_box .sot_select_nr .sel_text_x {
  height: 0.5rem;
}
@media (max-width: 767px) {
  .conon .box .gr form .inp .inp_box .sot_select_nr .sel_text_x {
    height: 0.8rem;
  }
}
.conon .box .gr form .inp2 .inp_box {
  width: 100%;
}
.conon .box .gr form .inptext .inp_box textarea {
  border: 1px solid #eeeeee;
  border-radius: 0.1rem;
  width: 100%;
  height: 1.02rem;
  padding: 0.13rem 0.18rem;
}
@media (max-width: 767px) {
  .conon .box .gr form .inptext .inp_box textarea {
    height: 2.2rem;
  }
}
.conon .box .gr form .g_lab {
  margin-bottom: 0.25rem;
  padding-right: 0.1rem;
  color: #999999;
}
.conon .box .gr form .pub_btn {
  height: 0.55rem;
  padding: 0 0.65rem;
}
@media (max-width: 767px) {
  .conon .box .gr form .pub_btn {
    height: 0.8rem;
  }
}
/* 企业介绍 */
.about_sub_banner .sub_banner_txt .ban_l {
  margin: 0 0 1rem !important;
}
.about_sub_banner .sub_banner_txt .about_sub_banner_box {
  display: flex;
  position: absolute;
  right: 7.44791667%;
  bottom: 0;
}
@media (max-width: 767px) {
  .about_sub_banner .sub_banner_txt .about_sub_banner_box {
    right: 0;
  }
}
.about_sub_banner .sub_banner_txt .about_sub_banner_box .item {
  -webkit-backdrop-filter: saturate(100%) blur(3px);
  backdrop-filter: saturate(100%) blur(3px);
  padding: 0.4rem 0.28rem 0.4rem 0.43rem;
  width: 400px;
  border: 1px solid #3f77ac;
  transition: all 0.4s;
}
@media (max-width: 1260px) {
  .about_sub_banner .sub_banner_txt .about_sub_banner_box .item {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .about_sub_banner .sub_banner_txt .about_sub_banner_box .item {
    width: 50%;
    border-radius: 0 !important;
  }
}
.about_sub_banner .sub_banner_txt .about_sub_banner_box .item:first-child {
  border-radius: 0.1rem 0 0 0;
}
.about_sub_banner .sub_banner_txt .about_sub_banner_box .item:last-child {
  border-radius: 0 0.1rem 0 0;
}
.about_sub_banner .sub_banner_txt .about_sub_banner_box .item:hover {
  background: #0068ff;
  border-color: #0068ff;
}
.about_sub_banner .sub_banner_txt .about_sub_banner_box .item:hover .g_svg img path,
.about_sub_banner .sub_banner_txt .about_sub_banner_box .item:hover .g_svg svg path {
  fill: #0068ff;
}
.about_sub_banner .sub_banner_txt .about_sub_banner_box .item .g_svg {
  margin-bottom: 0.42rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
}
@media (max-width: 767px) {
  .about_sub_banner .sub_banner_txt .about_sub_banner_box .item .g_svg {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.about_sub_banner .sub_banner_txt .about_sub_banner_box .item .g_svg img,
.about_sub_banner .sub_banner_txt .about_sub_banner_box .item .g_svg svg {
  width: 52%;
  height: auto;
}
.about_sub_banner .sub_banner_txt .about_sub_banner_box .item .g_svg img path,
.about_sub_banner .sub_banner_txt .about_sub_banner_box .item .g_svg svg path {
  transition: all 0.4s;
  fill: #475468;
}
.about_sub_banner .sub_banner_txt .about_sub_banner_box .item .txt {
  margin-top: 0.36rem;
}
.about_sub_banner .sub_banner_txt .about_sub_banner_box .item .txt h3 {
  margin-bottom: 0.12rem;
  color: #fff;
}
.about_sub_banner .sub_banner_txt .about_sub_banner_box .item .txt p {
  color: #fff;
}
.aboon {
  background: #f1f4fb;
  padding: 1.15rem 0 1.56rem;
}
.aboon .container .aboon_nr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1260px) {
  .aboon .container .aboon_nr {
    flex-direction: column;
  }
}
.aboon .container .aboon_nr .gl {
  width: 50%;
  padding-right: 0.5rem;
}
@media (max-width: 1260px) {
  .aboon .container .aboon_nr .gl {
    width: 100%;
    padding-right: 0;
  }
}
.aboon .container .aboon_nr .gl .pub_title {
  text-align: left;
  margin-bottom: 0.3rem;
}
.aboon .container .aboon_nr .gr {
  width: 50%;
}
@media (max-width: 1260px) {
  .aboon .container .aboon_nr .gr {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.aboon .g_p {
  /* padding: 0 0.92rem; */
}
@media (max-width: 1260px) {
  .aboon .g_p {
    padding: 0;
  }
}
.aboon .g_p p {
  margin-bottom: 0.1rem;
  line-height: 1.9;
}
.aboon .video_box {
  /* padding: 0 0.78rem; */
  position: relative;
  /* margin-top: 0.77rem; */
}
@media (max-width: 1260px) {
  .aboon .video_box {
    padding: 0;
  }
}
.aboon .video_box .video_con {
  width: 100%;
}
.aboon .video_box .video_con img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboon .video_box .video_on {
  cursor: pointer;
  width: 0.55rem;
  height: 0.55rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.aboon .video_box .video_on i {
  flex-shrink: 0;
  display: flex;
  width: 100%;
  height: 100%;
}
.aboon .video_box .video_on i svg,
.aboon .video_box .video_on i img {
  width: 100%;
  height: 100%;
}
.aboon .video_box .video_on i svg path,
.aboon .video_box .video_on i img path {
  fill: #fff;
}
.aboon .box {
  margin-top: 0.56rem;
}
.aboon .box .aboon_box {
  display: flex;
  width: 100%;
  margin-top: 0.62rem;
}
@media (max-width: 767px) {
  .aboon .box .aboon_box {
    position: initial;
    transform: translate(0%, 0%);
    box-shadow: none;
    border-radius: 0;
    flex-wrap: wrap;
    height: auto;
  }
}
.aboon .box .aboon_box .item {
  height: 100%;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .aboon .box .aboon_box .item {
    width: 50%;
    justify-content: flex-start;
    padding: 0.4rem 0.2rem 0 0;
    height: auto;
  }
}
.aboon .box .aboon_box .item:hover .g_svg {
  border-color: transparent;
}
.aboon .box .aboon_box .item:hover .g_svg i {
  border-radius: 0;
  transition: all 0.4s;
}
.aboon .box .aboon_box .item:hover .g_svg i::after {
  opacity: 1;
}
.aboon .box .aboon_box .item:hover .g_svg i svg path,
.aboon .box .aboon_box .item:hover .g_svg i img path {
  fill: #fff;
}
.aboon .box .aboon_box .item:hover .txt .hont b {
  color: #0068ff;
}
.aboon .box .aboon_box .item:hover .txt .hont p {
  color: #0068ff;
}
.aboon .box .aboon_box .item:hover .txt .honb p {
  color: #0068ff;
}
.aboon .box .aboon_box .item .g_svg {
  margin-right: 0.16rem;
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid #0068ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .aboon .box .aboon_box .item .g_svg {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.aboon .box .aboon_box .item .g_svg i {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboon .box .aboon_box .item .g_svg i::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border-color: transparent;
  background: #0068ff;
  width: 0.44rem;
  height: 100%;
  opacity: 0;
}
@media (max-width: 767px) {
  .aboon .box .aboon_box .item .g_svg i::after {
    width: 0.6rem;
  }
}
.aboon .box .aboon_box .item .g_svg i svg,
.aboon .box .aboon_box .item .g_svg i img {
  position: relative;
  z-index: 10;
  width: auto;
  height: 40%;
}
.aboon .box .aboon_box .item .g_svg i svg path,
.aboon .box .aboon_box .item .g_svg i img path {
  transition: all 0.4s;
  fill: #0068ff;
}
.aboon .box .aboon_box .item .txt .hont {
  color: #021d49;
  line-height: 1.1;
  display: flex;
  align-items: center;
}
.aboon .box .aboon_box .item .txt .hont b,
.aboon .box .aboon_box .item .txt .hont p {
  transition: all 0.4s;
}
.aboon .box .aboon_box .item .txt .honb {
  color: #97a3b6;
}
.aboon .box .aboon_box .item .txt .honb p {
  transition: all 0.4s;
}
.abotw {
  position: relative;
}
.abotw .imgbj {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.abotw .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.abotw .container {
  padding: 1.55rem 0 0;
  position: relative;
  z-index: 10;
  height: 8.5rem;
}
.abotw .pub_title p {
  margin-top: 0.5rem;
  line-height: 1.9;
}
@media (max-width: 991px) {
  .abotw .pub_title p {
    line-height: 1.5;
  }
}
.abotw .box {
  margin-top: 1.3rem;
  display: flex;
  justify-content: center;
}
.abotw .box .item {
  width: 3.4rem;
  border-right: 1px dashed rgba(255, 255, 255, 0.3);
  flex-direction: column;
  align-items: center;
  display: flex;
}
.abotw .box .item:last-child {
  border-right: none;
}
.abotw .box .item .item_t {
  align-items: center;
  display: flex;
}
.abotw .box .item .item_t p {
  color: #fff;
  line-height: 0.8;
  font-weight: bold;
}
.abotw .box .item .item_t span {
  line-height: 0.8;
  color: #fff;
  margin-left: 0.07rem;
  margin-bottom: 0.1rem;
  font-weight: bold;
}
.abotw .box .item .item_b {
  margin-top: 0.3rem;
}
.abotw .box .item .item_b p {
  color: rgba(255, 255, 255, 0.6);
}
.aboth {
  background: #f1f4fb;
  padding: 1.25rem 0 1.65rem;
  overflow: hidden;
}
.aboth .box {
  position: relative;
  margin-top: 1.42rem;
}
@media (max-width: 767px) {
  .aboth .box {
    margin-top: 1rem;
  }
}
@media (max-width: 991px) {
  .aboth .box .gallery-thumbs {
    padding: 0;
  }
}
.aboth .box .gallery-thumbs .aboth_thumbs {
  margin-top: 1rem;
  position: relative;
  padding: 0.3rem 0;
  background: #fff;
  padding: 0.3rem;
  /* &::after{
					content: '';
					position: absolute;
					width: 100%;
					height: 100%;
					background: linear-gradient(to top,#f1f4fb 20.45%,hsla(0,0%,100%,0));
					z-index: 10;
					pointer-events: none;
					top: 0;
					left: 0;
					transition: all 0.4s;
					@media @max-xs{
						display: none;
					}
				}
				.big_year{
					text-align: center;
					@media @max-xs{
						position: absolute;
						top: 50%;
						left: 50%;
						transform: translate(-50%,-50%);
						display: none;
					}
					p{
						color: #454545;
						opacity: 0.1;
						font-family: 'oppo-b';
						line-height: 0.9;
						font-size: 4rem;
						@media @max-xs{
							font-size: 2.3rem;
						}
					}
				}
				.txt{
					position: absolute;
					width: 500px;
					padding: 0.46rem 0 0.4rem;
					background: #fff;
					top: 50%;
					left: 50%;
					transform: translate(-50%,-50%);
					display: flex;
					align-items: center;
					justify-content: space-between;
					@media @max-xs{
						position: initial;
						transform: translate(-0%,-0%);
						width: 100%;
						flex-direction: column;
						align-items: flex-start;
					}
					.gl{
						padding-left: 0.32rem;
						width: (160/500*100%);
						@media @max-xs{
							margin-bottom: 0.3rem;
						}
						p{
							border-right: 2px solid #8d959a;
							line-height: 1;
							font-family: 'oppo-b';
							color: #021d49;
							@media @max-xs{
								border: none;
							}
						}
					}
					.gr{
						padding: 0 0.54rem 0 0.28rem;
						width: (340/500*100%);
						@media @max-xs{
							width: 100%;
						}
						p{
							color: #475468;
							line-height: 1.9;
						}
					}
				} */
}
.aboth .box .gallery-thumbs .swiper-slide-active .aboth_thumbs::after {
  opacity: 0;
}
.aboth .box .gallery-top {
  margin-top: 1.22rem;
  border-top: 1px solid #e0e2e7;
}
.aboth .box .gallery-top .swiper-slide p {
  transition: all 0.4s;
  border-top: 1px solid transparent;
  color: #999999;
  text-align: center;
  padding-top: 0.24rem;
  font-family: 'oppo-b';
}
.aboth .box .gallery-top .swiper-slide-active p {
  border-color: #0068ff;
  color: #0068ff;
}
.aboth .box .g_qie .pub_nav {
  top: 15%;
}
.aboth .box .g_qie .pub_prev {
  left: -1.22rem;
}
.aboth .box .g_qie .pub_next {
  right: -1.22rem;
}
.abofo {
  padding: 1.55rem 0 2.2rem;
}
.abofo .abofo_t {
  display: flex;
  justify-content: space-between;
}
.abofo .abofo_t .pub_title {
  width: 45%;
  text-align: left;
}
.abofo .abofo_t .gr {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 50%;
}
.abofo .abofo_t .gr .abofo_nav {
  margin-bottom: 0.85rem;
}
.abofo .abofo_t .gr .abofo_nav a {
  cursor: pointer;
  transition: all 0.4s;
  color: #475468;
  margin-right: 0.25rem;
  padding: 0 0.1rem 0.07rem;
  border-bottom: 1px solid transparent;
}
@media (max-width: 767px) {
  .abofo .abofo_t .gr .abofo_nav a {
    font-size: 12px;
    margin-right: 0.15rem;
  }
}
.abofo .abofo_t .gr .abofo_nav a.on {
  color: #0068ff;
  border-bottom: 1px solid #0068ff;
}
.abofo .abofo_t .gr .g_qie {
  display: flex;
  align-items: center;
}
.abofo .abofo_t .gr .g_qie .pub_nav {
  margin-right: 0.14rem;
  box-shadow: 0 0.29rem 0.51rem rgba(249, 157, 95, 0.15);
  position: initial;
  transform: translateY(0%);
}
.abofo .box {
  margin-top: 0.75rem;
  /* padding-left: calc((100% - 1440px)/2); */
  display: flex;
  justify-content: space-between;
  /* @media @max-lg{
			padding-left: 7.5%;
		}
		@media @max-md{
			padding-left: 5%;
		}
		@media @max-sm{
			flex-direction: column;
		}
		@media @max-xs{
			padding: 0 5%;
		} */
}
.abofo .box .gl {
  width: 35.71428571%;
}
@media (max-width: 991px) {
  .abofo .box .gl {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.abofo .box .gl .abofol .abofol_item {
  display: none;
}
.abofo .box .gl .abofol .abofol_item:first-child {
  display: block;
}
.abofo .box .gl .abofol .abofol_item p {
  margin-bottom: 0.25rem;
  color: #475468 s;
}
.abofo .box .gr {
  position: relative;
  width: 100%;
}
@media (max-width: 991px) {
  .abofo .box .gr {
    width: 100%;
  }
}
.abofo .box .gr .swiper {
  width: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
}
.abofo .box .gr .swiper:first-child .abofogr .img .public-img:before {
  padding-top: 66.70588235%;
}
.abofo .box .gr .swiper.on {
  position: relative;
  opacity: 1;
  z-index: 10;
}
.abofo .box .gr .swiper .abofogr .img {
  display: flex;
  align-items: center;
  padding: 0.4rem;
  background: url(../images/about5.jpg) no-repeat;
  background-size: cover;
}
.abofo .box .gr .swiper .abofogr .img .public-img {
  width: 100%;
}
.abofo .box .gr .swiper .abofogr .img .public-img:before {
  padding-top: 141.72794118%;
}
.abofo .box .gr .swiper .abofogr .txt {
  text-align: center;
  padding-top: 0.25rem;
}
.abofo .box .gr .swiper .abofogr .txt h3 {
  color: #021d49;
}
.abofo .box .gr .swi_btn {
  margin-top: 0.68rem;
  display: flex;
  align-items: center;
}
.abofo .box .gr .swi_btn .swip2_pag {
  margin-right: 0.32rem;
  position: initial;
  width: 55.52941176%;
  height: 2px;
  background: #e7e9eb;
}
.abofo .box .gr .swi_btn .swip2_pag .swiper-pagination-progressbar-fill {
  background: #0068ff;
}
/* 下载中心 */
.dowon {
  background: #f1f4fb;
  padding: 1.6rem 0 2.1rem;
}
@media (max-width: 767px) {
  .dowon {
    padding: 1.2rem 0;
  }
}
.dowon .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .dowon .box {
    flex-direction: column;
  }
}
.dowon .box .gl {
  width: 22.22222222%;
}
@media (max-width: 991px) {
  .dowon .box .gl {
    width: 100%;
  }
}
.dowon .box .gl .search_box {
  margin-bottom: 0.2rem;
  border: 1px solid #eeeeee;
  width: 4.87rem;
  height: 0.6rem;
  background: #fff;
  border-radius: 0.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .dowon .box .gl .search_box {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .dowon .box .gl .search_box {
    height: 0.8rem;
  }
}
.dowon .box .gl .search_box input {
  padding: 0 0.3rem;
  width: 100%;
  color: #333;
}
.dowon .box .gl .search_box a {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.3rem;
  width: 0.2rem;
  height: auto;
}
@media (max-width: 767px) {
  .dowon .box .gl .search_box a {
    width: 0.3rem;
  }
}
.dowon .box .gl .search_box a svg {
  width: 100%;
  height: auto;
}
.dowon .box .gl .search_box a svg path {
  fill: #30333f;
}
.dowon .box .gl .g_sort {
  margin-top: 0.2rem;
  background: #fff;
  border-radius: 4px;
}
.dowon .box .gl .g_sort .g_h3 {
  padding: 0.4rem 0.22rem;
}
@media (max-width: 991px) {
  .dowon .box .gl .g_sort .g_h3 {
    padding: 0.2rem 0.3rem;
  }
}
.dowon .box .gl .g_sort ul {
  padding: 0 0 0.3rem;
}
@media (max-width: 991px) {
  .dowon .box .gl .g_sort ul {
    padding: 0 0.3rem 0.3rem;
    display: flex;
    flex-wrap: wrap;
  }
}
.dowon .box .gl .g_sort ul li {
  cursor: pointer;
  border-radius: 4px;
  padding: 0.16rem 0.23rem;
}
@media (max-width: 991px) {
  .dowon .box .gl .g_sort ul li {
    margin: 0 0.2rem 0.1rem 0;
  }
}
.dowon .box .gl .g_sort ul li.on {
  background: #0068ff;
}
.dowon .box .gl .g_sort ul li.on a {
  color: #fff;
}
.dowon .box .gl .g_sort ul li a {
  transition: all 0.4s;
}
.dowon .box .gr {
  width: 76.38888889%;
}
@media (max-width: 991px) {
  .dowon .box .gr {
    width: 100%;
    margin-top: 0.4rem;
  }
}
.dowon .box .gr ul li {
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dowon .box .gr ul li:hover a {
  background: #0068ff;
}
.dowon .box .gr ul li:hover .dowon_l p {
  color: #fff;
}
.dowon .box .gr ul li:hover .dowon_l p:after {
  background: #fff;
}
.dowon .box .gr ul li:hover .dowon_r .gtxt p {
  color: #fff;
}
.dowon .box .gr ul li:hover .dowon_r .gicon svg path {
  fill: #fff;
}
.dowon .box .gr ul li a {
  transition: all 0.4s;
  width: 100%;
  padding: 0.1rem 0.32rem 0.1rem 0.4rem;
  height: 0.64rem;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .dowon .box .gr ul li a {
    height: 0.8rem;
  }
}
.dowon .box .gr ul li .dowon_l {
  width: 41.015625%;
}
@media (max-width: 767px) {
  .dowon .box .gr ul li .dowon_l {
    width: 75%;
  }
}
.dowon .box .gr ul li .dowon_l p {
  transition: all 0.4s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #021d49;
  display: block;
  position: relative;
  padding-left: 20px;
}
.dowon .box .gr ul li .dowon_l p:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0068ff;
  left: 0;
  top: 50%;
  transition: all 0.4s;
  transform: translateY(-50%);
}
@media (max-width: 1580px) {
  .dowon .box .gr ul li .dowon_l p:after {
    width: 5px;
    height: 5px;
  }
}
.dowon .box .gr ul li .dowon_r {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 56.640625%;
}
@media (max-width: 767px) {
  .dowon .box .gr ul li .dowon_r {
    width: 20%;
    justify-content: flex-end;
  }
}
.dowon .box .gr ul li .dowon_r .gtxt {
  width: 100%;
  display: flex;
}
@media (max-width: 767px) {
  .dowon .box .gr ul li .dowon_r .gtxt {
    display: none;
  }
}
.dowon .box .gr ul li .dowon_r .gtxt p {
  color: #8d959a;
  width: 50%;
  padding-right: 0.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.4s;
}
.dowon .box .gr ul li .dowon_r .gicon {
  flex-shrink: 0;
  margin-left: 0.5rem;
}
.dowon .box .gr ul li .dowon_r .gicon img,
.dowon .box .gr ul li .dowon_r .gicon svg {
  width: 16px;
  height: auto;
}
.dowon .box .gr ul li .dowon_r .gicon img path,
.dowon .box .gr ul li .dowon_r .gicon svg path {
  transition: all 0.4s;
  fill: #475468;
}
.dowon .page {
  margin-top: 0.78rem;
}
.public-windows99 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  /* display: block !important; */
  display: none;
}
.public-windows99.shenqingggangwei .cn41 {
  margin-top: 0.38rem;
  display: flex;
  justify-content: center;
}
.public-windows99.shenqingggangwei .cn41 .pub_btn {
  padding: 0 0.55rem;
}
.public-windows99.shenqingggangwei .box10 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.public-windows99.shenqingggangwei .box10 .box2 {
  width: calc(50% - 0.1rem);
  margin-bottom: 0.2rem;
}
@media (max-width: 767px) {
  .public-windows99.shenqingggangwei .box10 .box2 {
    width: 100%;
  }
}
.public-windows99.shenqingggangwei .box10 .box2.box12 {
  width: 100%;
}
.public-windows99.shenqingggangwei .box10 .cn13 {
  margin-left: 0.12rem;
  font-size: 12px;
  color: #c7c5c5;
}
@media (max-width: 767px) {
  .public-windows99.shenqingggangwei .box10 .cn13 {
    display: none;
  }
}
.public-windows99.shenqingggangwei .box10 .box11 {
  width: 100%;
  background: #f5f5f7;
  border-radius: 6px;
  border: solid 1px #e5eaf2;
  padding: 0.11rem 0.11rem 0.2rem 0.2rem;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_t {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_t .g_p {
  color: #999999;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_t .box11_inp {
  position: relative;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_t .box11_inp input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 3;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_b {
  margin-top: 0.22rem;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_b p {
  color: #0068ff;
}
.public-windows99.shenqingggangwei .box10 .box11 .cn4 {
  padding: 0 0.23rem;
  height: 0.3rem;
  color: #fff;
  background: #021d49;
  border-radius: 100px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .public-windows99.shenqingggangwei .box10 .box11 .cn4 {
    height: 0.7rem;
    padding: 0 0.4rem;
    white-space: nowrap;
  }
}
.public-windows99.shenqingggangwei .box10 .box11 .box12 {
  width: 100%;
  border-radius: 6px;
  position: relative;
  padding: 0.28rem 0.2rem 0.24rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .public-windows99.shenqingggangwei .box10 .box11 .box12 {
    height: auto;
  }
}
.public-windows99 .g_pop {
  width: 9.5rem;
  border-radius: 0.1rem;
  background-color: #Fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0.68rem rgba(0, 0, 0, 0.58);
  padding: 0.86rem 0.34rem;
}
@media (max-width: 1580px) {
  .public-windows99 .g_pop {
    width: 11rem;
  }
}
@media (max-width: 991px) {
  .public-windows99 .g_pop {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .public-windows99 .g_pop {
    width: 90%;
  }
}
.public-windows99 .g_pop .cnclose {
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  width: 28px;
  height: 28px;
  transform: rotate(45deg);
  transition: all 0.4s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .public-windows99 .g_pop .cnclose {
    right: 0.36rem;
    top: 0.36rem;
    width: 22px;
    height: 22px;
  }
}
.public-windows99 .g_pop .cnclose span {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #021e4a;
  transform: translate(-50%, -50%);
}
.public-windows99 .g_pop .cnclose span:nth-child(1) {
  width: 100%;
  height: 2px;
}
.public-windows99 .g_pop .cnclose span:nth-child(2) {
  width: 2px;
  height: 100%;
}
@media (max-width: 767px) {
  .public-windows99 .g_pop .cnclose span {
    background-color: #021e4a;
  }
}
.public-windows99 .g_pop .cnclose:hover {
  transform: rotate(-135deg);
}
.public-windows99 .box {
  width: 100%;
  max-height: 72vh;
  padding: 0 0.46rem;
  overflow: auto;
}
@media (max-width: 991px) {
  .public-windows99 .box {
    padding: 0.5rem 0.3rem;
  }
}
.public-windows99 .box .box_t {
  margin-bottom: 0.54rem;
}
.public-windows99 .box .box_t h2 {
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
}
.public-windows99 .box .box_t .g_lab {
  margin-top: 0.2rem;
  display: flex;
  justify-content: center;
  text-align: center;
}
.public-windows99 .box .box_t .g_lab span {
  color: #666;
  border-right: 1px solid #666666;
  line-height: 1.1;
  margin-right: 4px;
  padding-right: 4px;
}
.public-windows99 .box .box_t .g_lab span:nth-last-child(2) {
  border: none;
}
.public-windows99 .box .box_t .g_lab span:nth-last-child(1) {
  border: none;
  margin: 0 0 0 0.18rem;
}
.public-windows99 .box .box_t .g_blurb {
  margin-top: 0.36rem;
  border-radius: 0.1rem;
  background: #f5f5f7;
  padding: 0.4rem;
}
.public-windows99 .box .box_t .g_blurb h3 {
  font-weight: bold;
  color: #000;
  margin-bottom: 0.12rem;
}
.public-windows99 .box .box_t .g_blurb p {
  color: #666;
}
.public-windows99 .box .box_b {
  padding: 0 0.34rem;
}
.public-windows99 .box .cn1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.46rem;
}
.public-windows99 .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-windows99 .box .cn1 .cn2 img {
  width: 0.19rem;
}
.public-windows99 .box .cn1 .cn3 {
  font-weight: bold;
  color: #333333;
  line-height: 1.1;
}
.public-windows99 .box .cn1 .cn3a {
  text-align: center;
  width: 100%;
  display: block;
  margin-top: 0.2rem;
  color: #475468;
}
.public-windows99 .box .cn1 .cn3a em {
  font-style: normal;
  color: #0068ff;
  text-decoration: underline;
}
.public-windows99 .box .g_box2 {
  width: 100%;
  margin-top: 0.2rem;
}
.public-windows99 .box .g_box2 input {
  padding: 0 0.2rem;
  width: 100%;
  line-height: 0.5rem;
  height: 0.52rem;
  background-color: #f5f5f7;
  border-radius: 6px;
  border: 1px solid #ededed;
  color: #999999;
}
@media (max-width: 767px) {
  .public-windows99 .box .g_box2 input {
    height: 0.8rem;
  }
}
.public-windows99 .box .g_box2 p {
  margin-top: 0.1rem;
  color: #999999;
}
.public-windows99 .box .box2 {
  width: 100%;
  border-radius: 10px;
}
.public-windows99 .box .box2 .cn4 {
  color: #222222;
  line-height: 0.5rem;
}
@media (max-width: 991px) {
  .public-windows99 .box .box2 .cn4 {
    line-height: 0.6rem;
  }
}
.public-windows99 .box .box2 .cn4 .cn5 {
  color: #ff0000;
  margin-right: 5px;
}
.public-windows99 .box .box2 .cn6 {
  width: 100%;
}
.public-windows99 .box .box2 .cn6 input {
  padding: 0 0.2rem;
  width: 100%;
  line-height: 0.5rem;
  height: 0.52rem;
  background-color: #f5f5f7;
  border-radius: 6px;
  border: 1px solid #ededed;
  color: #999999;
}
@media (max-width: 991px) {
  .public-windows99 .box .box2 .cn6 input {
    line-height: 0.76rem;
    height: 0.76rem;
  }
}
.public-windows99 .box .box2 .cn6 input::placeholder {
  color: #b6b6b6;
}
.public-windows99 .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-windows99 .box .box2 .cn6 textarea {
    line-height: 0.76rem;
    height: 0.76rem;
  }
}
.public-windows99 .box .box2 .cn6 textarea::placeholder {
  color: #999;
}
/* 三级 */
.nav_two_tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav_two_tit > a {
  color: #666 !important;
  display: block;
  padding-left: 20px;
  line-height: 40px;
}
.nav_two_tit svg {
  width: 8px;
  height: auto;
}
.nav_two_tit svg path {
  fill: #666;
}
.nav_three {
  display: none;
}
.nav_three > a {
  color: #999 !important;
  display: block;
  padding-left: 30px;
  line-height: 36px;
}
.home_nav {
  top: 0 !important;
}
.proinfoon_nr {
  padding: 1rem 0;
}
.proinfoon_box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.05rem;
  margin-top: 0.4rem;
}
@media (max-width: 767px) {
  .proinfoon_box {
    margin: 0 ;
    margin-top: 0.4rem;
  }
}
.proinfoon_box .g_it {
  width: calc(1/5*100%);
  margin-bottom: 0.3rem;
  padding: 0 0.05rem;
}
@media (max-width: 991px) {
  .proinfoon_box .g_it {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .proinfoon_box .g_it {
    width: 100%;
    padding: 0;
  }
}
.proinfoon_box .g_it .g_it_box {
  display: block;
  width: 100%;
  height: 100%;
}
.proinfoon_box .g_it .g_it_box .public-img:before {
  padding-top: 107.29613734%;
}
.proinfoon_box .g_it .g_it_box .txt {
  text-align: center;
  padding: 0.15rem;
}
.proinfoon_box .g_it .g_it_box .ban_l_a {
  text-align: center;
}
.pinfoon {
  background: #f1f4fb;
  padding: 1rem 0 0.4rem;
}
.pinfoon .pub_title {
  margin-bottom: 0.6rem;
}
.pinfoon .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .pinfoon .box {
    margin: 0 ;
  }
}
.pinfoon .box .item {
  width: 40%;
  margin-bottom: 0.6rem;
}
@media (max-width: 991px) {
  .pinfoon .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .pinfoon .box .item {
    width: 100%;
    padding: 0;
  }
}
.pinfoon .box .item .itembox {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.pinfoon .box .item .itembox .g_icon {
  margin-right: 0.4rem;
  flex-shrink: 0;
  width: 0.5rem;
  height: auto;
}
.pinfoon .box .item .itembox .g_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pinfoon .box .item .itembox .txt h3 {
  margin-bottom: 0.05rem;
  font-weight: bold;
}
.pinfoon .box .item .itembox .txt p {
  color: #666;
}
.pinfotw {
  padding: 1rem 0 0.5rem;
}
.pinfotw .pub_title {
  text-align: left;
}
.pinfoth {
  background: #f1f4fb;
  padding: 1rem 0 1px;
  width: 100%;
  position: relative;
}
.pinfoth .item {
  margin-bottom: 1rem;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}
.pinfoth .item:nth-child(2n) .container {
  flex-direction: row-reverse;
}
.pinfoth .item:nth-child(2n) .container .ban_l {
  padding: 0 0 0 1.8rem;
}
@media (max-width: 991px) {
  .pinfoth .item:nth-child(2n) .container .ban_l {
    padding: 0 0 0 0.4rem;
  }
}
.pinfoth .item .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .pinfoth .item .container {
    flex-direction: column-reverse !important;
    justify-content: center;
  }
}
.pinfoth .item .container .ban_l {
  padding-right: 1.8rem;
  width: 54%;
}
@media (max-width: 991px) {
  .pinfoth .item .container .ban_l {
    padding-right: 0.4rem;
  }
}
@media (max-width: 767px) {
  .pinfoth .item .container .ban_l {
    width: 100%;
    padding: 0 !important;
  }
}
.pinfoth .item .container .ban_l .pinfoth_ico {
  margin-bottom: 0.1rem;
}
.pinfoth .item .container .ban_l .pinfoth_ico img {
  height: 0.46rem;
  width: auto;
}
.pinfoth .item .container .ban_l .tit h1 {
  font-size: 56px;
}
@media (max-width: 1580px) {
  .pinfoth .item .container .ban_l .tit h1 {
    font-size: 52px;
  }
}
@media (max-width: 1260px) {
  .pinfoth .item .container .ban_l .tit h1 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .pinfoth .item .container .ban_l .tit h1 {
    font-size: 0.4rem;
  }
}
.pinfoth .item .container .ban_l .tit span {
  line-height: 1.3;
  font-weight: bold;
}
.pinfoth .item .container .ban_l .g_p {
  margin-top: 0.1rem;
}
@media (max-width: 767px) {
  .pinfoth .item .container .ban_l .g_p {
    padding-right: 0;
  }
}
.pinfoth .item .container .ban_l .g_p p {
  opacity: 0.85;
  font-size: 16px;
}
@media (max-width: 1580px) {
  .pinfoth .item .container .ban_l .g_p p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .pinfoth .item .container .ban_l .g_p p {
    font-size: 0.28rem;
  }
}
@media (max-width: 767px) {
  .pinfoth .item .container .ban_l .g_p p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    height: 7.5em;
  }
}
.pinfoth .item .container .ban_l .ban_l_a {
  margin-top: 0.58rem;
}
.pinfoth .item .container .ban_l .ban_l_a a {
  margin-right: 0.1rem;
}
@media (max-width: 767px) {
  .pinfoth .item .container .ban_l .ban_l_a a {
    margin-bottom: 0.1rem;
  }
}
.pinfoth .item .container .ban_r {
  margin-left: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45%;
  position: relative;
}
@media (max-width: 767px) {
  .pinfoth .item .container .ban_r {
    width: 100%;
    margin-bottom: 0.5rem;
    margin-left: 0;
  }
}
.pinfoth .item .container .ban_r .public-img {
  border-radius: 0.1rem;
  width: 100%;
}
.pinfoth .item .container .ban_r .public-img:before {
  padding-top: 58.82352941%;
}
.pinfofo {
  background: #f1f4fb;
  padding: 1rem 0 0.7rem;
}
.pinfofo .pub_title {
  margin-bottom: 0.6rem;
}
.pinfofo .box .item {
  margin-bottom: 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #ccc;
}
.pinfofo .box .item h3 {
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 70%;
}
.pinfofo .box .item img,
.pinfofo .box .item svg {
  width: 0.34rem;
  height: auto;
  margin-left: 0.2rem;
  flex-shrink: 0;
  color: #0068ff;
}
