@charset "utf-8";
:root {
  --color: #005CE6;
  --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;
  scrollbar-width: thin;
}
* ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 5px;
}
* ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: var(--color);
}
* ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
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;
}
@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: #333;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
video,
video:focus {
  display: block;
  font-size: 0;
  border: 0;
  outline: none;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
}
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  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 !important;
  opacity: 1 !important;
}
picture,
section,
main {
  display: block;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  margin: 0 auto;
  width: 85%;
  max-width: 1440px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.container2 {
  margin: 0 auto;
  width: 90%;
  max-width: 1600px;
}
@media (max-width: 1260px) {
  .container2 {
    width: 90%;
  }
}
.bg-color1 {
  background-color: #fff;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .ptb100 {
    padding-top: 1.2rem;
    padding-bottom: 1.2em;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .pt100 {
    padding-top: 1.2rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .pb100 {
    padding-bottom: 1.2rem;
  }
}
.font16 {
  font-size: 16px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .font16 {
    font-size: 0.28rem;
  }
}
.public-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,
.public-img > video {
  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: 100px;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 60px;
  }
}
.g_tac {
  text-align: center;
}
/*头部*/
#c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  line-height: 80px;
  text-align: center;
  color: #fff;
  transition: 0.4s;
}
@media (max-width: 991px) {
  #c-header {
    line-height: 60px;
  }
}
#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: 60px;
  }
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
}
#c-header.c-head-move {
  top: -100px;
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -60px;
  }
}
#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;
}
#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: 30px;
  }
}
#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;
}
#c-header .c-switch {
  position: relative;
  display: none;
  width: 24px;
  height: 20px;
  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;
}
#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: var(--color);
}
#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;
  color: #666;
}
#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: var(--color);
  cursor: pointer;
}
#c-header .c-gn .c-language {
  margin: 0 0.3rem;
  position: relative;
  cursor: pointer;
}
#c-header .c-gn .c-language .c-ico-text {
  display: flex;
  align-items: center;
}
#c-header .c-gn .c-language .c-ico-text span {
  margin: 0 0.05rem;
  transition: all 0.4s;
}
#c-header .c-gn .c-language .c-ico-text img,
#c-header .c-gn .c-language .c-ico-text svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
  vertical-align: middle;
}
#c-header .c-gn .c-language .c-ico-text img:nth-child(3),
#c-header .c-gn .c-language .c-ico-text svg:nth-child(3) {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
}
#c-header .c-gn .c-language .c-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  line-height: 50px;
}
#c-header .c-gn .c-language .c-box a {
  position: relative;
  display: block;
  padding: 0 20px;
  transition: all 0.4s;
}
#c-header .c-gn .c-language .c-box a::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(100% - 40px) !important;
  left: 20px !important;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
#c-header .c-gn .c-language .c-box a:hover {
  color: var(--color);
}
#c-header .c-gn .c-language:hover .c-ico-text {
  color: var(--color);
}
#c-header .c-gn .c-language:hover .c-ico-text svg {
  color: var(--color);
}
#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;
  width: 20px;
  height: 20px;
}
#c-header .c-gn .c-phone span {
  font-weight: bold;
}
#c-header.c-style2 .c-gn .c-phone svg {
  color: var(--color);
}
#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: var(--color);
  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: 50px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#c-header .c-nav ul li: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 {
  color: #333;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#c-header.c-style2 a {
  color: #333;
}
#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;
}
#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: var(--color);
}
#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: var(--color);
}
#c-header .c-nav2 {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 50px;
  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 5vw;
  border-top: 1px solid #f1f1f1;
}
#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: 14px;
  height: 14px;
  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: var(--color);
}
#c-header .c-nav2 li ul {
  display: none;
}
.c-open #c-header .c-switch i {
  background: #333;
}
.c-open #c-header .c-switch i:nth-child(2) {
  opacity: 0;
}
.c-open #c-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-open #c-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 底部 */
#c-footer {
  color: #fff;
}
#c-footer a {
  color: #a9a9a9;
  transition: 0.4s;
}
#c-footer a:hover {
  color: var(--color);
}
#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: var(--color);
}
#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: 14px;
  height: 14px;
}
@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: 40px;
    height: 40px;
  }
}
#c-footer .c-top-box .container .c-ico a img,
#c-footer .c-top-box .container .c-ico a svg {
  width: 50%;
  height: 50%;
}
#c-footer .c-top-box .container .c-ico a:hover {
  background: var(--color);
}
@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: var(--color);
}
#c-footer .c-bottom-box .container .c-copyright {
  word-wrap: break-word;
  word-break: break-all;
}
#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: var(--color);
  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: var(--color);
}
#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;
}
/*首页内容1*/
.c-home1 .swiper-slide {
  overflow: hidden;
}
.c-home1 .swiper-slide .c-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: var(--vh);
}
.c-home1 .swiper-slide .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-slide .c-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-button-next,
.c-home1 .swiper-button-prev {
  margin-top: -0.2rem;
  width: 0.6rem;
  height: 0.6rem;
  opacity: 0.2;
  transition: 0.4s;
  right: 0.6rem;
  background: transparent;
}
@media (max-width: 991px) {
  .c-home1 .swiper-button-next,
  .c-home1 .swiper-button-prev {
    display: none;
  }
}
.c-home1 .swiper-button-next::after,
.c-home1 .swiper-button-prev::after {
  display: none;
}
.c-home1 .swiper-button-next img,
.c-home1 .swiper-button-prev img,
.c-home1 .swiper-button-next svg,
.c-home1 .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  color: #fff;
}
.c-home1 .swiper-button-prev {
  left: 0.6rem;
  transform: rotate(180deg);
}
.c-home1 .swiper-button-next:hover,
.c-home1 .swiper-button-prev:hover {
  opacity: 1;
}
.c-home1 .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 0.4rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination {
    bottom: 0.6rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
  width: 0.6rem;
  height: 3px;
  vertical-align: top;
  margin: 0 0.1rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination .swiper-pagination-bullet {
    margin: 0 0.1rem;
    width: 0.3rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet div {
  height: 100%;
  background: var(--color);
  width: 0;
  transition-timing-function: linear;
}
/* 自己的公共样式 */
/*过渡*/
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/PlusJakartaSans-Bold.ttf);
}
@font-face {
  font-family: 'pop-l';
  src: url(../font/PlusJakartaSans-Light.ttf);
}
@font-face {
  font-family: 'pop-m';
  src: url(../font/PlusJakartaSans-Medium.ttf);
}
@font-face {
  font-family: 'pop-r';
  src: url(../font/PlusJakartaSans-Regular.ttf);
}
@font-face {
  font-family: 'pop-sb';
  src: url(../font/PlusJakartaSans-SemiBold.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';
}
.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;
}
.font72 {
  font-size: 72px;
}
.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,
  .font72,
  .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,
  .font72,
  .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,
  .font72,
  .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;
  /* show_nav 子页面导航class */
  /* nav_on 导航不在顶部后移入加上移除去掉的class */
  /* nav_on2 导航不在顶部后固定的class */
  /* 搜索下拉 */
}
nav.show_nav {
  background: none;
}
nav.show_nav .imgbj {
  opacity: 0;
}
nav.show_nav .nav_top {
  background: none;
}
@media (max-width: 1260px) {
  nav.show_nav .nav_top {
    background: var(--color);
  }
}
@media (max-width: 1260px) {
  nav.show_nav .xs {
    display: block;
  }
}
@media (max-width: 1260px) {
  nav.show_nav .yc {
    display: none;
  }
}
nav.show_nav svg {
  color: #fff;
}
nav.show_nav svg path {
  fill: #fff;
}
@media (max-width: 1260px) {
  nav.show_nav svg path {
    fill: #fff;
  }
}
nav.show_nav .nav_ljbox .nav_l_box .logo .xs {
  display: none;
}
nav.show_nav .nav_ljbox .nav_l_box .logo .yc {
  display: block;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  color: #fff;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg {
  color: #fff;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path {
  fill: #fff;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p {
  color: var(--color) !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after {
  background: var(--color) !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg {
  color: var(--color) !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path {
  fill: var(--color) !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: var(--color);
  }
}
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: var(--color);
  }
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p,
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg {
  color: #fff !important;
}
nav.nav_on,
nav.nav_on2 {
  background: #fff;
}
nav.nav_on .imgbj,
nav.nav_on2 .imgbj {
  opacity: 0;
}
nav.nav_on .logo .xs,
nav.nav_on2 .logo .xs {
  display: none;
}
nav.nav_on .logo .yc,
nav.nav_on2 .logo .yc {
  display: block;
}
nav.nav_on svg,
nav.nav_on2 svg {
  color: #333;
}
nav.nav_on svg path,
nav.nav_on2 svg path {
  fill: #333;
}
nav.nav_on .nav_top,
nav.nav_on2 .nav_top {
  background: var(--color);
}
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,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg {
  color: #333 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path {
  fill: #333;
}
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: var(--color) !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: var(--color) !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover， > a svg,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover， > a svg {
  color: var(--color) !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: var(--color) !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: var(--color);
}
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: var(--color);
}
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,
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg {
  color: #333 !important;
}
@media (max-width: 1260px) {
  nav.nav_on #g-header .c-switch i,
  nav.nav_on2 #g-header .c-switch i {
    background: #333;
  }
}
nav .imgbj {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  nav .imgbj {
    height: 100%;
  }
}
nav .nav_top {
  transition: all 0.4s;
  background: var(--color);
  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 {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 80px;
  padding: 0 0.5rem;
  margin: auto;
  /* logo */
  /* 导航右侧 */
}
@media screen and (max-width: 1440px) {
  nav .nav_ljbox {
    height: 60px;
  }
}
@media (max-width: 1260px) {
  nav .nav_ljbox {
    width: 100%;
    padding: 0 5%;
  }
}
nav .nav_ljbox .nav_l_box {
  position: relative;
  z-index: 10;
}
nav .nav_ljbox .nav_l_box .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
nav .nav_ljbox .nav_l_box .logo img {
  width: 1.62rem;
  height: auto;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .logo img {
    width: 2.4rem;
  }
}
nav .nav_ljbox .nav_l_box .logo p {
  color: #333;
  margin-left: 20px;
  padding-left: 15px;
  border-left: 1px solid #01c390;
  width: 2.2rem;
  line-height: 1;
}
@media (max-width: 1580px) {
  nav .nav_ljbox .nav_l_box .logo p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .logo p {
    width: auto;
    padding-left: 10px;
    margin-left: 10px;
    font-size: 12px;
  }
}
nav .nav_ljbox .nav_r_box {
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box {
    display: flex;
  }
}
nav .nav_ljbox .nav_r_box .nav_r {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  /* 导航右边内容 */
}
nav .nav_ljbox .nav_r_box .nav_r .navbox {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul {
  display: flex;
  align-items: center;
  height: 100%;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li {
  height: 100%;
  position: relative;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on2 {
  position: initial;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a {
  /* svg{
										color: @color1 !important;
										path{
											fill: @color1 !important;
										}
									} */
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p {
  -webkit-text-decoration-color: currentcolor;
  text-decoration-color: currentcolor;
  -webkit-text-stroke: 1px #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p::after {
  width: 100%;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .xs,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .xs {
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .yc,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .yc {
  display: block;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .img1,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .img1 {
  display: none !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .img2,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .img2 {
  display: block !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
  color: #fff;
  margin: 0 0.23rem;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
    margin: 0 0.1rem;
    color: #333;
  }
}
@media (max-width: 991px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
    font-size: 12px;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > svg {
  width: 6px;
  height: auto;
  position: absolute;
  right: -11px;
  color: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > img {
  width: 8px;
  height: auto;
  margin-left: 10px;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a .img2 {
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  font-family: 'pop-l';
  transition: all 0.4s;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  /* &::after{
										transition: all 0.4s;
										content: '';
										position: absolute;
										bottom: 0;
										width: 0;
										height: 2px;
										left: 50%;
										background: #fff;
										transform: translateX(-50%);
									} */
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box {
  height: 100%;
  display: flex;
  align-items: center;
  /* 语言 */
  /* 搜索 */
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl {
  margin: 0 0.43rem 0 0.73rem;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl {
    display: none;
  }
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_con {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_con a {
  overflow: hidden;
  position: relative;
  font-family: 'pop-l';
  display: flex;
  align-items: center;
  padding: 0 0.24rem;
  border-radius: 100px;
  color: #fff;
  height: 0.37rem;
  transition: all 0.4s;
  background: rgba(0, 0, 0, 0.11);
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_con a {
    height: 0.6rem;
    padding: 0 0.34rem;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_con a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(to right, #043a94, #518ae5);
  background: linear-gradient(to right, #043a94, #518ae5);
  opacity: 0;
  transition: all 0.4s;
  z-index: -1;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_con a:hover::after {
  opacity: 1;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan {
  margin-right: 0.26rem;
  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:hover .nav_lan_box p,
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan:hover .nav_lan_box svg {
  color: var(--color);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg {
  color: #fff;
  margin-right: 0.19rem;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box {
  display: flex;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
  color: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg {
  color: #fff;
  flex-shrink: 0;
  width: 6px;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.05);
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box {
  width: 100%;
  height: 100%;
  padding: 0.05rem 0.2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a {
  margin: 3px 0;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a:hover {
  color: var(--color);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search {
  position: relative;
  width: 2rem;
  /* background: #fff; */
  /* border-radius: 5px; */
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_a {
  display: flex;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_a svg {
  color: #333;
  width: 15px;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_a svg path {
  fill: #333;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form {
  padding: 0 0 0.1rem 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #b2b2b2;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form button {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form button svg {
  color: #164f9a;
  margin-left: 0.1rem;
  width: 19px;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form button svg path {
  fill: #164f9a;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form input {
  width: 100%;
}
nav .g_navsearch {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  color: #222222;
  display: none;
}
nav .g_navsearch .container {
  padding: 0.6rem 0 1rem;
  position: relative;
}
@media (max-width: 767px) {
  nav .g_navsearch .container {
    padding-bottom: 0.6rem;
  }
}
nav .g_navsearch .f_close {
  position: absolute;
  right: 0.8rem;
  top: 0.96rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_close {
    right: 0;
    top: 0.3rem;
    width: 16px;
    height: 16px;
  }
}
nav .g_navsearch .f_close img {
  width: 100%;
  float: left;
}
nav .g_navsearch .f_close img:nth-child(2) {
  display: none;
}
nav .g_navsearch .f_close svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  color: #808080;
}
nav .g_navsearch .f_close svg path {
  fill: #808080;
}
nav .g_navsearch .f_close:hover {
  transform: rotate(90deg);
}
nav .g_navsearch .f_cont {
  max-width: 1000px;
  margin: 0 auto;
}
nav .g_navsearch .f_cont .fz_title {
  margin-bottom: 1.36rem;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .fz_title {
    margin-bottom: 0.6rem;
  }
}
nav .g_navsearch .f_cont .f_form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.2rem;
  margin-bottom: 0.36rem;
  border-bottom: 1px solid rgba(194, 194, 194, 0.15);
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .f_form {
    padding-bottom: 0.3rem;
  }
}
nav .g_navsearch .f_cont .f_form input {
  width: calc(100% - 26px);
  padding-right: 0.26rem;
  padding-left: 10px;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .f_form input {
    width: calc(100% - 0.36rem);
  }
}
nav .g_navsearch .f_cont .f_form input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #555555;
}
nav .g_navsearch .f_cont .f_form input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555555;
}
nav .g_navsearch .f_cont .f_form input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #555555;
}
nav .g_navsearch .f_cont .f_form .f_sub {
  overflow: hidden;
  width: 26px;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .f_form .f_sub {
    width: 0.36rem;
  }
}
nav .g_navsearch .f_cont .f_form .f_sub img {
  float: left;
  width: 100%;
}
nav .g_navsearch .f_cont .f_form .f_sub svg {
  color: #444444;
  width: 100%;
}
nav .g_navsearch .f_cont .f_form .f_sub svg path {
  fill: #444444;
}
nav .g_navsearch .f_cont .f_form .f_sub:hover svg {
  color: var(--color);
}
nav .g_navsearch .f_cont .f_form .f_sub:hover svg path {
  fill: var(--color);
}
nav .g_navsearch .f_cont .f_jut {
  display: flex;
  line-height: 24px;
  align-items: flex-start;
  line-height: 36px;
}
@media (max-width: 1580px) {
  nav .g_navsearch .f_cont .f_jut {
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  nav .g_navsearch .f_cont .f_jut {
    line-height: 26px;
  }
}
nav .g_navsearch .f_cont .f_jut .name {
  fill: 0 0 auto;
  margin-top: 1px;
  display: block;
  padding-right: 0.2rem;
}
nav .g_navsearch .f_cont .f_jut .f_list {
  fill: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
}
nav .g_navsearch .f_cont .f_jut .f_list .li {
  margin-bottom: 10px;
  color: #555555;
  background-color: #f1f1f1;
  border-radius: 18px;
  display: block;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  padding: 0 0.22rem;
  margin-right: 0.16rem;
}
@media (max-width: 1580px) {
  nav .g_navsearch .f_cont .f_jut .f_list .li {
    border-radius: 16px;
  }
}
@media (max-width: 991px) {
  nav .g_navsearch .f_cont .f_jut .f_list .li {
    border-radius: 13px;
  }
}
nav .g_navsearch .f_cont .f_jut .f_list .li:hover {
  color: #ffffff;
  background-color: var(--color);
}
/* 导航各种效果 */
.nav1_none {
  top: -100px !important;
}
.nav2_none {
  top: 100px !important;
}
@media (max-width: 1440px) {
  .nav1_none {
    top: -60px !important;
  }
  .nav2_none {
    top: 60px !important;
  }
}
/* 下拉导航 */
.g_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;
}
.g_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;
}
.g_nav2 > a:hover {
  background: #fff;
}
.g_nav3 {
  display: none;
  position: absolute;
  width: 100%;
  height: calc(100vh);
  top: calc(100% + 1px);
  left: 0;
  background: #fff;
}
/* 移动端导航 */
#g-header {
  display: none;
  /* .c-switch {
		position: relative;
		width: 24px;
		height: 22px;
		cursor: pointer;
		@media @max-sm{
			display: block;
		}
		i{
			position: absolute;
			left: 0;
			display: block;
			width: 100%;
			height: 2px;
			background: #fff;
			-webkit-transition: all 0.4s;
			transition: all 0.4s;
			@media @max-md{
				background: #333;
			}
			&:nth-child(1) {
				top: 0;
			}
			&:nth-child(2) {
				width: 18px;
				top: 50%;
			}
			&:nth-child(3) {
				bottom: 0;
			}
			.c-title-box{
				img{
					width: 10px;
					height: auto;
					margin: 0 0 0 10px;
					float: right;
					display: block;
				}
			}
		}
	} */
}
@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 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  /* right: -100%; */
  left: 0;
  width: 100%;
  top: 100px;
  height: calc(var(--vh) - 100px);
  font-size: 18px;
  line-height: 1.5;
  background: #F1F1F1;
  overflow-y: auto;
  transition: all 0.8s;
  text-align: left;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1260px) {
  #g-header .c-nav2 {
    top: 0;
    height: 100vh;
    padding: 77px 30px 26px;
  }
}
#g-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#g-header .c-nav2 li {
  display: flex;
  align-items: center;
  position: relative;
  height: 60px;
}
#g-header .c-nav2 li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e1e1e1;
  transform-origin: left top;
  transform: scaleX(0);
  transition: 1.2s transform cubic-bezier(0.55, 0, 0.1, 1);
}
#g-header .c-nav2 li.on img,
#g-header .c-nav2 li.on svg {
  transform: rotate(0deg) !important;
}
@media (max-width: 767px) {
  #g-header .c-nav2 li {
    padding: 0 !important;
  }
}
#g-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
#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;
  color: #333;
  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 .c-title-box > span {
  font-size: 10px;
  margin-right: 20px;
  margin-top: 3px;
}
#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: var(--color);
}
#g-header .c-nav2 li ul {
  display: none;
}
#g-header .c-nav2 .mdnav_b .g_a {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.32rem;
}
#g-header .c-nav2 .mdnav_b .g_a a {
  margin-right: 35px;
  margin-bottom: 8px;
  color: #333;
  font-size: 12px;
}
#g-header .c-nav2 .mdnav_b p {
  color: rgba(40, 40, 40, 0.6);
  font-size: 10px;
}
#g-header .head_brg {
  display: block;
  width: 48px;
  height: 48px;
  position: relative;
  transform: translate(25%);
}
@media (max-width: 991px) {
  #g-header .head_brg {
    display: flex;
  }
}
#g-header .head_brg .head_brg_o {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
#g-header .head_brg .head_brg_o span {
  background: #000;
  height: 2px;
  transform-origin: right top;
}
#g-header .head_brg .head_brg_o span:nth-child(1) {
  transition: 0.45s transform 0.45s cubic-bezier(0.55, 0, 0.1, 1), 1.6s background cubic-bezier(0.55, 0, 0.1, 1);
}
#g-header .head_brg .head_brg_o span:nth-child(2) {
  transition: 0.45s transform 0.46s cubic-bezier(0.55, 0, 0.1, 1), 1.6s background cubic-bezier(0.55, 0, 0.1, 1);
}
#g-header .head_brg .head_brg_o span:nth-child(3) {
  transition: 0.45s transform 0.47s cubic-bezier(0.55, 0, 0.1, 1), 1.6s background cubic-bezier(0.55, 0, 0.1, 1);
}
#g-header .head_brg .head_brg_c {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#g-header .head_brg .head_brg_c:before {
  transform: rotate(45deg) scaleX(0);
  transition: 0.45s transform cubic-bezier(0.55, 0, 0.1, 1), 1.6s background cubic-bezier(0.55, 0, 0.1, 1);
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  top: calc(50% - 1px);
  left: 0;
  background: #000;
}
#g-header .head_brg .head_brg_c:after {
  transform: rotate(-45deg) scaleX(0);
  transition: 0.45s transform cubic-bezier(0.55, 0, 0.1, 1), 1.6s background cubic-bezier(0.55, 0, 0.1, 1);
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  top: calc(50% - 1px);
  left: 0;
  background: #000;
}
.c-title-con {
  display: none;
}
.c-open #g-header .c-nav2 {
  opacity: 1;
  pointer-events: initial;
}
.c-open #g-header .c-nav2 .c-nav2-box li::after {
  transition: 1.2s transform 1s cubic-bezier(0.55, 0, 0.1, 1);
  transform: scaleX(1);
}
.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 .head_brg_o span {
  transform: scaleX(0);
}
.c-open #g-header .head_brg_o span:nth-child(1) {
  transition: 0.45s transform cubic-bezier(0.55, 0, 0.1, 1), 1.6s background cubic-bezier(0.55, 0, 0.1, 1);
}
.c-open #g-header .head_brg_o span:nth-child(2) {
  transition: 0.45s transform 0.1s cubic-bezier(0.55, 0, 0.1, 1), 1.6s background cubic-bezier(0.55, 0, 0.1, 1);
}
.c-open #g-header .head_brg_o span:nth-child(3) {
  transition: 0.45s transform 0.2s cubic-bezier(0.55, 0, 0.1, 1), 1.6s background cubic-bezier(0.55, 0, 0.1, 1);
}
.c-open #g-header .head_brg_c:after {
  transform: rotate(-45deg);
  transition: 0.45s transform 0.6s cubic-bezier(0.55, 0, 0.1, 1), 1.6s background cubic-bezier(0.55, 0, 0.1, 1);
}
.c-open #g-header .head_brg_c::before {
  transform: rotate(45deg);
  transition: 0.45s transform 0.6s cubic-bezier(0.55, 0, 0.1, 1), 1.6s background cubic-bezier(0.55, 0, 0.1, 1);
}
.c-open nav .nav_ljbox .nav_l_box .logo .gxs {
  display: none;
}
.c-open nav .nav_ljbox .nav_l_box .logo .gyc {
  display: block;
}
.gyc {
  display: none;
}
/* banner */
@media (max-width: 1260px) {
  .h_banner .h_banner_swi {
    height: 100%;
  }
}
.h_banner .swiper-slide {
  overflow: hidden;
}
.h_banner .h_b_box {
  position: relative;
  width: 100%;
  height: var(--vh);
}
@media (max-width: 1260px) {
  .h_banner .h_b_box {
    height: calc(var(--vh) - 60px);
  }
}
@media (max-width: 767px) {
  .h_banner .h_b_box {
    height: 10rem;
  }
}
.h_banner .h_b_box .h_b_txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.h_banner .h_b_box .h_b_txt .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 0.6rem;
}
.h_banner .h_b_box .h_b_txt .container .txt_t .p1 {
  visibility: hidden;
  color: #fff;
  line-height: 1.2;
  font-weight: bold;
}
.h_banner .h_b_box .h_b_txt .container .txt_t .p2 {
  visibility: hidden;
  margin-top: 0.15rem;
  color: #fff;
}
.h_banner .h_b_box .h_b_txt .container .public-btn {
  visibility: hidden;
  margin-top: 0.56rem;
}
.h_banner .home_pag {
  bottom: 0.66rem;
}
.h_banner .home_pag .swiper-pagination-bullet {
  min-width: 1.8rem;
  height: auto;
  color: #fff;
  background: none;
  border-radius: 0;
  opacity: 1;
  padding-top: 0.16rem;
  position: relative;
  margin: 0 0.1rem;
}
.h_banner .home_pag .swiper-pagination-bullet span {
  opacity: 0.64;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet span {
    font-size: 0.24rem;
  }
}
.h_banner .home_pag .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet::after {
    height: 1px;
  }
}
.h_banner .home_pag .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  width: 0;
  transition: all 0s;
  height: 3px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet::before {
    height: 1px;
  }
}
.h_banner .home_pag .swiper-pagination-bullet-active span {
  opacity: 1;
}
.h_banner .home_pag .swiper-pagination-bullet-active::before {
  width: 100%;
  transition: all 5.8s;
}
.h_b_img {
  width: 100%;
  height: 100%;
  position: relative;
}
.h_b_img > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.h_b_img .img1 {
  z-index: 1;
}
@media (max-width: 767px) {
  .h_b_img .img1 {
    z-index: 1;
    display: none;
  }
}
.h_b_img .img2 {
  z-index: 2;
  display: none;
}
@media (max-width: 767px) {
  .h_b_img .img2 {
    z-index: 2;
    display: block;
  }
}
.h_b_img > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
/* 底部导航 */
.foot_nav {
  margin-right: 1.68rem;
}
.foot_nav a {
  transition: all 0.4s;
}
.foot_nav a:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .foot_nav {
    margin: 0 ;
  }
}
.foot_nav:last-child {
  margin-right: 0;
}
.foot_nav .a_tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}
.foot_nav .a_tit.on svg,
.foot_nav .a_tit.on img {
  transform: rotate(90deg);
}
.foot_nav .a_tit a {
  text-transform: uppercase;
  color: #fff;
}
.foot_nav .a_tit svg,
.foot_nav .a_tit img {
  transition: all 0.4s;
  width: 5px;
  height: auto;
  display: none;
  color: #fff;
}
@media (max-width: 767px) {
  .foot_nav .a_tit svg,
  .foot_nav .a_tit img {
    display: block;
  }
}
.foot_nav .a_tit svg path,
.foot_nav .a_tit img path {
  fill: #fff;
}
@media (max-width: 767px) {
  .foot_nav ul {
    display: none;
    padding-bottom: 0.2rem;
  }
}
.foot_nav ul li {
  margin-bottom: 0.12rem;
}
.foot_nav ul li a {
  color: #999;
}
/* 网站地图 */
.g-mapon {
  padding: 1.1rem 0 3.14rem;
}
.g-mapon .g-tit {
  text-align: center;
}
.g-mapon .g-tit h2 {
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .g-mapon .g-tit h2 {
    font-size: 0.48rem;
  }
}
.g-mapon .box {
  background: #fff;
  margin-top: 0.1rem;
}
.g-mapon .box .item {
  display: flex;
  padding: 0.45rem 0 0.3rem;
  border-bottom: 1px solid #eeeeee;
  position: relative;
}
@media (max-width: 767px) {
  .g-mapon .box .item {
    flex-direction: column;
  }
}
.g-mapon .box .item a:hover {
  color: var(--color) !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;
  }
}
/* 404 */
.notbox404 {
  height: 100vh;
  width: 100%;
  position: relative;
}
.notbox404 .imgbj {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.notbox404 .notbox404_box {
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem 3rem;
}
@media (max-width: 991px) {
  .notbox404 .notbox404_box {
    padding: 0.5rem 5%;
  }
}
.notbox404 .notbox404_box .notbox404_con {
  text-align: center;
}
.notbox404 .notbox404_box .notbox404_con .txt {
  margin: 0.22rem 0 0.46rem;
}
.notbox404 .notbox404_box .notbox404_con .txt p {
  color: rgba(255, 255, 255, 0.5);
}
.notbox404 .notbox404_box .notbox404_con .public-btnbox .g_a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 0.48rem;
  padding: 0 0.35rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .notbox404 .notbox404_box .notbox404_con .public-btnbox .g_a {
    height: 0.7rem;
  }
}
.notbox404 .notbox404_box .notbox404_con .public-btnbox .g_a:hover {
  border-color: var(--color);
}
.notbox404 .notbox404_box .notbox404_con .public-btnbox .g_a:hover span {
  color: var(--color);
}
.notbox404 .notbox404_box .notbox404_con .public-btnbox .g_a span {
  transition: all 0.4s;
}
/* 免责声明 */
.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_title {
  text-align: center;
}
.pub_title h2 {
  font-weight: bold;
  color: #1e304a;
  line-height: 1.2;
}
.pub_title p {
  margin-top: 0.2rem;
  color: #999;
}
.pub_btn {
  min-width: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 0.46rem;
  padding: 0.05rem;
  padding-left: 0.22rem;
  border-radius: 100px;
  /* border-radius: 100px; */
  overflow: hidden;
  background: #fff;
  border: 1px solid transparent;
  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:hover {
  border-color: var(--color);
  background: var(--color);
}
.pub_btn:hover i {
  background: #fff;
}
.pub_btn:hover i svg path,
.pub_btn:hover i img path {
  fill: var(--color);
}
.pub_btn:hover p {
  color: #fff;
}
.pub_btn i {
  margin-left: 0.13rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.36rem;
  height: 0.36rem;
  background: var(--color);
  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.7rem;
    height: 0.7rem;
  }
}
.pub_btn i svg,
.pub_btn i img {
  width: 16.667%;
  height: auto;
}
.pub_btn i svg path,
.pub_btn i img path {
  fill: #111;
  transition: all 0.4s;
}
.pub_btn p {
  position: relative;
  z-index: 5;
  transition: all 0.4s;
}
.pub_btn2 {
  background: none;
  border-color: #111;
}
.pub_btn3 {
  padding-bottom: 4px;
  border-bottom: 1px solid #111;
  display: flex;
  align-items: center;
}
.pub_btn3.pub_btn3_2 {
  padding-bottom: 0;
  border: none;
}
.pub_btn3.pub_btn3_2 p {
  color: #fff;
}
.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;
}
@media screen and (max-width: 1440px) {
  #c-placeholder {
    height: 60px;
  }
}
/* 二级 */
/* .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;color: #666;}
.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;} */
/* 开始 */
.homeon {
  position: relative;
}
.sub_banner {
  overflow: hidden;
  height: 100vh;
  width: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  opacity: 1;
}
.sub_banner .mob_pc {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sub_banner .mob_pc .g_img {
  display: none;
  width: 100%;
  height: 100%;
}
.sub_banner .mob_pc .g_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub_banner .mob_pc .g_video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.sub_banner .sub_banner_txt {
  padding: 1.05rem 0;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}
@media (max-width: 991px) {
  .sub_banner .sub_banner_txt {
    padding: 0.4rem 0;
  }
}
.sub_banner .sub_banner_txt .container2 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.sub_banner .sub_banner_txt .container2 .ban_l {
  display: none;
  width: 50%;
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container2 .ban_l {
    width: 100%;
    text-align: center;
  }
}
.sub_banner .sub_banner_txt .container2 .ban_l .tit {
  margin-bottom: 0.18rem;
}
.sub_banner .sub_banner_txt .container2 .ban_l .sub_banner_p {
  width: 5.24rem;
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container2 .ban_l .sub_banner_p {
    width: 100%;
  }
}
.sub_banner .sub_banner_txt .container2 .ban_l .sub_banner_p p {
  color: #000;
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.4rem;
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container2 .ban_l .gbox {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_a {
  cursor: pointer;
  margin-right: 0.26rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/home_svg4.svg) no-repeat;
  background-size: 100% 100%;
  border-radius: 100px;
  height: 0.48rem;
  min-width: 1.5rem;
  padding: 0 0.2rem;
  color: #333;
  position: relative;
  /* &::before{
							content: '';
							position: absolute;
							width: 100%;
							height: 100%;
							background: -webkit-linear-gradient(to right, #9baecf, #204a9d);
							background: linear-gradient(to right, #9baecf, #204a9d);
							border-radius: 100px;
							top: 0;
							left: 0;
							opacity: 0;
							transition: all 0.4s;
						} */
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_a {
    height: 0.8rem;
    width: 100%;
    padding: 0 0.5rem;
    margin-bottom: 0.2rem;
    background: url(../images/btn.svg) no-repeat;
    background-size: 100% 100%;
    margin-right: 0;
  }
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_a:hover {
  opacity: 0.8;
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_a p {
  background-image: linear-gradient(to right, #213d94 0%, #548ce4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 10;
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_dow {
  display: flex;
  align-items: center;
  margin-right: 0.39rem;
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_dow {
    margin-bottom: 0.2rem;
    margin: 0 0.2rem;
  }
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_dow:hover i .img1 {
  opacity: 0;
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_dow:hover i .img2 {
  opacity: 1;
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_dow:hover p {
  color: var(--color);
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_dow i {
  position: relative;
  width: 0.24rem;
  height: 0.24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 0.1rem;
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_dow i {
    width: 0.34rem;
    height: 0.34rem;
  }
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_dow i svg,
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_dow i img {
  position: absolute;
  transition: all 0.4s;
  width: 100%;
  height: auto;
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_dow i .img2 {
  opacity: 0;
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_dow p {
  transition: all 0.4s;
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_vid {
  cursor: pointer;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_vid {
    margin: 0 0.2rem;
  }
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_vid:hover i .img1 {
  opacity: 0;
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_vid:hover i .img2 {
  opacity: 1;
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_vid:hover p {
  color: var(--color);
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_vid p {
  transition: all 0.4s;
  white-space: nowrap;
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_vid i {
  position: relative;
  width: 0.3rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 0.1rem;
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_vid i svg,
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_vid i img {
  position: absolute;
  transition: all 0.4s;
  width: 100%;
  height: auto;
}
.sub_banner .sub_banner_txt .container2 .ban_l .gbox .g_vid i .img2 {
  opacity: 0;
}
.g_title {
  color: #000;
}
.g_title .g_h2 {
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: bold;
}
.g_title .g_h2 .h2_col {
  /* background: url(../images/home8.png) no-repeat;
			background-size: 100% 100%;
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent; */
  line-height: 1.3;
  background-image: linear-gradient(to right, #518ae5, #213d94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.g_title .g_p {
  margin-top: 0.4rem;
}
.g_title .g_p p {
  color: #45464b;
  font-family: 'pop-l', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.g_title2 {
  text-align: center;
}
.g_title2 .g_h2 {
  align-items: center;
}
.txt_public .tit {
  margin-bottom: 0.4rem;
}
.txt_public .tit .p1 {
  line-height: 1.1;
}
.txt_public .tit .p2 {
  line-height: 1.2;
}
.txt_public .txt_box .p1 {
  margin-bottom: 0.15rem;
}
.txt_public .txt_box .p2 {
  line-height: 1.66666667;
  color: #45464b;
}
.txt_public .txt_box span {
  color: #043a94;
}
.homeon_box .g_bj {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/homenew3.png) no-repeat;
  background-size: cover;
  margin-top: -100vh;
  z-index: -1;
}
.homeon_box .homeon_tw_nr {
  height: 340vh;
}
.homeon_box .homeon_tw {
  height: 340vh;
  margin-top: -80vh;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}
.homeon_box .homeon_tw .homeon_tw_con {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  color: #000;
  overflow: hidden;
}
.homeon_box .homeon_tw .homeon_tw_con .container2 {
  height: 100%;
  position: relative;
}
.homeon_box .homeon_tw .homeon_tw_con .g_json {
  overflow: hidden;
  position: absolute;
  z-index: 100;
  top: 54%;
  left: 50%;
  width: 80%;
  height: auto;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .homeon_box .homeon_tw .homeon_tw_con .g_json {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 146%;
    transform: translate(-54%, 0%);
    top: auto;
    bottom: 0;
  }
}
.homeon_box .homeon_tw .homeon_tw_con .g_json img,
.homeon_box .homeon_tw .homeon_tw_con .g_json video {
  width: 100%;
  object-fit: contain;
}
.homeon_box .homeon_tw .homeon_tw_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .homeon_box .homeon_tw .homeon_tw_box {
    height: 100%;
    flex-direction: column;
    align-items: flex-end;
  }
}
.homeon_box .homeon_tw .homeon_tw_box .txt {
  position: absolute;
  left: 0;
  top: 50%;
  width: 22.8125%;
  transform: translateY(100px);
}
@media (max-width: 991px) {
  .homeon_box .homeon_tw .homeon_tw_box .txt {
    width: 35%;
  }
}
@media (max-width: 767px) {
  .homeon_box .homeon_tw .homeon_tw_box .txt {
    width: 100% !important;
    top: 1.5rem;
  }
}
.homeon_box .homeon_tw .homeon_tw_box .txt.txt1 {
  opacity: 0;
}
.homeon_box .homeon_tw .homeon_tw_box .txt.txt2 {
  left: auto;
  right: -4%;
  pointer-events: none;
  width: 26.25%;
  opacity: 0;
}
@media (max-width: 991px) {
  .homeon_box .homeon_tw .homeon_tw_box .txt.txt2 {
    width: 35%;
  }
}
.homeon_box .homeon_tw .homeon_tw_box .txt.txt2 .txt_public .tit {
  margin-top: 0.3rem;
}
.homeon_box .homeon_tw .homeon_tw_box .txt.txt3 {
  opacity: 0;
  pointer-events: none;
  width: 35.3125%;
}
@media (max-width: 767px) {
  .homeon_box .homeon_tw .homeon_tw_box .txt.txt3 {
    bottom: 0.2rem;
  }
}
.homeon_box .homeon_th {
  height: 100vh;
  margin-top: -100vh;
  opacity: 0;
  pointer-events: none;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}
.homeon_box .homeon_th .container2 {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .homeon_box .homeon_th .container2 {
    flex-direction: column;
  }
}
.homeon_box .homeon_th .container2 .txt {
  position: absolute;
  left: 0;
  top: 14%;
  width: 30.625%;
}
@media (max-width: 1260px) {
  .homeon_box .homeon_th .container2 .txt {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .homeon_box .homeon_th .container2 .txt {
    width: 100%;
    position: relative;
    top: 0;
    margin-top: 2rem;
  }
}
.homeon_box .homeon_th .container2 .img {
  width: 100%;
}
@media (max-width: 991px) {
  .homeon_box .homeon_th .container2 .img {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .homeon_box .homeon_th .container2 .img {
    margin-top: 0.4rem;
  }
}
.homeon_box .homeon_th .container2 .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hfi {
  padding: 1.4rem 0 2.1rem;
}
@media (max-width: 991px) {
  .hfi {
    padding: 1.5rem 0 0.85rem;
  }
}
.hfi .g_title {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .hfi .g_title {
    width: 100%;
  }
}
.hfi .g_title .g_h2 {
  align-items: center;
}
.hfi .g_title .g_h2 span {
  font-weight: 300;
}
.hfi .g_title .g_p {
  padding: 0 2.6rem;
}
@media (max-width: 991px) {
  .hfi .g_title .g_p {
    padding: 0;
  }
}
.hfi .g_title .g_p span {
  color: #043a94;
}
.hfi .box {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 1.11rem;
  /* &.on{
			.item1{
				left: 0;
				opacity: 1;
			}
			.item2{
				right: 0;
				opacity: 1;
			}
		} */
  /* .img{
			img{
				width: (924/1440*100%);
			}
		}
		.item{
			width: 5.06rem;
			transition: all 0.8s;
			position: absolute;
			@media @max-md{
				width: 4rem;
			}
			@media @max-xs{
				position: initial;
				width: 100%;
			}
			.g_t{
				display: flex;
				justify-content: space-between;
				align-items: center;
				width: 100%;
				margin-bottom: 0.25rem;
				.gi{
					margin-right: 0.14rem;
					flex-shrink: 0;
					display: flex;
					align-items: center;
					justify-content: center;
					width: 0.39rem;
					height: auto;
					color: @color1;
					@media @max-md{
						
					}
					@media @max-xs{
						
					}
					svg,img{
						width: 100%;
						height: auto;
						path{
							fill: @color1;
						}
					}
				}
				.gr{
					display: flex;
					align-items: center;
					
					.i1{
						height: 1px;
						background: #bdc0c6;
						width: calc(5.06rem - 0.53rem - 0.33rem);
						@media @max-md{
							width: calc(4rem - 0.53rem - 0.33rem);
						}
						@media @max-xs{
							width: calc(88vw - 0.53rem - 0.33rem);
						}
					}
					.ring{
						position: relative;
						display: flex;
						align-items: center;
						justify-content: center;
						width: 0.33rem;
						height: 0.33rem;
						border-radius: 50%;
						border: 1px solid #b9bcc3;
						.i2{
							width: 3px;
							height: 3px;
							background: #898c91;
							border-radius: 50%;
						}
						.i3{
							position: absolute;
							width: 100%;
							height: 100%;
							border-radius: 50%;
							border: 1px solid #b9bcc3;
							animation:moveq 3s infinite linear;
						}
					}
				}
			}
			.txt{
				width: 3rem;
				text-align: left;
				@media @max-xs{
					width: 100%;
				}
				h3{
					margin-bottom: 0.15rem;
					font-weight: bold;
				}
				p{
					color: #6a6d71;
				}
			}
		}
		.item1{
			
			left: 1rem;
			opacity: 0;
			top: 1.4rem;
			@media @max-sm{
				top: 0.4rem;
			}
		}
		.item2{
			display: flex;
			flex-direction: column;
			align-items: flex-end;
			right: 1rem;
			opacity: 0;
			bottom: 1.4rem;
			@media @max-sm{
				bottom: 0.4rem;
			}
			@media @max-xs{
				margin-top: 0.4rem;
			}
			.g_t{
				display: flex;
				flex-direction: row-reverse;
				.gi{
					margin: 0 0 0 0.14rem;
				}
				.gr{
					flex-direction: row-reverse;
				}
			}
			.txt{
				text-align: right;
			}
		} */
}
@media (max-width: 767px) {
  .hfi .box {
    flex-direction: column;
  }
}
.hfi .box .item {
  position: relative;
  width: calc(50% - 0.24rem);
}
@media (max-width: 767px) {
  .hfi .box .item {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.hfi .box .item .g_vid {
  border-radius: 0.2rem;
  overflow: hidden;
  position: relative;
}
.hfi .box .item .g_vid .public-img:before {
  padding-top: 65.40212443%;
}
.hfi .box .item .g_vid .video_on {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
}
.hfi .box .item .g_vid .video_on .v_on,
.hfi .box .item .g_vid .video_on .v_off {
  cursor: pointer;
  z-index: 10;
  position: absolute;
  right: 0.2rem;
  bottom: 0.2rem;
  /* transform: translate(-50%,-50%); */
  width: 0.54rem;
  height: 0.54rem;
  border-radius: 50%;
  /* background: rgba(0,0,0,0.25); */
}
.hfi .box .item .g_vid .video_on .v_on .video_on_box,
.hfi .box .item .g_vid .video_on .v_off .video_on_box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hfi .box .item .g_vid .video_on .v_on .video_on_box img,
.hfi .box .item .g_vid .video_on .v_off .video_on_box img,
.hfi .box .item .g_vid .video_on .v_on .video_on_box svg,
.hfi .box .item .g_vid .video_on .v_off .video_on_box svg {
  width: 100%;
  height: auto;
}
.hfi .box .item .g_vid .video_on .v_off {
  display: none;
}
.hfi .box .item .g_vid .video_on .v_off .video_on_box img,
.hfi .box .item .g_vid .video_on .v_off .video_on_box svg {
  width: calc(10/54*100%);
  height: auto;
}
.hfi .box .item .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0.32rem 0.45rem;
  z-index: 10;
  color: #fff;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
.hfi .box .item .txt p {
  width: 60%;
  pointer-events: initial;
}
@keyframes moveq {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(2);
    -webkit-transform: scale(2);
    opacity: 0;
  }
}
.hsi {
  overflow: hidden;
  padding: 1.25rem 0 1.5rem;
}
.hsi .g_title .g_h2 {
  justify-content: center;
  flex-direction: row;
}
@media (max-width: 767px) {
  .hsi .g_title .g_h2 {
    flex-direction: column;
  }
}
.hsi .g_title .g_p {
  width: 63.88888889%;
  margin: 0.32rem auto 0;
}
@media (max-width: 991px) {
  .hsi .g_title .g_p {
    width: 100%;
  }
}
.hsi .g_png {
  margin-top: 0.85rem;
  display: flex;
  justify-content: center;
}
.hsi .g_png .item {
  margin: 0 0.58rem;
  position: relative;
}
@media (max-width: 767px) {
  .hsi .g_png .item {
    margin: 0 0.2rem;
  }
}
.hsi .g_png .item:first-child::before {
  content: '';
  position: absolute;
  width: 0.46rem;
  height: 2px;
  background: url(../images/home19.png) no-repeat;
  top: 50%;
  right: calc(100% + 0.35rem);
  display: none;
}
.hsi .g_png .item:first-child::after {
  transform: rotate(0deg);
}
.hsi .g_png .item:last-child::after {
  transform: rotate(0deg);
  display: none;
}
.hsi .g_png .item::after {
  content: '';
  position: absolute;
  width: 0.46rem;
  height: 2px;
  background: url(../images/home19.png) no-repeat;
  top: 50%;
  left: calc(100% + 0.35rem);
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .hsi .g_png .item::after {
    display: none;
  }
}
.hsi .g_png .item img {
  width: 0.95rem;
  height: auto;
}
.hsi .box {
  position: relative;
  width: 9rem;
  margin: auto;
  margin-top: 1.9rem;
}
@media (max-width: 767px) {
  .hsi .box {
    width: 80%;
  }
}
.hsi .box .swi_box {
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  bottom: calc(100% + 0.3rem);
}
.hsi .box .swi_box .gpagi {
  padding: 0 0.2rem;
}
.hsi .box .swi_box .gpagi .gpagination {
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.hsi .box .swi_box .gpagi .gpagination .gnum1 {
  margin-right: 5px;
  line-height: 1;
  font-weight: bold;
}
.hsi .box .swi_box .gpagi .gpagination .gline {
  margin-right: 5px;
  line-height: 1;
}
.hsi .box .swi_box .gpagi .gpagination .gnum2 {
  line-height: 1;
  margin-bottom: 1px;
}
.hsi .box .swi_box .pub_nav {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  bottom: auto;
  margin-top: 0;
  width: 0.42rem;
  height: 0.42rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 10;
  cursor: pointer;
  transition: all 0.4s;
}
.hsi .box .swi_box .pub_nav:after {
  display: none;
}
.hsi .box .swi_box .pub_nav::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to right, #204a9d, #9baecf);
  background: linear-gradient(to right, #204a9d, #9baecf);
  border-radius: 50%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.4s;
}
.hsi .box .swi_box .pub_nav:hover {
  border-color: transparent;
}
.hsi .box .swi_box .pub_nav:hover::before {
  opacity: 1;
}
.hsi .box .swi_box .pub_nav:hover svg {
  color: #fff;
}
.hsi .box .swi_box .pub_nav:hover svg path {
  fill: #fff;
}
.hsi .box .swi_box .pub_nav svg {
  position: relative;
  z-index: 10;
  color: #fff;
  width: 35.71428571%;
  height: auto;
}
.hsi .box .swi_box .pub_nav svg path {
  fill: #999;
  opacity: 1;
  transition: all 0.4s;
}
.hsi .box .swi_box .pub_prev svg {
  transform: rotate(180deg);
}
.hsi .box .g_ring {
  width: 0.44rem;
  height: 0.44rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1000;
  top: 0.26rem;
  right: 0.33rem;
  border: 3px solid #a3a4a3;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .hsi .box .g_ring {
    border: 2px solid #a3a4a3;
  }
}
.hsi .box .g_ring .g_svg {
  position: absolute;
  width: calc(100%);
  height: calc(100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.3);
}
.hsi .box .g_ring .g_svg.on .circle {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 5.8s;
}
.hsi .box .g_ring .g_svg .circle {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  position: relative;
  z-index: 10;
}
.hsi .box .g_ring .kig {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hsi .box .g_ring .kig.on .svg1 {
  opacity: 0;
}
.hsi .box .g_ring .kig.on .svg2 {
  opacity: 1;
}
.hsi .box .g_ring .kig img,
.hsi .box .g_ring .kig svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hsi .box .g_ring .kig .svg1 {
  height: 0.14rem;
  width: auto;
}
.hsi .box .g_ring .kig .svg2 {
  height: 0.12rem;
  width: auto;
  opacity: 0;
}
.hsi .box .swiper {
  overflow: initial;
}
.hsi .box .swiper .swiper-slide {
  transition: all 0.4s;
  opacity: 0.3;
}
.hsi .box .swiper .swiper-slide .public-img:before {
  padding-top: 56.25692137%;
}
.hsi .box .swiper .swiper-slide-active {
  opacity: 1;
}
.hsi .box .swiper .txt {
  margin-top: 0.16rem;
}
.hse {
  position: relative;
  z-index: -1;
}
.hse.on .public-img img {
  opacity: 1;
}
.hse .public-img:before {
  padding-top: 41.66666667%;
}
@media (max-width: 767px) {
  .hse .public-img:before {
    margin-top: 50%;
  }
}
.hse .public-img img {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0s;
}
.hse .box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  color: #fff;
}
.hse .box .g_title {
  width: 5rem;
}
@media (max-width: 767px) {
  .hse .box .g_title {
    width: 100%;
  }
}
.hse .box .g_title .g_h2 {
  color: #fff;
}
.hse .box .g_title .g_p p {
  color: rgba(255, 255, 255, 0.8);
}
footer {
  color: #fff;
  padding: 1.25rem 0 1.35rem;
  background: url(../images/home22.jpg) no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  footer {
    padding: 1rem 0;
  }
}
footer .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer .box {
    flex-direction: column;
  }
}
footer .box .gl {
  width: 26.80555556%;
}
@media (max-width: 767px) {
  footer .box .gl {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
footer .box .gl .foot_wl {
  margin-top: 0.2rem;
}
footer .box .gl .foot_wl a {
  transition: all 0.4s;
  margin-right: 0.4rem;
}
footer .box .gl .foot_wl a.on {
  opacity: 0.5;
}
footer .box .gl .foot_wl a img,
footer .box .gl .foot_wl a svg {
  height: 0.3rem;
}
@media (max-width: 767px) {
  footer .box .gl .foot_wl a img,
  footer .box .gl .foot_wl a svg {
    height: 0.42rem;
  }
}
footer .box .gr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 73.19444444%;
}
@media (max-width: 767px) {
  footer .box .gr {
    width: 100%;
    flex-direction: column;
  }
}
footer .box .gr .foot_add {
  width: 74.38330171%;
  display: flex;
}
@media (max-width: 767px) {
  footer .box .gr .foot_add {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
footer .box .gr .foot_add .item {
  width: 50%;
  padding: 0 0.3rem 0 0.98rem;
  border-left: 1px solid #b3b6bf;
}
@media (max-width: 991px) {
  footer .box .gr .foot_add .item {
    padding: 0 0.2rem 0 0.3rem;
  }
}
footer .box .gr .foot_add .item .p1 {
  margin-bottom: 0.14rem;
}
footer .box .gr .foot_add .item .p2 {
  position: relative;
  display: inline;
  transition: all 0.4s;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 93%, #fff 0%);
  background-size: 0 100%;
  background-repeat: no-repeat;
}
footer .box .gr .foot_add .item .p2:hover {
  background-size: 100% 100%;
}
footer .box .gr .foot_add .item .p2:hover::after {
  display: none;
}
footer .box .gr .foot_add .item .p2::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  left: 0;
  bottom: 0;
}
footer .box .gr .g_pop {
  cursor: pointer;
  width: 2.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  height: 0.6rem;
  background: #fff;
  position: relative;
}
@media (max-width: 767px) {
  footer .box .gr .g_pop {
    height: 0.8rem;
  }
}
footer .box .gr .g_pop:hover::before {
  opacity: 1;
}
footer .box .gr .g_pop:hover p {
  color: #fff;
}
footer .box .gr .g_pop:hover i {
  color: #fff;
  transform: rotate(45deg);
}
footer .box .gr .g_pop::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to right, #9baecf, #204a9d);
  background: linear-gradient(to right, #9baecf, #204a9d);
  border-radius: 100px;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.4s;
}
footer .box .gr .g_pop p {
  position: relative;
  z-index: 10;
  color: #333;
}
footer .box .gr .g_pop i {
  position: relative;
  z-index: 10;
  left: 0;
  transition: all 0.4s;
  margin-left: 0.22rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.12rem;
  height: auto;
  color: #333;
}
@media (max-width: 767px) {
  footer .box .gr .g_pop i {
    width: 0.18rem;
  }
}
footer .box .gr .g_pop i svg,
footer .box .gr .g_pop i img {
  width: 100%;
  height: auto;
}
footer .box .gr .g_pop i svg path,
footer .box .gr .g_pop i img path {
  fill: var(--color);
}
.hon {
  padding: 1.55rem 0 0.9rem;
}
.hon .g_tit {
  text-align: center;
}
.hon .g_tit h2 {
  transform: translate3d(0px, 1.5rem, 0px);
  font-size: 1rem;
  line-height: 1.25;
  opacity: 0;
  color: #fff;
  /* color: transparent;
			background-image: linear-gradient(135deg, rgb(175, 182, 192), white, rgb(175, 182, 192));
			background-image: -webkit-linear-gradient(135deg, rgb(175, 182, 192), white, rgb(175, 182, 192));
			background-clip: text; */
}
@media (max-width: 767px) {
  .hon .g_tit h2 {
    font-size: 0.6rem;
  }
}
.hon .g_json {
  overflow: hidden;
  position: relative;
  z-index: 100;
}
.hon .g_json img,
.hon .g_json video {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .hon .g_json img,
  .hon .g_json video {
    width: 140%;
    margin-left: -20%;
    max-width: initial;
  }
}
.hon .g_json .htr_box #firstLottie {
  width: auto;
  height: 8.4rem;
}
.hon .txt {
  width: 8.6rem;
  margin: 0.15rem auto 0;
}
@media (max-width: 767px) {
  .hon .txt {
    width: 100%;
    margin: 0.35rem 0;
  }
}
.hon .txt p {
  display: inline;
  color: var(--color);
  background: #00cc66;
  background: #6a6d71 -webkit-linear-gradient(left, #333, #333) no-repeat 0 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 0% 100%;
}
.htw {
  padding: 0.9rem 0 2.56rem;
}
.htw .g_title .g_p {
  margin: 0.3rem auto 0;
  width: 63.88888889%;
}
@media (max-width: 991px) {
  .htw .g_title .g_p {
    width: 100%;
  }
}
.htw .box {
  padding: 0 1.2rem;
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .htw .box {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .htw .box {
    flex-direction: column;
  }
}
.htw .box .item {
  margin: 0 0.1rem;
  border-radius: 0.2rem;
  overflow: hidden;
  background: url(../images/home4.png) no-repeat;
  background-size: cover;
  width: 32.25%;
  top: 0;
  transition: all 0.4s;
  position: relative;
}
@media (max-width: 767px) {
  .htw .box .item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.htw .box .item:hover {
  top: -0.1rem;
}
.htw .box .item:hover .public-img img {
  transform: scale(1.05);
}
.htw .box .item .public-img:before {
  padding-top: 157.88113695%;
}
.htw .box .item .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0.34rem 0.38rem;
}
.htw .box .item .txt .txt_box {
  display: flex;
  align-items: center;
}
.htw .box .item .txt .txt_box img,
.htw .box .item .txt .txt_box svg {
  width: 9px;
  height: auto;
  margin-right: 0.13rem;
}
@media (max-width: 1260px) {
  .htw .box .item .txt .txt_box p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .htw .box .item .txt .txt_box p {
    font-size: 14px;
  }
}
.gzbox {
  position: relative;
}
.gzbox .gzbox_line {
  position: absolute;
  left: 0.44rem;
  top: 0;
  height: 100%;
  z-index: 100;
}
@media (max-width: 767px) {
  .gzbox .gzbox_line {
    display: none;
  }
}
.gzbox .gzbox_line .gzbox_line_box {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
  right: 0.45rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gzbox .gzbox_line .gzbox_line_box a {
  cursor: pointer;
  position: relative;
  margin: 0.25rem 0;
}
.gzbox .gzbox_line .gzbox_line_box a.on .g_i .i1 {
  background: var(--color);
}
.gzbox .gzbox_line .gzbox_line_box a.on .g_i .i2 {
  transform: scale(2.6);
}
.gzbox .gzbox_line .gzbox_line_box a.on p {
  opacity: 1;
}
.gzbox .gzbox_line .gzbox_line_box a .g_i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
}
.gzbox .gzbox_line .gzbox_line_box a .g_i i {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color);
  transition: all 0.4s;
}
.gzbox .gzbox_line .gzbox_line_box a .g_i .i1 {
  background: #fff;
  position: relative;
  z-index: 20;
}
.gzbox .gzbox_line .gzbox_line_box a .g_i .i2 {
  border: 1px solid var(--color);
  background: none;
}
.gzbox .gzbox_line .gzbox_line_box a p {
  white-space: nowrap;
  color: var(--color);
  left: calc(100% + 0.2rem);
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  opacity: 0;
  transition: all 0.4s;
}
.gpop {
  position: fixed;
  right: 0.2rem;
  bottom: 0.4rem;
  z-index: 100;
  display: none;
}
@media (max-width: 767px) {
  .gpop {
    right: 10px;
  }
}
.gpop > * {
  transition: all 0.4s;
}
.gpop .pop_a {
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #fff;
  display: block;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  margin-bottom: 16px;
  position: relative;
}
@media (max-width: 767px) {
  .gpop .pop_a {
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
  }
}
.gpop .pop_a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to right, #204a9d, #9baecf);
  background: linear-gradient(to right, #204a9d, #9baecf);
  border-radius: 100px;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.4s;
}
.gpop .pop_a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to right, #204a9d, #9baecf);
  background: linear-gradient(to right, #204a9d, #9baecf);
  opacity: 0.5;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .gpop .pop_a {
    margin-top: 10px;
  }
}
.gpop .pop_a.on {
  border: 1px solid var(--color);
}
.gpop .pop_a.on::before {
  /* opacity: 1; */
}
.gpop .pop_a.on::after {
  opacity: 0.3;
  transform: scale(1.3);
}
.gpop .pop_a.on .pop_text {
  width: auto;
  opacity: 1;
  pointer-events: initial;
}
.gpop .pop_a.on .pop_a_img svg {
  color: var(--color);
}
.gpop .pop_a.on .pop_a_img svg path {
  fill: #fff;
}
.gpop .pop_a.on .pop_a_img .img1 {
  opacity: 0;
}
.gpop .pop_a.on .pop_a_img .img2 {
  opacity: 1;
}
.gpop .pop_a.on .pop_a_img p {
  color: #fff;
}
.gpop .pop_a img {
  z-index: 100;
}
.gpop .pop_a .pop_a_img {
  position: relative;
  z-index: 10;
  width: 52%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.gpop .pop_a .pop_a_img svg,
.gpop .pop_a .pop_a_img img {
  position: absolute;
  color: #000;
  width: 100%;
  height: auto;
  transition: all 0.4s;
}
.gpop .pop_a .pop_a_img svg path,
.gpop .pop_a .pop_a_img img path {
  fill: #969696;
}
.gpop .pop_a .pop_a_img .img2 {
  opacity: 0;
}
.gpop .pop_a .pop_a_img p {
  font-size: 12px;
  margin-top: 5px;
}
.gpop .pop_a .pop_text {
  z-index: 10;
  position: absolute;
  top: 50%;
  right: 0;
  background: #fff;
  height: 50px;
  padding: 5px 55px 5px 5px;
  /* transition: all .6s;
			-moz-transition: all .6s; */
  z-index: 1;
  transform: translateY(-50%) scale(1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  width: 50px;
  opacity: 0;
  pointer-events: none;
  border-radius: 500px;
}
.gpop .pop_a .pop_text .foot_wl {
  display: flex;
}
.gpop .pop_a .pop_text .foot_wl a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  transition: all 0.4s;
}
.gpop .pop_a .pop_text .foot_wl a:hover {
  background: #f2f3f6;
}
.gpop .pop_a .pop_text .foot_wl a.on {
  opacity: 0.5;
}
.gpop .pop_a .pop_text .foot_wl a img,
.gpop .pop_a .pop_text .foot_wl a svg {
  color: #000;
  height: 40%;
}
.gpop .cur2::before {
  display: none;
}
.gpop .cur2::after {
  display: none;
}
.gpop .cur2.on .pop_a_img svg {
  color: #333;
}
/* 弹窗 */
.curtain1 {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none;
}
.curtain1 .mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  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;
  border-radius: 0.2rem;
  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 {
  position: absolute;
  top: 0.36rem;
  right: 0.34rem;
  width: 23px;
  height: 23px;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.4s;
}
.curtain1 .curtain_box .curtain_title .close_tc:hover::before,
.curtain1 .curtain_box .curtain_title .close_tc:hover::after {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .curtain1 .curtain_box .curtain_title .close_tc {
    width: 14px;
    height: 14px;
  }
}
.curtain1 .curtain_box .curtain_title .close_tc img {
  width: 100%;
}
.gord {
  position: relative;
  border-radius: 0.2rem;
  width: 9rem;
}
@media (max-width: 1580px) {
  .gord {
    width: 11rem;
  }
}
@media (max-width: 767px) {
  .gord {
    width: 100%;
  }
}
.gord .g_suc {
  position: fixed;
  width: 4.08rem;
  border-radius: 0.15rem;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 100;
  text-align: center;
  display: none;
  box-shadow: 0 0.26rem 1.11rem rgba(72, 84, 106, 0.09);
  padding: 0.58rem 0.2rem 0.6rem;
}
.gord .g_suc .g_tc {
  position: absolute;
  width: 0.18rem;
  height: 0.18rem;
  top: 0.25rem;
  right: 0.28rem;
  cursor: pointer;
}
.gord .g_suc .g_suc_box {
  text-align: center;
}
.gord .g_suc .g_suc_box img {
  width: 0.78rem;
  height: auto;
  margin-bottom: 0.4rem;
}
.gord .box {
  height: 100%;
  padding: 0.5rem 0.8rem 0.65rem;
  background: url(../images/pop2.png) no-repeat;
  background-size: cover;
  max-height: 90vh;
  overflow: auto;
}
@media (max-width: 767px) {
  .gord .box {
    padding: 0.4rem 0.2rem;
  }
}
.gord .box .g_title .g_h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 767px) {
  .gord .box .g_title .g_h2 {
    flex-direction: column;
  }
}
.gord .box .g_title .g_h2 p {
  margin-left: 0.07rem;
}
.gord .box .g_title .g_p {
  margin-top: 0.2rem;
}
.gord .box .bbox {
  margin-top: 0.58rem;
}
.gord .box .bbox form .inp {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .gord .box .bbox form .inp {
    flex-direction: column;
  }
}
.gord .box .bbox form .inp .inp_box {
  width: calc(50% - 0.2rem);
  margin-bottom: 0.24rem;
}
@media (max-width: 767px) {
  .gord .box .bbox form .inp .inp_box {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.gord .box .bbox form .inp .inp_box .inp_txt p {
  color: #333;
  font-weight: bold;
}
.gord .box .bbox form .inp .inp_box input {
  padding: 0;
  width: 100%;
  height: 0.45rem;
  border-bottom: 1px solid #cccccc;
}
@media (max-width: 767px) {
  .gord .box .bbox form .inp .inp_box input {
    height: 0.8rem;
  }
}
.gord .box .bbox form .inp .inp_box .sot_select_nr .sel_text_x {
  height: 0.5rem;
}
@media (max-width: 767px) {
  .gord .box .bbox form .inp .inp_box .sot_select_nr .sel_text_x {
    height: 0.8rem;
  }
}
.gord .box .bbox form .inp2 .inp_box {
  width: 100%;
}
.gord .box .bbox form .inptext .inp_box {
  margin-bottom: 0.12rem;
}
.gord .box .bbox form .inptext .inp_box textarea {
  border-bottom: 1px solid #cccccc;
  width: 100%;
  height: 1.8rem;
  padding: 0.13rem 0;
}
@media (max-width: 767px) {
  .gord .box .bbox form .inptext .inp_box textarea {
    height: 1rem;
  }
}
.gord .box .bbox form .g_cou .inp_box {
  margin-bottom: 0.1rem;
}
.gord .box .bbox form .g_cou .g_cou_box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.1rem;
  margin-top: 0.15rem;
}
@media (max-width: 767px) {
  .gord .box .bbox form .g_cou .g_cou_box {
    margin: 0.2rem 0 0;
  }
}
.gord .box .bbox form .g_cou .g_cou_box .g_cou_con {
  width: calc(1/3*100%);
  margin-bottom: 0.1rem;
  padding: 0 0.1rem;
}
@media (max-width: 991px) {
  .gord .box .bbox form .g_cou .g_cou_box .g_cou_con {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .gord .box .bbox form .g_cou .g_cou_box .g_cou_con {
    width: 100%;
    padding: 0;
  }
}
.gord .box .bbox form .g_cou .g_cou_box .g_cou_con.on .g_cou_nr {
  border: none;
  background: -webkit-linear-gradient(to right, #204a9d, #9baecf);
  background: linear-gradient(to right, #204a9d, #9baecf);
}
.gord .box .bbox form .g_cou .g_cou_box .g_cou_con.on .g_cou_nr p {
  color: #fff;
}
.gord .box .bbox form .g_cou .g_cou_box .g_cou_con .g_cou_nr {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 5px 20px;
  text-align: center;
}
.gord .box .bbox form .g_cou .g_cou_box .g_cou_con .g_cou_nr p {
  position: relative;
  z-index: 10;
}
.gord .box .bbox form .g_lab {
  margin-bottom: 0.25rem;
  color: #999999;
}
.gord .box .bbox form .g_lab label {
  display: flex;
  align-items: flex-start;
}
.gord .box .bbox form .g_lab label.on i {
  background: #000;
}
.gord .box .bbox form .g_lab label.on i svg {
  opacity: 1;
  color: #fff;
}
.gord .box .bbox form .g_lab i {
  margin-top: 0.04rem;
  flex-shrink: 0;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  width: 17px;
  height: 17px;
  border-radius: 2px;
  color: transparent;
  margin-right: 0.12rem;
}
@media (max-width: 1580px) {
  .gord .box .bbox form .g_lab i {
    width: 14px;
    height: 14px;
    margin-top: 0.06rem;
  }
}
.gord .box .bbox form .g_lab i svg,
.gord .box .bbox form .g_lab i img {
  opacity: 0;
  width: 8px;
  height: auto;
}
.gord .box .bbox form .g_lab i svg path,
.gord .box .bbox form .g_lab i img path {
  filter: none;
}
.gord .box .bbox form .g_lab a {
  color: var(--color);
}
.gord .box .bbox form .g_a {
  display: flex;
  justify-content: flex-end;
}
.gord .box .bbox form .g_btn {
  cursor: pointer;
  width: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 100px;
  height: 0.48rem;
  background: #000;
  padding: 0 0.21rem;
  transition: all 0.4s;
  position: relative;
}
@media (max-width: 767px) {
  .gord .box .bbox form .g_btn {
    height: 0.8rem;
    width: auto;
    padding: 0 0.4rem;
  }
}
.gord .box .bbox form .g_btn:hover {
  background: #fff;
}
.gord .box .bbox form .g_btn:hover p {
  color: #000;
}
.gord .box .bbox form .g_btn:hover i {
  color: #000;
  transform: rotate(45deg);
}
.gord .box .bbox form .g_btn p {
  transition: all 0.4s;
  position: relative;
  z-index: 10;
  color: #fff;
}
.gord .box .bbox form .g_btn i {
  position: relative;
  z-index: 10;
  left: 0;
  transition: all 0.4s;
  margin-left: 0.22rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.12rem;
  height: auto;
  color: #fff;
}
@media (max-width: 767px) {
  .gord .box .bbox form .g_btn i {
    width: 0.18rem;
  }
}
.gord .box .bbox form .g_btn i svg,
.gord .box .bbox form .g_btn i img {
  width: 100%;
  height: auto;
}
.gord .box .bbox form .g_btn i svg path,
.gord .box .bbox form .g_btn i img path {
  fill: var(--color);
}
.hth {
  padding: 1.3rem 0 0.7rem;
}
.hth .g_title .g_h2 .h2_col_box {
  display: flex;
  align-items: center;
}
.hth .g_title .g_h2 .h2_col_box .h2_col {
  margin-right: 0.2rem;
}
.hth .g_title .g_p {
  width: 8.6rem;
  margin: 0.4rem auto 0;
}
@media (max-width: 991px) {
  .hth .g_title .g_p {
    width: 100%;
  }
}
.hth .box {
  margin-top: 0.1rem;
}
.hth .box .g_vid {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.43rem;
}
.hth .box .g_vid.on .it1 {
  opacity: 0;
}
.hth .box .g_vid.on .it2 {
  opacity: 1;
}
.hth .box .g_vid .g_vid_box {
  position: absolute;
  transition: all 0.4s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hth .box .g_vid .g_vid_box img,
.hth .box .g_vid .g_vid_box video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hth .box .g_vid .it2 {
  opacity: 0;
}
.hth .box .hth_b {
  margin-top: 0.15rem;
  width: calc(100% + 1.1rem);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1460px) {
  .hth .box .hth_b {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hth .box .hth_b {
    padding-left: 0.4rem;
    overflow: auto;
  }
}
.hth .box .hth_b .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 20%;
  padding-right: 0.2rem;
}
@media (max-width: 767px) {
  .hth .box .hth_b .item {
    width: 50%;
    flex-shrink: 0;
  }
}
.hth .box .hth_b .item .g_line {
  margin-left: -4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hth .box .hth_b .item .g_line span {
  width: 0.19rem;
  height: 0.19rem;
  border: 1px solid #979ca5;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #9fa3ac;
}
@media (max-width: 767px) {
  .hth .box .hth_b .item .g_line span {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.hth .box .hth_b .item .txt {
  color: #302d27;
  margin-top: 0.28rem;
}
.hth .box .hth_b .item .txt p {
  line-height: 1.33333333;
}
.hth .box .hth_b .item .txt .p2 {
  color: #727377;
}
.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;
}
/* Cookies Policy */
.cook {
  color: #000;
  padding: 1rem 0 1.8rem;
}
.cook .container {
  max-width: 960px;
}
.cook .other_tit {
  margin-bottom: 0.6rem;
}
.cook .other_tit h2 {
  font-weight: bold;
}
.cook .other_tit .tit_b {
  margin-top: 0.42rem;
  display: flex;
  flex-wrap: wrap;
}
.cook .other_tit .tit_b .tit_b_it {
  margin-right: 0.22rem;
  display: flex;
  align-items: center;
}
.cook .other_tit .tit_b .tit_b_it img,
.cook .other_tit .tit_b .tit_b_it svg {
  width: 16px;
  height: auto;
  margin-right: 0.1rem;
}
.cook .other_tit .tit_b .tit_b_it p {
  color: #666;
}
.cook .public-content {
  color: #000;
}
.cook .public-content p {
  color: #666;
}
.cook .public-content .p2 {
  color: #4576d0;
  display: block;
  position: relative;
  padding-left: 16px;
}
.cook .public-content .p2:after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 12px;
}
@media (max-width: 1580px) {
  .cook .public-content .p2:after {
    top: 14px;
  }
}
/* Contact */
.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0.38rem 0;
}
.crumbs p {
  display: flex;
  align-items: center;
}
.crumbs p > a {
  margin-right: 0.16rem;
  color: #999;
}
@media (max-width: 767px) {
  .crumbs p > a {
    font-size: 14px;
    margin-bottom: 0.05rem;
  }
}
.crumbs p:last-child a {
  color: #231f20;
}
.crumbs p:last-child svg,
.crumbs p:last-child i,
.crumbs p:last-child img {
  display: none;
}
.crumbs p svg,
.crumbs p img {
  color: #999;
  width: 10px;
  height: auto;
  margin-right: 0.1rem;
}
.crumbs p svg path,
.crumbs p img path {
  fill: #666;
}
.crumbs p i {
  font-style: initial;
  opacity: 0.7;
  color: #fff;
  margin-right: 0.12rem;
}
.conon {
  background: url(../images/conact2.png) no-repeat;
  background-size: cover;
}
.conon .box {
  padding: 0.2rem 0 1.35rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .conon .box {
    flex-direction: column;
  }
}
.conon .box .gl {
  width: 50%;
}
@media (max-width: 991px) {
  .conon .box .gl {
    width: 100%;
  }
}
.conon .box .gl .g_title .g_h2 p {
  font-weight: 400;
}
.conon .box .gl .g_title .g_p {
  padding-right: 0.8rem;
}
.conon .box .gl .g_com {
  margin-top: 0.58rem;
}
.conon .box .gl .g_com .g_com_it {
  margin-bottom: 0.46rem;
}
.conon .box .gl .g_com .g_com_it h3 {
  margin-bottom: 0.05rem;
}
.conon .box .gl .g_com .g_com_it p {
  text-decoration: underline;
  color: #45464b;
}
.conon .box .gr {
  padding-top: 0.3rem;
  width: 46.875%;
}
@media (max-width: 991px) {
  .conon .box .gr {
    width: 100%;
  }
}
.conon .box .gr form .inp {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .conon .box .gr form .inp {
    flex-direction: column;
  }
}
.conon .box .gr form .inp .inp_box {
  width: calc(50% - 0.2rem);
  margin-bottom: 0.24rem;
}
@media (max-width: 767px) {
  .conon .box .gr form .inp .inp_box {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.conon .box .gr form .inp .inp_box.on input {
  border-color: #26459d;
}
.conon .box .gr form .inp .inp_box .inp_txt p {
  color: #333;
  font-weight: bold;
}
.conon .box .gr form .inp .inp_box input {
  padding: 0;
  width: 100%;
  height: 0.45rem;
  border-bottom: 1px solid #cccccc;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .conon .box .gr form .inp .inp_box input {
    height: 0.8rem;
  }
}
.conon .box .gr form .inp .inp_box .sot_select_nr .sel_text_x {
  height: 0.5rem;
}
@media (max-width: 767px) {
  .conon .box .gr form .inp .inp_box .sot_select_nr .sel_text_x {
    height: 0.8rem;
  }
}
.conon .box .gr form .inp2 .inp_box {
  width: 100%;
}
.conon .box .gr form .inptext .inp_box {
  margin-bottom: 0.12rem;
}
.conon .box .gr form .inptext .inp_box textarea {
  border-bottom: 1px solid #cccccc;
  width: 100%;
  height: 1.1rem;
  padding: 0.13rem 0;
}
@media (max-width: 767px) {
  .conon .box .gr form .inptext .inp_box textarea {
    height: 1rem;
  }
}
.conon .box .gr form .g_lab {
  margin: 0.1rem 0 0.7rem;
  color: #999999;
}
.conon .box .gr form .g_lab label {
  margin-bottom: 0.12rem;
  display: flex;
  align-items: flex-start;
}
.conon .box .gr form .g_lab label.on i {
  background: #000;
}
.conon .box .gr form .g_lab label.on i svg {
  opacity: 1;
  color: #fff;
}
.conon .box .gr form .g_lab i {
  margin-top: 0.02rem;
  flex-shrink: 0;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  width: 17px;
  height: 17px;
  border-radius: 2px;
  color: transparent;
  margin-right: 0.12rem;
}
@media (max-width: 1580px) {
  .conon .box .gr form .g_lab i {
    width: 14px;
    height: 14px;
    margin-top: 0.06rem;
  }
}
.conon .box .gr form .g_lab i svg,
.conon .box .gr form .g_lab i img {
  opacity: 0;
  width: 8px;
  height: auto;
}
.conon .box .gr form .g_lab i svg path,
.conon .box .gr form .g_lab i img path {
  filter: none;
}
.conon .box .gr form .g_lab a {
  color: var(--color);
}
.conon .box .gr form .g_a {
  display: flex;
  justify-content: center;
}
.conon .box .gr form .g_btn {
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  height: 0.48rem;
  background: #000;
  padding: 0 0.21rem;
  transition: all 0.4s;
  position: relative;
}
@media (max-width: 767px) {
  .conon .box .gr form .g_btn {
    height: 0.8rem;
    padding: 0 0.4rem;
  }
}
.conon .box .gr form .g_btn:hover {
  background: #fff;
}
.conon .box .gr form .g_btn:hover p {
  color: #000;
}
.conon .box .gr form .g_btn:hover i {
  color: #000;
  transform: rotate(45deg);
}
.conon .box .gr form .g_btn p {
  transition: all 0.4s;
  position: relative;
  z-index: 10;
  color: #fff;
}
.conon .box .gr form .g_btn i {
  position: relative;
  z-index: 10;
  left: 0;
  transition: all 0.4s;
  margin-left: 0.22rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.12rem;
  height: auto;
  color: #fff;
}
@media (max-width: 767px) {
  .conon .box .gr form .g_btn i {
    width: 0.18rem;
  }
}
.conon .box .gr form .g_btn i svg,
.conon .box .gr form .g_btn i img {
  width: 100%;
  height: auto;
}
.conon .box .gr form .g_btn i svg path,
.conon .box .gr form .g_btn i img path {
  fill: var(--color);
}
.g_suc_pub {
  position: fixed;
  width: 4.08rem;
  border-radius: 0.15rem;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 100;
  text-align: center;
  display: none;
  box-shadow: 0 0.26rem 1.11rem rgba(72, 84, 106, 0.09);
  padding: 0.58rem 0.2rem 0.6rem;
}
.g_suc_pub .g_tc {
  position: absolute;
  width: 0.18rem;
  height: 0.18rem;
  top: 0.25rem;
  right: 0.28rem;
  cursor: pointer;
}
.g_suc_pub .g_suc_box {
  text-align: center;
}
.g_suc_pub .g_suc_box img {
  width: 0.78rem;
  height: auto;
  margin-bottom: 0.4rem;
}
/* 新闻页- 详情 */
.ninfo {
  background: url(../images/news2.png) no-repeat;
  background-size: cover;
}
.ninfo .box {
  padding: 0.3rem 0 1.28rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .ninfo .box {
    flex-direction: column;
  }
}
.ninfo .box .gl {
  width: 66.66666667%;
}
@media (max-width: 991px) {
  .ninfo .box .gl {
    width: 100%;
  }
}
.ninfo .box .gl .other_tit {
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #c7c7c7;
}
.ninfo .box .gl .other_tit h2 {
  line-height: 1.25;
}
.ninfo .box .gl .other_tit .tit_b {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
}
.ninfo .box .gl .other_tit .tit_b .tit_b_it {
  margin-right: 0.22rem;
  display: flex;
  align-items: center;
}
.ninfo .box .gl .other_tit .tit_b .tit_b_it img,
.ninfo .box .gl .other_tit .tit_b .tit_b_it svg {
  width: 16px;
  height: auto;
  margin-right: 0.1rem;
}
.ninfo .box .gl .other_tit .tit_b .tit_b_it p {
  color: #666;
}
.ninfo .box .gl .public-content {
  padding: 0.5rem 0 0;
}
.ninfo .box .gr {
  position: sticky;
  position: -webkit-sticky;
  top: 110px;
  width: 22.22222222%;
  border-radius: 0.1rem;
  background: #fff;
  padding: 0.28rem 0.35rem 0.3rem;
}
@media (max-width: 991px) {
  .ninfo .box .gr {
    width: 100%;
    background: none;
    padding: 0.5rem 0 0;
  }
}
.ninfo .box .gr .ins_det_fxr_box {
  padding-bottom: 0.28rem;
  border-bottom: 1px solid #e7e7e7;
}
.ninfo .box .gr .g_pag a {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
}
.ninfo .box .gr .g_pag a:hover p {
  color: var(--color);
}
.ninfo .box .gr .g_pag a span {
  display: block;
  margin-bottom: 0.08rem;
  color: #7c7c7c;
  text-transform: uppercase;
}
.ninfo .box .gr .g_pag a p {
  transition: all 0.4s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.ninfo .box .gr .g_back {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
}
.ninfo .box .gr .g_back:hover p {
  color: var(--color);
}
.ninfo .box .gr .g_back:hover i {
  color: var(--color);
}
.ninfo .box .gr .g_back i {
  margin-right: 0.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: auto;
  color: #000;
}
@media (max-width: 1260px) {
  .ninfo .box .gr .g_back i {
    width: 9px;
  }
}
.ninfo .box .gr .g_back i svg,
.ninfo .box .gr .g_back i img {
  width: 100%;
  height: auto;
}
.ninfo .box .gr .g_back i svg path,
.ninfo .box .gr .g_back i img path {
  fill: var(--color);
}
.ins_det_fxr_box {
  display: flex;
  align-items: center;
}
.ins_det_fxr_box * {
  transition: all 0.6s;
}
.ins_det_fxr_box > p {
  color: #7c7c7c;
  margin-right: 0.22rem;
}
.ins_det_fxr_box .bshare-custom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ins_det_fxr_box .bshare-custom a {
  width: 0.36rem;
  height: 0.36rem;
  padding: 0;
  border: 1px solid #dedede;
  border-radius: 50%;
  margin: 0 0.1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ins_det_fxr_box .bshare-custom a:hover {
  background: none;
  border: 1px solid var(--color);
  opacity: 1;
}
.ins_det_fxr_box .bshare-custom a:hover svg {
  color: var(--color);
}
.ins_det_fxr_box .bshare-custom a:hover svg path {
  fill: var(--color);
}
.ins_det_fxr_box .bshare-custom a::before {
  content: '' !important;
}
@media (max-width: 767px) {
  .ins_det_fxr_box .bshare-custom a {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.ins_det_fxr_box .bshare-custom a svg {
  color: #989898;
  width: 55%;
  height: auto;
  pointer-events: none;
}
.ins_det_fxr_box .bshare-custom a svg path {
  fill: #fff;
  opacity: 1;
}
.social-share .icon-wechat .wechat-qrcode {
  top: 120% !important;
  left: 50% !important;
  transform: translateX(-50%);
}
.social-share .icon-wechat .wechat-qrcode:after {
  display: none !important;
}
.bsBox {
  box-sizing: initial;
}
/* 新闻页- 列表 */
.newson {
  background: url(../images/news2.png) no-repeat;
  background-size: cover;
}
.newson .box {
  padding-bottom: 1.1rem;
  margin-top: -0.3rem;
}
@media (max-width: 767px) {
  .newson .box {
    margin-top: 0;
  }
}
.newson .box h2 {
  color: #000;
  text-align: center;
  line-height: 1.1;
}
.newson .box .g_hot {
  overflow: hidden;
  border-radius: 0.2rem;
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
}
@media (max-width: 991px) {
  .newson .box .g_hot {
    flex-direction: column;
  }
}
.newson .box .g_hot .gl {
  width: 64.86111111%;
}
@media (max-width: 991px) {
  .newson .box .g_hot .gl {
    width: 100%;
  }
}
.newson .box .g_hot .gl .public-img {
  height: 100%;
}
.newson .box .g_hot .gl .public-img:before {
  padding-top: 52.35546039%;
}
.newson .box .g_hot .gr {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  width: 35.13888889%;
  padding: 0.72rem 0.42rem 0.42rem;
}
@media (max-width: 991px) {
  .newson .box .g_hot .gr {
    width: 100%;
    padding: 0.3rem;
  }
}
.newson .box .g_hot .gr .txt h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.newson .box .g_hot .gr .txt .tit_b_it {
  font-size: 12px;
  margin-top: 0.18rem;
  display: flex;
  align-items: center;
}
.newson .box .g_hot .gr .txt .tit_b_it img,
.newson .box .g_hot .gr .txt .tit_b_it svg {
  width: 16px;
  height: auto;
  margin-right: 0.1rem;
}
.newson .box .g_hot .gr .txt .tit_b_it p {
  color: #666;
}
.newson .box .g_hot .gr .txt .txt_box {
  margin-top: 0.3rem;
}
.newson .box .g_hot .gr .g_more {
  margin-top: 0.3rem;
  border-top: 1px solid #eaebed;
  padding-top: 0.34rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.newson .box .g_hot .gr .g_more p {
  background-image: linear-gradient(to bottom, #213d94 0%, #5089e4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.newson .box .g_hot .gr .g_more i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  border: 1px solid #2657a6;
  border-radius: 50%;
  transition: all 0.4s;
  color: var(--color);
}
.newson .box .g_hot .gr .g_more i:hover {
  transform: rotate(45deg);
}
.newson .box .g_hot .gr .g_more i svg,
.newson .box .g_hot .gr .g_more i img {
  width: 30%;
  height: auto;
}
.newson .box .g_hot .gr .g_more i svg path,
.newson .box .g_hot .gr .g_more i img path {
  fill: var(--color);
}
.newson .box .g_file {
  border-bottom: 1px solid #ecedee;
  padding-bottom: 0.44rem;
  margin: 0.72rem 0 0.65rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .newson .box .g_file {
    flex-direction: column;
  }
}
.newson .box .g_file .gl {
  flex-wrap: wrap;
  display: flex;
}
.newson .box .g_file .gl a {
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 100px;
  padding: 0 0.36rem;
  height: 0.48rem;
  margin-right: 0.07rem;
  border: 1px solid transparent;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .newson .box .g_file .gl a {
    margin-bottom: 0.1rem;
  }
}
.newson .box .g_file .gl a:hover {
  color: var(--color);
}
.newson .box .g_file .gl a.on {
  border: 1px solid #3963bc;
  background-image: linear-gradient(to bottom, #213d94 0%, #5089e4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.newson .box .g_file .gr {
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .newson .box .g_file .gr {
    width: 100%;
    margin-top: 0.3rem;
  }
}
.newson .box .g_file .gr form .search_box {
  width: 290px;
  height: 0.48rem;
  background: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .newson .box .g_file .gr form .search_box {
    height: 0.8rem;
    width: 100%;
  }
}
.newson .box .g_file .gr form .search_box input {
  padding: 0 0.3rem;
  width: 100%;
  color: #333;
}
.newson .box .g_file .gr form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.2rem;
  width: 0.17rem;
  height: auto;
}
@media (max-width: 767px) {
  .newson .box .g_file .gr form .search_box button {
    width: 0.22rem;
  }
}
.newson .box .g_file .gr form .search_box button svg {
  width: 100%;
  height: auto;
}
.newson .box .g_file .gr form .search_box button svg path {
  fill: #9a9a9a;
}
.newson .box .gbox {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.34rem;
}
@media (max-width: 767px) {
  .newson .box .gbox {
    margin: 0 ;
  }
}
.newson .box .gbox .item {
  width: calc(1/3*100%);
  margin-bottom: 0.5rem;
  padding: 0 0.34rem;
}
@media (max-width: 991px) {
  .newson .box .gbox .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .newson .box .gbox .item {
    width: 100%;
    padding: 0;
  }
}
.newson .box .gbox .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
.newson .box .gbox .item .itembox:hover .public-img img {
  transform: scale(1.05);
}
.newson .box .gbox .item .itembox:hover .txt h3 {
  color: var(--color);
}
.newson .box .gbox .item .itembox:hover .txt .g_txt .g_time {
  opacity: 0;
  transform: translateY(-0.2rem);
}
.newson .box .gbox .item .itembox:hover .txt .g_txt .g_p {
  opacity: 1;
  transform: translateY(0rem);
}
.newson .box .gbox .item .itembox .public-img {
  border-radius: 0.2rem;
}
.newson .box .gbox .item .itembox .public-img:before {
  padding-top: 56.09195402%;
}
.newson .box .gbox .item .itembox .txt {
  margin-top: 0.24rem;
  color: #000;
}
.newson .box .gbox .item .itembox .txt h3 {
  transition: all 0.4s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
}
.newson .box .gbox .item .itembox .txt .g_txt {
  margin-top: 0.28rem;
  padding-top: 1px;
  position: relative;
}
.newson .box .gbox .item .itembox .txt .g_txt .g_time {
  margin-top: 0.1rem;
  transition: all 0.4s;
  padding-left: 0.15rem;
  color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .newson .box .gbox .item .itembox .txt .g_txt .g_time {
    opacity: 0 !important;
  }
}
.newson .box .gbox .item .itembox .txt .g_txt .g_time .g_time_box {
  display: flex;
}
.newson .box .gbox .item .itembox .txt .g_txt .g_time .g_time_box:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: -webkit-linear-gradient(to right, #314b9c, #5889de);
  background: linear-gradient(to right, #314b9c, #5889de);
  left: 0;
  top: 8px;
}
@media (max-width: 1580px) {
  .newson .box .gbox .item .itembox .txt .g_txt .g_time .g_time_box:after {
    top: 8px;
    width: 5px;
    height: 5px;
  }
}
.newson .box .gbox .item .itembox .txt .g_txt .g_p {
  transform: translateY(0.2rem);
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .newson .box .gbox .item .itembox .txt .g_txt .g_p {
    transform: translateY(0rem);
    opacity: 1;
  }
}
.newson .box .gbox .item .itembox .txt .g_txt .g_p p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 4.5em;
}
.newson .box .gbox .item .itembox .txt .g_txt .g_p i {
  margin-top: 0.15rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  border: 1px solid #2657a6;
  border-radius: 50%;
  transition: all 0.4s;
  color: var(--color);
}
.newson .box .gbox .item .itembox .txt .g_txt .g_p i:hover {
  transform: rotate(45deg);
}
.newson .box .gbox .item .itembox .txt .g_txt .g_p i svg,
.newson .box .gbox .item .itembox .txt .g_txt .g_p i img {
  width: 30%;
  height: auto;
}
.newson .box .gbox .item .itembox .txt .g_txt .g_p i svg path,
.newson .box .gbox .item .itembox .txt .g_txt .g_p i img path {
  fill: var(--color);
}
.newson .box .page {
  display: flex;
  justify-content: center;
  align-items: center;
}
.newson .box .page a {
  height: 0.5rem;
  width: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.1rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: none;
  border-radius: 50%;
  border: 1px solid transparent;
  color: #999;
  cursor: pointer;
}
@media (max-width: 767px) {
  .newson .box .page a {
    font-size: 0.28rem;
    height: 0.7rem;
    min-width: 0.7rem;
  }
}
.newson .box .page a.prev img,
.newson .box .page a.prev svg {
  transform: rotate(180deg);
}
.newson .box .page a:hover {
  color: var(--color);
  border: 1px solid var(--color);
}
.newson .box .page a:hover p {
  color: #fff;
}
.newson .box .page a:hover svg {
  color: #333;
}
.newson .box .page a:hover svg path {
  fill: #fff;
}
.newson .box .page a img,
.newson .box .page a svg {
  width: 8px;
  height: auto;
  color: #aaaaaa;
}
@media (max-width: 1580px) {
  .newson .box .page a img,
  .newson .box .page a svg {
    width: 7px;
  }
}
@media (max-width: 767px) {
  .newson .box .page a img,
  .newson .box .page a svg {
    width: 6px;
  }
}
.newson .box .page a .img2 {
  display: none;
}
.newson .box .page a svg path {
  fill: #999999;
}
.newson .box .page .active {
  color: var(--color);
  border: 1px solid var(--color);
}
.newson .box .page .active p {
  color: #fff;
}
.newson .box .page > p {
  color: #999;
  margin: 0 0.1rem;
}
.newson .box .page input {
  margin: 0 0.1rem;
  border: 1px solid #999999;
  width: 0.5rem;
  height: 0.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .newson .box .page input {
    display: none;
  }
}
#hi-video-pop .hi-video-box {
  background: #edeef2;
}
#hi-video-pop .hi-video-box .hi-video-wrap {
  width: 100%;
  height: 100%;
  border: none;
  max-width: initial;
}
#hi-video-pop .hi-video-box .hi-video-wrap video {
  object-fit: cover;
}
#hi-video-pop .hi-close {
  margin-left: 0;
  top: 0.33rem;
  right: 0.4rem;
  left: auto;
  box-shadow: none;
  background: #e1e2e6;
  width: 46px;
  height: 46px;
}
#hi-video-pop {
  /* display: block; */
}
.braon {
  height: 350vh;
}
.braon .imgbj {
  width: 100%;
  height: 100vh;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  z-index: 1;
}
.braon .imgbj img,
.braon .imgbj video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.braon .braon_box {
  width: 100%;
  height: 100vh;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  margin-top: -100vh;
  z-index: 10;
}
.braon .bra_ban {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.braon .bra_ban .img {
  width: 100%;
  height: 100%;
}
.braon .bra_ban .img img,
.braon .bra_ban .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.braon .bra_ban .img video {
  /* opacity: 0; */
}
.braon .bra_ban .txt {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.62rem 0.6rem 1.3rem 1.2rem;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .braon .bra_ban .txt {
    padding: 0.6rem 5%;
  }
}
.braon .bra_ban .txt .txt_box {
  width: 450px;
}
.braon .bra_ban .txt .txt_box .wat {
  cursor: pointer;
  margin-top: 0.22rem;
  display: flex;
  align-items: center;
}
.braon .bra_ban .txt .txt_box .wat:hover i {
  transform: rotate(45deg);
}
.braon .bra_ban .txt .txt_box .wat i {
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: auto;
  margin-left: 0.1rem;
  color: #fff;
}
@media (max-width: 767px) {
  .braon .bra_ban .txt .txt_box .wat i {
    width: 10px;
  }
}
.braon .bra_ban .txt .txt_box .wat i svg,
.braon .bra_ban .txt .txt_box .wat i img {
  width: 100%;
  height: auto;
}
.braon .bra_ban .txt .txt_box .wat i svg path,
.braon .bra_ban .txt .txt_box .wat i img path {
  fill: var(--color);
}
.braon .bra_ban .g_ring {
  width: 0.44rem;
  height: 0.44rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1000;
  bottom: 0.68rem;
  right: 0.6rem;
  border: 1.5px solid #a3a4a3;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .braon .bra_ban .g_ring {
    border: 1px solid #a3a4a3;
  }
}
.braon .bra_ban .g_ring .g_svg {
  position: absolute;
  width: calc(100%);
  height: calc(100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
}
.braon .bra_ban .g_ring .g_svg.on .circle {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 5.8s;
}
.braon .bra_ban .g_ring .g_svg .circle {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  position: relative;
  z-index: 10;
  transition: all 0.4s;
}
.braon .bra_ban .g_ring .kig {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.braon .bra_ban .g_ring .kig.on .svg1 {
  opacity: 0;
}
.braon .bra_ban .g_ring .kig.on .svg2 {
  opacity: 1;
}
.braon .bra_ban .g_ring .kig img,
.braon .bra_ban .g_ring .kig svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.braon .bra_ban .g_ring .kig .svg1 {
  height: 0.14rem;
  width: auto;
}
.braon .bra_ban .g_ring .kig .svg2 {
  height: 0.12rem;
  width: auto;
  opacity: 0;
}
.braon .box1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.braon .box1 .box1_con {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8% 0;
  /* justify-content: center; */
}
@media (max-width: 1260px) {
  .braon .box1 .box1_con {
    padding: 12% 0;
  }
}
@media (max-width: 991px) {
  .braon .box1 .box1_con {
    padding: 32% 0;
  }
}
.braon .box1 .box1_con .g_title .g_h2 {
  justify-content: center;
  flex-direction: row;
}
@media (max-width: 767px) {
  .braon .box1 .box1_con .g_title .g_h2 {
    font-size: 28px;
  }
}
.braon .box1 .box1_con .g_title .g_h2 .h2_col {
  margin-left: 0.1rem;
}
.braon .box1 .box1_con .g_title .g_p2 {
  text-align: center;
}
.braon .box1 .box1_con .g_title .g_p2 p {
  color: #000;
  font-size: 0.64rem;
  background: #6a6d71;
  background: #6a6d71 -webkit-linear-gradient(left, #000, #000) no-repeat 0 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 0 100%;
}
@media (max-width: 767px) {
  .braon .box1 .box1_con .g_title .g_p2 p {
    font-size: 24px;
  }
}
.braon .box1 .box1_con .g_title .g_p2 p.on {
  background-size: 100% 100%;
}
.braon .box2 {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.braon .box2 .img2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.braon .box2 .img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.braon .box2 .box2_con {
  position: relative;
  z-index: 10;
  width: 100%;
}
@media (max-width: 991px) {
  .braon .box2 .box2_con {
    width: 90%;
  }
}
.braon .box2 .box2_con .g_p2 {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
}
.braon .box2 .box2_con .g_p2 p {
  padding: 0.1rem 0;
  color: #666;
  transition: all 0.4s;
  /* display: inline;
					background:#6a6d71;
					background:#6a6d71 -webkit-linear-gradient(left,#000,#000) no-repeat 0 0;
					-webkit-text-fill-color:transparent;
					-webkit-background-clip:text;
					background-size: 0 100%; */
}
.braon .box2 .box2_con .g_p2 p.on {
  color: #000;
}
.braon .box4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.braon .box4.on .txt .tit {
  transform: translateY(0rem);
  opacity: 1;
}
.braon .box4.on .txt .g_skip {
  opacity: 0;
}
.braon .box4.on .img img {
  opacity: 1;
}
.braon .box4 .img {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
}
.braon .box4 .img img,
.braon .box4 .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.braon .box4 .img img {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.braon .box4 .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 10;
  padding: 1.2rem 5%;
}
.braon .box4 .txt .g_skip {
  transition: all 0.4s;
  position: absolute;
  height: 0.5rem;
  padding: 0 0.3rem;
  background: #fff;
  border-radius: 100px;
  z-index: 10;
  right: 1.2rem;
  bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .braon .box4 .txt .g_skip {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    height: 0.7rem;
  }
}
.braon .box4 .txt .g_skip i {
  margin-left: 0.15rem;
  padding-left: 0.15rem;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}
.braon .box4 .txt .g_skip i::after {
  content: '';
  position: absolute;
  width: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #d1d1d1;
  height: 0.16rem;
}
.braon .box4 .txt .g_skip i svg,
.braon .box4 .txt .g_skip i img {
  width: 12px;
  height: 12px;
}
@media (max-width: 1260px) {
  .braon .box4 .txt .g_skip i svg,
  .braon .box4 .txt .g_skip i img {
    width: 0.15rem;
  }
}
@media (max-width: 767px) {
  .braon .box4 .txt .g_skip i svg,
  .braon .box4 .txt .g_skip i img {
    width: 0.18rem;
  }
}
.braon .box4 .txt .g_skip i svg path,
.braon .box4 .txt .g_skip i img path {
  fill: var(--color);
}
.braon .box4 .txt .tit {
  transform: translateY(0.5rem);
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .braon .box4 .txt .tit {
    margin-top: 1rem;
  }
}
.braon .box4 .txt .tit .g_t img,
.braon .box4 .txt .tit .g_t svg {
  height: 58px;
}
.braon .box4 .txt .tit .g_t p {
  margin-top: 8px;
}
.braon .box4 .txt .tit .g_t a {
  margin-top: 0.26rem;
  background: url(../images/brand_svg2.svg) no-repeat;
  background-size: 100% 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.18rem;
  min-width: 1.86rem;
  height: 48px;
  transition: all 0.4s;
}
.braon .box4 .txt .tit .g_t a:hover {
  opacity: 0.8;
}
.braon .box4 .txt .tit .g_t a span {
  background-image: linear-gradient(to bottom, #314b9c 0%, #5889de 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.proon {
  padding: 1.2rem 0 0.9rem;
}
.proon .g_title .g_h2 .g_h2_con {
  display: flex;
  align-items: center;
}
.proon .g_title .g_h2 .g_h2_con p {
  margin-left: 0.1rem;
}
.proon .g_title .g_h2 .g_fol {
  line-height: 1.1;
  font-weight: 300;
}
.proon .g_title .g_p {
  padding: 0 2.5rem;
}
.proon .g_title .g_p p {
  margin-bottom: 0.32rem;
}
.proon .g_title .g_p span {
  color: #043a94;
}
.proon .box {
  margin-top: 1.12rem;
  border-radius: 0.2rem;
  overflow: hidden;
  position: relative;
}
.proon .box .public-img:before {
  padding-top: 43.39360223%;
}
.proon .box .video_on {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
}
.proon .box .video_on .v_on,
.proon .box .video_on .v_off {
  cursor: pointer;
  z-index: 10;
  position: absolute;
  right: 3.2rem;
  bottom: 0.33rem;
  /* transform: translate(-50%,-50%); */
  width: 0.54rem;
  height: 0.54rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
}
.proon .box .video_on .v_on .video_on_box,
.proon .box .video_on .v_off .video_on_box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proon .box .video_on .v_on .video_on_box img,
.proon .box .video_on .v_off .video_on_box img,
.proon .box .video_on .v_on .video_on_box svg,
.proon .box .video_on .v_off .video_on_box svg {
  width: calc(12/54*100%);
  height: auto;
}
.proon .box .video_on .v_off {
  display: none;
}
.proon .box .video_on .v_off .video_on_box img,
.proon .box .video_on .v_off .video_on_box svg {
  width: calc(10/54*100%);
  height: auto;
}
.proon .box .proon_con {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0.4rem;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  color: #fff;
  pointer-events: none;
}
.proon .box .proon_con h3 {
  pointer-events: initial;
}
@media (max-width: 767px) {
  .protw {
    padding: 0 0 1rem;
  }
}
.protw .g_title .g_h2 .p2 {
  font-weight: 300;
}
.protw .g_title .g_p {
  width: 74%;
}
@media (max-width: 767px) {
  .protw .g_title .g_p {
    width: 100%;
  }
}
.protw .box .swiper .img {
  overflow: hidden;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0 0.2rem, 0.2rem 0);
}
.protw .box .swiper .img .public-img {
  overflow: hidden;
  border-radius: 0 0.1rem 0 0.1rem;
}
.protw .box .swiper .img .public-img:before {
  padding-top: 56.25692137%;
}
.protw .box .swiper .img .video_on {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
}
.protw .box .swiper .img .video_on .v_on,
.protw .box .swiper .img .video_on .v_off {
  cursor: pointer;
  z-index: 10;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.54rem;
  height: 0.54rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
}
.protw .box .swiper .img .video_on .v_on .video_on_box,
.protw .box .swiper .img .video_on .v_off .video_on_box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.protw .box .swiper .img .video_on .v_on .video_on_box img,
.protw .box .swiper .img .video_on .v_off .video_on_box img,
.protw .box .swiper .img .video_on .v_on .video_on_box svg,
.protw .box .swiper .img .video_on .v_off .video_on_box svg {
  width: 100%;
  height: auto;
}
.protw .box .swiper .img .video_on .v_off {
  display: none;
}
.protw .box .swiper .img .video_on .v_off .video_on_box img,
.protw .box .swiper .img .video_on .v_off .video_on_box svg {
  width: calc(10/54*100%);
  height: auto;
}
.protw .box .swiper .txt {
  margin-top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0.32rem 0.4rem;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  color: #fff;
  pointer-events: none;
}
.protw .box .swiper .txt h3 {
  pointer-events: initial;
}
@media (max-width: 767px) {
  .protw .box .swiper .txt h3 {
    font-size: 14px;
  }
}
.proth {
  padding: 0.2rem 0 1.73rem;
}
.proth .g_title .g_h2 p {
  line-height: 1.1;
  font-weight: 300;
}
.proth .g_title .g_p {
  padding: 0 2.4rem;
}
@media (max-width: 991px) {
  .proth .g_title .g_p {
    padding: 0;
  }
}
.proth form {
  margin: 0.75rem auto 0;
  max-width: 740px;
}
.proth form .inp {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .proth form .inp {
    flex-direction: column;
  }
}
.proth form .inp .inp_box {
  width: calc(50% - 0.2rem);
  margin-bottom: 0.24rem;
}
@media (max-width: 767px) {
  .proth form .inp .inp_box {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.proth form .inp .inp_box.on input {
  border-color: #26459d;
}
.proth form .inp .inp_box .inp_txt p {
  color: #333;
  font-weight: bold;
}
.proth form .inp .inp_box input {
  padding: 0;
  width: 100%;
  height: 0.45rem;
  border-bottom: 1px solid #cccccc;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .proth form .inp .inp_box input {
    height: 0.8rem;
  }
}
.proth form .inp .inp_box .sot_select_nr .sel_text_x {
  height: 0.5rem;
}
@media (max-width: 767px) {
  .proth form .inp .inp_box .sot_select_nr .sel_text_x {
    height: 0.8rem;
  }
}
.proth form .inp2 .inp_box {
  width: 100%;
}
.proth form .inptext .inp_box {
  margin-bottom: 0.12rem;
}
.proth form .inptext .inp_box textarea {
  border-bottom: 1px solid #cccccc;
  width: 100%;
  height: 1.1rem;
  padding: 0.13rem 0;
}
@media (max-width: 767px) {
  .proth form .inptext .inp_box textarea {
    height: 1rem;
  }
}
.proth form .g_lab {
  margin: 0.1rem 0 0.7rem;
  color: #999999;
}
.proth form .g_lab label {
  margin-bottom: 0.12rem;
  display: flex;
  align-items: flex-start;
}
.proth form .g_lab label.on i {
  background: #000;
}
.proth form .g_lab label.on i svg {
  opacity: 1;
  color: #fff;
}
.proth form .g_lab i {
  margin-top: 0.02rem;
  flex-shrink: 0;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  width: 17px;
  height: 17px;
  border-radius: 2px;
  color: transparent;
  margin-right: 0.12rem;
}
@media (max-width: 1580px) {
  .proth form .g_lab i {
    width: 14px;
    height: 14px;
    margin-top: 0.06rem;
  }
}
.proth form .g_lab i svg,
.proth form .g_lab i img {
  opacity: 0;
  width: 8px;
  height: auto;
}
.proth form .g_lab i svg path,
.proth form .g_lab i img path {
  filter: none;
}
.proth form .g_lab a {
  color: var(--color);
}
.proth form .g_a {
  display: flex;
  justify-content: center;
}
.proth form .g_btn {
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  height: 0.48rem;
  background: #000;
  padding: 0 0.21rem;
  transition: all 0.4s;
  position: relative;
}
@media (max-width: 767px) {
  .proth form .g_btn {
    height: 0.8rem;
    padding: 0 0.4rem;
  }
}
.proth form .g_btn:hover {
  background: #fff;
}
.proth form .g_btn:hover p {
  color: #000;
}
.proth form .g_btn:hover i {
  color: #000;
  transform: rotate(45deg);
}
.proth form .g_btn p {
  transition: all 0.4s;
  position: relative;
  z-index: 10;
  color: #fff;
}
.proth form .g_btn i {
  position: relative;
  z-index: 10;
  left: 0;
  transition: all 0.4s;
  margin-left: 0.22rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.12rem;
  height: auto;
  color: #fff;
}
@media (max-width: 767px) {
  .proth form .g_btn i {
    width: 0.18rem;
  }
}
.proth form .g_btn i svg,
.proth form .g_btn i img {
  width: 100%;
  height: auto;
}
.proth form .g_btn i svg path,
.proth form .g_btn i img path {
  fill: var(--color);
}
.case-box4 {
  position: relative;
  padding: 0.9rem 0 1.35rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .case-box4 {
    padding: 1.2rem 0;
  }
}
.case-box4 .container .g_title .g_h2 .g_h2_con {
  display: flex;
  align-items: center;
}
.case-box4 .container .g_title .g_h2 .g_h2_con p {
  margin-left: 0.1rem;
}
.case-box4 .container .g_title .g_h2 .g_fol {
  line-height: 1.1;
  font-weight: 300;
}
.case-box4 .container .g_title .g_p {
  padding: 0 2.5rem;
}
@media (max-width: 991px) {
  .case-box4 .container .g_title .g_p {
    padding: 0;
  }
}
.case-box4 .container .g_title .g_p p {
  margin-bottom: 0.32rem;
}
.case-box4 .container .g_title .g_p span {
  color: #043a94;
}
.case-box4 .casebox4swiper {
  margin-top: 0.7rem;
  overflow: hidden;
  border-radius: 0.12rem;
  position: relative;
}
@media (max-width: 991px) {
  .case-box4 .casebox4swiper {
    overflow: initial;
  }
}
.case-box4 .casebox4swiper .swiper-wrapper {
  width: calc(100% + 0.1rem);
}
@media (max-width: 991px) {
  .case-box4 .casebox4swiper .swiper-wrapper {
    width: 100%;
  }
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide {
  height: 6.22rem;
  width: 20%;
  transition: all 0.5s;
  border-radius: 0.12rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  flex: 1 1 auto;
  margin-left: -0.2rem;
  position: relative;
}
@media (max-width: 1580px) {
  .case-box4 .casebox4swiper .swiper-wrapper .swiper-slide {
    height: 8.22rem;
  }
}
@media (max-width: 991px) {
  .case-box4 .casebox4swiper .swiper-wrapper .swiper-slide {
    margin-left: 0;
    flex: none;
    height: 4.22rem;
  }
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide::before {
  position: absolute;
  content: "";
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .case-box4 .casebox4swiper .swiper-wrapper .swiper-slide::before {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide:nth-child(1) {
  margin-left: 0;
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .bgimg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
}
@media (max-width: 767px) {
  .case-box4 .casebox4swiper .swiper-wrapper .swiper-slide video {
    opacity: 1;
  }
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  object-fit: cover;
  z-index: 4;
  color: #fff;
  padding: 0.32rem 0.4rem;
  line-height: 1.2;
  opacity: 0;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .text {
    line-height: 1.5;
    padding: 0.3rem;
    opacity: 1;
  }
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .btn {
  z-index: 10;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color);
  display: none;
}
@media (max-width: 991px) {
  .case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .btn {
    display: flex;
  }
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .btn img,
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .btn svg {
  width: 0.2rem;
  height: auto;
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .g_ring {
  opacity: 0;
  width: 0.44rem;
  height: 0.44rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1000;
  bottom: 0.2rem;
  right: 0.2rem;
  border: 1.5px solid #a3a4a3;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .g_ring {
    border: 1px solid #a3a4a3;
  }
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .g_ring .g_svg {
  position: absolute;
  width: calc(100%);
  height: calc(100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .g_ring .g_svg.on .circle {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 5.8s;
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .g_ring .g_svg .circle {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  position: relative;
  z-index: 10;
  transition: all 0.4s;
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .g_ring .kig {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .g_ring .kig.on .svg1 {
  opacity: 0;
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .g_ring .kig.on .svg2 {
  opacity: 1;
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .g_ring .kig img,
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .g_ring .kig svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .g_ring .kig .svg1 {
  height: 0.14rem;
  width: auto;
}
.case-box4 .casebox4swiper .swiper-wrapper .swiper-slide .g_ring .kig .svg2 {
  height: 0.12rem;
  width: auto;
  opacity: 0;
}
@media (min-width: 992px) {
  .case-box4 .casebox4swiper .swiper-wrapper .swiper-slide.on3 {
    z-index: 50  !important;
    flex-shrink: 0;
    width: 86.66666667%;
  }
  .case-box4 .casebox4swiper .swiper-wrapper .swiper-slide.on3::before {
    background-color: rgba(0, 0, 0, 0);
  }
  .case-box4 .casebox4swiper .swiper-wrapper .swiper-slide.on3 .text {
    opacity: 1;
  }
  .case-box4 .casebox4swiper .swiper-wrapper .swiper-slide.on3 .g_ring {
    opacity: 1;
  }
}
.case-box4 .swiper-pagination-bullet-active {
  background: var(--color);
}
