@charset "utf-8";
:root {
  --color: #2f318b;
  --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: #2f318b;
}
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: 'pop-r', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  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: #000;
  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: 1600px;
}
@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: #2f318b;
}
.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 {
    height: 60px;
  }
}
.g_tac {
  text-align: center;
}
/*顶部*/
#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: #2f318b;
  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: #2f318b;
}
#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: #2f318b;
}
/*顶部移动端导航*/
#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: #2f318b;
}
#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: #2f318b;
}
#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: #2f318b;
  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: #2f318b;
}
#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: #2f318b;
  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: #2f318b;
}
#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: #2f318b;
}
#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: #2f318b;
}
#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: #2f318b;
}
@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: #2f318b;
}
#c-footer .c-bottom-box .container .c-copyright {
  word-wrap: break-word;
  word-break: break-all;
}
/*首页内容1*/
/* 自己的公共样式 */
/*过渡*/
a {
  text-decoration: initial;
}
input::-webkit-input-placeholder {
  color: #999;
}
textarea::-webkit-input-placeholder {
  color: #999;
}
/* 字体 */
@font-face {
  font-family: 'pop-b';
  src: url(../font/Outfit-Bold.ttf);
}
@font-face {
  font-family: 'pop-l';
  src: url(../font/Outfit-Light.ttf);
}
@font-face {
  font-family: 'pop-m';
  src: url(../font/Outfit-Medium.ttf);
}
@font-face {
  font-family: 'pop-r';
  src: url(../font/Outfit-Regular.ttf);
}
@font-face {
  font-family: 'pop-sb';
  src: url(../font/Outfit-SemiBold.ttf);
}
@font-face {
  font-family: 'din-m';
  src: url(../font/DIN-Medium.ttf);
}
@font-face {
  font-family: 'opp-b';
  src: url(../font/OPPOSans-B.ttf);
}
.font-b {
  font-family: 'pop-b', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-l {
  font-family: 'pop-l', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-m {
  font-family: 'pop-m', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-r {
  font-family: 'pop-r', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-sb {
  font-family: 'pop-sb', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.din-m {
  font-family: 'din-m', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.opp-b {
  font-family: 'opp-b', '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: 100px;
  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(255,255,255,0.1); */
  /* show_nav 子页面导航class */
  /* nav_on 导航不在顶部后移入加上移除去掉的class */
  /* nav_on2 导航不在顶部后固定的class */
  /* 搜索下拉 */
}
@media (max-width: 1260px) {
  nav {
    background: #fff;
  }
}
nav.show_nav {
  border-bottom: 1px solid #e3e5e9;
  background: #fff;
}
nav.show_nav .nav_top {
  background: none;
}
@media (max-width: 1260px) {
  nav.show_nav .nav_top {
    background: #2f318b;
  }
}
@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: #000 !important;
}
@media (max-width: 1260px) {
  nav.show_nav svg path {
    fill: #000 !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 .glogo_txt:after {
  background: rgba(1, 1, 1, 0.2);
}
nav.show_nav .nav_ljbox .nav_l_box .glogo_txt p {
  color: #111;
}
nav.show_nav .nav_ljbox .nav_l_box .glogo_txt span {
  color: #666;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  color: #000 !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path,
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg circle {
  fill: none !important;
  stroke: #333 !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p {
  color: #2f318b !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p::after {
  background: #2f318b !important;
  width: 100%;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a svg path,
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a svg circle {
  fill: none  !important;
  stroke: #2f318b !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p {
  color: #2f318b !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after {
  background: #2f318b !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path {
  fill: none  !important;
  stroke: #2f318b !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: #2f318b;
  }
}
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: #2f318b;
  }
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
  color: #000 !important;
}
nav.nav_on,
nav.nav_on2 {
  background: #fff !important;
}
nav.nav_on svg path,
nav.nav_on2 svg path {
  fill: #333 !important;
}
nav.nav_on .nav_top,
nav.nav_on2 .nav_top {
  background: #2f318b;
}
nav.nav_on .nav_ljbox .nav_l_box .logo .xs,
nav.nav_on2 .nav_ljbox .nav_l_box .logo .xs {
  display: none;
}
nav.nav_on .nav_ljbox .nav_l_box .logo .yc,
nav.nav_on2 .nav_ljbox .nav_l_box .logo .yc {
  display: block;
}
nav.nav_on .nav_ljbox .nav_l_box .glogo_txt:after,
nav.nav_on2 .nav_ljbox .nav_l_box .glogo_txt:after {
  background: rgba(1, 1, 1, 0.2);
}
nav.nav_on .nav_ljbox .nav_l_box .glogo_txt p,
nav.nav_on2 .nav_ljbox .nav_l_box .glogo_txt p {
  color: #111;
}
nav.nav_on .nav_ljbox .nav_l_box .glogo_txt span,
nav.nav_on2 .nav_ljbox .nav_l_box .glogo_txt span {
  color: #666;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
  color: #333 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  color: #333 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path,
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg circle,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg circle {
  fill: none !important;
  stroke: #333 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p {
  color: #2f318b !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p::after,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p::after {
  background: #2f318b !important;
  width: 100%;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a svg path,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a svg path,
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a svg circle,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a svg circle {
  fill: none  !important;
  stroke: #2f318b !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p {
  color: #2f318b !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after {
  background: #2f318b !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path {
  fill: none !important;
  stroke: #333 !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: #2f318b;
}
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: #2f318b;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
  color: #333;
}
@media (max-width: 1260px) {
  nav.nav_on #g-header .c-switch i,
  nav.nav_on2 #g-header .c-switch i {
    background: #333;
  }
}
nav .nav_top {
  transition: all 0.4s;
  background: #2f318b;
  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.48rem;
  position: relative;
  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 0.6rem;
  }
}
nav .nav_ljbox .nav_l_box {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
nav .nav_ljbox .nav_l_box .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_l_box .logo .xs {
    display: none;
  }
  nav .nav_ljbox .nav_l_box .logo .yc {
    display: block;
  }
}
nav .nav_ljbox .nav_l_box .logo img {
  width: 1.33rem;
  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 .glogo_txt {
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 0.18rem;
  margin-left: 0.18rem;
  position: relative;
}
nav .nav_ljbox .nav_l_box .glogo_txt::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 0.28rem;
  background: rgba(255, 255, 255, 0.2);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
nav .nav_ljbox .nav_l_box .glogo_txt p {
  line-height: 1.1;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_l_box .glogo_txt p {
    color: #333;
  }
}
nav .nav_ljbox .nav_l_box .glogo_txt span {
  opacity: 0.8;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_l_box .glogo_txt span {
    color: #666;
  }
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .glogo_txt span {
    font-size: 10px;
  }
}
nav .nav_ljbox .nav_r_box {
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box {
    display: flex;
  }
}
nav .nav_ljbox .nav_r_box .nav_r {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  /* 导航右边内容 */
}
nav .nav_ljbox .nav_r_box .nav_r .navbox {
  height: 100%;
}
@media screen and (min-width: 1940px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 1940px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox > ul {
    justify-content: center;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li {
  height: 100%;
  position: relative;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on2 {
  position: initial;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p {
  color: #2f318b;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p::after {
  background: #fff;
  width: 100%;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a svg path,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a svg circle {
  fill: none;
  stroke: #2f318b;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .xs {
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .yc {
  display: block;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .img1 {
  display: none !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .img2 {
  display: block !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p {
  color: #2f318b !important;
  /* &::after{
											width: 100%;
										} */
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path {
  fill: none  !important;
  stroke: #2f318b !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .xs {
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .yc {
  display: block;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .img1 {
  display: none !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .img2 {
  display: block !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
  color: #fff;
  margin: 0 0.3rem;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1900px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
    margin: 0 0.2rem;
  }
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
    margin: 0 0.1rem;
    color: #333;
  }
}
@media (max-width: 991px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
    font-size: 12px;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > svg {
  width: 16px;
  height: auto;
  margin-left: 0.1rem;
  /* position: absolute;
									right: -24px; */
}
@media (max-width: 1900px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > svg {
    width: 14px;
    /* right: -18px; */
  }
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > svg path,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > svg circle {
  fill: none;
  stroke: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > img {
  width: 8px;
  height: auto;
  margin-left: 10px;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a .img2 {
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  transition: all 0.4s;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  /* &::after{
										transition: all 0.4s;
										content: '';
										position: absolute;
										bottom: 0;
										width: 0;
										height: 2px;
										left: 50%;
										background: @colorNav_hover_line;
										transform: translateX(-50%);
									} */
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr {
  margin-left: 1.5rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 1900px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 1380px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr {
    margin-left: 0.5rem;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box {
  height: 100%;
  display: flex;
  align-items: center;
  /* 语言 */
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl {
  margin: 0 0.43rem 0 0.73rem;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_search {
  margin-left: 0.38rem;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_search a {
  display: flex;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_search a svg {
  width: 20px;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_search a svg path {
  fill: #fff;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_search a svg path {
    fill: #333;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan {
  height: 100%;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan {
    /* display: none; */
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg {
  margin-right: 0.1rem;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg path {
  fill: #fff;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg path {
    fill: #333;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box {
  display: flex;
  align-items: center;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
  color: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg {
  margin-left: 0.09rem;
  flex-shrink: 0;
  width: 7px;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  /* box-shadow: 0 0 0.1rem rgba(0,0,0,0.05); */
  display: none;
  z-index: 20;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box {
  width: 155px;
  height: auto;
  padding: 0.2rem 0.18rem 0.07rem;
  background: url(../images/navimg4.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box {
    background: #fff;
    border-radius: 0 0 10px 10px;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a {
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ededed;
  padding: 5px 0;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a:last-child {
  border: none;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a:hover {
  color: #2f318b;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a:hover p {
  color: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a:hover p::after {
  opacity: 1;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a p {
  overflow: hidden;
  width: 100%;
  border-radius: 100px;
  height: 0.44rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a p::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: -webkit-linear-gradient(to right, #33358d, #3876e8);
  background: linear-gradient(to right, #33358d, #3876e8);
  opacity: 0;
  transition: all 0.4s;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a p span {
  position: relative;
  z-index: 10;
}
nav .g_navsearch {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: #ffffff;
  color: #222222;
  display: none;
}
nav .g_navsearch .container {
  padding: 0.8rem 0 0.75rem;
  position: relative;
}
@media (max-width: 767px) {
  nav .g_navsearch .container {
    padding-bottom: 0.6rem;
  }
}
nav .g_navsearch .container .box h2 {
  line-height: 1.2;
  text-align: center;
}
nav .g_navsearch .container .box form {
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
nav .g_navsearch .container .box form .search_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  nav .g_navsearch .container .box form .search_box {
    /* flex-direction: column; */
  }
}
nav .g_navsearch .container .box form .search_box input {
  padding: 0 0.3rem;
  width: 4.04rem;
  color: #333;
  height: 0.5rem;
  background: #f7f7fb;
  border-radius: 100px;
  border: 1px solid #eaecf5;
  color: #020435;
}
@media (max-width: 767px) {
  nav .g_navsearch .container .box form .search_box input {
    width: 100%;
    height: 0.8rem;
    /* margin-bottom: 0.2rem; */
  }
}
nav .g_navsearch .container .box form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.3rem;
  padding: 0 0.32rem;
  height: 0.5rem;
}
@media (max-width: 767px) {
  nav .g_navsearch .container .box form .search_box button {
    height: 0.8rem;
  }
}
nav .g_navsearch .container .box form .search_box button svg {
  width: 100%;
  height: auto;
}
nav .g_navsearch .container .box form .search_box button svg path {
  fill: #9a9a9a;
}
nav .g_navsearch .container .box .g_navsearch_b {
  margin-top: 0.46rem;
}
nav .g_navsearch .container .box .g_navsearch_b .g_tit {
  text-align: center;
  text-transform: uppercase;
}
nav .g_navsearch .container .box .g_navsearch_b .g_tit p {
  opacity: 0.5;
}
nav .g_navsearch .container .box .g_navsearch_b .g_box {
  width: 7.5rem;
  margin: 0.32rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  nav .g_navsearch .container .box .g_navsearch_b .g_box {
    width: 100%;
  }
}
nav .g_navsearch .container .box .g_navsearch_b .g_box a {
  border-radius: 100px;
  border: 1px solid #e5e5e5;
  margin: 0 3px 0.1rem;
  padding: 0.08rem 0.24rem;
  transition: all 0.4s;
}
nav .g_navsearch .container .box .g_navsearch_b .g_box a:hover {
  background: #2d30c2;
  border-color: #2d30c2;
  color: #fff;
}
/* 导航各种效果 */
.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: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: #f8f8f8;
  border-radius: 0 0 0.2rem 0.2rem;
  box-shadow: 0 6px 29px rgba(211, 211, 211, 0.08);
  padding: 10px 0;
  display: none;
  width: auto;
  white-space: nowrap;
}
.pro_nav2 > a {
  min-height: 0.6rem;
  padding: 0.07rem 0.2rem 0.07rem 0.3rem;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  margin: 5px 10px;
  border-radius: 0.15rem;
  -webkit-transition: all 0.6s;
}
.pro_nav2 > a:hover {
  background: #fff;
}
/* 移动端导航 */
#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;
}
#g-header .c-nav2 li.on .c-title-con {
  /* display: block; */
}
@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: #2f318b;
}
#g-header .c-nav2 li ul {
  display: none;
}
#g-header .c-switch {
  position: relative;
  width: 24px;
  height: 22px;
  cursor: pointer;
}
@media (max-width: 991px) {
  #g-header .c-switch {
    display: block;
  }
}
#g-header .c-switch i {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 1260px) {
  #g-header .c-switch i {
    background: #333;
  }
}
#g-header .c-switch i:nth-child(1) {
  top: 0;
}
#g-header .c-switch i:nth-child(2) {
  width: 18px;
  top: 50%;
}
#g-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#g-header .c-switch i .c-title-box img {
  width: 10px;
  height: auto;
  margin: 0 0 0 10px;
  float: right;
  display: block;
}
.c-title-con {
  display: none;
}
.c-open #g-header .c-nav2 {
  right: 0;
}
.c-open #g-header .c-nav2 .c-title-con {
  overflow: hidden;
  height: auto;
  display: none;
  padding-bottom: 0.25rem;
}
.c-open #g-header .c-nav2 .c-title-con > a {
  color: #999 !important;
  display: block;
  padding: 0.15rem 0 0.15rem 20px;
  line-height: 1.5;
}
.c-open #g-header .c-switch i:nth-child(2) {
  opacity: 0;
}
.c-open #g-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-open #g-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* banner */
@media (max-width: 1260px) {
  .h_banner .h_banner_swi {
    height: 100%;
  }
}
.h_banner .swiper-slide {
  overflow: hidden;
}
.h_banner .h_b_box {
  position: relative;
  width: 100%;
  height: var(--vh);
}
@media (max-width: 1260px) {
  .h_banner .h_b_box {
    height: calc(var(--vh) - 60px);
  }
}
@media (max-width: 767px) {
  .h_banner .h_b_box {
    height: 10rem;
  }
}
.h_banner .h_b_box .h_b_txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.h_banner .h_b_box .h_b_txt .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 0.6rem;
}
.h_banner .h_b_box .h_b_txt .container .txt_t .p1 {
  visibility: hidden;
  color: #fff;
  line-height: 1.2;
  font-weight: bold;
}
.h_banner .h_b_box .h_b_txt .container .txt_t .p2 {
  visibility: hidden;
  margin-top: 0.15rem;
  color: #fff;
}
.h_banner .h_b_box .h_b_txt .container .public-btn {
  visibility: hidden;
  margin-top: 0.56rem;
}
.h_banner .home_pag {
  bottom: 0.66rem;
}
.h_banner .home_pag .swiper-pagination-bullet {
  min-width: 1.8rem;
  height: auto;
  color: #fff;
  background: none;
  border-radius: 0;
  opacity: 1;
  padding-top: 0.16rem;
  position: relative;
  margin: 0 0.1rem;
}
.h_banner .home_pag .swiper-pagination-bullet span {
  opacity: 0.64;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet span {
    font-size: 0.24rem;
  }
}
.h_banner .home_pag .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet::after {
    height: 1px;
  }
}
.h_banner .home_pag .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  width: 0;
  transition: all 0s;
  height: 3px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet::before {
    height: 1px;
  }
}
.h_banner .home_pag .swiper-pagination-bullet-active span {
  opacity: 1;
}
.h_banner .home_pag .swiper-pagination-bullet-active::before {
  width: 100%;
  transition: all 5.8s;
}
.h_b_img {
  width: 100%;
  height: 100%;
  position: relative;
}
.h_b_img > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.h_b_img .img1 {
  z-index: 1;
}
@media (max-width: 767px) {
  .h_b_img .img1 {
    z-index: 1;
    display: none;
  }
}
.h_b_img .img2 {
  z-index: 2;
  display: none;
}
@media (max-width: 767px) {
  .h_b_img .img2 {
    z-index: 2;
    display: block;
  }
}
.h_b_img > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
/* 网站地图 */
.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: #2f318b !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;
}
.pub_t {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .pub_t {
    flex-direction: column;
    align-items: flex-start;
  }
}
.pub_t .pub_title {
  width: 70%;
}
@media (max-width: 767px) {
  .pub_t .pub_title {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.pub_title h2 {
  text-transform: uppercase;
  color: #2f318b;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .pub_title h2 br {
    display: none;
  }
}
.pub_title p {
  margin-top: 0.1rem;
  line-height: 1.15;
}
@media (max-width: 991px) {
  .pub_title p br {
    display: none;
  }
}
.pub_title2 p {
  color: #fff;
}
.pub_title3 {
  text-align: center;
}
.pub_btn {
  min-width: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 0.56rem;
  padding: 0.1rem;
  padding-left: 0.22rem;
  border-radius: 100px;
  /* border-radius: 100px; */
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #fff;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .pub_btn {
    height: 0.6rem;
    padding-left: 0.3rem;
  }
}
@media (max-width: 767px) {
  .pub_btn {
    height: 0.8rem;
    padding-left: 0.4rem;
  }
}
.pub_btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0.17rem;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2f318b;
  transition: all 0.6s;
  transform: translateY(-50%) scale(0.8);
}
.pub_btn:hover {
  border-color: #2f318b;
  background: #2f318b;
}
.pub_btn:hover::after {
  transform: translateY(-50%) scale(16);
}
.pub_btn:hover i {
  transform: rotate(45deg);
  background: #fff;
}
.pub_btn:hover i svg path,
.pub_btn:hover i img path {
  fill: #2f318b;
}
.pub_btn:hover p {
  color: #fff;
}
.pub_btn i {
  transition: all 0.6s;
  position: relative;
  z-index: 10;
  margin-left: 0.3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.36rem;
  height: 0.36rem;
  background: -webkit-linear-gradient(to right, #33358d, #3876e8);
  background: linear-gradient(to right, #33358d, #3876e8);
  border-radius: 50%;
}
@media (max-width: 1580px) {
  .pub_btn i {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media (max-width: 767px) {
  .pub_btn i {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.pub_btn i svg,
.pub_btn i img {
  width: 22.22222222%;
  height: auto;
}
.pub_btn i svg path,
.pub_btn i img path {
  fill: #fff;
}
.pub_btn p {
  position: relative;
  z-index: 5;
  transition: all 0.4s;
}
.pub_btn2 {
  background: #fff;
  border-color: #eee;
}
.pub_btn3 {
  height: 0.44rem;
  padding: 0 0.2rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .pub_btn3 {
    height: 0.8rem;
    padding: 0 0.4rem;
  }
}
.pub_btn3::after {
  content: '';
  position: absolute;
  background: -webkit-linear-gradient(to right, #33358d, #3876e8);
  background: linear-gradient(to right, #33358d, #3876e8);
  opacity: 1;
  transition: all 0.4s;
  left: 0;
  width: 100%;
  height: 100%;
}
.pub_btn3:hover {
  border-color: #2f318b;
  background: #2f318b;
}
.pub_btn3:hover::after {
  opacity: 0;
}
.pub_btn3:hover i {
  background: #fff;
}
.pub_btn3:hover i svg path,
.pub_btn3:hover i img path {
  fill: #2f318b;
}
.pub_btn3:hover p {
  color: #fff;
}
@media (max-width: 1580px) {
  .pub_btn3 {
    height: 0.6rem;
    padding: 0 0.3rem;
  }
}
@media (max-width: 767px) {
  .pub_btn3 {
    height: 0.8rem;
    padding: 0 0.4rem;
  }
}
.pub_btn3.pub_btn3_2 {
  background: none;
  border: 1px solid #adafb0;
}
.pub_btn3.pub_btn3_2:hover {
  border-color: #2f318b;
  background: #2f318b;
}
.pub_btn3.pub_btn3_2:hover p {
  color: #fff;
}
.pub_btn3.pub_btn3_2::after {
  opacity: 0 !important;
}
.pub_btn3.pub_btn3_2 p {
  color: #000;
}
.pub_btn3.pub_btn3_2 i svg path {
  fill: #fff;
}
.pub_btn3 i {
  margin-left: 0.09rem;
  flex-shrink: 0;
  display: flex;
  width: 6px;
  height: auto;
}
.pub_btn3 i svg,
.pub_btn3 i img {
  width: 100%;
  height: auto;
}
.pub_btn3 i svg path,
.pub_btn3 i img path {
  fill: #111;
}
.pub_btn3 p {
  position: relative;
  z-index: 10;
}
.pub_btn3 i {
  position: relative;
  z-index: 10;
}
/* 二级 */
/* .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;} */
/* 开始 */
.c-home1 {
  height: 100vh;
}
.c-home1 .g_qie .pub_prev {
  left: 0.5rem;
}
.c-home1 .g_qie .pub_next {
  right: 0.5rem;
}
.c-home1 .g_qie .pub_nav {
  border-color: rgba(255, 255, 255, 0.8);
}
.c-home1 .g_qie .pub_nav:hover {
  border-color: #2f318b;
  background: #2f318b;
}
.c-home1 .g_qie .pub_nav:hover svg path {
  fill: #fff;
}
.c-home1 .g_qie .pub_nav svg path {
  fill: #fff;
}
.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 .banner_txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.c-home1 .banner_txt .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .c-home1 .banner_txt .container {
    justify-content: flex-start;
    padding-top: 186px;
  }
}
.c-home1 .banner_txt .container .banner_txt_box {
  width: 45%;
}
@media (max-width: 991px) {
  .c-home1 .banner_txt .container .banner_txt_box {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .c-home1 .banner_txt .container .banner_txt_box {
    width: 100%;
    text-align: center;
  }
}
.c-home1 .banner_txt .container .banner_txt_box h3 {
  line-height: 1.25;
  color: #fff;
  margin-bottom: 0.32rem;
}
.c-home1 .banner_txt .container .banner_txt_box > p {
  color: rgba(255, 255, 255, 0.5);
}
.c-home1 .banner_txt .container .banner_txt_box .pub_btn {
  margin-top: 0.46rem;
}
.c-home1 .c-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.c-home1 .swiper-pagination {
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-start;
  width: 85%;
  bottom: 0.8rem;
}
@media (max-width: 1260px) {
  .c-home1 .swiper-pagination {
    width: 90%;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet {
  /* background: #fff; */
  /* opacity: 0.3; */
  width: 2rem;
  height: 4px;
  border-radius: 100px;
  margin-right: 0.17rem;
  position: relative;
  /* opacity: 1; */
  background: #24293f;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet div {
  height: 100%;
  background: #fff;
  width: 0%;
  transition-delay: 0s;
  transition-timing-function: linear;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet span {
  display: flex;
  white-space: nowrap;
  padding-top: 0.16rem;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination .swiper-pagination-bullet span {
    display: none;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet span em {
  font-style: initial;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  display: block;
  font-style: initial;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet-active div {
  width: 100%;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet-active i {
  background: rgba(255, 255, 255, 0.2);
}
.c-home1 .g_tb {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.4rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
@media (max-width: 991px) {
  .c-home1 .g_tb {
    bottom: 1.2rem;
  }
}
.c-home1 .g_tb i {
  animation: mov1 2.2s infinite ease-in-out;
  -webkit-animation: mov1 2.2s infinite ease-in-out;
  margin-bottom: 0.08rem;
  flex-shrink: 0;
  display: flex;
  width: 0.18rem;
  height: auto;
}
@media (max-width: 767px) {
  .c-home1 .g_tb i {
    width: 0.24rem;
  }
}
.c-home1 .g_tb i svg,
.c-home1 .g_tb i img {
  width: 100%;
  height: auto;
}
.c-home1 .g_tb i svg path,
.c-home1 .g_tb i img path {
  fill: #2f318b;
}
.c-home1 .g_tb p {
  font-size: 12px;
}
@keyframes mov1 {
  0% {
    transform: translate3d(0px, -0.1rem, 0px);
  }
  50% {
    transform: translate3d(0px, 0, 0px);
  }
  100% {
    transform: translate3d(0px, -0.1rem, 0px);
  }
}
@media (max-width: 1260px) {
  .g_qie {
    display: none;
  }
}
.g_qie .pub_nav {
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #2f318b;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 10;
  cursor: pointer;
  transition: all 0.4s;
}
.g_qie .pub_nav:hover {
  background: #2f318b;
}
.g_qie .pub_nav:hover svg path {
  fill: #fff;
}
.g_qie .pub_nav svg {
  width: 14%;
  height: auto;
}
.g_qie .pub_nav svg path {
  fill: #2f318b;
  opacity: 1;
  transition: all 0.4s;
}
.g_qie .pub_prev {
  left: -0.88rem;
}
.g_qie .pub_prev svg {
  transform: rotate(180deg);
}
.g_qie .pub_next {
  right: -0.88rem;
}
@media (max-width: 767px) {
  .g_title {
    text-align: center;
  }
}
.g_title h2 {
  /* line-height: 1.2; */
  font-weight: bold;
}
.g_title .g_p {
  /* padding: 0 1.4rem; */
  color: #666;
  margin-top: 0.38rem;
  /* line-height: (24/20); */
}
@media (max-width: 991px) {
  .g_title .g_p {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .g_title .g_p {
    line-height: 1.5;
  }
}
.g_title2 {
  text-align: center;
}
.g_title3 .g_p {
  line-height: 1.625;
}
.hon .hon_t {
  padding: 1.35rem 0 2.3rem;
  position: relative;
}
@media (max-width: 991px) {
  .hon .hon_t {
    padding: 1.3rem 0;
  }
}
.hon .hon_t .imgbj {
  position: absolute;
  top: 3.25rem;
  left: 0;
  width: 100%;
  z-index: -1;
}
.hon .hon_t .hon_t_box {
  position: relative;
}
.hon .hon_t .hon_t_box .gl {
  width: 35.3125%;
}
@media (max-width: 991px) {
  .hon .hon_t .hon_t_box .gl {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hon .hon_t .hon_t_box .gl {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.hon .hon_t .hon_t_box .gl .pub_btn {
  margin-top: 0.55rem;
}
.hon .hon_t .hon_t_box .gr {
  right: 1.35rem;
  top: -0.6rem;
  width: 6.62rem;
  height: auto;
  position: absolute;
  display: block;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 991px) {
  .hon .hon_t .hon_t_box .gr {
    top: 0;
    margin: auto;
    width: 100%;
    right: 0;
    position: relative;
    display: flex;
    justify-content: center;
  }
}
.hon .hon_t .hon_t_box .gr img,
.hon .hon_t .hon_t_box .gr video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
}
@media (max-width: 991px) {
  .hon .hon_t .hon_t_box .gr img,
  .hon .hon_t .hon_t_box .gr video {
    margin: 0.5rem 0 0;
  }
}
@media (max-width: 767px) {
  .hon .hon_t .hon_t_box .gr img,
  .hon .hon_t .hon_t_box .gr video {
    width: 100%;
  }
}
.hon .hon_t .hon_t_box .gr::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.hon .hon_t .hon_t_box .gr > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.hon .hon_t .hon_t_box .gr > video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.hon .hon_b {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid #edf0f5;
  padding: 0.64rem 0 0.75rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .hon .hon_b {
    padding: 0.64rem 0 0.3rem;
  }
}
.hon .hon_b .hon_b_box {
  display: flex;
}
@media (max-width: 991px) {
  .hon .hon_b .hon_b_box {
    flex-wrap: wrap;
  }
}
.hon .hon_b .hon_b_box .item {
  position: relative;
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 0.6rem;
}
@media (max-width: 991px) {
  .hon .hon_b .hon_b_box .item {
    width: 50%;
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 991px) {
  .hon .hon_b .hon_b_box .item:nth-child(2n)::after {
    display: none;
  }
}
.hon .hon_b .hon_b_box .item:nth-child(4n)::after {
  display: none;
}
.hon .hon_b .hon_b_box .item::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 0.86rem;
  background: #eeeeee;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hon .hon_b .hon_b_box .item .item_t {
  align-items: flex-end;
  display: inline-flex;
}
.hon .hon_b .hon_b_box .item .item_t p {
  line-height: 1;
  font-size: 0.72rem;
  font-weight: bold;
  background-image: linear-gradient(90deg, #2c2f82 0%, #346ee2 100%), linear-gradient(#2c2f82, #346ee2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hon .hon_b .hon_b_box .item .item_t .span1 {
  font-size: 0.72rem;
  margin-left: 0;
  line-height: 0.8;
  color: #346ee2;
}
.hon .hon_b .hon_b_box .item .item_t span {
  color: #2f318b;
  margin-left: 0.07rem;
  line-height: 1;
  margin-bottom: 0.06rem;
}
.hon .hon_b .hon_b_box .item .item_b {
  text-align: center;
  margin-top: 0.25rem;
}
.hon .hon_b .hon_b_box .item .item_b p {
  color: #666666;
}
.htw {
  padding: 1.15rem 0;
}
@media (max-width: 767px) {
  .htw {
    overflow: hidden;
  }
}
.htw .gtit {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .htw .gtit {
    flex-direction: column;
    align-items: flex-start;
  }
}
.htw .gtit .g_title {
  display: flex;
  align-items: flex-start;
  width: 65.625%;
}
@media (max-width: 991px) {
  .htw .gtit .g_title {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .htw .gtit .g_title {
    width: 100%;
    margin-bottom: 0.4rem;
    align-items: center;
  }
}
.htw .gtit .g_title h2 {
  margin-right: 0.9rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .htw .gtit .g_title h2 {
    margin-right: 0;
  }
}
.htw .gtit .g_title .g_p {
  margin-top: 0.08rem;
}
@media (max-width: 767px) {
  .htw .gtit .g_title .g_p {
    font-size: 0.3rem;
    margin-top: 0.3rem;
  }
}
@media (max-width: 767px) {
  .htw .gtit .pub_btn {
    margin: auto;
  }
}
.htw .box {
  margin-top: 0.7rem;
}
.htw .box .bbox {
  margin-top: 0.74rem;
  position: relative;
}
.htw .box .bbox .htw_it {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.htw .box .bbox .htw_it.on {
  opacity: 1;
  position: relative;
  z-index: 10;
}
.htw .box .bbox .htw_it .htw_it_con {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .htw .box .bbox .htw_it .htw_it_con {
    flex-direction: column;
  }
}
.htw .box .bbox .htw_it .gl {
  position: relative;
  width: 48.75%;
}
@media (max-width: 991px) {
  .htw .box .bbox .htw_it .gl {
    width: 100%;
  }
}
.htw .box .bbox .htw_it .gl .public-img {
  border-radius: 0.2rem;
}
.htw .box .bbox .htw_it .gl .public-img:before {
  padding-top: 64.1025641%;
}
@media (max-width: 767px) {
  .htw .box .bbox .htw_it .gl .public-img:before {
    padding-top: 32%;
  }
}
.htw .box .bbox .htw_it .gl .txt {
  display: flex;
  align-items: flex-end;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0.28rem 0.48rem;
}
.htw .box .bbox .htw_it .gl .txt h3 {
  line-height: 1.16666667;
  color: #fff;
}
.htw .box .bbox .htw_it .gr {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 48.5625%;
}
@media (max-width: 991px) {
  .htw .box .bbox .htw_it .gr {
    width: 100%;
    margin-top: 0.4rem;
  }
}
@media (max-width: 767px) {
  .htw .box .bbox .htw_it .gr {
    flex-direction: column;
  }
}
.htw .box .bbox .htw_it .gr .ani_icon svg,
.htw .box .bbox .htw_it .gr .ani_icon img {
  pointer-events: none;
  position: absolute;
  width: 0.55rem;
  height: auto;
}
.htw .box .bbox .htw_it .gr .ani_icon svg path,
.htw .box .bbox .htw_it .gr .ani_icon img path {
  fill: #bdc2dc;
}
.htw .box .bbox .htw_it .gr .ani_icon .img1 {
  top: 0;
  left: 0;
}
.htw .box .bbox .htw_it .gr .ani_icon .img2 {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}
.htw .box .bbox .htw_it .gr .left {
  position: relative;
  width: 57.91505792%;
}
@media (max-width: 767px) {
  .htw .box .bbox .htw_it .gr .left {
    width: 100%;
  }
}
.htw .box .bbox .htw_it .gr .left .l_it {
  /* transition: all 0.4s; */
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  padding: 0.38rem 0.44rem;
}
@media (max-width: 767px) {
  .htw .box .bbox .htw_it .gr .left .l_it {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.htw .box .bbox .htw_it .gr .left .l_it.on {
  opacity: 1;
  position: relative;
}
.htw .box .bbox .htw_it .gr .left .l_it .txt {
  margin-bottom: 0.26rem;
}
.htw .box .bbox .htw_it .gr .left .l_it .txt h4 {
  line-height: 1;
  margin-bottom: 0.24rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 2em;
}
.htw .box .bbox .htw_it .gr .left .l_it .txt p {
  line-height: 1.125;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 2.3em;
}
@media (max-width: 767px) {
  .htw .box .bbox .htw_it .gr .left .l_it .txt p {
    height: auto;
  }
}
.htw .box .bbox .htw_it .gr .left .l_it .public-img {
  margin-left: 0.18rem;
  margin-top: 0.22rem;
}
@media (max-width: 767px) {
  .htw .box .bbox .htw_it .gr .left .l_it .public-img {
    width: 100%;
  }
}
.htw .box .bbox .htw_it .gr .left .l_it .public-img:before {
  padding-top: 69.0851735%;
}
.htw .box .bbox .htw_it .gr .left .l_it .public-img img {
  object-fit: contain;
}
@media (max-width: 767px) {
  .htw .box .bbox .htw_it .gr .left .l_it .pub_btn3 {
    order: 3;
    margin: 0.3rem auto 0;
  }
}
.htw .box .bbox .htw_it .gr .right {
  padding: 0 0 0 0.2rem;
  width: 42.08494208%;
  position: relative;
}
@media (max-width: 991px) {
  .htw .box .bbox .htw_it .gr .right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .htw .box .bbox .htw_it .gr .right {
    width: 100%;
    padding-bottom: 0.3rem;
  }
}
.htw .box .bbox .htw_it .gr .right .swiper {
  height: 5rem;
  padding-right: 0.2rem;
}
@media (max-width: 767px) {
  .htw .box .bbox .htw_it .gr .right .swiper {
    width: 100%;
    height: auto;
  }
}
.htw .box .bbox .htw_it .gr .right .swiper .htw_it_box {
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.htw .box .bbox .htw_it .gr .right .swiper .htw_it_box .txt {
  text-align: right;
}
@media (max-width: 767px) {
  .htw .box .bbox .htw_it .gr .right .swiper .htw_it_box .txt {
    display: none;
  }
}
.htw .box .bbox .htw_it .gr .right .swiper .htw_it_box .txt h4 {
  line-height: 1.125;
  color: #787988;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.htw .box .bbox .htw_it .gr .right .swiper .htw_it_box .public-img {
  overflow: initial;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #cbd0d8;
  background: #f1f3f7;
  margin-left: 0.18rem;
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.6rem;
  /* transition: all 0.4s; */
}
@media (max-width: 767px) {
  .htw .box .bbox .htw_it .gr .right .swiper .htw_it_box .public-img {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.htw .box .bbox .htw_it .gr .right .swiper .htw_it_box .public-img::after {
  content: '';
  position: absolute;
  width: calc(100% + 0.26rem);
  height: calc(100% + 0.28rem);
  left: 49%;
  top: 49%;
  transform: translate(-50%, -50%);
  background: url(../images/home15.png);
  background-size: contain;
  z-index: 10;
  opacity: 0;
  /* transition: all 0.4s; */
}
.htw .box .bbox .htw_it .gr .right .swiper .htw_it_box .public-img img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .htw .box .bbox .htw_it .gr .right .swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.htw .box .bbox .htw_it .gr .right .swiper .swiper-slide-active {
  transform: translate(0.14rem, -0.15rem);
}
@media (max-width: 767px) {
  .htw .box .bbox .htw_it .gr .right .swiper .swiper-slide-active {
    transform: translate(0, 0);
  }
}
.htw .box .bbox .htw_it .gr .right .swiper .swiper-slide-active .htw_it_box .txt h4 {
  font-size: 18px;
  color: #2f318b;
  font-family: 'pop-m';
}
.htw .box .bbox .htw_it .gr .right .swiper .swiper-slide-active .htw_it_box .public-img {
  width: 0.9rem;
  height: 0.9rem;
  background: -webkit-linear-gradient(to right, #33358d, #3876e8);
  background: linear-gradient(to right, #33358d, #3876e8);
}
.htw .box .bbox .htw_it .gr .right .swiper .swiper-slide-active .htw_it_box .public-img::after {
  opacity: 1;
}
.hi-nav1 {
  border-bottom: 1px solid #d7d9df;
  padding: 0 0.8rem;
  position: relative;
}
@media (max-width: 767px) {
  .hi-nav1 {
    padding: 0;
  }
}
.hi-nav1 .g_qie .pub_prev {
  left: 0;
}
.hi-nav1 .g_qie .pub_next {
  right: 0;
}
.hi-nav1 .swiper .swiper-slide {
  width: auto;
  margin-right: 0.9rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .hi-nav1 .swiper .swiper-slide {
    margin-right: 0.4rem;
  }
}
.hi-nav1 .swiper .swiper-slide:last-child {
  margin-right: 0;
}
.hi-nav1 .swiper .swiper-slide .c-text {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #333;
  width: 1.9rem;
  padding: 0 0.1rem 0.14rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .hi-nav1 .swiper .swiper-slide .c-text {
    /* width: 2.8rem; */
  }
}
.hi-nav1 .swiper .swiper-slide .c-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  border-radius: 4px 4px 0 0;
  height: 4px;
  background: linear-gradient(to right, #44499a, #3471e6);
  transition: all 0.4s;
  overflow: hidden;
}
.hi-nav1 .swiper .swiper-slide .c-text .img {
  width: 0.6rem;
  height: 0.6rem;
}
@media (max-width: 767px) {
  .hi-nav1 .swiper .swiper-slide .c-text .img {
    width: 0.85rem;
    height: 0.85rem;
  }
}
.hi-nav1 .swiper .swiper-slide .c-text .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hi-nav1 .swiper .swiper-slide .c-text .txt {
  margin-top: 0.22rem;
  text-align: center;
  line-height: 1;
  color: #787988;
}
@media (max-width: 767px) {
  .hi-nav1 .swiper .swiper-slide .c-text .txt {
    line-height: 1.5;
  }
}
.hi-nav1 .swiper .swiper-slide .c-text .txt h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 3em;
}
@media (max-width: 767px) {
  .hi-nav1 .swiper .swiper-slide .c-text .txt h3 {
    font-size: 13px;
  }
}
.hi-nav1 .swiper .swiper-slide.on .c-text::before,
.hi-nav1 .swiper .swiper-slide:hover .c-text::before {
  width: 100%;
  left: 0;
}
.hi-nav1 .swiper .swiper-slide.on .c-text .txt h3,
.hi-nav1 .swiper .swiper-slide:hover .c-text .txt h3 {
  color: #2f318b;
}
.hi-nav1 .swiper .swiper-scrollbar {
  left: 0;
  bottom: 0;
  width: 100%;
  background: #eee;
  border-radius: 0;
}
.hi-nav1 .swiper .swiper-scrollbar .swiper-scrollbar-drag {
  border-radius: 0;
  background: #005CE6;
}
.hth {
  padding: 1.44rem 0 0.84rem;
}
@media (max-width: 767px) {
  .hth {
    padding: 0.44rem 0 0.84rem;
  }
}
.hth .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .hth .box {
    flex-direction: column;
  }
}
.hth .box .gl {
  padding-right: 0.9rem;
  width: 30%;
}
@media (max-width: 991px) {
  .hth .box .gl {
    width: 100%;
    margin-bottom: 0.6rem;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .hth .box .gl {
    text-align: center;
  }
}
.hth .box .gl .g_title .g_p {
  line-height: 1.5;
}
.hth .box .gl .pub_btn {
  margin-top: 0.9rem;
}
@media (max-width: 991px) {
  .hth .box .gl .pub_btn {
    margin-top: 0.4rem;
  }
}
.hth .box .gr {
  position: relative;
  width: 70%;
}
.hth .box .gr:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .hth .box .gr {
    width: 100%;
  }
}
.hth .box .gr .public-img {
  border-radius: 0.3rem;
}
.hth .box .gr .public-img:before {
  padding-top: 52.18165628%;
}
.hth .box .gr .g_video {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hth .box .gr .g_video .g_video_box {
  cursor: pointer;
  position: relative;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: -webkit-linear-gradient(to right, #33358d, #3876e8);
  background: linear-gradient(to right, #33358d, #3876e8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hth .box .gr .g_video .g_video_box svg,
.hth .box .gr .g_video .g_video_box img {
  width: 17.24137931%;
}
.hth .box .gr .g_video .g_video_box svg path,
.hth .box .gr .g_video .g_video_box img path {
  fill: #fff;
}
.hth .box .gr .g_video .g_video_box::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  animation: moveq 2s infinite linear;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hth .box .gr .g_video p {
  color: #fff;
  margin-top: 0.24rem;
}
@keyframes moveq {
  0% {
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    -webkit-transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
.hfo {
  padding: 0.84rem 0 0.9rem;
}
.hfo .g_title .pub_btn {
  margin-top: 0.38rem;
}
.hfo .box {
  display: flex;
  margin-top: 0.9rem;
}
@media (max-width: 991px) {
  .hfo .box {
    flex-direction: column;
  }
}
.hfo .box .item {
  border: 1px solid #d6d7e1;
  border-radius: 0.2rem;
  width: 50%;
  height: 5rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0.32rem 0.34rem;
  overflow: hidden;
  margin-right: 0.3rem;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .hfo .box .item {
    height: 6rem;
  }
}
@media (max-width: 991px) {
  .hfo .box .item {
    width: 100% !important;
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 767px) {
  .hfo .box .item {
    flex-direction: column;
    height: auto;
  }
}
.hfo .box .item:last-child {
  margin-right: 0;
}
.hfo .box .item.on {
  width: 53.75%;
  flex-shrink: 0;
}
.hfo .box .item.on .imgbj {
  opacity: 1;
}
.hfo .box .item.on .gl {
  margin-left: 0%;
}
.hfo .box .item.on .gr {
  width: 47.72727273%;
}
.hfo .box .item.on .gr .txt_t .time span {
  color: #fff;
}
.hfo .box .item.on .gr .txt_t .time p {
  color: #fff;
}
.hfo .box .item.on .gr .txt_t .g_p {
  color: #fff;
}
.hfo .box .item.on .gr .txt_b p {
  opacity: 0.55;
  color: #fff;
}
.hfo .box .item.on .gr .txt_b i {
  opacity: 1;
}
.hfo .box .item .imgbj {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hfo .box .item .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hfo .box .item .gl {
  flex-shrink: 0;
  transition: all 0.4s;
  margin-left: -100%;
  width: 47.6010101%;
}
@media (max-width: 767px) {
  .hfo .box .item .gl {
    width: 100%;
    margin-left: 0%;
  }
}
.hfo .box .item .gl .public-img {
  transition: all 0s;
  border-radius: 0.1rem;
  height: 100%;
}
.hfo .box .item .gl .public-img:before {
  padding-top: 115.95744681%;
}
.hfo .box .item .gr {
  position: relative;
  z-index: 10;
  width: 100%;
  transition: all 0.4s;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .hfo .box .item .gr {
    width: 100% !important;
    margin-top: 0.4rem;
  }
}
.hfo .box .item .gr .txt_t .time span {
  margin: 0.05rem 0;
  display: block;
  line-height: 1;
  color: #2f318b;
  transition: all 0.4s;
}
.hfo .box .item .gr .txt_t .time p {
  transition: all 0.4s;
  color: #999999;
}
.hfo .box .item .gr .txt_t .g_p {
  margin-top: 0.45rem;
  color: #787988;
}
.hfo .box .item .gr .txt_t .g_p p {
  transition: all 0.4s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
@media (max-width: 1580px) {
  .hfo .box .item .gr .txt_t .g_p p {
    font-size: 18px;
  }
}
.hfo .box .item .gr .txt_b {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hfo .box .item .gr .txt_b {
    margin-top: 0.5rem;
  }
}
.hfo .box .item .gr .txt_b p {
  color: #787988;
  transition: all 0.4s;
}
.hfo .box .item .gr .txt_b i {
  opacity: 0;
  transition: all 0.4s;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.44rem;
  height: 0.44rem;
}
@media (max-width: 767px) {
  .hfo .box .item .gr .txt_b i {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.hfo .box .item .gr .txt_b i svg,
.hfo .box .item .gr .txt_b i img {
  width: 22.72727273%;
  height: auto;
}
.hfo .box .item .gr .txt_b i svg path,
.hfo .box .item .gr .txt_b i img path {
  fill: #2f318b;
}
/* 底部 */
footer {
  padding-top: 1rem;
}
@media screen and (min-width: 1940px) {
  footer {
    background: url(/static/cms/images/home21.png) no-repeat !important;
    background-position: bottom center !important;
    background-size: 100% 91% !important;
  }
}
@media (max-width: 767px) {
  footer {
    background-size: 100% 75% !important;
  }
}
footer .footbox {
  padding: 0 0.14rem 0.14rem;
}
footer .gt {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .gt .g_p {
  margin: auto;
  width: 61.57894737%;
  text-align: center;
  line-height: 1.33;
}
@media (max-width: 991px) {
  footer .gt .g_p {
    width: 90%;
  }
}
@media (max-width: 767px) {
  footer .gt .g_p {
    font-size: 15px;
  }
}
footer .gt .g_p .p1 {
  color: #999999;
}
footer .gt .pub_btn {
  margin-top: 0.38rem;
}
footer .gt .bimg {
  /* width: 6.24rem; */
  margin-top: 3.25rem;
}
@media (max-width: 1260px) {
  footer .gt .bimg {
    margin-top: 1rem;
  }
}
footer .gt .bimg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .gb {
  border-radius: 4px;
  background: #fff;
}
footer .gb a {
  transition: all 0.4s;
}
footer .gb a:hover {
  color: #2f318b !important;
}
footer .gb .container {
  width: 88%;
}
@media (max-width: 1260px) {
  footer .gb .container {
    width: 90%;
  }
}
footer .gb .container .gbt {
  padding: 0.65rem 0 1.25rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  footer .gb .container .gbt {
    flex-direction: column;
    padding: 0.65rem 0;
  }
}
footer .gb .container .gbt .gl {
  width: 20%;
}
@media (max-width: 991px) {
  footer .gb .container .gbt .gl {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
footer .gb .container .gbt .gl .b_logo {
  width: 1.42rem;
  height: auto;
}
footer .gb .container .gbt .gl .gadd {
  padding-left: 6px;
  margin-top: 0.62rem;
}
footer .gb .container .gbt .gl .gadd .p1 {
  margin-bottom: 0.2rem;
  color: #2f318b;
}
@media screen and (max-width: 1440px) {
  footer .gb .container .gbt .gl .gadd .p1 {
    font-size: 24px;
  }
}
footer .gb .container .gbt .gl .gadd .p2 {
  opacity: 0.5;
}
footer .gb .container .gbt .gl .gadd .gemi {
  margin-top: 0.22rem;
  display: flex;
  align-items: center;
}
footer .gb .container .gbt .gl .gadd .gemi i {
  margin-right: 0.1rem;
  flex-shrink: 0;
  display: flex;
  width: 0.18rem;
  height: auto;
}
@media (max-width: 767px) {
  footer .gb .container .gbt .gl .gadd .gemi i {
    width: 0.26rem;
  }
}
footer .gb .container .gbt .gl .gadd .gemi i svg,
footer .gb .container .gbt .gl .gadd .gemi i img {
  width: 100%;
  height: auto;
}
footer .gb .container .gbt .gl .gadd .gemi i svg path,
footer .gb .container .gbt .gl .gadd .gemi i img path {
  fill: #999999;
}
footer .gb .container .gbt .gl .gadd .gemi p {
  color: #999999;
}
footer .gb .container .gbt .gr {
  display: flex;
  justify-content: space-between;
  width: 71.25%;
}
@media (max-width: 991px) {
  footer .gb .container .gbt .gr {
    width: 100%;
  }
}
@media (max-width: 767px) {
  footer .gb .container .gbt .gr {
    flex-wrap: wrap;
  }
}
footer .gb .container .gbt .gr .foot_nav {
  height: 100%;
  width: 16.66666667%;
}
@media (max-width: 767px) {
  footer .gb .container .gbt .gr .foot_nav {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  footer .gb .container .gbt .gr .foot_nav {
    margin: 0 ;
  }
}
footer .gb .container .gbt .gr .foot_nav:last-child {
  margin-right: 0;
  width: 1.5rem;
  flex-shrink: 0;
}
footer .gb .container .gbt .gr .foot_nav .a_tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.15rem;
}
@media (max-width: 767px) {
  footer .gb .container .gbt .gr .foot_nav .a_tit {
    margin-bottom: 0.3rem;
  }
}
footer .gb .container .gbt .gr .foot_nav .a_tit.on svg,
footer .gb .container .gbt .gr .foot_nav .a_tit.on img {
  transform: rotate(90deg);
}
footer .gb .container .gbt .gr .foot_nav .a_tit a {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
}
footer .gb .container .gbt .gr .foot_nav .a_tit a img {
  width: 0.22rem;
  height: auto;
  margin-top: 0.15rem;
}
@media (max-width: 767px) {
  footer .gb .container .gbt .gr .foot_nav .a_tit a img {
    display: none;
  }
}
footer .gb .container .gbt .gr .foot_nav .a_tit > svg,
footer .gb .container .gbt .gr .foot_nav .a_tit > img {
  transition: all 0.4s;
  width: 5px;
  height: auto;
  display: none;
}
@media (max-width: 767px) {
  footer .gb .container .gbt .gr .foot_nav .a_tit > svg,
  footer .gb .container .gbt .gr .foot_nav .a_tit > img {
    display: block;
  }
}
footer .gb .container .gbt .gr .foot_nav .a_tit > svg path,
footer .gb .container .gbt .gr .foot_nav .a_tit > img path {
  fill: #333;
}
footer .gb .container .gbt .gr .foot_nav ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 1440px) {
  footer .gb .container .gbt .gr .foot_nav ul {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  footer .gb .container .gbt .gr .foot_nav ul {
    display: none;
    padding-bottom: 0.2rem;
    height: auto;
    font-size: 14px;
  }
}
footer .gb .container .gbt .gr .foot_nav ul li {
  margin-bottom: 0.1rem;
}
@media (max-width: 767px) {
  footer .gb .container .gbt .gr .foot_nav ul li {
    margin-bottom: 0.2rem;
  }
}
footer .gb .container .gbt .gr .foot_nav ul li a {
  line-height: 1.125;
  color: #777777;
}
footer .gb .container .gbb {
  border-top: 1px solid #f0f0f0;
  padding: 0.31rem 0 0.31rem 0.12rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1260px) {
  footer .gb .container .gbb {
    flex-direction: column;
    align-items: flex-start;
  }
}
footer .gb .container .gbb .gl {
  color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  footer .gb .container .gbb .gl {
    flex-wrap: wrap;
  }
}
footer .gb .container .gbb .gl a {
  color: rgba(0, 0, 0, 0.5);
  margin-left: 0.16rem;
}
@media (max-width: 767px) {
  footer .gb .container .gbb .gl a {
    margin: 0 0.2rem 0 0;
  }
}
footer .gb .container .gbb .gr a {
  line-height: 1.2;
  color: #999999;
  margin-left: 0.15rem;
  padding-left: 0.15rem;
  border-left: 1px solid #f0f0f0;
}
@media (max-width: 1260px) {
  footer .gb .container .gbb .gr a {
    margin: 0 0.16rem 0 0;
    padding: 0;
    border: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path {
  stroke: #2f318b !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg circle,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg circle {
  stroke: #2f318b !important;
}
/* 产品 */
.sub_banner {
  height: 7rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1260px) {
  .sub_banner {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .sub_banner {
    margin-top: 60px;
  }
}
.sub_banner .mob_pc {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sub_banner .mob_pc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub_banner .sub_banner_txt {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}
.sub_banner .sub_banner_txt .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.sub_banner .sub_banner_txt .container .ban_l {
  width: 100%;
}
.sub_banner .sub_banner_txt .container .ban_l .tit {
  text-align: center;
}
.sub_banner .sub_banner_txt .container .ban_l .tit h1,
.sub_banner .sub_banner_txt .container .ban_l .tit h2 {
  line-height: 1.25;
}
.sub_banner .sub_banner_txt .container .ban_l .tit span {
  line-height: 1.3;
}
.sub_banner .sub_banner_txt .container .ban_l .sub_banner_p {
  margin-top: 0.6rem;
}
.sub_banner .sub_banner_txt .container .ban_l .sub_banner_p p {
  opacity: 0.6;
}
.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.16rem 0;
}
.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: #333; */
}
.crumbs p:last-child svg,
.crumbs p:last-child i {
  display: none;
}
.crumbs p svg {
  width: 5px;
  height: auto;
  margin-right: 0.16rem;
}
.crumbs p svg path {
  fill: #666;
}
.crumbs p i {
  font-style: initial;
  opacity: 0.7;
  color: #999999;
  margin-right: 0.12rem;
}
.proon_box {
  padding: 0.8rem 0 0.9rem;
}
.proon_box .g_t form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.proon_box .g_t form .search_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .proon_box .g_t form .search_box {
    /* flex-direction: column; */
  }
}
.proon_box .g_t form .search_box input {
  padding: 0 0.3rem;
  width: 4.04rem;
  color: #333;
  height: 0.5rem;
  background: #f7f7fb;
  border-radius: 100px;
  border: 1px solid #eaecf5;
  color: #020435;
}
@media (max-width: 767px) {
  .proon_box .g_t form .search_box input {
    width: 100%;
    height: 0.8rem;
    /* margin-bottom: 0.2rem; */
  }
}
.proon_box .g_t form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.3rem;
  padding: 0 0.32rem;
  height: 0.5rem;
}
@media (max-width: 767px) {
  .proon_box .g_t form .search_box button {
    height: 0.8rem;
  }
}
.proon_box .g_t form .search_box button svg {
  width: 100%;
  height: auto;
}
.proon_box .g_t form .search_box button svg path {
  fill: #9a9a9a;
}
.proon_box .g_t form .p1 {
  margin-top: 0.28rem;
  color: #999;
}
.proon_box .g_t form .p1 span {
  color: #2f318b;
}
.proon_box .proon_con .box {
  margin-top: 0.74rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eaeaeb;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .proon_box .proon_con .box {
    flex-direction: column;
  }
}
.proon_box .proon_con .box .gl {
  width: 21.25%;
}
@media (max-width: 767px) {
  .proon_box .proon_con .box .gl {
    width: 100%;
  }
}
.proon_box .proon_con .box .gl ul li {
  border-bottom: 1px solid #ededed;
  padding-bottom: 0.28rem;
}
.proon_box .proon_con .box .gl ul li:first-child .g_xia {
  display: block;
}
.proon_box .proon_con .box .gl ul li:last-child {
  border: none;
}
.proon_box .proon_con .box .gl ul li.on .g_top .g_top_l p {
  color: #2f318b;
}
.proon_box .proon_con .box .gl ul li.on .g_top .g_gb svg {
  transform: rotate(180deg);
}
.proon_box .proon_con .box .gl ul li.on .g_top .g_gb svg path {
  fill: #2f318b;
}
.proon_box .proon_con .box .gl ul li .g_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.28rem 0 0 0;
  position: relative;
  cursor: pointer;
}
.proon_box .proon_con .box .gl ul li .g_top .g_top_l {
  width: 88%;
}
.proon_box .proon_con .box .gl ul li .g_top .g_top_l p {
  transition: all 0.4s;
}
.proon_box .proon_con .box .gl ul li .g_top .g_gb {
  position: relative;
  transition: 0.4s all;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.1rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .proon_box .proon_con .box .gl ul li .g_top .g_gb {
    width: 16px;
  }
}
.proon_box .proon_con .box .gl ul li .g_top .g_gb svg {
  transition: all 0.4s;
  width: 14px;
  height: auto;
}
.proon_box .proon_con .box .gl ul li .g_top .g_gb svg path {
  transition: all 0.4s;
  fill: #333;
}
.proon_box .proon_con .box .gl ul li .g_xia {
  margin-top: 0.2rem;
  display: none;
}
.proon_box .proon_con .box .gl ul li .g_xia .g_bjq {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.proon_box .proon_con .box .gl ul li .g_xia .g_bjq .nav_two_tit2 {
  transition: all 0.4s;
  color: #666666;
}
.proon_box .proon_con .box .gl ul li .g_xia .g_bjq .nav_two_tit2:hover a,
.proon_box .proon_con .box .gl ul li .g_xia .g_bjq .nav_two_tit2.on a {
  color: #2f318b !important;
}
.proon_box .proon_con .box .gl ul li .g_xia .g_bjq .nav_two_tit2:last-child {
  margin-bottom: 0;
}
.proon_box .proon_con .box .gr {
  width: 70%;
}
@media (max-width: 767px) {
  .proon_box .proon_con .box .gr {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.proon_box .proon_con .box .gr .g_p {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #ececec;
  margin-bottom: 0.2rem;
}
@media (max-width: 767px) {
  .proon_box .proon_con .box .gr .g_p {
    padding-bottom: 0.4rem;
    margin-bottom: 0.4rem;
  }
}
.proon_box .proon_con .box .gr .gr_nav {
  display: flex;
  flex-wrap: wrap;
}
.proon_box .proon_con .box .gr .gr_nav a {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #000;
  color: #000;
  margin: 0 0.1rem 0.1rem 0;
  padding: 0 0.3rem;
  height: 0.6rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .proon_box .proon_con .box .gr .gr_nav a {
    height: auto;
    padding: 0.1rem 0.3rem;
    line-height: 1.3;
  }
}
.proon_box .proon_con .box .gr .gr_nav a.on {
  background: #2e388f;
  color: #fff;
  border-color: #2e388f;
}
.proon_box .proon_con .box .gr .bbox {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.1rem;
  margin-top: 0.6rem;
}
.proon_box .proon_con .box .gr .bbox .item {
  width: 33.33%;
  margin-bottom: 0.3rem;
  padding: 0 0.1rem;
}
@media (max-width: 991px) {
  .proon_box .proon_con .box .gr .bbox .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .proon_box .proon_con .box .gr .bbox .item {
    /* width: 100%; */
  }
}
.proon_box .proon_con .box .gr .bbox .item .itembox {
  border-radius: 0.2rem;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  background: #edf0f8;
  position: relative;
}
.proon_box .proon_con .box .gr .bbox .item .itembox:hover .imgbj {
  opacity: 1;
}
.proon_box .proon_con .box .gr .bbox .item .itembox:hover .gnr .ba p {
  color: #2d30c2;
}
.proon_box .proon_con .box .gr .bbox .item .itembox:hover .public-img img {
  transform: scale(1.05);
}
.proon_box .proon_con .box .gr .bbox .item .itembox .imgbj {
  opacity: 0;
  transition: all 0.4s;
  position: absolute;
  width: 100%;
  height: 100%;
}
.proon_box .proon_con .box .gr .bbox .item .itembox .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proon_box .proon_con .box .gr .bbox .item .itembox .gnr {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  padding: 0.36rem 0.5rem;
}
@media (max-width: 767px) {
  .proon_box .proon_con .box .gr .bbox .item .itembox .gnr {
    padding: 0.36rem 0.1rem;
  }
}
.proon_box .proon_con .box .gr .bbox .item .itembox .gnr .txt {
  text-align: center;
}
.proon_box .proon_con .box .gr .bbox .item .itembox .gnr .txt p {
  color: #2d30c2;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.proon_box .proon_con .box .gr .bbox .item .itembox .gnr .txt h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.proon_box .proon_con .box .gr .bbox .item .itembox .gnr .public-img {
  margin: 0.6rem 0.3rem;
}
@media (max-width: 767px) {
  .proon_box .proon_con .box .gr .bbox .item .itembox .gnr .public-img {
    margin: 0.6rem 0;
  }
}
.proon_box .proon_con .box .gr .bbox .item .itembox .gnr .public-img:before {
  padding-top: 76%;
}
.proon_box .proon_con .box .gr .bbox .item .itembox .gnr .public-img img {
  object-fit: contain;
}
.proon_box .proon_con .box .gr .bbox .item .itembox .gnr .ba {
  display: flex;
  justify-content: center;
  align-items: center;
}
.proon_box .proon_con .box .gr .bbox .item .itembox .gnr .ba p {
  transition: all 0.4s;
}
.proon_box .proon_con .box .gr .bbox .item .itembox .gnr .ba i {
  margin-left: 0.12rem;
  flex-shrink: 0;
  display: flex;
  width: 0.12rem;
  height: auto;
}
@media (max-width: 767px) {
  .proon_box .proon_con .box .gr .bbox .item .itembox .gnr .ba i {
    width: 0.2rem;
  }
}
.proon_box .proon_con .box .gr .bbox .item .itembox .gnr .ba i svg,
.proon_box .proon_con .box .gr .bbox .item .itembox .gnr .ba i img {
  width: 100%;
  height: auto;
}
.proon_box .proon_con .box .gr .bbox .item .itembox .gnr .ba i svg path,
.proon_box .proon_con .box .gr .bbox .item .itembox .gnr .ba i img path {
  fill: #2d30c2;
}
.page {
  margin-top: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page a {
  height: 0.5rem;
  width: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 3px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: none;
  border: 1px solid #999999;
  color: #999;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page a {
    font-size: 0.28rem;
    height: 0.7rem;
    min-width: 0.7rem;
  }
}
.page a.prev img,
.page a.prev svg {
  transform: rotate(180deg);
}
.page a:hover {
  color: #fff;
  border-color: transparent;
  background: -webkit-linear-gradient(to right, #33358d, #3876e8);
  background: linear-gradient(to right, #33358d, #3876e8);
}
.page a:hover p {
  color: #fff;
}
.page a:hover svg path {
  fill: #fff;
}
.page a img,
.page a svg {
  width: 7px;
  height: auto;
}
@media (max-width: 767px) {
  .page a img,
  .page a svg {
    width: 6px;
  }
}
.page a .img2 {
  display: none;
}
.page a svg path {
  fill: #999999;
}
.page .active {
  color: #fff;
  border-color: transparent;
  background: -webkit-linear-gradient(to right, #33358d, #3876e8);
  background: linear-gradient(to right, #33358d, #3876e8);
}
.page .active p {
  color: #fff;
}
.page > p {
  color: #999;
  margin: 0 0.1rem;
}
@media (max-width: 767px) {
  .page > p {
    display: none;
  }
}
.page input {
  margin: 0 0.1rem;
  border: 1px solid #999999;
  width: 0.5rem;
  height: 0.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .page input {
    display: none;
  }
}
/* 产品详情 */
.pinfo_ban {
  position: relative;
  height: 7rem;
}
@media (max-width: 767px) {
  .pinfo_ban {
    height: auto;
    padding: 1rem 0;
  }
}
.pinfo_ban .crumbs_box {
  width: 100%;
  position: absolute;
  top: 80px;
  left: 0;
}
@media screen and (max-width: 1440px) {
  .pinfo_ban .crumbs_box {
    top: 60px;
  }
}
@media (max-width: 767px) {
  .pinfo_ban .crumbs_box {
    margin-top: 0.3rem;
    position: initial;
  }
}
.pinfo_ban .pinfo_ban_box {
  padding-top: 80px;
  height: 100%;
}
@media screen and (max-width: 1440px) {
  .pinfo_ban .pinfo_ban_box {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .pinfo_ban .pinfo_ban_box {
    padding: 0.5rem 0;
  }
}
.pinfo_ban .pinfo_ban_box .container {
  height: 100%;
}
.pinfo_ban .pinfo_ban_box .container .box {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .pinfo_ban .pinfo_ban_box .container .box {
    flex-direction: column-reverse;
  }
}
.pinfo_ban .pinfo_ban_box .container .box .gl {
  width: 50%;
}
@media (max-width: 767px) {
  .pinfo_ban .pinfo_ban_box .container .box .gl {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.pinfo_ban .pinfo_ban_box .container .box .gl .txt p {
  color: #2d30c2;
}
.pinfo_ban .pinfo_ban_box .container .box .gl .txt h1 {
  line-height: 1.2;
}
.pinfo_ban .pinfo_ban_box .container .box .gl .g_a {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
}
.pinfo_ban .pinfo_ban_box .container .box .gl .g_a a {
  justify-content: center;
  height: 0.56rem;
  min-width: 2.04rem;
  margin-right: 0.1rem;
}
@media (max-width: 767px) {
  .pinfo_ban .pinfo_ban_box .container .box .gl .g_a a {
    height: 0.8rem;
    padding: 0 0.4rem;
  }
}
.pinfo_ban .pinfo_ban_box .container .box .gr {
  margin-right: 0.45rem;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .pinfo_ban .pinfo_ban_box .container .box .gr {
    width: 80%;
    margin: 0 auto 0.5rem;
  }
}
.pinfo_ban .pinfo_ban_box .container .box .gr img {
  max-height: 100%;
  width: 5.64rem;
  height: auto;
}
@media (max-width: 767px) {
  .pinfo_ban .pinfo_ban_box .container .box .gr img {
    width: 100%;
  }
}
.pinfo .pinfo_nav {
  transition: all 0.4s;
  top: 80px;
  z-index: 100;
  background: #fff;
  position: sticky;
  position: -webkit-sticky;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 1440px) {
  .pinfo .pinfo_nav {
    top: 60px;
  }
}
.pinfo .pinfo_nav .container {
  position: relative;
}
.pinfo .pinfo_nav .container .g_back {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100% + 0.3rem);
  white-space: nowrap;
}
.pinfo .pinfo_nav .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pinfo .pinfo_nav .box .gl {
  height: 1rem;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .pinfo .pinfo_nav .box .gl {
    padding: 0 5%;
    overflow: auto;
    justify-content: center;
    width: 100%;
  }
}
.pinfo .pinfo_nav .box .gl a {
  height: 100%;
  margin: 0 0.48rem 0 0;
  padding: 0 0.05rem;
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991px) {
  .pinfo .pinfo_nav .box .gl a {
    margin: 0 0.2rem 0 0;
  }
}
@media (max-width: 767px) {
  .pinfo .pinfo_nav .box .gl a {
    white-space: nowrap;
    margin: 0 0.4rem;
  }
}
.pinfo .pinfo_nav .box .gl a.on {
  font-weight: bold;
  background-image: linear-gradient(90deg, #2c2f82 0%, #346ee2 100%), linear-gradient(#2c2f82, #346ee2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pinfo .pinfo_nav .box .gl a.on::after {
  width: 100%;
}
.pinfo .pinfo_nav .box .gl a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  border-radius: 4px 4px 0 0;
  height: 4px;
  background: linear-gradient(to right, #44499a, #3471e6);
  transition: all 0.4s;
  overflow: hidden;
}
@media (max-width: 767px) {
  .pinfo .pinfo_nav .box .gl a::after {
    border-bottom: 0;
    height: 1px;
  }
}
@media (max-width: 991px) {
  .pinfo .pinfo_nav .box .gr {
    display: none;
  }
}
.pinfo .pinfo_nav .box .gr .g_a {
  display: flex;
  flex-wrap: wrap;
}
.pinfo .pinfo_nav .box .gr .g_a a {
  justify-content: center;
  height: 0.56rem;
  min-width: 2.04rem;
  margin-right: 0.1rem;
}
.pinfoon {
  padding: 0.95rem 0 1.22rem;
}
.pinfoon .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0.54rem 1.6rem 0;
}
@media (max-width: 1260px) {
  .pinfoon .box {
    margin: 0.54rem 0 0;
  }
}
.pinfoon .box .item {
  width: 33.33%;
}
@media (max-width: 991px) {
  .pinfoon .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .pinfoon .box .item {
    width: 100%;
  }
}
.pinfoon .box .item:nth-child(3n) .itembox::after {
  display: none;
}
@media (max-width: 991px) {
  .pinfoon .box .item:nth-child(3n) .itembox::after {
    display: block;
  }
}
@media (max-width: 991px) {
  .pinfoon .box .item:nth-child(2n) .itembox::after {
    display: none;
  }
}
.pinfoon .box .item:hover .itembox::after {
  opacity: 0;
}
.pinfoon .box .item:hover .itembox .imgbj {
  opacity: 1;
}
.pinfoon .box .item:hover .itembox .txt span {
  color: #fff;
}
.pinfoon .box .item:hover .itembox .txt .g_p {
  color: #fff;
}
.pinfoon .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  border-bottom: 1px solid #eaeaec;
}
.pinfoon .box .item .itembox::after {
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% - 0.96rem);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: #eaeaec;
}
@media (max-width: 767px) {
  .pinfoon .box .item .itembox::after {
    display: none !important;
  }
}
.pinfoon .box .item .itembox .imgbj {
  border-radius: 0.2rem;
  overflow: hidden;
  pointer-events: none;
  transition: all 0.4s;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: calc(100% + 0.44rem);
  margin-top: -0.22rem;
}
.pinfoon .box .item .itembox .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pinfoon .box .item .itembox .txt {
  position: relative;
  z-index: 10;
  padding: 0.46rem 0.48rem;
}
.pinfoon .box .item .itembox .txt span {
  color: #3033b9;
  line-height: 0.8;
  transition: all 0.4s;
}
.pinfoon .box .item .itembox .txt .g_p {
  color: #363636;
  margin-top: 0.26rem;
}
.pinfoon .box .item .itembox .txt .g_p p {
  transition: all 0.4s;
  line-height: 1.875;
}
.pinfotw {
  background: #f7f9fb;
  padding: 1rem 0;
}
.pinfotw .box {
  margin-top: 0.42rem;
}
@media (max-width: 767px) {
  .pinfotw .box {
    overflow: auto;
  }
}
.pinfotw .box table {
  border-radius: 0.2rem;
  background: #fff;
  width: 100%;
}
@media (max-width: 767px) {
  .pinfotw .box table {
    width: 500px;
  }
}
.pinfotw .box table p {
  padding: 0.3rem 0.75rem;
}
.pinfotw .box table .p2 {
  color: #777777;
}
.pinfotw .box table tr:last-child td {
  border-bottom: none !important;
}
.pinfotw .box table tr td:first-child {
  width: 5.84rem;
  border-bottom: 1px solid #ededed;
  border-right: 1px solid #ededed;
}
@media (max-width: 991px) {
  .pinfotw .box table tr td:first-child {
    width: 40%;
  }
}
.pinfotw .box table tr td:last-child {
  border-bottom: 1px solid #ededed;
}
.pinfoth {
  padding: 0.94rem 0 0.85rem;
}
.pinfoth .box {
  margin-top: 0.35rem;
}
.pinfoth .box .swiper .public-img {
  transition: all 0.4s;
  transform: scale(0.9);
  border-radius: 0.2rem;
}
.pinfoth .box .swiper .public-img:before {
  padding-top: 50%;
}
.pinfoth .box .swiper .swiper-slide-active .public-img {
  border-radius: 0.4rem;
  transform: scale(1);
}
.pinfoth .box .pinfoth_b {
  max-width: calc(100vw/1.99);
  margin: 0.4rem auto 0;
}
@media (max-width: 991px) {
  .pinfoth .box .pinfoth_b {
    max-width: calc(100vw/1.2);
  }
}
.pinfoth .box .pinfoth_b .g_txt {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.pinfoth .box .pinfoth_b .g_txt .gl {
  width: 75%;
  position: relative;
}
@media (max-width: 767px) {
  .pinfoth .box .pinfoth_b .g_txt .gl {
    width: 100%;
  }
}
.pinfoth .box .pinfoth_b .g_txt .gl .item {
  position: absolute;
  top: 0.2rem;
  opacity: 0;
  transition: all 0.4s;
  left: 0;
}
.pinfoth .box .pinfoth_b .g_txt .gl .item.on {
  position: relative;
  opacity: 1;
  top: 0;
}
.pinfoth .box .pinfoth_b .g_txt .gl h3 {
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.pinfoth .box .pinfoth_b .g_txt .gl p {
  color: #666666;
  line-height: 1.625;
}
.pinfoth .box .pinfoth_b .g_txt .gr {
  padding-bottom: 0.1rem;
  width: 13.54166667%;
}
@media (max-width: 1260px) {
  .pinfoth .box .pinfoth_b .g_txt .gr {
    width: 20.83333333%;
  }
}
@media (max-width: 767px) {
  .pinfoth .box .pinfoth_b .g_txt .gr {
    display: none;
  }
}
.pinfoth .box .pinfoth_b .g_txt .gr .g_qie {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.pinfoth .box .pinfoth_b .g_txt .gr .g_qie .pub_nav {
  margin-left: 0.1rem;
  position: initial;
  transform: translateY(0%);
}
.g_qie2 .pub_nav {
  border-color: #cccccc;
}
.g_qie2 .pub_nav:hover {
  border-color: transparent;
  background: -webkit-linear-gradient(to right, #33358d, #3876e8);
  background: linear-gradient(to right, #33358d, #3876e8);
}
.g_qie2 .pub_nav svg path {
  fill: #000;
}
.pinfofo {
  padding: 0.85rem 0 0.9rem;
}
.pinfofo .box {
  margin-top: 0.55rem;
}
.pinfofo .box .swiper {
  padding-bottom: 0.74rem;
}
.pinfofo .box .pinfofo_box {
  display: block;
  position: relative;
}
.pinfofo .box .pinfofo_box:hover .img .img1 {
  opacity: 0;
}
.pinfofo .box .pinfofo_box:hover .img .img2 {
  opacity: 1;
}
.pinfofo .box .pinfofo_box:hover .txt .txt_box h3 {
  color: #fff;
}
.pinfofo .box .pinfofo_box:hover .txt .txt_b .ba p {
  color: #fff;
}
.pinfofo .box .pinfofo_box:hover .txt .txt_b .ba i svg path {
  fill: #fff;
}
.pinfofo .box .pinfofo_box .img {
  position: relative;
}
.pinfofo .box .pinfofo_box .img .img2 {
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.pinfofo .box .pinfofo_box .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0.55rem 0.6rem 0.48rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pinfofo .box .pinfofo_box .txt .txt_box {
  width: 80%;
}
.pinfofo .box .pinfofo_box .txt .txt_box h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 4.5em;
}
.pinfofo .box .pinfofo_box .txt .txt_b {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.pinfofo .box .pinfofo_box .txt .txt_b .ba {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pinfofo .box .pinfofo_box .txt .txt_b .ba p {
  transition: all 0.4s;
}
.pinfofo .box .pinfofo_box .txt .txt_b .ba i {
  margin-left: 0.12rem;
  flex-shrink: 0;
  display: flex;
  width: 0.12rem;
  height: auto;
}
@media (max-width: 767px) {
  .pinfofo .box .pinfofo_box .txt .txt_b .ba i {
    width: 0.2rem;
  }
}
.pinfofo .box .pinfofo_box .txt .txt_b .ba i svg,
.pinfofo .box .pinfofo_box .txt .txt_b .ba i img {
  width: 100%;
  height: auto;
}
.pinfofo .box .pinfofo_box .txt .txt_b .ba i svg path,
.pinfofo .box .pinfofo_box .txt .txt_b .ba i img path {
  transition: all 0.4s;
  fill: #2d30c2;
}
.pinfofo .box .pinfofo_box .txt .txt_b .imgicon img {
  width: 0.56rem;
  height: auto;
}
.pinfofo .box .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 0;
}
.pinfofo .box .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
  width: 0.3rem;
  height: 4px;
  vertical-align: top;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 4px;
}
@media (max-width: 767px) {
  .pinfofo .box .swiper-pagination .swiper-pagination-bullet {
    margin: 0 2px;
    width: 0.3rem;
  }
}
.pinfofo .box .swiper-pagination .swiper-pagination-bullet div {
  height: 100%;
  background: #2f318b;
  width: 0;
}
.pinfofo .box .swiper-pagination .swiper-pagination-bullet-active {
  width: 1rem;
}
.pinfofo .box .swiper-pagination .swiper-pagination-bullet-active div {
  transition: all 5s;
  width: 100%;
}
.man {
  padding: 0 0 0.9rem;
}
.man .man_nav {
  margin-top: 0.5rem;
  height: 0.8rem;
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #ededed;
}
@media (max-width: 767px) {
  .man .man_nav {
    padding: 0 5%;
    overflow: auto;
    justify-content: flex-start;
  }
}
.man .man_nav a {
  height: 100%;
  margin: 0 0.48rem 0 0;
  padding: 0 0.05rem;
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991px) {
  .man .man_nav a {
    margin: 0 0.2rem 0 0;
  }
}
@media (max-width: 767px) {
  .man .man_nav a {
    white-space: nowrap;
  }
}
.man .man_nav a.on {
  font-weight: bold;
  background-image: linear-gradient(90deg, #2c2f82 0%, #346ee2 100%), linear-gradient(#2c2f82, #346ee2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.man .man_nav a.on::after {
  width: 100%;
}
.man .man_nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  border-radius: 4px 4px 0 0;
  height: 4px;
  background: linear-gradient(to right, #44499a, #3471e6);
  transition: all 0.4s;
  overflow: hidden;
}
@media (max-width: 767px) {
  .man .man_nav a::after {
    border-bottom: 0;
    height: 1px;
  }
}
.man .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem;
  margin-top: 0.8rem;
}
.man .box .item {
  width: 33.33%;
  margin-bottom: 0.6rem;
  padding: 0 0.15rem;
}
@media (max-width: 991px) {
  .man .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .man .box .item {
    width: 100%;
  }
}
.man .box .item .pinfofo_box {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.man .box .item .pinfofo_box:hover {
  z-index: 10;
}
.man .box .item .pinfofo_box:hover .img {
  filter: drop-shadow(0 0.46rem 1.28rem rgba(38, 62, 183, 0.26));
}
.man .box .item .pinfofo_box:hover .img .img1 {
  opacity: 0;
}
.man .box .item .pinfofo_box:hover .img .img2 {
  opacity: 1;
}
.man .box .item .pinfofo_box:hover .txt .txt_box h3 {
  color: #fff;
}
.man .box .item .pinfofo_box:hover .txt .txt_b .ba p {
  color: #fff;
}
.man .box .item .pinfofo_box:hover .txt .txt_b .ba i svg path {
  fill: #fff;
}
.man .box .item .pinfofo_box .img {
  transition: all 0.4s;
  position: relative;
}
.man .box .item .pinfofo_box .img .img2 {
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.man .box .item .pinfofo_box .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0.55rem 0.6rem 0.48rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.man .box .item .pinfofo_box .txt .txt_box {
  width: 80%;
}
.man .box .item .pinfofo_box .txt .txt_box h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 4.5em;
}
.man .box .item .pinfofo_box .txt .txt_b {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.man .box .item .pinfofo_box .txt .txt_b .ba {
  display: flex;
  justify-content: center;
  align-items: center;
}
.man .box .item .pinfofo_box .txt .txt_b .ba p {
  transition: all 0.4s;
}
.man .box .item .pinfofo_box .txt .txt_b .ba i {
  margin-left: 0.12rem;
  flex-shrink: 0;
  display: flex;
  width: 0.12rem;
  height: auto;
}
@media (max-width: 767px) {
  .man .box .item .pinfofo_box .txt .txt_b .ba i {
    width: 0.2rem;
  }
}
.man .box .item .pinfofo_box .txt .txt_b .ba i svg,
.man .box .item .pinfofo_box .txt .txt_b .ba i img {
  width: 100%;
  height: auto;
}
.man .box .item .pinfofo_box .txt .txt_b .ba i svg path,
.man .box .item .pinfofo_box .txt .txt_b .ba i img path {
  transition: all 0.4s;
  fill: #2d30c2;
}
.man .box .item .pinfofo_box .txt .txt_b .imgicon img {
  width: 0.56rem;
  height: auto;
}
.man .page {
  margin-top: 0;
}
/* 服务与支持-联系我们 */
.contact {
  z-index: 10;
  overflow: hidden;
  position: relative;
}
.contact .imgpng .img1 {
  pointer-events: none;
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  width: 6.5rem;
}
.contact .imgpng .img2 {
  pointer-events: none;
  position: absolute;
  top: 4.2rem;
  left: -42%;
  width: 17.6rem;
}
.contact .box {
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contact .box {
    flex-direction: column;
    padding: 0.6rem 0;
  }
}
.contact .box .gl {
  width: 40%;
}
@media (max-width: 767px) {
  .contact .box .gl {
    width: 100%;
  }
}
.contact .box .gl .txt {
  margin-bottom: 0.33rem;
}
.contact .box .gl .txt h1 {
  margin-bottom: 0.32rem;
}
.contact .box .gl .txt p {
  color: #787988;
}
.contact .box .gl img {
  width: 0.4rem;
  height: auto;
}
@media (max-width: 767px) {
  .contact .box .gl img {
    width: 0.6rem;
  }
}
.contact .box .gr {
  width: 50%;
}
@media (max-width: 767px) {
  .contact .box .gr {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.contact .box .gr .item {
  margin-bottom: 0.38rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px dashed #e7e8f0;
}
.contact .box .gr .item:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact .box .gr .item .tit p {
  color: #787988;
}
.contact .box .gr .item .g_it {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.24rem;
}
.contact .box .gr .item .g_it .gadd {
  margin-bottom: 0.1rem;
  width: 46.25%;
  padding-right: 0.2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 1260px) {
  .contact .box .gr .item .g_it .gadd {
    width: 100%;
  }
}
.contact .box .gr .item .g_it .gadd i {
  margin-right: 0.12rem;
  background: #f1f1fa;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.42rem;
  height: 0.42rem;
}
@media (max-width: 1260px) {
  .contact .box .gr .item .g_it .gadd i {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.contact .box .gr .item .g_it .gadd i svg,
.contact .box .gr .item .g_it .gadd i img {
  width: 47.61904762%;
  height: auto;
}
.contact .box .gr .item .g_it .gadd i svg path,
.contact .box .gr .item .g_it .gadd i img path {
  fill: #2f318b;
}
.contact .img {
  display: flex;
}
.contact .img img {
  border: 1px solid #fff;
  border-radius: 0.4rem;
  width: 100%;
  height: auto;
}
.footer2 .footbox {
  margin-top: -2.3rem;
  padding-top: 2rem;
}
/* 关于欧陆通-走进欧陆通 */
.walk {
  position: relative;
  z-index: 10;
  border-radius: 0 0 2rem 0;
}
@media (max-width: 767px) {
  .walk {
    border-radius: 0 0 2rem 2rem;
  }
}
.walk .walon .box {
  padding: 0.76rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .walk .walon .box {
    flex-direction: column;
  }
}
.walk .walon .box .gl {
  width: 48.125%;
  padding: 0.32rem 0 0;
}
@media (max-width: 991px) {
  .walk .walon .box .gl {
    width: 100%;
  }
}
.walk .walon .box .gl .txt_box {
  margin-top: 0.45rem;
}
.walk .walon .box .gl .txt_box .txt_it {
  margin-bottom: 0.24rem;
}
.walk .walon .box .gl .txt_box .txt_it p {
  margin-top: 0.05rem;
  color: #666;
}
.walk .walon .box .gl .hon_b_box {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .walk .walon .box .gl .hon_b_box {
    margin-top: 0.4rem;
  }
}
.walk .walon .box .gl .hon_b_box .item {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid #e6e7ed;
  padding: 0.5rem 0 0.55rem;
}
@media (max-width: 991px) {
  .walk .walon .box .gl .hon_b_box .item {
    padding: 0.25rem 0;
    margin-bottom: 0.3rem;
  }
}
.walk .walon .box .gl .hon_b_box .item:nth-last-child(1),
.walk .walon .box .gl .hon_b_box .item:nth-last-child(2) {
  border: none;
}
.walk .walon .box .gl .hon_b_box .item .item_t {
  align-items: flex-end;
  display: inline-flex;
}
.walk .walon .box .gl .hon_b_box .item .item_t p {
  line-height: 0.8;
  font-size: 0.72rem;
  font-weight: bold;
  background-image: linear-gradient(90deg, #2c2f82 0%, #346ee2 100%), linear-gradient(#2c2f82, #346ee2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.walk .walon .box .gl .hon_b_box .item .item_t .span1 {
  font-size: 0.72rem;
  margin-left: 0;
  line-height: 0.8;
  color: #346ee2;
}
.walk .walon .box .gl .hon_b_box .item .item_t span {
  color: #2f318b;
  margin-left: 0.07rem;
  line-height: 1;
}
.walk .walon .box .gl .hon_b_box .item .item_b {
  text-align: center;
  margin-top: 0.25rem;
}
.walk .walon .box .gl .hon_b_box .item .item_b p {
  color: #666666;
}
.walk .walon .box .gr {
  display: flex;
  justify-content: flex-end;
  position: sticky;
  position: -webkit-sticky;
  top: 20px;
  width: 50%;
}
@media (max-width: 991px) {
  .walk .walon .box .gr {
    width: 100%;
  }
}
.walk .walon .box .gr .public-img {
  border-radius: 50%;
  width: 84.5%;
}
@media (max-width: 991px) {
  .walk .walon .box .gr .public-img {
    margin: auto;
  }
}
.waltw {
  background: #f4f6fa;
  padding: 2.95rem 0 1rem;
  margin-top: -2rem;
}
.waltw .box {
  margin-top: 0.52rem;
  display: flex;
}
@media (max-width: 991px) {
  .waltw .box {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .waltw .box {
    flex-direction: row;
    overflow: auto;
  }
}
.waltw .box .item {
  width: 50%;
  height: 6.2rem;
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
  margin-right: 0.6rem;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .waltw .box .item {
    height: auto;
    width: 100% !important;
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 767px) {
  .waltw .box .item {
    width: 87% !important;
  }
}
.waltw .box .item:last-child {
  margin-right: 0;
}
.waltw .box .item.on {
  width: 60%;
  flex-shrink: 0;
}
.waltw .box .item.on .txt {
  /* background: url(../images/about4.png) no-repeat;
					background-size: contain;
					background-position: bottom center ; */
}
.waltw .box .item.on .txt::after {
  opacity: 0;
}
.waltw .box .item.on .txt .gxs {
  opacity: 0;
}
.waltw .box .item.on .txt .gyr {
  opacity: 1;
}
.waltw .box .item .img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .waltw .box .item .img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.waltw .box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.waltw .box .item .txt {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .waltw .box .item .txt {
    position: initial;
  }
}
.waltw .box .item .txt::after {
  opacity: 1;
  transition: all 0.4;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/walkInto6.png) no-repeat;
  background-size: cover;
}
.waltw .box .item .txt .gxs {
  position: relative;
  z-index: 10;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  background: rgba(2, 54, 130, 0.3);
  padding: 0.32rem 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .waltw .box .item .txt .gxs {
    display: none;
  }
}
.waltw .box .item .txt .gxs h3 {
  line-height: 1.25;
  text-align: center;
}
.waltw .box .item .txt .gyr {
  z-index: 10;
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0.32rem 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .waltw .box .item .txt .gyr {
    display: block;
    position: initial;
  }
}
.waltw .box .item .txt .gyr .txt_box {
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}
.waltw .box .item .txt .gyr .txt_box .txt_con {
  width: 4.2rem;
  margin-top: 0.45rem;
}
@media (max-width: 1580px) {
  .waltw .box .item .txt .gyr .txt_box .txt_con {
    width: 6.8rem;
  }
}
@media (max-width: 1260px) {
  .waltw .box .item .txt .gyr .txt_box .txt_con {
    width: 100%;
  }
}
.waltw .box .item .txt .gyr .txt_box .txt_con .txt_it {
  margin-bottom: 0.24rem;
}
.waltw .box .item .txt .gyr .txt_box .txt_con .txt_it p {
  color: #fff;
}
.walth {
  padding: 0.9rem 0 0.82rem;
}
.walth .g_title h2 {
  color: #fff;
}
.walth .box {
  position: relative;
  margin-top: 0.5rem;
}
.walth .box .swiper {
  padding-top: 2rem;
}
@media (max-width: 767px) {
  .walth .box .swiper {
    padding-top: 0.7rem;
  }
}
.walth .box .swiper .walth_box {
  color: #fff;
  display: flex;
  justify-content: flex-start;
}
.walth .box .swiper .walth_box .gl {
  margin: 0.4rem 0.28rem 0 0;
  position: relative;
}
@media (max-width: 1580px) {
  .walth .box .swiper .walth_box .gl {
    margin: 0.6rem 0.28rem 0 0;
  }
}
@media (max-width: 767px) {
  .walth .box .swiper .walth_box .gl {
    margin: 0.58rem 0.28rem 0 0;
  }
}
.walth .box .swiper .walth_box .gl .i1 {
  position: absolute;
  width: 1px;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
}
.walth .box .swiper .walth_box .gl .i2 {
  position: absolute;
  width: 1px;
  height: 0.3rem;
  left: 0;
  top: 0;
  z-index: 2;
  background: #fff;
}
.walth .box .swiper .walth_box .gr .time {
  margin: 0.1rem 0;
}
.walth .box .swiper .walth_box .gr .time p {
  line-height: 1;
  margin-bottom: 0.35rem;
}
.walth .box .swiper .walth_box .gr .txt {
  margin-top: 0.1rem;
}
.walth .box .swiper .walth_box .gr .txt .g_it {
  margin-bottom: 0.25rem;
}
.walth .box .swiper .walth_box .gr .txt .g_it:last-child {
  margin-bottom: 0;
}
.walth .box .swiper .walth_box .gr .txt .g_it p {
  line-height: 1.625;
}
.walth .box .swiper .swiper-slide {
  transition: all 0.4s;
}
.walth .box .swiper .swiper-slide.on1 {
  transform: translateY(-0.66rem);
}
.walth .box .swiper .swiper-slide.on2 {
  transform: translateY(-1.32rem);
}
.walth .box .swiper .swiper-slide.on3 {
  transform: translateY(-1.98rem);
}
.walth .box .swiper .swiper-slide.on4 {
  transform: translateY(-1.98rem);
}
.walth .box .g_qie {
  margin-top: 0.3rem;
  display: flex;
  justify-content: center;
}
.walth .box .g_qie .pub_nav {
  margin: 0 4px;
  position: initial;
  transform: translateY(0%);
  border-color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .walth .box .g_qie .pub_nav {
    width: 1rem;
    height: 1rem;
  }
}
.walth .box .g_qie .pub_nav:hover {
  background: #fff;
}
.walth .box .g_qie .pub_nav:hover svg path {
  fill: #3134b9;
}
.walth .box .g_qie .pub_nav svg path {
  fill: #fff;
}
.walfo {
  padding: 1rem 0;
}
.walfo .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .walfo .box {
    flex-direction: column;
  }
}
.walfo .box .gl {
  border-radius: 0.2rem;
  overflow: hidden;
  width: 50%;
}
@media (max-width: 767px) {
  .walfo .box .gl {
    width: 100%;
  }
}
.walfo .box .gl:hover img {
  transform: scale(1.05);
}
.walfo .box .gl .public-img:before {
  padding-top: 69.75%;
}
.walfo .box .gr {
  width: 50%;
  padding: 0 0 0 0.8rem;
}
@media (max-width: 767px) {
  .walfo .box .gr {
    width: 100%;
    padding: 0.4rem 0 0;
    text-align: center;
  }
}
.walfo .box .gr .txt p {
  color: #666;
  margin-top: 0.24rem;
}
.walfo .box .gr .pub_btn {
  margin-top: 0.75rem;
}
@media (max-width: 767px) {
  .walfo .box .gr .pub_btn {
    margin-top: 0.4rem;
  }
}
/* 关于欧陆通-可持续发展 */
.suson {
  margin-top: -0.16rem;
}
.suson .item {
  display: block;
  padding: 1rem 0;
}
.suson .item:nth-child(2n) {
  background: #f4f6fa;
}
.suson .item:nth-child(2n) .box {
  flex-direction: row-reverse;
}
.suson .item:nth-child(2n) .box .gl {
  padding: 0.3rem 0.35rem 0 1.6rem;
}
@media (max-width: 991px) {
  .suson .item:nth-child(2n) .box .gl {
    padding: 0.3rem 0.35rem 0 0.3rem;
  }
}
.suson .item .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1260px) {
  .suson .item .box {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .suson .item .box {
    flex-direction: column-reverse !important;
  }
}
.suson .item .box .gr {
  border-radius: 0.2rem;
  overflow: hidden;
  width: 45%;
}
@media (max-width: 767px) {
  .suson .item .box .gr {
    width: 100%;
  }
}
.suson .item .box .gr:hover img {
  transform: scale(1.05);
}
.suson .item .box .gr .public-img:before {
  padding-top: 64.30555556%;
}
.suson .item .box .gl {
  width: 55%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  padding: 0.3rem 1.8rem 0 0;
}
@media (max-width: 991px) {
  .suson .item .box .gl {
    padding: 0.3rem 0.5rem 0 0;
  }
}
@media (max-width: 767px) {
  .suson .item .box .gl {
    width: 100%;
    padding: 0.4rem 0 0 !important;
  }
}
.suson .item .box .gl .txt h3 {
  line-height: 1.2;
}
.suson .item .box .gl .txt .p1 {
  color: #3033b9;
  margin-top: 0.3rem;
}
.suson .item .box .gl .txt .p2 {
  margin-top: 0.18rem;
  color: #666;
}
.suson .item .box .gl .pub_btn {
  margin-top: 0.25rem;
}
.sustw {
  padding: 0.6rem 0 0.9rem;
}
.sustw .box {
  position: relative;
}
.sustw .box .public-img {
  border-radius: 0.2rem;
}
.sustw .box .public-img:before {
  padding-top: 39.75%;
}
@media (max-width: 991px) {
  .sustw .box .public-img:before {
    padding-top: 60%;
  }
}
@media (max-width: 767px) {
  .sustw .box .public-img:before {
    padding-top: 100%;
  }
}
.sustw .box .bbox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.6rem 0.3rem 0;
}
@media (max-width: 991px) {
  .sustw .box .bbox {
    padding: 1rem 0.3rem 0;
  }
}
.sustw .box .bbox .hon_b_box {
  margin-top: 0.64rem;
  display: flex;
}
@media (max-width: 991px) {
  .sustw .box .bbox .hon_b_box {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.sustw .box .bbox .hon_b_box .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.68rem;
}
@media (max-width: 991px) {
  .sustw .box .bbox .hon_b_box .item {
    width: 50%;
    margin-bottom: 0.6rem;
  }
}
@media (max-width: 767px) {
  .sustw .box .bbox .hon_b_box .item {
    padding: 0 0.2rem;
  }
}
.sustw .box .bbox .hon_b_box .item:last-child::after {
  display: none;
}
.sustw .box .bbox .hon_b_box .item::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 0.86rem;
  background: rgba(255, 255, 255, 0.2);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .sustw .box .bbox .hon_b_box .item::after {
    display: none;
  }
}
.sustw .box .bbox .hon_b_box .item .item_t {
  align-items: flex-end;
  display: inline-flex;
}
.sustw .box .bbox .hon_b_box .item .item_t p {
  line-height: 0.8;
  font-size: 0.72rem;
  font-weight: bold;
}
.sustw .box .bbox .hon_b_box .item .item_t .span1 {
  font-size: 0.72rem;
  margin-left: 0;
  line-height: 0.8;
}
.sustw .box .bbox .hon_b_box .item .item_t span {
  margin-left: 0.07rem;
  line-height: 1;
}
.sustw .box .bbox .hon_b_box .item .item_b {
  text-align: center;
  margin-top: 0.16rem;
}
nav.show_nav2 {
  background: #fff;
}
.sinfo {
  padding: 0.9rem 0;
}
.sinfo .box {
  color: #000;
}
.sinfo .box h1 {
  line-height: 1.1;
}
.sinfo .box p {
  line-height: 1.875;
  color: #666666;
}
.sinfo .box img {
  border-radius: 0.2rem;
}
/* 关于欧陆通-新闻聚合页 */
.newson {
  padding: 80px 0 0;
}
.newson .g_hot {
  margin-top: 1.1rem;
  text-align: center;
}
@media (max-width: 767px) {
  .newson .g_hot {
    margin-top: 0.6rem;
  }
}
.newson .g_hot h2 {
  font-size: 0.72rem;
  color: #2f318b;
  line-height: 1.1;
}
.newson .box {
  margin-top: 1.75rem;
}
@media (max-width: 767px) {
  .newson .box {
    margin-top: 1rem;
  }
}
.newson .box .swiper {
  padding-bottom: 0.4rem;
}
.newson .box .swiper .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 0;
}
.newson .box .swiper .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
  width: 0.3rem;
  height: 4px;
  vertical-align: top;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 4px;
}
@media (max-width: 767px) {
  .newson .box .swiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0 2px;
    width: 0.3rem;
  }
}
.newson .box .swiper .swiper-pagination .swiper-pagination-bullet div {
  height: 100%;
  background: #2f318b;
  width: 0;
}
.newson .box .swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 1rem;
}
.newson .box .swiper .swiper-pagination .swiper-pagination-bullet-active div {
  transition: all 5s;
  width: 100%;
}
.newson .box .newson_box {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .newson .box .newson_box {
    flex-direction: column;
  }
}
.newson .box .newson_box .gl {
  width: 50%;
}
@media (max-width: 991px) {
  .newson .box .newson_box .gl {
    width: 100%;
  }
}
.newson .box .newson_box .gl .public-img {
  border-radius: 0.2rem;
}
.newson .box .newson_box .gl .public-img:before {
  padding-top: 56.5%;
}
.newson .box .newson_box .gr {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  background: #fff url(../images/news2.jpg) no-repeat;
  background-size: cover;
  border-radius: 0.2rem;
  padding: 0.65rem 0.75rem 0.6rem 0.6rem;
}
@media (max-width: 991px) {
  .newson .box .newson_box .gr {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .newson .box .newson_box .gr {
    padding: 0.4rem;
  }
}
@media (max-width: 991px) {
  .newson .box .newson_box .gr .txt {
    margin-bottom: 0.3rem;
  }
}
.newson .box .newson_box .gr .txt h3 {
  line-height: 1.33;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 3.99em;
}
.newson .box .newson_box .gr .g_b {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.newson .box .newson_box .gr .g_b .gdate {
  display: flex;
}
.newson .box .newson_box .gr .g_b .gdate .p1 {
  color: #999999;
}
.newson .box .newson_box .gr .g_b .gdate .p2 {
  margin-left: 0.26rem;
  line-height: 0.8;
  color: #2f318b;
}
@media (max-width: 767px) {
  .newson .box .newson_box .gr .g_b .gdate .p2 {
    padding-top: 3px;
  }
}
.newstw_nav {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #e6e6e6;
}
@media (max-width: 767px) {
  .newstw_nav {
    padding: 0 5%;
    overflow: auto;
    justify-content: flex-start;
  }
}
.newstw_nav a {
  height: 100%;
  margin: 0 0.48rem 0 0;
  padding: 0 0.05rem 0.24rem;
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991px) {
  .newstw_nav a {
    margin: 0 0.2rem 0 0;
  }
}
@media (max-width: 767px) {
  .newstw_nav a {
    white-space: nowrap;
  }
}
.newstw_nav a.on {
  /* font-weight: bold; */
  background-image: linear-gradient(90deg, #2c2f82 0%, #346ee2 100%), linear-gradient(#2c2f82, #346ee2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.newstw_nav a.on::after {
  width: 100%;
}
.newstw_nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  border-radius: 4px 4px 0 0;
  height: 4px;
  background: linear-gradient(to right, #44499a, #3471e6);
  transition: all 0.4s;
  overflow: hidden;
}
@media (max-width: 767px) {
  .newstw_nav a::after {
    border-bottom: 0;
    height: 1px;
  }
}
.newstw {
  padding: 1rem 0 0.9rem;
}
.newstw .box {
  margin-top: 0.6rem;
}
.newstw .box .item {
  overflow: hidden;
  margin-bottom: 0.3rem;
  background: #fff;
  padding: 0.5rem;
  padding-left: 0.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 0.2rem;
  position: relative;
}
@media (max-width: 991px) {
  .newstw .box .item {
    flex-direction: column-reverse;
    padding: 0.5rem;
  }
}
.newstw .box .item:hover::after {
  opacity: 1;
}
.newstw .box .item:hover .gl .gdate p {
  color: #fff;
}
.newstw .box .item:hover .gl .txt h3 {
  color: #fff;
}
.newstw .box .item:hover img {
  transform: scale(1.05);
}
.newstw .box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/news10.jpg) no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  transition: all 0.4s;
  opacity: 0;
}
.newstw .box .item .gl {
  position: relative;
  z-index: 10;
  width: 60.40268456%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .newstw .box .item .gl {
    width: 100%;
    margin-top: 0.4rem;
  }
}
@media (max-width: 767px) {
  .newstw .box .item .gl {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .newstw .box .item .gl .gdate {
    margin-bottom: 0.2rem;
    display: flex;
  }
}
.newstw .box .item .gl .gdate .p1 {
  color: #999999;
}
.newstw .box .item .gl .gdate .p2 {
  margin-bottom: 0.24rem;
  line-height: 0.8;
  color: #2f318b;
}
@media (max-width: 767px) {
  .newstw .box .item .gl .gdate .p2 {
    line-height: 1.2;
    margin-right: 0.2rem;
  }
}
.newstw .box .item .gl .txt {
  width: 71.11111111%;
}
@media (max-width: 767px) {
  .newstw .box .item .gl .txt {
    width: 100%;
  }
}
.newstw .box .item .gl .txt h3 {
  line-height: 1.46666667;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 4.4em;
}
.newstw .box .item .gl .txt .pub_btn {
  margin-top: 0.5rem;
}
.newstw .box .item .gr {
  position: relative;
  z-index: 10;
  border-radius: 0.2rem;
  overflow: hidden;
  width: 28.8590604%;
}
@media (max-width: 991px) {
  .newstw .box .item .gr {
    width: 100%;
  }
}
.newstw .box .item .gr .public-img:before {
  padding-top: 56.51162791%;
}
.newstw .page {
  margin-top: 0.6rem;
}
/* 欧陆通-新闻详情页 */
.crumbs_box2 .container {
  max-width: 1300px;
}
.ninfoon {
  padding: 0.95rem 0 0.88rem;
}
.ninfoon .container {
  max-width: 1300px;
}
.ninfoon .container .g_tit h1 {
  margin-bottom: 0.55rem;
  line-height: 1.35;
}
.ninfoon .container .g_tit .g_lab {
  padding: 0.31rem 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
@media (max-width: 991px) {
  .ninfoon .container .g_tit .g_lab {
    flex-direction: column;
  }
}
.ninfoon .container .g_tit .g_lab .gl {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .ninfoon .container .g_tit .g_lab .gl {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.2rem;
  }
}
.ninfoon .container .g_tit .g_lab .gl p {
  padding-right: 0.26rem;
  margin-right: 0.26rem;
  line-height: 1;
  color: #2f3590;
  border-right: 1px solid #2f3590;
}
@media (max-width: 991px) {
  .ninfoon .container .g_tit .g_lab .gl p {
    margin-bottom: 0.1rem;
    border: none;
  }
}
.ninfoon .container .g_tit .g_lab .gl p:last-child {
  border: none;
}
.ninfoon .container .g_tit .g_lab .gr {
  display: flex;
  align-items: center;
}
.ninfoon .container .g_tit .g_lab .gr p {
  color: #2f3590;
}
.ninfoon .container .g_tit .g_lab .gr i {
  margin-left: 0.14rem;
  border-radius: 50%;
  background: #f4f4fb;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.56rem;
  height: 0.56rem;
}
.ninfoon .container .g_tit .g_lab .gr i svg,
.ninfoon .container .g_tit .g_lab .gr i img {
  width: 39.28571429%;
  height: auto;
}
.ninfoon .container .g_tit .g_lab .gr i svg path,
.ninfoon .container .g_tit .g_lab .gr i img path {
  fill: #2f318b;
}
.ninfoon .container .public-content {
  padding: 0.55rem 0 0;
  color: #000;
}
.ninfoon .container .public-content h1 {
  line-height: 1.1;
}
.ninfoon .container .public-content p {
  line-height: 1.875;
  color: #666666;
}
.ninfoon .container .public-content img {
  border-radius: 0.2rem;
}
.g_pag {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 0.55rem;
  margin-top: 0.7rem;
  border-top: 1px solid #f5f5f5;
}
.g_pag .fh {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: 1px solid #dbdbdb;
  display: flex;
  justify-content: center;
  align-items: center;
}
.g_pag .fh:hover p {
  color: #2f318b;
}
.g_pag .fh p {
  color: #222;
  transition: all 0.4s;
}
.g_pag .fh svg {
  width: 16px;
  height: 16px;
}
.g_pag .fh svg path {
  fill: #000;
}
.g_pag .pag_l,
.g_pag .pag_r {
  display: flex;
  flex-direction: column;
  width: 37%;
}
@media (max-width: 767px) {
  .g_pag .pag_l,
  .g_pag .pag_r {
    width: 30%;
  }
}
.g_pag .pag_l:hover span,
.g_pag .pag_r:hover span {
  /* color: @color1; */
}
.g_pag .pag_l:hover p,
.g_pag .pag_r:hover p {
  color: #2f318b;
}
.g_pag .pag_l span,
.g_pag .pag_r span {
  flex-shrink: 0;
  color: #666;
  transition: all 0.4s;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}
.g_pag .pag_l p,
.g_pag .pag_r p {
  transition: all 0.4s;
  width: 100%;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
}
.g_pag .pag_r {
  text-align: right;
  justify-content: flex-end;
}
.news_rel {
  padding: 0.8rem 0 0.9rem;
  background: #fafbfd;
}
.news_rel .container {
  max-width: 1300px;
}
.news_rel .container .g_tit {
  padding-bottom: 0.42rem;
  border-bottom: 1px solid #eff0f2;
  display: flex;
  justify-content: space-between;
}
.news_rel .container .box {
  margin-top: 0.7rem;
}
.news_rel .container .box .swiper {
  padding-bottom: 0.4rem;
}
.news_rel .container .box .news_rel_box {
  position: relative;
}
.news_rel .container .box .news_rel_box:hover .public-img img {
  transform: scale(1.05);
}
.news_rel .container .box .news_rel_box:hover .txt h3 {
  color: #2f318b !important;
}
.news_rel .container .box .news_rel_box::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  right: -60px;
  top: 0;
  background: #edeeef;
}
@media (max-width: 991px) {
  .news_rel .container .box .news_rel_box::after {
    right: -30px;
  }
}
.news_rel .container .box .news_rel_box .time span {
  color: #999;
}
.news_rel .container .box .news_rel_box .public-img {
  border-radius: 0.2rem;
  margin-top: 0.24rem;
}
.news_rel .container .box .news_rel_box .public-img:before {
  padding-top: 56.53409091%;
}
.news_rel .container .box .news_rel_box .txt {
  margin-top: 0.25rem;
}
.news_rel .container .box .news_rel_box .txt h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 4.5em;
}
.swip2_pag_two {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 0 !important;
}
.swip2_pag_two .swiper-pagination-bullet {
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
  width: 0.3rem;
  height: 4px;
  vertical-align: top;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 4px;
}
@media (max-width: 767px) {
  .swip2_pag_two .swiper-pagination-bullet {
    margin: 0 2px;
    width: 0.3rem;
  }
}
.swip2_pag_two .swiper-pagination-bullet div {
  height: 100%;
  background: #2f318b;
  width: 0;
}
.swip2_pag_two .swiper-pagination-bullet-active {
  width: 1rem;
}
.swip2_pag_two .swiper-pagination-bullet-active div {
  transition: all 5s;
  width: 100%;
}
/* 网站地图 */
.site {
  padding: 0.35rem 0 0.1rem;
}
.site .box {
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
}
@media (max-width: 991px) {
  .site .box {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .site .box {
    flex-wrap: wrap;
  }
}
.site .box .site_nav {
  height: 100%;
  width: 15.35087719%;
}
@media (max-width: 991px) {
  .site .box .site_nav {
    width: 33.33% !important;
    padding-right: 0.2rem;
  }
}
@media (max-width: 767px) {
  .site .box .site_nav {
    margin: 0 ;
    width: 100% !important;
  }
}
.site .box .site_nav:last-child {
  margin-right: 0;
  width: 1.5rem;
  flex-shrink: 0;
}
.site .box .site_nav .a_tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}
.site .box .site_nav .a_tit.on svg,
.site .box .site_nav .a_tit.on img {
  transform: rotate(90deg);
}
.site .box .site_nav .a_tit a {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
}
.site .box .site_nav .a_tit a img {
  width: 0.22rem;
  height: auto;
  margin-top: 0.3rem;
}
@media (max-width: 767px) {
  .site .box .site_nav .a_tit a img {
    display: none;
  }
}
.site .box .site_nav .a_tit > svg,
.site .box .site_nav .a_tit > img {
  transition: all 0.4s;
  width: 5px;
  height: auto;
  display: none;
}
@media (max-width: 767px) {
  .site .box .site_nav .a_tit > svg,
  .site .box .site_nav .a_tit > img {
    display: block;
  }
}
.site .box .site_nav .a_tit > svg path,
.site .box .site_nav .a_tit > img path {
  fill: #333;
}
.site .box .site_nav ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1.9rem;
}
@media (max-width: 991px) {
  .site .box .site_nav ul {
    max-width: initial;
    padding-bottom: 0.2rem;
  }
}
.site .box .site_nav ul li {
  margin-bottom: 0.1rem;
}
.site .box .site_nav ul li a {
  line-height: 1.125;
  color: #777777;
}
.pri {
  padding: 0.35rem 0 0.9rem;
}
.pri .g_lab {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.46rem;
  padding: 0.28rem 0;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
@media (max-width: 767px) {
  .pri .g_lab {
    flex-direction: column;
    padding: 0.28rem 0 0.18rem;
  }
}
.pri .g_lab p {
  padding: 0 0.2rem;
  border-right: 1px solid #ededed;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1;
}
@media (max-width: 767px) {
  .pri .g_lab p {
    border: none;
    margin-bottom: 0.2rem;
  }
}
.pri .box .public-content {
  padding: 0.55rem 0 0;
  color: #000;
}
.pri .box .public-content h1 {
  line-height: 1.1;
}
.pri .box .public-content p {
  line-height: 1.875;
  color: #666666;
}
.pri .box .public-content a {
  color: #1b21d6;
  text-decoration: underline;
  font-style: italic;
}
.pri .box .public-content img {
  border-radius: 0.2rem;
}
/* 其他页面-免责声明 */
.g404 {
  padding-top: 80px;
  min-height: 100vh;
}
@media screen and (max-width: 1440px) {
  .g404 {
    padding-top: 60px;
  }
}
.g404 .box {
  padding: 1.35rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.g404 .box img {
  width: 11.54rem;
  margin-bottom: 0.52rem;
}
.g404 .box p {
  text-align: center;
}
.g404 .box .p2 {
  margin-top: 0.3rem;
  color: #666;
}
/* 其他页面-搜索结果 */
.seaon {
  position: relative;
  padding-top: 80px;
}
@media screen and (max-width: 1440px) {
  .seaon {
    padding-top: 60px;
  }
}
.seaon .seaon_box {
  margin-top: 0.55rem;
}
.seaon .seaon_box .box .g_t {
  margin-top: 0.4rem;
}
.seaon .seaon_box .box .g_t form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.seaon .seaon_box .box .g_t form .search_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .seaon .seaon_box .box .g_t form .search_box {
    /* flex-direction: column; */
  }
}
.seaon .seaon_box .box .g_t form .search_box input {
  padding: 0 0.3rem;
  width: 4.04rem;
  color: #333;
  height: 0.6rem;
  background: rgba(244, 245, 250, 0.5);
  border-radius: 100px;
  border: 1px solid #eaecf5;
  color: #020435;
}
@media (max-width: 767px) {
  .seaon .seaon_box .box .g_t form .search_box input {
    width: 100%;
    height: 0.8rem;
    /* margin-bottom: 0.2rem; */
  }
}
.seaon .seaon_box .box .g_t form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.3rem;
  padding: 0 0.4rem;
  height: 0.6rem;
}
@media (max-width: 767px) {
  .seaon .seaon_box .box .g_t form .search_box button {
    height: 0.8rem;
  }
}
.seaon .seaon_box .box .g_t form .search_box button svg {
  width: 100%;
  height: auto;
}
.seaon .seaon_box .box .g_t form .search_box button svg path {
  fill: #9a9a9a;
}
.seaon .seaon_box .box .g_t form .p1 {
  margin-top: 0.28rem;
  color: #999;
}
.seaon .seaon_box .box .g_t form .p1 span {
  color: #2f318b;
}
.seaon .seaon_box .box .seaon_nav {
  margin-top: 0.7rem;
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #e6e6e6;
}
@media (max-width: 767px) {
  .seaon .seaon_box .box .seaon_nav {
    padding: 0 5%;
    overflow: auto;
    justify-content: flex-start;
  }
}
.seaon .seaon_box .box .seaon_nav a {
  height: 100%;
  margin: 0 0.48rem 0 0;
  padding: 0 0.05rem 0.24rem;
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991px) {
  .seaon .seaon_box .box .seaon_nav a {
    margin: 0 0.2rem 0 0;
  }
}
@media (max-width: 767px) {
  .seaon .seaon_box .box .seaon_nav a {
    white-space: nowrap;
  }
}
.seaon .seaon_box .box .seaon_nav a.on {
  font-weight: bold;
  background-image: linear-gradient(90deg, #2c2f82 0%, #346ee2 100%), linear-gradient(#2c2f82, #346ee2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.seaon .seaon_box .box .seaon_nav a.on::after {
  width: 100%;
}
.seaon .seaon_box .box .seaon_nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  border-radius: 4px 4px 0 0;
  height: 4px;
  background: linear-gradient(to right, #44499a, #3471e6);
  transition: all 0.4s;
  overflow: hidden;
}
@media (max-width: 767px) {
  .seaon .seaon_box .box .seaon_nav a::after {
    border-bottom: 0;
    height: 1px;
  }
}
.seaon .seaon_box .box .seaon_con {
  margin-top: 0.8rem;
}
.seaon .seaon_box .box .seaon_con .gite {
  margin-bottom: 0.5rem;
}
.seaon .seaon_box .box .seaon_con .seatit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f8fb;
  border-radius: 100px;
  margin-bottom: 0.6rem;
  padding: 0.24rem 0.19rem 0.24rem 0.56rem;
}
@media (max-width: 767px) {
  .seaon .seaon_box .box .seaon_con .seatit {
    border-radius: 0.2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.seaon .seaon_box .box .seaon_con .seatit .gl {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .seaon .seaon_box .box .seaon_con .seatit .gl {
    margin-bottom: 0.2rem;
  }
}
.seaon .seaon_box .box .seaon_con .seatit .gl span {
  padding-left: 0.24rem;
  margin-left: 0.24rem;
  border-left: 1px solid #e6e7f0;
  line-height: 1;
  color: #2d30c2;
}
.seaon .seaon_box .box .seaon_con .seatit .gr .pub_btn {
  background: none;
  border: none;
  padding: 0;
  height: auto;
}
.seaon .seaon_box .box .seaon_con .seatit .gr .pub_btn:hover p {
  color: #2f318b;
}
.seaon .seaon_box .box .seaon_con .seatit .gr .pub_btn:hover i {
  background: #2f318b;
}
.seaon .seaon_box .box .seaon_con .seatit .gr .pub_btn:hover i svg path {
  fill: #fff;
}
.seaon .seaon_box .box .seaon_con .seatit .gr .pub_btn i {
  margin-left: 0.16rem;
}
.seaon .seaon_box .box .seaon_not {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: ;
  text-align: center;
  margin-top: 0.35rem;
}
.seaon .seaon_box .box .seaon_not p {
  color: #999;
}
.seaon .seaon_box .box .seaon_not img {
  width: 3.79rem;
  height: auto;
  padding: 0.95rem 0 0.1rem;
}
.seaon_pri .bbox {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.27rem;
  margin-top: 0.6rem;
}
.seaon_pri .bbox .item {
  width: 25%;
  margin-bottom: 0.5rem;
  padding: 0 0.27rem;
}
@media (max-width: 991px) {
  .seaon_pri .bbox .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .seaon_pri .bbox .item {
    width: 100%;
  }
}
.seaon_pri .bbox .item .itembox {
  border-radius: 0.2rem;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  background: #edf0f8;
  position: relative;
}
.seaon_pri .bbox .item .itembox:hover .imgbj {
  opacity: 1;
}
.seaon_pri .bbox .item .itembox:hover .gnr .ba p {
  color: #2d30c2;
}
.seaon_pri .bbox .item .itembox:hover .public-img img {
  transform: scale(1.05);
}
.seaon_pri .bbox .item .itembox .imgbj {
  opacity: 0;
  transition: all 0.4s;
  position: absolute;
  width: 100%;
  height: 100%;
}
.seaon_pri .bbox .item .itembox .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seaon_pri .bbox .item .itembox .gnr {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  padding: 0.36rem 0.5rem;
}
.seaon_pri .bbox .item .itembox .gnr .txt {
  text-align: center;
}
.seaon_pri .bbox .item .itembox .gnr .txt p {
  color: #2d30c2;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.seaon_pri .bbox .item .itembox .gnr .txt h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.seaon_pri .bbox .item .itembox .gnr .public-img {
  margin: 0.6rem 0.3rem;
}
@media (max-width: 767px) {
  .seaon_pri .bbox .item .itembox .gnr .public-img {
    margin: 0.6rem 0.5rem;
  }
}
.seaon_pri .bbox .item .itembox .gnr .public-img:before {
  padding-top: 76%;
}
.seaon_pri .bbox .item .itembox .gnr .public-img img {
  object-fit: contain;
}
.seaon_pri .bbox .item .itembox .gnr .ba {
  display: flex;
  justify-content: center;
  align-items: center;
}
.seaon_pri .bbox .item .itembox .gnr .ba p {
  transition: all 0.4s;
}
.seaon_pri .bbox .item .itembox .gnr .ba i {
  margin-left: 0.12rem;
  flex-shrink: 0;
  display: flex;
  width: 0.12rem;
  height: auto;
}
@media (max-width: 767px) {
  .seaon_pri .bbox .item .itembox .gnr .ba i {
    width: 0.2rem;
  }
}
.seaon_pri .bbox .item .itembox .gnr .ba i svg,
.seaon_pri .bbox .item .itembox .gnr .ba i img {
  width: 100%;
  height: auto;
}
.seaon_pri .bbox .item .itembox .gnr .ba i svg path,
.seaon_pri .bbox .item .itembox .gnr .ba i img path {
  fill: #2d30c2;
}
.seaon_news .bbox {
  margin-top: 0.6rem;
}
.seaon_news .bbox .item {
  overflow: hidden;
  margin-bottom: 0.3rem;
  background: #fff;
  padding: 0.5rem;
  padding-left: 0.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 0.2rem;
  position: relative;
}
@media (max-width: 991px) {
  .seaon_news .bbox .item {
    flex-direction: column-reverse;
    padding: 0.5rem;
  }
}
@media (max-width: 767px) {
  .seaon_news .bbox .item {
    padding: 0;
  }
}
.seaon_news .bbox .item:hover::after {
  opacity: 1;
}
.seaon_news .bbox .item:hover .gl .gdate p {
  color: #fff;
}
.seaon_news .bbox .item:hover .gl .txt h3 {
  color: #fff;
}
.seaon_news .bbox .item:hover img {
  transform: scale(1.05);
}
.seaon_news .bbox .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/news10.jpg) no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  transition: all 0.4s;
  opacity: 0;
}
.seaon_news .bbox .item .gl {
  position: relative;
  z-index: 10;
  width: 60.40268456%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .seaon_news .bbox .item .gl {
    width: 100%;
    margin-top: 0.4rem;
  }
}
@media (max-width: 767px) {
  .seaon_news .bbox .item .gl {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .seaon_news .bbox .item .gl .gdate {
    margin-bottom: 0.2rem;
    display: flex;
  }
}
.seaon_news .bbox .item .gl .gdate .p1 {
  color: #999999;
}
.seaon_news .bbox .item .gl .gdate .p2 {
  margin-bottom: 0.24rem;
  line-height: 0.8;
  color: #2f318b;
}
@media (max-width: 767px) {
  .seaon_news .bbox .item .gl .gdate .p2 {
    line-height: 1.2;
    margin-right: 0.2rem;
  }
}
.seaon_news .bbox .item .gl .txt {
  width: 71.11111111%;
}
@media (max-width: 767px) {
  .seaon_news .bbox .item .gl .txt {
    width: 100%;
  }
}
.seaon_news .bbox .item .gl .txt h3 {
  line-height: 1.46666667;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 4.4em;
}
.seaon_news .bbox .item .gl .txt .pub_btn {
  margin-top: 0.5rem;
}
.seaon_news .bbox .item .gr {
  position: relative;
  z-index: 10;
  border-radius: 0.2rem;
  overflow: hidden;
  width: 28.8590604%;
}
@media (max-width: 991px) {
  .seaon_news .bbox .item .gr {
    width: 100%;
  }
}
.seaon_news .bbox .item .gr .public-img:before {
  padding-top: 56.51162791%;
}
.seaon_pro .bbox {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem;
  margin-top: 0.8rem;
}
.seaon_pro .bbox .item {
  width: 33.33%;
  margin-bottom: 0.6rem;
  padding: 0 0.15rem;
}
@media (max-width: 991px) {
  .seaon_pro .bbox .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .seaon_pro .bbox .item {
    width: 100%;
  }
}
.seaon_pro .bbox .item .pinfofo_box {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.seaon_pro .bbox .item .pinfofo_box:hover {
  z-index: 10;
}
.seaon_pro .bbox .item .pinfofo_box:hover .img {
  filter: drop-shadow(0 0.46rem 1.28rem rgba(38, 62, 183, 0.26));
}
.seaon_pro .bbox .item .pinfofo_box:hover .img .img1 {
  opacity: 0;
}
.seaon_pro .bbox .item .pinfofo_box:hover .img .img2 {
  opacity: 1;
}
.seaon_pro .bbox .item .pinfofo_box:hover .txt .txt_box h3 {
  color: #fff;
}
.seaon_pro .bbox .item .pinfofo_box:hover .txt .txt_b .ba p {
  color: #fff;
}
.seaon_pro .bbox .item .pinfofo_box:hover .txt .txt_b .ba i svg path {
  fill: #fff;
}
.seaon_pro .bbox .item .pinfofo_box .img {
  transition: all 0.4s;
  position: relative;
}
.seaon_pro .bbox .item .pinfofo_box .img .img2 {
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.seaon_pro .bbox .item .pinfofo_box .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0.55rem 0.6rem 0.48rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.seaon_pro .bbox .item .pinfofo_box .txt .txt_box {
  width: 80%;
}
.seaon_pro .bbox .item .pinfofo_box .txt .txt_box h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 4.5em;
}
.seaon_pro .bbox .item .pinfofo_box .txt .txt_b {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.seaon_pro .bbox .item .pinfofo_box .txt .txt_b .ba {
  display: flex;
  justify-content: center;
  align-items: center;
}
.seaon_pro .bbox .item .pinfofo_box .txt .txt_b .ba p {
  transition: all 0.4s;
}
.seaon_pro .bbox .item .pinfofo_box .txt .txt_b .ba i {
  margin-left: 0.12rem;
  flex-shrink: 0;
  display: flex;
  width: 0.12rem;
  height: auto;
}
@media (max-width: 767px) {
  .seaon_pro .bbox .item .pinfofo_box .txt .txt_b .ba i {
    width: 0.2rem;
  }
}
.seaon_pro .bbox .item .pinfofo_box .txt .txt_b .ba i svg,
.seaon_pro .bbox .item .pinfofo_box .txt .txt_b .ba i img {
  width: 100%;
  height: auto;
}
.seaon_pro .bbox .item .pinfofo_box .txt .txt_b .ba i svg path,
.seaon_pro .bbox .item .pinfofo_box .txt .txt_b .ba i img path {
  transition: all 0.4s;
  fill: #2d30c2;
}
.seaon_pro .bbox .item .pinfofo_box .txt .txt_b .imgicon img {
  width: 0.56rem;
  height: auto;
}
.invon {
  background: #f7f9fb;
}
.invon .invon_box {
  padding: 0.78rem 0 1rem;
}
.invon .invon_box .box {
  margin-top: 0.5rem;
}
.invon .invon_box .box .item {
  margin-bottom: 0.2rem;
  padding: 0.22rem;
  padding-left: 0.22rem;
  background: #fff;
  overflow: hidden;
  border-radius: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .invon .invon_box .box .item {
    padding: 0.3rem;
  }
}
.invon .invon_box .box .item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../images/investor2.jpg) no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all 0.4s;
}
.invon .invon_box .box .item:hover {
  box-shadow: 0 0.18rem 0.38rem rgba(60, 51, 159, 0.1);
}
.invon .invon_box .box .item:hover::after {
  opacity: 1;
}
.invon .invon_box .box .item:hover .gl p {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.invon .invon_box .box .item:hover .gl h3 {
  color: #fff;
}
.invon .invon_box .box .item:hover .gr .invon_a {
  border-color: #5c8ae6;
  background: #5c8ae6;
}
.invon .invon_box .box .item:hover .gr .invon_a i {
  background: #fff;
}
.invon .invon_box .box .item:hover .gr .invon_a i svg path {
  fill: #3d4190;
}
.invon .invon_box .box .item .gl {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .invon .invon_box .box .item .gl {
    flex-direction: column;
    align-items: flex-start;
  }
}
.invon .invon_box .box .item .gl p {
  color: #2f3590;
  border-radius: 100px;
  margin-right: 0.4rem;
  border: 1px solid #c0c2dd;
  padding: 0.06rem 0.15rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .invon .invon_box .box .item .gl p {
    margin-bottom: 0.1rem;
    font-size: 12px;
  }
}
.invon .invon_box .box .item .gl h3 {
  transition: all 0.4s;
}
.invon .invon_box .box .item .gr {
  position: relative;
  z-index: 5;
}
.invon .invon_box .box .item .gr .invon_a {
  width: 0.56rem;
  height: 0.56rem;
  border: 1px solid #f0f0f0;
  padding: 0.09rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .invon .invon_box .box .item .gr .invon_a {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.invon .invon_box .box .item .gr .invon_a i {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to right, #33358d, #3876e8);
  background: linear-gradient(to right, #33358d, #3876e8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.invon .invon_box .box .item .gr .invon_a i svg {
  width: 8px;
  height: auto;
}
.invon .invon_box .box .item .gr .invon_a i svg path {
  transition: all 0.4s;
  fill: #fff;
}
.invon .invon_box .g_tac {
  margin-top: 0.6rem;
}
.invtw {
  padding: 1rem 0 1.4rem;
}
@media (max-width: 991px) {
  .invtw {
    padding: 0;
  }
}
.invtw .box {
  margin-top: 0.54rem;
}
.invtw .box .bbox {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.4rem;
}
@media (max-width: 991px) {
  .invtw .box .bbox {
    margin: 0 -0.2rem;
  }
}
.invtw .box .bbox .item {
  width: 33.33%;
  margin-bottom: 0.3rem;
  padding: 0 0.4rem;
}
.invtw .box .bbox .item:nth-child(3n) .news_rel_box::after {
  display: none;
}
@media (max-width: 991px) {
  .invtw .box .bbox .item {
    width: 50%;
    padding: 0 0.2rem;
  }
}
@media (max-width: 767px) {
  .invtw .box .bbox .item {
    width: 100%;
    margin-bottom: 0.6rem;
  }
}
.invtw .box .bbox .item:hover .public-img img {
  transform: scale(1.05);
}
.invtw .box .bbox .item:hover .txt h3 {
  color: #2f318b !important;
}
.invtw .box .bbox .item .news_rel_box {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.invtw .box .bbox .item .news_rel_box::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  right: -0.4rem;
  top: 0;
  background: #edeeef;
}
@media (max-width: 991px) {
  .invtw .box .bbox .item .news_rel_box::after {
    right: -0.2rem;
  }
}
.invtw .box .bbox .item .news_rel_box .time span {
  color: #999;
}
.invtw .box .bbox .item .news_rel_box .public-img {
  border-radius: 0.2rem;
  margin-top: 0.24rem;
}
.invtw .box .bbox .item .news_rel_box .public-img:before {
  padding-top: 56.53409091%;
}
.invtw .box .bbox .item .news_rel_box .txt {
  margin-top: 0.25rem;
}
.invtw .box .bbox .item .news_rel_box .txt h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
}
.invtw .box .g_tac {
  margin-top: 0.22rem;
}
.invtw .invtw_b_box {
  position: relative;
}
.invtw .invtw_b_box .imgbj {
  position: absolute;
  width: 10rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}
.invtw .invtw_b {
  margin-top: 1.8rem;
  border-radius: 0.2rem;
  border: 2px solid #fff;
  background: rgba(244, 246, 250, 0.5);
  padding: 0.7rem 0 0.75rem;
  display: flex;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
@media (max-width: 767px) {
  .invtw .invtw_b {
    flex-direction: column;
  }
}
.invtw .invtw_b .item {
  width: 33.33333333%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .invtw .invtw_b .item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.invtw .invtw_b .item:hover .txt .g_a p {
  color: #2f318b;
}
.invtw .invtw_b .item:nth-child(3n)::after {
  display: none;
}
.invtw .invtw_b .item:nth-child(3) .img {
  height: 1.6rem;
}
@media (max-width: 767px) {
  .invtw .invtw_b .item:nth-child(3) .img {
    height: 2.6rem;
  }
}
.invtw .invtw_b .item::after {
  content: '';
  position: absolute;
  width: 1px;
  background: rgba(0, 0, 0, 0.07);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 90%;
}
.invtw .invtw_b .item .img {
  height: 1.1rem;
  width: auto;
}
@media (max-width: 767px) {
  .invtw .invtw_b .item .img {
    height: 1.4rem;
  }
}
.invtw .invtw_b .item .img img {
  width: auto;
  height: 100%;
}
.invtw .invtw_b .item .txt {
  margin-top: 0.25rem;
  text-align: center;
}
.invtw .invtw_b .item .txt .p1 {
  margin-bottom: 0.2rem;
}
.invtw .invtw_b .item .txt .g_a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.invtw .invtw_b .item .txt .g_a p {
  margin-right: 0.2rem;
}
.invtw .invtw_b .item .txt .g_a i {
  flex-shrink: 0;
  display: flex;
  width: 0.12rem;
  height: auto;
}
@media (max-width: 767px) {
  .invtw .invtw_b .item .txt .g_a i {
    width: 0.18rem;
  }
}
.invtw .invtw_b .item .txt .g_a i svg,
.invtw .invtw_b .item .txt .g_a i img {
  width: 100%;
  height: auto;
}
.invtw .invtw_b .item .txt .g_a i svg path,
.invtw .invtw_b .item .txt .g_a i img path {
  fill: #4e52c5;
}
.invfo {
  padding: 0 1.6rem;
}
@media (max-width: 1260px) {
  .invfo {
    padding: 0.8rem 0 0;
  }
}
.invfo .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.4rem;
}
.invfo .box .item {
  width: 33.33%;
  margin-bottom: 0.3rem;
}
@media (max-width: 991px) {
  .invfo .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .invfo .box .item {
    width: 100%;
  }
}
.invfo .box .item:hover .itembox {
  background: #fff;
  box-shadow: 0 0.2rem 1.2rem rgba(60, 51, 159, 0.07);
}
.invfo .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
  padding: 0.6rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 0.2rem;
}
@media (max-width: 1260px) {
  .invfo .box .item .itembox {
    padding: 0.4rem;
  }
}
@media (max-width: 767px) {
  .invfo .box .item .itembox {
    background: #fff;
    box-shadow: 0 0.2rem 1.2rem rgba(60, 51, 159, 0.07);
  }
}
.invfo .box .item .itembox .g_icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.invfo .box .item .itembox .g_icon span {
  color: #787988;
}
.invfo .box .item .itembox .g_icon i {
  margin-top: 0.25rem;
  background: #f1f1fa;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.42rem;
  height: 0.42rem;
}
@media (max-width: 1260px) {
  .invfo .box .item .itembox .g_icon i {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.invfo .box .item .itembox .g_icon i svg,
.invfo .box .item .itembox .g_icon i img {
  width: 47.61904762%;
  height: auto;
}
.invfo .box .item .itembox .g_icon i svg path,
.invfo .box .item .itembox .g_icon i img path {
  fill: #2f318b;
}
.invfo .box .item .itembox p {
  line-height: 1;
  margin-top: 0.35rem;
}
/* Cookie 弹窗 */
#c-home-tips {
  display: none;
  position: fixed;
  z-index: 890;
  right: 0.1rem;
  bottom: 0.1rem;
  width: 6.4rem;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0.2rem;
}
@media (max-width: 767px) {
  #c-home-tips {
    width: 94%;
    right: 3%;
  }
}
#c-home-tips .g_del {
  cursor: pointer;
  position: absolute;
  width: 0.14rem;
  height: 0.14rem;
  top: 0.26rem;
  right: 0.25rem;
}
#c-home-tips .g_del svg,
#c-home-tips .g_del img {
  width: 100%;
  height: auto;
  fill: #6c6e73;
}
#c-home-tips .c-wrap {
  padding: 0.52rem 0.5rem 0.5rem;
}
@media (max-width: 991px) {
  #c-home-tips .c-wrap {
    margin: 0 5%;
  }
}
@media (max-width: 767px) {
  #c-home-tips .c-wrap {
    flex-direction: column;
    padding: 0.4rem;
    margin: 0;
  }
}
#c-home-tips .c-wrap .c-left {
  width: 100%;
  text-align: left;
}
@media (max-width: 767px) {
  #c-home-tips .c-wrap .c-left {
    width: 100%;
    margin-bottom: 0.3rem;
  }
}
#c-home-tips .c-wrap .c-left h2 {
  line-height: 1.1;
  margin-bottom: 0.24rem;
}
#c-home-tips .c-wrap .c-left p {
  color: #666;
}
@media (max-width: 767px) {
  #c-home-tips .c-wrap .c-left p {
    font-size: 12px;
  }
}
#c-home-tips .c-wrap .c-wrapr {
  margin-top: 0.8rem;
  display: flex;
}
@media (max-width: 767px) {
  #c-home-tips .c-wrap .c-wrapr {
    width: 100%;
    margin-top: 0.4rem;
  }
}
#c-home-tips .c-wrap .c-wrapr a {
  min-width: 2.03rem;
  padding: 0 0.2rem;
  margin-right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 100px;
  border: 1px solid #97999e;
  height: 0.56rem;
  cursor: pointer;
}
#c-home-tips .c-wrap .c-wrapr a:hover {
  text-decoration: underline;
}
#c-home-tips .c-wrap .c-wrapr .a2 {
  background: -webkit-linear-gradient(to right, #33358d, #3876e8);
  background: linear-gradient(to right, #33358d, #3876e8);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0.14rem 0.35rem rgba(0, 30, 213, 0.19);
}
/* 右侧浮窗 */
.gpop {
  position: fixed;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: none;
}
@media (max-width: 991px) {
  .gpop {
    right: 0.2rem;
  }
}
@media (max-width: 767px) {
  .gpop {
    right: 10px;
  }
}
.gpop > * {
  transition: all 0.4s;
}
.gpop .pop_a {
  width: 60px;
  height: 60px;
  position: relative;
  display: block;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e1e4eb;
  margin: 8px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1580px) {
  .gpop .pop_a {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 767px) {
  .gpop .pop_a {
    margin-top: 10px;
    width: 36px;
    height: 36px;
  }
}
.gpop .pop_a.on {
  background: #2f318b;
}
.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: #fff;
}
.gpop .pop_a.on .pop_a_img p {
  color: #fff;
}
.gpop .pop_a img {
  z-index: 100;
}
.gpop .pop_a .pop_a_img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.gpop .pop_a .pop_a_img svg {
  width: 33.34%;
  height: auto;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_a_img svg {
    width: 14px;
  }
}
.gpop .pop_a .pop_a_img svg path {
  fill: #2f318b;
}
.gpop .pop_a .pop_a_img p {
  font-size: 12px;
  margin-top: 5px;
}
.gpop .pop_a .pop_text {
  position: absolute;
  top: 50%;
  /* right: calc(100% - 7px); */
  right: calc(100% + 20px);
  width: 230px;
  padding: 0.24rem 0.14rem 0.14rem;
  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: 0.34rem;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 255, 255, 0.85);
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_text {
    width: 220px;
  }
}
.gpop .pop_a .pop_text .pop_text_t .p1 span {
  color: #777777;
}
.gpop .pop_a .pop_text .pop_text_t .p2 {
  margin-top: 0.05rem;
  line-height: 1;
  color: #2c2fb5;
}
.gpop .pop_a .pop_text .pop_text_b {
  margin-top: 0.24rem;
}
.gpop .pop_a .pop_text .pop_text_b .pub_btn {
  /* width: 100%; */
}
.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: -17px;
  margin-top: -10px;
  border-width: 10px;
  border-top-color: #fff;
  -webkit-transform: rotate(-90deg);
}
/* 留资弹窗 */
.curtain1 {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none;
}
.curtain1 .mask {
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  background: rgba(0, 0, 0, 0.25);
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
}
.curtain1 .curtain_box {
  position: absolute;
  max-width: 90%;
  max-height: 90%;
  left: 50%;
  top: 50%;
  overflow: hidden;
  z-index: 10000;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .curtain1 .curtain_box {
    width: 90%;
  }
}
.curtain1 .curtain_box .curtain_title {
  position: relative;
  /* padding: 0 30px; */
  /* background: #1c4798; */
}
.curtain1 .curtain_box .curtain_title .close_tc {
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 10000;
}
@media screen and (max-width: 767px) {
  .curtain1 .curtain_box .curtain_title .close_tc {
    width: 40px;
    height: 40px;
  }
}
.curtain1 .curtain_box .curtain_title .close_tc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -10px;
  width: 20px;
  height: 2px;
  background: #999999;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.curtain1 .curtain_box .curtain_title .close_tc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -10px;
  width: 20px;
  height: 2px;
  background: #999999;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.curtain1 .curtain_box .curtain_con {
  max-height: 90vh;
  overflow: auto;
}
.gkeep {
  width: 12.8rem;
  border-radius: 0.2rem;
}
@media (max-width: 991px) {
  .gkeep {
    width: 100%;
  }
}
.gkeep .g_tit {
  background: url(../images/keep.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  height: 1.65rem;
  padding: 0.2rem 0.6rem;
}
@media (max-width: 767px) {
  .gkeep .g_tit {
    padding: 0.2rem;
  }
}
.gkeep .g_tit .gl {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .gkeep .g_tit .gl {
    flex-direction: column;
    align-items: flex-start;
  }
}
.gkeep .g_tit .gl h2 {
  margin-right: 0.66rem;
  line-height: 1.6;
}
.gkeep .g_tit .gl .glab {
  display: flex;
  align-items: center;
}
.gkeep .g_tit .gl .glab i {
  margin-right: 0.09rem;
  flex-shrink: 0;
  display: flex;
  width: 0.18rem;
  height: auto;
}
@media (max-width: 767px) {
  .gkeep .g_tit .gl .glab i {
    width: 0.28rem;
  }
}
.gkeep .g_tit .gl .glab i svg,
.gkeep .g_tit .gl .glab i img {
  width: 100%;
  height: auto;
}
.gkeep .g_tit .gl .glab i svg path,
.gkeep .g_tit .gl .glab i img path {
  fill: #2fcc96;
}
.gkeep .g_tit .gl .glab p {
  color: #777;
}
.gkeep .g_tit .gr {
  display: flex;
  align-items: center;
}
.gkeep .gkeep_box {
  padding: 0.45rem 0.6rem 0.65rem;
  background: #fdfdfd;
}
@media (max-width: 767px) {
  .gkeep .gkeep_box {
    padding: 0.3rem 0.2rem;
  }
}
.gkeep .gkeep_box form .inp {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .gkeep .gkeep_box form .inp {
    flex-direction: column;
  }
}
.gkeep .gkeep_box form .inp .inp_box {
  width: calc((100% - 0.8rem)/3);
  margin-bottom: 0.26rem;
  margin-right: 0.4rem;
}
@media (max-width: 1260px) {
  .gkeep .gkeep_box form .inp .inp_box {
    width: 100%;
    margin-right: 0;
  }
}
.gkeep .gkeep_box form .inp .inp_box:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .gkeep .gkeep_box form .inp .inp_box {
    width: 100%;
    margin-bottom: 0.3rem;
  }
}
.gkeep .gkeep_box form .inp .inp_box .inp_txt {
  margin-bottom: 0.14rem;
}
.gkeep .gkeep_box form .inp .inp_box .inp_txt p {
  font-weight: bold;
}
.gkeep .gkeep_box form .inp .inp_box .inp_txt p span {
  margin-left: 4px;
  color: #2f318b;
}
.gkeep .gkeep_box form .inp .inp_box input {
  background: #fff;
  padding: 0 0.23rem;
  width: 100%;
  height: 0.5rem;
  border: 1px solid #eaecf5;
  border-radius: 100px;
}
.gkeep .gkeep_box form .inp .inp_box input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.35);
}
@media (max-width: 767px) {
  .gkeep .gkeep_box form .inp .inp_box input {
    height: 0.8rem;
  }
}
.gkeep .gkeep_box form .inp .inp_box .sot_select_nr .sel_text_x {
  height: 0.5rem;
}
@media (max-width: 767px) {
  .gkeep .gkeep_box form .inp .inp_box .sot_select_nr .sel_text_x {
    height: 0.8rem;
  }
}
.gkeep .gkeep_box form .inp .inp_box2 {
  display: flex;
  justify-content: space-between;
}
.gkeep .gkeep_box form .inp .inp_box2 .inp_box_sb {
  width: calc(50% - 5px);
}
.gkeep .gkeep_box form .inp2 .inp_box {
  width: 100%;
}
.gkeep .gkeep_box form .inptext .inp_box {
  margin-right: 0;
}
.gkeep .gkeep_box form .inptext .inp_box textarea {
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 0.25rem;
  width: 100%;
  height: 1.2rem;
  padding: 0.16rem 0.23rem;
}
.gkeep .gkeep_box form .inptext .inp_box textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.35);
}
@media (max-width: 767px) {
  .gkeep .gkeep_box form .inptext .inp_box textarea {
    height: 2.2rem;
  }
}
.gkeep .gkeep_box form .g_lab_b {
  display: flex;
  justify-content: space-between;
  margin-top: 0.14rem;
}
@media (max-width: 767px) {
  .gkeep .gkeep_box form .g_lab_b {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.gkeep .gkeep_box form .g_lab {
  width: 65.51724138%;
  padding-right: 0.1rem;
  color: #999999;
}
@media (max-width: 767px) {
  .gkeep .gkeep_box form .g_lab {
    width: 100%;
    margin-bottom: 0.2rem;
  }
}
.gkeep .gkeep_box form .g_lab p {
  line-height: 1.71428571;
}
.gkeep .gkeep_box form .g_lab a {
  color: #2f318b;
}
.layui-form {
  display: flex;
  flex-wrap: wrap;
}
.layui-form .layui-input-block {
  width: 100%;
  margin: 0 0.2rem 0 0;
}
.layui-form .layui-input-block .layui-form-select dl dd.layui-this {
  background: #2f318b;
}
.layui-form .layui-input-block .layui-form-select .layui-input {
  height: 0.5rem;
  border: 1px solid #cccccc;
  color: #444;
  padding: 0 0.24rem;
}
@media (max-width: 767px) {
  .layui-form .layui-input-block .layui-form-select .layui-input {
    height: 0.8rem;
  }
}
.layui-form .layui-input-block .layui-form-select .layui-edge {
  right: 0.24rem;
  background: url(../images/b4.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 7px;
  border: none;
  margin: 0;
  margin-top: -4px;
}
.layui-form-select dl {
  top: 100%;
}
.pro_nav3 {
  display: none;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: calc(100%);
  left: 0;
  background: #ffffff82;
  /* 关于我们下拉 */
  /* 产品下拉 */
}
.pro_nav3 .abo_nav {
  display: flex;
  justify-content: space-between;
}
.pro_nav3 .abo_nav .gl {
  background: #fff url(../images/navimg.jpg) no-repeat;
  padding: 0.55rem 0.8rem 0.55rem 1.6rem;
  width: 62.5%;
}
.pro_nav3 .abo_nav .gl h2 {
  line-height: 1;
}
.pro_nav3 .abo_nav .gl .abo_nav_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.55rem;
}
.pro_nav3 .abo_nav .gl .abo_nav_box .item {
  width: calc(50% - 0.15rem);
}
.pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn {
  min-width: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 0.18rem;
  padding-left: 0.4rem;
  margin-bottom: 0.3rem;
  border-radius: 0.2rem;
  /* border-radius: 100px; */
  overflow: hidden;
  background: #f7f9fb;
  transition: all 0.4s;
}
.pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn:hover {
  border-color: #2f318b;
}
.pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn:hover::after {
  opacity: 1;
}
.pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn:hover i {
  background: #fff;
}
.pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn:hover i svg path,
.pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn:hover i img path {
  fill: #2f318b;
}
.pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn:hover p {
  color: #fff;
}
.pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: all 0.4s;
  opacity: 0;
  background: -webkit-linear-gradient(to right, #33358d, #3876e8);
  background: linear-gradient(to right, #33358d, #3876e8);
}
.pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn i {
  position: relative;
  z-index: 10;
  margin-left: 0.3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.44rem;
  height: 0.44rem;
  background: #fff;
  border-radius: 50%;
}
@media (max-width: 1580px) {
  .pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn i {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media (max-width: 767px) {
  .pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn i {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn i svg,
.pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn i img {
  width: 22.22222222%;
  height: auto;
}
.pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn i svg path,
.pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn i img path {
  fill: #2f318b;
}
.pro_nav3 .abo_nav .gl .abo_nav_box .item .g_btn p {
  position: relative;
  z-index: 5;
  transition: all 0.4s;
}
.pro_nav3 .abo_nav .gr {
  width: 37.5%;
  color: #fff;
  position: relative;
}
.pro_nav3 .abo_nav .gr .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.pro_nav3 .abo_nav .gr .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro_nav3 .abo_nav .gr .abo_nav_r {
  width: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.56rem 0.8rem 0.48rem;
}
.pro_nav3 .abo_nav .gr .abo_nav_r .g_t .txt {
  padding-right: 0.8rem;
}
.pro_nav3 .abo_nav .gr .abo_nav_r .g_t .txt h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.pro_nav3 .abo_nav .gr .abo_nav_r .g_t .txt p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
}
.pro_nav3 .abo_nav .gr .abo_nav_r .g_t .pub_btn {
  opacity: 0.8;
  margin-top: 0.35rem;
}
.pro_nav3 .abo_nav .gr .abo_nav_r .g_t .pub_btn:hover i svg path {
  fill: #000 !important;
}
.pro_nav3 .abo_nav .gr .abo_nav_r .g_t .pub_btn i svg path {
  fill: #fff !important;
}
.pro_nav3 .abo_nav .gr .abo_nav_r .g_b {
  margin-top: 0.86rem;
}
.pro_nav3 .abo_nav .gr .abo_nav_r .g_b .hon_b_box {
  display: flex;
}
@media (max-width: 991px) {
  .pro_nav3 .abo_nav .gr .abo_nav_r .g_b .hon_b_box {
    flex-wrap: wrap;
  }
}
.pro_nav3 .abo_nav .gr .abo_nav_r .g_b .hon_b_box .item {
  position: relative;
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 0.53rem;
}
@media (max-width: 991px) {
  .pro_nav3 .abo_nav .gr .abo_nav_r .g_b .hon_b_box .item {
    width: 50%;
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
}
.pro_nav3 .abo_nav .gr .abo_nav_r .g_b .hon_b_box .item .item_t {
  margin-top: 0.28rem;
  align-items: flex-end;
  display: inline-flex;
}
.pro_nav3 .abo_nav .gr .abo_nav_r .g_b .hon_b_box .item .item_t p {
  line-height: 0.8;
  font-weight: bold;
}
.pro_nav3 .abo_nav .gr .abo_nav_r .g_b .hon_b_box .item .item_t .span1 {
  margin-left: 0;
  line-height: 0.8;
}
.pro_nav3 .abo_nav .gr .abo_nav_r .g_b .hon_b_box .item .item_t span {
  margin-left: 0.07rem;
  line-height: 1;
}
.pro_nav3 .abo_nav .gr .abo_nav_r .g_b .hon_b_box .item .item_b {
  margin-top: 0.12rem;
}
.pro_nav3 .prod_nav {
  background: #fff;
}
.pro_nav3 .prod_nav .prod_nav_box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  padding: 0.6rem 1.6rem;
  /* margin: 0 -0.25rem; */
}
.pro_nav3 .prod_nav .prod_nav_box .bj1 {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 2rem;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(270deg, #fff 20.45%, hsla(0, 0%, 100%, 0));
}
@media (max-width: 1260px) {
  .pro_nav3 .prod_nav .prod_nav_box .bj1 {
    width: 7rem;
    height: 3.3rem;
  }
}
@media (max-width: 767px) {
  .pro_nav3 .prod_nav .prod_nav_box .bj1 {
    width: 1rem;
  }
}
.pro_nav3 .prod_nav .prod_nav_box .bj2 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(270deg, #fff 20.45%, hsla(0, 0%, 100%, 0));
}
@media (max-width: 1260px) {
  .pro_nav3 .prod_nav .prod_nav_box .bj2 {
    width: 4rem;
    height: 3.3rem;
  }
}
@media (max-width: 767px) {
  .pro_nav3 .prod_nav .prod_nav_box .bj2 {
    width: 1rem;
  }
}
.pro_nav3 .prod_nav .prod_nav_box .g_qie .pub_prev {
  left: 0.55rem;
}
.pro_nav3 .prod_nav .prod_nav_box .g_qie .pub_next {
  right: 0.55rem;
}
.pro_nav3 .prod_nav .prod_nav_box .swiper {
  overflow: initial;
  width: 100%;
}
.pro_nav3 .prod_nav .prod_nav_box .item {
  width: 100%;
  margin-bottom: 0.3rem;
  /* padding: 0 0.25rem; */
}
@media (max-width: 991px) {
  .pro_nav3 .prod_nav .prod_nav_box .item {
    /* width: 50%; */
  }
}
@media (max-width: 767px) {
  .pro_nav3 .prod_nav .prod_nav_box .item {
    width: 100%;
  }
}
.pro_nav3 .prod_nav .prod_nav_box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
.pro_nav3 .prod_nav .prod_nav_box .item .itembox .prod_t {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.4rem;
  background: #f7f9fb;
  padding: 0.3rem 0.25rem 0.22rem;
  position: relative;
}
.pro_nav3 .prod_nav .prod_nav_box .item .itembox .prod_t:hover::before {
  opacity: 1;
}
.pro_nav3 .prod_nav .prod_nav_box .item .itembox .prod_t:hover .img {
  background: #fff;
}
.pro_nav3 .prod_nav .prod_nav_box .item .itembox .prod_t:hover .img img {
  transform: scale(0.6);
}
.pro_nav3 .prod_nav .prod_nav_box .item .itembox .prod_t:hover .txt h3 {
  color: #fff;
}
.pro_nav3 .prod_nav .prod_nav_box .item .itembox .prod_t::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 0.2rem;
  background: url(../images/navimg3.jpg) no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all 0.4s;
  overflow: hidden;
}
.pro_nav3 .prod_nav .prod_nav_box .item .itembox .prod_t .img {
  transition: all 0.4s;
  border-radius: 50%;
  position: relative;
  z-index: 10;
  width: 0.6rem;
  height: 0.6rem;
}
.pro_nav3 .prod_nav .prod_nav_box .item .itembox .prod_t .img img {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pro_nav3 .prod_nav .prod_nav_box .item .itembox .prod_t .txt {
  margin-top: 0.18rem;
  text-align: center;
  position: relative;
  z-index: 10;
}
.pro_nav3 .prod_nav .prod_nav_box .item .itembox .prod_t .txt h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 4.5em;
  transition: all 0.4s;
}
.pro_nav3 .prod_nav .prod_nav_box .item .itembox .prod_b {
  margin-top: 0.46rem;
  display: none;
  flex-direction: column;
  align-items: center;
}
.pro_nav3 .prod_nav .prod_nav_box .item .itembox .prod_b a {
  transition: all 0.4s;
  text-align: center;
  color: #666;
  margin-bottom: 0.22rem;
}
.pro_nav3 .prod_nav .prod_nav_box .item .itembox .prod_b a:hover {
  color: #2f318b;
}
/* 为什么选择我们 */
.chobox .chonav {
  background: #fff;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #ededed;
}
.chobox .chonav .chonav_box {
  height: 1rem;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .chobox .chonav .chonav_box {
    /* padding: 0 5%; */
    overflow: auto;
    justify-content: flex-start;
  }
}
.chobox .chonav .chonav_box a {
  height: 100%;
  margin: 0 0.48rem 0 0;
  padding: 0 0.05rem;
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991px) {
  .chobox .chonav .chonav_box a {
    margin: 0 0.2rem 0 0;
  }
}
@media (max-width: 767px) {
  .chobox .chonav .chonav_box a {
    white-space: nowrap;
    margin: 0 0.48rem 0 0;
  }
}
.chobox .chonav .chonav_box a.on {
  font-weight: bold;
  background-image: linear-gradient(90deg, #2c2f82 0%, #346ee2 100%), linear-gradient(#2c2f82, #346ee2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.chobox .chonav .chonav_box a.on::after {
  width: 100%;
}
.chobox .chonav .chonav_box a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  border-radius: 4px 4px 0 0;
  height: 4px;
  background: linear-gradient(to right, #44499a, #3471e6);
  transition: all 0.4s;
  overflow: hidden;
}
@media (max-width: 767px) {
  .chobox .chonav .chonav_box a::after {
    border-bottom: 0;
    height: 1px;
  }
}
.choon {
  overflow: hidden;
}
.choon .box {
  padding: 0.78rem 0 0;
}
.choon .box .bbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.52rem 0 1.52rem;
}
@media (max-width: 991px) {
  .choon .box .bbox {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .choon .box .bbox {
    margin: 0.52rem 0 1.1rem;
  }
}
.choon .box .bbox .choon_num {
  width: 27.5%;
}
@media (max-width: 991px) {
  .choon .box .bbox .choon_num {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
.choon .box .bbox .choon_num .item {
  padding: 0.78rem 0;
  border-bottom: 1px solid #ededed;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .choon .box .bbox .choon_num .item {
    width: 50%;
    border: none;
    padding: 0.38rem 0;
  }
}
.choon .box .bbox .choon_num .item:last-child {
  border: none;
}
.choon .box .bbox .choon_num .item .g_i {
  margin-right: 0.48rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem;
  border: 1px solid #e4e8f6;
  background: #f4f5fa;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
}
@media (max-width: 767px) {
  .choon .box .bbox .choon_num .item .g_i {
    margin-right: 0.2rem;
  }
}
.choon .box .bbox .choon_num .item .g_i i {
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.choon .box .bbox .choon_num .item .g_i i svg,
.choon .box .bbox .choon_num .item .g_i i img {
  width: 50%;
  height: auto;
}
.choon .box .bbox .choon_num .item .g_i i svg path,
.choon .box .bbox .choon_num .item .g_i i img path {
  fill: #2f318b;
}
.choon .box .bbox .choon_num .item .choon_num_box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 0.6rem;
}
@media (max-width: 991px) {
  .choon .box .bbox .choon_num .item .choon_num_box {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .choon .box .bbox .choon_num .item .choon_num_box {
    width: 50%;
    margin-right: 0;
  }
}
.choon .box .bbox .choon_num .item .choon_num_box .item_t {
  align-items: flex-end;
  display: inline-flex;
}
.choon .box .bbox .choon_num .item .choon_num_box .item_t p {
  line-height: 0.8;
  font-size: 1rem;
  font-weight: bold;
  background-image: linear-gradient(90deg, #2c2f82 0%, #346ee2 100%), linear-gradient(#2c2f82, #346ee2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .choon .box .bbox .choon_num .item .choon_num_box .item_t p {
    font-size: 0.6rem;
  }
}
.choon .box .bbox .choon_num .item .choon_num_box .item_t .span1 {
  font-size: 1rem;
  margin-left: 0;
  line-height: 0.8;
  color: #346ee2;
}
@media (max-width: 767px) {
  .choon .box .bbox .choon_num .item .choon_num_box .item_t .span1 {
    font-size: 0.6rem;
  }
}
.choon .box .bbox .choon_num .item .choon_num_box .item_t span {
  color: #2f318b;
  margin-left: 0.07rem;
  line-height: 1;
}
.choon .box .bbox .choon_num .item .choon_num_box .item_b {
  margin-top: 0.22rem;
}
.choon .box .bbox .choon_num .item .choon_num_box .item_b p {
  color: #000;
}
@media (max-width: 767px) {
  .choon .box .bbox .choon_num .item .choon_num_box .item_b p {
    font-size: 12px;
  }
}
.choon .box .bbox .choon_img {
  width: 35%;
  border: 1px solid #d5dbef;
  border-radius: 50%;
  padding: 0.15rem;
  position: relative;
}
@media (max-width: 991px) {
  .choon .box .bbox .choon_img {
    order: -1;
    width: 70%;
    margin-bottom: 0.4rem;
  }
}
.choon .box .bbox .choon_img .imgbj {
  pointer-events: none;
  position: absolute;
  width: 10.21rem;
  height: auto;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
}
.choon .box .bbox .choon_img .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.g_chotit {
  text-align: center;
}
.g_chotit h3 {
  color: #3033b9;
  line-height: 1.1;
  font-weight: bold;
}
.g_chotit .g_p {
  padding: 0 1.8rem;
  margin-top: 0.25rem;
}
@media (max-width: 991px) {
  .g_chotit .g_p {
    padding: 0;
  }
}
.g_chotit .g_p p {
  color: #666;
}
.choon_rd .choon_rd_box {
  display: flex;
  justify-content: space-between;
  margin-top: 0.55rem;
}
@media (max-width: 1260px) {
  .choon_rd .choon_rd_box {
    flex-direction: column;
  }
}
.choon_rd .choon_rd_box .item {
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
  width: calc(50% - 0.3rem);
}
@media (max-width: 1260px) {
  .choon_rd .choon_rd_box .item {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
@media (min-width: 768px) {
  .choon_rd .choon_rd_box .item:hover .public-img .img1 {
    opacity: 0;
  }
  .choon_rd .choon_rd_box .item:hover .public-img .img2 {
    opacity: 1;
  }
  .choon_rd .choon_rd_box .item:hover .txt {
    flex-direction: column;
  }
  .choon_rd .choon_rd_box .item:hover .txt .g_p p {
    opacity: 1;
  }
}
.choon_rd .choon_rd_box .item .public-img:before {
  padding-top: 70.38961039%;
}
@media (max-width: 767px) {
  .choon_rd .choon_rd_box .item .public-img:before {
    padding-top: 110%;
  }
}
.choon_rd .choon_rd_box .item .public-img .img2 {
  opacity: 0;
}
@media (max-width: 767px) {
  .choon_rd .choon_rd_box .item .public-img .img2 {
    opacity: 0.4;
  }
}
.choon_rd .choon_rd_box .item .txt {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0.56rem 1rem 0.56rem 0.7rem;
}
@media (max-width: 767px) {
  .choon_rd .choon_rd_box .item .txt {
    padding: 0.4rem;
    flex-direction: column;
  }
}
.choon_rd .choon_rd_box .item .txt .g_p p {
  margin-bottom: 0.15rem;
  opacity: 0;
  transition: all 0.4s;
  display: block;
  position: relative;
  padding-left: 24px;
}
@media (max-width: 767px) {
  .choon_rd .choon_rd_box .item .txt .g_p p {
    opacity: 1;
  }
}
.choon_rd .choon_rd_box .item .txt .g_p p:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  left: 0;
  top: 9px;
}
@media (max-width: 1580px) {
  .choon_rd .choon_rd_box .item .txt .g_p p:after {
    top: 8px;
    width: 5px;
    height: 5px;
  }
}
.choon_fu {
  padding: 0.95rem 0 0;
}
.choon_fu .choon_fu_box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.25rem;
  margin-top: 0.55rem;
}
.choon_fu .choon_fu_box .item {
  width: 33.33%;
  margin-bottom: 0.5rem;
  padding: 0 0.25rem;
}
@media (max-width: 991px) {
  .choon_fu .choon_fu_box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .choon_fu .choon_fu_box .item {
    width: 100%;
  }
}
.choon_fu .choon_fu_box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
.choon_fu .choon_fu_box .item .itembox:hover .public-img img {
  transform: scale(1.05);
}
.choon_fu .choon_fu_box .item .itembox:hover .txt::after {
  opacity: 1;
}
.choon_fu .choon_fu_box .item .itembox:hover .txt h4 {
  color: #2f318b !important;
}
.choon_fu .choon_fu_box .item .itembox .public-img {
  border-radius: 0.2rem;
}
.choon_fu .choon_fu_box .item .itembox .public-img:before {
  padding-top: 60%;
}
.choon_fu .choon_fu_box .item .itembox .txt {
  position: relative;
  border-bottom: 1px solid #eeeef2;
  text-align: center;
  padding: 0.25rem 0.2rem;
}
.choon_fu .choon_fu_box .item .itembox .txt::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #2d30c2;
  left: 0;
  bottom: 0;
  transition: all 0.4s;
  opacity: 0;
}
.choon_fu .choon_fu_box .item .itembox .txt h4 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.choon_ho {
  position: relative;
  padding: 0.85rem 0 1.38rem;
}
.choon_ho .imgbj {
  pointer-events: none;
  position: absolute;
  width: 10.21rem;
  height: auto;
  top: 37%;
  left: 52%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.choon_ho .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.choon_ho .hon_b_box {
  margin-top: 0.7rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .choon_ho .hon_b_box {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .choon_ho .hon_b_box {
    align-items: center;
  }
}
.choon_ho .hon_b_box .item {
  position: relative;
  /* width: 25%; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 0.8rem;
}
@media (max-width: 991px) {
  .choon_ho .hon_b_box .item {
    width: 50%;
    margin-right: 0 !important;
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 767px) {
  .choon_ho .hon_b_box .item {
    align-items: center;
  }
}
.choon_ho .hon_b_box .item:last-child {
  margin-right: 0;
}
.choon_ho .hon_b_box .item:nth-child(2) {
  margin-right: 0.4rem;
}
.choon_ho .hon_b_box .item .item_t {
  align-items: flex-end;
  display: inline-flex;
}
.choon_ho .hon_b_box .item .item_t p {
  line-height: 0.8;
  font-weight: bold;
  background-image: linear-gradient(90deg, #2c2f82 0%, #346ee2 100%), linear-gradient(#2c2f82, #346ee2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .choon_ho .hon_b_box .item .item_t p {
    font-size: 34px;
  }
}
.choon_ho .hon_b_box .item .item_t .span1 {
  margin-left: 0.1rem;
  line-height: 0.8;
  color: #2f318b;
}
.choon_ho .hon_b_box .item .item_t span {
  color: #2f318b;
  margin-left: 0.07rem;
  line-height: 1;
}
.choon_ho .hon_b_box .item .item_b {
  margin-top: 0.15rem;
}
.choon_ho_nav {
  display: flex;
  justify-content: center;
  margin-top: 0.72rem;
}
.choon_ho_nav .choon_ho_nav_box {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
@media (max-width: 767px) {
  .choon_ho_nav .choon_ho_nav_box {
    overflow: auto;
    justify-content: flex-start;
  }
}
.choon_ho_nav .choon_ho_nav_box a {
  height: 100%;
  margin: 0 0.48rem 0 0;
  padding: 0 0 0.25rem;
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.choon_ho_nav .choon_ho_nav_box a:last-child {
  margin-right: 0;
}
@media (max-width: 991px) {
  .choon_ho_nav .choon_ho_nav_box a {
    margin: 0 0.2rem 0 0;
  }
}
@media (max-width: 767px) {
  .choon_ho_nav .choon_ho_nav_box a {
    white-space: nowrap;
  }
}
.choon_ho_nav .choon_ho_nav_box a.on {
  font-weight: bold;
  background-image: linear-gradient(90deg, #2c2f82 0%, #346ee2 100%), linear-gradient(#2c2f82, #346ee2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.choon_ho_nav .choon_ho_nav_box a.on::after {
  width: 100%;
}
.choon_ho_nav .choon_ho_nav_box a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  border-radius: 4px 4px 0 0;
  height: 4px;
  background: linear-gradient(to right, #44499a, #3471e6);
  transition: all 0.4s;
  overflow: hidden;
}
@media (max-width: 767px) {
  .choon_ho_nav .choon_ho_nav_box a::after {
    border-bottom: 0;
    height: 1px;
  }
}
.choon_ho_box {
  margin-top: 0.6rem;
}
.choon_ho_box .choon_ho_it {
  position: relative;
}
.choon_ho_box .choon_ho_it .swiper {
  margin: 0 1rem;
}
@media (max-width: 991px) {
  .choon_ho_box .choon_ho_it .swiper {
    margin: 0;
  }
}
.choon_ho_box .choon_ho_it .swiper .choon_ho_swi {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 2px solid #eeeff5;
  border-radius: 0.2rem;
  padding: 0 0.3rem;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.choon_ho_box .choon_ho_it .swiper .choon_ho_swi.on .img {
  padding: 0.32rem 0;
}
.choon_ho_box .choon_ho_it .swiper .choon_ho_swi:hover {
  background: #fff;
  border-color: #8d8fdb;
}
.choon_ho_box .choon_ho_it .swiper .choon_ho_swi:hover .img .g_png {
  opacity: 1;
}
.choon_ho_box .choon_ho_it .swiper .choon_ho_swi:hover .txt h4 {
  color: #2d30c2 !important;
}
.choon_ho_box .choon_ho_it .swiper .choon_ho_swi .img {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: 0.32rem;
}
.choon_ho_box .choon_ho_it .swiper .choon_ho_swi .img .public-img {
  width: 100%;
}
.choon_ho_box .choon_ho_it .swiper .choon_ho_swi .img .public-img:before {
  padding-top: 134%;
}
.choon_ho_box .choon_ho_it .swiper .choon_ho_swi .img .public-img img {
  object-fit: contain;
}
.choon_ho_box .choon_ho_it .swiper .choon_ho_swi .img .g_png {
  opacity: 0;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.56rem;
  height: 0.56rem;
  background: #2d30c2;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choon_ho_box .choon_ho_it .swiper .choon_ho_swi .img .g_png img,
.choon_ho_box .choon_ho_it .swiper .choon_ho_swi .img .g_png svg {
  width: 32.14285714%;
}
.choon_ho_box .choon_ho_it .swiper .choon_ho_swi .txt {
  position: relative;
  border-top: 1px solid #eeeef2;
  text-align: center;
  padding: 0.25rem 0;
}
.choon_ho_box .choon_ho_it .swiper .choon_ho_swi .txt h4 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.4s;
}
.choon_ho_box .choon_ho_it .g_qie .pub_prev {
  left: 0;
}
.choon_ho_box .choon_ho_it .g_qie .pub_next {
  right: 0;
}
.chotw {
  padding: 0.95rem 0 0.76rem;
  position: relative;
}
@media (max-width: 991px) {
  .chotw {
    padding: 0.45rem 0 0.76rem;
  }
}
.chotw .container {
  position: relative;
  z-index: 10;
}
@media (max-width: 991px) {
  .chotw .g_yc {
    display: block;
  }
}
@media (max-width: 991px) {
  .chotw .g_xs {
    display: none;
  }
}
.chotw .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 991px) {
  .chotw .img {
    margin-top: 0.5rem;
    position: initial;
  }
}
.chotw .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chotw .chotw_box {
  margin-top: 0.52rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .chotw .chotw_box {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .chotw .chotw_box {
    flex-direction: column;
  }
}
.chotw .chotw_box .gl {
  position: relative;
  width: 25%;
}
@media (max-width: 1260px) {
  .chotw .chotw_box .gl {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .chotw .chotw_box .gl {
    width: 100%;
  }
}
.chotw .chotw_box .gl .item {
  border-radius: 0.2rem;
  border: 1px solid #fff;
  background: #f4f5f9;
  padding: 0.08rem;
  margin-bottom: 0.15rem;
}
.chotw .chotw_box .gl .item h3 {
  text-align: center;
  line-height: 1.2;
  border-radius: 0.2rem;
  min-height: 50px;
  padding: 5px 0.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: -webkit-linear-gradient(to right, #2c2f82, #367aeb);
  background: linear-gradient(to right, #2c2f82, #367aeb);
}
@media (max-width: 767px) {
  .chotw .chotw_box .gl .item h3 {
    min-height: auto;
    padding: 10px 0.2rem;
  }
}
.chotw .chotw_box .gl .item .txt {
  padding: 0.2rem 0 0.1rem;
  min-height: 0.86rem;
  text-align: center;
}
.chotw .chotw_box .gl .item .txt p {
  color: #666;
}
.chotw .chotw_box .gr {
  padding: 0 0.35rem 0 0.3rem;
  width: 51.04895105%;
}
@media (max-width: 767px) {
  .chotw .chotw_box .gr {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.chotw .chotw_box .gr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes moveq2 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    -webkit-transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
.choth {
  padding: 0.95rem 0 1rem;
}
.choth .box {
  display: flex;
  justify-content: space-between;
  margin-top: 0.55rem;
  border: 3px solid #f7f9fb;
  border-radius: 0.2rem;
  min-height: 4.8rem;
}
@media (max-width: 1580px) {
  .choth .box {
    min-height: 5.6rem;
  }
}
@media (max-width: 991px) {
  .choth .box {
    flex-direction: column;
  }
}
.choth .box .gl {
  position: relative;
  width: 30%;
  padding: 0.4rem 0;
  background: #f7f9fb;
}
@media (max-width: 1260px) {
  .choth .box .gl {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .choth .box .gl {
    width: 100%;
  }
}
.choth .box .gl .public-img {
  margin: 0.33rem 0 0 1rem;
  width: 95.83333333%;
  flex-shrink: 0;
}
@media (max-width: 1260px) {
  .choth .box .gl .public-img {
    margin: 0 0 0 1rem;
  }
}
@media (max-width: 991px) {
  .choth .box .gl .public-img {
    margin: 0 auto;
    width: 70%;
  }
}
.choth .box .gl .public-img:before {
  padding-top: 72.60869565%;
}
.choth .box .gr {
  width: 70%;
  display: flex;
  align-items: center;
  padding: 0.2rem 0.42rem 0.2rem 1.8rem;
}
@media (max-width: 991px) {
  .choth .box .gr {
    width: 100%;
    padding: 0.4rem;
  }
}
.choth .box .gr .choth_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.choth .box .gr .choth_box p {
  width: 50%;
  padding: 0 0.6rem 0 20px;
  margin-bottom: 0.24rem;
  display: block;
  position: relative;
}
@media (max-width: 767px) {
  .choth .box .gr .choth_box p {
    width: 100%;
  }
}
.choth .box .gr .choth_box p:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 2px solid #2d30c2;
  background: #fff;
  left: 0;
  top: 8px;
}
@media (max-width: 1580px) {
  .choth .box .gr .choth_box p:after {
    top: 6px;
    width: 5px;
    height: 5px;
  }
}
@media (max-width: 767px) {
  .choth .box .gr .choth_box p:after {
    top: 6px;
  }
}
.chofo {
  padding: 1.1rem 0 0.3rem;
  background: #f7f9fb;
}
.chofo .box {
  margin-top: 0.7rem;
}
.dis_time {
  margin: 0.56rem 0 0;
  display: flex;
  justify-content: center;
  padding: 0.26rem 0;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
.dis_time p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1;
  padding: 0 0.23rem;
  border-right: 1px solid #ededed;
}
.iinfoon {
  position: relative;
  padding-top: 80px;
}
@media screen and (max-width: 1440px) {
  .iinfoon {
    padding-top: 60px;
  }
}
.iinfoon .seaon_box {
  margin-top: 0.55rem;
}
.iinfoon .seaon_box .box .g_t {
  margin-top: 0.4rem;
}
.iinfoon .seaon_box .box .g_t form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.iinfoon .seaon_box .box .g_t form .search_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .iinfoon .seaon_box .box .g_t form .search_box {
    width: 100%;
    /* flex-direction: column; */
  }
}
.iinfoon .seaon_box .box .g_t form .search_box input {
  padding: 0 0.3rem;
  width: 4.04rem;
  color: #333;
  height: 0.6rem;
  background: #fff;
  border-radius: 100px;
  border: 1px solid #eaecf5;
  color: #020435;
}
@media (max-width: 767px) {
  .iinfoon .seaon_box .box .g_t form .search_box input {
    height: 0.8rem;
    width: 100%;
    /* margin-bottom: 0.2rem; */
  }
}
.iinfoon .seaon_box .box .g_t form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.3rem;
  padding: 0 0.4rem;
  height: 0.6rem;
}
@media (max-width: 767px) {
  .iinfoon .seaon_box .box .g_t form .search_box button {
    height: 0.8rem;
  }
}
.iinfoon .seaon_box .box .g_t form .search_box button svg {
  width: 100%;
  height: auto;
}
.iinfoon .seaon_box .box .g_t form .search_box button svg path {
  fill: #9a9a9a;
}
.iinfoon .seaon_box .box .g_t form .p1 {
  margin-top: 0.28rem;
  color: #999;
}
.iinfoon .seaon_box .box .g_t form .p1 span {
  color: #2f318b;
}
.invon_info {
  background: none;
}
.invon_info .invon_box .box {
  margin-top: 0;
}
.invon_info .invon_box .page {
  margin-top: 0.6rem;
}
/* 加入欧陆通 */
.joinon {
  height: 9.96rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .joinon {
    flex-direction: column;
    height: auto;
  }
}
.joinon .item {
  position: relative;
  width: 25%;
}
@media (max-width: 767px) {
  .joinon .item {
    width: 100%;
    height: 5rem;
  }
}
.joinon .item:hover .box {
  background: rgba(0, 15, 209, 0.4);
}
.joinon .item:hover .box .txt {
  transform: translateY(-0.65rem);
}
.joinon .item:hover .box .g_num {
  opacity: 1;
  transform: translateY(0.5rem);
}
.joinon .item .img {
  width: 100%;
  height: 100%;
}
.joinon .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.joinon .item .box {
  background: rgba(0, 13, 57, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  color: #fff;
  padding: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.4s;
}
.joinon .item .box .txt {
  transform: translateY(0rem);
  transition: all 0.4s;
}
.joinon .item .box .txt h3 {
  margin-bottom: 0.2rem;
}
@media (max-width: 991px) {
  .joinon .item .box .txt h3 {
    line-height: 1.2;
  }
}
.joinon .item .box .g_num {
  position: absolute;
  transform: translateY(1rem);
  transition: all 0.4s;
  opacity: 0;
}
.joinpop {
  background: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.joinpop .g_del {
  cursor: pointer;
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  background: #1314a9;
  border-radius: 50%;
  top: 0.2rem;
  right: 0.2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1260px) {
  .joinpop .g_del {
    width: 0.8rem;
    height: 0.8rem;
  }
}
@media (max-width: 767px) {
  .joinpop .g_del {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.joinpop .g_del i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.14rem;
  height: auto;
  color: #2f318b;
}
@media (max-width: 1260px) {
  .joinpop .g_del i {
    width: 0.18rem;
  }
}
@media (max-width: 767px) {
  .joinpop .g_del i {
    width: 0.22rem;
  }
}
.joinpop .g_del i svg,
.joinpop .g_del i img {
  width: 100%;
  height: auto;
}
.joinpop .g_del i svg path,
.joinpop .g_del i img path {
  fill: #fff;
}
.joinpop .joinpop_box {
  overflow: auto;
  width: 100%;
  height: 100vh;
}
.empon {
  padding: 1.9rem 0.8rem;
}
@media (max-width: 1260px) {
  .empon {
    padding: 1.5rem 0;
  }
}
.empon p {
  font-size: 0.4rem;
  text-align: center;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .empon p {
    font-size: 0.4rem;
  }
}
.empon p span {
  background-image: linear-gradient(59deg, #33358d 0%, #3876e8 50%, #33358d 100%), linear-gradient(#33358d 0%, #3876e8 50%, #33358d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.emptw {
  position: relative;
  z-index: 10;
}
.emptw .emptw_box .emptw_sta {
  padding: 0.95rem 0 1rem;
}
.emptw .emptw_box .emptw_sta .emptw_sta_box {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}
@media (max-width: 991px) {
  .emptw .emptw_box .emptw_sta .emptw_sta_box {
    flex-direction: column;
  }
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it {
  width: 50%;
  margin-right: 0.44rem;
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it {
    width: 100% !important;
    margin-bottom: 0.5rem;
  }
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it.on {
  box-shadow: 0 0.46rem 1.28rem rgba(38, 62, 183, 0.26);
  flex-shrink: 0;
  width: 48.625%;
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it.on .imgbj img {
  opacity: 1;
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it.on .emptw_sta_con .g_png {
  transform: translateY(-0.35rem);
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(152, 152, 211, 0.2);
}
@media (max-width: 767px) {
  .emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it.on .emptw_sta_con .g_png {
    transform: translateY(0);
  }
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it.on .emptw_sta_con .txt {
  transform: translateY(-0.35rem);
}
@media (max-width: 767px) {
  .emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it.on .emptw_sta_con .txt {
    transform: translateY(0);
  }
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it.on .emptw_sta_con .txt p {
  opacity: 1;
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it.on .emptw_sta_con .txt h3 {
  color: #fff;
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it .imgbj {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f5f5fb;
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it .imgbj img {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it .emptw_sta_con {
  transition: all 0.4s;
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 0.3rem;
  height: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1580px) {
  .emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it .emptw_sta_con {
    height: 5.8rem;
  }
}
@media (max-width: 767px) {
  .emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it .emptw_sta_con {
    padding-top: 0.7rem;
    justify-content: flex-start;
  }
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it .emptw_sta_con .g_png {
  transition: all 0.4s;
  margin-bottom: 0.35rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid #d3d4f0;
  background: #e2e2f3;
  padding: 0.12rem;
}
@media (max-width: 767px) {
  .emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it .emptw_sta_con .g_png {
    width: 1.3rem;
    height: 1.3rem;
  }
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it .emptw_sta_con .g_png .g_png_box {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it .emptw_sta_con .g_png .g_png_box img {
  width: 52.63157895%;
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it .emptw_sta_con .txt {
  text-align: center;
  width: 100%;
  transition: all 0.4s;
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it .emptw_sta_con .txt h3 {
  color: #000;
}
.emptw .emptw_box .emptw_sta .emptw_sta_box .emptw_sta_it .emptw_sta_con .txt p {
  color: #fff;
  transition: all 0.4s;
  padding: 0 0.8rem;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.16rem;
  opacity: 0;
  min-width: 7.7rem;
}
.emptw_oipb {
  background: #f5f5fb;
  padding: 0.95rem 0 3.4rem;
}
.emptw_oipb .emptw_oipb_box {
  margin-top: 0.55rem;
}
.emptw_oipb .emptw_oipb_box .box {
  margin-top: 0.5rem;
}
.emptw_oipb .emptw_oipb_box .box .item {
  margin-bottom: 0.2rem;
  background: #fff;
  overflow: hidden;
  border-radius: 0.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.emptw_oipb .emptw_oipb_box .box .item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../images/investor2.jpg) no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all 0.4s;
}
.emptw_oipb .emptw_oipb_box .box .item.on {
  box-shadow: 0 0.18rem 0.38rem rgba(60, 51, 159, 0.1);
}
.emptw_oipb .emptw_oipb_box .box .item.on::after {
  opacity: 1;
}
.emptw_oipb .emptw_oipb_box .box .item.on .gl p {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.emptw_oipb .emptw_oipb_box .box .item.on .gl h3 {
  color: #fff;
}
.emptw_oipb .emptw_oipb_box .box .item.on .gr .invon_a {
  border-color: #5c8ae6;
  background: #5c8ae6;
}
.emptw_oipb .emptw_oipb_box .box .item.on .gr .invon_a .g_qh {
  background: #fff;
}
.emptw_oipb .emptw_oipb_box .box .item.on .gr .invon_a .g_qh i {
  background: #346fe5;
}
.emptw_oipb .emptw_oipb_box .box .item.on .gr .invon_a .g_qh .i2 {
  transform: translate(-50%, -50%) rotate(0deg);
}
.emptw_oipb .emptw_oipb_box .box .item .emptw_oipb_t {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.22rem;
  padding-left: 0.4rem;
}
.emptw_oipb .emptw_oipb_box .box .item .emptw_oipb_b {
  display: none;
  position: relative;
  z-index: 10;
  padding: 0 0.22rem 0 0.4rem;
}
.emptw_oipb .emptw_oipb_box .box .item .emptw_oipb_b .emptw_oipb_b_box {
  padding: 0.35rem 0 0.48rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.emptw_oipb .emptw_oipb_box .box .item .emptw_oipb_b .emptw_oipb_b_box p {
  line-height: 1.875;
  color: #fff;
}
.emptw_oipb .emptw_oipb_box .box .item .gl {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .emptw_oipb .emptw_oipb_box .box .item .gl {
    flex-direction: column;
    align-items: flex-start;
  }
}
.emptw_oipb .emptw_oipb_box .box .item .gl h3 {
  transition: all 0.4s;
}
.emptw_oipb .emptw_oipb_box .box .item .gr {
  position: relative;
  z-index: 5;
}
.emptw_oipb .emptw_oipb_box .box .item .gr .invon_a {
  width: 0.56rem;
  height: 0.56rem;
  border: 1px solid #f0f0f0;
  padding: 0.09rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .emptw_oipb .emptw_oipb_box .box .item .gr .invon_a {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.emptw_oipb .emptw_oipb_box .box .item .gr .invon_a .g_qh {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to right, #33358d, #3876e8);
  background: linear-gradient(to right, #33358d, #3876e8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emptw_oipb .emptw_oipb_box .box .item .gr .invon_a .g_qh i {
  width: 10px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  transition: all 0.4s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .emptw_oipb .emptw_oipb_box .box .item .gr .invon_a .g_qh i {
    width: 6px;
    height: 1px;
  }
}
.emptw_oipb .emptw_oipb_box .box .item .gr .invon_a .g_qh .i2 {
  transform: translate(-50%, -50%) rotate(90deg);
}
#hi-img-pop,
#hi-video-pop {
  z-index: 20000;
}
.nav_two_tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.15rem 0;
}
.nav_two_tit > a {
  color: #666 !important;
  display: block;
  padding-left: 10px;
  line-height: 1.5;
}
.nav_two_tit svg {
  width: 12px;
  height: auto;
  transition: all 0.4s;
  flex-shrink: 0;
}
.nav_two_tit.on svg {
  transform: rotate(180deg);
}
.nav_two_tit svg path {
  fill: #666;
}
.nav_three {
  display: none;
  padding: 0.1rem 0;
}
.nav_three > a {
  color: #999 !important;
  display: block;
  padding-left: 30px;
  line-height: 1.5;
  margin-bottom: 0.08rem;
}
.nav_three > a.on {
  color: #2f318b !important;
}
.nav_two_tit2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.15rem 0;
}
.nav_two_tit2 > a {
  color: #666 !important;
  display: block;
  padding-left: 10px;
  line-height: 1.5;
}
.nav_two_tit2 svg {
  width: 12px;
  height: auto;
  transition: all 0.4s;
  flex-shrink: 0;
}
.nav_two_tit2.on svg {
  transform: rotate(180deg);
}
.nav_two_tit2 svg path {
  fill: #666;
}
