@charset "utf-8";
:root {
  --color: #0250ff;
  --vh: 100vh;
}
/*字体*/
/* @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");
} */
* {
  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: #0250ff;
}
html ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a {
  color: #333;
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  resize: none;
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
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%;
  }
}
.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: #0250ff;
}
.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-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: 80px;
}
@media screen and (max-width: 1440px) {
  #c-placeholder .gw {
    height: 60px;
  }
}
/*顶部*/
#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: #0250ff;
  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: #0250ff;
}
#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: #0250ff;
}
/*顶部移动端导航*/
#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: #0250ff;
}
#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: #0250ff;
}
#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: #0250ff;
  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: #0250ff;
}
#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: #0250ff;
  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: #0250ff;
}
#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: #0250ff;
}
#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: #0250ff;
}
#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: #0250ff;
}
@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: #0250ff;
}
#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: #0250ff;
  width: 0%;
  transition-delay: 0s;
  transition-timing-function: linear;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active div {
  width: 100%;
}
/* 自己的公共样式 */
/*过渡*/
a {
  text-decoration: initial;
}
input::-webkit-input-placeholder {
  color: #999;
  opacity: 0.75;
}
textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 0.75;
}
/* 字体 */
@font-face {
  font-family: 'dou';
  src: url(../font/DouyinSansBold.otf);
}
.font-dou {
  font-family: 'dou', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.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 */
  /* 搜索下拉 */
}
nav.show_nav {
  background: none;
}
nav.show_nav .nav_top {
  background: none;
}
@media (max-width: 1260px) {
  nav.show_nav .nav_top {
    background: #0250ff;
  }
}
@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: #fff !important;
}
@media (max-width: 1260px) {
  nav.show_nav svg path {
    fill: #fff !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_l_box .navbox > ul > li > a > p {
  color: #fff !important;
}
nav.show_nav .nav_ljbox .nav_l_box .navbox > ul > li > a svg path {
  fill: #fff !important;
}
nav.show_nav .nav_ljbox .nav_l_box .navbox > ul > li:hover > a > p {
  color: #0250ff !important;
}
nav.show_nav .nav_ljbox .nav_l_box .navbox > ul > li:hover > a > p::after {
  background: #0250ff !important;
}
nav.show_nav .nav_ljbox .nav_l_box .navbox > ul > li:hover > a svg path {
  fill: #0250ff !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: #0250ff;
  }
}
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: #0250ff;
  }
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
  color: #fff !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_tel p {
  color: #fff;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_othr_a .pub_btn2 {
  border-color: #fff;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_othr_a .pub_btn2 p {
  color: #fff;
}
nav.nav_on,
nav.nav_on2 {
  background: #fff !important;
}
nav.nav_on svg path,
nav.nav_on2 svg path {
  /* fill: @colorNav_hover_text !important; */
}
nav.nav_on .nav_top,
nav.nav_on2 .nav_top {
  background: #0250ff;
}
nav.nav_on .nav_ljbox .nav_l_box .logo .xs,
nav.nav_on2 .nav_ljbox .nav_l_box .logo .xs {
  display: block;
}
nav.nav_on .nav_ljbox .nav_l_box .logo .yc,
nav.nav_on2 .nav_ljbox .nav_l_box .logo .yc {
  display: none;
}
nav.nav_on .nav_ljbox .nav_l_box .navbox > ul > li > a,
nav.nav_on2 .nav_ljbox .nav_l_box .navbox > ul > li > a {
  color: #333 !important;
}
nav.nav_on .nav_ljbox .nav_l_box .navbox > ul > li > a > p,
nav.nav_on2 .nav_ljbox .nav_l_box .navbox > ul > li > a > p {
  color: #333 !important;
}
nav.nav_on .nav_ljbox .nav_l_box .navbox > ul > li > a svg path,
nav.nav_on2 .nav_ljbox .nav_l_box .navbox > ul > li > a svg path {
  fill: #0250ff !important;
}
nav.nav_on .nav_ljbox .nav_l_box .navbox > ul > li:hover > a > p,
nav.nav_on2 .nav_ljbox .nav_l_box .navbox > ul > li:hover > a > p {
  color: #0250ff !important;
}
nav.nav_on .nav_ljbox .nav_l_box .navbox > ul > li:hover > a > p::after,
nav.nav_on2 .nav_ljbox .nav_l_box .navbox > ul > li:hover > a > p::after {
  background: #0250ff !important;
}
nav.nav_on .nav_ljbox .nav_l_box .navbox > ul > li:hover > a svg path,
nav.nav_on2 .nav_ljbox .nav_l_box .navbox > ul > li:hover > a svg path {
  fill: #0250ff !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: #0250ff;
}
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: #0250ff;
}
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;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_tel i svg path,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_tel i svg path {
  fill: #333 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_tel p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_tel p {
  color: #333;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_othr_a .pub_btn2,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_othr_a .pub_btn2 {
  border-color: #333;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_othr_a .pub_btn2 p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_othr_a .pub_btn2 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: #0250ff;
  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;
  padding: 0 0.5rem;
  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 {
  height: 100%;
  display: flex;
  align-items: center;
}
nav .nav_ljbox .nav_l_box .logo {
  margin-right: 0.5rem;
  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;
  }
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .logo {
    margin-right: 0.2rem;
  }
}
nav .nav_ljbox .nav_l_box .logo img {
  width: 1.12rem;
  height: auto;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .logo img {
    width: 1.8rem;
  }
}
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_l_box .navbox {
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_l_box .navbox {
    display: none;
  }
}
nav .nav_ljbox .nav_l_box .navbox > ul {
  display: flex;
  align-items: center;
  height: 100%;
}
nav .nav_ljbox .nav_l_box .navbox > ul > li {
  height: 100%;
  position: relative;
}
nav .nav_ljbox .nav_l_box .navbox > ul > li.on2 {
  position: initial;
}
nav .nav_ljbox .nav_l_box .navbox > ul > li:hover > a > p,
nav .nav_ljbox .nav_l_box .navbox > ul > li.on > a > p {
  color: #0250ff !important;
}
nav .nav_ljbox .nav_l_box .navbox > ul > li:hover > a > p::after,
nav .nav_ljbox .nav_l_box .navbox > ul > li.on > a > p::after {
  width: 0.3rem;
}
nav .nav_ljbox .nav_l_box .navbox > ul > li:hover > a svg path,
nav .nav_ljbox .nav_l_box .navbox > ul > li.on > a svg path {
  fill: #0250ff !important;
}
nav .nav_ljbox .nav_l_box .navbox > ul > li:hover > a .xs,
nav .nav_ljbox .nav_l_box .navbox > ul > li.on > a .xs {
  display: none;
}
nav .nav_ljbox .nav_l_box .navbox > ul > li:hover > a .yc,
nav .nav_ljbox .nav_l_box .navbox > ul > li.on > a .yc {
  display: block;
}
nav .nav_ljbox .nav_l_box .navbox > ul > li:hover > a .img1,
nav .nav_ljbox .nav_l_box .navbox > ul > li.on > a .img1 {
  display: none !important;
}
nav .nav_ljbox .nav_l_box .navbox > ul > li:hover > a .img2,
nav .nav_ljbox .nav_l_box .navbox > ul > li.on > a .img2 {
  display: block !important;
}
nav .nav_ljbox .nav_l_box .navbox > ul > li > a {
  color: #1d2129;
  margin: 0 0.33rem;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_l_box .navbox > ul > li > a {
    margin: 0 0.1rem;
    color: #333;
  }
}
@media (max-width: 991px) {
  nav .nav_ljbox .nav_l_box .navbox > ul > li > a {
    font-size: 12px;
  }
}
nav .nav_ljbox .nav_l_box .navbox > ul > li > a > svg {
  width: 6px;
  height: auto;
  position: absolute;
  right: -11px;
}
nav .nav_ljbox .nav_l_box .navbox > ul > li > a > svg path {
  fill: #333;
}
nav .nav_ljbox .nav_l_box .navbox > ul > li > a > img {
  width: 8px;
  height: auto;
  margin-left: 10px;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .navbox > ul > li > a > img {
    width: 6px;
  }
}
nav .nav_ljbox .nav_l_box .navbox > ul > li > a .img2 {
  display: none;
}
nav .nav_ljbox .nav_l_box .navbox > ul > li > a > p {
  transition: all 0.4s;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: #1d2129;
}
nav .nav_ljbox .nav_l_box .navbox > ul > li > a > p::after {
  transition: all 0.4s;
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  left: 50%;
  background: #0250ff;
  transform: translateX(-50%);
}
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 .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_tel {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_tel {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_tel i {
  flex-shrink: 0;
  display: flex;
  width: 0.16rem;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_tel i svg,
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_tel i img {
  width: 100%;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_tel i svg path,
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_tel i img path {
  fill: #0250ff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_tel p {
  margin-left: 0.12rem;
  color: #1d2129;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_othr_a {
  display: flex;
  margin-left: 0.18rem;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_othr_a .pub_btn {
  margin-left: 0.2rem;
  height: 0.44rem;
  padding: 0 0.27rem;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_othr_a .pub_btn {
    height: 0.7rem;
    padding: 0 0.3rem;
  }
}
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: #0250ff;
}
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: #0250ff;
}
/* 导航各种效果 */
.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_nav2 {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  background: #fff;
  border-radius: 0 0 0.12rem 0.12rem;
  box-shadow: 0 6px 29px rgba(211, 211, 211, 0.18);
  padding: 10px 0;
  padding: 0.4rem 0.35rem;
  width: auto;
  display: none;
}
.pro_nav2 .pro_nav2_box {
  display: flex;
  justify-content: space-between;
}
.pro_nav2 .gl {
  padding-right: 0.65rem;
}
.pro_nav2 .gl .g_tit {
  margin-left: 0.1rem;
}
.pro_nav2 .gl .g_tit p {
  font-weight: bold;
  color: #2c3d55;
}
.pro_nav2 .gl .pro_nav2_ul {
  margin-top: 0.35rem;
  width: 2.8rem;
}
.pro_nav2 .gl .pro_nav2_ul a {
  transition: all 0.4s;
  margin-bottom: 0.15rem;
  border-radius: 0.12rem;
  display: flex;
  align-items: center;
  padding: 0.13rem 0.17rem;
}
.pro_nav2 .gl .pro_nav2_ul a:hover {
  background: #edf3fd;
}
.pro_nav2 .gl .pro_nav2_ul a img {
  margin-right: 0.11rem;
  width: 0.22rem;
  height: auto;
}
.pro_nav2 .gl .pro_nav2_ul a p {
  color: #636e80;
}
.pro_nav2_help {
  padding: 0.4rem 0.2rem 0.2rem;
}
.pro_nav2_help .gl {
  padding: 0;
}
.navtw {
  display: block;
  width: 270px;
  overflow: hidden;
  border: 1px solid #ebedf4;
  border-radius: 0.12rem;
}
.navtw:hover .public-img img {
  transform: scale(1.05);
}
.navtw:hover .txt h3 {
  color: #0250ff !important;
}
.navtw .public-img:before {
  padding-top: 53.7037037%;
}
.navtw .txt {
  padding: 0.25rem;
}
.navtw .txt .txt_t h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 0.12rem;
  font-weight: bold;
  color: #2c3d55;
}
.navtw .txt .txt_t p {
  color: rgba(88, 99, 116, 0.7);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  height: 6em;
}
.navtw .txt .pub_btn {
  margin-top: 0.04rem;
}
.pro_nav3 {
  display: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 100%;
  left: 0;
  background: #fff;
  border-top: 1px solid #ebedf4;
  box-shadow: 0 6px 29px rgba(211, 211, 211, 0.18);
}
.pro_nav3_case .pro_nav3_box {
  padding: 0.5rem 0 0.6rem;
  display: flex;
  justify-content: space-between;
}
.pro_nav3_case .pro_nav3_box .gl {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 2.48rem;
}
.pro_nav3_case .pro_nav3_box .gl .gl_t .g_tit p {
  font-weight: bold;
  color: #2c3d55;
}
.pro_nav3_case .pro_nav3_box .gl .gl_t .pro_nav2_ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}
.pro_nav3_case .pro_nav3_box .gl .gl_t .pro_nav2_ul a {
  width: 2.8rem;
  transition: all 0.4s;
  margin: 0 0.18rem 0.25rem 0;
  border-radius: 0.12rem;
  display: flex;
  align-items: center;
  padding: 0.13rem 0.17rem;
}
.pro_nav3_case .pro_nav3_box .gl .gl_t .pro_nav2_ul a:hover {
  background: #edf3fd;
}
.pro_nav3_case .pro_nav3_box .gl .gl_t .pro_nav2_ul a img {
  margin-right: 0.11rem;
  width: 0.22rem;
  height: auto;
}
.pro_nav3_case .pro_nav3_box .gl .gl_t .pro_nav2_ul a p {
  color: #636e80;
}
.pro_nav3_case .pro_nav3_box .gl .gl_b {
  padding: 0.31rem 0;
  margin-top: 0.2rem;
  border-top: 1px solid #ebedf4;
}
.pro_nav3_case .pro_nav3_box .gl .gl_b .pub_btn p {
  color: #636e80;
}
.pro_nav3_case .pro_nav3_box .gl .gl_b .pub_btn svg path {
  fill: #636e80;
}
.pro_nav3_case .pro_nav3_box .gr {
  flex-shrink: 0;
}
.pro_nav3_res .pro_nav3_box {
  padding: 0.5rem 0 0.6rem;
  display: flex;
  justify-content: space-between;
}
.pro_nav3_res .pro_nav3_box .gl {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-right: 2.48rem;
}
.pro_nav3_res .pro_nav3_box .gl .item {
  width: calc((100% - 0.6rem)/3);
  margin-right: 0.3rem;
}
.pro_nav3_res .pro_nav3_box .gl .item:nth-child(3n) {
  margin-right: 0;
}
.pro_nav3_res .pro_nav3_box .gl .item .res_tit {
  border-bottom: 1px solid #ebedf4;
  padding-bottom: 0.2rem;
}
.pro_nav3_res .pro_nav3_box .gl .item .res_tit a {
  display: flex;
  align-items: center;
}
.pro_nav3_res .pro_nav3_box .gl .item .res_tit a:hover p {
  color: #0250ff;
}
.pro_nav3_res .pro_nav3_box .gl .item .res_tit a img {
  margin-right: 0.11rem;
  width: 0.22rem;
  height: auto;
}
.pro_nav3_res .pro_nav3_box .gl .item .res_tit a p {
  color: #636e80;
}
.pro_nav3_res .pro_nav3_box .gl .item .res_a {
  margin-top: 0.24rem;
  display: flex;
  flex-direction: column;
}
.pro_nav3_res .pro_nav3_box .gl .item .res_a a {
  margin-bottom: 0.12rem;
  color: #636e80;
  transition: all 0.4s;
}
.pro_nav3_res .pro_nav3_box .gl .item .res_a a:hover {
  color: #0250ff;
}
.pro_nav3_res .pro_nav3_box .gr {
  flex-shrink: 0;
}
.pro_nav3_cio .pro_nav3_box {
  display: flex;
  justify-content: space-between;
}
.pro_nav3_cio .pro_nav3_box .gl {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.pro_nav3_cio .pro_nav3_box .gl .cionav_l {
  box-shadow: 0.15rem 0 0.15rem rgba(170, 175, 190, 0.15);
  width: 14.52991453%;
  display: flex;
  flex-direction: column;
  padding: 0.44rem 0.47rem 0 0.24rem;
}
.pro_nav3_cio .pro_nav3_box .gl .cionav_l a {
  cursor: pointer;
  transition: all 0.4s;
  font-weight: bold;
  margin-bottom: 0.23rem;
  border-radius: 0.08rem;
  width: 100%;
  padding: 0.09rem 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pro_nav3_cio .pro_nav3_box .gl .cionav_l a.on {
  background: #f1f5fe;
  color: #0250ff;
}
.pro_nav3_cio .pro_nav3_box .gl .cionav_r {
  width: 85.47008547%;
}
.pro_nav3_cio .pro_nav3_box .gl .cionav_r .cionav_r_box {
  display: flex;
  flex-wrap: wrap;
  padding: 0.5rem 0 0.27rem 0.46rem;
}
.pro_nav3_cio .pro_nav3_box .gl .cionav_r .cionav_r_box .item {
  width: 2.8rem;
  margin: 0 0.27rem 0.29rem 0;
  /* height: 1rem; */
  transition: all 0.4s;
  border-radius: 0.12rem;
  padding: 0.26rem 0.34rem 0.1rem;
}
.pro_nav3_cio .pro_nav3_box .gl .cionav_r .cionav_r_box .item:hover {
  background: #f1f5fe;
}
.pro_nav3_cio .pro_nav3_box .gl .cionav_r .cionav_r_box .item:hover .gtit p {
  color: #0250ff;
}
.pro_nav3_cio .pro_nav3_box .gl .cionav_r .cionav_r_box .item .gtit {
  display: flex;
  align-items: center;
}
.pro_nav3_cio .pro_nav3_box .gl .cionav_r .cionav_r_box .item .gtit img {
  margin-right: 0.07rem;
  width: 0.22rem;
  height: auto;
}
.pro_nav3_cio .pro_nav3_box .gl .cionav_r .cionav_r_box .item .gtit p {
  transition: all 0.4s;
  color: #2c3d55;
  font-weight: bold;
}
.pro_nav3_cio .pro_nav3_box .gl .cionav_r .cionav_r_box .item .g_p {
  margin-top: 0.08rem;
}
.pro_nav3_cio .pro_nav3_box .gl .cionav_r .cionav_r_box .item .g_p p {
  color: rgba(99, 110, 128, 0.7);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.pro_nav3_cio .pro_nav3_box .gr {
  padding: 0.5rem 0 0.6rem;
  flex-shrink: 0;
}
.pro_nav3_cio .pro_nav3_box .gr .navtw .txt .g_a .pub_btn {
  margin-right: 0.33rem;
}
.pro_nav3_cio .pro_nav3_box .gr .navtw .txt .g_a .pub_btn:last-child {
  margin-right: 0;
}
.pro_nav3_sol .pro_nav3_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.pro_nav3_sol .pro_nav3_box .gl {
  padding: 0.5rem 0 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.pro_nav3_sol .pro_nav3_box .gl .item {
  display: flex;
  transition: all 0.4s;
  margin: 0 0.34rem 0.3rem 0;
  width: 4.36rem;
  padding: 0.19rem 0.22rem 0.24rem;
}
@media (max-width: 1580px) {
  .pro_nav3_sol .pro_nav3_box .gl .item {
    width: 4.56rem;
  }
}
.pro_nav3_sol .pro_nav3_box .gl .item:hover {
  background: url(../images/navimg6.jpg) no-repeat;
  background-size: cover;
}
.pro_nav3_sol .pro_nav3_box .gl .item .img {
  width: 0.56rem;
  height: auto;
  margin-right: 0.15rem;
}
.pro_nav3_sol .pro_nav3_box .gl .item .img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.pro_nav3_sol .pro_nav3_box .gl .item .txt h3 {
  font-weight: bold;
  color: #2c3d55;
}
.pro_nav3_sol .pro_nav3_box .gl .item .txt p {
  margin-top: 0.08rem;
  color: rgba(99, 110, 128, 0.7);
}
.pro_nav3_sol .pro_nav3_box .gr {
  padding: 0.5rem 0 0.6rem;
  flex-shrink: 0;
}
.pro_nav3_sol .pro_nav3_box .gr .navtw .txt .g_a .pub_btn {
  margin-right: 0.33rem;
}
.pro_nav3_sol .pro_nav3_box .gr .navtw .txt .g_a .pub_btn:last-child {
  margin-right: 0;
}
/* 移动端导航 */
#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: #0250ff;
}
#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 */
.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 {
  min-width: 1.23rem;
  margin-right: 0.58rem;
}
@media (max-width: 991px) {
  .foot_nav {
    margin-right: 0.1rem;
  }
}
@media (max-width: 767px) {
  .foot_nav {
    margin: 0 ;
  }
}
.foot_nav:last-child {
  margin-right: 0;
  min-width: auto;
}
.foot_nav .a_tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.38rem;
}
.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.18rem;
}
.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: #0250ff !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: 1.1rem 0 3rem;
}
.g-pri .box .tit {
  margin-bottom: 0.35rem;
  text-align: center;
}
.g-pri .box .tit h2 {
  font-weight: bold;
  margin-bottom: 0.35rem;
}
.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 {
  min-width: 1.16rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  height: 0.56rem;
  padding: 0 0.5rem;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .pub_btn {
    height: 0.7rem;
  }
}
@media (max-width: 767px) {
  .pub_btn {
    height: 0.8rem;
  }
}
.pub_btn:hover {
  background: #0250ff;
  /* border-radius: 0.08rem; */
}
.pub_btn:hover i {
  opacity: 0;
}
.pub_btn:hover p {
  color: #fff;
  transform: translateX(-0.05rem);
}
.pub_btn:hover p::after {
  left: calc(100% + 0.1rem);
  opacity: 1;
}
.pub_btn i {
  transition: all 0.4s;
  position: absolute;
  z-index: 1;
  border-radius: 100px;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
}
.pub_btn p {
  color: #fff;
  position: relative;
  z-index: 5;
  transition: all 0.4s;
}
.pub_btn p::after {
  content: '';
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  opacity: 0;
  transition: all 0.4s;
  position: absolute;
  width: 18px;
  height: 11px;
  background: url(https://xjj-www-prod.xuejj.com/cms/images/icon1.svg) no-repeat;
  background-size: contain;
}
.pub_btn2 {
  border: 1px solid #b9c3da;
}
.pub_btn2:hover {
  border-color: #0250ff !important;
}
.pub_btn2:hover p {
  color: #fff !important;
}
.pub_btn2 p {
  color: #606369;
}
.pub_btn2 i {
  display: none;
}
.pub_btn3 {
  border-color: rgba(255, 255, 255, 0.43);
  background: rgba(255, 255, 255, 0.11);
}
.pub_btn3 i {
  display: none;
}
.pub_btn4 {
  overflow: initial;
  padding: 0;
  min-width: auto;
  height: auto;
}
.pub_btn4:hover {
  background: none;
}
.pub_btn4:hover p {
  color: #0250ff;
}
.pub_btn4:hover svg,
.pub_btn4:hover img {
  transform: translateX(5px);
}
.pub_btn4 i {
  display: none;
}
.pub_btn4 p {
  color: #0250ff;
}
.pub_btn4 svg,
.pub_btn4 img {
  transition: all 0.4s;
  margin-left: 0.11rem;
  width: 8px;
  height: auto;
}
@media (max-width: 1580px) {
  .pub_btn4 svg,
  .pub_btn4 img {
    width: 7px;
  }
}
@media (max-width: 767px) {
  .pub_btn4 svg,
  .pub_btn4 img {
    width: 6px;
  }
}
.pub_btn4 svg path,
.pub_btn4 img path {
  fill: #0250ff;
}
.pub_btn5 {
  border: 1px solid #b9c3da;
}
.pub_btn5:hover img,
.pub_btn5:hover svg {
  transform: translateX(5px);
}
.pub_btn5:hover img path,
.pub_btn5:hover svg path {
  fill: #fff;
}
.pub_btn5 p {
  color: #606369;
}
.pub_btn5 i {
  display: none;
}
.pub_btn5 img,
.pub_btn5 svg {
  transition: all 0.4s;
  width: 8px;
  height: auto;
  margin-left: 0.09rem;
}
@media (max-width: 767px) {
  .pub_btn5 img,
  .pub_btn5 svg {
    width: 6px;
  }
}
.pub_btn5 img path,
.pub_btn5 svg path {
  fill: #8a8cf5;
}
.pub_btn6 {
  background: #fff;
}
.pub_btn6 i {
  display: none;
}
.pub_btn6 p {
  font-weight: bold;
  color: #091023;
}
@keyframes mov1 {
  0% {
    transform: translate3d(0px, -0.2rem, 0px);
  }
  50% {
    transform: translate3d(0px, 0, 0px);
  }
  100% {
    transform: translate3d(0px, -0.2rem, 0px);
  }
}
.h_banner {
  position: relative;
  z-index: 10;
  min-height: 9.6rem;
  /* height: 100vh; */
}
@media (max-width: 991px) {
  .h_banner {
    height: auto;
    padding-bottom: 0.5rem;
  }
}
.h_banner .container {
  height: 100%;
}
@media screen and (min-width: 2000px) {
  .h_banner .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.h_banner .box {
  padding-top: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .h_banner .box {
    flex-direction: column;
  }
}
.h_banner .box .gl {
  width: 44%;
  padding-right: 0;
}
@media (max-width: 991px) {
  .h_banner .box .gl {
    padding-right: 0.4rem;
  }
}
@media (max-width: 767px) {
  .h_banner .box .gl {
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
  }
}
.h_banner .box .gl .txt {
  margin-bottom: 0.55rem;
}
.h_banner .box .gl .txt h1 {
  margin-bottom: 0.3rem;
  color: #1d2129;
  line-height: 1.15;
  font-weight: bold;
}
.h_banner .box .gl .txt p {
  color: #606369;
}
.h_banner .box .gl .pub_btn {
  border-color: #0250ff;
}
.h_banner .box .gl .pub_btn p {
  color: #0250ff;
}
.h_banner .box .gr {
  width: 54%;
  /* padding-right: 0.46rem; */
  /* animation:mov1 4.2s infinite ease-in-out;
			-webkit-animation:mov1 4.2s infinite ease-in-out; */
}
@media (max-width: 767px) {
  .h_banner .box .gr {
    width: 100%;
  }
}
.h_banner .box .gr img,
.h_banner .box .gr video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.h_banner .h_banner_b {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.13rem;
  margin-top: 0.44rem;
}
.h_banner .h_banner_b .item {
  width: 25%;
  margin-bottom: 0.2rem;
  padding: 0 0.13rem;
}
@media (max-width: 991px) {
  .h_banner .h_banner_b .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .h_banner .h_banner_b .item {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.h_banner .h_banner_b .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
  background: #fbfcff;
  border-radius: 0.08rem;
  border: 1px solid #ffffff;
  padding: 0.27rem 0.52rem 0.28rem 0.31rem;
}
.h_banner .h_banner_b .item .itembox:hover h3 {
  color: #0250ff;
}
.h_banner .h_banner_b .item .itembox h3 {
  transition: all 0.4s;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.h_banner .h_banner_b .item .itembox p {
  color: #8e98ae;
  margin-top: 0.08rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.pub_title {
  text-align: center;
}
.pub_title h2 {
  font-weight: bold;
  color: #1e304a;
  line-height: 1.2;
  font-size: 0.4rem;
}
@media (max-width: 1580px) {
  .pub_title h2 {
    font-size: 0.36rem;
  }
}
@media (max-width: 767px) {
  .pub_title h2 {
    font-size: 0.4rem;
  }
}
.pub_title h2 span {
  font-family: 'dou';
  color: #0250ff;
  font-size: 0.72rem;
  font-style: italic;
  line-height: 1;
}
.pub_title p {
  margin-top: 0.2rem;
  color: #999;
}
@media (max-width: 1260px) {
  .pub_title p br {
    display: none;
  }
}
.pub_title2 h2 {
  color: #fff;
}
.pub_title2 p {
  color: rgba(255, 255, 255, 0.7);
}
.pub_title3 {
  text-align: left;
}
.hon {
  overflow: hidden;
  padding: 0.84rem 0 0;
}
.hon .g_swi {
  display: flex;
  justify-content: center;
  margin-top: 0.66rem;
}
@media (max-width: 767px) {
  .hon .g_swi {
    margin-bottom: 0.2rem;
  }
}
.hon .g_swi a {
  cursor: pointer;
  transition: all 0.4s;
  width: 2.48rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0.2rem;
}
@media (max-width: 767px) {
  .hon .g_swi a {
    padding: 0 0.2rem;
    width: auto;
  }
}
.hon .g_swi a.on .img .img1 {
  display: none;
}
.hon .g_swi a.on .img .img2 {
  display: block;
}
.hon .g_swi a.on h3 {
  color: #0250ff;
}
.hon .g_swi a.on h3::after {
  background: #0250ff;
}
.hon .g_swi a .img {
  width: 0.56rem;
  height: 0.56rem;
}
.hon .g_swi a .img .img2 {
  display: none;
}
.hon .g_swi a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hon .g_swi a h3 {
  position: relative;
  padding-bottom: 0.46rem;
  transition: all 0.4s;
  text-align: center;
  white-space: nowrap;
  color: #636e80;
  font-weight: bold;
  margin-top: 0.24rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .hon .g_swi a h3 {
    display: none;
  }
}
.hon .g_swi a h3::after {
  content: '';
  position: absolute;
  width: 100%;
  border-radius: 5px;
  height: 5px;
  background: transparent;
  bottom: 0;
  left: 0;
  transition: all 0.4s;
}
.hon .box {
  position: relative;
}
.hon .box .bbox {
  margin: 0 -1.7rem;
  background: #f6f8ff;
  border-radius: 0.4rem;
  padding: 0.12rem 0.35rem 0.22rem 1.7rem;
  position: absolute;
  top: 0;
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .hon .box .bbox {
    margin: 0 -0.6rem;
  }
}
@media (max-width: 991px) {
  .hon .box .bbox {
    margin: 0;
    padding: 0.3rem;
  }
}
.hon .box .bbox.on {
  position: relative;
  z-index: 10;
  opacity: 1;
}
.hon .box .bbox.on .item .gl {
  opacity: 1;
  top: 0;
}
.hon .box .bbox.on .item .gr {
  opacity: 1;
  top: 0;
}
.hon .box .bbox .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .hon .box .bbox .item {
    flex-direction: column;
  }
}
.hon .box .bbox .item .gl {
  position: relative;
  opacity: 0;
  top: 0.8rem;
  transition: all 0.4s;
  width: 29.41176471%;
}
@media (max-width: 767px) {
  .hon .box .bbox .item .gl {
    width: 100%;
    padding: 0.2rem 0;
  }
}
.hon .box .bbox .item .gl .txt .txt_t {
  color: #1e304a;
  line-height: 1.2;
}
.hon .box .bbox .item .gl .txt .txt_t span {
  font-weight: bold;
}
.hon .box .bbox .item .gl .txt .txt_t h3 {
  font-weight: bold;
}
.hon .box .bbox .item .gl .txt .g_p {
  margin-top: 0.4rem;
}
.hon .box .bbox .item .gl .txt .g_p p {
  color: #636e80;
}
.hon .box .bbox .item .gl .txt .pub_btn {
  margin-top: 0.65rem;
}
.hon .box .bbox .item .gr {
  position: relative;
  top: 1.6rem;
  opacity: 0;
  transition: all 0.4s;
  display: flex;
  justify-content: flex-end;
  width: 70.06535948%;
  height: 6.96rem;
}
@media (max-width: 767px) {
  .hon .box .bbox .item .gr {
    width: 100%;
    height: 4.5rem;
  }
}
.hon .box .bbox .item .gr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.htw {
  overflow: hidden;
  padding: 0.65rem 0 0.73rem;
}
.htw .htw_t {
  position: relative;
  margin: 0 -1.7rem;
  border-radius: 0.6rem;
  padding: 0.9rem 0 0.47rem;
}
@media (max-width: 1580px) {
  .htw .htw_t {
    margin: 0 -0.6rem;
  }
}
@media (max-width: 991px) {
  .htw .htw_t {
    margin: 0;
  }
}
.htw .htw_t .box .g_a {
  text-align: center;
}
.htw .htw_t .box .g_a .pub_btn {
  margin: 0.3rem auto 0;
}
.htw .htw_t .box .htw_t_box {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 1.12rem;
}
@media (max-width: 767px) {
  .htw .htw_t .box .htw_t_box {
    margin-top: 0.5rem;
    flex-wrap: wrap;
  }
}
.htw .htw_t .box .htw_t_box > i {
  bottom: 0;
  width: 100%;
  position: absolute;
}
.htw .htw_t .box .htw_t_box > i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.htw .htw_t .box .htw_t_box .item {
  position: relative;
  z-index: 10;
  margin: 0 0.2rem;
  width: 18.03370787%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .htw .htw_t .box .htw_t_box .item {
    width: 46%;
    margin: 0 2% 0.4rem;
  }
}
.htw .htw_t .box .htw_t_box .item:nth-child(2n) {
  transform: translateY(-0.56rem);
}
@media (max-width: 767px) {
  .htw .htw_t .box .htw_t_box .item:nth-child(2n) {
    transform: translateY(0);
  }
}
.htw .htw_t .box .htw_t_box .item:hover .g_t .imgbj .img1 {
  display: none;
}
.htw .htw_t .box .htw_t_box .item:hover .g_t .imgbj .img2 {
  display: block;
}
.htw .htw_t .box .htw_t_box .item:hover .g_t .txt .txt_t {
  color: #fff;
}
.htw .htw_t .box .htw_t_box .item:hover .g_t .txt .g_p {
  color: rgba(255, 255, 255, 0.5);
}
.htw .htw_t .box .htw_t_box .item .g_t {
  width: 100%;
  position: relative;
}
.htw .htw_t .box .htw_t_box .item .g_t .imgbj {
  position: relative;
}
.htw .htw_t .box .htw_t_box .item .g_t .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.htw .htw_t .box .htw_t_box .item .g_t .imgbj .img2 {
  display: none;
}
.htw .htw_t .box .htw_t_box .item .g_t .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0.36rem 0.44rem 0;
}
@media (max-width: 991px) {
  .htw .htw_t .box .htw_t_box .item .g_t .txt {
    padding: 0.2rem 0.1rem 0;
  }
}
@media (max-width: 767px) {
  .htw .htw_t .box .htw_t_box .item .g_t .txt {
    padding: 0.25rem;
  }
}
.htw .htw_t .box .htw_t_box .item .g_t .txt .txt_t {
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 1;
}
@media (max-width: 1260px) {
  .htw .htw_t .box .htw_t_box .item .g_t .txt .txt_t {
    font-size: 0.36rem;
  }
}
@media (max-width: 767px) {
  .htw .htw_t .box .htw_t_box .item .g_t .txt .txt_t {
    font-size: 0.44rem;
  }
}
.htw .htw_t .box .htw_t_box .item .g_t .txt .txt_t p {
  transition: all 0.4s;
}
.htw .htw_t .box .htw_t_box .item .g_t .txt .txt_t b {
  transition: all 0.4s;
}
.htw .htw_t .box .htw_t_box .item .g_t .txt .txt_t span {
  line-height: 0.8;
  transform: translateY(-0.05rem);
  transition: all 0.4s;
}
.htw .htw_t .box .htw_t_box .item .g_t .txt .g_p {
  margin-top: 0.12rem;
}
.htw .htw_t .box .htw_t_box .item .g_t .txt .g_p p {
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .htw .htw_t .box .htw_t_box .item .g_t .txt .g_p p {
    font-size: 12px;
  }
}
.htw .htw_t .box .htw_t_box .item .g_b {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .htw .htw_t .box .htw_t_box .item .g_b {
    display: none;
  }
}
.htw .htw_t .box .htw_t_box .item .g_b svg,
.htw .htw_t .box .htw_t_box .item .g_b img {
  margin: 0.18rem 0;
  flex-shrink: 0;
  display: flex;
  width: 2px;
  height: auto;
}
.htw .htw_t .box .htw_t_box .item .g_b svg path,
.htw .htw_t .box .htw_t_box .item .g_b img path {
  fill: #0250ff;
}
.htw .htw_t .box .htw_t_box .item .g_b i {
  display: inline-flex;
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  border: 0.05rem solid #fff;
}
.htw .htw_t .bimg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% - 0.47rem);
  pointer-events: none;
}
.htw .htw_t .bimg img {
  height: 0.96rem;
  width: auto;
  max-width: initial;
}
.htw .htw_b {
  margin-top: 0.7rem;
}
.htw .htw_b .tit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.htw .htw_b .tit i {
  width: 100%;
  height: 1px;
  background: #e8eaf0;
  position: absolute;
}
.htw .htw_b .tit .tit_box {
  position: relative;
  padding: 0 0.17rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.htw .htw_b .tit .tit_box h2 {
  margin: 0 0.3rem;
}
.htw .htw_b .tit .tit_box img,
.htw .htw_b .tit .tit_box svg {
  width: 0.81rem;
  height: auto;
}
.htw .htw_b .tit .tit_box img:last-child,
.htw .htw_b .tit .tit_box svg:last-child {
  transform: rotateY(180deg);
}
.htw .htw_b .tit .tit_box img path,
.htw .htw_b .tit .tit_box svg path {
  fill: #d7dcea;
}
.htw .htw_b .htw_bhz {
  margin: 0 -1.7rem;
}
@media (max-width: 1580px) {
  .htw .htw_b .htw_bhz {
    margin: 0 -0.6rem;
  }
}
@media (max-width: 991px) {
  .htw .htw_b .htw_bhz {
    margin: 0;
  }
}
.htw .htw_b .box {
  margin-top: 0.42rem;
  position: relative;
}
.htw .htw_b .box .bj1 {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 25px;
  height: 1rem;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(270deg, #fff 20.45%, hsla(0, 0%, 100%, 0));
}
.htw .htw_b .box .bj2 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 1rem;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(270deg, #fff 20.45%, hsla(0, 0%, 100%, 0));
}
.htw .htw_b .box .item {
  display: flex;
  white-space: initial;
  line-height: 1.5;
}
.htw .htw_b .box .item .htw_b_box {
  width: 324px;
  height: auto;
  margin-right: 0.58rem;
  display: inline-block;
  margin-right: 0.2rem;
}
@media (max-width: 767px) {
  .htw .htw_b .box .item .htw_b_box {
    width: 250px;
  }
}
.htw .htw_b .box .item .htw_b_box .htw_b_nr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.htw .htw_b .box .item .htw_b_box .htw_b_nr .leaf {
  flex-shrink: 0;
  width: 11.111%;
  height: auto;
}
.htw .htw_b .box .item .htw_b_box .htw_b_nr .leaf:first-child {
  transform: rotateY(180deg);
}
.htw .htw_b .box .item .htw_b_box .htw_b_nr .leaf svg,
.htw .htw_b .box .item .htw_b_box .htw_b_nr .leaf img {
  width: 100%;
}
.htw .htw_b .box .item .htw_b_box .htw_b_nr .leaf svg path,
.htw .htw_b .box .item .htw_b_box .htw_b_nr .leaf img path {
  fill: #d7dcea;
}
.htw .htw_b .box .item .htw_b_box .htw_b_nr .htw_b_con {
  white-space: initial;
  width: 75%;
}
.htw .htw_b .box .item .htw_b_box .htw_b_nr .htw_b_con .htw_b_con_tit {
  position: relative;
  margin-bottom: 0.1rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.htw .htw_b .box .item .htw_b_box .htw_b_nr .htw_b_con .htw_b_con_tit p {
  color: #185afd;
  margin: 0 0.09rem;
}
.htw .htw_b .box .item .htw_b_box .htw_b_nr .htw_b_con .htw_b_con_tit img,
.htw .htw_b .box .item .htw_b_box .htw_b_nr .htw_b_con .htw_b_con_tit svg {
  width: 0.34rem;
  height: auto;
}
.htw .htw_b .box .item .htw_b_box .htw_b_nr .htw_b_con .htw_b_con_tit img:last-child,
.htw .htw_b .box .item .htw_b_box .htw_b_nr .htw_b_con .htw_b_con_tit svg:last-child {
  transform: rotateY(180deg);
}
.htw .htw_b .box .item .htw_b_box .htw_b_nr .htw_b_con .htw_b_con_tit img path,
.htw .htw_b .box .item .htw_b_box .htw_b_nr .htw_b_con .htw_b_con_tit svg path {
  fill: #185afd;
}
.htw .htw_b .box .item .htw_b_box .htw_b_nr .htw_b_con .txt {
  text-align: center;
}
.htw .htw_b .box .item .htw_b_box .htw_b_nr .htw_b_con .txt h3 {
  margin-bottom: 0.1rem;
  line-height: 1.2;
  color: #1d2129;
  font-weight: bold;
}
.htw .htw_b .box .item .htw_b_box .htw_b_nr .htw_b_con .txt span {
  color: rgba(99, 110, 128, 0.5);
  font-weight: bold;
}
.hth {
  background: #f7f9ff;
  padding: 1.1rem 0 0.8rem;
}
.hth .hth_t {
  margin-bottom: 0.72rem;
}
.hth .hth_swi {
  position: relative;
  margin-top: 0.88rem;
}
.hth .hth_swi .hth_swi_box {
  border-radius: 0.2rem;
  background: #fff;
  padding: 0.16rem;
  padding-right: 0.58rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hth .hth_swi .hth_swi_box {
    flex-direction: column;
    padding: 0.28rem;
  }
}
.hth .hth_swi .hth_swi_box .gl {
  position: relative;
  width: 38.14055637%;
}
@media (max-width: 767px) {
  .hth .hth_swi .hth_swi_box .gl {
    width: 100%;
  }
}
.hth .hth_swi .hth_swi_box .gl .public-img {
  border-radius: 0.12rem;
}
.hth .hth_swi .hth_swi_box .gl .public-img:before {
  padding-top: 70.82533589%;
}
.hth .hth_swi .hth_swi_box .gl .g_lab {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
}
.hth .hth_swi .hth_swi_box .gl .g_lab span {
  border-radius: 0.12rem 0 0.12rem 0;
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
  padding: 0.05rem 0.2rem;
  color: #fff;
}
.hth .hth_swi .hth_swi_box .gr {
  width: 58.56515373%;
}
@media (max-width: 767px) {
  .hth .hth_swi .hth_swi_box .gr {
    width: 100%;
  }
}
.hth .hth_swi .hth_swi_box .gr .gr_lab {
  padding-top: 0.3rem;
  display: flex;
  justify-content: space-between;
}
.hth .hth_swi .hth_swi_box .gr .gr_lab .left {
  display: flex;
  flex-wrap: wrap;
}
.hth .hth_swi .hth_swi_box .gr .gr_lab .left span {
  border-radius: 4px;
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
  padding: 0.07rem 0.2rem;
  background: rgba(5, 82, 255, 0.05);
  color: #1e5dfc;
  margin: 0 0.1rem 0.1rem 0;
  font-weight: bold;
}
.hth .hth_swi .hth_swi_box .gr .gr_lab .right {
  width: 0.46rem;
  height: auto;
  flex-shrink: 0;
  margin-left: 0.2rem;
}
.hth .hth_swi .hth_swi_box .gr .gr_lab .right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hth .hth_swi .hth_swi_box .gr .txt {
  margin-bottom: 0.28rem;
  margin-top: 0.12rem;
}
.hth .hth_swi .hth_swi_box .gr .txt .g_p p {
  color: rgba(29, 33, 41, 0.7);
}
.hth .hth_swi .hth_swi_box .gr .txt .g_lab {
  margin-top: 0.38rem;
  display: flex;
  justify-content: flex-end;
}
.hth .hth_swi .hth_swi_box .gr .txt .g_lab p {
  color: rgba(29, 33, 41, 0.7);
  padding-left: 0.56rem;
  position: relative;
}
.hth .hth_swi .hth_swi_box .gr .txt .g_lab p::after {
  content: '';
  position: absolute;
  width: 0.39rem;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #d7dcea;
}
.hth .hth_swi .hth_swi_box .gr .g_num {
  padding-top: 0.34rem;
  border-top: 1px solid #ebedf4;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}
.hth .hth_swi .hth_swi_box .gr .g_num .left {
  flex-wrap: wrap;
  display: flex;
}
.hth .hth_swi .hth_swi_box .gr .g_num .left .g_num_box {
  margin: 0 0.88rem 0.1rem 0;
}
@media (max-width: 767px) {
  .hth .hth_swi .hth_swi_box .gr .g_num .left .g_num_box {
    margin: 0 0.2rem 0.1rem 0;
  }
}
.hth .hth_swi .hth_swi_box .gr .g_num .left .g_num_box:last-child {
  margin-right: 0;
}
.hth .hth_swi .hth_swi_box .gr .g_num .left .g_num_box .g_num_t p {
  color: #1e304a;
  font-weight: bold;
  line-height: 1;
}
.hth .hth_swi .hth_swi_box .gr .g_num .left .g_num_box .g_num_b {
  margin-top: 5px;
  display: flex;
  align-items: center;
}
.hth .hth_swi .hth_swi_box .gr .g_num .left .g_num_box .g_num_b p {
  color: rgba(29, 33, 41, 0.6);
}
.hth .hth_swi .hth_swi_box .gr .g_num .left .g_num_box .g_num_b img,
.hth .hth_swi .hth_swi_box .gr .g_num .left .g_num_box .g_num_b svg {
  margin-left: 0.12rem;
  width: 0.19rem;
  height: auto;
}
.hth .hth_swi .hth_swi_box .gr .g_num .right {
  padding-bottom: 0.2rem;
  flex-shrink: 0;
  margin-left: 0.2rem;
}
.hth .hth_swi .hth_swi_box .gr .g_num .right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hth .hth_swi .swip2_pag {
  margin-top: 0.35rem;
  position: initial;
}
.hth .hth_swi .swip2_pag span {
  overflow: hidden;
  transition: all 0.4s;
  width: 20px;
  height: 6px;
  background: #e1e3e9;
  border-radius: 6px;
  opacity: 1;
  position: relative;
}
.hth .hth_swi .swip2_pag span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 6px;
  height: 100%;
  background: #0250ff;
  transform: translateX(-100%);
}
.hth .hth_swi .swip2_pag .swiper-pagination-bullet-active {
  width: 48px;
}
.hth .hth_swi .swip2_pag .swiper-pagination-bullet-active::after {
  animation: moveq1 5s 1 forwards;
  -webkit-animation: moveq1 5s 1 forwards;
}
.hth .hth_swi .g_qie .pub_prev {
  left: -0.96rem;
}
.hth .hth_swi .g_qie .pub_next {
  right: -0.96rem;
}
.hth .hth_b .g_tit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hth .hth_b .g_tit i {
  width: 100%;
  height: 1px;
  background: #e8eaf0;
  position: absolute;
}
.hth .hth_b .g_tit p {
  position: relative;
  z-index: 10;
  padding: 0 0.12rem;
  background: #f7f9ff;
  color: #787b80;
}
.hth .hth_b .g_tit p span {
  color: #1e304a;
  font-weight: bold;
}
.hth .hth_b .hth_b_box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.18rem;
  margin-top: 0.5rem;
}
.hth .hth_b .hth_b_box .item {
  width: calc(100%/7);
  margin-bottom: 0.36rem;
  padding: 0 0.18rem;
}
@media (max-width: 991px) {
  .hth .hth_b .hth_b_box .item {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .hth .hth_b .hth_b_box .item {
    width: 50%;
  }
}
.hth .hth_b .hth_b_box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
.hth .hth_b .hth_b_box .item .itembox .public-img {
  border-radius: 0.12rem;
  background: #fff;
}
.hth .hth_b .hth_b_box .item .itembox .public-img:before {
  padding-top: 40.22988506%;
}
.hth .hth_b .g_ba {
  margin-top: 0.45rem;
  text-align: center;
}
@keyframes moveq1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@media (max-width: 1260px) {
  .g_qie {
    display: none;
  }
}
.g_qie .pub_nav {
  width: 0.56rem;
  height: 0.56rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.08rem 0.35rem rgba(128, 142, 174, 0.22);
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 10;
  cursor: pointer;
  transition: all 0.4s;
}
.g_qie .pub_nav:hover {
  background: #0250ff;
}
.g_qie .pub_nav:hover svg path {
  fill: #fff;
}
.g_qie .pub_nav svg {
  width: 14.3%;
  height: auto;
}
.g_qie .pub_nav svg path {
  fill: #687384;
  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;
}
.hfo {
  padding: 0.82rem 0 0.87rem;
}
.hfo .box {
  box-shadow: 0 0.3rem 1.2rem rgba(30, 90, 253, 0.2);
  margin-top: 0.68rem;
  border-radius: 0.2rem;
  background: #f9faff;
  padding: 0.32rem;
  padding-right: 0.38rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hfo .box {
    flex-direction: column;
  }
}
.hfo .box .gl {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 67.29927007%;
}
@media (max-width: 767px) {
  .hfo .box .gl {
    width: 100%;
    flex-direction: column;
  }
}
.hfo .box .gl:hover .public-img img {
  transform: scale(1.05);
}
.hfo .box .gl:hover .txt .txt_t h3 {
  color: #0452ff;
}
.hfo .box .gl:hover .txt .g_more svg,
.hfo .box .gl:hover .txt .g_more img {
  transform: rotate(45deg);
}
.hfo .box .gl .img {
  width: 41.75704989%;
}
@media (max-width: 767px) {
  .hfo .box .gl .img {
    width: 100%;
  }
}
.hfo .box .gl .img .public-img {
  border-radius: 0.12rem;
}
.hfo .box .gl .img .g_lab {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
}
.hfo .box .gl .img .g_lab span {
  border-radius: 0.12rem 0 0.12rem 0;
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
  padding: 0.05rem 0.2rem;
  color: #fff;
}
.hfo .box .gl .txt {
  border-right: 1px solid #d7dcea;
  padding: 0.2rem 0 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 53.14533623%;
}
@media (max-width: 767px) {
  .hfo .box .gl .txt {
    width: 100%;
    border: none;
    margin-top: 0.2rem;
  }
}
.hfo .box .gl .txt .txt_t {
  padding-right: 0.6rem;
}
@media (max-width: 767px) {
  .hfo .box .gl .txt .txt_t {
    padding: 0;
  }
}
.hfo .box .gl .txt .txt_t h3 {
  transition: all 0.4s;
  font-weight: bold;
  color: #1e304a;
  margin-bottom: 0.18rem;
  line-height: 1.2;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hfo .box .gl .txt .txt_t span {
  color: #636e80;
  opacity: 0.55;
  font-weight: bold;
}
.hfo .box .gl .txt .txt_t p {
  margin-top: 0.3rem;
  line-height: 1.9;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  height: 7.6em;
}
.hfo .box .gl .txt .g_more {
  width: 0.56rem;
  height: 0.56rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.08rem 0.35rem rgba(128, 142, 174, 0.22);
  z-index: 10;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .hfo .box .gl .txt .g_more {
    width: 0.8rem;
    height: 0.8rem;
    margin-top: 0.2rem;
  }
}
.hfo .box .gl .txt .g_more img,
.hfo .box .gl .txt .g_more svg {
  transition: all 0.4s;
  width: 19.65%;
  height: auto;
}
.hfo .box .gl .txt .g_more img path,
.hfo .box .gl .txt .g_more svg path {
  fill: #687384;
  opacity: 1;
  transition: all 0.4s;
}
.hfo .box .gl .bjicon {
  width: 1.31rem;
  height: auto;
  position: absolute;
  bottom: -0.56rem;
  right: 0.14rem;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hfo .box .gl .bjicon {
    display: none;
  }
}
.hfo .box .gr {
  width: 32.70072993%;
  padding-left: 0.32rem;
}
@media (max-width: 767px) {
  .hfo .box .gr {
    width: 100%;
    padding: 0;
  }
}
.hfo .box .gr .hfo_a {
  display: block;
  padding: 0 0 0.2rem;
  margin-bottom: 0.24rem;
  transition: all 0.4s;
  border-bottom: 1px solid #d7dcea;
}
.hfo .box .gr .hfo_a:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.hfo .box .gr .hfo_a:hover {
  border-color: #0452ff;
}
.hfo .box .gr .hfo_a:hover .g_h3 h3 {
  color: #0452ff;
}
.hfo .box .gr .hfo_a:hover .g_b span {
  color: #0452ff;
}
.hfo .box .gr .hfo_a:hover .g_b .g_more svg path {
  fill: #0452ff;
}
.hfo .box .gr .hfo_a .g_h3 {
  display: flex;
  align-items: center;
  margin-bottom: 0.22rem;
  overflow: hidden;
  height: 3em;
}
.hfo .box .gr .hfo_a .g_h3 h3 {
  color: #1e304a;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all 0.4s;
}
.hfo .box .gr .hfo_a .g_b {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hfo .box .gr .hfo_a .g_b span {
  font-weight: bold;
  color: rgba(99, 110, 128, 0.55);
  transition: all 0.4s;
}
.hfo .box .gr .hfo_a .g_b .g_more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 10;
  transition: all 0.4s;
}
.hfo .box .gr .hfo_a .g_b .g_more img,
.hfo .box .gr .hfo_a .g_b .g_more svg {
  width: 10px;
  height: auto;
}
.hfo .box .gr .hfo_a .g_b .g_more img path,
.hfo .box .gr .hfo_a .g_b .g_more svg path {
  fill: #687384;
  opacity: 1;
  transition: all 0.4s;
}
.hfo .g_tac {
  margin-top: 0.6rem;
}
.hfo .g_tac .pub_btn:hover p {
  color: #fff;
}
.hfo .g_tac .pub_btn p {
  color: #1d2129;
  font-weight: bold;
}
.g_tac {
  text-align: center;
}
.hfi {
  padding: 1.12rem 0 0.9rem;
}
.hfi .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.1rem;
  margin-top: 0.84rem;
}
.hfi .box .item {
  width: calc(100%/8);
  margin-bottom: 0.2rem;
  padding: 0 0.1rem;
}
@media (max-width: 991px) {
  .hfi .box .item {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .hfi .box .item {
    width: 50%;
  }
}
.hfi .box .item:hover .itembox .public-img {
  opacity: 0;
}
.hfi .box .item:hover .itembox .txt {
  opacity: 1;
}
.hfi .box .item .itembox {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.hfi .box .item .itembox .public-img {
  border-radius: 0.12rem;
  background: #fff;
}
.hfi .box .item .itembox .public-img:before {
  padding-top: 49.69325153%;
}
.hfi .box .item .itembox .txt {
  transition: all 0.4s;
  opacity: 0;
  position: absolute;
  border-radius: 0.12rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hfi .box .item .itembox .txt p {
  color: #fff;
  font-weight: bold;
}
.hfi .g_tac {
  margin-top: 0.4rem;
}
.hfi .g_tac .pub_btn:hover p {
  color: #fff;
}
.hfi .g_tac .pub_btn p {
  font-weight: bold;
  color: #1e304a;
}
.hsi {
  padding: 0.75rem 0 0.8rem;
}
.hsi .pub_title p {
  margin-top: 0.12rem;
}
.hsi .g_tac {
  margin-top: 0.3rem;
}
/* 底部 */
footer {
  color: #fff;
  background: #091023;
}
footer a {
  transition: all 0.4s;
}
footer a:hover {
  color: #fff !important;
}
footer .footer_t {
  padding: 0.76rem 0 0.84rem;
}
footer .footer_t .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1260px) {
  footer .footer_t .container {
    flex-direction: column;
  }
}
footer .footer_t .container .gl {
  padding-right: 0.2rem;
  width: 27.22222222%;
}
@media (max-width: 1260px) {
  footer .footer_t .container .gl {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 767px) {
  footer .footer_t .container .gl {
    flex-direction: column;
  }
}
footer .footer_t .container .gl .g_tel span {
  opacity: 0.77;
}
footer .footer_t .container .gl .g_tel p {
  font-weight: bold;
  margin: 0.12rem 0 0.22rem;
}
footer .footer_t .container .gl .g_p p {
  margin-bottom: 0.1rem;
  opacity: 0.5;
  line-height: 1.65;
}
footer .footer_t .container .gl .g_wl {
  display: flex;
  margin-top: 0.64rem;
}
@media (max-width: 767px) {
  footer .footer_t .container .gl .g_wl {
    margin-top: 0.4rem;
  }
}
footer .footer_t .container .gl .g_wl a {
  margin-right: 0.15rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  footer .footer_t .container .gl .g_wl a {
    width: 0.7rem;
    height: 0.7rem;
    margin-right: 0.3rem;
  }
}
footer .footer_t .container .gl .g_wl a.on .foot_t_r_ewm {
  transform: translateX(-50%) scale(1);
}
footer .footer_t .container .gl .g_wl a:hover i {
  opacity: 1;
}
footer .footer_t .container .gl .g_wl a:hover > svg path,
footer .footer_t .container .gl .g_wl a:hover > img path {
  fill: #fff;
}
footer .footer_t .container .gl .g_wl a i {
  opacity: 0;
  border-radius: 50%;
  transition: all 0.4s;
  position: absolute;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
}
footer .footer_t .container .gl .g_wl a > svg,
footer .footer_t .container .gl .g_wl a > img {
  width: auto;
  height: 37.5%;
  position: relative;
  z-index: 10;
}
footer .footer_t .container .gl .g_wl a > svg path,
footer .footer_t .container .gl .g_wl a > img path {
  fill: #585d6a;
}
footer .footer_t .container .gl .g_wl a .foot_t_r_ewm {
  position: absolute;
  top: 110%;
  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 .footer_t .container .gl .g_wl a .foot_t_r_ewm img {
  object-fit: contain;
}
footer .footer_t .container .gl .g_wl a .foot_t_r_ewm svg {
  width: 9px;
  height: 5px;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}
footer .footer_t .container .gl .g_wl a .foot_t_r_ewm svg path {
  fill: #fff;
}
footer .footer_t .container .gr {
  width: 72.77777778%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1260px) {
  footer .footer_t .container .gr {
    width: 100%;
  }
}
@media (max-width: 767px) {
  footer .footer_t .container .gr {
    flex-direction: column;
  }
}
footer .footer_b {
  background: #040b1f;
}
footer .footer_b .foot_lj {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.25);
  padding: 0.25rem 0 0.15rem;
  display: flex;
}
@media (max-width: 767px) {
  footer .footer_b .foot_lj {
    flex-direction: column;
    padding: 0.4rem 0;
  }
}
footer .footer_b .foot_lj p {
  flex-shrink: 0;
  margin-right: 0.15rem;
}
@media (max-width: 767px) {
  footer .footer_b .foot_lj p {
    margin-bottom: 0.2rem;
  }
}
footer .footer_b .foot_lj .foot_lj_a {
  margin-top: 0.03rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
footer .footer_b .foot_lj .foot_lj_a a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
  padding-right: 0.11rem;
  margin-right: 0.11rem;
  margin-bottom: 0.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
footer .footer_b .foot_lj .foot_lj_a a:last-child {
  border: none;
  padding-right: 0;
  margin-right: 0;
}
footer .footer_b .foot_db {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.27rem 0 0.35rem;
}
@media (max-width: 767px) {
  footer .footer_b .foot_db {
    flex-direction: column;
  }
}
footer .footer_b .foot_db .gl {
  align-items: flex-start;
  display: flex;
}
@media (max-width: 767px) {
  footer .footer_b .foot_db .gl {
    flex-direction: column;
  }
}
footer .footer_b .foot_db .gl .foot_logo {
  flex-shrink: 0;
  width: 1.14rem;
  height: auto;
  margin-right: 0.48rem;
}
@media (max-width: 767px) {
  footer .footer_b .foot_db .gl .foot_logo {
    margin-bottom: 0.3rem;
    width: 2rem;
  }
}
footer .footer_b .foot_db .gl .foot_db_p {
  font-size: 12px;
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1580px) {
  footer .footer_b .foot_db .gl .foot_db_p {
    width: 75%;
  }
}
@media (max-width: 767px) {
  footer .footer_b .foot_db .gl .foot_db_p {
    width: 100%;
    margin-bottom: 0.2rem;
  }
}
footer .footer_b .foot_db .gl .foot_db_p a,
footer .footer_b .foot_db .gl .foot_db_p p {
  margin-bottom: 0.1rem;
}
footer .footer_b .foot_db .gl .foot_db_p a {
  color: rgba(255, 255, 255, 0.5);
}
footer .footer_b .foot_db .gl .foot_db_p .p1 {
  margin-right: 0.17rem;
}
footer .footer_b .foot_db .gl .foot_db_p .a1 {
  margin-right: 0.13rem;
}
footer .footer_b .foot_db .gl .foot_db_p .fwl span {
  position: relative;
  margin-right: 0.14rem;
  padding-right: 0.14rem;
}
footer .footer_b .foot_db .gl .foot_db_p .fwl span:last-child {
  margin-right: 0;
  padding-right: 0;
}
footer .footer_b .foot_db .gl .foot_db_p .fwl span:last-child::after {
  display: none;
}
footer .footer_b .foot_db .gl .foot_db_p .fwl span::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
footer .footer_b .foot_db .gr {
  flex-shrink: 0;
  display: flex;
}
footer .footer_b .foot_db .gr a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  padding-right: 0.11rem;
  margin-right: 0.11rem;
  margin-bottom: 0.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
footer .footer_b .foot_db .gr a:last-child {
  border: none;
  padding-right: 0;
  margin-right: 0;
}
/* CIO服务v2 */
.sub_banner {
  height: 6.4rem;
  width: 100%;
  position: relative;
}
@media (max-width: 1260px) {
  .sub_banner {
    height: auto;
    padding: 1rem 0;
  }
}
@media (max-width: 767px) {
  .sub_banner {
    padding: 2rem 0 1rem;
  }
}
.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 {
  overflow: hidden;
  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;
}
@media (max-width: 991px) {
  .sub_banner .sub_banner_txt .container {
    flex-direction: column-reverse;
  }
}
.sub_banner .sub_banner_txt .container .ban_l {
  flex-shrink: 0;
  width: 50%;
}
@media (max-width: 991px) {
  .sub_banner .sub_banner_txt .container .ban_l {
    width: 100%;
  }
}
.sub_banner .sub_banner_txt .container .ban_l .tit h1 {
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.15rem;
}
.sub_banner .sub_banner_txt .container .ban_l .tit span {
  line-height: 1.3;
  font-weight: bold;
  display: block;
}
@media (max-width: 1260px) {
  .sub_banner .sub_banner_txt .container .ban_l .tit span br {
    display: none;
  }
}
.sub_banner .sub_banner_txt .container .ban_l .pub_btn {
  margin-top: 0.55rem;
}
.sub_banner .sub_banner_txt .container .ban_r {
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .sub_banner .sub_banner_txt .container .ban_r {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container .ban_r {
    justify-content: center;
  }
}
.sub_banner .sub_banner_txt .container .ban_r .cio_img {
  margin-left: 0.42rem;
  width: 97.77%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: end;
}
@media (max-width: 1580px) {
  .sub_banner .sub_banner_txt .container .ban_r .cio_img {
    width: 70%;
  }
}
@media (max-width: 1260px) {
  .sub_banner .sub_banner_txt .container .ban_r .cio_img {
    align-items: center;
    justify-content: center;
    width: 80%;
  }
}
@media (max-width: 991px) {
  .sub_banner .sub_banner_txt .container .ban_r .cio_img {
    margin-left: 0;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.ciobaner_tw {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.44rem;
}
.ciobaner_tw .item {
  margin-right: 0.24rem;
  width: 28.05555556%;
  background: #e8efff;
  border: 1px solid #cedcff;
  border-radius: 0.1rem;
  box-shadow: inset -5px -9px 10px rgba(190, 209, 255, 0.53);
  padding: 0.11rem 0.14rem;
}
@media (max-width: 1580px) {
  .ciobaner_tw .item {
    padding: 0.21rem 0.24rem;
  }
}
@media screen and (max-width: 1380px) {
  .ciobaner_tw .item {
    padding: 0.11rem 0.14rem;
    width: 31%;
    margin-right: 2%;
  }
}
@media (max-width: 1260px) {
  .ciobaner_tw .item {
    width: 48%;
    margin-bottom: 0.2rem;
  }
}
@media (max-width: 991px) {
  .ciobaner_tw .item {
    width: 31%;
  }
}
@media (max-width: 767px) {
  .ciobaner_tw .item {
    width: 48%;
  }
}
.ciobaner_tw .item .ciotw_t {
  margin-bottom: 0.15rem;
  display: flex;
  align-items: center;
}
@media (max-width: 1580px) {
  .ciobaner_tw .item .ciotw_t {
    margin-bottom: 0.25rem;
  }
}
.ciobaner_tw .item .ciotw_t img {
  width: auto;
  height: 24px;
  margin-right: 0.13rem;
}
.ciobaner_tw .item .ciotw_t h3 {
  font-weight: bold;
  color: #000;
}
.ciobaner_tw .item .g_p p {
  color: #556c9a;
  opacity: 0.77;
  margin-bottom: 0.05rem;
}
.cioon {
  padding: 1.02rem 0 0.5rem;
}
.cioon .box {
  margin-top: 0.98rem;
}
.cioon .box .item {
  margin-bottom: 1.1rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cioon .box .item {
    flex-direction: column !important;
  }
}
.cioon .box .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.cioon .box .item:nth-child(2n) .gr {
  padding: 0 1.68rem 0 0.54rem;
}
@media (max-width: 991px) {
  .cioon .box .item:nth-child(2n) .gr {
    padding: 0 0.4rem;
  }
}
.cioon .box .item .gl {
  width: 50%;
}
@media (max-width: 767px) {
  .cioon .box .item .gl {
    width: 100%;
  }
}
.cioon .box .item .gl .public-img {
  border-radius: 0.2rem;
}
.cioon .box .item .gl .public-img:before {
  padding-top: 69.44444444%;
}
.cioon .box .item .gr {
  padding: 0 0.54rem 0 1.68rem;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cioon .box .item .gr {
    padding: 0 0.4rem;
  }
}
@media (max-width: 767px) {
  .cioon .box .item .gr {
    width: 100%;
    padding: 0.4rem 0 !important;
  }
}
.cioon .box .item .gr .g_h3 {
  margin-bottom: 0.64rem;
}
.cioon .box .item .gr .g_h3 h3 {
  line-height: 1.2;
  font-weight: bold;
  color: #091023;
}
.cioon .box .item .gr .cioon_zk .gli {
  margin-bottom: 0.32rem;
}
.cioon .box .item .gr .cioon_zk .gli.on .tit i svg path,
.cioon .box .item .gr .cioon_zk .gli.on .tit i img path {
  fill: #4c71f8;
}
.cioon .box .item .gr .cioon_zk .gli.on .tit p {
  color: #4c71f8;
}
.cioon .box .item .gr .cioon_zk .gli:first-child .g_p {
  display: block;
}
.cioon .box .item .gr .cioon_zk .gli .tit {
  display: flex;
  align-items: center;
}
.cioon .box .item .gr .cioon_zk .gli .tit i {
  margin-right: 0.12rem;
  flex-shrink: 0;
  display: flex;
  width: 0.24rem;
  height: auto;
}
@media (max-width: 767px) {
  .cioon .box .item .gr .cioon_zk .gli .tit i {
    width: 0.38rem;
  }
}
.cioon .box .item .gr .cioon_zk .gli .tit i svg,
.cioon .box .item .gr .cioon_zk .gli .tit i img {
  width: 100%;
  height: auto;
}
.cioon .box .item .gr .cioon_zk .gli .tit i svg path,
.cioon .box .item .gr .cioon_zk .gli .tit i img path {
  transition: all 0.4s;
  fill: #64718c;
}
.cioon .box .item .gr .cioon_zk .gli .tit p {
  transition: all 0.4s;
  color: #1e304a;
  font-weight: bold;
}
.cioon .box .item .gr .cioon_zk .gli .g_p {
  display: none;
  padding: 0.18rem 0 0.32rem;
  border-bottom: 1px solid #e0e3ed;
}
.cioon .box .item .gr .cioon_zk .gli .g_p p {
  color: #636e80;
  line-height: 1.75;
}
.cioon .box .item .gr .cioon_zk .gli2 {
  margin-bottom: 0.32rem;
}
.cioon .box .item .gr .cioon_zk .gli2 .tit {
  display: flex;
  align-items: center;
}
.cioon .box .item .gr .cioon_zk .gli2 .tit i {
  margin-right: 0.12rem;
  flex-shrink: 0;
  display: flex;
  width: 0.24rem;
  height: auto;
}
.cioon .box .item .gr .cioon_zk .gli2 .tit i svg,
.cioon .box .item .gr .cioon_zk .gli2 .tit i img {
  width: 100%;
  height: auto;
}
.cioon .box .item .gr .cioon_zk .gli2 .tit i svg path,
.cioon .box .item .gr .cioon_zk .gli2 .tit i img path {
  transition: all 0.4s;
  fill: #64718c;
}
.cioon .box .item .gr .cioon_zk .gli2 .tit p {
  transition: all 0.4s;
  color: #1e304a;
  font-weight: bold;
}
.cioon .box .item .gr .cioon_zk .gli2 .g_p {
  padding: 0.18rem 0 0;
}
.cioon .box .item .gr .cioon_zk .gli2 .g_p p {
  color: #636e80;
  line-height: 1.75;
}
.ciotw {
  padding: 1.22rem 0 1.9rem;
}
.ciotw .box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 1rem;
}
@media (max-width: 991px) {
  .ciotw .box {
    flex-wrap: wrap;
  }
}
.ciotw .box > i {
  margin-top: 1.97rem;
  width: 1px;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .ciotw .box > i {
    display: none;
  }
}
.ciotw .box > i img {
  max-width: initial;
  width: 0.77rem;
  height: auto;
}
@media (max-width: 1260px) {
  .ciotw .box > i img {
    width: 0.5rem;
  }
}
.ciotw .box .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 991px) {
  .ciotw .box .item {
    width: 33.33%;
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 767px) {
  .ciotw .box .item {
    width: 50%;
  }
}
.ciotw .box .item .img {
  margin-bottom: 0.28rem;
  width: 1.5rem;
}
.ciotw .box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ciotw .box .item .tit {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.ciotw .box .item .tit span {
  line-height: 0.8;
  font-family: 'dou';
  font-style: italic;
  color: #306afd;
}
.ciotw .box .item .tit span i {
  margin-left: 3px;
  color: #d1dfff;
}
.ciotw .box .item .tit h3 {
  font-weight: bold;
  color: #1e304a;
}
.ciotw .box .item .g_p {
  box-shadow: 0 0.23rem 0.49rem rgba(128, 142, 174, 0.13);
  display: flex;
  align-items: center;
  text-align: left;
  padding: 0 0.22rem 0 0.32rem;
  margin-top: 0.28rem;
  width: 2.16rem;
  height: 1.4rem;
  background: url(../images/cio19.png) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 991px) {
  .ciotw .box .item .g_p {
    width: 2.66rem;
    height: 1.7rem;
  }
}
@media (max-width: 767px) {
  .ciotw .box .item .g_p {
    width: 2.86rem;
    height: 1.75rem;
  }
}
.ciotw .box .item .g_p p {
  color: #636e80;
}
.cioth {
  padding: 1.1rem 0 0.6rem;
}
.cioth .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.22rem;
  margin-top: 0.76rem;
}
.cioth .box .item {
  width: calc(100%/7);
  margin-bottom: 0.6rem;
  padding: 0 0.22rem;
}
@media (max-width: 991px) {
  .cioth .box .item {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .cioth .box .item {
    width: 50%;
  }
}
.cioth .box .item:hover .itembox .public-img {
  box-shadow: 0 0.38rem 0.38rem rgba(128, 142, 174, 0.13);
}
.cioth .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
.cioth .box .item .itembox .public-img {
  transition: all 0.4s;
  border-radius: 0.2rem;
  border: 1px solid #ebedf4;
}
.cioth .box .item .itembox .txt h3 {
  text-align: center;
  color: #636e80;
  margin-top: 0.15rem;
}
/* 学加家-产品-移动门户 */
.mobon {
  padding: 1.08rem 0 0.8rem;
}
.mobon .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.22rem;
  margin-top: 0.7rem;
}
.mobon .box .item {
  width: 33.33%;
  margin-bottom: 0.44rem;
  padding: 0 0.22rem;
}
@media (max-width: 991px) {
  .mobon .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .mobon .box .item {
    width: 100%;
  }
}
.mobon .box .item .itembox {
  border-radius: 0.2rem;
  border: 2px solid #f9fafd;
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0 0.12rem 0.68rem rgba(157, 175, 213, 0.4);
}
.mobon .box .item .itembox .itemcon {
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.2rem;
  border: 7px solid #f0f5fd;
  padding: 0.6rem 0.45rem 0.7rem;
}
.mobon .box .item .itembox .itemcon .img {
  margin-bottom: 0.22rem;
  width: 0.68rem;
  height: 0.68rem;
}
@media (max-width: 767px) {
  .mobon .box .item .itembox .itemcon .img {
    width: 1rem;
    height: 1rem;
  }
}
.mobon .box .item .itembox .itemcon .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mobon .box .item .itembox .itemcon .txt h3 {
  line-height: 1.3;
  color: #1e304a;
  text-align: center;
  font-weight: bold;
}
.mobon .box .item .itembox .itemcon .txt p {
  margin-top: 0.24rem;
  color: #636e80;
}
.probox {
  margin-top: 0.9rem;
}
.probox .item {
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .probox .item {
    flex-direction: column-reverse !important;
  }
}
.probox .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.probox .item:nth-child(2n) .gl {
  padding-left: 0.82rem;
}
@media (max-width: 991px) {
  .probox .item:nth-child(2n) .gl {
    padding: 0 0.4rem;
  }
}
.probox .item .gr {
  width: 50%;
}
@media (max-width: 767px) {
  .probox .item .gr {
    width: 100%;
  }
}
.probox .item .gr .public-img {
  border-radius: 0.1rem;
}
.probox .item .gr .public-img:before {
  padding-top: 69.44444444%;
}
.probox .item .gl {
  padding: 0.68rem 0 0.4rem;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .probox .item .gl {
    padding: 0 0.4rem;
  }
}
@media (max-width: 767px) {
  .probox .item .gl {
    width: 100%;
    padding: 0.4rem 0 !important;
  }
}
.probox .item .gl .txt {
  padding-right: 1rem;
  margin-bottom: 0.48rem;
}
@media (max-width: 991px) {
  .probox .item .gl .txt {
    padding: 0;
  }
}
.probox .item .gl .txt h3 {
  line-height: 1.2;
  font-weight: bold;
  color: #1d2129;
}
.probox .item .gl .txt h3 span {
  display: block;
  /* font-family: 'dou'; */
}
.probox .item .gl .txt p {
  margin-top: 0.3rem;
  color: #636e80;
}
@media (max-width: 991px) {
  .probox .item .gl .txt p br {
    display: none;
  }
}
.mobfo {
  padding: 0.44rem 0 1.17rem;
}
.mobfo .g_tac {
  margin-top: 0.34rem;
}
.mobfo .box {
  margin-top: 0.54rem;
}
.mobfi {
  background: #f7f9ff;
  padding: 1.1rem 0 1.08rem;
}
.mobfi .hth_t .pub_title p {
  margin-top: 0.14rem;
}
.mobfi .hth_swi {
  position: relative;
  margin-top: 0.7rem;
}
.mobfi .hth_swi .hth_swi_box {
  border-radius: 0.2rem;
  background: #fff;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .mobfi .hth_swi .hth_swi_box {
    flex-direction: column;
  }
}
.mobfi .hth_swi .hth_swi_box .gl {
  position: relative;
  width: 50%;
}
@media (max-width: 991px) {
  .mobfi .hth_swi .hth_swi_box .gl {
    width: 100%;
  }
}
.mobfi .hth_swi .hth_swi_box .gl .public-img {
  border-radius: 0.12rem;
}
.mobfi .hth_swi .hth_swi_box .gl .public-img:before {
  padding-top: 55.55555556%;
}
.mobfi .hth_swi .hth_swi_box .gl .g_lab {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
}
.mobfi .hth_swi .hth_swi_box .gl .g_lab span {
  border-radius: 0.12rem 0 0.12rem 0;
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
  padding: 0.05rem 0.2rem;
  color: #fff;
}
.mobfi .hth_swi .hth_swi_box .gr {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.22rem 0.44rem 0.1rem 0.55rem;
}
@media (max-width: 991px) {
  .mobfi .hth_swi .hth_swi_box .gr {
    width: 100%;
    padding: 0.4rem;
  }
}
.mobfi .hth_swi .hth_swi_box .gr .gr_logo {
  padding-right: 0.3rem;
  display: flex;
  justify-content: space-between;
}
.mobfi .hth_swi .hth_swi_box .gr .gr_logo .left {
  display: flex;
  flex-wrap: wrap;
}
.mobfi .hth_swi .hth_swi_box .gr .gr_logo .left img {
  width: auto;
  height: 0.35rem;
  object-fit: contain;
}
@media (max-width: 991px) {
  .mobfi .hth_swi .hth_swi_box .gr .gr_logo .left img {
    height: 0.55rem;
  }
}
.mobfi .hth_swi .hth_swi_box .gr .gr_logo .right {
  width: 0.46rem;
  height: auto;
  flex-shrink: 0;
  margin-left: 0.2rem;
}
.mobfi .hth_swi .hth_swi_box .gr .gr_logo .right img {
  opacity: 0.4;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mobfi .hth_swi .hth_swi_box .gr .txt {
  margin-bottom: 0.18rem;
  margin-top: 0.3rem;
}
.mobfi .hth_swi .hth_swi_box .gr .txt .g_p p {
  color: rgba(29, 33, 41, 0.7);
}
.mobfi .hth_swi .hth_swi_box .gr .txt .gr_lab {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
}
.mobfi .hth_swi .hth_swi_box .gr .txt .gr_lab span {
  border-radius: 4px;
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
  padding: 0.07rem 0.2rem;
  background: rgba(5, 82, 255, 0.05);
  color: #1e5dfc;
  margin: 0 0.1rem 0.1rem 0;
  font-weight: bold;
}
.mobfi .hth_swi .hth_swi_box .gr .g_num {
  padding-top: 0.34rem;
  border-top: 1px solid #ebedf4;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}
.mobfi .hth_swi .hth_swi_box .gr .g_num .left {
  flex-wrap: wrap;
  display: flex;
}
.mobfi .hth_swi .hth_swi_box .gr .g_num .left .g_num_box {
  margin: 0 0.88rem 0.1rem 0;
}
@media (max-width: 767px) {
  .mobfi .hth_swi .hth_swi_box .gr .g_num .left .g_num_box {
    margin: 0 0.2rem 0.1rem 0;
  }
}
.mobfi .hth_swi .hth_swi_box .gr .g_num .left .g_num_box:last-child {
  margin-right: 0;
}
.mobfi .hth_swi .hth_swi_box .gr .g_num .left .g_num_box .g_num_t p {
  color: #1e304a;
  font-weight: bold;
  line-height: 1;
}
.mobfi .hth_swi .hth_swi_box .gr .g_num .left .g_num_box .g_num_b {
  margin-top: 5px;
  display: flex;
  align-items: center;
}
.mobfi .hth_swi .hth_swi_box .gr .g_num .left .g_num_box .g_num_b p {
  color: rgba(29, 33, 41, 0.6);
}
.mobfi .hth_swi .hth_swi_box .gr .g_num .left .g_num_box .g_num_b img,
.mobfi .hth_swi .hth_swi_box .gr .g_num .left .g_num_box .g_num_b svg {
  margin-left: 0.12rem;
  width: 0.19rem;
  height: auto;
}
.mobfi .hth_swi .hth_swi_box .gr .g_num .right {
  padding-bottom: 0.2rem;
  flex-shrink: 0;
  margin-left: 0.2rem;
}
.mobfi .hth_swi .hth_swi_box .gr .g_num .right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mobfi .hth_swi .swip2_pag {
  margin-top: 0.35rem;
  position: initial;
}
.mobfi .hth_swi .swip2_pag span {
  overflow: hidden;
  transition: all 0.4s;
  width: 20px;
  height: 6px;
  background: #e1e3e9;
  border-radius: 6px;
  opacity: 1;
  position: relative;
}
.mobfi .hth_swi .swip2_pag span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 6px;
  height: 100%;
  background: #0250ff;
  transform: translateX(-100%);
}
.mobfi .hth_swi .swip2_pag .swiper-pagination-bullet-active {
  width: 48px;
}
.mobfi .hth_swi .swip2_pag .swiper-pagination-bullet-active::after {
  animation: moveq1 5s 1 forwards;
  -webkit-animation: moveq1 5s 1 forwards;
}
.mobfi .hth_swi .g_qie .pub_nav {
  top: 42%;
}
.mobfi .hth_swi .g_qie .pub_prev {
  left: -0.96rem;
}
.mobfi .hth_swi .g_qie .pub_next {
  right: -0.96rem;
}
@media (max-width: 1260px) {
  .sub_banner_mob .sub_banner_txt {
    padding-top: 60px;
  }
}
/* 学加家-产品-企微可信身份治理 */
.sub_banner_wec .sub_banner_txt .container .ban_r {
  width: 65%;
  padding: 90px 0.3rem 0.3rem;
}
.sub_banner_wec .sub_banner_txt .container .ban_r .cio_img {
  margin-left: 0;
  align-items: center;
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.sub_banner_wec .sub_banner_txt .container .ban_r .cio_img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 60%;
}
.sub_banner_wec .sub_banner_txt .container .ban_r .cio_img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.8s;
}
.sub_banner_wec .sub_banner_txt .container .ban_l {
  width: 35%;
}
/* 联系我们 */
.sub_banner_contact {
  height: 9.7rem;
}
@media (max-width: 1580px) {
  .sub_banner_contact {
    height: 11rem;
  }
}
@media (max-width: 991px) {
  .sub_banner_contact {
    height: auto;
  }
}
.sub_banner_contact .sub_banner_txt .container {
  padding-top: calc(80px + 0.85rem);
  align-items: flex-start;
}
@media (max-width: 991px) {
  .sub_banner_contact .sub_banner_txt .container {
    padding-top: 0.8rem;
  }
}
.sub_banner_contact .sub_banner_txt form {
  padding: 0.66rem 0.6rem 0.6rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.2rem;
  width: 56.25%;
}
@media (max-width: 1260px) {
  .sub_banner_contact .sub_banner_txt form {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .sub_banner_contact .sub_banner_txt form {
    width: 100%;
    padding: 0.4rem;
  }
}
.sub_banner_contact .sub_banner_txt form .form_t {
  margin-bottom: 0.44rem;
}
.sub_banner_contact .sub_banner_txt form .form_t span {
  color: #0250ff;
}
.sub_banner_contact .sub_banner_txt form .form_t h2 {
  margin-top: 0.14rem;
  color: #1e304a;
}
.sub_banner_contact .sub_banner_txt form .form_t .gbox {
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
}
.sub_banner_contact .sub_banner_txt form .form_t .gbox svg,
.sub_banner_contact .sub_banner_txt form .form_t .gbox img {
  width: 14px;
  height: auto;
  margin-right: 0.08rem;
}
.sub_banner_contact .sub_banner_txt form .form_t .gbox p {
  color: #636e80;
}
.sub_banner_contact .sub_banner_txt form .inp {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sub_banner_contact .sub_banner_txt form .inp {
    flex-direction: column;
  }
}
.sub_banner_contact .sub_banner_txt form .inp .inp_box {
  width: calc(50% - 0.2rem);
  margin-bottom: 0.28rem;
}
@media (max-width: 767px) {
  .sub_banner_contact .sub_banner_txt form .inp .inp_box {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.sub_banner_contact .sub_banner_txt form .inp .inp_box .inp_txt {
  margin-bottom: 0.07rem;
}
.sub_banner_contact .sub_banner_txt form .inp .inp_box .inp_txt p {
  color: #333333;
  font-weight: bold;
}
.sub_banner_contact .sub_banner_txt form .inp .inp_box .inp_txt p span {
  color: #0250ff;
}
.sub_banner_contact .sub_banner_txt form .inp .inp_box > input {
  padding: 0 0.2rem;
  width: 100%;
  height: 0.46rem;
  border: 1px solid #d7dcea;
  border-radius: 0.05rem;
}
@media (max-width: 767px) {
  .sub_banner_contact .sub_banner_txt form .inp .inp_box > input {
    height: 0.8rem;
  }
}
.sub_banner_contact .sub_banner_txt form .inp .inp_box .g_code {
  padding: 0 0.2rem;
  width: 100%;
  height: 0.46rem;
  border: 1px solid #d7dcea;
  border-radius: 0.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .sub_banner_contact .sub_banner_txt form .inp .inp_box .g_code {
    height: 0.8rem;
  }
}
.sub_banner_contact .sub_banner_txt form .inp .inp_box .g_code .g_a {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0.08rem 0.08rem 0.08rem 0;
}
.sub_banner_contact .sub_banner_txt form .inp .inp_box .g_code .g_a a {
  color: #0250ff;
  border-left: 1px solid #d7dcea;
  padding-left: 0.12rem;
  font-size: 14px;
}
@media (max-width: 767px) {
  .sub_banner_contact .sub_banner_txt form .inp .inp_box .g_code .g_a a {
    font-size: 12px;
  }
}
.sub_banner_contact .sub_banner_txt form .inp2 .inp_box {
  width: 100%;
}
.sub_banner_contact .sub_banner_txt form .inptext .inp_box textarea {
  border: 1px solid #eeeeee;
  border-radius: 0.05rem;
  width: 100%;
  height: 1.02rem;
  padding: 0.13rem 0.18rem;
}
@media (max-width: 767px) {
  .sub_banner_contact .sub_banner_txt form .inptext .inp_box textarea {
    height: 2.2rem;
  }
}
.sub_banner_contact .sub_banner_txt form .g_lab {
  margin-bottom: 0.25rem;
  padding-right: 0.1rem;
  color: #999999;
}
.sub_banner_contact .sub_banner_txt form .pub_btn {
  margin-top: 0.22rem;
  height: 0.55rem;
  padding: 0 0.65rem;
}
@media (max-width: 767px) {
  .sub_banner_contact .sub_banner_txt form .pub_btn {
    height: 0.8rem;
  }
}
.sot_select_nr {
  position: relative;
  min-width: 1.8rem;
}
.sot_select_nr .inp_txt p span {
  color: #0250ff;
}
.sot_select_nr .sel_text_x {
  width: 100%;
  height: 0.46rem;
  border: 1px solid #d7dcea;
  border-radius: 0.05rem;
  padding: 0 0.2rem;
  color: rgba(153, 153, 153, 0.75);
  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: 9px;
  height: auto;
  flex-shrink: 0;
  z-index: 100;
  margin: 0 7px;
}
.sot_select_nr .sel_text_x svg path,
.sot_select_nr .sel_text_x img path {
  fill: #333;
}
.sot_select_nr .sel_text_x .sel_text_xp {
  color: #333;
}
.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 #d2d2d2;
  z-index: 200;
  display: none;
  max-height: 160px;
  overflow-y: auto;
}
.sot_select_nr .sel_text_box a {
  transition: all 0.4s;
  color: #000;
  padding: 7px 0 7px 0.2rem;
  display: block;
  cursor: pointer;
}
.sot_select_nr .sel_text_box a:hover {
  background: #0250ff;
  color: #fff;
}
.conon {
  padding: 0.9rem 0 0;
}
.conon .t_qr {
  margin-top: 0.42rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .conon .t_qr {
    flex-direction: column;
  }
}
.conon .t_qr .gl {
  width: 60%;
  padding-right: 0.2rem;
}
@media (max-width: 767px) {
  .conon .t_qr .gl {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.conon .t_qr .gl .item {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .conon .t_qr .gl .item {
    margin-bottom: 0.3rem;
  }
}
.conon .t_qr .gl .item:last-child {
  margin-bottom: 0;
}
.conon .t_qr .gl .item:last-child p {
  color: #1e304a;
}
.conon .t_qr .gl .item i {
  margin-right: 0.46rem;
  flex-shrink: 0;
  display: flex;
  width: 0.5rem;
  height: auto;
}
@media (max-width: 767px) {
  .conon .t_qr .gl .item i {
    width: 0.8rem;
  }
}
.conon .t_qr .gl .item i svg,
.conon .t_qr .gl .item i img {
  width: 100%;
  height: auto;
}
.conon .t_qr .gl .item i svg path,
.conon .t_qr .gl .item i img path {
  fill: #0250ff;
}
.conon .t_qr .gl .item p {
  font-weight: bold;
}
.conon .t_qr .gr {
  border-left: 1px solid #f0f2f4;
  display: flex;
  padding-left: 0.22rem;
}
@media (max-width: 767px) {
  .conon .t_qr .gr {
    width: 100%;
    border: none;
    justify-content: center;
    padding: 0;
  }
}
.conon .t_qr .gr .item {
  margin-left: 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .conon .t_qr .gr .item {
    margin: 0 0.4rem;
  }
}
.conon .t_qr .gr .item .img {
  width: 1.66rem;
  background: #f6f8ff;
  border-radius: 0.1rem;
  padding: 0.17rem;
}
.conon .t_qr .gr .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.conon .t_qr .gr .item .txt {
  text-align: center;
  margin-top: 0.2rem;
}
.conon .t_qr .gr .item .txt p {
  line-height: 1.2;
}
.conon .box {
  margin-top: 0.8rem;
  display: flex;
}
@media (max-width: 1260px) {
  .conon .box {
    flex-direction: column;
  }
}
.conon .box .gl {
  width: 76.11111111%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1260px) {
  .conon .box .gl {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .conon .box .gl {
    justify-content: space-between;
  }
}
.conon .box .gl .item {
  width: calc(50% - 0.24rem);
  margin-right: 0.24rem;
  box-shadow: 0 0.07rem 0.29rem rgba(137, 149, 183, 0.14);
  border-radius: 0.12rem;
  padding: 0.32rem 0.29rem 0.27rem;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .conon .box .gl .item {
    margin-right: 0;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .conon .box .gl .item {
    width: 100%;
  }
}
.conon .box .gl .item .public-img {
  width: 1.76rem;
  height: auto;
  background: #f5f8ff;
  border-radius: 50%;
  margin-right: 0.42rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .conon .box .gl .item .public-img {
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 991px) {
  .conon .box .gl .item .txt {
    text-align: center;
  }
}
.conon .box .gl .item .txt p {
  color: #1e304a;
  opacity: 0.6;
}
.conon .box .gl .item .txt span {
  font-weight: bold;
}
.conon .box .gr {
  width: 23.88888889%;
  padding-bottom: 0.3rem;
}
@media (max-width: 1260px) {
  .conon .box .gr {
    width: 100%;
  }
}
.conon .box .gr .item {
  height: 100%;
  box-shadow: 0 0.07rem 0.29rem rgba(137, 149, 183, 0.14);
  border-radius: 0.12rem;
  padding: 0.7rem 0.3rem 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .conon .box .gr .item {
    padding: 0.5rem 0.3rem;
  }
}
.conon .box .gr .item .public-img {
  width: 1.76rem;
  height: auto;
  background: #f5f8ff;
  border-radius: 50%;
  flex-shrink: 0;
}
.conon .box .gr .item .txt {
  text-align: center;
  margin-top: 0.3rem;
}
.conon .box .gr .item .txt h3 {
  margin-bottom: 0.12rem;
}
.conon .box .gr .item .txt .g_p p {
  margin-bottom: 0.1rem;
  color: #666666;
  line-height: 1.66;
}
.conon .box .gr .item .txt .g_p p a {
  color: #0250ff;
  position: relative;
}
.conon .box .gr .item .txt .g_p p a::after {
  content: '';
  position: absolute;
  width: 100%;
  bottom: -0.05rem;
  left: 0;
  height: 1px;
  background: #0250ff;
}
.contw {
  padding: 1.05rem 0 1.1rem;
}
.contw .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem;
  margin-top: 0.46rem;
}
.contw .box .item {
  width: 33.33%;
  margin-bottom: 0.3rem;
  padding: 0 0.15rem;
}
@media (max-width: 991px) {
  .contw .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .contw .box .item {
    width: 100%;
  }
}
.contw .box .item:hover .itembox .gyc {
  opacity: 1;
}
.contw .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0.12rem;
}
.contw .box .item .itembox .gxs {
  position: relative;
}
.contw .box .item .itembox .gxs .public-img:before {
  padding-top: 58.69565217%;
}
.contw .box .item .itembox .gxs .txt {
  z-index: 10;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0.16rem 0.2rem;
}
.contw .box .item .itembox .gxs .txt h3 {
  color: #fff;
}
.contw .box .item .itembox .gyc {
  background: url(../images/contact10.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s;
}
.contw .box .item .itembox .gyc .img {
  margin-top: 0.15rem;
  width: 1.6rem;
  background: #f6f8ff;
  border-radius: 0.1rem;
  padding: 0.17rem;
}
.contw .box .item .itembox .gyc .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contw .box .item .itembox .gyc .txt {
  text-align: center;
}
.contw .box .item .itembox .gyc .txt p {
  color: #fff;
  line-height: 1.2;
}
/* 常见问题 */
.sub_banner_faq {
  height: 5.5rem;
}
@media (max-width: 767px) {
  .sub_banner_faq {
    height: auto;
  }
}
.sub_banner_faq .sub_banner_txt .container {
  justify-content: center;
}
.sub_banner_faq .sub_banner_txt .container .faq_ban {
  text-align: center;
}
.sub_banner_faq .sub_banner_txt .container .faq_ban h1 {
  font-weight: bold;
}
.sub_banner_faq .sub_banner_txt .container .faq_ban form {
  display: flex;
  justify-content: center;
  margin-top: 0.54rem;
}
.sub_banner_faq .sub_banner_txt .container .faq_ban form .search_box {
  width: 4.5rem;
  height: 0.5rem;
  background: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sub_banner_faq .sub_banner_txt .container .faq_ban form .search_box {
    height: 0.8rem;
  }
}
.sub_banner_faq .sub_banner_txt .container .faq_ban form .search_box input {
  padding: 0 0.3rem;
  width: 100%;
  color: #333;
}
.sub_banner_faq .sub_banner_txt .container .faq_ban form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.3rem;
  width: 0.2rem;
  height: auto;
}
.sub_banner_faq .sub_banner_txt .container .faq_ban form .search_box button svg {
  width: 100%;
  height: auto;
}
.sub_banner_faq .sub_banner_txt .container .faq_ban form .search_box button svg path {
  fill: #0250ff;
}
.sub_banner_faq .sub_banner_txt .container .faq_ban .hot {
  margin-top: 0.2rem;
  display: flex;
  justify-content: center;
  max-width: 8rem;
}
@media (max-width: 1580px) {
  .sub_banner_faq .sub_banner_txt .container .faq_ban .hot {
    max-width: 9rem;
  }
}
@media (max-width: 767px) {
  .sub_banner_faq .sub_banner_txt .container .faq_ban .hot {
    max-width: initial;
    width: 100%;
  }
}
.sub_banner_faq .sub_banner_txt .container .faq_ban .hot p {
  flex-shrink: 0;
  color: #1e304a;
  font-weight: bold;
}
.sub_banner_faq .sub_banner_txt .container .faq_ban .hot .hot_a {
  display: flex;
  flex-wrap: wrap;
}
.sub_banner_faq .sub_banner_txt .container .faq_ban .hot .hot_a a {
  margin-bottom: 0.1rem;
  margin-left: 0.34rem;
}
.faqon {
  padding: 0.94rem 0 1.2rem;
}
.faqon .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem;
  margin-top: 0.6rem;
}
.faqon .box .item {
  width: 33.33%;
  margin-bottom: 0.3rem;
  padding: 0 0.15rem;
}
@media (max-width: 991px) {
  .faqon .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .faqon .box .item {
    width: 100%;
  }
}
.faqon .box .item .itembox {
  background: #fff;
  box-shadow: 0 0 0.46rem #e9f1f8;
  border-radius: 0.12rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.faqon .box .item .itembox .faqon_box {
  padding: 0.5rem 0.4rem;
}
.faqon .box .item .itembox .faqon_box .tit {
  display: flex;
  align-items: center;
}
.faqon .box .item .itembox .faqon_box .tit img {
  width: 0.3rem;
  height: auto;
}
@media (max-width: 767px) {
  .faqon .box .item .itembox .faqon_box .tit img {
    width: 0.5rem;
  }
}
.faqon .box .item .itembox .faqon_box .tit h3 {
  font-weight: bold;
  margin-left: 0.16rem;
}
.faqon .box .item .itembox .faqon_box .g_p {
  margin-top: 0.4rem;
}
.faqon .box .item .itembox .faqon_box .g_p a {
  display: block;
  position: relative;
  margin-bottom: 0.26rem;
  padding-left: 16px;
}
.faqon .box .item .itembox .faqon_box .g_p a:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1e304a;
  left: 0;
  top: 10px;
}
@media (max-width: 1580px) {
  .faqon .box .item .itembox .faqon_box .g_p a:after {
    top: 8px;
    width: 5px;
    height: 5px;
  }
}
.faqon .box .item .itembox .more {
  border-top: 1px solid #eeeeee;
  padding: 0.25rem 0.4rem;
  display: flex;
  justify-content: flex-start;
}
.faqon .g_tac {
  margin-top: 0.3rem;
}
.faqtw .box .item .itembox .faqon_box {
  padding: 0.5rem 0.4rem 0.08rem;
}
.faqtw .g_tac {
  /* .pub_btn{
			border: 1px solid #d7dcea;
			background: #e5f0fe;
			&:hover{
				border-color: @color1;
				background: @color1;
				p{
					color: #fff;
				}
			}
			i{
				display: none;
			}
			p{
				color: #1d2129;
			}
		} */
}
.faqth {
  padding: 1.15rem 0 1.2rem;
}
.faqth .box {
  padding: 0 1.2rem;
  margin-bottom: 0.6rem;
  margin-top: 0.66rem;
}
@media (max-width: 991px) {
  .faqth .box {
    padding: 0;
  }
}
.faqth .box .item {
  border-bottom: 1px solid #eeeeee;
  padding: 0.28rem 0;
  padding-right: 0.1rem;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.faqth .box .item:hover::after {
  width: 100%;
}
.faqth .box .item:hover p {
  color: #0250ff;
}
.faqth .box .item:hover p::after {
  background: #0250ff;
}
.faqth .box .item:hover i svg path,
.faqth .box .item:hover i img path {
  fill: #0250ff;
}
.faqth .box .item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: #0452ff;
  transition: all 0.4s;
  bottom: -1px;
  left: 0;
}
.faqth .box .item p {
  display: block;
  position: relative;
  padding-left: 25px;
  transition: all 0.4s;
}
.faqth .box .item p:after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e304a;
  left: 0;
  top: 10px;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .faqth .box .item p:after {
    top: 8px;
    width: 5px;
    height: 5px;
  }
}
.faqth .box .item i {
  flex-shrink: 0;
  display: flex;
  width: 8px;
  height: auto;
  margin-left: 0.2rem;
}
.faqth .box .item i svg,
.faqth .box .item i img {
  width: 100%;
  height: auto;
}
.faqth .box .item i svg path,
.faqth .box .item i img path {
  transition: all 0.4s;
  fill: #b1b8c1;
}
.faqfo {
  padding: 1.12rem 0 1.2rem;
  background: #f6f8fe;
}
.faqfo .box {
  display: flex;
  justify-content: center;
}
.faqfo .bbox {
  width: 702px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.22rem;
}
@media (max-width: 991px) {
  .faqfo .bbox {
    width: 100%;
  }
}
.faqfo .bbox .gbox {
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
}
.faqfo .bbox .gbox svg,
.faqfo .bbox .gbox img {
  width: 14px;
  height: auto;
  margin-right: 0.08rem;
}
.faqfo .bbox .gbox p {
  color: #636e80;
}
.faqfo .bbox form {
  padding: 0;
  border-radius: 0.2rem;
  width: 100%;
}
@media (max-width: 1260px) {
  .faqfo .bbox form {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .faqfo .bbox form {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .faqfo .bbox form {
    width: 100%;
  }
}
.faqfo .bbox form .inp {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .faqfo .bbox form .inp {
    flex-direction: column;
  }
}
.faqfo .bbox form .inp .sot_select_nr {
  width: 100%;
  margin-bottom: 0.28rem;
}
.faqfo .bbox form .inp .sot_select_nr .inp_txt {
  margin-bottom: 0.07rem;
}
.faqfo .bbox form .inp .sot_select_nr .sel_text_x {
  border-radius: 8px;
  height: 0.52rem;
  border: solid 1px #d7dcea;
}
.faqfo .bbox form .inp .sot_select_nr .sel_text_x .sel_text_xp {
  font-size: 14px;
  color: #999;
}
.faqfo .bbox form .inp .inp_box {
  width: calc(50% - 0.2rem);
  margin-bottom: 0.28rem;
}
@media (max-width: 767px) {
  .faqfo .bbox form .inp .inp_box {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.faqfo .bbox form .inp .inp_box .inp_txt {
  margin-bottom: 0.07rem;
}
.faqfo .bbox form .inp .inp_box .inp_txt p {
  color: #333333;
  font-weight: bold;
}
.faqfo .bbox form .inp .inp_box .inp_txt p span {
  color: #0250ff;
}
.faqfo .bbox form .inp .inp_box > input {
  padding: 0 0.2rem;
  width: 100%;
  height: 0.46rem;
  border: 1px solid #d7dcea;
  border-radius: 0.05rem;
}
@media (max-width: 767px) {
  .faqfo .bbox form .inp .inp_box > input {
    height: 0.8rem;
  }
}
.faqfo .bbox form .inp .inp_box .g_code {
  padding: 0 0.2rem;
  width: 100%;
  height: 0.46rem;
  border: 1px solid #d7dcea;
  border-radius: 0.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .faqfo .bbox form .inp .inp_box .g_code {
    height: 0.8rem;
  }
}
.faqfo .bbox form .inp .inp_box .g_code .g_a {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0.08rem 0.08rem 0.08rem 0;
}
.faqfo .bbox form .inp .inp_box .g_code .g_a a {
  color: #0250ff;
  border-left: 1px solid #d7dcea;
  padding-left: 0.12rem;
  font-size: 14px;
}
@media (max-width: 767px) {
  .faqfo .bbox form .inp .inp_box .g_code .g_a a {
    font-size: 12px;
  }
}
.faqfo .bbox form .inp2 .inp_box {
  width: 100%;
}
.faqfo .bbox form .inptext .inp_box textarea {
  border: 1px solid #d7dcea;
  border-radius: 0.05rem;
  width: 100%;
  height: 1.02rem;
  padding: 0.13rem 0.18rem;
}
@media (max-width: 767px) {
  .faqfo .bbox form .inptext .inp_box textarea {
    height: 2.2rem;
  }
}
.faqfo .bbox form .g_lab {
  margin-bottom: 0.25rem;
  padding-right: 0.1rem;
  color: #999999;
}
.faqfo .bbox form .pub_btn {
  margin: 0.1rem auto 0;
  height: 0.55rem;
  padding: 0 0.65rem;
}
@media (max-width: 767px) {
  .faqfo .bbox form .pub_btn {
    height: 0.8rem;
  }
}
/* 常见问题-详情 */
.faqinfo {
  height: 8.57rem;
  border-top: 1px solid #eeeeee;
  display: flex;
  justify-content: space-between;
}
.faqinfo .gl {
  flex-shrink: 0;
  background: #f5f6ff;
  overflow: auto;
  padding: 0.7rem 0 0;
  width: 14.27083333%;
}
@media (max-width: 1260px) {
  .faqinfo .gl {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .faqinfo .gl {
    width: 30%;
  }
}
.faqinfo .gl .faqinfo_one {
  /* &.on{
				.faqinfo_two{
					
					.faqinfo_two_tit{
						background: #e4eeff;
						&::after{
							opacity: 1;
							
						}
						i{
							svg,img{
								path{
									fill: #0452ff;
								}
							}
						}
						p{
							color: #0452ff;
						}
					}
				}
				
			} */
}
.faqinfo .gl .faqinfo_one .faqinfo_one_tit {
  cursor: pointer;
  padding: 0.1rem 0.2rem;
  position: relative;
  display: flex;
  align-items: center;
}
.faqinfo .gl .faqinfo_one .faqinfo_one_tit::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  background: #0452ff;
  left: 0;
  top: 0;
  transition: all 0.4s;
  opacity: 0;
}
.faqinfo .gl .faqinfo_one .faqinfo_one_tit i {
  margin-right: 0.14rem;
  flex-shrink: 0;
  display: flex;
  width: 8px;
  height: auto;
}
.faqinfo .gl .faqinfo_one .faqinfo_one_tit i svg,
.faqinfo .gl .faqinfo_one .faqinfo_one_tit i img {
  width: 100%;
  height: auto;
}
.faqinfo .gl .faqinfo_one .faqinfo_one_tit i svg path,
.faqinfo .gl .faqinfo_one .faqinfo_one_tit i img path {
  fill: #000;
}
.faqinfo .gl .faqinfo_one .faqinfo_one_tit p {
  color: #000;
}
.faqinfo .gl .faqinfo_one .faqinfo_two {
  /* display: none; */
}
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_box.on .faqinfo_two_tit,
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_box:hover .faqinfo_two_tit {
  background: #e4eeff;
}
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_box.on .faqinfo_two_tit::after,
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_box:hover .faqinfo_two_tit::after {
  opacity: 1;
}
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_box.on .faqinfo_two_tit i svg path,
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_box:hover .faqinfo_two_tit i svg path,
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_box.on .faqinfo_two_tit i img path,
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_box:hover .faqinfo_two_tit i img path {
  fill: #0452ff;
}
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_box.on .faqinfo_two_tit p,
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_box:hover .faqinfo_two_tit p {
  color: #0452ff;
}
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_tit {
  padding: 0.1rem 0.2rem 0.1rem 0.44rem;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_tit {
    padding: 0.1rem 0.25rem;
  }
}
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_tit::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  background: #0452ff;
  left: 0;
  top: 0;
  transition: all 0.4s;
  opacity: 0;
}
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_tit i {
  margin-right: 0.14rem;
  flex-shrink: 0;
  display: flex;
  width: 8px;
  height: auto;
}
@media (max-width: 767px) {
  .faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_tit i {
    width: 5px;
  }
}
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_tit i svg,
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_tit i img {
  width: 100%;
  height: auto;
}
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_tit i svg path,
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_tit i img path {
  fill: #000;
}
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_tit p {
  color: #000;
}
@media (max-width: 767px) {
  .faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_two_tit p {
    font-size: 12px;
  }
}
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_three {
  padding: 0 0.3rem 0 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* display: none; */
}
@media (max-width: 767px) {
  .faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_three {
    padding-left: 0.3rem;
  }
}
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_three a {
  transition: all 0.4s;
  color: #333;
  margin: 0.12rem 0;
  display: block;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_three a {
    font-size: 10px;
    padding-left: 0.16rem;
  }
}
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_three a:hover {
  color: #0452ff;
}
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_three a:hover:after {
  background: #0452ff;
}
.faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_three a:after {
  content: '';
  transition: all 0.4s;
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1e304a;
  left: 0;
  top: 9px;
}
@media (max-width: 1580px) {
  .faqinfo .gl .faqinfo_one .faqinfo_two .faqinfo_three a:after {
    width: 3px;
    height: 3px;
    top: 6px;
  }
}
.faqinfo .gr {
  width: 85.72916667%;
  position: relative;
  padding: 0 4.55rem 0 3.24rem;
}
@media (max-width: 1260px) {
  .faqinfo .gr {
    padding: 0 1.24rem;
  }
}
@media (max-width: 767px) {
  .faqinfo .gr {
    padding: 0 0.4rem;
  }
}
.faqinfo .gr::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2.4rem;
  background: linear-gradient(to top, #fff 20.45%, hsla(0, 0%, 100%, 0));
  bottom: 0;
  left: 0;
}
.faqinfo .gr .gr_box {
  height: 100%;
  overflow: auto;
  padding: 0.62rem 0 2rem;
}
.faqinfo .gr .gr_box::-webkit-scrollbar {
  width: 0;
  display: none;
}
@media (max-width: 767px) {
  .faqinfo .gr .gr_box {
    padding: 0.62rem 0;
  }
}
.faqinfo .gr h2 {
  font-weight: bold;
  margin-bottom: 0.65rem;
}
.faqinfo .gr h3 {
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.24rem;
  position: relative;
}
.faqinfo .gr h3::after {
  content: '';
  position: absolute;
  height: 0.29rem;
  width: 4px;
  border-radius: 100px;
  background: #0452ff;
  left: -14px;
  bottom: 0;
}
.faqinfo .gr .public-content p {
  padding-left: 0.18rem;
  color: #666;
  display: block;
}
.faqinfo .gr .public-content h4 {
  font-weight: bold;
  color: #333;
  position: relative;
  padding-left: 14px;
}
.faqinfo .gr .public-content h4:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1e304a;
  left: 0;
  top: 15px;
}
@media (max-width: 1580px) {
  .faqinfo .gr .public-content h4:after {
    top: 12px;
    width: 5px;
    height: 5px;
  }
}
/* 新闻动态 */
.sub_banner_news {
  height: 8rem;
}
@media (max-width: 1580px) {
  .sub_banner_news {
    height: 10rem;
  }
}
@media (max-width: 1260px) {
  .sub_banner_news {
    height: auto;
  }
}
.sub_banner_news .news_ban {
  width: 100%;
  position: relative;
  margin-top: 0.88rem;
}
@media (max-width: 767px) {
  .sub_banner_news .news_ban {
    margin: 0;
  }
}
.sub_banner_news .news_ban h1 {
  margin-bottom: 0.35rem;
  text-align: center;
}
.sub_banner_news .news_ban .hth_swi_box {
  border-radius: 0.2rem;
  background: #fff;
  padding: 0.3rem;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sub_banner_news .news_ban .hth_swi_box {
    flex-direction: column;
    padding: 0.28rem;
  }
}
.sub_banner_news .news_ban .hth_swi_box .gl {
  position: relative;
  width: 46.37681159%;
}
@media (max-width: 767px) {
  .sub_banner_news .news_ban .hth_swi_box .gl {
    width: 100%;
  }
}
.sub_banner_news .news_ban .hth_swi_box .gl .public-img {
  border-radius: 0.12rem;
}
.sub_banner_news .news_ban .hth_swi_box .gl .public-img:before {
  padding-top: 56.09375%;
}
.sub_banner_news .news_ban .hth_swi_box .gl .g_lab {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
}
.sub_banner_news .news_ban .hth_swi_box .gl .g_lab span {
  border-radius: 0.12rem 0 0.12rem 0;
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
  padding: 0.05rem 0.2rem;
  color: #fff;
}
.sub_banner_news .news_ban .hth_swi_box .gr {
  padding: 0.2rem 0 0.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 49.27536232%;
}
@media (max-width: 767px) {
  .sub_banner_news .news_ban .hth_swi_box .gr {
    width: 100%;
  }
}
.sub_banner_news .news_ban .hth_swi_box .gr .txt h2 {
  padding-right: 0.4rem;
  margin-bottom: 0.22rem;
  font-weight: bold;
  line-height: 1.33;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 2.66em;
}
.sub_banner_news .news_ban .hth_swi_box .gr .txt span {
  color: #a6aeb9;
  font-family: 'dou';
}
.sub_banner_news .news_ban .hth_swi_box .gr .txt p {
  margin-top: 0.22rem;
  line-height: 1.9;
  color: #1d2129;
  opacity: 0.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 5.7em;
}
@media (max-width: 1260px) {
  .sub_banner_news .news_ban .hth_swi_box .gr .txt p {
    line-height: 1.5;
    height: 3em;
    -webkit-line-clamp: 2;
  }
}
.sub_banner_news .news_ban .hth_swi_box .gr .pub_btn {
  margin-top: 0.2rem;
}
.sub_banner_news .news_ban .hth_swi_box .bjimg {
  width: 1.31rem;
  height: auto;
  position: absolute;
  right: -0.1rem;
  bottom: -0.26rem;
  opacity: 0.5;
}
.sub_banner_news .news_ban .swip2_pag {
  margin-top: 0.35rem;
  position: initial;
}
.sub_banner_news .news_ban .swip2_pag span {
  overflow: hidden;
  transition: all 0.4s;
  width: 20px;
  height: 6px;
  background: #add0e9;
  border-radius: 6px;
  opacity: 1;
  position: relative;
}
.sub_banner_news .news_ban .swip2_pag span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 6px;
  height: 100%;
  background: #0250ff;
  transform: translateX(-100%);
}
.sub_banner_news .news_ban .swip2_pag .swiper-pagination-bullet-active {
  background: #e1e3e9;
  width: 48px;
}
.sub_banner_news .news_ban .swip2_pag .swiper-pagination-bullet-active::after {
  animation: moveq1 5s 1 forwards;
  -webkit-animation: moveq1 5s 1 forwards;
}
.sub_banner_news .news_ban .g_qie .pub_nav {
  top: 54%;
}
.sub_banner_news .news_ban .g_qie .pub_prev {
  left: -0.96rem;
}
.sub_banner_news .news_ban .g_qie .pub_next {
  right: -0.96rem;
}
.newon {
  padding: 0.54rem 0 1.15rem;
}
.newon .newon_nav {
  display: flex;
  flex-wrap: wrap;
}
.newon .newon_nav a {
  transition: all 0.4s;
  margin-right: 0.18rem;
  margin-bottom: 0.1rem;
  height: 0.4rem;
  padding: 0 0.22rem;
  display: flex;
  align-items: center;
  border-radius: 100px;
  color: #636e80;
}
@media (max-width: 767px) {
  .newon .newon_nav a {
    height: 0.6rem;
    padding: 0 0.3rem;
    margin: 0 0.1rem 0.1rem 0;
  }
}
.newon .newon_nav a.on,
.newon .newon_nav a:hover {
  color: #0250ff;
  background: #e8eeff;
}
.newon .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.23rem;
  margin-top: 0.4rem;
}
.newon .box .item {
  width: 33.33%;
  margin-bottom: 0.46rem;
  padding: 0 0.23rem;
}
@media (max-width: 991px) {
  .newon .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .newon .box .item {
    width: 100%;
  }
}
.newon .box .item:hover .public-img img {
  transform: scale(1.05);
}
.newon .box .item:hover .txt h3 {
  color: #0250ff !important;
}
.newon .box .item:hover .txt .time i {
  opacity: 1 !important;
}
.newon .box .item .itembox {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.12rem;
  box-shadow: 0 0.1rem 0.18rem rgba(128, 142, 174, 0.11);
}
.newon .box .item .itembox .public-img:before {
  padding-top: 48.88888889%;
}
.newon .box .item .itembox .txt {
  padding: 0.24rem 0.3rem 0.3rem;
}
.newon .box .item .itembox .txt .g_h3 h3 {
  padding-right: 0.2rem;
  color: #1e304a;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
  transition: all 0.4s;
}
.newon .box .item .itembox .txt .time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.28rem;
}
.newon .box .item .itembox .txt .time span {
  font-family: 'dou';
  color: #a6aeb9;
}
.newon .box .item .itembox .txt .time i {
  opacity: 0;
  width: 0.4rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
  box-shadow: 0 0.08rem 0.35rem rgba(128, 142, 174, 0.22);
  z-index: 10;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .newon .box .item .itembox .txt .time i {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.newon .box .item .itembox .txt .time i svg,
.newon .box .item .itembox .txt .time i img {
  width: 14.3%;
  height: auto;
}
.newon .box .item .itembox .txt .time i svg path,
.newon .box .item .itembox .txt .time i img path {
  fill: #fff;
}
.newon .page {
  margin-top: 0.4rem;
}
.page {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page a {
  height: 0.46rem;
  min-width: 0.46rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.05rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border: 1px solid #d7dcea;
  background: #fff;
  border-radius: 0.05rem;
  padding: 0 0.12rem;
  color: #999;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page a {
    font-size: 0.28rem;
  }
}
.page a.prev {
  border-color: #f4f5f8;
  background: #f4f5f8;
}
.page a.prev img,
.page a.prev svg {
  transform: rotate(180deg);
}
.page a.next {
  border-color: #f4f5f8;
  background: #f4f5f8;
}
.page a.next,
.page a.prev {
  border: none;
}
.page a.next:hover,
.page a.prev:hover {
  background: #e9edff;
}
.page a.next:hover svg path,
.page a.prev:hover svg path {
  fill: #0250ff;
}
.page a:hover {
  color: #fff;
  border: none;
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
}
.page a:hover p {
  color: #fff;
}
.page a:hover svg path {
  fill: #fff;
}
.page a img,
.page a svg {
  width: 6px;
  height: auto;
}
@media (max-width: 767px) {
  .page a img,
  .page a svg {
    width: 6px;
  }
}
.page a .img2 {
  display: none;
}
.page a svg path {
  fill: #999;
}
.page input {
  margin: 0 0.05rem;
  width: 0.7rem;
  height: 0.46rem;
  border-radius: 0.05rem;
  border: 1px solid #d7dcea;
  text-align: center;
}
@media (max-width: 1580px) {
  .page input {
    width: 1rem;
  }
}
@media (max-width: 767px) {
  .page input {
    font-size: 12px;
  }
}
.page .active {
  color: #fff;
  border: none;
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
}
.page .active p {
  color: #fff;
}
.gpop {
  position: fixed;
  right: 0.2rem;
  bottom: 2rem;
  z-index: 100;
  display: none;
}
@media (max-width: 767px) {
  .gpop {
    right: 10px;
  }
}
.gpop > * {
  transition: all 0.4s;
}
.gpop .gpop_box {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  height: auto;
  background: #fff;
  border-radius: 100px;
  margin-bottom: 15px;
  padding: 13px 0 1px;
}
@media (max-width: 767px) {
  .gpop .gpop_box {
    margin-bottom: 0;
  }
}
.gpop .gpop_box .pop_a {
  width: 100%;
  margin-bottom: 0;
  box-shadow: none;
  border-radius: 0;
  background: none;
  padding-bottom: 13px;
  margin: 0 0 13px;
  position: relative;
}
.gpop .gpop_box .pop_a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.22rem;
  height: 1px;
  background: #dddfe3;
}
.gpop .gpop_box .pop_a:last-child {
  padding-bottom: 0;
  border: none;
}
.gpop .gpop_box .pop_a:last-child::after {
  display: none;
}
.gpop .gpop_box .pop_a .pop_a_img svg {
  width: 0.22rem;
  height: auto;
}
.gpop .gpop_box .pop_a .pop_a_img svg path {
  fill: #677283;
}
.gpop .pop_a {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  width: 46px;
  height: auto;
  position: relative;
  display: block;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .gpop .pop_a {
    margin-top: 10px;
    width: 32px;
    margin: 0.1rem 0;
  }
}
.gpop .pop_a.on .pop_text {
  transform: translateY(-50%) scale(1);
  -webkit-transform: translateY(-50%) scale(1);
}
.gpop .pop_a.on .pop_a_img svg path {
  fill: #0250ff;
}
.gpop .pop_a img {
  z-index: 100;
  width: 0.3rem;
  height: auto;
}
.gpop .pop_a .pop_a_img {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.gpop .pop_a .pop_a_img svg {
  width: auto;
  height: 20px;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_a_img svg {
    height: 14px;
  }
}
.gpop .pop_a .pop_a_img svg path {
  fill: #969696;
}
.gpop .pop_a .pop_a_img p {
  font-size: 12px;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_a_img p {
    display: none;
  }
}
.gpop .pop_a .pop_text {
  position: absolute;
  top: 50%;
  right: 130%;
  background: #fff;
  padding: 0.15rem 0.3rem;
  transition: all 0.6s;
  -moz-transition: all 0.6s;
  z-index: 1;
  transform: translateY(-50%) scale(0);
  -webkit-transform: translateY(-50%) scale(0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_text {
    width: 220px;
  }
}
.gpop .pop_a .pop_text p {
  color: #666;
  margin-bottom: 0.02rem;
  white-space: nowrap;
}
.gpop .pop_a .pop_text .p2 {
  line-height: 1.2;
}
.gpop .pop_a .pop_text img {
  flex-shrink: 0;
  height: auto;
  width: 136px;
}
.gpop .pop_a .pop_text::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid dashed dashed;
  border-color: #fff transparent transparent;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  position: absolute;
  top: 50%;
  right: -16px;
  margin-top: -10px;
  border-width: 10px;
  border-top-color: #fff;
  -webkit-transform: rotate(-90deg);
}
.gpop .pop_a .pop_text_img {
  width: calc(136px + 0.54rem);
  padding: 0.27rem 0.27rem 0.2rem;
}
.gpop .pop_a .pop_text_img p {
  margin-top: 0.1rem;
  text-align: center;
}
.gpop .cur3 {
  cursor: pointer;
  padding: 0.14rem 0 0.25rem;
  border-radius: 100px;
  background: -webkit-linear-gradient(to bottom, #854ef5, #444dfa);
  background: linear-gradient(to bottom, #854ef5, #444dfa);
}
@media (max-width: 767px) {
  .gpop .cur3 {
    display: flex;
    align-items: center;
    padding: 0;
    height: 32px;
  }
}
.gpop .cur3 .pop_a_img p {
  margin-top: 0.13rem;
  width: 1em;
  line-height: 1;
  color: #fff;
}
.gpop .cur4 {
  cursor: pointer;
  height: 46px;
}
@media (max-width: 767px) {
  .gpop .cur4 {
    height: 32px;
  }
}
/* 新闻详情页 */
.crumbs {
  padding: 0.28rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.crumbs p {
  display: flex;
  align-items: center;
}
.crumbs p > a {
  margin-right: 0.16rem;
  color: #999999;
}
@media (max-width: 767px) {
  .crumbs p > a {
    font-size: 14px;
    margin-bottom: 0.05rem;
  }
}
.crumbs p:last-child a {
  color: #0250ff;
}
.crumbs p:last-child svg,
.crumbs p:last-child i {
  display: none;
}
.crumbs p svg {
  width: 7px;
  height: auto;
  margin-right: 0.16rem;
}
.crumbs p svg path {
  fill: #999999;
}
.crumbs p i {
  font-style: initial;
  opacity: 0.7;
  color: #fff;
  margin-right: 0.12rem;
}
.newinfoon .box {
  padding: 0.5rem 1.28rem 0;
}
@media (max-width: 1260px) {
  .newinfoon .box {
    padding: 0.5rem 0 0;
  }
}
.newinfoon .box h1 {
  line-height: 1.35;
  font-weight: bold;
}
.newinfoon .box .g_lab {
  margin: 0.28rem 0 0.4rem;
  padding-bottom: 0.36rem;
  border-bottom: 1px solid #d7dcea;
  display: flex;
  flex-wrap: wrap;
}
.newinfoon .box .g_lab p {
  color: #999999;
  margin-right: 0.56rem;
}
.newinfoon .box .public-content p {
  color: #666;
}
.newinfoon .box .gblab {
  display: flex;
  align-items: center;
  margin: 0.58rem 0 0.3rem;
}
.newinfoon .box .gblab p {
  flex-shrink: 0;
  margin-right: 0.18rem;
  margin-bottom: 0.1rem;
}
.newinfoon .box .gblab .gblab_box {
  display: flex;
  flex-wrap: wrap;
}
.newinfoon .box .gblab .gblab_box span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #d7dcea;
  padding: 0.05rem 0.12rem;
  min-width: 0.8rem;
  color: #d7dcea;
  margin: 0 0.1rem 0.1rem 0;
}
@media (max-width: 767px) {
  .newinfoon .box .gblab .gblab_box span {
    padding: 0.1rem 0.22rem;
  }
}
.newinfoon .box .newinfoon_b {
  border-top: 1px solid #d7dcea;
  padding: 0.26rem 0 0.46rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .newinfoon .box .newinfoon_b {
    flex-direction: column;
  }
}
.newinfoon .box .newinfoon_b .gl {
  width: 75%;
}
@media (max-width: 767px) {
  .newinfoon .box .newinfoon_b .gl {
    width: 100%;
  }
}
.newinfoon .box .newinfoon_b .gl .g_pag {
  margin-bottom: 0.2rem;
  display: flex;
  flex-direction: column;
}
.newinfoon .box .newinfoon_b .gl .g_pag a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.4s;
  margin-bottom: 0.12rem;
}
.newinfoon .box .newinfoon_b .gl .g_pag a:hover {
  color: #0452ff;
}
.newinfoon .box .newinfoon_b .gl .g_fh {
  display: flex;
  align-items: center;
}
.newinfoon .box .newinfoon_b .gl .g_fh:hover i svg path {
  fill: #0250ff;
}
.newinfoon .box .newinfoon_b .gl .g_fh:hover p {
  color: #0250ff;
}
.newinfoon .box .newinfoon_b .gl .g_fh i {
  margin-right: 0.1rem;
  flex-shrink: 0;
  display: flex;
  width: 0.17rem;
  height: auto;
}
@media (max-width: 767px) {
  .newinfoon .box .newinfoon_b .gl .g_fh i {
    width: 0.28rem;
  }
}
.newinfoon .box .newinfoon_b .gl .g_fh i svg,
.newinfoon .box .newinfoon_b .gl .g_fh i img {
  width: 100%;
  height: auto;
}
.newinfoon .box .newinfoon_b .gl .g_fh i svg path,
.newinfoon .box .newinfoon_b .gl .g_fh i img path {
  transition: all 0.4s;
  fill: #999999;
}
.newinfoon .box .newinfoon_b .gl .g_fh p {
  color: #666666;
  transition: all 0.4s;
}
.newinfoon .box .newinfoon_b .gr {
  width: 25%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .newinfoon .box .newinfoon_b .gr {
    margin-top: 0.4rem;
    width: 100%;
    justify-content: flex-start;
  }
}
.ins_det_fxr_box {
  display: flex;
  align-items: center;
}
.ins_det_fxr_box * {
  transition: all 0.6s;
}
.ins_det_fxr_box > p {
  margin-right: 0.05rem;
}
.ins_det_fxr_box .bshare-custom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ins_det_fxr_box .bshare-custom a {
  width: 0.48rem;
  height: 0.48rem;
  padding: 0;
  background: #fff;
  border-radius: 50%;
  margin: 0 0 0 0.16rem;
  border: 1px solid #d7dcea;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ins_det_fxr_box .bshare-custom a:hover {
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
  opacity: 1;
}
.ins_det_fxr_box .bshare-custom a:hover svg path {
  fill: #fff;
}
.ins_det_fxr_box .bshare-custom a::before {
  content: '' !important;
}
@media (max-width: 767px) {
  .ins_det_fxr_box .bshare-custom a {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.ins_det_fxr_box .bshare-custom a svg {
  width: 45.8%;
  height: auto;
  pointer-events: none;
}
.ins_det_fxr_box .bshare-custom a svg path {
  fill: #d7dcea;
  opacity: 1;
}
.social-share .icon-wechat .wechat-qrcode {
  top: 120% !important;
  left: 50% !important;
  transform: translateX(-50%);
}
.social-share .icon-wechat .wechat-qrcode:after {
  display: none !important;
}
.bsBox {
  box-sizing: initial;
}
.newinfotw {
  padding: 0.46rem 0 0.9rem;
}
.newinfotw .box {
  position: relative;
  margin-top: 0.35rem;
}
.newinfotw .box .g_qie .pub_prev {
  left: -0.96rem;
}
.newinfotw .box .g_qie .pub_next {
  right: -0.96rem;
}
.newinfotw .box .item {
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .newinfotw .box .item {
    width: 100%;
  }
}
.newinfotw .box .item:hover .public-img img {
  transform: scale(1.05);
}
.newinfotw .box .item:hover .txt h3 {
  color: #0250ff !important;
}
.newinfotw .box .item:hover .txt .time i {
  opacity: 1 !important;
}
.newinfotw .box .item .itembox {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.16rem;
  border-radius: 0.12rem;
  background: #f7f9ff;
}
.newinfotw .box .item .itembox .public-img {
  border-radius: 0.1rem;
}
.newinfotw .box .item .itembox .public-img:before {
  padding-top: 54.6728972%;
}
.newinfotw .box .item .itembox .txt {
  padding: 0.24rem 0.13rem 0;
}
.newinfotw .box .item .itembox .txt .g_h3 h3 {
  color: #1e304a;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
  transition: all 0.4s;
}
.newinfotw .box .item .itembox .txt .time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.28rem;
}
.newinfotw .box .item .itembox .txt .time span {
  font-family: 'dou';
  color: #a6aeb9;
}
.newinfotw .box .item .itembox .txt .g_lab {
  margin-top: 0.28rem;
  padding-top: 0.28rem;
  border-top: 1px solid #dde2ee;
  display: flex;
  flex-wrap: wrap;
}
.newinfotw .box .item .itembox .txt .g_lab span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #b6bccb;
  padding: 0.05rem 0.12rem;
  min-width: 0.8rem;
  color: #b6bccb;
  margin: 0 0.1rem 0.1rem 0;
}
@media (max-width: 767px) {
  .newinfotw .box .item .itembox .txt .g_lab span {
    padding: 0.1rem 0.22rem;
  }
}
.hsi_news .g_tac .pub_btn {
  margin: 0 0.1rem;
}
.sub_banner_join {
  text-align: center;
}
.sub_banner_join .sub_banner_txt .container {
  justify-content: center;
}
.sub_banner_join .sub_banner_txt .container .join_ban h1 {
  color: #fff;
  font-weight: bold;
}
.sub_banner_join .sub_banner_txt .container .join_ban p {
  margin-top: 0.18rem;
  color: #fff;
}
/* .newon{
	padding: 1.15rem 0 1.24rem;
	.newon_cla{
		margin-right: 0.54rem;
	}
} */
/* 公司介绍 */
.sub_banner_about {
  height: auto;
  position: relative;
  z-index: 10;
}
@media (max-width: 1900px) {
  .sub_banner_about {
    /* height: 10.6rem; */
  }
}
@media (max-width: 1580px) {
  .sub_banner_about {
    height: auto;
    padding: 0 0 0.4rem;
  }
}
@media (max-width: 991px) {
  .sub_banner_about {
    padding: calc(80px + 0.4rem) 0 0;
  }
}
.sub_banner_about .sub_banner_txt {
  overflow: initial;
  padding: 1.6rem 0 0;
}
@media (max-width: 991px) {
  .sub_banner_about .sub_banner_txt {
    padding: 0;
  }
}
.sub_banner_about .sub_banner_txt .container {
  align-items: flex-end;
}
.sub_banner_about .sub_banner_txt .container .about_ban {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 991px) {
  .sub_banner_about .sub_banner_txt .container .about_ban {
    flex-direction: column;
  }
}
.sub_banner_about .sub_banner_txt .container .about_ban .txt {
  /* padding: 0 2rem; */
  /* text-align: center; */
}
@media (max-width: 991px) {
  .sub_banner_about .sub_banner_txt .container .about_ban .txt {
    padding: 0;
    text-align: center;
  }
}
.sub_banner_about .sub_banner_txt .container .about_ban .txt h1 {
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.1rem;
}
.sub_banner_about .sub_banner_txt .container .about_ban .txt span {
  display: block;
  margin-bottom: 0.25rem;
}
.sub_banner_about .sub_banner_txt .container .about_ban .txt p {
  width: 100%;
  line-height: 1.666;
  color: #636e80;
}
@media (max-width: 991px) {
  .sub_banner_about .sub_banner_txt .container .about_ban .txt p {
    font-size: 0.24rem;
  }
}
.sub_banner_about .sub_banner_txt .container .about_ban .img {
  flex-shrink: 0;
  width: 70%;
  margin: 0.32rem 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .sub_banner_about .sub_banner_txt .container .about_ban .img {
    width: 100%;
  }
}
.sub_banner_about .sub_banner_txt .container .about_ban .img img {
  margin-left: 1.1rem;
}
@media (max-width: 1260px) {
  .sub_banner_about .sub_banner_txt .container .about_ban .img img {
    margin-left: 0;
  }
}
.sub_banner_about .sub_banner_txt .container .about_ban .bimg {
  position: absolute;
  top: calc(100% - 0.46rem);
  left: 50%;
  transform: translateX(-50%);
  width: 9.94rem;
}
@media (max-width: 1260px) {
  .sub_banner_about .sub_banner_txt .container .about_ban .bimg {
    top: calc(100% - 0.1rem);
  }
}
@media (max-width: 767px) {
  .sub_banner_about .sub_banner_txt .container .about_ban .bimg {
    width: 6rem;
    top: calc(100% - 0.26rem);
  }
}
.aboon {
  overflow: hidden;
  padding: 1.24rem 0 0.86rem;
}
.aboon .box {
  margin-top: 0.85rem;
  padding-left: 0.8rem;
}
@media (max-width: 767px) {
  .aboon .box {
    padding-left: 5%;
  }
}
.aboon .box .bbox .swiper {
  overflow: initial;
}
.aboon .box .bbox .swiper-slide {
  width: auto;
}
.aboon .box .bbox .aboon_box .aboon_timg {
  margin-left: -0.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.16rem 0.5rem 0.16rem 0.24rem;
  position: relative;
}
.aboon .box .bbox .aboon_box .aboon_timg img {
  position: absolute;
  width: calc(100% - 0.1rem);
  height: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.aboon .box .bbox .aboon_box .aboon_timg h3 {
  color: #1e304a;
  font-weight: bold;
}
@media (max-width: 767px) {
  .aboon .box .bbox .aboon_box .aboon_timg h3 {
    font-size: 12px;
  }
}
.aboon .box .bbox .aboon_box .aboon_timg span {
  color: #fff;
}
@media (max-width: 767px) {
  .aboon .box .bbox .aboon_box .aboon_timg span {
    font-size: 12px;
  }
}
.aboon .box .bbox .aboon_box .aboon_con {
  margin-top: 0.2rem;
  display: flex;
}
.aboon .box .bbox .aboon_box .aboon_con .item {
  width: 2.96rem;
  padding-right: 0.22rem;
}
@media (max-width: 1580px) {
  .aboon .box .bbox .aboon_box .aboon_con .item {
    width: 3.6rem;
  }
}
@media (max-width: 767px) {
  .aboon .box .bbox .aboon_box .aboon_con .item {
    width: 4.6rem;
  }
}
.aboon .box .bbox .aboon_box .aboon_con .item .gtit {
  display: flex;
  align-items: center;
}
.aboon .box .bbox .aboon_box .aboon_con .item .gtit img {
  width: 0.32rem;
  height: auto;
  margin-right: 4px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .aboon .box .bbox .aboon_box .aboon_con .item .gtit img {
    width: 0.46rem;
  }
}
.aboon .box .bbox .aboon_box .aboon_con .item .gtit i {
  width: 100%;
  height: 1px;
  background: #d2d4ee;
}
.aboon .box .bbox .aboon_box .aboon_con .item .item_box {
  margin-top: 0.17rem;
  background: #fff;
  border-radius: 0.2rem;
  padding: 0.23rem 0.37rem 0.28rem 0.27rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.aboon .box .bbox .aboon_box .aboon_con .item .item_box .item_box_t .gyear {
  margin-bottom: 0.2rem;
}
.aboon .box .bbox .aboon_box .aboon_con .item .item_box .item_box_t .gyear p {
  font-weight: bold;
  color: #1e304a;
  font-family: 'dou';
  line-height: 1.2;
}
.aboon .box .bbox .aboon_box .aboon_con .item .item_box .item_box_t .g_moon .g_moon_li {
  display: flex;
  margin-bottom: 0.14rem;
}
.aboon .box .bbox .aboon_box .aboon_con .item .item_box .item_box_t .g_moon .g_moon_li span {
  font-weight: bold;
  width: 2em;
  flex-shrink: 0;
}
.aboon .box .bbox .aboon_box .aboon_con .item .item_box .item_box_t .g_moon .g_moon_li p {
  color: #1e304a;
}
.aboon .box .bbox .aboon_box .aboon_con .item .item_box .item_box_b {
  margin-top: 0.2rem;
}
.aboon .box .bbox .aboon_box .aboon_con .item .item_box .item_box_b p {
  color: #636e80;
}
.aboon .box .bbox .aboon_box .aboon_con .item .item_box .item_box_b p span {
  font-family: 'dou';
  line-height: 1.3;
}
.aboon .box .bbox .aboon_box .aboon_con .item .item_box .item_box_b p .span1 {
  color: #6f7ff7;
}
.aboon .box .bbox .aboon_box .aboon_con .item .item_box .item_box_b p .span2 {
  color: #47b4f2;
}
.aboon .box .bbox .aboon_box .aboon_con .item .item_box .item_box_b p .span3 {
  color: #5dd2b5;
}
.aboon .g_qie {
  margin-top: 0.44rem;
  display: flex;
  justify-content: center;
}
.aboon .g_qie .pub_nav {
  margin: 0 0.1rem;
  position: initial;
  transform: translateY(0%);
}
.aboon .g_qie .pub_prev {
  left: -0.96rem;
}
.aboon .g_qie .pub_next {
  right: -0.96rem;
}
.abotw {
  padding: 0.7rem 0 0.5rem;
}
.abotw .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.36rem;
  margin-top: 0.75rem;
}
.abotw .box .item {
  width: 33.33%;
  margin-bottom: 0.5rem;
  padding: 0 0.36rem;
}
@media (max-width: 991px) {
  .abotw .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .abotw .box .item {
    width: 100%;
  }
}
.abotw .box .item .itembox {
  overflow: hidden;
  border-radius: 0.2rem;
  display: block;
  width: 100%;
  height: 100%;
}
.abotw .box .item .itembox .public-img:before {
  padding-top: 57.20930233%;
}
.abotw .box .item .itembox .txt {
  background: url(https://xjj-www-prod.xuejj.com/cms/images/about13.jpg) no-repeat;
  background-size: cover;
  color: #fff;
  padding: 0.3rem 0.36rem 0.42rem;
}
.abotw .box .item .itembox .txt p {
  margin-top: 0.08rem;
}
.aboth {
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .aboth {
    margin-top: 0.5rem;
  }
}
.aboth .pub_title {
  width: 90%;
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1260px) {
  .aboth .pub_title {
    position: initial;
    transform: translateX(0%);
    width: 100%;
    padding: 0 5%;
  }
}
@media (max-width: 767px) {
  .aboth .box {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .aboth .box .bbox {
    padding: 0 5%;
    margin-top: 0.6rem;
  }
}
.aboth .box .item {
  position: absolute;
  width: 1px;
  height: 1px;
}
@media (max-width: 767px) {
  .aboth .box .item {
    position: initial;
    width: auto;
    height: auto;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 767px) {
  .aboth .box .item:last-child {
    margin-bottom: 0;
  }
}
.aboth .box .item .item_box {
  width: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .aboth .box .item .item_box {
    transform: translateY(0%);
    position: initial;
    flex-direction: row !important;
  }
}
.aboth .box .item .item_box .gl {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.24rem;
}
@media (max-width: 767px) {
  .aboth .box .item .item_box .gl {
    margin: 0 0.24rem 0 0 !important;
  }
}
.aboth .box .item .item_box .gr {
  width: 2.6rem;
}
@media (max-width: 767px) {
  .aboth .box .item .item_box .gr {
    text-align: left !important;
    width: 100%;
  }
}
.aboth .box .item .item_box .gr .g_num {
  display: flex;
  align-items: center;
  color: #306afd;
}
@media (max-width: 767px) {
  .aboth .box .item .item_box .gr .g_num {
    justify-content: flex-start !important;
  }
}
.aboth .box .item .item_box .gr .g_num p {
  line-height: 1;
}
.aboth .box .item .item_box .gr .g_p {
  margin-top: 0.1rem;
}
.aboth .box .item .item_box .gr .g_p p {
  color: #1d2129;
  line-height: 1.33;
}
.aboth .box .item1 {
  bottom: 60%;
  left: 46.1%;
}
.aboth .box .item2 {
  bottom: 31%;
  right: 94.1%;
}
@media (max-width: 991px) {
  .aboth .box .item2 {
    right: 102%;
  }
}
.aboth .box .item2 .item_box {
  flex-direction: row-reverse;
}
.aboth .box .item2 .item_box .gr {
  text-align: right;
}
.aboth .box .item2 .item_box .gr .g_num {
  justify-content: flex-end;
}
.aboth .box .item2 .item_box .gl {
  margin: 0 0 0 0.24rem;
}
.aboth .box .item3 {
  bottom: 29.6%;
  left: 71.9%;
}
@media (max-width: 1260px) {
  .aboth .box .item3 {
    left: 67%;
  }
}
.abofo {
  padding: 0.9rem 0 0.55rem;
}
.abofo .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.25rem;
  margin-top: 0.7rem;
}
.abofo .box .item {
  width: 33.33%;
  margin-bottom: 0.65rem;
  padding: 0 0.25rem;
}
@media (max-width: 991px) {
  .abofo .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .abofo .box .item {
    width: 100%;
  }
}
.abofo .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
.abofo .box .item .itembox .htw_b_con_tit {
  position: relative;
  margin-bottom: 0.1rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.abofo .box .item .itembox .htw_b_con_tit p {
  color: #555555;
  margin: 0 0.09rem;
}
@media (max-width: 1260px) {
  .abofo .box .item .itembox .htw_b_con_tit p {
    font-size: 14px;
    text-align: center;
  }
}
.abofo .box .item .itembox .htw_b_con_tit img,
.abofo .box .item .itembox .htw_b_con_tit svg {
  width: 0.34rem;
  height: auto;
}
.abofo .box .item .itembox .htw_b_con_tit img:last-child,
.abofo .box .item .itembox .htw_b_con_tit svg:last-child {
  transform: rotateY(180deg);
}
.abofo .box .item .itembox .htw_b_con_tit img path,
.abofo .box .item .itembox .htw_b_con_tit svg path {
  fill: #aab0fe;
}
.abofo .box .item .itembox .htw_b_nr {
  padding: 0 0.56rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1260px) {
  .abofo .box .item .itembox .htw_b_nr {
    padding: 0 0.2rem;
  }
}
.abofo .box .item .itembox .htw_b_nr .leaf {
  flex-shrink: 0;
  width: 0.3rem;
  height: auto;
}
.abofo .box .item .itembox .htw_b_nr .leaf:first-child {
  transform: rotateY(180deg);
}
.abofo .box .item .itembox .htw_b_nr .leaf svg,
.abofo .box .item .itembox .htw_b_nr .leaf img {
  width: 100%;
}
.abofo .box .item .itembox .htw_b_nr .leaf svg path,
.abofo .box .item .itembox .htw_b_nr .leaf img path {
  fill: #c7ddff;
}
.abofo .box .item .itembox .htw_b_nr .htw_b_con {
  white-space: initial;
  width: 100%;
}
.abofo .box .item .itembox .htw_b_nr .htw_b_con .txt {
  text-align: center;
}
.abofo .box .item .itembox .htw_b_nr .htw_b_con .txt h3 {
  margin-bottom: 0.1rem;
  line-height: 1.2;
  color: #306afd;
  font-weight: bold;
}
@media (max-width: 1260px) {
  .abofo .box .item .itembox .htw_b_nr .htw_b_con .txt h3 {
    font-size: 20px;
  }
}
.abofo .box .item .itembox .g_tac span {
  color: #555;
}
/* 教育集团解决方案 */
.sub_banner_sol1 {
  height: 7.2rem;
}
@media (max-width: 767px) {
  .sub_banner_sol1 {
    height: 9rem;
  }
}
.sub_banner_sol1 .sub_banner_txt .container .ban_l .tit span {
  line-height: 1.5;
  color: #636e80;
}
@media (max-width: 991px) {
  .sub_banner_sol1 .sub_banner_txt .container {
    flex-direction: row;
  }
}
.sol1on {
  padding: 1.1rem 0 1.06rem;
  background: #f9fafe;
}
.sol1on .sol1on_nav {
  display: flex;
  justify-content: center;
  margin-top: 0.42rem;
  border-bottom: 1px solid #e6ecfe;
}
.sol1on .sol1on_nav a {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 0 3px 0.24rem;
  color: #636e80;
  transition: all 0.4s;
  position: relative;
  margin: 0 0.58rem;
}
.sol1on .sol1on_nav a.on {
  color: #0250ff;
}
.sol1on .sol1on_nav a.on::after {
  opacity: 1;
}
.sol1on .sol1on_nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: all 0.4s;
  width: 100%;
  height: 4px;
  background: #0250ff;
  border-radius: 4px 4px 0 0;
}
.sol1on .box {
  /* width: 9.4rem; */
  /* height: 5.25rem; */
  background: #fff;
  border-radius: 0.2rem;
  margin: 0.74rem auto 0;
  position: relative;
}
@media (max-width: 767px) {
  .sol1on .box {
    width: 100%;
    height: 6rem;
  }
}
.sol1on .box .bbox {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 0.2rem;
}
.sol1on .box .bbox .item {
  width: 100%;
  height: 100%;
  display: none;
}
.sol1on .box .bbox .item:first-child {
  display: block;
}
.sol1on .box .bbox .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sol1on .box .imgbj {
  position: absolute;
  width: 4.91rem;
  top: -0.22rem;
  right: 0.2rem;
}
.sol1tw {
  padding: 0.85rem 0 0.6rem;
}
.sol1tw .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.3rem;
  margin-top: 0.7rem;
}
.sol1tw .box .item {
  width: 25%;
  margin-bottom: 0.4rem;
  padding: 0 0.3rem;
}
@media (max-width: 991px) {
  .sol1tw .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .sol1tw .box .item {
    width: 100%;
  }
}
.sol1tw .box .item:nth-child(4n + 1) .itembox .txt i {
  background: -webkit-linear-gradient(to top, #838dff, #aab0ff);
  background: linear-gradient(to top, #838dff, #aab0ff);
}
.sol1tw .box .item:nth-child(4n + 2) .itembox .txt i {
  background: -webkit-linear-gradient(to top, #7faaff, #bad1ff);
  background: linear-gradient(to top, #7faaff, #bad1ff);
}
.sol1tw .box .item:nth-child(4n + 3) .itembox .txt i {
  background: -webkit-linear-gradient(to top, #6bc2ec, #b2def4);
  background: linear-gradient(to top, #6bc2ec, #b2def4);
}
.sol1tw .box .item:nth-child(4n + 4) .itembox .txt i {
  background: -webkit-linear-gradient(to top, #4fd6a2, #adebd3);
  background: linear-gradient(to top, #4fd6a2, #adebd3);
}
.sol1tw .box .item .itembox {
  overflow: hidden;
  border-radius: 0.31rem;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.sol1tw .box .item .itembox .imgbj {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.sol1tw .box .item .itembox .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sol1tw .box .item .itembox .txt {
  padding: 0.38rem;
  padding-bottom: 0.52rem;
  position: relative;
  z-index: 10;
}
.sol1tw .box .item .itembox .txt i {
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  width: 0.6rem;
  height: 0.6rem;
}
@media (max-width: 767px) {
  .sol1tw .box .item .itembox .txt i {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.sol1tw .box .item .itembox .txt i svg,
.sol1tw .box .item .itembox .txt i img {
  width: 40%;
  height: auto;
}
.sol1tw .box .item .itembox .txt i svg path,
.sol1tw .box .item .itembox .txt i img path {
  fill: #fefeff;
}
.sol1tw .box .item .itembox .txt .txt_b {
  margin-top: 0.48rem;
}
.sol1tw .box .item .itembox .txt .txt_b h3 {
  font-weight: bold;
}
.sol1tw .box .item .itembox .txt .txt_b p {
  margin-top: 0.15rem;
  color: #636e80;
}
.solfi {
  overflow: hidden;
  background: #f7f9ff;
  padding: 1.1rem 0 1.08rem;
}
.solfi .hth_t .pub_title p {
  margin-top: 0.14rem;
}
.solfi .hth_swi {
  position: relative;
  margin-top: 0.7rem;
}
.solfi .hth_swi .swiper {
  overflow: initial;
}
.solfi .hth_swi .hth_swi_box {
  border-radius: 0.12rem;
  overflow: hidden;
  background: #fff;
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s;
  box-shadow: 0 0.1rem 0.18rem rgba(128, 142, 174, 0.11);
}
@media (max-width: 991px) {
  .solfi .hth_swi .hth_swi_box {
    flex-direction: column;
  }
}
.solfi .hth_swi .hth_swi_box:hover {
  transform: translateY(-0.21rem);
}
.solfi .hth_swi .hth_swi_box:hover .public-img img {
  transform: scale(1.05);
}
.solfi .hth_swi .hth_swi_box:hover .gr_txt h3 {
  color: #0250ff !important;
}
.solfi .hth_swi .hth_swi_box .gl {
  position: relative;
  width: 100%;
}
.solfi .hth_swi .hth_swi_box .gl .public-img:before {
  padding-top: 48.88888889%;
}
.solfi .hth_swi .hth_swi_box .gl .g_lab {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
}
.solfi .hth_swi .hth_swi_box .gl .g_lab span {
  border-radius: 0.12rem 0 0.12rem 0;
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
  padding: 0.05rem 0.2rem;
  color: #fff;
}
.solfi .hth_swi .hth_swi_box .gr {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.3rem 0.4rem 0.2rem;
}
@media (max-width: 991px) {
  .solfi .hth_swi .hth_swi_box .gr {
    padding: 0.4rem;
  }
}
.solfi .hth_swi .hth_swi_box .gr .gr_txt h3 {
  font-weight: bold;
  margin-bottom: 0.12rem;
  color: #1e304a;
  transition: all 0.4s;
}
.solfi .hth_swi .hth_swi_box .gr .gr_txt p {
  color: #636e80;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 4.5em;
}
.solfi .hth_swi .hth_swi_box .gr .g_lab {
  margin-top: 0.24rem;
  display: flex;
  flex-wrap: wrap;
}
.solfi .hth_swi .hth_swi_box .gr .g_lab span {
  border-radius: 4px;
  border: 1px solid #e8eeff;
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
  padding: 0.07rem 0.09rem;
  background: rgba(5, 82, 255, 0.05);
  color: #1e5dfc;
  margin: 0 0.1rem 0.1rem 0;
  font-weight: bold;
}
.solfi .hth_swi .g_tac {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}
.solfi .hth_swi .g_tac .g_qie {
  display: flex;
}
.solfi .hth_swi .g_tac .g_qie .pub_nav {
  transform: translateY(0);
  position: initial;
  top: 42%;
  margin: 0 0.1rem;
}
.solfi .hth_swi .g_tac .g_qie .pub_prev {
  left: -0.96rem;
}
.solfi .hth_swi .g_tac .g_qie .pub_next {
  right: -0.96rem;
}
/* 教育金融解决方案 */
.sub_banner_sol2 {
  height: 7.2rem;
}
@media (max-width: 1260px) {
  .sub_banner_sol2 {
    height: auto;
  }
}
@media (max-width: 991px) {
  .sub_banner_sol2 .sub_banner_txt .container {
    flex-direction: column-reverse;
  }
}
.sub_banner_sol2 .sub_banner_txt .container .ban_l {
  width: 32.63888889%;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .sub_banner_sol2 .sub_banner_txt .container .ban_l {
    width: 100%;
  }
}
.sub_banner_sol2 .sub_banner_txt .container .ban_l .g_a a {
  margin-right: 0.15rem;
}
.sub_banner_sol2 .sub_banner_txt .container .ban_l .g_a .pub_btn5 {
  border-color: #1e304a;
}
.sub_banner_sol2 .sub_banner_txt .container .ban_l .g_a .pub_btn5:hover {
  border-color: #0250ff;
}
.sub_banner_sol2 .sub_banner_txt .container .ban_l .g_a .pub_btn5:hover p {
  color: #fff;
}
.sub_banner_sol2 .sub_banner_txt .container .ban_l .g_a .pub_btn5 p {
  color: #1e304a;
}
.sub_banner_sol2 .sub_banner_txt .container .ban_l .tit span {
  line-height: 1.5;
  /* color: #636e80; */
}
@media (max-width: 991px) {
  .sub_banner_sol2 .sub_banner_txt .container .ban_r {
    width: 100%;
  }
}
.sub_banner_sol2 .sub_banner_txt .container .ban_r .cio_img {
  align-items: center;
  padding-top: 50px;
}
@media (max-width: 991px) {
  .sub_banner_sol2 .sub_banner_txt .container .ban_r .cio_img {
    padding-top: 30px;
  }
}
.sol2on {
  padding: 0.9rem 0;
  background: #f9fafe;
}
.sol2on .box {
  margin-top: 0.5rem;
}
.sol2tw {
  padding: 0.9rem 0 0.86rem;
}
.sol2tw .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.4rem;
  margin-top: 0.72rem;
}
@media (max-width: 767px) {
  .sol2tw .box {
    margin: 0.7rem -0.2rem 0;
  }
}
.sol2tw .box .item {
  width: 33.33%;
  margin-bottom: 0.4rem;
  padding: 0 0.4rem;
}
@media (max-width: 991px) {
  .sol2tw .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .sol2tw .box .item {
    padding: 0 0.2rem;
    width: 100%;
    margin-bottom: 0.6rem;
  }
}
.sol2tw .box .item:nth-child(3n + 1) .itembox .txt .gl h3 {
  color: #8e96fb;
}
.sol2tw .box .item:nth-child(3n + 1) .itembox .txt i {
  background: -webkit-linear-gradient(to top, #828cff, #a9b0ff);
  background: linear-gradient(to top, #828cff, #a9b0ff);
}
.sol2tw .box .item:nth-child(3n + 2) .itembox .txt .gl h3 {
  color: #659aff;
}
.sol2tw .box .item:nth-child(3n + 2) .itembox .txt i {
  background: -webkit-linear-gradient(to top, #80abff, #bdd3ff);
  background: linear-gradient(to top, #80abff, #bdd3ff);
}
.sol2tw .box .item:nth-child(3n + 3) .itembox .txt .gl h3 {
  color: #65ceff;
}
.sol2tw .box .item:nth-child(3n + 3) .itembox .txt i {
  background: -webkit-linear-gradient(to top, #6fc4eb, #aadbf3);
  background: linear-gradient(to top, #6fc4eb, #aadbf3);
}
.sol2tw .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.2rem;
  overflow: hidden;
  box-shadow: 0 0.2rem 0.2rem rgba(163, 182, 221, 0.2);
}
.sol2tw .box .item .itembox .public-img:before {
  padding-top: 65.42056075%;
}
.sol2tw .box .item .itembox .txt {
  position: relative;
  z-index: 10;
  margin-top: -0.3rem;
  background: #fff;
  padding: 0.3rem 0.42rem 0.36rem 0.36rem;
  border-radius: 0 0.2rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sol2tw .box .item .itembox .txt .gl p {
  margin-top: 0.12rem;
  font-weight: bold;
}
.sol2tw .box .item .itembox .txt .gr {
  flex-shrink: 0;
  margin-left: 0.3rem;
}
.sol2tw .box .item .itembox .txt .gr i {
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  width: 0.4rem;
  height: 0.4rem;
}
@media (max-width: 767px) {
  .sol2tw .box .item .itembox .txt .gr i {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.sol2tw .box .item .itembox .txt .gr i svg,
.sol2tw .box .item .itembox .txt .gr i img {
  width: 60%;
  height: auto;
}
.sol2tw .box .item .itembox .txt .gr i svg path,
.sol2tw .box .item .itembox .txt .gr i img path {
  fill: #fefeff;
}
/* 区域一体化解决方案 */
.sol3on {
  padding: 1.1rem 0 0.2rem;
  background: #f6f8ff;
}
.sol3on .box {
  margin-top: 1.05rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .sol3on .box {
    flex-direction: column;
    margin-top: 0.4rem;
  }
}
.sol3on .box .gl {
  width: 72.5%;
}
@media (max-width: 991px) {
  .sol3on .box .gl {
    width: 100%;
  }
}
.sol3on .box .gl img {
  width: 100%;
  height: 100%;
}
.sol3on .box .gr {
  width: 27.36111111%;
}
@media (max-width: 991px) {
  .sol3on .box .gr {
    width: 100%;
  }
}
.sol3on .box .gr .item {
  margin-bottom: 0.35rem;
}
.sol3on .box .gr .item .g_h3 {
  margin-bottom: 0.14rem;
  display: flex;
  align-items: center;
}
.sol3on .box .gr .item .g_h3 i {
  margin-right: 0.09rem;
  flex-shrink: 0;
  display: flex;
  width: 0.16rem;
  height: auto;
}
@media (max-width: 991px) {
  .sol3on .box .gr .item .g_h3 i {
    width: 0.24rem;
  }
}
.sol3on .box .gr .item .g_h3 i svg,
.sol3on .box .gr .item .g_h3 i img {
  width: 100%;
  height: auto;
}
.sol3on .box .gr .item .g_h3 i svg path,
.sol3on .box .gr .item .g_h3 i img path {
  fill: #0250ff;
}
.sol3on .box .gr .item .g_h3 h3 {
  font-weight: bold;
}
.sol3on .box .gr .item .g_p {
  padding-left: 0.22rem;
}
@media (max-width: 991px) {
  .sol3on .box .gr .item .g_p {
    padding-left: 0.33rem;
  }
}
.sol3on .box .gr .item .g_p p {
  color: #636e80;
}
.sol3tw {
  padding: 0.85rem 0 0.76rem;
}
.sol3tw .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.34rem;
  margin-top: 0.6rem;
}
.sol3tw .box .item {
  width: 33.33%;
  margin-bottom: 0.4rem;
  padding: 0 0.34rem;
}
@media (max-width: 991px) {
  .sol3tw .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .sol3tw .box .item {
    width: 100%;
  }
}
.sol3tw .box .item:nth-child(n + 1) .itembox {
  background: #dce3ff;
}
.sol3tw .box .item:nth-child(n + 1) .itembox .bbox i {
  background: -webkit-linear-gradient(to top, #828cff, #a9b0ff);
  background: linear-gradient(to top, #828cff, #a9b0ff);
}
.sol3tw .box .item:nth-child(n + 2) .itembox {
  background: #dfeaff;
}
.sol3tw .box .item:nth-child(n + 2) .itembox .bbox i {
  background: -webkit-linear-gradient(to top, #80abff, #bdd3ff);
  background: linear-gradient(to top, #80abff, #bdd3ff);
}
.sol3tw .box .item:nth-child(n + 3) .itembox {
  background: #e7f7ff;
}
.sol3tw .box .item:nth-child(n + 3) .itembox .bbox i {
  background: -webkit-linear-gradient(to top, #6fc4eb, #aadbf3);
  background: linear-gradient(to top, #6fc4eb, #aadbf3);
}
.sol3tw .box .item:nth-child(n + 4) .itembox {
  background: #d6f2ee;
}
.sol3tw .box .item:nth-child(n + 4) .itembox .bbox i {
  background: -webkit-linear-gradient(to top, #52d8a4, #afedd4);
  background: linear-gradient(to top, #52d8a4, #afedd4);
}
.sol3tw .box .item .itembox {
  border-radius: 0.31rem;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.26rem;
  border: 1px solid #fff;
  box-shadow: 0 0.08rem 0.35rem rgba(128, 142, 174, 0.22);
}
.sol3tw .box .item .itembox .bbox {
  border-radius: 0.12rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.5rem 0.44rem 0.6rem;
}
.sol3tw .box .item .itembox .bbox i {
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  width: 0.4rem;
  height: 0.4rem;
}
@media (max-width: 767px) {
  .sol3tw .box .item .itembox .bbox i {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.sol3tw .box .item .itembox .bbox i svg,
.sol3tw .box .item .itembox .bbox i img {
  width: 60%;
  height: auto;
}
.sol3tw .box .item .itembox .bbox i svg path,
.sol3tw .box .item .itembox .bbox i img path {
  fill: #fefeff;
}
.sol3tw .box .item .itembox .bbox .txt {
  margin-top: 0.15rem;
}
.sol3tw .box .item .itembox .bbox .txt h3 {
  text-align: center;
  font-weight: bold;
}
.sol3tw .box .item .itembox .bbox .txt p {
  margin-top: 0.2rem;
  color: #636e80;
}
.sol3th {
  padding: 0.8rem 0 0.64rem;
}
.sol3th .box {
  position: relative;
  margin-top: 0.68rem;
}
.sol3th .box .hth_swi_box {
  border-radius: 0.12rem;
  overflow: hidden;
  padding: 0.16rem;
  background: #fff;
}
.sol3th .box .hth_swi_box .sol3th_box {
  position: relative;
}
@media (max-width: 767px) {
  .sol3th .box .hth_swi_box .sol3th_box .img {
    width: 100%;
  }
}
.sol3th .box .hth_swi_box .sol3th_box .img .public-img {
  border-radius: 0.12rem;
}
.sol3th .box .hth_swi_box .sol3th_box .img .public-img:before {
  padding-top: 55.4887218%;
}
.sol3th .box .hth_swi_box .sol3th_box .img .g_lab {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
}
.sol3th .box .hth_swi_box .sol3th_box .img .g_lab span {
  border-radius: 0.12rem 0 0.12rem 0;
  background: -webkit-linear-gradient(to right, #0654fe, #888af5);
  background: linear-gradient(to right, #0654fe, #888af5);
  padding: 0.05rem 0.2rem;
  color: #fff;
}
.sol3th .box .hth_swi_box .sol3th_box .txt {
  margin: 0.15rem 0 0.04rem;
}
.sol3th .box .hth_swi_box .sol3th_box .txt h3 {
  font-weight: bold;
}
.sol3th .box .swip2_pag {
  margin-top: 0.35rem;
  position: initial;
}
.sol3th .box .swip2_pag span {
  overflow: hidden;
  transition: all 0.4s;
  width: 20px;
  height: 6px;
  background: #e1e3e9;
  border-radius: 6px;
  opacity: 1;
  position: relative;
}
.sol3th .box .swip2_pag span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 6px;
  height: 100%;
  background: #0250ff;
  transform: translateX(-100%);
}
.sol3th .box .swip2_pag .swiper-pagination-bullet-active {
  width: 48px;
}
.sol3th .box .swip2_pag .swiper-pagination-bullet-active::after {
  animation: moveq1 5s 1 forwards;
  -webkit-animation: moveq1 5s 1 forwards;
}
.sol3th .box .g_qie .pub_nav {
  top: 45%;
}
.sol3th .box .g_qie .pub_prev {
  left: -0.96rem;
}
.sol3th .box .g_qie .pub_next {
  right: -0.96rem;
}
@media (max-width: 767px) {
  .sub_banner_sol2 .sub_banner_txt .container .ban_r .cio_img {
    padding-top: 0;
    margin-bottom: 0.7rem;
  }
}
.sub_banner_sol2 .sub_banner_txt .container .ban_r .cio_img img {
  object-fit: contain;
  max-height: 100%;
}
/* 数智高校解决方案 */
.sol4on {
  /* background: url(../images/sjs.png) no-repeat;
	background-size: 100% auto;
	background-position:  0 0; */
  padding: 0.82rem 0 0.86rem;
}
@media (max-width: 767px) {
  .sol4on {
    padding: 0.82rem 0 0.2rem;
  }
}
.sol4on .box {
  margin-top: 0.36rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .sol4on .box {
    flex-wrap: wrap;
  }
}
.sol4on .box > i {
  margin-top: 0.86rem;
  width: 1px;
  height: 1px;
  position: relative;
}
@media (max-width: 1580px) {
  .sol4on .box > i {
    margin-top: 0.96rem;
  }
}
@media (max-width: 991px) {
  .sol4on .box > i {
    display: none;
  }
}
.sol4on .box > i img {
  width: 2.8rem;
  height: auto;
  width: auto;
  max-width: initial;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1260px) {
  .sol4on .box > i img {
    width: 2rem;
  }
}
.sol4on .box .item {
  border: 1px solid #fff;
  width: 22.22222222%;
}
@media (max-width: 991px) {
  .sol4on .box .item {
    width: 45%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .sol4on .box .item {
    width: 48%;
  }
}
.sol4on .box .item.item1 .bbox2 {
  box-shadow: inset 0 0.25rem 1.47rem rgba(75, 103, 254, 0.23);
}
.sol4on .box .item.item2 .bbox2 {
  box-shadow: inset 0 0.25rem 1.47rem rgba(101, 154, 255, 0.23);
}
.sol4on .box .item.item3 .bbox2 {
  box-shadow: inset 0 0.25rem 1.47rem rgba(128, 213, 255, 0.23);
}
.sol4on .box .item.item4 .bbox2 {
  box-shadow: inset 0 0.25rem 1.47rem rgba(60, 210, 152, 0.23);
}
.sol4on .box .item .tit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sol4on .box .item .tit .img1 {
  width: 0.58rem;
  height: auto;
}
@media (max-width: 767px) {
  .sol4on .box .item .tit .img1 {
    width: 0.78rem;
  }
}
.sol4on .box .item .tit p {
  font-weight: bold;
  margin: 0.15rem 0 0.1rem;
}
.sol4on .box .item .tit .img2 {
  width: 0.29rem;
  height: auto;
}
@media (max-width: 767px) {
  .sol4on .box .item .tit .img2 {
    width: 0.4rem;
  }
}
.sol4on .box .item .bbox {
  margin-top: 0.18rem;
  border-radius: 0.31rem;
  box-shadow: 0 0.1rem 0.1rem rgba(163, 182, 221, 0.2);
}
.sol4on .box .item .bbox .bbox2 {
  height: 100%;
  border-radius: 0.31rem;
  padding: 0.26rem 0.26rem 0.15rem;
}
.sol4on .box .item .bbox .g_li {
  box-shadow: 0 0.1rem 0.1rem rgba(163, 182, 221, 0.2);
  border-radius: 0.12rem;
  background: #fff;
  margin-bottom: 0.17rem;
  padding: 0.15rem 0.24rem;
  display: flex;
  align-items: center;
}
.sol4on .box .item .bbox .g_li img {
  margin-right: 0.15rem;
  width: 0.4rem;
  height: 0.4rem;
}
@media (max-width: 767px) {
  .sol4on .box .item .bbox .g_li img {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.sol4on .box .item .bbox .g_li p {
  font-weight: bold;
  color: #1d2129;
}
@media (max-width: 767px) {
  .sol4on .box .item .bbox .g_li p {
    font-size: 12px;
  }
}
/* 数智中小学解决方案 */
.sol5on .box > i {
  margin-top: 0.76rem;
}
@media (max-width: 1580px) {
  .sol5on .box > i {
    margin-top: 0.86rem;
  }
}
.sol5on .box .item.item1 .tit p {
  color: #8e96fb;
}
.sol5on .box .item.item2 .tit p {
  color: #659aff;
}
.sol5on .box .item.item3 .tit p {
  color: #65ceff;
}
.sol5on .box .item.item4 .tit p {
  color: #3cd298;
}
.sol5on .box .item .tit p {
  margin: 0.05rem 0 0.1rem;
}
/* 银行解决方案 */
@media (max-width: 767px) {
  .sub_banner_sol6 {
    min-height: 8rem;
  }
}
.sub_banner_sol6 .sub_banner_txt .container .ban_l {
  width: 40%;
}
@media (max-width: 991px) {
  .sub_banner_sol6 .sub_banner_txt .container .ban_l {
    width: 100%;
  }
}
.sol6on .box .gr {
  padding-top: 0.4rem;
}
.sol6tw .box .item {
  width: 25%;
}
@media (max-width: 991px) {
  .sol6tw .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .sol6tw .box .item {
    width: 100%;
  }
}
.sol6tw .box .item .itembox .bbox {
  padding: 0.3rem 0.3rem 0.28rem;
}
/* 服务协议 */
.policybox {
  background: #fcfcfd;
}
.policybox-sec1 {
  padding: 1rem 0 2.2rem;
}
.policybox-sec1 .container {
  max-width: 1400px;
}
.policybox-sec1 .f_title {
  font-weight: bold;
  text-align: center;
  color: #000000;
  margin-bottom: 0.9rem;
}
@media (max-width: 767px) {
  .policybox-sec1 .f_title {
    margin-bottom: 0.6rem;
  }
}
.policybox-sec1 .f_cont {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.policybox-sec1 .f_cont .lt {
  width: 20.72%;
  position: sticky;
  position: -webkit-sticky;
  top: 1.2rem;
}
@media (max-width: 1580px) {
  .policybox-sec1 .f_cont .lt {
    top: 1.5rem;
  }
}
@media (max-width: 767px) {
  .policybox-sec1 .f_cont .lt {
    display: none;
  }
}
.policybox-sec1 .f_cont .lt .f_nav {
  display: block;
}
.policybox-sec1 .f_cont .lt .f_nav li {
  display: flex;
  margin-bottom: 1.2em;
}
.policybox-sec1 .f_cont .lt .f_nav li .f_tit {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 1.4rem;
  min-height: 0.5rem;
  background: #edf0f4;
  transition: all 0.4s linear;
  color: #0250ff;
  -webkit-transition: all 0.4s linear;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 80% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}
.policybox-sec1 .f_cont .lt .f_nav li:hover:not(.on) .f_tit {
  opacity: 0.7;
}
.policybox-sec1 .f_cont .lt .f_nav li.on .f_tit {
  background-color: #0250ff;
  color: #ffffff;
}
.policybox-sec1 .f_cont .gt {
  width: 79.28%;
}
@media (max-width: 767px) {
  .policybox-sec1 .f_cont .gt {
    width: 100%;
  }
}
.policybox-sec1 .f_cont .gt .f_jut {
  width: 100%;
  margin-bottom: 0.42rem;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0.25rem;
  border-bottom: 1px dashed #999999;
}
.policybox-sec1 .f_cont .gt .f_jut .li {
  color: #000000;
  margin-right: 0.2rem;
  margin-bottom: 0.1rem;
}
.policybox-sec1 .f_cont .gt .f_jut .li:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .policybox-sec1 .f_cont .gt .f_jut .li {
    font-size: 0.26rem;
  }
}
