@charset "utf-8";
:root {
  --color: #136034;
  --vh: 100vh;
}
.text_overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* .cs{
	.text-overflow(3);
} */
/*字体*/
/* @font-face {
	font-family: "Fontke";
	src: url("Fontke.woff2") format("woff2"),
		 url("Fontke.woff") format("woff"),
		 url("Fontke.ttf") format("truetype"),
		 url("Fontke.eot") format("embedded-opentype"),
		 url("Fontke.svg") format("svg"),
		 url("Fontke.otf") format("opentype");
} */
/* 字体 */
@font-face {
  font-family: 'man-m';
  src: url(../font/MANROPE-MEDIUM.TTF);
}
@font-face {
  font-family: 'man-l';
  src: url(../font/MANROPE-LIGHT.TTF);
}
@font-face {
  font-family: 'man-b';
  src: url(../font/MANROPE-BOLD.TTF);
}
@font-face {
  font-family: 'man-r';
  src: url(../font/MANROPE-REGULAR.TTF);
}
@font-face {
  font-family: 'ivy-l';
  src: url(../font/IvyOraDisplay-Light.ttf);
}
@font-face {
  font-family: 'ivy-m';
  src: url(../font/IvyOraDisplay-Medium.ttf);
}
@font-face {
  font-family: 'ivy-r';
  src: url(../font/IvyOraDisplay-Regular.ttf);
}
.font-man-m {
  font-family: 'man-m', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-man-l {
  font-family: 'man-l', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-man-b {
  font-family: 'man-b', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-man-r {
  font-family: 'man-r', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-ivy-l {
  font-family: 'ivy-l', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-ivy-m {
  font-family: 'ivy-m', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-ivy-r {
  font-family: 'ivy-r', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scrollbar-width: thin;
}
* ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 5px;
}
* ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: var(--color);
}
* ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 50px;
  }
}
body {
  min-height: 100%;
  font-family: 'man-r', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
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 {
  color: inherit;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
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,
svg circle {
  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%;
  }
}
.container2 {
  margin: 0 auto;
  width: 85%;
  max-width: 1400px;
}
@media (max-width: 1260px) {
  .container2 {
    width: 90%;
  }
}
.bg-color1 {
  background-color: #fff;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .ptb100 {
    padding-top: 1.2rem;
    padding-bottom: 1.2em;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .pt100 {
    padding-top: 1.2rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .pb100 {
    padding-bottom: 1.2rem;
  }
}
.font16 {
  font-size: 16px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .font16 {
    font-size: 0.28rem;
  }
}
.public-btn {
  display: inline-flex;
  transition: all 0.4s;
  border: 1px solid #fff;
  padding: 0.08rem 0.5rem;
  color: #fff;
  border-radius: 100px;
}
.public-btn:hover {
  border-color: var(--color);
  background: var(--color);
}
.public-btn:hover p {
  color: #fff;
}
.public-btn p {
  transition: all 0.4s;
}
.public-btn.public-btn2 {
  border-color: #dfdfdf;
}
.public-btn.public-btn2:hover p {
  color: #fff;
}
.public-btn.public-btn2 p {
  color: #000000;
}
.public-btn.public-btn3 {
  border-color: var(--color);
  background: var(--color);
}
.public-btn.public-btn3:hover {
  border-color: #999;
  background: #fff;
}
.public-btn.public-btn3:hover p {
  color: #000;
}
.public-btn.public-btn3 p {
  color: #fff;
}
.public2-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 6px 0 28px;
  height: 62px;
  border-radius: 125px;
  border: 1px solid var(--color);
  color: #fff;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .public2-btn {
    height: 56px;
  }
}
@media (max-width: 1260px) {
  .public2-btn {
    height: 48px;
    padding: 0 6px 0 18px;
  }
}
@media (max-width: 767px) {
  .public2-btn {
    height: 40px;
  }
}
.public2-btn span {
  color: #666666;
  transition: all 0.4s;
}
.public2-btn .c-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.22rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color);
  transition: all 0.4s;
  overflow: hidden;
}
@media (max-width: 1260px) {
  .public2-btn .c-ico {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 767px) {
  .public2-btn .c-ico {
    /* width: 24px; */
    /* height: 24px; */
  }
}
.public2-btn .c-ico .c-svg {
  width: calc(16/40*100%);
  height: auto;
}
.public2-btn:hover {
  color: #fff;
  background: var(--color);
  border-color: var(--color);
}
.public2-btn:hover .c-ico {
  background: #fff;
  color: var(--color);
}
.public2-btn:hover .c-ico .c-svg {
  animation: arrow 0.4s;
}
.public2-btn:hover span {
  color: #fff;
}
.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;
}
@keyframes width100 {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes width0 {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
@keyframes arrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(250%);
  }
  51% {
    transform: translateX(-250%);
  }
  100% {
    transform: translateX(0);
  }
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 81px;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 60px;
  }
}
/*头部*/
#c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  border-bottom: 1px solid transparent;
  line-height: 80px;
  text-align: center;
  color: #000;
  transition: 0.4s;
}
@media (max-width: 991px) {
  #c-header {
    line-height: 60px;
  }
}
#c-header a {
  color: #000;
  transition: 0.4s;
}
#c-header .c-heabox {
  padding: 0 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (max-width: 991px) {
  #c-header .c-heabox {
    height: 60px;
    padding: 0 0.4rem;
  }
}
#c-header .c-right-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  #c-header .c-right-box {
    width: auto;
  }
}
#c-header.c-head-move {
  top: -80px;
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -60px;
  }
}
#c-header.c-style3 {
  color: #fff;
  border-bottom: none;
}
#c-header.c-style3 a {
  color: #fff;
}
#c-header.c-style3 .c-nav > li > .c-title-box {
  color: #fff;
}
#c-header.c-style3 .c-logo .c-img-box img {
  display: block;
}
#c-header.c-style3 .c-logo .c-img-box img:nth-child(2) {
  display: none;
}
#c-header.c-style3 .c-gn form {
  color: #fff;
}
#c-header.c-style3 .c-gn .c-language {
  color: #fff;
}
#c-header.c-style3 .c-switch i {
  background: #000;
}
#c-header.c-style2 {
  color: #333;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid transparent;
}
#c-header.c-style2 a {
  color: #333;
}
#c-header.c-style2 .c-nav > li > .c-title-box {
  color: #333;
}
#c-header.c-style2 .c-gn form {
  color: #333;
}
#c-header.c-style2 .c-gn .c-language {
  color: #333;
}
#c-header.c-style2 .c-switch i {
  background: #000;
}
#c-header .c-logo {
  position: absolute;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #c-header .c-logo {
    position: relative;
    transform: translateX(0%);
    left: 0;
  }
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
  transition: all 1.8s;
  transform: translateY(-0.6rem);
  opacity: 0;
  transition-delay: 0.1s;
}
#c-header .c-logo .c-img-box img {
  height: 0.39rem;
}
@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;
  transition: all 1.8s;
  transform: translateY(-0.6rem);
  opacity: 0;
  transition-delay: 0.2s;
}
@media (max-width: 991px) {
  #c-header .c-gn {
    /* display: none; */
    color: #fff;
    margin-right: 0.2rem;
  }
}
#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 {
  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 {
  text-transform: uppercase;
  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%;
  padding: 10px;
  min-width: 100px;
  line-height: 40px;
  background: #fff;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 0 0 5px 5px;
}
#c-header .c-gn .c-language .c-box a {
  display: block;
  padding: 0 20px;
  color: #333;
  border-radius: 5px;
}
#c-header .c-gn .c-language .c-box a:hover {
  color: var(--color);
  background: #f8f9fc;
}
#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 {
  transition: all 1.8s;
  transform: translateY(-0.6rem);
  opacity: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav > li {
  line-height: 1.5;
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 0.23rem;
}
#c-header .c-nav > li:last-child {
  margin-right: 0;
}
#c-header .c-nav > li > .c-title-box {
  position: relative;
  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 > .c-title-box:before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #8f8f8f s;
  transition: 0.4s;
}
#c-header .c-nav > li > ul {
  position: absolute;
  top: 100%;
  left: 50%;
  display: none;
  padding: 10px;
  min-width: 100px;
  line-height: 40px;
  background: #fff;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 0 0 5px 5px;
}
#c-header .c-nav > li > ul li:last-child a::before {
  display: none;
}
#c-header .c-nav > li > ul li a {
  display: block;
  padding: 0 20px;
  color: #333;
  border-radius: 5px;
}
#c-header .c-nav > li > ul li a:hover {
  color: var(--color);
  background: #f8f9fc;
}
#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,
#c-header .c-nav li:hover > .c-title-box,
#c-header.c-style2 .c-nav li.on > a,
#c-header .c-nav li:hover > a {
  color: #000;
}
#c-header.c-style2 .c-nav li.on > .c-title-box:before,
#c-header .c-nav li:hover > .c-title-box:before,
#c-header.c-style2 .c-nav li.on > a:before,
#c-header .c-nav li:hover > a:before {
  left: 0;
  width: 100%;
  background: #8f8f8f;
}
#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 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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  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 - 60px);
}
.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;
  color: #fff;
}
@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 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;
  }
}
#c-footer .c-top-box .container a.c-title-box:hover {
  color: var(--color);
}
@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;
}
@media (max-width: 991px) {
  #c-footer .c-bottom-box .container {
    flex-wrap: wrap;
  }
}
#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 {
  margin-right: 0.4rem;
  word-wrap: break-word;
  word-break: break-all;
}
@media (max-width: 991px) {
  #c-footer .c-bottom-box .container .c-copyright {
    margin-right: 0;
  }
}
#c-footer .c-bottom-box .container .c-policy-link a {
  margin-right: 0.2rem;
}
#c-footer .c-bottom-box .container .c-policy-link a:last-child {
  margin-right: 0;
}
#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*/
@keyframes scaleShow {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.scaleShow {
  animation-name: scaleShow;
}
.c-home1 {
  overflow: hidden;
}
.c-home1 .g_nojm i {
  position: absolute;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
  z-index: 10;
  pointer-events: none;
  transition: all 1.8s;
  transform: scale(1);
}
.c-home1 .g_nojm img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  transition: all 1.8s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  clip-path: inset(0% 0% 0% 0%);
}
.c-home1 .swiper-slide {
  overflow: hidden;
}
.c-home1 .swiper-slide .c-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
}
.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-slide .c-wrap {
  mix-blend-mode: difference;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 0.8rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-slide .c-wrap .c-bantxt {
    color: #fff;
  }
}
.c-home1 .swiper-slide .c-wrap .c-bantxt .c-title {
  line-height: 1.1;
  font-size: 0.92rem;
}
.c-home1 .swiper-slide .c-wrap .c-bantxt .c-text {
  margin-top: 0.1rem;
  text-transform: uppercase;
}
.c-home1 .swiper-button-next,
.c-home1 .swiper-button-prev {
  margin-top: -0.2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0.5;
  transition: 0.4s;
  right: 0.6rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.5);
}
@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: 50%;
  height: 50%;
}
.c-home1 .swiper-button-next:hover,
.c-home1 .swiper-button-prev:hover {
  opacity: 1;
  background: #fff;
  color: var(--color);
}
.c-home1 .swiper-button-prev {
  left: 0.6rem;
  transform: rotate(180deg);
}
.c-home1 .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 0.4rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination {
    bottom: 0.6rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet {
  transition: all 0.4s;
  opacity: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  margin: 0 0.06rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination .swiper-pagination-bullet {
    margin: 0 0.1rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet div {
  height: 100%;
  background: var(--color);
  width: 0;
  animation-timing-function: linear;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color);
}
/* 自己的公共样式 */
/*过渡*/
a {
  text-decoration: initial;
}
input::-webkit-input-placeholder {
  color: #999;
}
textarea::-webkit-input-placeholder {
  color: #999;
}
.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;
}
/* 普通移入效果 */
.hov_08 {
  transition: all 0.4s;
}
.hov_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;
  }
}
.g_pc {
  display: block;
}
.g_md {
  display: none;
}
@media (max-width: 767px) {
  .g_pc {
    display: none;
  }
  .g_md {
    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;
}
.font68 {
  font-size: 68px;
}
.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,
  .font68,
  .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,
  .font68,
  .font80 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .font14,
  .font16 {
    font-size: 14px;
  }
  .font18,
  .font20 {
    font-size: 15px;
  }
  .font22,
  .font24,
  .font26,
  .font28 {
    font-size: 16px;
  }
  .font30,
  .font32,
  .font34 {
    font-size: 17px;
  }
  .font36,
  .font38,
  .font40 {
    font-size: 20px;
  }
  .font42,
  .font44,
  .font46 {
    font-size: 23px;
  }
  .font48,
  .font50,
  .font52,
  .font54,
  .font56,
  .font60,
  .font68,
  .font80 {
    font-size: 24px;
  }
}
/*延迟*/
.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: none;
}
nav.show_nav .nav_top {
  background: none;
}
@media (max-width: 1260px) {
  nav.show_nav .nav_top {
    background: var(--color);
  }
}
@media (max-width: 1260px) {
  nav.show_nav .xs {
    display: block;
  }
}
@media (max-width: 1260px) {
  nav.show_nav .yc {
    display: none;
  }
}
nav.show_nav svg {
  color: #fff;
}
nav.show_nav svg path {
  fill: #fff;
}
@media (max-width: 1260px) {
  nav.show_nav svg path {
    fill: #fff;
  }
}
nav.show_nav .nav_ljbox .nav_l_box .logo .xs {
  display: none;
}
nav.show_nav .nav_ljbox .nav_l_box .logo .yc {
  display: block;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  color: #fff;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg {
  color: #fff;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path {
  fill: #fff;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p {
  color: var(--color) !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after {
  background: var(--color) !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg {
  color: var(--color) !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path {
  fill: var(--color) !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box {
  /* 语言 */
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn {
  border-color: #fff;
}
@media (max-width: 1260px) {
  nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn {
    border-color: var(--color);
  }
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn p {
  color: #fff;
}
@media (max-width: 1260px) {
  nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn p {
    color: var(--color);
  }
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p,
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg {
  color: #fff !important;
}
nav.nav_on,
nav.nav_on2 {
  background: #fff;
}
nav.nav_on 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;
  margin: auto;
  /* logo */
  /* 导航右侧 */
}
@media screen and (max-width: 1440px) {
  nav .nav_ljbox {
    height: 60px;
  }
}
@media (max-width: 1260px) {
  nav .nav_ljbox {
    width: 100%;
    padding: 0 5%;
  }
}
nav .nav_ljbox .nav_l_box .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_l_box .logo .xs {
    display: none;
  }
  nav .nav_ljbox .nav_l_box .logo .yc {
    display: block;
  }
}
nav .nav_ljbox .nav_l_box .logo img {
  width: 1.8rem;
  height: auto;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .logo img {
    width: 2.4rem;
  }
}
nav .nav_ljbox .nav_l_box .logo p {
  color: #333;
  margin-left: 20px;
  padding-left: 15px;
  border-left: 1px solid #01c390;
  width: 2.2rem;
  line-height: 1;
}
@media (max-width: 1580px) {
  nav .nav_ljbox .nav_l_box .logo p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .logo p {
    width: auto;
    padding-left: 10px;
    margin-left: 10px;
    font-size: 12px;
  }
}
nav .nav_ljbox .nav_r_box {
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box {
    display: flex;
  }
}
nav .nav_ljbox .nav_r_box .nav_r {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  /* 导航右边内容 */
}
nav .nav_ljbox .nav_r_box .nav_r .navbox {
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul {
  display: flex;
  align-items: center;
  height: 100%;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li {
  height: 100%;
  position: relative;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on2 {
  position: initial;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p {
  color: 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.23rem;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
    margin: 0 0.1rem;
    color: #333;
  }
}
@media (max-width: 991px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
    font-size: 12px;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > svg {
  width: 6px;
  height: auto;
  position: absolute;
  right: -11px;
  color: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > img {
  width: 8px;
  height: auto;
  margin-left: 10px;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a .img2 {
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  transition: all 0.4s;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p::after {
  transition: all 0.4s;
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  left: 50%;
  background: var(--color);
  transform: translateX(-50%);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box {
  height: 100%;
  display: flex;
  align-items: center;
  /* 语言 */
  /* 搜索 */
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl {
  margin: 0 0.43rem 0 0.73rem;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan {
  margin-right: 0.26rem;
  height: 100%;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan:hover .nav_lan_box p,
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan:hover .nav_lan_box svg {
  color: var(--color);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg {
  color: #fff;
  margin-right: 0.19rem;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box {
  display: flex;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
  color: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg {
  color: #fff;
  flex-shrink: 0;
  width: 6px;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.05);
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box {
  width: 100%;
  height: 100%;
  padding: 0.05rem 0.2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a {
  margin: 3px 0;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a:hover {
  color: var(--color);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search {
  position: relative;
  width: 2rem;
  /* background: #fff; */
  /* border-radius: 5px; */
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_a {
  display: flex;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_a svg {
  color: #333;
  width: 15px;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_a svg path {
  fill: #333;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form {
  padding: 0 0 0.1rem 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #b2b2b2;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form button {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form button svg {
  color: #164f9a;
  margin-left: 0.1rem;
  width: 19px;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form button svg path {
  fill: #164f9a;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form input {
  width: 100%;
}
nav .g_navsearch {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  color: #222222;
  display: none;
}
nav .g_navsearch .container {
  padding: 0.6rem 0 1rem;
  position: relative;
}
@media (max-width: 767px) {
  nav .g_navsearch .container {
    padding-bottom: 0.6rem;
  }
}
nav .g_navsearch .f_close {
  position: absolute;
  right: 0.8rem;
  top: 0.96rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_close {
    right: 0;
    top: 0.3rem;
    width: 16px;
    height: 16px;
  }
}
nav .g_navsearch .f_close img {
  width: 100%;
  float: left;
}
nav .g_navsearch .f_close img:nth-child(2) {
  display: none;
}
nav .g_navsearch .f_close svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  color: #808080;
}
nav .g_navsearch .f_close svg path {
  fill: #808080;
}
nav .g_navsearch .f_close:hover {
  transform: rotate(90deg);
}
nav .g_navsearch .f_cont {
  max-width: 1000px;
  margin: 0 auto;
}
nav .g_navsearch .f_cont .fz_title {
  margin-bottom: 1.36rem;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .fz_title {
    margin-bottom: 0.6rem;
  }
}
nav .g_navsearch .f_cont .f_form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.2rem;
  margin-bottom: 0.36rem;
  border-bottom: 1px solid rgba(194, 194, 194, 0.15);
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .f_form {
    padding-bottom: 0.3rem;
  }
}
nav .g_navsearch .f_cont .f_form input {
  width: calc(100% - 26px);
  padding-right: 0.26rem;
  padding-left: 10px;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .f_form input {
    width: calc(100% - 0.36rem);
  }
}
nav .g_navsearch .f_cont .f_form input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #555555;
}
nav .g_navsearch .f_cont .f_form input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555555;
}
nav .g_navsearch .f_cont .f_form input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #555555;
}
nav .g_navsearch .f_cont .f_form .f_sub {
  overflow: hidden;
  width: 26px;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .f_form .f_sub {
    width: 0.36rem;
  }
}
nav .g_navsearch .f_cont .f_form .f_sub img {
  float: left;
  width: 100%;
}
nav .g_navsearch .f_cont .f_form .f_sub svg {
  color: #444444;
  width: 100%;
}
nav .g_navsearch .f_cont .f_form .f_sub svg path {
  fill: #444444;
}
nav .g_navsearch .f_cont .f_form .f_sub:hover svg {
  color: var(--color);
}
nav .g_navsearch .f_cont .f_form .f_sub:hover svg path {
  fill: var(--color);
}
nav .g_navsearch .f_cont .f_jut {
  display: flex;
  line-height: 24px;
  align-items: flex-start;
  line-height: 36px;
}
@media (max-width: 1580px) {
  nav .g_navsearch .f_cont .f_jut {
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  nav .g_navsearch .f_cont .f_jut {
    line-height: 26px;
  }
}
nav .g_navsearch .f_cont .f_jut .name {
  fill: 0 0 auto;
  margin-top: 1px;
  display: block;
  padding-right: 0.2rem;
}
nav .g_navsearch .f_cont .f_jut .f_list {
  fill: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
}
nav .g_navsearch .f_cont .f_jut .f_list .li {
  margin-bottom: 10px;
  color: #555555;
  background-color: #f1f1f1;
  border-radius: 18px;
  display: block;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  padding: 0 0.22rem;
  margin-right: 0.16rem;
}
@media (max-width: 1580px) {
  nav .g_navsearch .f_cont .f_jut .f_list .li {
    border-radius: 16px;
  }
}
@media (max-width: 991px) {
  nav .g_navsearch .f_cont .f_jut .f_list .li {
    border-radius: 13px;
  }
}
nav .g_navsearch .f_cont .f_jut .f_list .li:hover {
  color: #ffffff;
  background-color: var(--color);
}
/* 导航各种效果 */
.nav1_none {
  top: -100px !important;
}
.nav2_none {
  top: 100px !important;
}
@media (max-width: 1440px) {
  .nav1_none {
    top: -60px !important;
  }
  .nav2_none {
    top: 60px !important;
  }
}
/* 下拉导航 */
.g_nav2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: #f8f8f8;
  border-radius: 0 0 0.2rem 0.2rem;
  box-shadow: 0 6px 29px rgba(211, 211, 211, 0.08);
  padding: 10px 0;
  display: none;
  width: auto;
  white-space: nowrap;
}
.g_nav2 > a {
  min-height: 0.6rem;
  padding: 0.07rem 0.2rem 0.07rem 0.3rem;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  margin: 5px 10px;
  border-radius: 0.15rem;
  -webkit-transition: all 0.6s;
}
.g_nav2 > a:hover {
  background: #fff;
}
.g_nav3 {
  display: none;
  position: absolute;
  width: 100%;
  height: calc(100vh);
  top: calc(100% + 1px);
  left: 0;
  background: #fff;
}
/* 移动端导航 */
#g-header {
  display: none;
}
@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;
}
/* 底部导航 */
.foot_nav {
  margin-right: 1.68rem;
}
.foot_nav a {
  transition: all 0.4s;
}
.foot_nav a:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .foot_nav {
    margin: 0 ;
  }
}
.foot_nav:last-child {
  margin-right: 0;
}
.foot_nav .a_tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}
.foot_nav .a_tit.on svg,
.foot_nav .a_tit.on img {
  transform: rotate(90deg);
}
.foot_nav .a_tit a {
  text-transform: uppercase;
  color: #fff;
}
.foot_nav .a_tit svg,
.foot_nav .a_tit img {
  transition: all 0.4s;
  width: 5px;
  height: auto;
  display: none;
  color: #fff;
}
@media (max-width: 767px) {
  .foot_nav .a_tit svg,
  .foot_nav .a_tit img {
    display: block;
  }
}
.foot_nav .a_tit svg path,
.foot_nav .a_tit img path {
  fill: #fff;
}
@media (max-width: 767px) {
  .foot_nav ul {
    display: none;
    padding-bottom: 0.2rem;
  }
}
.foot_nav ul li {
  margin-bottom: 0.12rem;
}
.foot_nav ul li a {
  color: #999;
}
/* 网站地图 */
.g-mapon {
  padding: 2.1rem 0 1.73rem;
}
.g-mapon .g-tit {
  margin-bottom: 0.4rem;
  text-align: left;
}
.g-mapon .g-tit h2 {
  color: #fff;
  line-height: 1;
}
@media (max-width: 767px) {
  .g-mapon .g-tit h2 {
    font-size: 0.48rem;
  }
}
.g-mapon .box {
  margin-top: 0.1rem;
}
.g-mapon .box .item {
  display: flex;
  padding: 0.8rem 0 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
@media (max-width: 767px) {
  .g-mapon .box .item {
    flex-direction: column;
  }
}
.g-mapon .box .item a:hover {
  color: var(--color) !important;
}
.g-mapon .box .item .g-la {
  width: 2.43rem;
  margin-bottom: 0.15rem;
  flex-shrink: 0;
  color: #fff;
}
@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: 3px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.g-mapon .box .item .g-twa a {
  min-width: 1.8rem;
  margin-right: 0.2rem;
  margin-bottom: 0.15rem;
  padding-right: 0.2rem;
  color: #fff;
}
@media (max-width: 767px) {
  .g-mapon .box .item .g-twa a {
    min-width: auto;
  }
}
/* 404 */
.notbox404 {
  padding: 0.5rem 0 1.2rem;
}
.notbox404 .notbox404_box {
  text-align: center;
  width: 90%;
  margin: auto;
}
.notbox404 .notbox404_box > img {
  margin-bottom: 0.75rem;
  width: 6rem;
}
@media (max-width: 991px) {
  .notbox404 .notbox404_box > img {
    width: 90%;
  }
}
.notbox404 .notbox404_box .notbox404_con .txt {
  margin: 0.25rem 0 0.6rem;
}
.notbox404 .notbox404_box .notbox404_con .txt span {
  color: var(--color);
}
/* 免责声明 */
.g-pri {
  padding: 1.1rem 0 3rem;
}
.g-pri .box .tit {
  margin-bottom: 0.35rem;
  text-align: center;
}
.g-pri .box .tit h2 {
  font-weight: bold;
  margin-bottom: 0.35rem;
}
.g-pri .box .tit .g-p {
  display: flex;
  justify-content: center;
}
.g-pri .box .tit .g-p p {
  color: #999;
  margin: 0 0.18rem;
}
.g-pri .box .public-content h3 {
  font-size: 24px;
}
.g-pri .box .public-content .p1 {
  display: block;
  position: relative;
  padding-left: 20px;
}
.g-pri .box .public-content .p1:after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 12px;
}
@media (max-width: 1580px) {
  .g-pri .box .public-content .p1:after {
    top: 14px;
  }
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box {
  display: flex;
}
@media (max-width: 767px) {
  .g-pri .box .public-content .g-pritxt .g-pritxt-box {
    flex-direction: column;
  }
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box span {
  flex-shrink: 0;
  color: #222;
  display: block;
  position: relative;
  padding-left: 20px;
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box span:after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 12px;
}
@media (max-width: 1580px) {
  .g-pri .box .public-content .g-pritxt .g-pritxt-box span:after {
    top: 14px;
  }
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box ul {
  padding: 0;
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box ul li {
  list-style: none;
}
.pub_title {
  text-align: center;
}
.pub_title h2 {
  font-weight: bold;
  color: #1e304a;
  line-height: 1.2;
}
.pub_title p {
  margin-top: 0.2rem;
  color: #999;
}
.pub_btn {
  min-width: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 0.46rem;
  padding: 0.05rem;
  padding-left: 0.22rem;
  border-radius: 100px;
  /* border-radius: 100px; */
  overflow: hidden;
  background: #fff;
  border: 1px solid transparent;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .pub_btn {
    height: 0.6rem;
    padding-left: 0.3rem;
  }
}
@media (max-width: 767px) {
  .pub_btn {
    height: 0.8rem;
    padding-left: 0.4rem;
  }
}
.pub_btn:hover {
  border-color: var(--color);
  background: var(--color);
}
.pub_btn:hover i {
  background: #fff;
}
.pub_btn:hover i svg path,
.pub_btn:hover i img path {
  fill: var(--color);
}
.pub_btn:hover p {
  color: #fff;
}
.pub_btn i {
  margin-left: 0.13rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.36rem;
  height: 0.36rem;
  background: var(--color);
  border-radius: 50%;
}
@media (max-width: 1580px) {
  .pub_btn i {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media (max-width: 767px) {
  .pub_btn i {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.pub_btn i svg,
.pub_btn i img {
  width: 16.667%;
  height: auto;
}
.pub_btn i svg path,
.pub_btn i img path {
  fill: #111;
  transition: all 0.4s;
}
.pub_btn p {
  position: relative;
  z-index: 5;
  transition: all 0.4s;
}
.pub_btn2 {
  background: none;
  border-color: #111;
}
.pub_btn3 {
  padding-bottom: 4px;
  border-bottom: 1px solid #111;
  display: flex;
  align-items: center;
}
.pub_btn3.pub_btn3_2 {
  padding-bottom: 0;
  border: none;
}
.pub_btn3.pub_btn3_2 p {
  color: #fff;
}
.pub_btn3.pub_btn3_2 i svg path {
  fill: #fff;
}
.pub_btn3 i {
  margin-left: 0.09rem;
  flex-shrink: 0;
  display: flex;
  width: 6px;
  height: auto;
}
.pub_btn3 i svg,
.pub_btn3 i img {
  width: 100%;
  height: auto;
}
.pub_btn3 i svg path,
.pub_btn3 i img path {
  fill: #111;
}
/* 轮播数量不够时隐藏按钮 */
.swiper-button-lock {
  display: none !important;
}
/* 二级 */
/* .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;} */
/* 开始 */
body.g_on #c-header .c-nav {
  transform: translateY(0);
  opacity: 1;
}
body.g_on #c-header .c-gn {
  transform: translateY(0);
  opacity: 1;
}
body.g_on #c-header .c-logo .c-img-box {
  transform: translateY(0);
  opacity: 1;
}
body.g_on .c-home1 .g_nojm i {
  left: 0;
  opacity: 0;
}
body.g_on .c-home1 .g_nojm img {
  clip-path: inset(0% 0% 0% 100%);
}
.g_public_title {
  text-align: center;
  margin-bottom: 0.6rem;
}
.g_public_title h2 {
  text-transform: uppercase;
  line-height: 1.1;
}
.g_public_title p {
  margin-top: 0.2rem;
  line-height: 1.1;
}
.g_public_title.g_public_title2 {
  margin-bottom: 0;
}
/* HOT SALE */
.hotson {
  position: relative;
  padding: 2.2rem 0 0;
}
@media (max-width: 767px) {
  .hotson {
    padding: 1.2rem 0;
  }
}
.hotson .g_i {
  position: absolute;
  width: 100%;
  height: 80%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 40%, #ffffff 70%, #ffffff 100%);
  z-index: 4;
  top: 0;
  left: 0;
}
.hotson .g_public_title {
  position: relative;
  z-index: 10;
  margin-bottom: 0;
}
.hotson .box {
  padding: 0.6rem 0 1rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .hotson .box {
    flex-wrap: wrap;
    padding: 0 3%;
    margin-top: 0.7rem;
  }
}
.hotson .box .item {
  transform-origin: left bottom;
  transition: all 0.2s;
  position: relative;
  margin-left: 0.4rem;
  width: calc(25% - 0.4rem);
}
@media (max-width: 767px) {
  .hotson .box .item {
    width: calc(50% - 0.4rem);
    margin: 0 0.2rem 0.4rem !important;
    transform: initial !important;
  }
}
.hotson .box .item:hover .public-img img {
  transform: scale(1.05);
}
.hotson .box .item:hover .txt {
  opacity: 1;
}
.hotson .box .item .public-img:before {
  padding-top: 74.94456763%;
}
.hotson .box .item .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0.16rem 0.2rem;
  transition: all 0.4s;
  opacity: 0;
}
.hotson .box .item .txt h3 {
  line-height: 1.22222222;
}
.hotson .box .item1 {
  transform: rotate(10deg);
}
.hotson .box .item2 {
  transform: rotate(12deg) translateY(0.5rem);
}
.hotson .box .item3 {
  transform: rotate(14deg) translateY(1rem);
}
.hotson .box .item4 {
  transform: rotate(16deg) translateY(1.5rem);
}
.hotstw {
  /* padding: 0 0 1.44rem; */
  height: 200vh;
}
@media (max-width: 991px) {
  .hotstw {
    height: auto;
  }
}
.hotstw .g_public_title {
  position: absolute;
  top: 0;
  z-index: 20;
  left: 50%;
  transform: translate(-50%, 0.9rem);
}
@media (max-width: 991px) {
  .hotstw .g_public_title {
    position: initial;
    transform: translate(0, 0);
  }
}
.hotstw .box {
  overflow: hidden;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  padding-top: 1.9rem;
}
@media (max-width: 1580px) {
  .hotstw .box {
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .hotstw .box {
    padding: 1rem 0;
    position: initial;
  }
}
@media (max-width: 767px) {
  .hotstw .box {
    padding: 0 5% 1rem;
  }
}
.hotstw .box .hotstw_box {
  position: relative;
  z-index: 30;
}
.hotstw .box .hotstw_box .hotstw_con {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.hotstw .box .hotstw_box .item {
  position: relative;
  width: 50%;
}
@media (max-width: 991px) {
  .hotstw .box .hotstw_box .item {
    opacity: 1 !important;
    transform: initial !important;
  }
}
@media (max-width: 767px) {
  .hotstw .box .hotstw_box .item {
    margin-bottom: 0.3rem;
    width: 100% !important;
  }
}
.hotstw .box .hotstw_box .item:hover .public-img .img1 {
  opacity: 0;
}
.hotstw .box .hotstw_box .item:hover .public-img .img2 {
  opacity: 1;
}
.hotstw .box .hotstw_box .item:hover .txt h3 {
  color: #fff;
}
.hotstw .box .hotstw_box .item:hover .txt .g_more {
  opacity: 1;
}
.hotstw .box .hotstw_box .item:nth-child(-n+3) {
  width: calc(100%/3);
}
.hotstw .box .hotstw_box .item:nth-child(-n+3) .public-img:before {
  padding-top: 75.78125%;
}
.hotstw .box .hotstw_box .item .public-img:before {
  padding-top: 50.52083333%;
}
@media (max-width: 767px) {
  .hotstw .box .hotstw_box .item .public-img:before {
    padding-top: 50% !important;
  }
}
.hotstw .box .hotstw_box .item .public-img .img2 {
  opacity: 0;
}
.hotstw .box .hotstw_box .item .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0.25rem 0.2rem;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.hotstw .box .hotstw_box .item .txt h3 {
  line-height: 1.22222222;
  transition: all 0.4s;
}
.hotstw .box .hotstw_box .item .txt .g_more {
  opacity: 0;
  transition: all 0.4s;
  border: 1px solid #fff;
  padding: 0.08rem 0.5rem;
  color: #fff;
  border-radius: 100px;
}
.hotstw .box .hotstw_box .item .txt .g_more:hover {
  border-color: var(--color);
  background: var(--color);
}
.hotstw .box .hotstw_box .item1 {
  transform: scale(0.6) translate(160%, 0%);
  z-index: 10;
}
.hotstw .box .hotstw_box .item2 {
  transform: scale(0.6) translate(-10%, 0%) rotate(7deg);
  z-index: 9;
}
.hotstw .box .hotstw_box .item3 {
  transform: scale(0.6) translate(-180%, 0%) rotate(14deg);
  z-index: 8;
}
.hotstw .box .hotstw_box .item4 {
  transform: scale(0.5) translate(91%, -201%) rotate(0deg);
  opacity: 0;
  z-index: 7;
}
.hotstw .box .hotstw_box .item5 {
  transform: scale(0.5) translate(-108%, -201%) rotate(0deg);
  opacity: 0;
  z-index: 6;
}
.hotsth {
  /* height: 200vh; */
}
.hotsth .g_public_title {
  text-align: left;
}
.hotsth .g_public_title p {
  text-transform: uppercase;
}
.hotsth .box {
  /* position: sticky;
		position: -webkit-sticky;
		top: 0;
		left: 0; */
  position: relative;
  z-index: 10;
}
.hotsth .box .img .public-img:before {
  padding-top: 50.52083333%;
}
@media (max-width: 991px) {
  .hotsth .box .img .public-img:before {
    padding-top: 70%;
  }
}
.hotsth .box .hotsth_box {
  background: #fff url(../images/home12.png) no-repeat;
  background-size: contain;
  background-position: 100% 67%;
  width: calc(725/1920*100%);
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 10;
  height: 100%;
  padding: 0.52rem 0.52rem 0.8rem;
}
@media (max-width: 767px) {
  .hotsth .box .hotsth_box {
    position: initial;
    width: 100%;
    height: auto;
    padding: 0.5rem 5% 1rem;
  }
}
.hotsth .box .hotsth_box .public-img:before {
  padding-top: 48.38709677%;
}
.hotsth .box .hotsth_box .gcon {
  text-align: center;
  margin-top: 0.75rem;
}
.hotsth .box .hotsth_box .gcon .item {
  margin-top: 0.3rem;
}
.hotsth .box .hotsth_box .gcon .item .gnum {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  border: 1px solid #cccccc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hotsth .box .hotsth_box .gcon .item .gnum p {
  font-style: italic;
  color: #000;
}
.hotsth .box .hotsth_box .gcon .item .txt {
  margin-top: 0.3rem;
}
.hotsth .box .hotsth_box .gcon .item .txt h3 {
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .hotsth .box .hotsth_box .gcon .item .txt h3 {
    font-size: 16px;
  }
}
.hotsth .box .hotsth_box .gcon .public-btn {
  margin-top: 0.68rem;
}
.hotsfo {
  background: #fafafa;
  padding: 1.8rem 0 0;
}
@media (max-width: 767px) {
  .hotsfo {
    padding: 1rem 0 0;
  }
}
.hotsfo .hotsfo_t {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .hotsfo .hotsfo_t {
    margin-bottom: -1rem;
  }
}
.hotsfo .hotsfo_t .g_p {
  margin: -0.2rem auto 0;
  width: 60%;
  text-align: center;
}
@media (max-width: 767px) {
  .hotsfo .hotsfo_t .g_p {
    width: 100%;
  }
}
.hotsfo .hotsfo_t .g_p p {
  margin-top: 0.3rem;
}
.hotsfo .hotsfo_b {
  position: relative;
  z-index: 10;
  height: 300vh;
  /* padding-bottom: 1.6rem; */
}
.hotsfo .hotsfo_b .box {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  height: 100vh;
  overflow: hidden;
}
.hotsfo .hotsfo_b .box .bimg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hotsfo .hotsfo_b .box .bimg .g_a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hotsfo .hotsfo_b .box .bimg .g_a .public-img {
  overflow: initial;
  border-radius: 5px;
  width: 7.13rem;
  pointer-events: none;
}
.hotsfo .hotsfo_b .box .bimg .g_a .public-img img {
  transition: all 0s;
}
.hotsfo .hotsfo_b .box .bbox {
  position: relative;
  z-index: 100;
  height: 100%;
  display: flex;
  align-items: center;
}
.hotsfo .hotsfo_b .box .bbox .item {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.hotsfo .hotsfo_b .box .bbox .item:last-child {
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .hotsfo .hotsfo_b .box .bbox .item:last-child {
    padding-right: 0rem;
  }
}
.hotsfo .hotsfo_b .box .bbox .item1 {
  height: 100%;
  margin-left: 100vw;
  padding: 0.2rem 2.3rem 0.2rem 0;
}
.hotsfo .hotsfo_b .box .bbox .item1 p {
  white-space: nowrap;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .hotsfo .hotsfo_b .box .bbox .item1 p {
    filter: blur(0) !important;
  }
}
.hotsfo .hotsfo_b .box .bbox .item2 {
  display: flex;
  align-items: center;
}
.hotsfo .hotsfo_b .box .bbox .item2 .g_it {
  margin-right: 1.96rem;
}
.hotsfo .hotsfo_b .box .bbox .item2 .g_it:last-child {
  margin-right: 0;
}
.hotsfo .hotsfo_b .box .bbox .item2 .g_it:nth-child(2) {
  margin-right: 1.3rem;
}
.hotsfo .hotsfo_b .box .bbox .item2 .g_it .g_it_box {
  position: relative;
}
.hotsfo .hotsfo_b .box .bbox .item2 .g_it .g_it_box.hoveimg .txt {
  color: #fff;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}
.hotsfo .hotsfo_b .box .bbox .item2 .g_it .g_it_box .public-img {
  width: 3.01rem;
  border-radius: 0.1rem;
}
@media (max-width: 991px) {
  .hotsfo .hotsfo_b .box .bbox .item2 .g_it .g_it_box .public-img {
    width: 4rem;
  }
}
.hotsfo .hotsfo_b .box .bbox .item2 .g_it .g_it_box .txt {
  padding: 0.2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 0.1rem;
  border: 1px solid #e0e0e0;
}
.hotsfo .hotsfo_b .box .bbox .item2 .g_it .g_it_box .txt .txt_t p {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  line-height: 1.3;
}
.hotsfo .hotsfo_b .box .bbox .item2 .g_it .g_it_box .txt .txt_b {
  line-height: 1.3;
  padding-right: 0.5rem;
}
.hotsfo .hotsfo_b .g_a .public-btn {
  opacity: 0;
  position: absolute;
  bottom: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
}
.hotsfi {
  height: 220vh;
}
@media (max-width: 1580px) {
  .hotsfi {
    height: 250vh;
  }
}
.hotsfi .box {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.hotsfi .box .imgbj2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.hotsfi .box .imgbj2 img {
  clip-path: inset(0% 0% 100% 0%);
}
.hotsfi .box .bbox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hotsfi .box .bbox .imgbj {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  width: 50%;
  height: 100%;
}
@media (max-width: 1580px) {
  .hotsfi .box .bbox .imgbj {
    width: 65%;
  }
}
@media (max-width: 991px) {
  .hotsfi .box .bbox .imgbj {
    width: 100%;
    transform: translate(-50%, -50%) scale(0.7);
  }
}
@media (max-width: 767px) {
  .hotsfi .box .bbox .imgbj {
    top: 70%;
  }
}
.hotsfi .box .bbox .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotsfi .box .bbox .g_tit {
  width: 80%;
  position: absolute;
  top: calc(300/970*100%);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media (max-width: 767px) {
  .hotsfi .box .bbox .g_tit {
    top: 15%;
  }
}
.hotsfi .box .bbox .g_tit p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.1;
  background-image: linear-gradient(to right, #010704 0%, #125d32 20%, #125d32 80%, #010704 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .hotsfi .box .bbox .g_tit p {
    font-size: 0.56rem;
  }
}
.hotsfi .box .bbox .gcon {
  width: 34.89583333%;
  opacity: 0;
  background: #fff;
  padding: 0.24rem 0.24rem 0.54rem;
  transform: translateY(1rem);
}
@media (max-width: 1260px) {
  .hotsfi .box .bbox .gcon {
    width: 50.52083333%;
  }
}
@media (max-width: 767px) {
  .hotsfi .box .bbox .gcon {
    width: 90%;
  }
}
.hotsfi .box .bbox .gcon .txt {
  text-align: center;
  padding: 0.34rem 0 0;
}
.hotsfi .box .bbox .gcon .txt .txt_t h3 {
  line-height: 1.2;
}
.hotsfi .box .bbox .gcon .txt .txt_t p {
  padding: 0 0.2rem;
  margin-top: 0.16rem;
}
.hotsfi .box .bbox .gcon .txt .public-btn {
  margin-top: 0.5rem;
}
/* 底部 */
.footer {
  position: relative;
  width: 100%;
  /* background: #000100 url(../images/foot-bg-icon.svg) right bottom no-repeat; */
  background: #000100;
  background-size: 64.85%;
  padding: 0.5rem 0.35rem 0;
  z-index: 1;
}
.footer .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.52rem;
}
.footer .top .t1 {
  width: 50%;
  color: #fff;
  line-height: calc(30/20);
}
@media (max-width: 991px) {
  .footer .top .t1 {
    width: 100%;
  }
}
.footer .top .focus {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .footer .top .focus {
    width: 100%;
    margin-top: 0.3rem;
    justify-content: flex-start;
  }
}
.footer .top .focus a {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
  margin-right: 0.2rem;
}
@media (max-width: 991px) {
  .footer .top .focus a {
    width: 0.68rem;
    height: 0.68rem;
  }
}
.footer .top .focus a:last-child {
  margin-right: 0;
}
.footer .top .focus a svg {
  color: #fff;
  width: 16px;
  height: 16px;
}
.footer .top .focus a svg path {
  fill: #fff;
  transition: all 0.4s;
}
.footer .top .focus a:hover {
  background: #fff;
  border: 1px solid #fff;
}
.footer .top .focus a:hover svg {
  color: #202020;
}
.footer .top .focus a:hover svg path {
  fill: #202020;
}
.footer .center {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.footer .center .left {
  width: calc(550/1850*100%);
}
@media (max-width: 991px) {
  .footer .center .left {
    width: 100%;
  }
}
.footer .center .left .t1 {
  line-height: calc(30/24);
  color: #fff;
}
.footer .center .left .search-box {
  width: 460px;
  max-width: 100%;
  display: flex;
  background: #333433;
  height: 0.62rem;
  border-radius: 0.31rem;
  padding: 0.1rem 0.14rem;
  margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .footer .center .left .search-box {
    height: 0.68rem;
  }
}
.footer .center .left .search-box .txt {
  width: calc(100% - 0.4rem);
  height: 100%;
  padding-left: 0.2rem;
  color: #fff;
}
@media (max-width: 991px) {
  .footer .center .left .search-box .txt {
    width: calc(100% - 0.48rem);
  }
}
.footer .center .left .search-box .txt::placeholder {
  color: #999;
}
.footer .center .left .search-box .btn {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .footer .center .left .search-box .btn {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.footer .center .left .search-box .btn svg {
  color: #666;
  width: 0.16rem;
  height: auto;
}
.footer .center .left .search-box .btn svg path {
  fill: #666;
  transition: all 0.4s;
}
.footer .center .left .search-box .btn:hover {
  background: var(--color);
}
.footer .center .left .search-box .btn:hover svg {
  color: #fff;
}
.footer .center .left .search-box .btn:hover svg path {
  fill: #fff;
}
.footer .center .left .contactUs {
  width: 100%;
  margin-top: 0.4rem;
}
.footer .center .left .contactUs .ts1 {
  color: rgba(255, 255, 255, 0.6);
  line-height: calc(30/24);
}
.footer .center .left .contactUs .ts2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}
.footer .center .left .contactUs .ts2 a {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
  margin-right: 0.2rem;
}
@media (max-width: 991px) {
  .footer .center .left .contactUs .ts2 a {
    width: 0.68rem;
    height: 0.68rem;
  }
}
.footer .center .left .contactUs .ts2 a:last-child {
  margin-right: 0;
}
.footer .center .left .contactUs .ts2 a svg {
  color: #fff;
  width: 18px;
  height: 18px;
}
.footer .center .left .contactUs .ts2 a svg path {
  fill: #fff;
  transition: all 0.4s;
}
.footer .center .left .contactUs .ts2 a:hover {
  background: #fff;
  border: 1px solid #fff;
}
.footer .center .left .contactUs .ts2 a:hover svg {
  color: #202020;
}
.footer .center .left .contactUs .ts2 a:hover svg path {
  fill: #202020;
}
.footer .center .right {
  width: calc(800/1850*100%);
}
@media (max-width: 991px) {
  .footer .center .right {
    width: 100%;
    margin-top: 0.5rem;
  }
}
@media (max-width: 767px) {
  .footer .center .right {
    display: none;
  }
}
.footer .center .right .menu {
  width: 100%;
}
.footer .center .right .menu ul {
  display: flex;
  flex-wrap: wrap;
}
.footer .center .right .menu ul li {
  width: calc(350/800*100%);
}
.footer .center .right .menu ul li .t1 {
  color: #fff;
  line-height: calc(30/20);
  margin-bottom: 0.12rem;
}
.footer .center .right .menu ul li .t2 {
  display: flex;
}
.footer .center .right .menu ul li .t2 a {
  transition: all 0.4s;
  color: #666;
  line-height: calc(30/16);
}
.footer .center .right .menu ul li .t2 a:hover {
  color: #fff;
}
.footer .center .right .menu ul .gli .t1 {
  margin-bottom: 4px;
}
.footer .down {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0;
  margin-top: 1.6rem;
}
@media (max-width: 767px) {
  .footer .down {
    margin-top: 0.5rem;
  }
}
.footer .down .left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
}
@media (max-width: 1260px) {
  .footer .down .left {
    width: 100%;
    justify-content: center;
  }
}
.footer .down .left .logo {
  display: flex;
}
.footer .down .left .logo a {
  display: flex;
}
.footer .down .left .logo a svg,
.footer .down .left .logo a img {
  color: #fff;
  height: 20px;
}
.footer .down .left .logo a svg path,
.footer .down .left .logo a img path {
  fill: #fff;
}
.footer .down .left .ts {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .footer .down .left .ts {
    width: 100%;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 0.2rem;
    justify-content: center;
  }
}
.footer .down .left .ts span {
  line-height: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 0.2rem;
  margin-left: 0.2rem;
}
@media (max-width: 991px) {
  .footer .down .left .ts span {
    margin: 0 0.2rem;
  }
}
@media (max-width: 767px) {
  .footer .down .left .ts span {
    width: 100%;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    text-align: center;
    margin-top: 0.15rem;
  }
}
.footer .down .left .ts .power {
  color: #fff;
  margin-left: 0.3rem;
}
@media (max-width: 991px) {
  .footer .down .left .ts .power {
    margin: 0 0.2rem;
  }
}
@media (max-width: 767px) {
  .footer .down .left .ts .power {
    width: 100%;
    margin-left: 0;
    margin-top: 0.14rem;
  }
}
@media (max-width: 1260px) {
  .footer .down .s-menu {
    width: 100%;
    margin-top: 0.2rem;
  }
}
.footer .down .s-menu ul {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1260px) {
  .footer .down .s-menu ul {
    justify-content: center;
  }
}
.footer .down .s-menu ul li {
  margin-right: 0.58rem;
}
@media (max-width: 767px) {
  .footer .down .s-menu ul li {
    margin-right: 0;
    width: 50%;
    display: flex;
    justify-content: center;
    margin-top: 0.2rem;
  }
}
.footer .down .s-menu ul li:last-child {
  margin-right: 0;
}
.footer .down .s-menu ul li a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.4s;
  line-height: calc(20/16);
}
.footer .down .s-menu ul li a:hover {
  color: #fff;
}
.footer .foot-letter {
  pointer-events: none;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  overflow: hidden;
}
.footer .foot-letter .item {
  margin-right: 0.3rem;
  display: flex;
  align-items: center;
  transform: translateY(0.5rem);
  opacity: 0;
  pointer-events: none;
}
.footer .foot-letter .item:nth-child(1) {
  transition: all 0.6s;
}
.footer .foot-letter .item:nth-child(2) {
  transition: all 0.6s 0.1s;
}
.footer .foot-letter .item:nth-child(3) {
  transition: all 0.6s 0.2s;
}
.footer .foot-letter .item:nth-child(4) {
  transition: all 0.6s 0.3s;
}
.footer .foot-letter .item:nth-child(5) {
  transition: all 0.6s 0.4s;
}
.footer .foot-letter .item:nth-child(6) {
  transition: all 0.6s 0.5s;
}
.footer .foot-letter .item:nth-child(7) {
  transition: all 0.6s 0.6s;
}
.footer .foot-letter .item:nth-child(8) {
  transition: all 0.6s 0.7s;
}
.footer .foot-letter .item:nth-child(9) {
  transition: all 0.6s 0.8s;
}
.footer .foot-letter .item:last-child {
  margin-right: 0;
}
.footer .foot-letter .item svg {
  color: rgba(255, 255, 255, 0.1);
  width: auto;
  height: 1.6rem;
}
@media (max-width: 1580px) {
  .footer .foot-letter .item svg {
    height: 1.4rem;
  }
}
@media (max-width: 991px) {
  .footer .foot-letter .item svg {
    height: 1.2rem;
  }
}
@media (max-width: 767px) {
  .footer .foot-letter .item svg {
    height: 1rem;
  }
}
.footer .foot-letter .item svg path {
  fill: rgba(255, 255, 255, 0.1);
}
.footer .foot-letter.show .item {
  transform: translateY(0);
  opacity: 1;
}
/* 产品列表 */
.proon {
  position: relative;
}
.proon .hi-text-animation1 .char-container {
  color: #fff;
}
.proon .public-img {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
  width: 100%;
}
@media (max-width: 767px) {
  .proon .public-img {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.proon .public-img:before {
  padding-top: 56.25%;
}
@media (max-width: 1260px) {
  .proon .public-img:before {
    padding-top: 70%;
  }
}
@media (max-width: 767px) {
  .proon .public-img:before {
    padding-top: initial;
  }
}
.proon .box {
  margin-top: -100vh;
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 7.8rem;
  padding: 0.6rem 0.4rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .proon .box {
    justify-content: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .proon .box {
    position: relative;
    padding: 1.2rem 0.4rem;
    margin-top: 0;
  }
}
.proon .box .gl {
  width: 50%;
  padding-right: 1.7rem;
}
@media (max-width: 1260px) {
  .proon .box .gl {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .proon .box .gl {
    width: 100%;
  }
}
.proon .box .gl h2 {
  font-size: 0.92rem;
  line-height: 0.9;
  color: #fff;
  text-transform: uppercase;
}
.proon .box .gl .g_a {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
}
.proon .box .gl .g_a .g_a_li {
  background: #fff;
  border-radius: 100px;
  margin: 0 10px 10px 0;
  height: 0.46rem;
  padding: 0 0.28rem;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 991px) {
  .proon .box .gl .g_a .g_a_li {
    height: 0.6rem;
  }
}
@media (max-width: 767px) {
  .proon .box .gl .g_a .g_a_li {
    height: 0.8rem;
  }
}
.proon .box .gl .g_a .g_a_li p {
  color: #000;
}
.proon .box .gl .g_a .g_a_li i {
  margin-left: 0.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: auto;
  color: #666;
}
@media (max-width: 1260px) {
  .proon .box .gl .g_a .g_a_li i {
    width: 8px;
  }
}
@media (max-width: 767px) {
  .proon .box .gl .g_a .g_a_li i {
    width: 7px;
  }
}
.proon .box .gl .g_a .g_a_li i svg,
.proon .box .gl .g_a .g_a_li i img {
  width: 100%;
  height: auto;
}
.proon .box .gl .g_a .g_a_li i svg path,
.proon .box .gl .g_a .g_a_li i img path {
  fill: var(--color);
}
.proon .box .gr {
  color: #fff;
  width: 50%;
  padding: 0 2rem 0 0.4rem;
}
@media (max-width: 1260px) {
  .proon .box .gr {
    padding: 0 ;
    margin-top: 0.4rem;
  }
}
@media (max-width: 991px) {
  .proon .box .gr {
    width: 100%;
  }
}
.proon .box .gr p {
  line-height: 1.2;
}
.g_qie .pub_nav {
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.05);
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 10;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .g_qie .pub_nav {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.g_qie .pub_nav:after {
  display: none;
}
.g_qie .pub_nav:hover {
  background: var(--color);
}
.g_qie .pub_nav:hover svg {
  color: #fff;
}
.g_qie .pub_nav:hover svg path {
  fill: #fff;
}
.g_qie .pub_nav svg {
  width: 14%;
  height: auto;
}
.g_qie .pub_nav svg path {
  fill: #999;
  opacity: 1;
  transition: all 0.4s;
}
.g_qie .pub_prev {
  left: 0.8rem;
}
.g_qie .pub_prev svg {
  transform: rotate(180deg);
}
.g_qie .pub_next {
  right: 0.8rem;
}
.g_qie.g_qie2 {
  display: flex;
  align-items: center;
}
.g_qie.g_qie2 .pub_nav {
  position: initial;
  transform: translateY(0%);
  margin-left: 0.17rem;
}
.protw {
  position: relative;
  z-index: 10;
  padding: 0 0 1rem;
}
@media (max-width: 991px) {
  .protw {
    margin: 1rem 0 ;
  }
}
.protw .protw_tit {
  padding: 0 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.protw .protw_tit h2 {
  color: #fff;
}
@media (max-width: 991px) {
  .protw .protw_tit h2 {
    color: #fff;
  }
}
@media (max-width: 767px) {
  .protw .protw_tit .g_qie .pub_nav {
    border: 1px solid var(--color);
  }
}
.protw .g_box {
  padding-left: 0.4rem;
  margin-top: 0.45rem;
}
.protw .g_box .swiper .swiper-slide {
  width: auto;
}
.protw .g_box .swiper .protw_box:hover img {
  transform: scale(1.03);
}
.protw .g_box .swiper .protw_box .img {
  overflow: hidden;
  width: 100%;
}
.protw .g_box .swiper .protw_box .img img {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.protw .g_box .swiper .protw_box .txt {
  margin-top: 0.18rem;
  color: #fff;
}
.proth {
  padding: 1rem 0 1.5rem;
}
.proth .g_public_title {
  text-align: left;
  padding: 0 0.4rem;
}
.proth .box .hi-nav1 {
  padding: 0 0.4rem;
  margin-top: 0.38rem;
}
@media (max-width: 767px) {
  .proth .box .hi-nav1 {
    padding: 0 0 0 0.4rem;
  }
}
.proth .box .hi-nav1 .swiper-slide {
  width: auto;
}
.proth .box .hi-nav1 .swiper-slide:hover .g_fil a,
.proth .box .hi-nav1 .swiper-slide.on .g_fil a {
  border-color: var(--color);
}
.proth .box .hi-nav1 .swiper-slide:hover .g_fil a p,
.proth .box .hi-nav1 .swiper-slide.on .g_fil a p,
.proth .box .hi-nav1 .swiper-slide:hover .g_fil a i,
.proth .box .hi-nav1 .swiper-slide.on .g_fil a i {
  color: var(--color);
}
@media (max-width: 767px) {
  .proth .box .hi-nav1 .swiper-scrollbar {
    display: none;
  }
}
.proth .box .hi-nav1 .g_fil {
  cursor: pointer;
}
.proth .box .hi-nav1 .g_fil a {
  transition: all 0.4s;
  border: 1px solid #ededed;
  border-radius: 100px;
  margin: 0 10px 10px 0;
  height: 0.46rem;
  padding: 0 0.32rem;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 991px) {
  .proth .box .hi-nav1 .g_fil a {
    height: 0.6rem;
  }
}
@media (max-width: 767px) {
  .proth .box .hi-nav1 .g_fil a {
    height: 0.8rem;
  }
}
.proth .box .hi-nav1 .g_fil a p {
  transition: all 0.4s;
  color: #000;
}
.proth .box .hi-nav1 .g_fil a i {
  transition: all 0.4s;
  margin-left: 0.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: auto;
  color: #666;
}
@media (max-width: 1260px) {
  .proth .box .hi-nav1 .g_fil a i {
    width: 8px;
  }
}
@media (max-width: 767px) {
  .proth .box .hi-nav1 .g_fil a i {
    width: 7px;
  }
}
.proth .box .hi-nav1 .g_fil a i svg,
.proth .box .hi-nav1 .g_fil a i img {
  width: 100%;
  height: auto;
}
.proth .box .hi-nav1 .g_fil a i svg path,
.proth .box .hi-nav1 .g_fil a i img path {
  fill: var(--color);
}
.proth .box .g_con {
  margin-top: 0.5rem;
  padding: 0 10px;
}
.proth .box .g_con .g_nr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 991px) {
  .proth .box .g_con .g_nr {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .proth .box .g_con .g_nr {
    grid-template-columns: repeat(2, 1fr);
  }
}
.proth .box .g_con .g_nr .item:hover .public-img {
  border: 1px solid var(--color);
}
.proth .box .g_con .g_nr .item:hover .public-img img {
  transform: scale(1.05);
}
.proth .box .g_con .g_nr .item:hover .txt h3 {
  color: var(--color) !important;
}
.proth .box .g_con .g_nr .item .public-img {
  transition: all 0.4s;
  border: 1px solid transparent;
}
.proth .box .g_con .g_nr .item .public-img:before {
  padding-top: 74.9201278%;
}
.proth .box .g_con .g_nr .item .txt {
  padding: 0.28rem 0;
}
.proth .box .g_con .g_nr .item .txt h3 {
  transition: all 0.4s;
}
.page {
  margin-top: 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page a {
  height: 0.5rem;
  width: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.1rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: none;
  border-radius: 50%;
  background: #f3f3f3;
  color: #000;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page a {
    font-size: 0.28rem;
    height: 0.7rem;
    min-width: 0.7rem;
  }
}
.page a.prev img,
.page a.prev svg {
  transform: rotate(180deg);
}
.page a:hover {
  color: #fff;
  background-color: var(--color);
}
.page a:hover p {
  color: #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;
  background-color: 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;
  }
}
.pdlr40 {
  padding: 0 0.4rem;
}
@media (max-width: 767px) {
  .pdlr40 {
    padding: 0 5%;
  }
}
/* 产品详情 */
.pinfoon {
  padding-top: 0.6rem;
  margin-bottom: 1.85rem;
}
@media (max-width: 767px) {
  .pinfoon {
    margin-bottom: 1.4rem;
  }
}
.pinfoon .g_fh a {
  display: inline-block;
  padding: 0.05rem 0.24rem;
  background: #000;
  color: #fff;
  border-radius: 100px;
}
.pinfoon .box {
  margin-top: 0.4rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .pinfoon .box {
    flex-direction: column-reverse;
  }
}
.pinfoon .box .gl {
  width: 45.65217391%;
}
@media (max-width: 991px) {
  .pinfoon .box .gl {
    width: 100%;
  }
}
.pinfoon .box .gl .g_h1 h1 {
  line-height: 1;
  font-size: 0.68rem;
  text-transform: uppercase;
  color: #000;
}
.pinfoon .box .gl .g_p {
  margin-top: 0.38rem;
  line-height: 1.44444444;
}
.pinfoon .box .gl .g_smtw {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
}
.pinfoon .box .gl .g_smtw .item {
  width: 25%;
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
}
@media (max-width: 1260px) {
  .pinfoon .box .gl .g_smtw .item {
    width: 50%;
  }
}
.pinfoon .box .gl .g_smtw .item .img {
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.6rem;
  border: 1px solid #e5e5e5;
  padding: 0.04rem;
}
@media (max-width: 767px) {
  .pinfoon .box .gl .g_smtw .item .img {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.pinfoon .box .gl .g_smtw .item .img .public-img {
  width: 100%;
}
.pinfoon .box .gl .g_smtw .item .txt {
  padding: 0 0.16rem;
  color: var(--color);
  line-height: 1.28571429;
}
@media (max-width: 767px) {
  .pinfoon .box .gl .g_smtw .item .txt {
    font-size: 12px;
  }
}
.pinfoon .box .gl .color_style {
  margin-top: 0.28rem;
}
.pinfoon .box .gl .color_style .col_box {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
}
.pinfoon .box .gl .color_style .col_box .item {
  margin-right: 0.2rem;
  margin-bottom: 0.2rem;
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.6rem;
  border: 1px solid #e5e5e5;
  padding: 0.04rem;
  transition: all 0.4s;
}
.pinfoon .box .gl .color_style .col_box .item:hover,
.pinfoon .box .gl .color_style .col_box .item.on {
  border-color: var(--color);
}
.pinfoon .box .gl .color_style .col_box .item i {
  width: 100%;
  height: 100%;
  display: flex;
}
.pinfoon .box .gl .color_style .col_box .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pinfoon .box .gl .g_length {
  margin-top: 0.3rem;
}
@media (max-width: 767px) {
  .pinfoon .box .gl .g_length {
    margin-top: 0.2rem;
  }
}
.pinfoon .box .gl .g_length .gbox {
  margin-top: 0.22rem;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .pinfoon .box .gl .g_length .gbox {
    flex-direction: column;
  }
}
.pinfoon .box .gl .g_length .gbox .gbox_l {
  display: flex;
  flex-wrap: wrap;
}
.pinfoon .box .gl .g_length .gbox .gbox_l span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 0.8rem;
  height: 0.46rem;
  padding: 0 0.1rem;
  border: 1px solid #e5e5e5;
  margin: 0 0.1rem 0.1rem 0;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .pinfoon .box .gl .g_length .gbox .gbox_l span {
    padding: 0 0.25rem;
    height: 0.6rem;
  }
}
.pinfoon .box .gl .g_length .gbox .gbox_l span:hover {
  border-color: var(--color);
  color: var(--color);
}
.pinfoon .box .gl .g_length .gbox .gbox_r {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 0.46rem;
  margin-left: 0.2rem;
}
@media (max-width: 767px) {
  .pinfoon .box .gl .g_length .gbox .gbox_r {
    margin: 0.2rem 0;
  }
}
.pinfoon .box .gl .g_length .gbox .gbox_r i {
  margin-right: 0.07rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.22rem;
  height: auto;
  color: #333;
}
@media (max-width: 1260px) {
  .pinfoon .box .gl .g_length .gbox .gbox_r i {
    width: 0.26rem;
  }
}
@media (max-width: 767px) {
  .pinfoon .box .gl .g_length .gbox .gbox_r i {
    width: 0.34rem;
  }
}
.pinfoon .box .gl .g_length .gbox .gbox_r i svg,
.pinfoon .box .gl .g_length .gbox .gbox_r i img {
  width: 100%;
  height: auto;
}
.pinfoon .box .gl .g_length .gbox .gbox_r i svg path,
.pinfoon .box .gl .g_length .gbox .gbox_r i img path {
  fill: var(--color);
}
.pinfoon .box .gl .public2-btn {
  margin-top: 0.17rem;
}
.pinfoon .box .gr {
  position: relative;
  width: 50.81521739%;
}
@media (max-width: 991px) {
  .pinfoon .box .gr {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.pinfoon .box .gr .item {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s;
  opacity: 0;
}
.pinfoon .box .gr .item.on {
  position: relative;
  opacity: 1;
}
.pinfoon .box .gr .gallery-thumbs .public-img:before {
  padding-top: 74.86631016%;
}
.pinfoon .box .gr .gallery-thumbs .swiper-slide {
  background: #fafafa;
}
.pinfoon .box .gr .gallery-top {
  width: 100%;
  position: absolute;
  bottom: 0.17rem;
  padding: 0 0.25rem;
}
.pinfoon .box .gr .gallery-top .public-img {
  transition: all 0.4s;
  border: 1px solid transparent;
}
.pinfoon .box .gr .gallery-top .swiper-slide {
  cursor: pointer;
  width: 0.8rem;
  background: #fff;
}
@media (max-width: 991px) {
  .pinfoon .box .gr .gallery-top .swiper-slide {
    width: 1.2rem;
  }
}
@media (max-width: 767px) {
  .pinfoon .box .gr .gallery-top .swiper-slide {
    width: 0.8rem;
  }
}
.pinfoon .box .gr .gallery-top .swiper-slide-thumb-active .public-img {
  opacity: 1;
  border: 1px solid var(--color);
}
.pinfoon .box .gr .gallery-top .g_qie .pub_nav {
  cursor: pointer;
  background: none;
  width: auto;
  height: auto;
  opacity: 1;
}
.pinfoon .box .gr .gallery-top .g_qie .pub_nav svg {
  width: 7px;
  height: auto;
  color: #666;
}
.pinfoon .box .gr .gallery-top .g_qie .pub_prev {
  left: 0.1rem;
}
.pinfoon .box .gr .gallery-top .g_qie .pub_next {
  right: 0.1rem;
}
.pinfotw {
  padding: 0 0 0.9rem;
}
.pinfoth .box .bbox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pinfoth .box .bbox .imgbj {
  filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
  -webkit-filter: grayscale(1);
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  align-items: flex-end;
  display: flex;
}
.pinfoth .box .bbox .imgbj::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.pinfoth .box .bbox .imgbj img {
  width: 100%;
  height: 110%;
  object-fit: cover;
}
.pinfoth .box .bbox .gcon {
  margin: 1.45rem 0;
  position: relative;
  z-index: 10;
  width: 35%;
  background: #fff;
  padding: 0.24rem 0.24rem 0.54rem;
}
@media (max-width: 1260px) {
  .pinfoth .box .bbox .gcon {
    width: 46.875%;
  }
}
@media (max-width: 991px) {
  .pinfoth .box .bbox .gcon {
    width: 83.33333333%;
  }
}
.pinfoth .box .bbox .gcon .txt {
  text-align: center;
  padding: 0.34rem 0 0;
}
.pinfoth .box .bbox .gcon .txt .txt_t h3 {
  line-height: 1.2;
}
.pinfoth .box .bbox .gcon .txt .txt_t p {
  padding: 0 0.2rem;
  margin-top: 0.16rem;
}
.pinfoth .box .bbox .gcon .txt .public-btn {
  margin-top: 0.5rem;
}
/* 我们的工厂 */
.fac_banner {
  overflow: hidden;
  position: relative;
}
.fac_banner .hi-text-animation1 .char-container {
  color: #fff;
}
.fac_banner .img {
  height: calc(100vh - 81px);
}
@media (max-width: 991px) {
  .fac_banner .img {
    height: calc(100vh - 60px);
  }
}
.fac_banner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fac_banner .box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fac_banner .box .txt {
  width: 51.5625%;
}
@media (max-width: 1260px) {
  .fac_banner .box .txt {
    width: 72.91666667%;
  }
}
@media (max-width: 767px) {
  .fac_banner .box .txt {
    width: 100%;
    padding: 0 5%;
  }
}
.fac_banner .box .txt p {
  font-size: 0.92rem;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 767px) {
  .fac_banner .box .txt p {
    font-size: 0.6rem;
  }
}
.facon {
  background: #fafafa;
  padding-top: 0.95rem;
}
.facon .hotsfo_t .g_public_title {
  text-align: left;
}
.factw {
  background: #fafafa;
  padding: 1.5rem 0 0;
}
.factw .factw_tit {
  padding-bottom: 0.8rem;
  width: 50%;
}
@media (max-width: 991px) {
  .factw .factw_tit {
    width: 100%;
  }
}
.factw .factw_tit h2 {
  line-height: 1.2;
  text-transform: uppercase;
}
.factw .factw_tit .g_p {
  margin-top: 0.5rem;
  color: #000;
}
.factw .factw_tit .g_p p {
  line-height: 1.2;
  margin-bottom: 0.14rem;
}
.factw .box {
  padding-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .factw .box {
    flex-direction: column;
  }
}
.factw .box .gl {
  position: sticky;
  position: -webkit-sticky;
  top: 90px;
  padding: 0.44rem 0;
  display: flex;
  justify-content: center;
  width: 54.07608696%;
  background: #fff;
}
@media (max-width: 767px) {
  .factw .box .gl {
    width: 100%;
    position: relative;
    top: 0;
  }
}
.factw .box .gl img {
  width: 87.03517588%;
}
.factw .box .gr {
  width: 45.38043478%;
}
@media (max-width: 767px) {
  .factw .box .gr {
    width: 100%;
  }
}
.factw .box .gr .item {
  margin-bottom: 10px;
  background: #fff;
  padding: 0.9rem 0.6rem;
}
@media (max-width: 767px) {
  .factw .box .gr .item {
    padding: 0.5rem 0.3rem;
  }
}
.factw .box .gr .item:last-child {
  margin-bottom: 0;
}
.factw .box .gr .item .itbox {
  width: 73.23943662%;
}
@media (max-width: 1260px) {
  .factw .box .gr .item .itbox {
    width: 100%;
  }
}
.factw .box .gr .item .itbox:hover .public-img img {
  transform: scale(1.05);
}
.factw .box .gr .item .itbox:hover .txt h3 {
  color: var(--color) !important;
}
.factw .box .gr .item .itbox .txt {
  margin-bottom: 0.45rem;
}
.factw .box .gr .item .itbox .txt h3 {
  line-height: 1.2;
}
.factw .box .gr .item .itbox .public-img:before {
  padding-top: 56.34615385%;
}
.factw .box .gr .item .itbox .g_p {
  margin-top: 0.35rem;
}
.factw .box .gr .item .itbox .g_p p {
  line-height: 1.2;
}
.facth {
  position: relative;
  z-index: 10;
  padding: 1rem 0 1.45rem;
}
@media (max-width: 991px) {
  .facth {
    padding: 1rem 0 ;
  }
}
.facth .facth_tit {
  padding: 0 0.4rem 0 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .facth .facth_tit {
    padding: 0 0.4rem;
  }
}
.facth .facth_tit h2 {
  color: #000;
}
@media (max-width: 991px) {
  .facth .facth_tit h2 {
    text-align: left;
    word-break: break-all;
  }
}
@media (max-width: 767px) {
  .facth .facth_tit h2 {
    font-size: 18px;
  }
}
.facth .facth_tit .g_qie {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .facth .facth_tit .g_qie .pub_nav {
    border: 1px solid var(--color);
  }
}
.facth .box {
  margin-top: 0.45rem;
}
.facth .box .swiper {
  padding: 1px 0;
}
.facth .box .swiper .swiper-slide {
  width: auto;
}
.facth .box .swiper .facth_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px dashed #d4d4d4;
  border-right: none;
  height: 3.08rem;
  padding: 0.4rem;
  padding-right: 0.7rem;
}
@media (max-width: 1580px) {
  .facth .box .swiper .facth_box {
    height: 3.4rem;
  }
}
@media (max-width: 767px) {
  .facth .box .swiper .facth_box {
    padding: 0.3rem;
    height: 3.2rem;
  }
}
.facth .box .swiper .facth_box .img {
  height: auto;
  width: 29px;
}
.facth .box .swiper .facth_box .img img {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facth .box .swiper .facth_box .txt {
  margin-top: 0.18rem;
}
.facth .box .swiper .facth_box .txt p {
  margin-top: 0.12rem;
  line-height: 1.875;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 767px) {
  .facth .box .swiper .facth_box .txt p {
    line-height: 1.4;
  }
}
/* 联系我们 */
.conon {
  background: linear-gradient(to bottom, #ebf2ee, #fff);
  overflow: hidden;
  padding: 0.45rem 0.4rem 0;
}
.conon .g_tit {
  width: 61.95652174%;
}
@media (max-width: 1260px) {
  .conon .g_tit {
    width: 100%;
  }
}
.conon .g_tit h2 {
  line-height: 1.1;
}
.conon .box {
  margin-top: 0.9rem;
  border-top: 1px solid #dfdfdf;
  padding: 0.4rem 0 1rem;
  min-height: 7.2rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .conon .box {
    flex-direction: column;
  }
}
.conon .box .gl {
  position: relative;
  width: 50%;
}
@media (max-width: 991px) {
  .conon .box .gl {
    width: 100%;
    min-height: 7.2rem;
  }
}
@media (max-width: 767px) {
  .conon .box .gl {
    min-height: 5rem;
  }
}
.conon .box .gl .gmap {
  width: 131.41304348%;
  position: absolute;
  top: 73%;
  left: 61%;
  transform: translate(-50%, -50%);
}
.conon .box .gl .gmap .gmap_img {
  pointer-events: none;
}
.conon .box .gl .gmap .gmap_img img {
  width: 100%;
  object-fit: contain;
}
.conon .box .gl .gmap .g_add {
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  position: absolute;
  width: 1px;
  height: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.conon .box .gl .gmap .g_add .g_dian {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.conon .box .gl .gmap .g_add .g_dian i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color);
  display: block;
  animation: moveq 3s infinite linear;
  opacity: 0.5;
  transform: translate(-50%, -50%) scale(1);
}
.conon .box .gl .gmap .g_add .g_logo {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
  padding: 0.16rem 0.33rem;
  border-radius: 0.1rem;
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}
.conon .box .gl .gmap .g_add .g_logo img {
  flex-shrink: 0;
  width: 1.37rem;
  height: auto;
  display: block;
  max-width: initial;
}
@media (max-width: 767px) {
  .conon .box .gl .gmap .g_add .g_logo img {
    width: 2rem;
  }
}
.conon .box .gl .g_ema {
  position: relative;
  z-index: 20;
}
.conon .box .gl .g_ema span {
  display: block;
  color: #999;
}
.conon .box .gl .g_ema p {
  margin-top: 4px;
}
.conon .box .gr {
  position: relative;
  z-index: 20;
  width: 50%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .conon .box .gr {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .conon .box .gr {
    flex-direction: column-reverse;
  }
}
.conon .box .gr .g_h3 h3 {
  display: block;
  color: #999;
  margin-bottom: 0.15rem;
}
.conon .box .gr .conon_l {
  width: 63.04347826%;
}
@media (max-width: 767px) {
  .conon .box .gr .conon_l {
    width: 100%;
    margin-top: 0.4rem;
  }
}
.conon .box .gr .conon_l .item {
  margin-bottom: 0.36rem;
}
.conon .box .gr .conon_l .item .p1 {
  font-weight: bold;
  color: #000;
}
.conon .box .gr .conon_l .item .p2 {
  margin-top: 0.1rem;
}
.conon .box .gr .conon_l .item .g_a {
  display: inline-flex;
  margin-top: 0.15rem;
  border: 1px solid #dfdfdf;
  border-radius: 100px;
  transition: all 0.4s;
  padding: 0.06rem 0.2rem 0.06rem 0.13rem;
}
.conon .box .gr .conon_l .item .g_a:hover {
  background: #000;
}
.conon .box .gr .conon_l .item .g_a:hover i,
.conon .box .gr .conon_l .item .g_a:hover p {
  color: #fff;
}
.conon .box .gr .conon_l .item .g_a i {
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: auto;
  color: #999999;
}
@media (max-width: 1260px) {
  .conon .box .gr .conon_l .item .g_a i {
    width: 15px;
  }
}
@media (max-width: 767px) {
  .conon .box .gr .conon_l .item .g_a i {
    width: 13px;
  }
}
.conon .box .gr .conon_l .item .g_a i svg,
.conon .box .gr .conon_l .item .g_a i img {
  width: 100%;
  height: auto;
}
.conon .box .gr .conon_l .item .g_a i svg path,
.conon .box .gr .conon_l .item .g_a i img path {
  fill: var(--color);
}
.conon .box .gr .conon_l .item .g_a p {
  transition: all 0.4s;
  margin-left: 0.09rem;
}
@keyframes moveq {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
.contw {
  display: flex;
  justify-content: space-between;
}
.contw .gl {
  width: 43.90625%;
}
@media (max-width: 1260px) {
  .contw .gl {
    display: none;
  }
}
.contw .gl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contw .gr {
  width: 56.09375%;
  background: #fafafa;
  padding: 1.95rem 2.33rem 0.5rem 1.19rem;
}
@media (max-width: 1580px) {
  .contw .gr {
    padding: 1.05rem 1.33rem;
  }
}
@media (max-width: 1260px) {
  .contw .gr {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .contw .gr {
    padding: 1rem 5%;
  }
}
.contw .gr .g_h2 {
  margin-bottom: 0.25rem;
  border-bottom: 1px solid #888888;
  padding-bottom: 0.38rem;
}
.contw .gr .g_h2 h2 {
  line-height: 1.1;
  color: #000;
}
.contw .gr form .inp {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contw .gr form .inp {
    flex-direction: column;
  }
}
.contw .gr form .inp .inp_box {
  width: calc(50% - 0.11rem);
  margin-bottom: 0.26rem;
}
@media (max-width: 767px) {
  .contw .gr form .inp .inp_box {
    width: 100% !important;
    margin-bottom: 0.4rem;
  }
}
.contw .gr form .inp .inp_box .inp_txt {
  margin-bottom: 0.1rem;
}
.contw .gr form .inp .inp_box .inp_txt p {
  color: #333;
  /* font-weight: bold; */
}
.contw .gr form .inp .inp_box .inp_txt p span {
  color: var(--color);
}
.contw .gr form .inp .inp_box input {
  padding: 0 0.2rem;
  width: 100%;
  height: 0.5rem;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 0.06rem;
}
@media (max-width: 767px) {
  .contw .gr form .inp .inp_box input {
    height: 0.8rem;
  }
}
.contw .gr form .inp .inp_box .sot_select_nr .sel_text_x {
  height: 0.5rem;
}
@media (max-width: 767px) {
  .contw .gr form .inp .inp_box .sot_select_nr .sel_text_x {
    height: 0.8rem;
  }
}
.contw .gr form .inp2 .inp_box {
  width: 100%;
}
.contw .gr form .inptext .inp_box .g_tex {
  position: relative;
}
.contw .gr form .inptext .inp_box .g_tex textarea {
  /* resize: auto; */
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 0.06rem;
  width: 100%;
  height: 2rem;
  padding: 0.13rem 0.18rem;
}
@media (max-width: 767px) {
  .contw .gr form .inptext .inp_box .g_tex textarea {
    height: 2.2rem;
  }
}
.contw .gr form .inptext .inp_box .g_tex .g_num {
  position: absolute;
  bottom: 15px;
  right: 16px;
  display: flex;
  align-items: center;
}
.contw .gr form .inptext .inp_box .g_tex .g_num .p1 {
  color: #2d973d;
}
.contw .gr form .inptext .inp_box .g_tex .g_num .p2 {
  color: #999;
}
.contw .gr form .g_lab {
  color: #999999;
}
.contw .gr form .g_lab label {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .contw .gr form .g_lab label {
    align-items: flex-start;
  }
}
.contw .gr form .g_lab label.on i {
  background: #2d827f;
  color: #fff;
  border-color: #2d827f;
}
.contw .gr form .g_lab label.on i svg,
.contw .gr form .g_lab label.on i img {
  opacity: 1;
}
.contw .gr 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) {
  .contw .gr form .g_lab i {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 767px) {
  .contw .gr form .g_lab i {
    margin-top: 4px;
  }
}
.contw .gr form .g_lab i svg,
.contw .gr form .g_lab i img {
  opacity: 0;
  width: 8px;
  height: auto;
}
.contw .gr form .g_lab i svg path,
.contw .gr form .g_lab i img path {
  filter: none;
}
.contw .gr form .g_lab p {
  color: #666666;
}
.contw .gr form .pub_btn {
  width: 100%;
  background: var(--color);
  color: #fff;
  margin-top: 0.6rem;
  height: 0.55rem;
  padding: 0 0.65rem;
}
@media (max-width: 767px) {
  .contw .gr form .pub_btn {
    height: 0.8rem;
  }
}
/* 新闻中心 */
.newon {
  color: #fff;
  position: relative;
}
.newon .hi-text-animation1 .char-container {
  color: #fff;
}
.newon .imgbj {
  z-index: -1;
  width: 100%;
  height: 100vh;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
}
.newon .imgbj img,
.newon .imgbj video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newon .box {
  margin-top: -100vh;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}
.newon .box .g_tit {
  color: #fff;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .newon .box .g_tit {
    flex-direction: column;
  }
}
.newon .box .g_tit h2 {
  line-height: 1;
  font-size: 0.92rem;
  width: 50%;
}
@media (max-width: 767px) {
  .newon .box .g_tit h2 {
    width: 100%;
    margin-bottom: 0.3rem;
  }
}
.newon .box .g_tit .g_r {
  width: 50%;
  padding: 0 0.42rem;
}
@media (max-width: 1260px) {
  .newon .box .g_tit .g_r {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .newon .box .g_tit .g_r {
    width: 100%;
  }
}
.newon .box .g_tit .g_r p {
  line-height: 1.2;
  margin-bottom: 0.13rem;
}
@media (max-width: 767px) {
  .newon .box .g_tit .g_r p {
    margin-bottom: 0.3rem;
  }
}
.newon .box .g_tit .g_r i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.34rem;
  height: auto;
  color: #fff;
}
@media (max-width: 1260px) {
  .newon .box .g_tit .g_r i {
    width: 0.4rem;
  }
}
@media (max-width: 767px) {
  .newon .box .g_tit .g_r i {
    width: 0.46rem;
  }
}
.newon .box .g_tit .g_r i svg,
.newon .box .g_tit .g_r i img {
  width: 100%;
  height: auto;
}
.newon .box .g_tit .g_r i svg path,
.newon .box .g_tit .g_r i img path {
  fill: var(--color);
}
.newon .box .newon_box {
  margin-top: 1.68rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.77rem 1.8rem;
}
@media (max-width: 1260px) {
  .newon .box .newon_box {
    gap: 0.7rem;
  }
}
@media (max-width: 991px) {
  .newon .box .newon_box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .newon .box .newon_box {
    margin-top: 1rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.3rem;
  }
}
.newon .box .newon_box .item {
  color: #fff;
}
@media (min-width: 992px) {
  .newon .box .newon_box .item:nth-child(3n - 2) {
    transform: translateY(1.3rem);
  }
}
@media (min-width: 992px) {
  .newon .box .newon_box .item:nth-child(3n) {
    transform: translateY(1.92rem);
  }
}
.newon .box .newon_box .item:hover img {
  transform: scale(1.05);
}
.newon .box .newon_box .item .img {
  position: relative;
}
.newon .box .newon_box .item .img .public-img:before {
  padding-top: 66.93548387%;
}
.newon .box .newon_box .item .img .g_time {
  position: absolute;
  bottom: 0.2rem;
  right: 0.2rem;
  padding: 0.1rem 0.2rem;
  background: url(../images/news2.png) no-repeat;
  background-size: cover;
  z-index: 10;
  border-radius: 100px;
}
.newon .box .newon_box .item .img .g_time p {
  color: #000;
}
.newon .box .newon_box .item .txt {
  margin-top: 0.35rem;
  padding-bottom: 0.52rem;
  border-bottom: 1px solid #fff;
}
.newon .box .newon_box .item .txt h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.newon .box .newon_box .item .txt p {
  margin-top: 0.22rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: 1.875;
}
.newon .box .page {
  margin-top: 2.62rem;
}
@media (max-width: 991px) {
  .newon .box .page {
    margin-top: 0.7rem;
  }
}
.crumbs {
  padding: 0.32rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .crumbs {
    flex-wrap: initial;
  }
}
.crumbs p {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .crumbs p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .crumbs p:last-child {
    flex-shrink: initial;
  }
}
.crumbs p > a {
  margin-right: 0.1rem;
  color: #fff;
}
@media (max-width: 767px) {
  .crumbs p > a {
    font-size: 14px;
    margin-bottom: 0.05rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.crumbs p:last-child a {
  color: #fff;
}
.crumbs p:last-child svg,
.crumbs p:last-child i,
.crumbs p:last-child img {
  display: none;
}
.crumbs p svg,
.crumbs p img {
  color: #fff;
  width: 5px;
  height: auto;
  margin-right: 0.1rem;
}
.crumbs p svg path,
.crumbs p img path {
  fill: #666;
}
.crumbs p i {
  font-style: initial;
  opacity: 0.7;
  color: #fff;
  margin-right: 0.1rem;
}
/* 新闻详情 */
.ninfoon {
  position: relative;
}
.ninfoon .imgbj {
  z-index: -1;
  width: 100%;
  height: 100vh;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
}
.ninfoon .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ninfoon .ninfoon_box {
  margin-top: -100vh;
  padding-bottom: 0.4rem;
}
.ninfoon .ninfoon_box .box {
  padding: 0.8rem 0.45rem 0.42rem 0.4rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(25px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .ninfoon .ninfoon_box .box {
    flex-direction: column;
  }
}
.ninfoon .ninfoon_box .box .gl {
  width: 69.16426513%;
}
@media (max-width: 991px) {
  .ninfoon .ninfoon_box .box .gl {
    width: 100%;
  }
}
.ninfoon .ninfoon_box .box .gl h1 {
  line-height: 1.20833333;
  color: #000;
  text-transform: uppercase;
}
.ninfoon .ninfoon_box .box .gl .public-content {
  margin-top: 0.48rem;
  line-height: 1.33333333;
  color: #000;
}
.ninfoon .ninfoon_box .box .gl .g_b {
  margin-top: 0.8rem;
}
.ninfoon .ninfoon_box .box .gl .g_b .g_tag {
  margin-bottom: 0.16rem;
  display: flex;
  flex-wrap: wrap;
}
.ninfoon .ninfoon_box .box .gl .g_b .g_tag span {
  transition: all 0.4s;
  display: flex;
  align-items: center;
  border-radius: 100px;
  padding: 0 0.2rem;
  margin-right: 0.1rem;
  margin-bottom: 0.1rem;
  height: 0.48rem;
  background: #f2f2f2;
}
@media (max-width: 767px) {
  .ninfoon .ninfoon_box .box .gl .g_b .g_tag span {
    padding: 0 0.4rem;
    height: 0.7rem;
  }
}
.ninfoon .ninfoon_box .box .gl .g_b .g_tag span:hover {
  background: var(--color);
  color: #fff;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
}
.ninfoon .ninfoon_box .box .gl .g_b .g_pag {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0 0.22rem;
  border-top: 1px solid #000;
}
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .fh {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  border: 1px solid var(--color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .fh:hover {
  background: var(--color);
}
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .fh:hover svg {
  color: #fff;
}
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .fh svg {
  width: 37.5%;
  color: var(--color);
  transition: all 0.4s;
}
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .fh svg path {
  fill: var(--color);
}
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .pag_l,
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .pag_r {
  display: flex;
  align-items: center;
  width: 40%;
}
@media (max-width: 767px) {
  .ninfoon .ninfoon_box .box .gl .g_b .g_pag .pag_l,
  .ninfoon .ninfoon_box .box .gl .g_b .g_pag .pag_r {
    width: 30%;
  }
}
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .pag_l:hover span,
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .pag_r:hover span {
  color: var(--color);
}
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .pag_l:hover p,
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .pag_r:hover p {
  color: var(--color);
}
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .pag_l span,
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .pag_r span {
  margin-right: 5px;
  flex-shrink: 0;
  color: #666;
  transition: all 0.4s;
}
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .pag_l p,
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .pag_r p {
  transition: all 0.4s;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ninfoon .ninfoon_box .box .gl .g_b .g_pag .pag_r {
  text-align: right;
  justify-content: flex-end;
}
.ninfoon .ninfoon_box .box .gr {
  width: 26.22478386%;
}
@media (max-width: 991px) {
  .ninfoon .ninfoon_box .box .gr {
    width: 100%;
    margin-top: 0.5rem;
  }
}
@media (max-width: 767px) {
  .ninfoon .ninfoon_box .box .gr {
    margin-top: 1.1rem;
  }
}
.ninfoon .ninfoon_box .box .gr .rtit {
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #585858;
  display: flex;
  align-items: center;
}
.ninfoon .ninfoon_box .box .gr .rtit i {
  margin-right: 0.08rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.18rem;
  height: auto;
  color: #000;
}
@media (max-width: 1260px) {
  .ninfoon .ninfoon_box .box .gr .rtit i {
    width: 0.22rem;
  }
}
@media (max-width: 767px) {
  .ninfoon .ninfoon_box .box .gr .rtit i {
    width: 0.26rem;
  }
}
.ninfoon .ninfoon_box .box .gr .rtit i svg,
.ninfoon .ninfoon_box .box .gr .rtit i img {
  width: 100%;
  height: auto;
}
.ninfoon .ninfoon_box .box .gr .rtit i svg path,
.ninfoon .ninfoon_box .box .gr .rtit i img path {
  fill: var(--color);
}
.ninfoon .ninfoon_box .box .gr .rtit h2 {
  color: #000;
}
.ninfoon .ninfoon_box .box .gr .grbox1 {
  margin-bottom: 0.65rem;
}
.ninfoon .ninfoon_box .box .gr .grbox1 .grbox1_con .item {
  display: block;
  padding: 0.38rem 0;
  border-bottom: 1px solid #d7d7d7;
}
.ninfoon .ninfoon_box .box .gr .grbox1 .grbox1_con .item:hover .public-img img {
  transform: scale(1.05);
}
.ninfoon .ninfoon_box .box .gr .grbox1 .grbox1_con .item:hover .txt h3 {
  color: var(--color) !important;
}
.ninfoon .ninfoon_box .box .gr .grbox1 .grbox1_con .item .public-img {
  margin-bottom: 0.25rem;
}
.ninfoon .ninfoon_box .box .gr .grbox1 .grbox1_con .item .public-img:before {
  padding-top: 45.05494505%;
}
.ninfoon .ninfoon_box .box .gr .grbox1 .grbox1_con .item .txt .gtime {
  color: #999;
}
.ninfoon .ninfoon_box .box .gr .grbox1 .grbox1_con .item .txt h3 {
  transition: all 0.4s;
  margin-top: 6px;
  color: #000;
  line-height: calc(24/18);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ninfoon .ninfoon_box .box .gr .grbox2 .grbox2_con {
  padding: 0.24rem 0;
  padding-right: 0.3rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1260px) {
  .ninfoon .ninfoon_box .box .gr .grbox2 .grbox2_con {
    padding-right: 0;
  }
}
.ninfoon .ninfoon_box .box .gr .grbox2 .grbox2_con .item {
  transition: all 0.4s;
  display: flex;
  align-items: center;
  border-radius: 100px;
  padding: 0 0.2rem;
  margin-right: 0.1rem;
  margin-bottom: 0.16rem;
  height: 0.48rem;
  background: rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .ninfoon .ninfoon_box .box .gr .grbox2 .grbox2_con .item {
    padding: 0 0.4rem;
    height: 0.7rem;
  }
}
.ninfoon .ninfoon_box .box .gr .grbox2 .grbox2_con .item:hover {
  background: var(--color);
  color: #fff;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
}
.g404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 81px);
}
@media (max-width: 991px) {
  .g404 {
    min-height: calc(100vh - 60px);
  }
}
.g404 .p1 {
  font-size: 1rem;
}
.g404 .p2 {
  color: #999;
  text-align: center;
}
.g404 .g_a {
  margin-top: 0.38rem;
}
.g404 .g_a a {
  transition: all 0.4s;
  display: flex;
  align-items: center;
  border-radius: 100px;
  padding: 5px 0.2rem;
  margin-right: 0.1rem;
  margin-bottom: 0.16rem;
  text-transform: uppercase;
  color: #000;
  border: 1px solid #d2d2d2;
}
@media (max-width: 767px) {
  .g404 .g_a a {
    padding: 0 0.4rem;
    height: 0.7rem;
  }
}
.g404 .g_a a:hover {
  background: var(--color);
  color: #fff;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
}
/* Cookies Policy */
.other {
  border-top: 1px solid #dfdfdf;
  padding-top: 0.5rem;
  padding-bottom: 1.1rem;
}
.other .other_tit h2 {
  line-height: 1.1;
}
.other .other_tit .other_nav {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.22rem;
}
.other .other_tit .other_nav a {
  transition: all 0.4s;
  display: flex;
  align-items: center;
  border-radius: 100px;
  padding: 0 0.2rem;
  margin-right: 0.1rem;
  margin-bottom: 0.16rem;
  height: 36px;
  color: #000;
  border: 1px solid #ededed;
}
@media (max-width: 767px) {
  .other .other_tit .other_nav a {
    font-size: 12px;
    height: 0.7rem;
  }
}
.other .other_tit .other_nav a:hover,
.other .other_tit .other_nav a.on {
  background: var(--color);
  color: #fff;
}
.other .box {
  margin: 0.9rem auto 0;
  max-width: 858px;
}
.other .box .g_time {
  margin-bottom: 0.4rem;
  border-bottom: 1px dashed #a7a7a7;
  padding-bottom: 0.14rem;
}
.other .box .g_time p {
  color: #999;
}
.other .box .public-content {
  color: #000;
}
.other .box .public-content p {
  color: #666;
}
/* Cookie */
#c-home-tips {
  display: none;
  position: fixed;
  z-index: 890;
  bottom: 0.3rem;
  right: 0.3rem;
  width: 400px;
  border-radius: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* box-shadow: 0 0 0.2rem rgba(0,0,0,0.05); */
  background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  #c-home-tips {
    width: 90%;
    bottom: 0.4rem;
    left: 5%;
    right: auto;
    background: rgba(0, 0, 0, 0.8);
  }
}
#c-home-tips .c-wrap {
  padding: 0.58rem 0.3rem 0.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  #c-home-tips .c-wrap {
    flex-direction: column;
    padding: 0.5rem 0;
  }
}
#c-home-tips .c-wrap .c-left {
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  #c-home-tips .c-wrap .c-left {
    width: 100%;
    margin-bottom: 0.3rem;
  }
}
#c-home-tips .c-wrap .c-left h2 {
  font-weight: bold;
  color: #000;
}
#c-home-tips .c-wrap .c-left p {
  color: #fff;
  line-height: 1.875;
}
#c-home-tips .c-wrap .c-wrapr {
  margin-top: 0.32rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  #c-home-tips .c-wrap .c-wrapr {
    width: 100%;
  }
}
#c-home-tips .c-wrap .c-wrapr .c-close {
  color: var(--color);
  height: 0.52rem;
  padding: 0 0.33rem;
  border: 1px solid var(--color);
  margin-left: 10px;
  display: flex;
  align-items: center;
  font-weight: bold;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  #c-home-tips .c-wrap .c-wrapr .c-close {
    height: 0.8rem;
    padding: 0 0.45rem;
  }
}
#c-home-tips .c-wrap .c-wrapr .c-close1:hover {
  background: var(--color);
  color: #fff;
}
#c-home-tips .c-wrap .c-wrapr .c-close2 {
  background: var(--color);
  color: #fff;
}
#c-home-tips .c-wrap .c-wrapr .c-close2:hover {
  opacity: 0.8;
}
/* rd */
.rdon {
  position: relative;
}
.rdon .hi-text-animation1 .char-container {
  color: #fff;
}
.rdon .imgbj {
  z-index: -1;
  width: 100%;
  height: 100vh;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
}
.rdon .imgbj img,
.rdon .imgbj video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rdon .box {
  margin-top: -100vh;
  padding-top: 0.5rem;
}
.rdon .box .g_tit {
  color: #fff;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .rdon .box .g_tit {
    flex-direction: column;
  }
}
.rdon .box .g_tit h2 {
  line-height: 1;
  font-size: 0.92rem;
  width: 50%;
}
@media (max-width: 767px) {
  .rdon .box .g_tit h2 {
    width: 100%;
    margin-bottom: 0.3rem;
  }
}
.rdon .box .g_tit .g_r {
  width: 50%;
  padding: 0 0.8rem 0 0.42rem;
}
@media (max-width: 1260px) {
  .rdon .box .g_tit .g_r {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .rdon .box .g_tit .g_r {
    width: 100%;
  }
}
.rdon .box .g_tit .g_r p {
  line-height: 1.2;
  margin-bottom: 0.13rem;
}
@media (max-width: 767px) {
  .rdon .box .g_tit .g_r p {
    margin-bottom: 0.3rem;
  }
}
.rdon .box .g_tit .g_r i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.34rem;
  height: auto;
  color: #fff;
}
@media (max-width: 1260px) {
  .rdon .box .g_tit .g_r i {
    width: 0.4rem;
  }
}
@media (max-width: 767px) {
  .rdon .box .g_tit .g_r i {
    width: 0.46rem;
  }
}
.rdon .box .g_tit .g_r i svg,
.rdon .box .g_tit .g_r i img {
  width: 100%;
  height: auto;
}
.rdon .box .g_tit .g_r i svg path,
.rdon .box .g_tit .g_r i img path {
  fill: var(--color);
}
.rdon .box .rdon_box {
  padding-bottom: 2rem;
  margin-top: 1.6rem;
}
@media (max-width: 767px) {
  .rdon .box .rdon_box {
    padding-bottom: 0.4rem;
  }
}
.rdon .box .rdon_box .g_line p {
  color: #fff;
  text-transform: uppercase;
}
.rdon .box .rdon_box .g_line_box {
  /* margin-top: 0.33rem; */
  width: calc(100% + 0.8rem);
  margin-left: -0.4rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  top: 2px;
  z-index: 20;
  position: -webkit-sticky;
  position: sticky;
}
@media (max-width: 767px) {
  .rdon .box .rdon_box .g_line_box {
    width: calc(100% + 10%);
    margin-left: -5%;
  }
}
.rdon .box .rdon_box .g_line_box i {
  height: 100%;
  width: 0%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  display: flex;
}
.rdon .box .rdon_box .rdon_con {
  padding: 1.7rem 0 0;
  max-width: 1470px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
}
.rdon .box .rdon_box .rdon_con .item {
  break-inside: avoid;
  margin-bottom: 0.25rem;
  width: calc(50% - 1.24rem);
}
@media (max-width: 991px) {
  .rdon .box .rdon_box .rdon_con .item {
    width: calc(50% - 0.4rem);
  }
}
@media (max-width: 767px) {
  .rdon .box .rdon_box .rdon_con .item {
    width: 100%;
    margin-bottom: 0.6rem;
    display: flex;
    flex-direction: column-reverse;
  }
}
.rdon .box .rdon_box .rdon_con .item:nth-child(2n) {
  transform: translateY(2.9rem);
}
@media (max-width: 991px) {
  .rdon .box .rdon_box .rdon_con .item:nth-child(2n) {
    transform: translateY(0rem);
  }
}
.rdon .box .rdon_box .rdon_con .item:hover .img img {
  transform: scale(1.05);
}
.rdon .box .rdon_box .rdon_con .item:hover .txt h3 {
  /* color: @color1 !important; */
}
.rdon .box .rdon_box .rdon_con .item .txt {
  margin-bottom: 0.56rem;
}
@media (max-width: 767px) {
  .rdon .box .rdon_box .rdon_con .item .txt {
    margin: 0.4rem 0 0;
  }
}
.rdon .box .rdon_box .rdon_con .item .txt h3 {
  line-height: 1.3;
  transition: all 0.4s;
}
.rdon .box .rdon_box .rdon_con .item .txt .g_p {
  margin-top: 0.35rem;
  line-height: calc(32/18);
}
.rdon .box .rdon_box .rdon_con .item .img {
  overflow: hidden;
  width: 100%;
}
.rdon .box .rdon_box .rdon_con .item .img img {
  transition: all 0.4s;
  width: 100%;
}
.rdtw {
  background: #fafafa;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.rdtw .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .rdtw .box {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .rdtw .box {
    flex-direction: column;
  }
}
.rdtw .box .gl {
  width: 50%;
}
@media (max-width: 767px) {
  .rdtw .box .gl {
    width: 100%;
  }
}
.rdtw .box .gl .public-img:before {
  padding-top: 76.50273224%;
}
.rdtw .box .gr {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.5rem 0.64rem 0.2rem 0.95rem;
}
@media (max-width: 767px) {
  .rdtw .box .gr {
    width: 100%;
    padding: 0.4rem 0 0;
  }
}
.rdtw .box .gr .txt h2 {
  color: #000;
  line-height: 1.1;
}
.rdtw .box .gr .txt p {
  margin-top: 0.38rem;
  line-height: calc(32/18);
}
.rdtw .box .gr .g_b {
  margin-top: 0.4rem;
}
.rdtw .box .gr .g_b span {
  display: block;
}
.rdtw .box .gr .g_b p {
  font-size: 0.86rem;
  color: #2d827f;
  line-height: 1;
  margin-top: 0.1rem;
}
.rdtw .box .gr .g_b p span {
  font-weight: bold;
  color: #000;
  transform: scale(1.04);
}
.rdtw .box .gr .g_b strong {
  font-size: 24px;
}
@media (max-width: 1260px) {
  .rdtw .box .gr .g_b strong {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .rdtw .box .gr .g_b strong {
    font-size: 18px;
  }
}
.rdth {
  padding: 1.2rem 0 1rem;
}
.rdth .g_public_title {
  text-align: left;
  padding: 0 0.4rem;
}
.rdth .g_public_title h2 {
  color: #000;
}
.rdth .box .g_con {
  margin-top: 0.5rem;
  padding: 0 10px;
}
.rdth .box .g_con .g_nr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 991px) {
  .rdth .box .g_con .g_nr {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .rdth .box .g_con .g_nr {
    grid-template-columns: repeat(2, 1fr);
  }
}
.rdth .box .g_con .g_nr .item:hover .public-img {
  border: 1px solid var(--color);
}
.rdth .box .g_con .g_nr .item:hover .public-img img {
  transform: scale(1.05);
}
.rdth .box .g_con .g_nr .item:hover .txt h3 {
  color: var(--color) !important;
}
.rdth .box .g_con .g_nr .item .public-img {
  transition: all 0.4s;
  border: 1px solid transparent;
}
.rdth .box .g_con .g_nr .item .txt {
  color: #000;
  padding: 0.28rem 0;
}
.rdth .box .g_con .g_nr .item .txt h3 {
  transition: all 0.4s;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
[data-ripple="ripple"] {
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-webkit-user-select: none;
  -ms-user-select: none;
}
[data-ripple="ripple"] .ripple {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 888;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple 0.6s 0s linear;
}
@keyframes ripple {
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
.hi-text-animation1 {
  overflow: hidden;
  /* span{
        display: inline-block;
        opacity: 0;
        transform: translateY(100%);
        transition: all .4s;
        min-width: .3em;
        &:has(br) {
            display: block;
            height: 0;
        }
        &.on{
            opacity: 1;
            transform: translateY(0);
        }
    } */
  /* .on {
		color: #ff6b6b;
		transform: scale(1.1);
	} */
}
.hi-text-animation1 .word-container {
  display: inline-block;
  white-space: nowrap;
}
.hi-text-animation1 .char-container {
  color: #333;
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s;
  min-width: 0.3em;
}
.hi-text-animation1 .char-container:has(br) {
  display: block;
  height: 0;
}
.hi-text-animation1 .char-container.on {
  opacity: 1;
  transform: translateY(0);
}
.hi-mouse1 {
  pointer-events: none;
}
.hi-mouse1 .c-btn {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  cursor: none;
  pointer-events: none;
  z-index: 10000;
}
@media (max-width: 767px) {
  .hi-mouse1 .c-btn {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.hi-mouse1 .c-btn .c-btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  transition: all 0.6s;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .hi-mouse1 .c-btn .c-btn-box {
    flex-direction: column;
  }
}
.hi-mouse1 .c-btn .c-btn-box span {
  margin: 0 0.1rem 0 0;
  display: inline-flex;
  font-size: 12px;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hi-mouse1 .c-btn .c-btn-box span {
    margin: 0 0 0.1rem 0;
  }
}
.hi-mouse1 .c-btn .c-btn-box .img1 {
  transform: rotate(180deg);
}
.hi-mouse1 .c-btn .c-btn-box img {
  width: 17px;
}
@media (max-width: 767px) {
  .hi-mouse1 .c-btn .c-btn-box img {
    width: 14px;
  }
}
.hi-mouse1.show .c-btn {
  cursor: pointer;
}
.hi-mouse1.show .c-btn .c-btn-box {
  transform: scale(1);
}
.hi-pagination1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hi-pagination1 .c-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.hi-pagination1 .c-box a {
  margin: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  min-width: 50px;
  height: 50px;
  border-radius: 25px;
  border: 1px solid #eee;
  color: #fff;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .hi-pagination1 .c-box a {
    min-width: 36px;
    height: 36px;
    border-radius: 20px;
  }
}
.hi-pagination1 .c-box a img,
.hi-pagination1 .c-box a svg {
  width: 7;
  height: 12px;
}
.hi-pagination1 .c-box a img path,
.hi-pagination1 .c-box a svg path {
  fill: currentColor;
}
.hi-pagination1 .c-box a:hover,
.hi-pagination1 .c-box a.on {
  color: #fff;
  border-color: var(--color);
  background-color: var(--color);
}
.hi-pagination1 .c-box a:hover svg path,
.hi-pagination1 .c-box a.on svg path {
  fill: #fff;
}
.hi-pagination1 .c-box .c-prev {
  transform: rotate(180deg);
}
.hi-pagination1 .c-box2 form {
  margin: 0 5px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .hi-pagination1 .c-box2 form {
    display: none;
  }
}
.hi-pagination1 .c-box2 form input {
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #eee;
  color: #666;
  text-align: center;
}
.z-news {
  padding-bottom: 1.2rem;
}
.z-news.z-newsinfo {
  margin-top: 2.5rem;
}
@media (max-width: 991px) {
  .z-news.z-newsinfo {
    margin-top: 1.2rem;
  }
}
.z-news .zcontainer {
  padding: 0 0.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.z-news .zcontainer.zcontainer2 {
  justify-content: center;
  margin-top: 1rem;
}
.z-news .zcontainer .zleft2 {
  width: 65.25285481%;
}
@media (max-width: 991px) {
  .z-news .zcontainer .zleft2 {
    width: 100%;
  }
}
.z-news .zcontainer .zleft2 .zcn1 {
  line-height: 1.20833333;
  color: #000;
  margin-bottom: 0.5rem;
}
.z-news .zcontainer .zleft2 .zbox1 {
  line-height: 1.5;
  color: #333;
}
.z-news .zcontainer .zleft2 .zbox2 {
  margin-top: 0.65rem;
  flex-wrap: wrap;
  display: flex;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #000;
}
.z-news .zcontainer .zleft2 .zbox2 .zcn2 {
  background-color: #f2f2f2;
  padding: 0.12rem 0.2rem;
  margin-right: 0.08rem;
  color: #666666;
  line-height: 1.71428571;
  border-radius: 1rem;
  transition: all 0.5s;
  margin-top: 0.16rem;
}
.z-news .zcontainer .zleft2 .zbox2 .zcn2:hover {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.16);
  background-color: var(--color);
  color: #fff;
}
.z-news .zcontainer .zleft2 .zbox3 {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
}
.z-news .zcontainer .zleft2 .zbox3 .cn5 {
  width: 50%;
  line-height: 1.55555556em;
  transition: all 0.4s;
  align-items: center;
  color: #666666;
}
.z-news .zcontainer .zleft2 .zbox3 .cn5:hover {
  color: var(--color);
}
.z-news .zcontainer .zleft2 .zbox3 .cn5:hover span {
  background-color: var(--color);
}
.z-news .zcontainer .zleft2 .zbox3 .cn5:hover span svg path {
  fill: #Fff;
}
.z-news .zcontainer .zleft2 .zbox3 .cn5.cn5none {
  color: #999999;
  cursor: auto;
}
.z-news .zcontainer .zleft2 .zbox3 .cn5:last-child {
  text-align: right;
}
.z-news .zcontainer .zleft2 .zbox3 .cn5:last-child span {
  margin-right: 0;
  margin-left: 0.2rem;
}
.z-news .zcontainer .zleft2 .zbox3 .cn5:last-child span svg {
  transform: rotate(0deg);
}
.z-news .zcontainer .zleft2 .zbox3 .cn5b {
  flex-shrink: 0;
  margin: 0 0.2rem;
  width: 0.6rem;
  height: 0.6rem;
  border: 1px solid var(--color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.2rem;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .z-news .zcontainer .zleft2 .zbox3 .cn5b {
    width: 0.78rem;
    height: 0.78rem;
  }
}
.z-news .zcontainer .zleft2 .zbox3 .cn5b svg {
  width: 0.2rem;
  height: 0.2rem;
}
.z-news .zcontainer .zleft2 .zbox3 .cn5b svg .cls-1 {
  transition: all 0.5s;
  fill: var(--color);
  opacity: 1;
  stroke: none;
}
.z-news .zcontainer .zleft2 .zbox3 .cn5b:hover {
  background-color: var(--color);
}
.z-news .zcontainer .zleft2 .zbox3 .cn5b:hover svg .cls-1 {
  fill: #fff;
}
.z-news .zcontainer .zleft {
  width: 73.68134856%;
}
@media (max-width: 991px) {
  .z-news .zcontainer .zleft {
    width: 100%;
  }
}
.z-news .zcontainer .zright {
  width: 24.74170745%;
}
@media (max-width: 991px) {
  .z-news .zcontainer .zright {
    width: 100%;
    margin-top: 1rem;
  }
}
.zpublic-title {
  display: flex;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #fff;
}
.zpublic-title .zpcn0 {
  flex-shrink: 0;
  display: flex;
  margin-right: 0.1rem;
  transform: translateY(0.06rem);
}
.zpublic-title .zpcn0 img {
  width: 0.22rem;
  height: 0.22rem;
}
@media (max-width: 991px) {
  .zpublic-title .zpcn0 img {
    width: 0.44rem;
    height: 0.44rem;
  }
}
.zpublic-title .zpcn0 svg {
  color: #fff;
}
.zpublic-title .zpcn1 {
  color: #fff;
  line-height: 0.34rem;
}
@media (max-width: 991px) {
  .zpublic-title .zpcn1 {
    line-height: 0.56rem;
  }
}
.zpublic-title .zpcn2 {
  flex-shrink: 0;
  display: flex;
  margin-left: 0.1rem;
  transform: translateY(0.06rem);
}
.zpublic-title .zpcn2 img {
  width: 0.22rem;
  height: 0.22rem;
}
@media (max-width: 991px) {
  .zpublic-title .zpcn2 img {
    width: 0.44rem;
    height: 0.44rem;
  }
}
.zpublic-title .zpcn2 svg {
  color: #fff;
}
.zpublic-news-list .zpbox {
  display: flex;
  flex-wrap: wrap;
  padding: 0.4rem 0;
  border-bottom: 1px solid #ececec;
  align-items: flex-start;
}
.zpublic-news-list .zpbox .zpimg {
  margin-left: 0.73800738%;
  margin-right: 3.6900369%;
  width: 21.40221402%;
}
@media (max-width: 767px) {
  .zpublic-news-list .zpbox .zpimg {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.zpublic-news-list .zpbox .zpimg::before {
  padding-top: 55.17241379%;
}
.zpublic-news-list .zpbox .zdate {
  color: #fff;
  width: 11.0701107%;
  padding-right: 0.1rem;
}
@media (max-width: 767px) {
  .zpublic-news-list .zpbox .zdate {
    width: 100%;
    margin-top: 0.2rem;
    padding-right: 0;
  }
}
.zpublic-news-list .zpbox .zcn1 {
  width: 51.29151292%;
  color: #fff;
  transition: all 0.4s;
  padding-right: 0.3rem;
}
@media (max-width: 767px) {
  .zpublic-news-list .zpbox .zcn1 {
    width: 100%;
    padding-right: 0;
    margin-top: 0.2rem;
  }
}
.zpublic-news-list .zpbox .zbutton2 {
  width: 11.80811808%;
}
@media (max-width: 767px) {
  .zpublic-news-list .zpbox .zbutton2 {
    width: 100%;
  }
}
.zpublic-news-list .zpbox .zbutton {
  max-width: 100%;
  width: 106px;
  height: 38px;
  border-radius: 19px;
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s;
  margin-left: auto;
}
@media (max-width: 767px) {
  .zpublic-news-list .zpbox .zbutton {
    margin-left: 0;
    margin-top: 0.2rem;
  }
}
.zpublic-news-list .zpbox .zbutton span {
  margin-left: 0.1rem;
}
.zpublic-news-list .zpbox:hover .zpimg img {
  transform: scale(1.05);
}
.zpublic-news-list .zpbox:hover .zcn1 {
  color: #fff;
}
.zpublic-news-list .zpbox:hover .zbutton {
  background-color: #fff;
  color: #fff;
}
.zpublic-news-list2 {
  margin-bottom: 0.75rem;
}
.zpublic-news-list2 .zpbox {
  display: flex;
  flex-wrap: wrap;
  padding: 0.35rem 0;
  border-bottom: 1px solid #ececec;
}
.zpublic-news-list2 .zpbox .zdate {
  display: block;
  width: 100%;
  color: #fff;
  line-height: 1.625;
}
.zpublic-news-list2 .zpbox .zcn1 {
  margin-top: 0.1rem;
  display: block;
  width: 100%;
  color: #fff;
  transition: all 0.5s;
  line-height: 1.33333333;
}
.zpublic-news-list2 .zpbox:hover .zcn1 {
  color: var(--color);
}
.zpublic-news-list3 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.24rem;
  padding-right: 0.24rem;
}
.zpublic-news-list3 .zpbox {
  background-color: #f2f2f2;
  padding: 0.12rem 0.2rem;
  margin-right: 0.08rem;
  margin-bottom: 0.16rem;
  color: #666666;
  line-height: 1.71428571;
  border-radius: 1rem;
  transition: all 0.5s;
}
.zpublic-news-list3 .zpbox:hover {
  background-color: var(--color);
  color: #fff;
}
.zpublic-news-list .zpbox {
  display: flex;
  flex-wrap: wrap;
  padding: 0.4rem 0;
  border-bottom: 1px solid #ececec;
  align-items: flex-start;
}
.zpublic-news-list .zpbox .zpimg {
  margin-left: 0.73800738%;
  margin-right: 3.6900369%;
  width: 21.40221402%;
}
@media (max-width: 767px) {
  .zpublic-news-list .zpbox .zpimg {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.zpublic-news-list .zpbox .zpimg::before {
  padding-top: 55.17241379%;
}
.zpublic-news-list .zpbox .zdate {
  color: #fff;
  width: 11.0701107%;
  padding-right: 0.1rem;
}
@media (max-width: 767px) {
  .zpublic-news-list .zpbox .zdate {
    width: 100%;
    margin-top: 0.2rem;
    padding-right: 0;
  }
}
.zpublic-news-list .zpbox .zcn1 {
  width: 51.29151292%;
  color: #fff;
  transition: all 0.4s;
  padding-right: 0.3rem;
}
@media (max-width: 767px) {
  .zpublic-news-list .zpbox .zcn1 {
    width: 100%;
    padding-right: 0;
    margin-top: 0.2rem;
  }
}
.zpublic-news-list .zpbox .zbutton2 {
  width: 11.80811808%;
}
@media (max-width: 767px) {
  .zpublic-news-list .zpbox .zbutton2 {
    width: 100%;
  }
}
.zpublic-news-list .zpbox .zbutton {
  max-width: 100%;
  width: 106px;
  height: 38px;
  border-radius: 19px;
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s;
  margin-left: auto;
}
@media (max-width: 767px) {
  .zpublic-news-list .zpbox .zbutton {
    margin-left: 0;
    margin-top: 0.2rem;
  }
}
.zpublic-news-list .zpbox .zbutton span {
  margin-left: 0.1rem;
}
.zpublic-news-list .zpbox:hover .zpimg img {
  transform: scale(1.05);
}
.zpublic-news-list .zpbox:hover .zcn1 {
  color: var(--color);
}
.zpublic-news-list .zpbox:hover .zbutton {
  border-color: var(--color);
  background-color: var(--color);
  color: #fff;
}
.public-nav-banner {
  padding: 1rem 0.35rem 0.6rem;
}
.public-nav-banner.public-nav-banner1 {
  padding: 1rem 0.35rem 1.2rem;
}
.public-nav-banner .pntitle {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.10204082;
}
@media (max-width: 991px) {
  .public-nav-banner .pntitle {
    font-size: 0.68rem;
  }
}
.public-nav-banner .pntitle2 {
  margin-top: 0.3rem;
  color: #666666;
  line-height: 1.5;
}
.public-nav-banner .pbtn1 {
  width: 0.56rem;
  height: 0.56rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color);
  border-radius: 50%;
}
.public-nav-banner .pbtn1 img {
  width: 0.13rem;
}
@media (max-width: 991px) {
  .public-nav-banner .pbtn1 img {
    width: 0.2rem;
  }
}
.public-nav-banner .pntitle3 {
  color: #fff;
  line-height: 1.41666667;
}
@media (max-width: 767px) {
  .public-nav-banner .pntitle3 {
    font-size: 0.28rem;
  }
}
.public-nav-banner .pbox {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.public-nav-banner .pbox .pleft {
  width: 40.94616639%;
}
@media (max-width: 991px) {
  .public-nav-banner .pbox .pleft {
    width: 100%;
  }
}
.public-nav-banner .pbox .pright {
  width: 39.47797716%;
}
@media (max-width: 991px) {
  .public-nav-banner .pbox .pright {
    margin-top: 0.3rem;
    width: 100%;
  }
}
