@charset "utf-8";
:root {
  --color: #ff6709;
  --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;
}
* ::-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: 'har-r', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.3;
  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: 1600px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.bg-color1 {
  background-color: #fff;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .ptb100 {
    padding-top: 1.2rem;
    padding-bottom: 1.2em;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .pt100 {
    padding-top: 1.2rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .pb100 {
    padding-bottom: 1.2rem;
  }
}
.font16 {
  font-size: 16px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .font16 {
    font-size: 0.28rem;
  }
}
.public-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%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 100px;
  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-nav2 {
  height: calc(100vh - 1.2rem);
}
.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 .g_qie .pub_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-home1 .g_qie .pub_nav:hover svg {
  color: var(--color);
}
.c-home1 .g_qie .pub_prev {
  left: 0.8rem;
}
.c-home1 .g_qie .pub_next {
  right: 0.8rem;
}
.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 .g_pag {
  z-index: 100;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.6rem;
}
.c-home1 .swiper-pagination {
  position: initial;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  bottom: 0.4rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination {
    bottom: 0.6rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet {
  transition: all 0.4s;
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0;
  width: 0.6rem;
  height: 2px;
  vertical-align: top;
  margin: 0 0 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%;
  width: 100%;
  transition-timing-function: linear;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}
/* 自己的公共样式 */
/*过渡*/
a {
  text-decoration: initial;
}
input::-webkit-input-placeholder {
  color: #999;
}
textarea::-webkit-input-placeholder {
  color: #999;
}
/* 字体 */
@font-face {
  font-family: 'har-r';
  src: url(../font/HarmonyOS_Sans_SC.ttf);
}
@font-face {
  font-family: 'har-b';
  src: url(../font/HarmonyOS_Sans_SC_Bold.ttf);
}
@font-face {
  font-family: 'har-l';
  src: url(../font/HarmonyOS_Sans_SC_Light.ttf);
}
@font-face {
  font-family: 'har-m';
  src: url(../font/HarmonyOS_Sans_SC_Medium.ttf);
}
@font-face {
  font-family: 'har-t';
  src: url(../font/HarmonyOS_Sans_SC_Thin.ttf);
}
@font-face {
  font-family: 'har-bl';
  src: url(../font/HarmonyOS_Sans_SC_Black.ttf);
}
@font-face {
  font-family: 'akr-b';
  src: url(../font/AKROBAT-BOLD.TTF);
}
@font-face {
  font-family: 'akr-r';
  src: url(../font/AKROBAT-REGULAR.TTF);
}
.font-r {
  font-family: 'har-r', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-b {
  font-family: 'har-b', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-l {
  font-family: 'har-l', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-m {
  font-family: 'har-m', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-t {
  font-family: 'har-t', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-bl {
  font-family: 'har-bl', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-akr-b {
  font-family: 'akr-b', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-akr-r {
  font-family: 'akr-r', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.img_hover img {
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  /* Firefox 4 */
  -webkit-transition: all 0.8s;
  /* Safari 和 Chrome */
  -o-transition: all 0.8s;
  /* Opera */
}
.pro_show_js_con * {
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  /* Firefox 4 */
  -webkit-transition: all 0.4s;
  /* Safari 和 Chrome */
  -o-transition: all 0.4s;
  /* Opera */
}
/*延迟*/
.sy_t_box:nth-child(2),
.xinw_nr_box:nth-child(2) {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(3),
.xinw_nr_box:nth-child(3) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(4),
.xinw_nr_box:nth-child(4) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(5) {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(6) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  /* Safari 和 Chrome */
}
.team_box:hover {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.wow_up {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* 普通移入效果 */
.mov_08 {
  transition: all 0.4s;
}
.mov_08:hover {
  opacity: 0.8;
}
/* 粘性布局调整 */
.sticky_top {
  top: 0 !important;
}
@media screen and (max-width: 1440px) {
  .sticky_top {
    top: 60px;
  }
}
/* 移入图片切换 */
.img_qh .img2 {
  display: none;
}
.img_qh:hover .img1 {
  display: none;
}
.img_qh:hover .img2 {
  display: block;
}
/* pc和移动端的隐藏显示 */
.xs,
.xs2 {
  display: block;
}
.yc,
.yc2 {
  display: none;
}
@media (max-width: 767px) {
  .xs,
  .xs2 {
    display: none;
  }
  .yc,
  .yc2 {
    display: block;
  }
}
.g_xs {
  display: block;
}
.g_yc {
  display: none;
}
@media (max-width: 767px) {
  .g_xs {
    display: none;
  }
  .g_yc {
    display: block;
  }
}
/* 图片移入效果 */
.img_hover:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
/* 使用swiper 出现闪屏问题 */
.swiper-slide {
  transform: translate3d(0, 0, 0);
  /* overflow: hidden; */
}
/* banner中间小图标 */
.banner_sb {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.5rem;
  width: 18px;
  height: auto;
  z-index: 100;
  object-fit: contain;
  animation: moveh 3s infinite linear;
  -webkit-animation: moveh 3s infinite linear;
}
@keyframes moveh {
  0% {
    bottom: 0.5rem;
  }
  50% {
    bottom: 0.3rem;
  }
  100% {
    bottom: 0.5rem;
  }
}
/* 子页面分隔 */
.gw {
  height: 100px;
  width: 100%;
  background: #fff;
}
.gw.on {
  height: 81px;
}
@media screen and (max-width: 1440px) {
  .gw {
    height: 60px;
  }
  .gw.on {
    height: 61px;
  }
}
.ceshi {
  -webkit-animation-name: fadeInRightSm;
  animation-name: fadeInRightSm;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  animation-delay: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.font14 {
  font-size: 14px;
}
.font16 {
  font-size: 16px;
}
.font18 {
  font-size: 18px;
}
.font20 {
  font-size: 20px;
}
.font22 {
  font-size: 22px;
}
.font24 {
  font-size: 24px;
}
.font26 {
  font-size: 26px;
}
.font28 {
  font-size: 28px;
}
.font30 {
  font-size: 30px;
}
.font32 {
  font-size: 32px;
}
.font34 {
  font-size: 34px;
}
.font36 {
  font-size: 36px;
}
.font38 {
  font-size: 38px;
}
.font40 {
  font-size: 40px;
}
.font42 {
  font-size: 42px;
}
.font44 {
  font-size: 44px;
}
.font46 {
  font-size: 46px;
}
.font48 {
  font-size: 48px;
}
.font50 {
  font-size: 50px;
}
.font52 {
  font-size: 52px;
}
.font54 {
  font-size: 54px;
}
.font56 {
  font-size: 56px;
}
.font60 {
  font-size: 60px;
}
.font80 {
  font-size: 80px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20 {
    font-size: 18px;
  }
  .font22 {
    font-size: 20px;
  }
  .font24 {
    font-size: 22px;
  }
  .font26 {
    font-size: 24px;
  }
  .font28 {
    font-size: 26px;
  }
  .font30 {
    font-size: 28px;
  }
  .font32 {
    font-size: 30px;
  }
  .font34 {
    font-size: 32px;
  }
  .font36 {
    font-size: 34px;
  }
  .font38 {
    font-size: 36px;
  }
  .font40 {
    font-size: 38px;
  }
  .font42,
  .font44 {
    font-size: 40px;
  }
  .font46 {
    font-size: 42px;
  }
  .font48 {
    font-size: 44px;
  }
  .font50 {
    font-size: 46px;
  }
  .font52 {
    font-size: 48px;
  }
  .font54 {
    font-size: 50px;
  }
  .font56 {
    font-size: 52px;
  }
  .font60,
  .font80 {
    font-size: 56px;
  }
}
@media (max-width: 1260px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20 {
    font-size: 18px;
  }
  .font22 {
    font-size: 20px;
  }
  .font24 {
    font-size: 22px;
  }
  .font26 {
    font-size: 24px;
  }
  .font28 {
    font-size: 24px;
  }
  .font30 {
    font-size: 26px;
  }
  .font32 {
    font-size: 28px;
  }
  .font34 {
    font-size: 28px;
  }
  .font36,
  .font38,
  .font40 {
    font-size: 30px;
  }
  .font42,
  .font44 {
    font-size: 32px;
  }
  .font46 {
    font-size: 36px;
  }
  .font48,
  .font50,
  .font52,
  .font54,
  .font56 {
    font-size: 38px;
  }
  .font60,
  .font80 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .font14,
  .font16 {
    font-size: 0.28rem;
  }
  .font18,
  .font20 {
    font-size: 0.3rem;
  }
  .font22,
  .font24,
  .font26,
  .font28 {
    font-size: 0.32rem;
  }
  .font30,
  .font32,
  .font34 {
    font-size: 0.34rem;
  }
  .font36,
  .font38,
  .font40 {
    font-size: 0.4rem;
  }
  .font42,
  .font44,
  .font46 {
    font-size: 0.46rem;
  }
  .font48,
  .font50,
  .font52,
  .font54,
  .font56,
  .font60,
  .font80 {
    font-size: 0.48rem;
  }
}
/*延迟*/
.yanchi1 {
  animation-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
  /* Safari 和 Chrome */
}
.yanchi2 {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}
.yanchi3 {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}
.yanchi4 {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}
.yanchi5 {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}
.yanchi6 {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}
.yanchi7 {
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
}
.yanchi8 {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}
.yanchi9 {
  animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
}
.yanchi10 {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}
.yanchi11 {
  animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
}
.yanchi12 {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}
.yanchi13 {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
}
.yanchi14 {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
}
.yanchi15 {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}
.yanchi16 {
  animation-delay: 1.6s;
  -webkit-animation-delay: 1.6s;
}
.yanchi17 {
  animation-delay: 1.7s;
  -webkit-animation-delay: 1.7s;
}
.yanchi18 {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}
.yanchi19 {
  animation-delay: 1.9s;
  -webkit-animation-delay: 1.9s;
}
.yanchi20 {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}
/* 缓动效果 */
@-webkit-keyframes slideInUp200 {
  from {
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp200 {
  from {
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp200 {
  -webkit-animation-name: slideInUp200;
  animation-name: slideInUp200;
}
@-webkit-keyframes slideInUp100 {
  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp100 {
  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp100 {
  -webkit-animation-name: slideInUp100;
  animation-name: slideInUp100;
}
@-webkit-keyframes slideInUp50 {
  from {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp50 {
  from {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp50 {
  -webkit-animation-name: slideInUp50;
  animation-name: slideInUp50;
}
@-webkit-keyframes slideInUp40 {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp40 {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp40 {
  -webkit-animation-name: slideInUp40;
  animation-name: slideInUp40;
}
@-webkit-keyframes slideInUp30 {
  from {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp30 {
  from {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp30 {
  -webkit-animation-name: slideInUp30;
  animation-name: slideInUp30;
}
@-webkit-keyframes slideInUp20 {
  from {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp20 {
  from {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp20 {
  -webkit-animation-name: slideInUp20;
  animation-name: slideInUp20;
}
@keyframes fadeInDown20 {
  from {
    opacity: 0;
    transform: translate3d(0%, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown20 {
  animation-name: fadeInDown20;
}
.ptb140 {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ptb120 {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.ptb110 {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.ptb90 {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.ptb80 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ptb60 {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 767px) {
  .ptb140 {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .ptb120 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .ptb110 {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
  .ptb100 {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .ptb90 {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .ptb80 {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
}
/* 导航设置 */
/* 默认导航栏颜色 */
/* 默认字体颜色 */
/* 默认svg颜色 */
/* 移入导航栏颜色 */
/* 移入导航栏字体和svg颜色 */
/* 移入文字字体和svg颜色 */
/* 移入文字下划线颜色 */
/* 子页面导航栏颜色 show_nav */
/* 子页面字体颜色 */
/* 子页面svg颜色 */
/* 导航 */
nav {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  background: none;
  /* border-bottom: 1px solid rgba(222,229,236,0.5); */
  /* show_nav 子页面导航class */
  /* nav_on 导航不在顶部后移入加上移除去掉的class */
  /* nav_on2 导航不在顶部后固定的class */
  /* 搜索下拉 */
}
@media (max-width: 1260px) {
  nav {
    background: #fff;
  }
}
nav.show_nav {
  background: #fff;
}
nav.show_nav .nav_top {
  background: none;
}
@media (max-width: 1260px) {
  nav.show_nav .nav_top {
    background: 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: #333;
}
nav.show_nav svg path {
  fill: #333;
}
@media (max-width: 1260px) {
  nav.show_nav svg path {
    fill: #333;
  }
}
nav.show_nav .nav_ljbox .nav_l_box .logo .xs {
  display: none;
}
nav.show_nav .nav_ljbox .nav_l_box .logo .yc {
  display: block;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  color: #333;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg {
  color: #333;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path {
  fill: #333;
}
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: #333 !important;
}
nav.nav_on,
nav.nav_on2 {
  background: #fff;
}
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_l_box .logo .xs,
nav.nav_on2 .nav_ljbox .nav_l_box .logo .xs {
  display: none;
}
nav.nav_on .nav_ljbox .nav_l_box .logo .yc,
nav.nav_on2 .nav_ljbox .nav_l_box .logo .yc {
  display: block;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
  color: #333 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  color: #333 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg,
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 .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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 100px;
  padding: 0 0.63rem 0 1.6rem;
  margin: auto;
  /* logo */
  /* 导航右侧 */
}
@media screen and (max-width: 1440px) {
  nav .nav_ljbox {
    height: 60px;
  }
}
@media (max-width: 1260px) {
  nav .nav_ljbox {
    width: 100%;
    padding: 0 5%;
  }
}
nav .nav_ljbox .nav_l_box .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_l_box .logo .xs {
    display: none;
  }
  nav .nav_ljbox .nav_l_box .logo .yc {
    display: block;
  }
}
nav .nav_ljbox .nav_l_box .logo img {
  width: 1.8rem;
  height: auto;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .logo img {
    width: 2.4rem;
    max-width: initial;
  }
}
nav .nav_ljbox .nav_l_box .logo p {
  color: #333;
  margin-left: 20px;
  padding-left: 15px;
  border-left: 1px solid #01c390;
  width: 2.2rem;
  line-height: 1;
}
@media (max-width: 1580px) {
  nav .nav_ljbox .nav_l_box .logo p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .logo p {
    width: auto;
    padding-left: 10px;
    margin-left: 10px;
    font-size: 12px;
  }
}
nav .nav_ljbox .nav_r_box {
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box {
    display: flex;
  }
}
nav .nav_ljbox .nav_r_box .nav_r {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  /* 导航右边内容 */
}
nav .nav_ljbox .nav_r_box .nav_r .navbox {
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul {
  display: flex;
  align-items: center;
  height: 100%;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li {
  height: 100%;
  position: relative;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on2 {
  position: initial;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p {
  color: var(--color) !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p::after {
  width: 100%;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a svg {
  color: var(--color) !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a svg path {
  fill: var(--color) !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .xs,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .xs {
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .yc,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .yc {
  display: block;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .img1,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .img1 {
  display: none !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .img2,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .img2 {
  display: block !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
  color: #fff;
  margin: 0 0.3rem;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@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 {
  transition: all 0.4s;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  /* &::after{
										transition: all 0.4s;
										content: '';
										position: absolute;
										bottom: 0;
										width: 0;
										height: 2px;
										left: 50%;
										background: @colorNav_hover_line;
										transform: translateX(-50%);
									} */
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr {
  margin-left: 3.84rem;
}
@media (max-width: 991px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr {
    margin-left: 0.3rem;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box {
  height: 100%;
  display: flex;
  align-items: center;
  /* 语言 */
  /* 搜索 */
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl {
  margin: 0 0.43rem 0 0.73rem;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan {
  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 {
  margin-left: 0.14rem;
  color: #fff;
  flex-shrink: 0;
  width: 7px;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel {
  position: absolute;
  top: 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: auto;
  top: calc(100%);
  left: 0;
  background: #fff;
}
.about_nav {
  position: relative;
  padding: 0.78rem 0 1.4rem;
}
.about_nav .imgbj {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.about_nav .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  z-index: 1;
}
.about_nav .imgbj img.on {
  position: relative;
  opacity: 1;
  z-index: 10;
}
.about_nav .container {
  position: relative;
  z-index: 10;
  color: #fff;
  display: flex;
  padding-right: 0.2rem;
}
.about_nav .container .g_del {
  cursor: pointer;
  z-index: 10;
  right: 0;
  top: 0;
  position: absolute;
  width: 14px;
  height: auto;
}
.about_nav .container .g_del svg,
.about_nav .container .g_del img {
  width: 100%;
  color: #fff;
}
.about_nav .container .about_nav_tw {
  margin-right: 0.4rem;
  display: flex;
  flex-direction: column;
  width: 222px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.about_nav .container .about_nav_tw a {
  transition: all 0.4s;
  margin-bottom: 0.15rem;
}
.about_nav .container .about_nav_tw a:last-child {
  margin-bottom: 0;
}
.about_nav .container .about_nav_tw a.on {
  color: var(--color);
  border-right: 1px solid #fff;
}
.about_nav .container .about_nav_th .item {
  display: none;
  width: 3.85rem;
}
.about_nav .container .about_nav_th .item:first-child {
  display: block;
}
.about_nav .container .about_nav_th .item .g_p p {
  cursor: default;
  line-height: 1.71428571;
}
/* 移动端导航 */
#g-header {
  display: none;
}
@media (max-width: 1260px) {
  #g-header {
    display: flex;
    width: 50px;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    margin-right: -1rem;
    padding-right: 1rem;
    box-sizing: content-box;
  }
}
#g-header .c-nav2 {
  position: absolute;
  right: -100%;
  left: auto;
  width: 100%;
  top: 100px;
  height: calc(var(--vh) - 100px);
  font-size: 14px;
  line-height: 50px;
  background: #F1F1F1;
  overflow-y: auto;
  transition: all 0.8s;
  text-align: left;
}
@media (max-width: 1260px) {
  #g-header .c-nav2 {
    height: calc(var(--vh) - 60px);
    top: 60px;
  }
}
#g-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#g-header .c-nav2 li {
  padding: 0 0.5rem;
  border-top: 1px solid #fff;
}
#g-header .c-nav2 li.on img,
#g-header .c-nav2 li.on svg {
  transform: rotate(0deg) !important;
}
@media (max-width: 767px) {
  #g-header .c-nav2 li {
    padding: 0 0.5rem;
  }
}
#g-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#g-header .c-nav2 li .c-title-box img,
#g-header .c-nav2 li .c-title-box svg {
  transform: rotate(-90deg);
  width: 0.3rem;
  height: auto;
  transition: all 0.3s;
  margin: 0 0 0 10px;
  float: right;
  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 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-switch {
  position: relative;
  width: 24px;
  height: 22px;
  cursor: pointer;
}
@media (max-width: 991px) {
  #g-header .c-switch {
    display: block;
  }
}
#g-header .c-switch i {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 1260px) {
  #g-header .c-switch i {
    background: #333;
  }
}
#g-header .c-switch i:nth-child(1) {
  top: 0;
}
#g-header .c-switch i:nth-child(2) {
  width: 18px;
  top: 50%;
}
#g-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#g-header .c-switch i .c-title-box img {
  width: 10px;
  height: auto;
  margin: 0 0 0 10px;
  float: right;
  display: block;
}
.c-title-con {
  display: none;
}
.c-open #g-header .c-nav2 {
  right: 0;
}
.c-open #g-header .c-nav2 .c-title-con {
  overflow: hidden;
  height: auto;
  display: none;
  padding-bottom: 0.25rem;
}
.c-open #g-header .c-nav2 .c-title-con > a {
  color: #999 !important;
  display: block;
  padding: 0.15rem 0 0.15rem 20px;
  line-height: 1.5;
}
.c-open #g-header .c-switch i:nth-child(2) {
  opacity: 0;
}
.c-open #g-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-open #g-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* banner */
@media (max-width: 1260px) {
  .h_banner .h_banner_swi {
    height: 100%;
  }
}
.h_banner .swiper-slide {
  overflow: hidden;
}
.h_banner .h_b_box {
  position: relative;
  width: 100%;
  height: var(--vh);
}
@media (max-width: 1260px) {
  .h_banner .h_b_box {
    height: calc(var(--vh) - 60px);
  }
}
@media (max-width: 767px) {
  .h_banner .h_b_box {
    height: 10rem;
  }
}
.h_banner .h_b_box .h_b_txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.h_banner .h_b_box .h_b_txt .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 0.6rem;
}
.h_banner .h_b_box .h_b_txt .container .txt_t .p1 {
  visibility: hidden;
  color: #fff;
  line-height: 1.2;
  font-weight: bold;
}
.h_banner .h_b_box .h_b_txt .container .txt_t .p2 {
  visibility: hidden;
  margin-top: 0.15rem;
  color: #fff;
}
.h_banner .h_b_box .h_b_txt .container .public-btn {
  visibility: hidden;
  margin-top: 0.56rem;
}
.h_banner .home_pag {
  bottom: 0.66rem;
}
.h_banner .home_pag .swiper-pagination-bullet {
  min-width: 1.8rem;
  height: auto;
  color: #fff;
  background: none;
  border-radius: 0;
  opacity: 1;
  padding-top: 0.16rem;
  position: relative;
  margin: 0 0.1rem;
}
.h_banner .home_pag .swiper-pagination-bullet span {
  opacity: 0.64;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet span {
    font-size: 0.24rem;
  }
}
.h_banner .home_pag .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet::after {
    height: 1px;
  }
}
.h_banner .home_pag .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  width: 0;
  transition: all 0s;
  height: 3px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet::before {
    height: 1px;
  }
}
.h_banner .home_pag .swiper-pagination-bullet-active span {
  opacity: 1;
}
.h_banner .home_pag .swiper-pagination-bullet-active::before {
  width: 100%;
  transition: all 5.8s;
}
.h_b_img {
  width: 100%;
  height: 100%;
  position: relative;
}
.h_b_img > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.h_b_img .img1 {
  z-index: 1;
}
@media (max-width: 767px) {
  .h_b_img .img1 {
    z-index: 1;
    display: none;
  }
}
.h_b_img .img2 {
  z-index: 2;
  display: none;
}
@media (max-width: 767px) {
  .h_b_img .img2 {
    z-index: 2;
    display: block;
  }
}
.h_b_img > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
/* 网站地图 */
.g-mapon {
  padding: 0.5rem 0 1.34rem;
}
.g-mapon .g-tit h2 {
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .g-mapon .g-tit h2 {
    font-size: 0.48rem;
  }
}
.g-mapon .box {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  margin-top: 0.36rem;
  padding-top: 0.78rem;
}
@media (max-width: 1260px) {
  .g-mapon .box {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.g-mapon .box .item {
  padding: 0 0.2rem;
  position: relative;
}
@media (max-width: 1260px) {
  .g-mapon .box .item {
    width: 25%;
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 767px) {
  .g-mapon .box .item {
    flex-direction: column;
    width: 100%;
  }
}
.g-mapon .box .item a {
  transition: all 0.4s;
}
.g-mapon .box .item a:hover {
  color: var(--color) !important;
}
.g-mapon .box .item .g-la {
  margin-bottom: 0.15rem;
  position: relative;
  color: #222;
}
.g-mapon .box .item .g-la::after {
  content: '/';
  position: absolute;
  width: auto;
  height: auto;
  left: -0.2rem;
  top: 7px;
  font-family: inherit;
  color: #ff6709;
  font-size: 14px;
}
@media (max-width: 1580px) {
  .g-mapon .box .item .g-la::after {
    top: 5px;
  }
}
@media (max-width: 767px) {
  .g-mapon .box .item .g-la::after {
    top: 3px;
  }
}
@media (max-width: 767px) {
  .g-mapon .box .item .g-la {
    margin-bottom: 0.2rem;
    font-size: 0.32rem;
  }
}
.g-mapon .box .item .g-twa {
  margin-top: 0.15rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.g-mapon .box .item .g-twa a {
  margin-bottom: 0.1rem;
  color: #666;
}
@media (max-width: 767px) {
  .g-mapon .box .item .g-twa a {
    min-width: auto;
  }
}
/* 面包屑 */
.crumbs_box {
  padding: 0.28rem 0;
}
.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.crumbs p {
  display: flex;
  align-items: center;
}
.crumbs p > a {
  margin-right: 0.1rem;
  color: #999;
}
@media (max-width: 767px) {
  .crumbs p > a {
    font-size: 14px;
    margin-bottom: 0.05rem;
  }
}
.crumbs p:last-child {
  /* a{
				color: #333;
			} */
}
.crumbs p:last-child svg,
.crumbs p:last-child i {
  display: none;
}
.crumbs p svg {
  width: 5px;
  height: auto;
  margin-right: 0.16rem;
}
.crumbs p svg path {
  fill: #666;
}
.crumbs p i {
  font-style: initial;
  opacity: 0.7;
  color: #999;
  margin-right: 0.12rem;
}
/* 404 */
.notbox404 {
  padding: 0.65rem 0 1.53rem;
}
.notbox404 .notbox404_box {
  text-align: center;
  width: 90%;
  margin: auto;
}
.notbox404 .notbox404_box > img {
  margin-bottom: 0.75rem;
  width: 8.3rem;
}
@media (max-width: 991px) {
  .notbox404 .notbox404_box > img {
    width: 90%;
  }
}
.notbox404 .notbox404_box .notbox404_con .txt {
  margin: 0 0 0.6rem;
}
@media (max-width: 767px) {
  .notbox404 .notbox404_box .notbox404_con .txt br {
    display: none;
  }
}
.notbox404 .notbox404_box .notbox404_con .txt span {
  font-size: 24px;
  font-weight: bold;
  margin: 0 5px;
  color: var(--color);
}
@media (max-width: 767px) {
  .notbox404 .notbox404_box .notbox404_con .txt span {
    font-size: 18px;
  }
}
/* 免责声明 */
.g-pri {
  padding: 0.5rem 0 1.4rem;
}
.g-pri .box .tit {
  margin-bottom: 0.35rem;
  text-align: center;
}
.g-pri .box .tit h2 {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0.35rem;
}
.g-pri .box .tit .g-p {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .g-pri .box .tit .g-p {
    flex-direction: column;
  }
}
.g-pri .box .tit .g-p p {
  color: #999;
  margin: 0 0.18rem;
}
@media (max-width: 767px) {
  .g-pri .box .tit .g-p p {
    margin: 0 0 0.18rem;
  }
}
.g-pri .box .public-content {
  color: #222;
  line-height: 1.75;
}
.g-pri .box .public-content h3 {
  font-size: 24px;
}
.g-pri .box .public-content p {
  color: #666;
  margin-bottom: 0.1rem;
}
.g-pri .box .public-content .p1 {
  display: block;
  position: relative;
  padding-left: 20px;
}
.g-pri .box .public-content .p1:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 12px;
}
@media (max-width: 1580px) {
  .g-pri .box .public-content .p1:after {
    top: 10px;
  }
}
@media (max-width: 767px) {
  .g-pri .box .public-content .p1:after {
    top: 9px;
  }
}
.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.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 0.5rem;
  padding: 0 0.26rem;
  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.pub_btn2 {
  background: var(--color);
}
.pub_btn.pub_btn2:hover {
  background: #fff;
}
.pub_btn.pub_btn2:hover p {
  color: var(--color);
}
.pub_btn.pub_btn2:hover i svg {
  color: var(--color);
}
.pub_btn.pub_btn2 p {
  color: #fff;
}
.pub_btn.pub_btn2 i svg {
  color: #fff;
}
.pub_btn.pub_btn3 {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
}
.pub_btn.pub_btn3 p {
  color: #fff;
}
.pub_btn.pub_btn3 i {
  margin-left: 0.09rem;
  flex-shrink: 0;
  display: flex;
  width: 6px;
  height: auto;
  color: #fff;
}
.pub_btn.pub_btn3 i svg,
.pub_btn.pub_btn3 i img {
  width: 100%;
  height: auto;
}
.pub_btn.pub_btn3 i svg path,
.pub_btn.pub_btn3 i img path {
  fill: #111;
}
.pub_btn.pub_btn4 {
  background: none;
  border: 1px solid var(--color);
  display: inline-flex;
  align-items: center;
}
.pub_btn.pub_btn4 p {
  color: var(--color);
}
.pub_btn.pub_btn4 i {
  margin-left: 0.09rem;
  flex-shrink: 0;
  display: flex;
  width: 6px;
  height: auto;
  color: var(--color);
}
.pub_btn.pub_btn4 i svg,
.pub_btn.pub_btn4 i img {
  width: 100%;
  height: auto;
}
.pub_btn.pub_btn4 i svg path,
.pub_btn.pub_btn4 i img path {
  fill: #111;
}
.pub_btn:hover {
  border-color: var(--color);
  background: var(--color);
}
.pub_btn:hover i {
  color: #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.15rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5px;
  height: auto;
  color: #222;
}
.pub_btn i svg,
.pub_btn i img {
  width: 100%;
  height: auto;
}
.pub_btn i svg path,
.pub_btn i img path {
  fill: #111;
  transition: all 0.4s;
}
.pub_btn p {
  transition: all 0.4s;
  position: relative;
  z-index: 5;
  color: #222;
}
.pub2_btn {
  display: inline-flex;
  align-items: center;
  transition: all 0.4s;
}
.pub2_btn:hover {
  opacity: 0.8;
}
.pub2_btn.pub2_btn2:hover {
  opacity: 1;
}
.pub2_btn.pub2_btn2:hover i {
  background: var(--color);
}
.pub2_btn.pub2_btn2:hover i svg {
  color: #fff;
}
.pub2_btn.pub2_btn2:hover p {
  color: var(--color);
}
.pub2_btn.pub2_btn2 i {
  background: #fff;
}
.pub2_btn.pub2_btn2 i svg {
  color: var(--color);
}
.pub2_btn.pub2_btn2 p {
  color: #fff;
}
.pub2_btn i {
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--color);
  border-radius: 50%;
}
@media (max-width: 1580px) {
  .pub2_btn i {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media (max-width: 767px) {
  .pub2_btn i {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.pub2_btn i svg,
.pub2_btn i img {
  color: #fff;
  width: 16.667%;
  height: auto;
}
.pub2_btn i svg path,
.pub2_btn i img path {
  fill: #111;
  transition: all 0.4s;
}
.pub2_btn p {
  margin-left: 0.15rem;
  color: var(--color);
  transition: all 0.4s;
}
@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;} */
/* 开始 */
.g_qie {
  display: flex;
  align-items: center;
}
.g_qie .pub_nav {
  width: 0.6rem;
  height: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ddd;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0 0 0 0.1rem;
  position: relative;
  z-index: 10;
  cursor: pointer;
  color: #ddd;
  transition: all 0.4s;
}
.g_qie .pub_nav:after {
  display: none;
}
.g_qie .pub_nav::before {
  content: '';
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 0;
  top: 0;
  border: 1px solid transparent;
  transition: all 0.4s;
  border-radius: 50%;
}
.g_qie .pub_nav:hover {
  color: var(--color);
  border-color: var(--color);
}
.g_qie .pub_nav:hover::before {
  border-color: var(--color);
}
.g_qie .pub_nav:hover svg path {
  fill: #fff;
}
.g_qie .pub_nav svg {
  width: 10%;
  height: auto;
}
.g_qie .pub_nav svg path {
  fill: #ddd;
  opacity: 1;
  transition: all 0.4s;
}
.g_qie .pub_prev svg {
  transform: rotate(180deg);
}
.g_title_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}
.g_title.g_title2 {
  text-align: center;
}
.g_title h2 {
  text-transform: uppercase;
}
.hon {
  padding: 1.05rem 0 1.15rem;
}
.hon .g_qie .pub_nav {
  opacity: 0.9;
}
.hon > .container {
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.hon > .container .g_title_box {
  margin-bottom: 0;
}
.hon > .container .g_title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .hon > .container .tit_r {
    display: none;
  }
}
.hon .box {
  overflow: hidden;
}
.hon .box .swiper {
  overflow: initial;
}
.hon .box .swiper .hon_box {
  overflow: hidden;
  position: relative;
}
.hon .box .swiper .hon_box:hover .g_bjpng {
  opacity: 1;
  transform: translate(-50%, 0);
}
.hon .box .swiper .hon_box:hover .pub_btn {
  border-color: var(--color);
  background: var(--color);
}
.hon .box .swiper .hon_box:hover .pub_btn i {
  color: #fff;
}
.hon .box .swiper .hon_box:hover .pub_btn i svg path,
.hon .box .swiper .hon_box:hover .pub_btn i img path {
  fill: var(--color);
}
.hon .box .swiper .hon_box:hover .pub_btn p {
  color: #fff;
}
.hon .box .swiper .hon_box .public-img:before {
  padding-top: 125.47528517%;
}
.hon .box .swiper .hon_box .txt {
  color: #fff;
  padding: 0.4rem;
  z-index: 10;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 1260px) {
  .hon .box .swiper .hon_box .txt {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }
}
.hon .box .swiper .hon_box .txt .gl {
  position: relative;
  z-index: 20;
}
.hon .box .swiper .hon_box .txt .gl h3 {
  margin-bottom: 0.2rem;
}
.hon .box .swiper .hon_box .txt .gl .g_lab {
  display: flex;
  flex-wrap: wrap;
}
.hon .box .swiper .hon_box .txt .gl .g_lab .g_it {
  margin-bottom: 0.15rem;
  width: 1.2rem;
}
@media (max-width: 767px) {
  .hon .box .swiper .hon_box .txt .gl .g_lab .g_it {
    width: auto;
  }
}
.hon .box .swiper .hon_box .txt .gl .g_lab .g_it:nth-child(2n-1) {
  margin-right: 0.45rem;
}
.hon .box .swiper .hon_box .txt .gl .g_lab .g_it p {
  margin-top: 0.05rem;
}
.hon .box .swiper .hon_box .txt .gl .g_p {
  margin-top: 0.2rem;
}
.hon .box .swiper .hon_box .txt .gl .g_p p {
  opacity: 0.25;
}
.hon .box .swiper .hon_box .txt .gr {
  flex-shrink: 0;
  margin-left: 0.1rem;
}
@media (max-width: 1260px) {
  .hon .box .swiper .hon_box .txt .gr {
    margin: 0.2rem 0 0 0;
  }
}
.g_bjpng {
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 1rem);
  transition: all 0.4s;
  z-index: 10;
  bottom: -0.9rem;
  left: 50%;
  position: absolute;
}
.g_bjpng img {
  opacity: 0.55;
  width: 6.66rem;
  height: auto;
  max-width: initial;
}
/* 底部 */
footer {
  overflow: hidden;
  background: url(../images/home15.jpg) no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  footer {
    background: url(../images/home15.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
  }
}
footer .container {
  color: #fff;
  padding: 0.6rem 0 0.5rem;
}
footer .container .gt {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.05rem;
  margin-bottom: 0.7rem;
}
@media (max-width: 767px) {
  footer .container .gt {
    margin: 0 ;
  }
}
footer .container .gt .item {
  width: calc(1/3*100%);
  margin-bottom: 0.1rem;
  padding: 0 0.05rem;
}
@media (max-width: 767px) {
  footer .container .gt .item {
    width: 100%;
    padding: 0;
    margin-bottom: 0.3rem;
  }
}
footer .container .gt .item .itembox {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
footer .container .gt .item .itembox:hover .txt {
  background: #5e2603;
  border-color: #a34106;
}
footer .container .gt .item .itembox:hover .txt i {
  color: #fff;
  background: var(--color);
}
@media (max-width: 991px) {
  footer .container .gt .item .itembox .public-img {
    display: none;
  }
}
footer .container .gt .item .itembox .public-img:before {
  padding-top: 34.98098859%;
}
@media (max-width: 1260px) {
  footer .container .gt .item .itembox .public-img:before {
    padding-top: 50%;
  }
}
footer .container .gt .item .itembox .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 991px) {
  footer .container .gt .item .itembox .img {
    display: none;
  }
}
@media (max-width: 767px) {
  footer .container .gt .item .itembox .img {
    display: flex;
  }
}
footer .container .gt .item .itembox .img img {
  width: auto;
  height: 100%;
}
footer .container .gt .item .itembox .txt {
  transition: all 0.4s;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #291b12;
  border: 1px solid #382e27;
  border-radius: 0.2rem;
  padding: 0 0.38rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1260px) {
  footer .container .gt .item .itembox .txt {
    justify-content: space-between;
    padding: 0.2rem 0.38rem;
  }
}
@media (max-width: 991px) {
  footer .container .gt .item .itembox .txt {
    position: initial;
  }
}
footer .container .gt .item .itembox .txt h3 {
  margin-bottom: 0.38rem;
  color: rgba(255, 255, 255, 0.75);
}
footer .container .gt .item .itembox .txt i {
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  background: #fff;
  border-radius: 50%;
  color: #361e0f;
}
@media (max-width: 767px) {
  footer .container .gt .item .itembox .txt i {
    width: 0.6rem;
    height: 0.6rem;
  }
}
footer .container .gt .item .itembox .txt i svg,
footer .container .gt .item .itembox .txt i img {
  width: 15%;
  height: auto;
}
footer .container .gt .item .itembox .txt i svg path,
footer .container .gt .item .itembox .txt i img path {
  fill: var(--color);
}
footer .container .gm {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1260px) {
  footer .container .gm {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  footer .container .gm {
    margin-top: 0.2rem;
  }
}
footer .container .gm .gm_l {
  width: 30.3125%;
}
@media (max-width: 1260px) {
  footer .container .gm .gm_l {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
footer .container .gm .gm_l .foot_logo {
  display: block;
  margin-bottom: 0.35rem;
}
footer .container .gm .gm_l .foot_logo img {
  height: 0.38rem;
  width: auto;
}
@media (max-width: 767px) {
  footer .container .gm .gm_l .foot_logo img {
    height: 0.6rem;
  }
}
footer .container .gm .gm_l .g_wl {
  margin-top: 0.5rem;
  color: #999;
  display: flex;
  flex-wrap: wrap;
}
footer .container .gm .gm_l .g_wl p {
  margin-right: 0.1rem;
}
footer .container .gm .gm_l .g_wl a {
  margin-right: 0.1rem;
}
footer .container .gm .gm_l .g_tel .item {
  margin-bottom: 0.22rem;
  display: flex;
}
footer .container .gm .gm_l .g_tel .item .p1 {
  flex-shrink: 0;
  width: 1.15rem;
  padding-right: 0.1rem;
  line-height: 0.22rem;
  opacity: 0.5;
}
@media (max-width: 991px) {
  footer .container .gm .gm_l .g_tel .item .p1 {
    width: 1.5rem;
  }
}
@media (max-width: 767px) {
  footer .container .gm .gm_l .g_tel .item .p1 {
    width: 2rem;
  }
}
footer .container .gm .gm_l .g_tel .item .p2 {
  padding-right: 0.5rem;
  opacity: 0.75;
  line-height: 0.22rem;
}
@media (max-width: 767px) {
  footer .container .gm .gm_l .g_tel .item .p2 {
    line-height: 1.3;
  }
}
footer .container .gm .gm_l .g_tel .item_last {
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r {
  display: flex;
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box {
  margin: 0 0.46rem 0 0;
  position: relative;
}
@media (max-width: 767px) {
  footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box {
    margin-right: 0.6rem;
  }
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box:nth-child(2) .foot_t_r_con .g_ring .img2,
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box:nth-child(2) .foot_t_r_con .g_ring .img3 {
  transform: translate(-50%, -50%) rotate(70deg);
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box:nth-child(3) .foot_t_r_con .g_ring .img2,
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box:nth-child(3) .foot_t_r_con .g_ring .img3 {
  transform: translate(-50%, -50%) rotate(270deg);
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box:nth-child(4) .foot_t_r_con .g_ring .img2,
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box:nth-child(4) .foot_t_r_con .g_ring .img3 {
  transform: translate(-50%, -50%) rotate(60deg);
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box:nth-child(5) .foot_t_r_con .g_ring .img2,
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box:nth-child(5) .foot_t_r_con .g_ring .img3 {
  transform: translate(-50%, -50%) rotate(340deg);
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box.on .foot_t_r_ewm {
  transform: translateX(-50%) scale(1);
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box.on .foot_t_r_con svg path {
  fill: #fff;
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box .foot_t_r_ewm {
  position: absolute;
  bottom: calc(100% + 0.3rem);
  left: 50%;
  transition: all 0.4s;
  z-index: 1;
  transform: translateX(-50%) scale(0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  width: 100px;
  height: auto;
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box .foot_t_r_ewm .img1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box .foot_t_r_ewm .g_box {
  z-index: 100;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 7px;
  width: 86%;
  height: auto;
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box .foot_t_r_ewm .g_box img {
  width: 100%;
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box .foot_t_r_con {
  position: relative;
  display: flex;
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box .foot_t_r_con:hover .g_ring .img2 {
  opacity: 0;
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box .foot_t_r_con:hover .g_ring .img3 {
  opacity: 1;
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box .foot_t_r_con:hover .img1 {
  color: var(--color);
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box .foot_t_r_con .g_ring {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 3s linear infinite;
}
@media (max-width: 767px) {
  footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box .foot_t_r_con .g_ring {
    width: 0.7rem;
    height: 0.7rem;
  }
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box .foot_t_r_con .g_ring img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box .foot_t_r_con .g_ring .img3 {
  opacity: 0;
}
footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box .foot_t_r_con .img1 {
  width: 0.2rem;
  height: 0.2rem;
  color: #fff;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  footer .container .gm .gm_l .g_tel .item_last .item_last_r .foot_t_r_box .foot_t_r_con .img1 {
    width: 0.3rem;
    height: 0.3rem;
  }
}
footer .container .gm .gm_m {
  display: flex;
  padding-right: 0.2rem;
  width: 45.625%;
}
@media (max-width: 1260px) {
  footer .container .gm .gm_m {
    width: 100%;
    margin-bottom: 0.4rem;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  footer .container .gm .gm_m {
    flex-direction: column;
  }
}
footer .container .gm .gm_m .foot_nav {
  margin-right: 0.72rem;
}
footer .container .gm .gm_m .foot_nav a {
  transition: all 0.4s;
}
footer .container .gm .gm_m .foot_nav a:hover {
  color: #fff;
}
@media (max-width: 767px) {
  footer .container .gm .gm_m .foot_nav {
    margin: 0 ;
  }
}
footer .container .gm .gm_m .foot_nav:last-child {
  margin-right: 0;
}
footer .container .gm .gm_m .foot_nav .a_tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}
footer .container .gm .gm_m .foot_nav .a_tit.on svg,
footer .container .gm .gm_m .foot_nav .a_tit.on img {
  transform: rotate(90deg);
}
footer .container .gm .gm_m .foot_nav .a_tit a {
  color: #fff;
}
footer .container .gm .gm_m .foot_nav .a_tit svg,
footer .container .gm .gm_m .foot_nav .a_tit img {
  transition: all 0.4s;
  width: 5px;
  height: auto;
  display: none;
  color: #fff;
}
@media (max-width: 767px) {
  footer .container .gm .gm_m .foot_nav .a_tit svg,
  footer .container .gm .gm_m .foot_nav .a_tit img {
    display: block;
  }
}
footer .container .gm .gm_m .foot_nav .a_tit svg path,
footer .container .gm .gm_m .foot_nav .a_tit img path {
  fill: #fff;
}
@media (max-width: 767px) {
  footer .container .gm .gm_m .foot_nav ul {
    display: none;
    padding-bottom: 0.2rem;
  }
}
footer .container .gm .gm_m .foot_nav ul li {
  margin-bottom: 0.12rem;
}
footer .container .gm .gm_m .foot_nav ul li a {
  color: #999;
}
footer .container .gm .gm_r {
  width: 24.0625%;
}
@media (max-width: 1260px) {
  footer .container .gm .gm_r {
    width: 100%;
  }
}
footer .container .gm .gm_r .p1 {
  margin-bottom: 0.5rem;
}
footer .container .gm .gm_r form .search_box {
  padding-bottom: 0.09rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1460px) {
  footer .container .gm .gm_r form .search_box {
    flex-direction: column;
  }
}
@media (max-width: 1260px) {
  footer .container .gm .gm_r form .search_box {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  footer .container .gm .gm_r form .search_box {
    padding-bottom: 0.2rem;
  }
}
footer .container .gm .gm_r form .search_box input {
  height: 0.44rem;
  padding: 0 0.1rem 0 0;
  width: 100%;
  color: #333;
}
footer .container .gm .gm_r form .search_box input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 1580px) {
  footer .container .gm .gm_r form .search_box input {
    font-size: 12px;
  }
}
@media screen and (max-width: 1460px) {
  footer .container .gm .gm_r form .search_box input {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  footer .container .gm .gm_r form .search_box input {
    height: 0.7rem;
  }
}
footer .container .gm .gm_r form .search_box button {
  padding: 0 0.18rem;
  display: inline-flex;
  flex-shrink: 0;
  height: 0.44rem;
}
@media (max-width: 1580px) {
  footer .container .gm .gm_r form .search_box button {
    width: 100%;
    margin-top: 0.1rem;
  }
}
@media (max-width: 1260px) {
  footer .container .gm .gm_r form .search_box button {
    width: auto;
  }
}
@media (max-width: 767px) {
  footer .container .gm .gm_r form .search_box button {
    height: 0.7rem;
  }
}
footer .container .gm .gm_r form .search_box button p {
  white-space: nowrap;
}
footer .container .gb {
  margin-top: 0.6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  footer .container .gb {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  footer .container .gb {
    margin-top: 0.4rem;
  }
}
footer .container .gb a:hover {
  opacity: 1 !important;
}
footer .container .gb .gl {
  display: flex;
  flex-wrap: wrap;
}
footer .container .gb .gl p,
footer .container .gb .gl a {
  opacity: 0.5;
  transition: all 0.4s;
}
footer .container .gb .gl a {
  margin-left: 0.15rem;
}
footer .container .gb .gr {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  footer .container .gb .gr {
    margin-top: 0.2rem;
  }
}
footer .container .gb .gr a {
  position: relative;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  margin-left: 0.22rem;
  padding-left: 0.22rem;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  footer .container .gb .gr a {
    margin: 0 0.2rem 0 0;
    padding: 0 0.2rem 0 0;
  }
}
@media (max-width: 767px) {
  footer .container .gb .gr a {
    margin: 0 0.2rem 0.1rem 0;
  }
}
footer .container .gb .gr a:hover {
  color: #fff;
}
footer .container .gb .gr a:first-child::after {
  display: none;
}
footer .container .gb .gr a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
  footer .container .gb .gr a::after {
    display: none;
  }
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.htw {
  overflow: hidden;
  padding: 1.05rem 0 0.25rem;
}
@media (max-width: 767px) {
  .htw {
    padding: 0.2rem 0 0.5rem;
  }
}
.htw .box {
  margin-top: 0.7rem;
  display: flex;
}
@media (max-width: 767px) {
  .htw .box {
    flex-direction: column;
  }
}
.htw .box .item {
  width: 50%;
  height: 5.4rem;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  margin-right: 0.1rem;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .htw .box .item {
    height: 6.7rem;
  }
}
@media (max-width: 767px) {
  .htw .box .item {
    width: 100% !important;
    margin-bottom: 0.4rem;
  }
}
.htw .box .item:last-child {
  margin-right: 0;
}
.htw .box .item.on {
  width: 47.5%;
  flex-shrink: 0;
}
.htw .box .item .img {
  width: 100%;
  height: 100%;
}
.htw .box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.htw .box .item .txt {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.htw .box .item .txt .gxs {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  padding: 0.62rem 0.2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.htw .box .item .txt .gxs h3 {
  line-height: 1.3;
  text-align: center;
}
.htw .box .item .txt .gxs .pub_btn {
  margin-top: 0.3rem;
}
.hth .hth_ani {
  position: relative;
  z-index: 100;
  height: 200vh;
}
.hth .hth_ani .hth_ani_box {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.hth .hth_ani .hth_ani_box .hth_ani_con {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
}
.hth .hth_ani .hth_ani_box .hth_ani_con .img1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hth .hth_ani .hth_ani_box .hth_ani_con .img1 img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hth .hth_ani .hth_ani_box .hth_ani_con .img2 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 10;
}
.hth .hth_ani .hth_ani_box .hth_ani_con .img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hth .hth_ani .hth_ani_box .hth_ani_con .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 7%;
}
.hth .hth_ani .hth_ani_box .hth_ani_con .txt .p1 {
  line-height: 1.2;
}
.hth .hth_ani .hth_ani_box .hth_ani_con .txt .g_mouse {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0.84rem;
}
.hth .hth_ani .hth_ani_box .hth_ani_con .txt .g_mouse .g_mouse_img {
  animation: mov1 3.2s infinite ease-in-out;
  width: 26px;
  height: 40px;
  border: 2px solid var(--color);
  border-radius: 100px;
  display: flex;
  justify-content: center;
}
.hth .hth_ani .hth_ani_box .hth_ani_con .txt .g_mouse .g_mouse_img i {
  width: 2px;
  height: 5px;
  background: var(--color);
  margin-top: 10px;
}
.hth .hth_ani .hth_ani_box .hth_ani_con .txt .g_mouse p {
  margin-top: 0.2rem;
  color: var(--color);
}
.hth .box {
  margin-top: -200vh;
}
.hth .box .hth_img {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
}
.hth .box .hth_img .public-img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.4s;
  position: absolute;
  opacity: 0;
}
.hth .box .hth_img .public-img.on {
  opacity: 1;
  z-index: 10;
}
.hth .box .hth_img .public-img:before {
  padding-top: 50%;
}
.hth .box .hth_txt {
  position: relative;
  z-index: 10;
  margin-top: -100vh;
}
.hth .box .hth_txt .item {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
}
@media (max-width: 767px) {
  .hth .box .hth_txt .item {
    height: 80vh;
  }
}
.hth .box .hth_txt .item .txt_t {
  width: 50%;
}
@media (max-width: 1260px) {
  .hth .box .hth_txt .item .txt_t {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .hth .box .hth_txt .item .txt_t {
    width: 100%;
  }
}
.hth .box .hth_txt .item .txt_t span {
  display: block;
  color: #ff6709;
  margin-bottom: 0.2rem;
}
.hth .box .hth_txt .item .txt_t h3 {
  text-transform: uppercase;
  line-height: 1.125;
}
.hth .box .hth_txt .item .txt_t .g_p {
  width: 68.75%;
  margin-top: 0.6rem;
}
@media (max-width: 767px) {
  .hth .box .hth_txt .item .txt_t .g_p {
    width: 100%;
  }
}
.hth .box .hth_txt .item .txt_t .g_p p {
  line-height: 1.55555556;
  color: rgba(255, 255, 255, 0.4);
}
.hth .box .hth_txt .item .g_num {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hth .box .hth_txt .item .g_num .num_it {
  margin-right: 0.9rem;
}
.hth .box .hth_txt .item .g_num .num_it .item_t {
  align-items: flex-start;
  display: flex;
}
.hth .box .hth_txt .item .g_num .num_it .item_t p {
  line-height: 1;
  font-weight: bold;
}
.hth .box .hth_txt .item .g_num .num_it .item_t span {
  margin-left: 0.07rem;
  margin-top: -0.05rem;
  font-weight: bold;
  line-height: 1;
}
.hth .box .hth_txt .item .g_num .num_it .item_t .g_txt_ts {
  margin-top: -0.1rem;
}
@keyframes mov1 {
  0% {
    transform: translate3d(0px, -0.2rem, 0px);
  }
  50% {
    transform: translate3d(0px, 0, 0px);
  }
  100% {
    transform: translate3d(0px, -0.2rem, 0px);
  }
}
.hfo {
  background: #000;
  height: 150vh;
}
.hfo .box {
  overflow: hidden;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: auto;
  padding: 1rem 0 1.4rem;
}
.hfo .box .g_title {
  position: relative;
  z-index: 100;
}
.hfo .box .g_title h2 {
  color: #fff;
}
.hfo .box .g_imgbj img {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: auto;
  top: -1rem;
  left: 0;
}
@media (max-width: 1580px) {
  .hfo .box .g_imgbj img {
    top: -2.5rem;
  }
}
@media (max-width: 1260px) {
  .hfo .box .g_imgbj img {
    top: -0.8rem;
  }
}
.hfo .box .g_imgbj .img2 {
  z-index: 10;
}
.hfo .box .hfo_logo {
  opacity: 0;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  margin-top: 2.45rem;
  padding: 0 0.6rem;
}
@media (max-width: 767px) {
  .hfo .box .hfo_logo {
    padding: 0 5%;
  }
}
.hfo .box .hfo_logo .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  height: 1.66rem;
  padding: 0.2rem 0.4rem;
}
@media (max-width: 767px) {
  .hfo .box .hfo_logo .item {
    width: 33.333%;
    padding: 0.1rem 0.2rem;
  }
}
.hfo .box .hfo_logo .item:first-child {
  margin-left: 20.01%;
}
@media (max-width: 767px) {
  .hfo .box .hfo_logo .item:first-child {
    margin-left: 0;
  }
}
.hfo .box .hfo_logo .item img {
  object-fit: contain;
  width: auto;
  height: 0.4rem;
}
@media (max-width: 1580px) {
  .hfo .box .hfo_logo .item img {
    height: 0.56rem;
  }
}
.hfo .box .g_tac {
  position: relative;
  z-index: 10;
  margin-top: 0.7rem;
}
.hfi {
  position: relative;
}
.hfi .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hfi .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hfi .container {
  position: relative;
  z-index: 10;
  min-height: 8.9rem;
  padding: 1.55rem 0;
}
@media (max-width: 767px) {
  .hfi .container {
    padding: 1rem 0;
  }
}
.hfi .container .g_title h2 {
  color: #fff;
}
.hfi .container .g_title h2 span {
  color: var(--color);
  position: relative;
}
.hfi .container .g_title h2 span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 3px;
  left: 0;
  background: var(--color);
}
.hfi .container .pub2_btn {
  margin-top: 2.2rem;
}
.hsi {
  background: #f5f5f5;
  padding: 1.2rem 0 1.1rem;
}
.hsi .pub_news {
  margin-top: 0.7rem;
}
.pub_news {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.05rem;
}
@media (max-width: 767px) {
  .pub_news {
    margin: 0 ;
  }
}
@media (max-width: 1260px) {
  .pub_news.pub_news2 .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .pub_news.pub_news2 .item {
    width: 100%;
  }
}
.pub_news.pub_news2 .item .itembox .txt .pub_btn {
  margin-top: 0.1rem;
}
.pub_news .item {
  width: calc(1/3*100%);
  margin-bottom: 0.1rem;
  padding: 0 0.05rem;
}
@media (max-width: 991px) {
  .pub_news .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .pub_news .item {
    width: 100%;
    padding: 0;
    margin-bottom: 0.4rem;
  }
}
.pub_news .item .itembox {
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.pub_news .item .itembox:hover .img .g_bjpng {
  opacity: 1;
  transform: translate(-50%, 0);
}
.pub_news .item .itembox:hover .txt::after {
  height: 0;
}
.pub_news .item .itembox:hover .txt .txt_box span,
.pub_news .item .itembox:hover .txt .txt_box h3 {
  color: #fff;
}
.pub_news .item .itembox:hover .txt .g_tab a {
  border-color: #fff;
  color: #fff;
}
.pub_news .item .itembox:hover .txt .pub_btn {
  background: var(--color);
  transform: translateX(0);
}
.pub_news .item .itembox:hover .txt .pub_btn p,
.pub_news .item .itembox:hover .txt .pub_btn i {
  color: #fff;
}
.pub_news .item .itembox .img {
  position: relative;
}
.pub_news .item .itembox .img .g_bjpng {
  width: 100%;
}
.pub_news .item .itembox .img .g_bjpng img {
  opacity: 1;
  width: 100%;
}
.pub_news .item .itembox .img .public-img {
  border-radius: 5px;
}
.pub_news .item .itembox .img .public-img:before {
  padding-top: 104.56273764%;
}
.pub_news .item .itembox .img .g_lab {
  z-index: 10;
  top: 0.3rem;
  left: 0.3rem;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
}
.pub_news .item .itembox .img .g_lab::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.pub_news .item .itembox .img .g_lab::-webkit-scrollbar-track {
  background: #e3e3e3;
  border-radius: 2px;
}
.pub_news .item .itembox .img .g_lab::-webkit-scrollbar-thumb {
  background: #00acea;
  border-radius: 25px;
}
.pub_news .item .itembox .img .g_lab::-webkit-scrollbar-corner {
  background: #00acea;
}
.pub_news .item .itembox .img .g_lab a,
.pub_news .item .itembox .img .g_lab span {
  display: inline-flex;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 0.05rem 0.14rem;
  color: #fff;
  margin: 0 0.1rem 0.1rem 0;
}
.pub_news .item .itembox .txt {
  transition: all 0.4s;
  position: absolute;
  width: 100%;
  padding: 0.4rem 0.3rem 0.25rem;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.pub_news .item .itembox .txt::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: #fff;
  transition: all 0.4s;
}
.pub_news .item .itembox .txt .txt_box {
  padding-right: 1.6rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 1260px) {
  .pub_news .item .itembox .txt .txt_box {
    padding-right: 0;
  }
}
.pub_news .item .itembox .txt .txt_box a {
  display: block;
}
.pub_news .item .itembox .txt .txt_box span {
  transition: all 0.4s;
  color: #999;
}
.pub_news .item .itembox .txt .txt_box h3 {
  transition: all 0.4s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 2.6em;
  margin-top: 0.1rem;
}
.pub_news .item .itembox .txt .g_tab {
  position: relative;
  z-index: 10;
  margin-top: 0.22rem;
  display: flex;
  overflow: auto;
}
.pub_news .item .itembox .txt .g_tab a,
.pub_news .item .itembox .txt .g_tab span {
  flex-shrink: 0;
  color: #999;
  border-radius: 100px;
  padding: 0.07rem 0.18rem;
  border: 1px solid #ddd;
  margin: 0 0.1rem 0.1rem 0;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .pub_news .item .itembox .txt .g_tab a,
  .pub_news .item .itembox .txt .g_tab span {
    font-size: 12px;
  }
}
.pub_news .item .itembox .txt .g_tab a:hover,
.pub_news .item .itembox .txt .g_tab span:hover {
  background: var(--color);
  border-color: var(--color);
  color: #fff;
}
.pub_news .item .itembox .txt .pub_btn {
  position: relative;
  z-index: 10;
  margin-top: 0.44rem;
  transform: translateX(-0.26rem);
}
.pub_news .item .itembox .txt .pub_btn p {
  color: var(--color);
}
.pub_news .item .itembox .txt .pub_btn i {
  color: var(--color);
}
/* 右侧浮窗 */
.gpop {
  position: fixed;
  right: 0.62rem;
  bottom: 0.3rem;
  z-index: 100;
  display: none;
}
@media (max-width: 767px) {
  .gpop {
    right: 10px;
  }
}
.gpop > * {
  transition: all 0.4s;
}
.gpop .pop_a {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  width: 0.6rem;
  height: 0.6rem;
  background: #fff;
  position: relative;
  display: block;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.1rem;
}
@media (max-width: 767px) {
  .gpop .pop_a {
    margin-bottom: 0.2rem;
  }
}
.gpop .pop_a.on {
  background: var(--color);
}
.gpop .pop_a.on .pop_text {
  transform: translateY(-50%) scale(1);
  -webkit-transform: translateY(-50%) scale(1);
}
.gpop .pop_a.on .pop_a_img svg {
  color: #fff;
}
.gpop .pop_a.on .pop_a_img svg path {
  fill: #fff;
}
.gpop .pop_a.on .pop_a_img p {
  color: #fff;
}
.gpop .pop_a img {
  z-index: 100;
}
.gpop .pop_a .pop_a_img {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.gpop .pop_a .pop_a_img svg {
  transition: all 0.4s;
  color: var(--color);
  width: 0.2rem;
  height: auto;
}
.gpop .pop_a .pop_a_img svg path {
  fill: #969696;
}
.gpop .pop_a .pop_a_img p {
  font-size: 12px;
  margin-top: 5px;
}
.gpop .pop_a .pop_text {
  position: absolute;
  top: 50%;
  right: 130%;
  background: #fff;
  padding: 0.15rem 0.3rem;
  transition: all 0.6s;
  -moz-transition: all 0.6s;
  z-index: 1;
  transform: translateY(-50%) scale(0);
  -webkit-transform: translateY(-50%) scale(0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_text {
    width: 220px;
  }
}
.gpop .pop_a .pop_text p {
  color: #666;
  margin-bottom: 0.02rem;
  white-space: nowrap;
  font-size: 14px;
}
.gpop .pop_a .pop_text img {
  height: 20px;
  width: 20px;
  margin-right: 0.1rem;
}
.gpop .pop_a .pop_text::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid dashed dashed;
  border-color: #fff transparent transparent;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  position: absolute;
  top: 50%;
  right: -20px;
  margin-top: -10px;
  border-width: 10px;
  border-top-color: #fff;
  -webkit-transform: rotate(-90deg);
}
.gpop .cur3 {
  background: var(--color);
}
.gpop .cur3:hover {
  opacity: 0.8;
}
.gpop .cur3 .pop_a_img img {
  width: 0.23rem;
}
/* verify */
.veron {
  padding: 1.1rem 0 1.45rem;
}
.veron .box {
  margin: 0.56rem auto 0;
  width: calc(700/1600*100%);
}
@media (max-width: 991px) {
  .veron .box {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .veron .box {
    width: 100%;
  }
}
.veron .box form .p1 {
  color: #d72a1d;
  opacity: 0;
  margin-bottom: 3px;
}
.veron .box form input {
  text-align: center;
  height: 0.6rem;
  border: 1px solid #dddddd;
  border-radius: 100px;
  width: 100%;
}
@media (max-width: 767px) {
  .veron .box form input {
    height: 0.8rem;
  }
}
.veron .box form button {
  margin-top: 0.1rem;
  text-align: center;
  height: 0.6rem;
  border: 1px solid var(--color);
  border-radius: 100px;
  width: 100%;
  transition: all 0.4s;
  color: var(--color);
}
@media (max-width: 767px) {
  .veron .box form button {
    height: 0.8rem;
  }
}
.veron .box form button:hover {
  background: var(--color);
  color: #fff;
}
.veron .box .veron_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.4rem;
}
.veron .box .veron_box p {
  text-align: center;
  color: #999;
  line-height: 1.5;
}
.veron .box .veron_box img {
  margin: 0.35rem 0 0.1rem;
  width: 593px;
  height: auto;
}
@media (max-width: 767px) {
  .veron .box .veron_box img {
    width: 100%;
  }
}
/* download */
.dowon {
  padding: 0.45rem 0 1.5rem;
}
.dowon .box .item {
  margin-top: 0.78rem;
  display: flex;
}
@media (max-width: 991px) {
  .dowon .box .item {
    flex-direction: column!important;
  }
}
.dowon .box .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.dowon .box .item:nth-child(2n) .txt {
  padding: 0.2rem 1.2rem 0.2rem 0;
}
.dowon .box .item .public-img {
  border-radius: 0.1rem;
  width: 50%;
}
@media (max-width: 991px) {
  .dowon .box .item .public-img {
    width: 100%;
  }
}
.dowon .box .item .public-img:before {
  padding-top: 67.625%;
}
.dowon .box .item .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding: 0.2rem 0 0.2rem 1.2rem;
}
@media (max-width: 991px) {
  .dowon .box .item .txt {
    width: 100%;
    padding: 0.4rem 0 0 !important;
  }
}
.dowon .box .item .txt .txt_box h3 {
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  line-height: 1.125;
}
@media (max-width: 991px) {
  .dowon .box .item .txt .txt_box h3 br {
    display: none;
  }
}
.dowon .box .item .txt .txt_box .g_p p {
  color: #666;
  line-height: 1.55555556;
  margin-bottom: 0.1rem;
}
.dowon .box .item .txt .pub_btn {
  cursor: pointer;
  margin-top: 0.65rem;
}
.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;
  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;
  right: 0;
  width: 80px;
  height: 60px;
  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: var(--color);
}
@media screen and (max-width: 767px) {
  .curtain1 .curtain_box .curtain_title .close_tc {
    width: 40px;
    height: 40px;
  }
}
.curtain1 .curtain_box .curtain_title .close_tc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -10px;
  width: 20px;
  height: 2px;
  background: #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.4s;
}
.curtain1 .curtain_box .curtain_title .close_tc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -10px;
  width: 20px;
  height: 2px;
  background: #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.4s;
}
.curtain1 .curtain_box .curtain_con {
  max-height: 90vh;
  overflow: auto;
}
.dow_pop {
  width: 5.83rem;
  background: #fff;
  border-radius: 0.2rem;
  padding: 0.75rem 0.6rem 0.8rem;
}
@media (max-width: 991px) {
  .dow_pop {
    width: 100%;
  }
}
.dow_pop .dow_pop_box {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.dow_pop .dow_pop_box .g_tit {
  text-align: center;
}
.dow_pop .dow_pop_box .g_tit h2 {
  margin-bottom: 0.1rem;
}
.dow_pop .dow_pop_box .g_tit p {
  color: #666;
}
.dow_pop .dow_pop_box .g_lab {
  display: flex;
  justify-content: center;
  margin-top: 0.35rem;
  color: #999999;
}
.dow_pop .dow_pop_box .g_lab label {
  display: flex;
  align-items: center;
}
.dow_pop .dow_pop_box .g_lab label.on i {
  color: var(--color);
  border-color: var(--color);
}
.dow_pop .dow_pop_box .g_lab label.on i svg,
.dow_pop .dow_pop_box .g_lab label.on i img {
  opacity: 1;
}
.dow_pop .dow_pop_box .g_lab i {
  margin-top: 0;
  flex-shrink: 0;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  width: 17px;
  height: 17px;
  color: transparent;
  margin-right: 0.12rem;
}
@media (max-width: 1580px) {
  .dow_pop .dow_pop_box .g_lab i {
    width: 14px;
    height: 14px;
  }
}
.dow_pop .dow_pop_box .g_lab i svg,
.dow_pop .dow_pop_box .g_lab i img {
  opacity: 0;
  width: 8px;
  height: auto;
}
.dow_pop .dow_pop_box .g_lab i svg path,
.dow_pop .dow_pop_box .g_lab i img path {
  filter: none;
}
.dow_pop .dow_pop_box .g_lab a {
  color: #000;
  text-decoration: underline;
}
.dow_pop .dow_pop_box .pub_btn {
  pointer-events: none;
  margin-top: 0.2rem;
  cursor: not-allowed;
  opacity: 0.6;
}
.dow_pop .dow_pop_box .pub_btn.on {
  cursor: pointer;
  opacity: 1;
  pointer-events: initial;
}
.tab_box {
  background: -webkit-linear-gradient(to bottom, #fff, #f5f5f5);
  background: linear-gradient(to bottom, #fff, #f5f5f5);
}
.tabon {
  padding: 0.1rem 0 0;
  margin-bottom: 0.3rem;
}
.tabon.tabon2 {
  margin-bottom: 0;
  padding: 1.4rem 0 1.5rem;
}
.tabon.tabon2 .g_title_box .tit_r .pub_btn {
  padding: 0;
  border: none;
  height: auto;
}
.tabon.tabon2 .g_title_box .tit_r .pub_btn:hover {
  background: none;
}
.tabon.tabon2 .g_title_box .tit_r .pub_btn:hover i {
  transform: translateX(5px);
  color: var(--color);
}
.tabon.tabon2 .g_title_box .tit_r .pub_btn p {
  color: var(--color) !important;
}
.tabon.tabon2 .g_title_box .tit_r .pub_btn i {
  transition: all 0.4s;
}
.tabon.tabon2 .box {
  padding: 0;
  border: none;
}
.tabon .box {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #dddddd;
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
}
.tabon .box a {
  color: #999;
  border-radius: 100px;
  padding: 0.08rem 0.22rem;
  border: 1px solid #ddd;
  margin: 0 0.1rem 0.1rem 0;
  transition: all 0.4s;
}
.tabon .box a:hover {
  background: var(--color);
  border-color: var(--color);
  color: #fff;
}
.tabtw {
  padding: 0.4rem 0 0;
  margin-bottom: 0.8rem;
}
.tabtw .box {
  margin-top: 0.7rem;
  display: flex;
}
@media (max-width: 991px) {
  .tabtw .box {
    flex-direction: column;
  }
}
.tabtw .box .gl {
  width: 55.625%;
}
@media (max-width: 991px) {
  .tabtw .box .gl {
    width: 100%;
  }
}
.tabtw .box .gl .public-img {
  border-radius: 0.1rem;
}
.tabtw .box .gl .public-img:before {
  padding-top: 66.17977528%;
}
.tabtw .box .gl .swip2_pag {
  bottom: 0.15rem;
}
.tabtw .box .gl .swip2_pag .swiper-pagination-bullet {
  transition: all 0.4s;
  width: 0.6rem;
  margin: 0 0.05rem;
  border-radius: 0;
  height: 1px;
  background: #fff;
  opacity: 1;
}
.tabtw .box .gl .swip2_pag .swiper-pagination-bullet-active {
  background: var(--color);
}
.tabtw .box .gr {
  position: relative;
  width: 44.375%;
}
@media (max-width: 991px) {
  .tabtw .box .gr {
    width: 100%;
  }
}
.tabtw .box .gr .item {
  height: 100%;
  position: absolute;
  transition: all 0.4s;
  top: 0;
  left: 0;
  opacity: 0;
}
.tabtw .box .gr .item.on {
  position: relative;
  opacity: 1;
}
.tabtw .box .gr .item .item_box {
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 0.2rem 0 0.2rem 1.2rem;
}
@media (max-width: 1260px) {
  .tabtw .box .gr .item .item_box {
    padding: 0.2rem 0 0.2rem 0.5rem;
  }
}
@media (max-width: 991px) {
  .tabtw .box .gr .item .item_box {
    padding: 0.4rem 0 0;
  }
}
.tabtw .box .gr .item .g_num .span1 {
  color: var(--color);
}
.tabtw .box .gr .item .g_num .span2 {
  color: #999;
}
.tabtw .box .gr .item .txt {
  margin-top: 0.45rem;
}
@media (max-width: 1260px) {
  .tabtw .box .gr .item .txt {
    margin-top: 0.2rem;
  }
}
.tabtw .box .gr .item .txt h3 {
  padding-right: 0.65rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.tabtw .box .gr .item .txt p {
  line-height: 1.75;
  color: #666;
  margin-top: 0.28rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.tabtw .box .gr .item .pub_btn {
  margin-top: 0.74rem;
}
@media (max-width: 1260px) {
  .tabtw .box .gr .item .pub_btn {
    margin-top: 0.3rem;
  }
}
.tabth {
  padding: 0 0 1.5rem;
}
.page {
  margin-top: 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page a {
  height: 0.6rem;
  width: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.05rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: none;
  border-radius: 50%;
  border: 1px solid #dedede;
  background: #fff;
  color: #999;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page a {
    font-size: 0.28rem;
    height: 0.7rem;
    min-width: 0.7rem;
  }
}
.page a.prev {
  margin-right: 0.35rem;
}
.page a.prev img,
.page a.prev svg {
  transform: rotate(180deg);
}
.page a.next {
  margin-left: 0.35rem;
}
.page a:hover {
  color: #fff;
  border-color: var(--color);
  background: var(--color);
}
.page a:hover p {
  color: #fff;
}
.page a:hover svg path {
  fill: #fff;
}
.page a img,
.page a svg {
  width: 8px;
  height: auto;
}
@media (max-width: 1580px) {
  .page a img,
  .page a svg {
    width: 7px;
  }
}
@media (max-width: 767px) {
  .page a img,
  .page a svg {
    width: 6px;
  }
}
.page a .img2 {
  display: none;
}
.page a svg path {
  fill: #999999;
}
.page .active {
  color: #fff;
  border-color: var(--color);
  background: var(--color);
}
.page .active p {
  color: #fff;
}
.page > p {
  color: #999;
  margin: 0 0.1rem;
}
@media (max-width: 767px) {
  .page > p {
    display: none;
  }
}
.page input {
  margin: 0 0.1rem;
  border: 1px solid #999999;
  width: 0.5rem;
  height: 0.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .page input {
    display: none;
  }
}
/* 新闻详情 */
.ninfoon {
  padding-bottom: 0.7rem;
}
.ninfoon .ninfoon_tit {
  color: #fff;
  background: #ff6709;
  border-radius: 0.8rem 0.8rem 0 0;
  padding: 0.5rem 2rem 1.15rem;
}
@media (max-width: 991px) {
  .ninfoon .ninfoon_tit {
    padding: 0.6rem 0.4rem 1.55rem;
  }
}
@media (max-width: 767px) {
  .ninfoon .ninfoon_tit {
    padding: 0.6rem 0.4rem 1.15rem;
  }
}
.ninfoon .ninfoon_tit .crumbs p a,
.ninfoon .ninfoon_tit .crumbs p i {
  color: #fff;
}
.ninfoon .ninfoon_tit h1 {
  margin-top: 0.7rem;
  padding-right: 2.5rem;
}
@media (max-width: 991px) {
  .ninfoon .ninfoon_tit h1 {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .ninfoon .ninfoon_tit h1 {
    margin-top: 0.4rem;
  }
}
.ninfoon .ninfoon_tit .g_time {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.ninfoon .ninfoon_tit .g_time p {
  margin-right: 0.62rem;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 767px) {
  .ninfoon .ninfoon_tit .g_time p {
    margin-bottom: 0.2rem;
  }
}
.ninfoon .ninfoon_box {
  margin-top: -0.8rem;
  padding: 0.75rem 2rem 0.8rem;
  border-radius: 0.8rem;
  background: #fff;
}
@media (max-width: 991px) {
  .ninfoon .ninfoon_box {
    padding: 0.75rem 0.4rem 0.8rem;
  }
}
@media (max-width: 767px) {
  .ninfoon .ninfoon_box {
    padding: 0.5rem 0.4rem 0.8rem;
  }
}
.ninfoon .ninfoon_box .public-content {
  line-height: 1.625;
}
.ninfoon .ninfoon_box .public-content p {
  margin-bottom: 0.1rem;
}
.ninfoon .ninfoon_box .ninfoon_b .g_tab {
  position: relative;
  z-index: 10;
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
}
.ninfoon .ninfoon_box .ninfoon_b .g_tab a,
.ninfoon .ninfoon_box .ninfoon_b .g_tab span {
  color: #999;
  border-radius: 100px;
  padding: 0.07rem 0.18rem;
  border: 1px solid #ddd;
  margin: 0 0.1rem 0.1rem 0;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .ninfoon .ninfoon_box .ninfoon_b .g_tab a,
  .ninfoon .ninfoon_box .ninfoon_b .g_tab span {
    font-size: 12px;
  }
}
.ninfoon .ninfoon_box .ninfoon_b .g_tab a:hover,
.ninfoon .ninfoon_box .ninfoon_b .g_tab span:hover {
  background: var(--color);
  border-color: var(--color);
  color: #fff;
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 0.2rem;
  padding-top: 0.3rem;
  border-top: 1px solid #ddd;
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag .fh {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--color);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .ninfoon .ninfoon_box .ninfoon_b .g_pag .fh {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag .fh:hover {
  background: #fff;
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag .fh:hover svg {
  color: var(--color);
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag .fh p {
  color: #222;
  transition: all 0.4s;
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag .fh svg {
  transition: all 0.4s;
  width: 26.66666667%;
  height: auto;
  color: #fff;
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag .fh svg path {
  fill: var(--color);
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_l,
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_r {
  display: inline-flex;
  align-items: center;
  max-width: 40%;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_l,
  .ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_r {
    width: 30%;
  }
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_l:hover,
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_r:hover {
  opacity: 0.8;
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_l span,
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_r span {
  flex-shrink: 0;
  color: var(--color);
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_l i,
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_r i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.6rem;
  height: 0.6rem;
  border: 1px solid var(--color);
  border-radius: 50%;
  color: var(--color);
}
@media (max-width: 767px) {
  .ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_l i,
  .ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_r i {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_l i svg,
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_r i svg,
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_l i img,
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_r i img {
  width: 10%;
  height: auto;
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_l i svg path,
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_r i svg path,
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_l i img path,
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_r i img path {
  fill: var(--color);
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_l i {
  margin-right: 0.2rem;
  transform: rotate(180deg);
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_r {
  text-align: right;
  justify-content: flex-end;
}
.ninfoon .ninfoon_box .ninfoon_b .g_pag .pag_r i {
  margin-left: 0.2rem;
}
.ninfotw {
  padding: 0.7rem 0 1.4rem;
}
.ninfotw .box {
  margin-top: 0.7rem;
}
.ninfotw .box .item {
  border-radius: 0.1rem;
  margin-bottom: 0.1rem;
  background: #fff;
  padding: 0.35rem 0.8rem 0.54rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .ninfotw .box .item {
    padding: 0.35rem 0.4rem;
  }
}
.ninfotw .box .item:hover .gl h3 {
  color: var(--color);
}
.ninfotw .box .item:hover .gr i {
  transform: translateX(0.1rem);
}
.ninfotw .box .item .gl {
  max-width: 80%;
}
.ninfotw .box .item .gl span {
  display: block;
  margin-bottom: 0.14rem;
  color: #999;
}
.ninfotw .box .item .gl h3 {
  transition: all 0.4s;
  /* overflow: hidden;
					white-space: nowrap;
					text-overflow:ellipsis; */
}
.ninfotw .box .item .gr {
  flex-shrink: 0;
  margin-left: 0.3rem;
}
.ninfotw .box .item .gr i {
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.3rem;
  height: auto;
  color: var(--color);
}
@media (max-width: 1260px) {
  .ninfotw .box .item .gr i {
    width: 0.34rem;
  }
}
@media (max-width: 767px) {
  .ninfotw .box .item .gr i {
    width: 0.38rem;
  }
}
.ninfotw .box .item .gr i svg,
.ninfotw .box .item .gr i img {
  width: 100%;
  height: auto;
}
.ninfotw .box .item .gr i svg path,
.ninfotw .box .item .gr i img path {
  fill: var(--color);
}
/* 公司介绍 */
.aboon {
  height: 240vh;
}
@media (max-width: 991px) {
  .aboon {
    height: auto;
    margin-top: 60px;
  }
}
.aboon .aboon_t {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 991px) {
  .aboon .aboon_t {
    display: none;
  }
}
.aboon .aboon_t .img {
  width: 100%;
  height: 100%;
}
.aboon .aboon_t .img img,
.aboon .aboon_t .img svg {
  color: #fff;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1900px) {
  .aboon .aboon_t .img img,
  .aboon .aboon_t .img svg {
    width: 150%;
  }
}
.aboon .aboon_t .txt {
  position: absolute;
  width: 100%;
  bottom: 1.7rem;
  text-align: center;
  left: 0;
}
.aboon .aboon_t .txt p {
  line-height: 1.57142857;
  color: #666;
}
.aboon .aboon_t .txt p span {
  color: #222;
}
.aboon .aboon_box {
  margin-top: -100vh;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
}
@media (max-width: 991px) {
  .aboon .aboon_box {
    margin-top: 0;
    height: 100%;
    position: relative;
  }
}
.aboon .aboon_box .imgbj {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.aboon .aboon_box .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboon .aboon_box .aboon_con {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0.3rem 0;
  color: #fff;
}
@media (max-width: 991px) {
  .aboon .aboon_box .aboon_con {
    padding: 1rem 0;
  }
}
.aboon .aboon_box .aboon_con .aboon_nr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .aboon .aboon_box .aboon_con .aboon_nr {
    flex-direction: column;
  }
}
.aboon .aboon_box .aboon_con .aboon_nr .gl {
  opacity: 0;
  transition: all 0.4s;
  transform: translateY(-1rem);
  width: 37.5%;
}
@media (max-width: 991px) {
  .aboon .aboon_box .aboon_con .aboon_nr .gl {
    transform: translateY(0);
    opacity: 1;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.aboon .aboon_box .aboon_con .aboon_nr .gl .txt h2 {
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.aboon .aboon_box .aboon_con .aboon_nr .gl .txt .g_p p {
  line-height: 1.71428571;
  margin-bottom: 0.15rem;
}
.aboon .aboon_box .aboon_con .aboon_nr .gl .g_a {
  cursor: pointer;
  height: 0.6rem;
  border-radius: 100px;
  border: 2px solid #fff;
  overflow: hidden;
  display: inline-flex;
  position: relative;
  margin-top: 0.7rem;
}
@media (max-width: 767px) {
  .aboon .aboon_box .aboon_con .aboon_nr .gl .g_a {
    height: 0.8rem;
  }
}
.aboon .aboon_box .aboon_con .aboon_nr .gl .g_a:hover .txt {
  background: rgba(0, 0, 0, 0.6);
}
.aboon .aboon_box .aboon_con .aboon_nr .gl .g_a .img1 {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboon .aboon_box .aboon_con .aboon_nr .gl .g_a .txt {
  transition: all 0.4s;
  padding: 0 0.42rem;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 10;
  position: relative;
}
.aboon .aboon_box .aboon_con .aboon_nr .gl .g_a .txt p {
  color: #fff;
}
.aboon .aboon_box .aboon_con .aboon_nr .gl .g_a .txt i {
  margin-left: 0.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7px;
  height: auto;
  color: #fff;
}
@media (max-width: 1260px) {
  .aboon .aboon_box .aboon_con .aboon_nr .gl .g_a .txt i {
    width: 6px;
  }
}
@media (max-width: 767px) {
  .aboon .aboon_box .aboon_con .aboon_nr .gl .g_a .txt i {
    width: 5px;
  }
}
.aboon .aboon_box .aboon_con .aboon_nr .gl .g_a .txt i svg,
.aboon .aboon_box .aboon_con .aboon_nr .gl .g_a .txt i img {
  width: 100%;
  height: auto;
}
.aboon .aboon_box .aboon_con .aboon_nr .gl .g_a .txt i svg path,
.aboon .aboon_box .aboon_con .aboon_nr .gl .g_a .txt i img path {
  fill: var(--color);
}
.aboon .aboon_box .aboon_con .aboon_nr .gr {
  opacity: 0;
  transition: all 0.4s;
  transform: translateY(1rem);
  width: 37.5%;
}
@media (max-width: 991px) {
  .aboon .aboon_box .aboon_con .aboon_nr .gr {
    transform: translateY(0);
    opacity: 1;
    width: 100%;
  }
}
.aboon .aboon_box .aboon_con .aboon_nr .gr .item {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0 0.45rem;
}
.aboon .aboon_box .aboon_con .aboon_nr .gr .item .item_t {
  flex-shrink: 0;
  align-items: flex-start;
  display: flex;
}
.aboon .aboon_box .aboon_con .aboon_nr .gr .item .item_t p {
  line-height: 1;
  font-size: 0.8rem;
}
.aboon .aboon_box .aboon_con .aboon_nr .gr .item .item_t .span2 {
  margin-left: 0.07rem;
  margin-top: 0.05rem;
  font-weight: bold;
  line-height: 1;
}
.aboon .aboon_box .aboon_con .aboon_nr .gr .item .g_p {
  text-align: right;
}
.aboon .aboon_box .aboon_con .aboon_nr .gr .item .g_p p {
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}
.abotw {
  background: #fff;
  position: relative;
}
@media (max-width: 991px) {
  .abotw {
    padding: 1rem 0;
  }
}
.abotw .imgpng {
  position: absolute;
  width: 3.71rem;
  height: auto;
  left: 0;
  bottom: 2.2rem;
}
.abotw .container .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .abotw .container .box {
    flex-direction: column;
  }
}
.abotw .container .box .gl {
  padding: 2.7rem 0.2rem 1.5rem 0;
  width: 29.125%;
}
@media (max-width: 991px) {
  .abotw .container .box .gl {
    width: 100%;
    padding: 0;
  }
}
.abotw .container .box .gl .g_tit h2 {
  line-height: 1.125;
  text-transform: uppercase;
}
.abotw .container .box .gl .abotw_txt {
  position: relative;
  margin-top: 1.75rem;
}
@media (max-width: 991px) {
  .abotw .container .box .gl .abotw_txt {
    margin-top: 0.5rem;
  }
}
.abotw .container .box .gl .abotw_txt .item {
  transition: all 0.4s;
  position: absolute;
  opacity: 0;
}
.abotw .container .box .gl .abotw_txt .item.on {
  position: relative;
  z-index: 10;
  opacity: 1;
}
.abotw .container .box .gr {
  padding: 2.68rem 0;
  display: flex;
  width: 70.875%;
  position: relative;
}
@media (max-width: 991px) {
  .abotw .container .box .gr {
    width: 100%;
    flex-direction: column-reverse;
    padding: 1rem 0 0;
  }
}
.abotw .container .box .gr::after {
  content: '';
  width: 1px;
  height: 100%;
  left: calc(0.4rem + 4px);
  top: 0;
  background: #ddd;
  position: absolute;
}
@media (max-width: 991px) {
  .abotw .container .box .gr::after {
    display: none;
  }
}
.abotw .container .box .gr .g_year_hz {
  width: 38.39122486%;
  position: relative;
}
@media (max-width: 991px) {
  .abotw .container .box .gr .g_year_hz {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .abotw .container .box .gr .g_year_hz .g_qie {
    display: none;
  }
}
.abotw .container .box .gr .g_year_hz .g_qie .pub_nav {
  background: #fff;
  margin-left: 0;
  position: absolute;
  left: calc(0.1rem + 4px);
}
.abotw .container .box .gr .g_year_hz .g_qie .pub_prev {
  top: -1.2rem;
  transform: rotate(90deg);
}
.abotw .container .box .gr .g_year_hz .g_qie .pub_next {
  transform: rotate(90deg);
  bottom: -1.2rem;
}
.abotw .container .box .gr .g_year {
  overflow: hidden;
  padding: 0 0.4rem;
}
@media (max-width: 991px) {
  .abotw .container .box .gr .g_year {
    width: 100%;
  }
}
.abotw .container .box .gr .g_year .g_year_con {
  height: 100%;
  /* margin: calc(30px * 2) 0 calc(30px * 4); */
}
@media (max-width: 991px) {
  .abotw .container .box .gr .g_year .g_year_con {
    margin-top: 0.4rem;
  }
}
.abotw .container .box .gr .g_year .swiper {
  overflow: initial;
  height: 5.7rem;
  padding: 0 0 2.2rem;
  /* .swiper-slide-active{
							@media @max-xs{
								display: flex;
								flex-direction: column;
								justify-content: center;
								
								height: 2rem !important;
								@media @max-sm{
									display: block;
									height: auto !important;
								}
								.g_year_box{
									.g_year_t{
										span{
											font-size: 1.2rem;
											color: @color1;
											@media @max-sm{
												font-size: 26px;
											}
											@media @max-xs{
												font-size: 0.34rem;
											}
										}
										.g_i{
											
											.i1{
												background: @color1;
											}
											.i2{
												transform: translate(-50%,-50%) scale(1);
												opacity: 1;
											}
										}
										
									}
									.g_year_b{
										display: block;
										@media @max-sm{
											margin-top: 0.2rem;
											
										}
									}
								}
							}
						} */
}
@media (max-width: 991px) {
  .abotw .container .box .gr .g_year .swiper {
    height: auto;
  }
}
@media (max-width: 767px) {
  .abotw .container .box .gr .g_year .swiper {
    padding: 0 ;
  }
}
.abotw .container .box .gr .g_year .swiper .swiper-slide {
  cursor: pointer;
  /* height: 30px !important; */
  margin-bottom: 0.3rem;
}
.abotw .container .box .gr .g_year .swiper .active {
  /* height: 2.55rem !important; */
}
.abotw .container .box .gr .g_year .swiper .active .g_year_box span {
  font-size: 1.2rem;
}
.abotw .container .box .gr .g_year .swiper .swiper-slide-thumb-active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 2rem !important;
}
@media (max-width: 991px) {
  .abotw .container .box .gr .g_year .swiper .swiper-slide-thumb-active {
    display: block;
    height: auto !important;
  }
}
.abotw .container .box .gr .g_year .swiper .swiper-slide-thumb-active .g_year_box .g_year_t span {
  font-size: 1.2rem;
  color: var(--color);
}
@media (max-width: 991px) {
  .abotw .container .box .gr .g_year .swiper .swiper-slide-thumb-active .g_year_box .g_year_t span {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .abotw .container .box .gr .g_year .swiper .swiper-slide-thumb-active .g_year_box .g_year_t span {
    font-size: 0.34rem;
  }
}
.abotw .container .box .gr .g_year .swiper .swiper-slide-thumb-active .g_year_box .g_year_t .g_i .i1 {
  background: var(--color);
}
.abotw .container .box .gr .g_year .swiper .swiper-slide-thumb-active .g_year_box .g_year_t .g_i .i2 {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.abotw .container .box .gr .g_year .swiper .swiper-slide-thumb-active .g_year_box .g_year_b {
  display: block;
}
@media (max-width: 991px) {
  .abotw .container .box .gr .g_year .swiper .swiper-slide-thumb-active .g_year_box .g_year_b {
    margin-top: 0.2rem;
  }
}
.abotw .container .box .gr .g_year .g_year_box {
  padding-left: 0.52rem;
}
.abotw .container .box .gr .g_year .g_year_box .g_year_t {
  position: relative;
}
.abotw .container .box .gr .g_year .g_year_box .g_year_t span {
  transition: all 0.4s;
  line-height: 1;
  color: #999;
}
.abotw .container .box .gr .g_year .g_year_box .g_year_t .g_i {
  position: absolute;
  left: -0.52rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.abotw .container .box .gr .g_year .g_year_box .g_year_t .g_i .i1 {
  background: #999999;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  border-radius: 50%;
  transition: all 0.4s;
  z-index: 10;
}
.abotw .container .box .gr .g_year .g_year_box .g_year_t .g_i .i2 {
  background: #fff;
  width: 240%;
  height: 240%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  border: 1px solid var(--color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s;
}
.abotw .container .box .gr .g_year .g_year_box .g_year_b {
  display: none;
}
.abotw .container .box .gr .g_img {
  width: 65.26508227%;
}
@media (max-width: 991px) {
  .abotw .container .box .gr .g_img {
    width: 100%;
  }
}
.abotw .container .box .gr .g_img .swiper .public-img {
  border-radius: 0.1rem;
}
.abotw .container .box .gr .g_img .swiper .public-img:before {
  padding-top: 79.83193277%;
}
.abofo {
  background: #f5f5f5;
  padding: 1.05rem 0 1.55rem;
}
@media (max-width: 767px) {
  .abofo {
    padding: 1rem 0 ;
  }
}
.abofo .box {
  margin-top: 0.7rem;
  display: flex;
}
@media (max-width: 767px) {
  .abofo .box {
    flex-direction: column;
  }
}
.abofo .box .item {
  width: 50%;
  height: 5.4rem;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  margin-right: 0.1rem;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .abofo .box .item {
    height: 6.7rem;
  }
}
@media (max-width: 767px) {
  .abofo .box .item {
    width: 100% !important;
    margin-bottom: 0.4rem;
  }
}
.abofo .box .item:last-child {
  margin-right: 0;
}
.abofo .box .item:first-child .txt .gxs p {
  display: block;
}
.abofo .box .item.on {
  width: 47.5%;
  flex-shrink: 0;
}
.abofo .box .item.on .g_bjpng {
  opacity: 1;
  transform: translate(-50%, 0);
}
.abofo .box .item .img_img {
  position: relative;
  width: 100%;
  height: 100%;
}
.abofo .box .item .img_img .img {
  width: 100%;
  height: 100%;
}
.abofo .box .item .img_img .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.abofo .box .item .img_img .g_bjpng {
  bottom: -1.5rem;
  width: 100%;
}
.abofo .box .item .img_img .g_bjpng img {
  opacity: 1;
  width: 100%;
}
.abofo .box .item .txt {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: flex-end;
}
.abofo .box .item .txt .gxs {
  width: 100%;
  height: 100%;
  padding: 0.35rem 0.4rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
}
.abofo .box .item .txt .gxs h3 {
  text-transform: uppercase;
  color: var(--color);
  line-height: 1.3;
  text-align: center;
}
.abofo .box .item .txt .gxs p {
  display: none;
  width: 4rem;
  margin-top: 0.18rem;
}
@media (max-width: 767px) {
  .abofo .box .item .txt .gxs p {
    display: block !important;
    width: 100%;
  }
}
.abofo .box .item .txt .gxs .pub_btn {
  margin-top: 0.3rem;
}
.abofi {
  padding: 1.05rem 0 1.15rem;
}
.abofi .g_title_box {
  margin-bottom: 0.7rem;
}
.abofi .g_title_box .g_title h2 {
  color: #fff;
}
.abofi .g_num {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
}
.abofi .g_num .num_it {
  min-width: 1.5rem;
  margin-right: 0.9rem;
}
@media (max-width: 767px) {
  .abofi .g_num .num_it {
    margin-right: 0;
    margin-bottom: 0.4rem;
    width: 50%;
    padding-right: 0.3rem;
  }
}
.abofi .g_num .num_it .item_t {
  align-items: flex-start;
  display: flex;
}
.abofi .g_num .num_it .item_t p {
  line-height: 1;
  font-weight: bold;
}
@media (max-width: 767px) {
  .abofi .g_num .num_it .item_t p {
    font-size: 0.8rem;
  }
}
.abofi .g_num .num_it .item_t span {
  margin-left: 0.15rem;
  margin-top: 0.05rem;
  font-weight: bold;
  line-height: 1;
}
.abofi .g_num .num_it .item_b p {
  line-height: 1.625;
  opacity: 0.4;
}
.abofi .box {
  margin-top: 0.62rem;
  color: #fff;
  overflow: hidden;
}
.abofi .box .swiper {
  padding: 20px 0;
  overflow: initial;
}
.abofi .box .swiper .abofi_box {
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
}
.abofi .box .swiper .abofi_box:hover {
  transform: scale(1.05);
}
.abofi .box .swiper .abofi_box:hover .txt {
  opacity: 1;
}
.abofi .box .swiper .abofi_box .img {
  background: #fff;
  border-radius: 4px;
  padding: 0.1rem;
}
.abofi .box .swiper .abofi_box .img .public-img:before {
  padding-top: 144.09090909%;
}
.abofi .box .swiper .abofi_box .txt {
  transition: all 0.4s;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: url(../images/about17.png) no-repeat;
  background-size: cover;
  z-index: 10;
  top: 0;
  left: 0;
  padding: 0.1rem;
}
.abofi .box .swiper .abofi_box .txt h3 {
  color: #fff;
}
.abofi .swip2_pag {
  position: initial;
  margin-top: 0.12rem;
  text-align: center;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}
.abofi .swip2_pag .swiper-pagination-progressbar-fill {
  background: var(--color);
}
.abosi {
  padding: 1.5rem 0;
}
@media (max-width: 767px) {
  .abosi {
    padding: 0.4rem 0 1rem;
  }
}
.abosi .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .abosi .box {
    flex-direction: column;
  }
}
.abosi .box .img {
  width: 52.5%;
  border-radius: 0.1rem;
  background: rgba(255, 255, 255, 0.16);
}
@media (max-width: 767px) {
  .abosi .box .img {
    width: 100%;
  }
}
.abosi .box .txt {
  width: 47.5%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.2rem 0 0.2rem 1rem;
}
@media (max-width: 767px) {
  .abosi .box .txt {
    width: 100%;
    padding: 0;
    margin-top: 0.5rem;
  }
}
.abosi .box .txt h2 {
  line-height: 1.125;
  padding-right: 2rem;
  text-transform: uppercase;
}
@media (max-width: 1260px) {
  .abosi .box .txt h2 {
    padding: 0;
  }
}
.abosi .box .txt p {
  line-height: 1.55555556;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1580px) {
  .abosi .box .txt p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .abosi .box .txt p {
    margin-top: 0.2rem;
  }
}
.abosi .box .txt p span {
  color: #fff;
}
.abose {
  padding: 0.84rem 0;
}
.abose .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .abose .box {
    flex-direction: column;
  }
}
.abose .box .gl {
  width: 33.75%;
  padding: 0.6rem 0 0.36rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .abose .box .gl {
    padding: 0;
    width: 100%;
    flex-direction: row;
    align-items: center;
  }
}
.abose .box .gr {
  width: 66.25%;
}
@media (max-width: 767px) {
  .abose .box .gr {
    width: 100%;
    margin-top: 0.2rem;
  }
}
.abose .box .gr .swiper {
  padding: 0.2rem;
  height: 5.5rem;
}
.abose .box .gr .swiper .swiper-wrapper {
  flex-direction: column;
  height: 100%;
}
.abose .box .gr .swiper .swiper-wrapper .swiper-slide {
  height: 1.7rem;
}
.abose .box .gr .swiper .swiper-wrapper .swiper-slide .aboutour_nr {
  transition: all 0.4s;
  border-radius: 0.1rem;
}
.abose .box .gr .swiper .swiper-wrapper .swiper-slide .aboutour_nr:hover {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.abose .box .gr .g_qie {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.4rem;
}
@media (max-width: 767px) {
  .abose .box .gr .g_qie {
    margin: 0;
  }
}
.abose .box .gr .g_qie .pub_nav {
  background: #ddd;
  border: none;
}
.abose .box .gr .g_qie .pub_nav:hover {
  background: var(--color);
}
.abose .box .gr .g_qie .pub_nav svg,
.abose .box .gr .g_qie .pub_nav img {
  color: #fff;
}
.shopon {
  padding: 0.4rem 0 1.5rem;
}
.shopon .g_tit h2 {
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .shopon .g_tit h2 {
    font-size: 0.48rem;
  }
}
.shopon .box {
  margin-top: 0.4rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .shopon .box {
    flex-direction: column;
  }
}
.shopon .box .shopon_box {
  width: 66.25%;
}
@media (max-width: 991px) {
  .shopon .box .shopon_box {
    width: 100%;
  }
}
.shopon .box .shopon_box .g_tit {
  margin-bottom: 0.18rem;
  color: #999;
  display: flex;
}
.shopon .box .shopon_box .g_tit .gl {
  width: 79.43396226%;
}
.shopon .box .shopon_box .g_tit .gr {
  width: 20.56603774%;
}
.shopon .box .shopon_box .shopon_it .item {
  border-top: 1px solid #dddddd;
  padding: 0.34rem 0;
  display: flex;
  justify-content: space-between;
}
.shopon .box .shopon_box .shopon_it .item:last-child {
  border-bottom: 1px solid #dddddd;
}
.shopon .box .shopon_box .shopon_it .item .gl {
  display: flex;
  align-items: center;
  width: 79.43396226%;
}
@media (max-width: 767px) {
  .shopon .box .shopon_box .shopon_it .item .gl {
    width: 66%;
  }
}
.shopon .box .shopon_box .shopon_it .item .gl:hover .txt h3 {
  color: var(--color);
}
.shopon .box .shopon_box .shopon_it .item .gl .public-img {
  flex-shrink: 0;
  width: 1.2rem;
  height: auto;
  margin-right: 0.4rem;
}
.shopon .box .shopon_box .shopon_it .item .gl .txt {
  width: calc(100% - 2rem);
}
.shopon .box .shopon_box .shopon_it .item .gl .txt h3 {
  transition: all 0.4s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.shopon .box .shopon_box .shopon_it .item .gr {
  width: 20.56603774%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .shopon .box .shopon_box .shopon_it .item .gr {
    width: 30%;
  }
}
.shopon .box .shopon_box .shopon_it .item .gr .quantity-selector {
  padding: 0 9px;
  border-radius: 2px;
  border: 1px solid #999999;
  height: 38px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .shopon .box .shopon_box .shopon_it .item .gr .quantity-selector {
    height: 32px;
    padding: 0 6px;
  }
}
.shopon .box .shopon_box .shopon_it .item .gr .quantity-selector .quantity {
  text-align: center;
  display: inline-block;
  width: 60px;
}
@media (max-width: 767px) {
  .shopon .box .shopon_box .shopon_it .item .gr .quantity-selector .quantity {
    width: 30px;
  }
}
.shopon .box .shopon_box .shopon_it .item .gr .quantity-selector .quantity::-webkit-inner-spin-button,
.shopon .box .shopon_box .shopon_it .item .gr .quantity-selector .quantity::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.shopon .box .shopon_box .shopon_it .item .gr .g_del {
  cursor: pointer;
}
.shopon .box .shopon_box .shopon_b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.4rem;
}
@media (max-width: 767px) {
  .shopon .box .shopon_box .shopon_b {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.shopon .box .shopon_box .shopon_b .pub_btn i {
  transform: rotate(180deg);
  margin: 0 0.11rem 0 0;
}
@media (max-width: 767px) {
  .shopon .box .shopon_box .shopon_b .sets {
    margin-bottom: 0.2rem;
  }
}
.shopon .box .shopon_box .shopon_b .sets span {
  margin-left: 0.2rem;
}
.shopon .box .shopon_r {
  margin-top: 0.4rem;
  background: #f7f7f7;
  border-radius: 0.1rem;
  padding: 0.56rem 0.6rem 0.6rem;
  width: 27.5%;
}
@media (max-width: 991px) {
  .shopon .box .shopon_r {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.shopon .box .shopon_r h2 {
  color: #222222;
  margin-bottom: 0.34rem;
}
.shopon .box .shopon_r form .inp {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 767px) {
  .shopon .box .shopon_r form .inp {
    flex-direction: column;
  }
}
.shopon .box .shopon_r form .inp > span {
  position: absolute;
  left: -14px;
  top: 44%;
  transform: translateY(-50%);
  color: var(--color);
}
@media (max-width: 767px) {
  .shopon .box .shopon_r form .inp > span {
    top: 38%;
  }
}
.shopon .box .shopon_r form .inp .inp_box {
  width: 100%;
  margin-bottom: 0.12rem;
}
@media (max-width: 767px) {
  .shopon .box .shopon_r form .inp .inp_box {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.shopon .box .shopon_r form .inp .inp_box input {
  padding: 0 0.2rem 0 0;
  width: 100%;
  height: 0.5rem;
  border-bottom: 1px solid #e2e2e2;
}
.shopon .box .shopon_r form .inp .inp_box input::-webkit-input-placeholder {
  color: #222;
}
@media (max-width: 767px) {
  .shopon .box .shopon_r form .inp .inp_box input {
    height: 0.8rem;
  }
}
.shopon .box .shopon_r form .inp .inp_box .sot_select_nr .sel_text_x {
  height: 0.5rem;
}
@media (max-width: 767px) {
  .shopon .box .shopon_r form .inp .inp_box .sot_select_nr .sel_text_x {
    height: 0.8rem;
  }
}
.shopon .box .shopon_r form .inp2 .inp_box {
  width: 100%;
}
.shopon .box .shopon_r form .inptext {
  margin-top: 0.14rem;
}
.shopon .box .shopon_r form .inptext .inp_box textarea {
  padding: 0 0.2rem 0 0;
  width: 100%;
  height: 0.5rem;
  border-bottom: 1px solid #e2e2e2;
  height: 0.85rem;
}
.shopon .box .shopon_r form .inptext .inp_box textarea::-webkit-input-placeholder {
  color: #222;
}
@media (max-width: 767px) {
  .shopon .box .shopon_r form .inptext .inp_box textarea {
    height: 1.6rem;
  }
}
.shopon .box .shopon_r form .g_lab {
  margin-top: 0.12rem;
  color: #999999;
}
.shopon .box .shopon_r form .g_lab label {
  display: flex;
  align-items: flex-start;
}
.shopon .box .shopon_r form .g_lab label.on i {
  color: var(--color);
  border-color: var(--color);
}
.shopon .box .shopon_r form .g_lab label.on i svg,
.shopon .box .shopon_r form .g_lab label.on i img {
  opacity: 1;
}
.shopon .box .shopon_r form .g_lab i {
  margin-top: 0;
  flex-shrink: 0;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  width: 17px;
  height: 17px;
  color: transparent;
  margin-right: 0.12rem;
}
@media (max-width: 1580px) {
  .shopon .box .shopon_r form .g_lab i {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 1260px) {
  .shopon .box .shopon_r form .g_lab i {
    margin-top: 2px;
  }
}
.shopon .box .shopon_r form .g_lab i svg,
.shopon .box .shopon_r form .g_lab i img {
  opacity: 0;
  width: 8px;
  height: auto;
}
.shopon .box .shopon_r form .g_lab i svg path,
.shopon .box .shopon_r form .g_lab i img path {
  filter: none;
}
.shopon .box .shopon_r form .g_lab a {
  color: #000;
  text-decoration: underline;
}
.shopon .box .shopon_r form .pub_btn {
  margin-top: 0.4rem;
  background: #fff;
}
.shopon .box .shopon_r form .pub_btn:hover {
  background: var(--color);
}
.goog-te-gadget {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.goog-te-gadget .goog-te-gadget-simple {
  width: 100%;
  height: 100%;
  padding: 0;
  margin-left: 20%;
}
