@charset "utf-8";
:root {
  --color: #222D82;
  --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");
} */
* {
  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: '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: 75%;
  max-width: 1280px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.bg-color1 {
  background-color: #fff;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .ptb100 {
    padding-top: 1.2rem;
    padding-bottom: 1.2em;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .pt100 {
    padding-top: 1.2rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .pb100 {
    padding-bottom: 1.2rem;
  }
}
.font16 {
  font-size: 16px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .font16 {
    font-size: 0.28rem;
  }
}
.public-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px 0 19px;
  height: 52px;
  border-radius: 125px;
  border: 1px solid #ffffff;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 1260px) {
  .public-btn {
    height: 44px;
    padding: 0 6px 0 10px;
  }
}
@media (max-width: 767px) {
  .public-btn {
    height: 40px;
  }
}
.public-btn .c-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.26rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E60012;
  transition: all 0.4s;
  overflow: hidden;
}
@media (max-width: 1260px) {
  .public-btn .c-ico {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 767px) {
  .public-btn .c-ico {
    /* width: 24px; */
    /* height: 24px; */
  }
}
.public-btn .c-ico .c-svg {
  width: 33.33%;
  height: 33.33%;
}
.public-btn:hover {
  color: #fff;
  background: #E60012;
  border-color: #E60012;
}
.public-btn:hover .c-ico {
  background: #fff;
  color: #E60012;
}
.public-btn:hover .c-ico .c-svg {
  animation: arrow 0.4s;
}
.public-btn.public-btn2 {
  border-color: #E3E3E3;
}
.public-btn.public-btn2 span {
  color: #333;
}
.public-btn.public-btn2 .c-ico {
  background: #222D82;
}
.public-btn.public-btn2:hover {
  color: #fff;
  background: #222D82;
  border-color: #222D82;
}
.public-btn.public-btn2:hover span {
  color: #fff;
}
.public-btn.public-btn2:hover .c-ico {
  background: #fff;
  color: #222D82;
}
.public-btn.public-btn2:hover .c-ico .c-svg {
  animation: arrow 0.4s;
}
.public-btn.public-btn3 {
  background: #fff;
  border-color: #fff;
}
.public-btn.public-btn3 span {
  color: #666;
}
.public-btn.public-btn3 .c-ico {
  background: #222D82;
}
.public-btn.public-btn3:hover {
  color: #fff;
  background: #222D82;
  border-color: #222D82;
}
.public-btn.public-btn3:hover span {
  color: #fff;
}
.public-btn.public-btn3:hover .c-ico {
  background: #fff;
  color: #222D82;
}
.public-btn.public-btn3:hover .c-ico .c-svg {
  animation: arrow 0.4s;
}
.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,
.public-img > svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
.public-content {
  line-height: 1.5;
}
.public-content a {
  color: #000;
}
.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: 80px;
}
@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;
  height: 80px;
  text-align: center;
  color: #fff;
  transition: 0.4s;
}
@media (max-width: 991px) {
  #c-header {
    height: 60px;
    line-height: 60px;
  }
}
#c-header a {
  color: #fff;
  transition: 0.4s;
}
#c-header .c-header-box {
  position: relative;
  z-index: 10;
  padding: 0 0.52rem 0 0.61rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (max-width: 991px) {
  #c-header .c-header-box {
    height: 60px;
  }
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
}
#c-header.c-head-move {
  top: -100px;
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -60px;
  }
}
#c-header.c-style3 {
  color: #333;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
#c-header.c-style3 a {
  color: #333;
}
#c-header.c-style3 .c-nav > li > .c-title-box {
  color: #333;
}
#c-header.c-style3 .c-logo .c-img-box img {
  display: none;
}
#c-header.c-style3 .c-logo .c-img-box img:nth-child(2) {
  display: block;
}
#c-header.c-style3 .c-gn form {
  color: #333;
}
#c-header.c-style3 .c-gn .c-language {
  color: #333;
}
#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-logo {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box img {
  height: 0.36rem;
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img {
    height: 24px;
  }
}
#c-header .c-logo .c-img-box img:nth-child(2) {
  display: none;
}
#c-header .c-logo span {
  display: inline-block;
  margin-left: 0.2rem;
  padding-left: 0.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  #c-header .c-logo span {
    display: none;
  }
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(1) {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(2) {
  display: inline-block;
}
#c-header .c-switch {
  position: relative;
  display: none;
  width: 24px;
  height: 20px;
  cursor: pointer;
}
@media (max-width: 991px) {
  #c-header .c-switch {
    display: block;
  }
}
#c-header .c-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
}
#c-header .c-switch i:nth-child(1) {
  top: 0;
}
#c-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#c-header .c-switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
#c-header.c-style2 .c-switch i {
  background: #333;
}
#c-header .c-gn {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #c-header .c-gn {
    display: none;
  }
}
#c-header .c-gn form {
  display: flex;
  align-items: center;
  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 p {
  margin-left: 4px;
}
#c-header .c-gn form:hover p {
  transition: all 0.4s;
  color: var(--color);
}
#c-header .c-gn form:hover > svg {
  color: var(--color);
}
#c-header .c-gn form .c-box {
  position: absolute;
  top: 106%;
  right: 0;
  display: none;
  width: 280px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #666;
}
#c-header .c-gn form .c-box input {
  float: left;
  padding: 0 0.15rem;
  width: -webkit-calc(30%);
  width: calc(100% - 70px);
  height: 50px;
}
#c-header .c-gn form .c-box button {
  float: left;
  width: 70px;
  height: 50px;
  color: #fff;
  background: var(--color);
  cursor: pointer;
}
#c-header .c-gn .c-language {
  margin-left: 0.33rem;
  position: relative;
  cursor: pointer;
}
#c-header .c-gn .c-language .c-ico-text {
  display: flex;
  align-items: center;
}
#c-header .c-gn .c-language .c-ico-text span {
  margin-left: 4px;
  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 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav > li {
  position: relative;
  margin: 0 0.3rem;
}
#c-header .c-nav > li:last-child {
  margin-right: 0;
}
#c-header .c-nav > li:first-child {
  margin-left: 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: 6px;
  width: 12px;
  height: 12px;
  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: 1px;
  background: var(--color);
  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 {
  text-align: left;
}
#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: var(--color);
}
#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%;
}
#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 - 1.2rem);
}
.c-open #c-header .c-switch i:nth-child(2) {
  opacity: 0;
}
.c-open #c-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-open #c-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 底部 */
#c-footer {
  background: #EFF2F6;
}
#c-footer a {
  transition: 0.4s;
}
#c-footer a:hover {
  color: var(--color);
}
#c-footer .c-top-box {
  padding: 0.84rem 0 0.89rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box {
    padding: 0.9rem 0 0;
  }
}
#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.44rem;
  color: #fff;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-title-box {
    color: #999;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(102, 102, 102, 0.2);
  }
}
#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%;
  }
}
#c-footer .c-top-box .container .c-list-box .c-title {
  color: #222;
  position: relative;
}
#c-footer .c-top-box .container .c-list-box .c-title::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  background: #222D82;
  left: 0;
  bottom: -0.21rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-title::after {
    display: none;
  }
}
#c-footer .c-top-box .container .c-list-box .g_foot .g_foot_li {
  margin-bottom: 0.2rem;
}
#c-footer .c-top-box .container .c-list-box .g_foot .g_foot_li.on .g_foot_tit svg,
#c-footer .c-top-box .container .c-list-box .g_foot .g_foot_li.on .g_foot_tit img {
  transform: rotate(0deg);
}
#c-footer .c-top-box .container .c-list-box .g_foot .g_foot_li .g_foot_tit {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
#c-footer .c-top-box .container .c-list-box .g_foot .g_foot_li .g_foot_tit svg,
#c-footer .c-top-box .container .c-list-box .g_foot .g_foot_li .g_foot_tit img {
  transition: all 0.4s;
  transform: rotate(180deg);
  margin-left: 5px;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
}
#c-footer .c-top-box .container .c-list-box .g_foot .g_foot_li .g_foot_tit svg path,
#c-footer .c-top-box .container .c-list-box .g_foot .g_foot_li .g_foot_tit img path {
  fill: var(--color);
}
#c-footer .c-top-box .container .c-list-box .g_foot .g_foot_li .c-list {
  margin-top: 0.11rem;
  display: none;
}
#c-footer .c-top-box .container .c-list-box .c-list {
  color: #666;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list {
    padding-top: 0.4rem;
    display: none;
  }
}
#c-footer .c-top-box .container .c-list-box .c-list li {
  font-weight: 400;
  padding-bottom: 0.08rem;
}
#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;
  }
}
#c-footer .c-top-box .container .c-text-box {
  text-align: right;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-box {
    padding-top: 0.2rem;
    text-align: left;
  }
}
#c-footer .c-top-box .container .c-text-box .p1 {
  font-family: "Plus Jakarta Sans";
  padding-bottom: 0.1rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-box .p1 {
    padding-bottom: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-text-box .g_add .g_add_li {
  margin-bottom: 0.08rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-box .g_add .g_add_li {
    justify-content: flex-start;
  }
}
#c-footer .c-top-box .container .c-text-box .g_add .g_add_li i {
  margin-right: 0.08rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: auto;
  color: #777777;
  margin-top: 2px;
}
@media (max-width: 1260px) {
  #c-footer .c-top-box .container .c-text-box .g_add .g_add_li i {
    width: 14px;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-box .g_add .g_add_li i {
    margin-top: 3px;
  }
}
#c-footer .c-top-box .container .c-text-box .g_add .g_add_li i svg,
#c-footer .c-top-box .container .c-text-box .g_add .g_add_li i img {
  width: 100%;
  height: auto;
}
#c-footer .c-top-box .container .c-text-box .g_add .g_add_li i svg path,
#c-footer .c-top-box .container .c-text-box .g_add .g_add_li i img path {
  fill: #777777;
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .c-text-box .g_add .g_add_li p {
    word-break: break-all;
  }
}
#c-footer .c-top-box .container .c-text-box .g_add .g_add_li p span {
  display: inline-block;
  width: 1em;
}
@media (max-width: 1580px) {
  #c-footer .c-top-box .container .c-text-box .g_add .g_add_li p span {
    width: auto;
  }
}
#c-footer .c-top-box .container .c-link {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-link {
    justify-content: flex-start;
  }
}
#c-footer .c-top-box .container .c-ico {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
}
#c-footer .c-top-box .container .c-ico p {
  margin-right: 0.15rem;
}
#c-footer .c-top-box .container .c-ico a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(119, 119, 119, 0.1);
  color: #fff;
  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 {
  transition: 0.4s;
  color: var(--color);
  width: 50%;
  height: 50%;
}
#c-footer .c-top-box .container .c-ico a:hover {
  background: var(--color);
}
#c-footer .c-top-box .container .c-ico a:hover img,
#c-footer .c-top-box .container .c-ico a:hover svg {
  color: #fff;
}
#c-footer .c-top-box .container .c-text-wrap {
  width: 21.875%;
}
@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 0 0.28rem;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box {
    padding: 0.4rem 0;
    font-size: 12px;
  }
}
#c-footer .c-bottom-box .container {
  color: #999;
  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: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-copyright a {
  margin-left: 0.1rem;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box .container .c-policy-link {
    margin-top: 0.2rem;
  }
}
#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*/
.c-home1 {
  overflow: hidden;
}
.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 {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  width: 100%;
  transform: translateY(-50%);
}
.c-home1 .swiper-slide .c-title {
  color: #FFF;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  font-family: "Microsoft YaHei UI";
  font-weight: 700;
  line-height: 1.25;
}
.c-home1 .swiper-slide .public-btn {
  margin-top: 0.31rem;
}
.c-home1 .swiper-button-next,
.c-home1 .swiper-button-prev {
  position: initial;
  margin-top: 0;
  margin-left: 0.14rem;
  border-radius: 0;
  opacity: 1;
  transition: 0.4s;
  right: 0.6rem;
  color: #fff;
  width: 0.37rem;
  height: auto;
}
@media (max-width: 991px) {
  .c-home1 .swiper-button-next,
  .c-home1 .swiper-button-prev {
    display: none;
  }
}
.c-home1 .swiper-button-next::after,
.c-home1 .swiper-button-prev::after {
  display: none;
}
.c-home1 .swiper-button-next img,
.c-home1 .swiper-button-prev img,
.c-home1 .swiper-button-next svg,
.c-home1 .swiper-button-prev svg {
  width: 100%;
  height: auto;
}
.c-home1 .swiper-button-next img rect,
.c-home1 .swiper-button-prev img rect,
.c-home1 .swiper-button-next svg rect,
.c-home1 .swiper-button-prev svg rect {
  fill: currentColor !important;
  opacity: 1 !important;
}
.c-home1 .swiper-button-next:hover,
.c-home1 .swiper-button-prev:hover {
  opacity: 1;
  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;
  position: initial;
  bottom: 0.4rem;
  width: auto;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination {
    bottom: 0.6rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0;
  width: 0.53rem;
  height: 4px;
  vertical-align: top;
  margin: 0 4px 0 0;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination .swiper-pagination-bullet {
    margin: 0 0.1rem;
    width: 0.3rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet div {
  height: 100%;
  background: #fff;
  width: 0;
  animation-timing-function: linear;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet-active div {
  animation-name: width100;
}
.c-home1 .hban_gab {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 10;
  bottom: 1.49rem;
}
.c-home1 .hban_gab .container {
  padding-bottom: 0.32rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.c-home1 .hban_gab .container .g_qie2 {
  display: flex;
  align-items: center;
}
/* 自己的公共样式 */
/*过渡*/
a {
  text-decoration: initial;
}
input::-webkit-input-placeholder {
  color: #999;
}
textarea::-webkit-input-placeholder {
  color: #999;
}
/* 字体 */
@font-face {
  font-family: 'pop';
  src: url(../font/POPPINS-REGULAR.ttf);
}
.font-pop {
  font-family: 'pop', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.img_hover img {
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  /* Firefox 4 */
  -webkit-transition: all 0.8s;
  /* Safari 和 Chrome */
  -o-transition: all 0.8s;
  /* Opera */
}
.pro_show_js_con * {
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  /* Firefox 4 */
  -webkit-transition: all 0.4s;
  /* Safari 和 Chrome */
  -o-transition: all 0.4s;
  /* Opera */
}
/*延迟*/
.sy_t_box:nth-child(2),
.xinw_nr_box:nth-child(2) {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(3),
.xinw_nr_box:nth-child(3) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(4),
.xinw_nr_box:nth-child(4) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(5) {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(6) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  /* Safari 和 Chrome */
}
.team_box:hover {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.wow_up {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* 普通移入效果 */
.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;
}
.font80 {
  font-size: 80px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20 {
    font-size: 18px;
  }
  .font22 {
    font-size: 20px;
  }
  .font24 {
    font-size: 22px;
  }
  .font26 {
    font-size: 24px;
  }
  .font28 {
    font-size: 26px;
  }
  .font30 {
    font-size: 28px;
  }
  .font32 {
    font-size: 30px;
  }
  .font34 {
    font-size: 32px;
  }
  .font36 {
    font-size: 34px;
  }
  .font38 {
    font-size: 36px;
  }
  .font40 {
    font-size: 38px;
  }
  .font42,
  .font44 {
    font-size: 40px;
  }
  .font46 {
    font-size: 42px;
  }
  .font48 {
    font-size: 44px;
  }
  .font50 {
    font-size: 46px;
  }
  .font52 {
    font-size: 48px;
  }
  .font54 {
    font-size: 50px;
  }
  .font56 {
    font-size: 52px;
  }
  .font60,
  .font80 {
    font-size: 56px;
  }
}
@media (max-width: 1260px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20 {
    font-size: 18px;
  }
  .font22 {
    font-size: 20px;
  }
  .font24 {
    font-size: 22px;
  }
  .font26 {
    font-size: 24px;
  }
  .font28 {
    font-size: 24px;
  }
  .font30 {
    font-size: 26px;
  }
  .font32 {
    font-size: 28px;
  }
  .font34 {
    font-size: 28px;
  }
  .font36,
  .font38,
  .font40 {
    font-size: 30px;
  }
  .font42,
  .font44 {
    font-size: 32px;
  }
  .font46 {
    font-size: 36px;
  }
  .font48,
  .font50,
  .font52,
  .font54,
  .font56 {
    font-size: 38px;
  }
  .font60,
  .font80 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .font14,
  .font16 {
    font-size: 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,
  .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: 1.7rem 0 2.4rem;
}
@media (max-width: 991px) {
  .g-mapon {
    padding: 1rem 0 ;
  }
}
.g-mapon .g-tit {
  text-align: center;
}
.g-mapon .g-tit h2 {
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .g-mapon .g-tit h2 {
    font-size: 0.48rem;
  }
}
.g-mapon .box {
  display: flex;
  justify-content: space-between;
  background: #fff;
  margin-top: 1.14rem;
}
@media (max-width: 991px) {
  .g-mapon .box {
    flex-direction: column;
    margin-top: 0.5rem;
  }
}
.g-mapon .box .item {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 767px) {
  .g-mapon .box .item {
    flex-direction: column;
    margin-bottom: 0.25rem;
  }
}
.g-mapon .box .item a:hover {
  color: var(--color) !important;
}
.g-mapon .box .item .g-la {
  font-weight: bold;
  margin-bottom: 0.24rem;
  flex-shrink: 0;
  color: #222;
}
@media (max-width: 767px) {
  .g-mapon .box .item .g-la {
    margin-bottom: 0.2rem;
    font-size: 0.32rem;
  }
}
.g-mapon .box .item .g-twa {
  width: 100%;
}
@media (max-width: 991px) {
  .g-mapon .box .item .g-twa {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
  }
}
.g-mapon .box .item .g-twa > a {
  display: block;
  margin-bottom: 0.05rem;
  color: #777;
  margin-right: 0.52rem;
}
@media (max-width: 767px) {
  .g-mapon .box .item .g-twa > a {
    min-width: auto;
  }
}
.g-mapon .box .item .g-twa2 {
  display: flex;
}
@media (max-width: 991px) {
  .g-mapon .box .item .g-twa2 {
    flex-direction: column;
  }
}
.g-mapon .box .item .g-twa2 .g-twa-li .g-twtit {
  color: #3D3D3D;
  margin-bottom: 0.1rem;
}
.g-mapon .box .item .g-twa2 .g-twa-li .g-tha {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .g-mapon .box .item .g-twa2 .g-twa-li .g-tha {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
  }
}
.g-mapon .box .item .g-twa2 .g-twa-li .g-tha a {
  margin-bottom: 0.05rem;
  color: #777;
  margin-right: 0.52rem;
}
@media (max-width: 991px) {
  .g-mapon .box .item .g-twa2 .g-twa-li .g-tha a {
    margin-bottom: 0.1rem;
    margin-right: 0.3rem;
  }
}
/* 404 */
.notbox404 {
  overflow: hidden;
  padding: 2.6rem 0 4.26rem;
}
.notbox404 .notbox404_box {
  text-align: center;
  width: 90%;
  position: relative;
  margin: auto;
}
.notbox404 .notbox404_box .g_404 {
  z-index: -1;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.notbox404 .notbox404_box .g_404 p {
  font-family: "Aeonik TRIAL";
  font-weight: bold;
  color: #222D82;
  opacity: 0.03;
  font-size: 5rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .notbox404 .notbox404_box .g_404 p {
    font-size: 4rem;
  }
}
.notbox404 .notbox404_box .notbox404_con .index-public-title {
  color: #000;
  font-weight: bold;
}
.notbox404 .notbox404_box .notbox404_con .public-btnbox {
  margin-top: 1rem;
}
.notbox404 .notbox404_box .notbox404_con .public-btnbox .g_a {
  display: inline-flex;
  border-radius: 100px;
  align-items: center;
  height: 0.52rem;
  padding: 0 0.33rem;
  background: var(--color);
  color: #fff;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .notbox404 .notbox404_box .notbox404_con .public-btnbox .g_a {
    height: 0.8rem;
    padding: 0 0.3rem;
  }
}
.notbox404 .notbox404_box .notbox404_con .public-btnbox .g_a:hover {
  opacity: 0.8;
}
/* 免责声明 */
.g-pri {
  padding: 1rem 0 ;
}
.g-pri .box .tit {
  margin-bottom: 0.75rem;
  text-align: center;
}
.g-pri .box .tit h2 {
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.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-weight: bold;
  color: #000;
  font-size: 16px;
}
.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; */
  color: #000;
  line-height: 1.2;
}
.pub_title p {
  margin-top: 0.2rem;
  color: #888;
}
.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;} */
/* 开始 */
.g_title {
  margin-bottom: 0.35rem;
}
.g_title h2 {
  line-height: 1.3;
}
.g_title p {
  margin-top: 0.3rem;
}
/* .pub_title{
	text-align: center;
	margin-bottom: 0.35rem;
	h2{
		line-height: 1.3;
	}
	p{
		margin-top: 0.3rem;
	}
} */
.hon {
  padding-bottom: 1.48rem;
  margin-top: -1.3rem;
  position: relative;
  z-index: 10;
}
.hon .g_title h2 {
  color: #fff;
}
.hon .box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .hon .box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .hon .box {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.hon .box .item {
  box-shadow: 0 1px 15.8px 0 rgba(167, 167, 167, 0.25);
  background: #fff;
}
.hon .box .item:first-child {
  grid-column: span 2;
}
@media (max-width: 767px) {
  .hon .box .item:first-child {
    grid-column: span 1;
  }
}
.hon .box .item .public-img:before {
  padding-top: 62.99019608%;
}
@media screen and (min-width: 768px) {
  .hon .box .item:hover {
    transform: translateY(-4px);
    transition: ease all 0.3s;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  }
}
.hon .box .item:hover .public-img img {
  transform: scale(1.05);
}
.hon .box .item .txt {
  padding: 0.37rem 0.6rem 0.5rem 0.41rem;
}
.hon .box .item .txt .g_tag {
  margin-left: -0.41rem;
  width: 1.47rem;
  height: 0.43rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222D82;
  position: relative;
}
@media (max-width: 767px) {
  .hon .box .item .txt .g_tag {
    width: 2rem;
    height: 0.8rem;
  }
}
.hon .box .item .txt .g_tag i {
  position: absolute;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color);
}
.hon .box .item .txt .g_tag i svg,
.hon .box .item .txt .g_tag i img {
  width: 100%;
  height: auto;
}
.hon .box .item .txt .g_tag i svg path,
.hon .box .item .txt .g_tag i img path {
  fill: var(--color);
}
.hon .box .item .txt .g_tag p {
  position: relative;
  z-index: 10;
  padding: 0 0 0.05rem;
}
.hon .box .item .txt .txt_box {
  margin-top: 0.33rem;
}
.hon .box .item .txt .txt_box h3 {
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.hon .box .item .txt .txt_box p {
  margin-top: 0.2rem;
  color: #888;
  line-height: 1.36;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.hon .box .item1 .public-img:before {
  padding-top: 39.0736342%;
}
.hon .box .item1 .txt {
  padding-top: 0.29rem;
}
.hon .box .item1 .txt .txt_box {
  margin-top: 0.13rem;
}
.hon .box .item2 {
  background: #222D82;
}
.hon .box .item2 .txt .g_tag p {
  color: #fff;
}
.hon .box .item2 .txt .txt_box h3 {
  color: #fff;
}
.hon .box .item2 .txt .txt_box p {
  color: rgba(255, 255, 255, 0.7);
}
.hon .box .item3 {
  background: #3C4AB9;
}
.hon .box .item3 .txt .g_tag p {
  color: #fff;
}
.hon .box .item3 .txt .txt_box h3 {
  color: #fff;
}
.hon .box .item3 .txt .txt_box p {
  color: rgba(255, 255, 255, 0.7);
}
.hon .box .item4 {
  background: #0C9BE1;
}
.hon .box .item4 .txt .g_tag p {
  color: #fff;
}
.hon .box .item4 .txt .txt_box h3 {
  color: #fff;
}
.hon .box .item4 .txt .txt_box p {
  color: rgba(255, 255, 255, 0.7);
}
.htw {
  position: relative;
  min-height: 100vh;
}
@media (max-width: 991px) {
  .htw {
    min-height: auto;
  }
}
.htw .imgbj {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
@media (max-width: 991px) {
  .htw .imgbj {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}
.htw .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.htw .box {
  margin-top: -100vh;
  position: relative;
  z-index: 10;
  padding: 1.7rem 0 1.5rem;
}
@media (max-width: 991px) {
  .htw .box {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .htw .box {
    padding: 1.2rem 0;
  }
}
.htw .box .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .htw .box .container {
    flex-direction: column;
  }
}
.htw .box .container .gl {
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
  left: 0;
  width: 39.0625%;
}
@media (max-width: 991px) {
  .htw .box .container .gl {
    width: 100%;
    position: initial;
  }
}
.htw .box .container .gl .g_title {
  color: #fff;
}
.htw .box .container .gl .public-btn {
  margin-top: 1.14rem;
}
@media (max-width: 991px) {
  .htw .box .container .gl .public-btn {
    margin-top: 0.1rem;
  }
}
.htw .box .container .gr {
  width: 54.21875%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 62px;
}
@media (max-width: 1260px) {
  .htw .box .container .gr {
    gap: 32px;
  }
}
@media (max-width: 991px) {
  .htw .box .container .gr {
    width: 100%;
    margin-top: 0.7rem;
  }
}
@media (max-width: 767px) {
  .htw .box .container .gr {
    grid-template-columns: repeat(1, 1fr);
  }
}
.htw .box .container .gr .item {
  color: #fff;
  text-align: center;
  padding: 0.32rem 0.42rem 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.htw .box .container .gr .item:nth-child(2n) {
  transform: translateY(2.06rem);
}
@media (max-width: 991px) {
  .htw .box .container .gr .item:nth-child(2n) {
    transform: translateY(0);
  }
}
.htw .box .container .gr .item .img {
  height: 0.67rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.htw .box .container .gr .item .img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.htw .box .container .gr .item .g_h3 {
  margin-top: 0.22rem;
}
.htw .box .container .gr .item .g_h3 span {
  margin-top: 4px;
  display: block;
  font-size: 13px;
}
@media (max-width: 767px) {
  .htw .box .container .gr .item .g_h3 span {
    font-size: 12px;
  }
}
.htw .box .container .gr .item .g_p {
  text-align: left;
  margin-top: 0.32rem;
}
.g_qie .pub_nav {
  width: 0.44rem;
  height: 0.44rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #999;
  /* background: #fff; */
  /* box-shadow: 0 0 0.2rem rgba(0,0,0,0.05); */
  top: 50%;
  margin-top: 0;
  transform: translateY(0%);
  position: initial;
  z-index: 10;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .g_qie .pub_nav {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.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 {
  color: #999;
  width: 36.36363636%;
  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;
}
.hth {
  background: #F5F5F6;
  padding: 1.15rem 0 1.24rem;
}
.hth .g_t {
  display: flex;
  justify-content: space-between;
}
.hth .g_t .g_title {
  margin-bottom: 0;
}
.hth .g_t .g_qie {
  display: flex;
  align-items: center;
}
.hth .g_t .g_qie .pub_nav {
  margin-left: 0.12rem;
}
.hth .box {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-left: calc((100% - 1280px)/2);
}
@media (max-width: 1580px) {
  .hth .box {
    padding-left: 8%;
  }
}
@media (max-width: 1260px) {
  .hth .box {
    padding-left: 5%;
  }
}
@media (max-width: 767px) {
  .hth .box {
    padding: 0 5%;
    flex-direction: column;
  }
}
.hth .box .gl {
  width: 24.92211838%;
}
@media (max-width: 767px) {
  .hth .box .gl {
    width: 100%;
  }
}
.hth .box .gl .g_p p {
  color: #888;
}
.hth .box .gl .public-btn {
  margin-top: 0.29rem;
}
.hth .box .gr {
  width: 74.14330218%;
}
@media (max-width: 767px) {
  .hth .box .gr {
    width: 100%;
    margin-top: 0.4rem;
  }
}
.hth .box .gr .swiper {
  margin-top: -14px;
  padding: 18px;
}
.hth .box .gr .swiper .hth_con {
  box-shadow: 0 4px 18px 2px rgba(0, 0, 0, 0.08);
}
.hth .box .gr .swiper .hth_con:hover .public-img img {
  transform: scale(1.05);
}
.hth .box .gr .swiper .hth_con:hover .txt h3 {
  color: var(--color) !important;
}
.hth .box .gr .swiper .hth_con .public-img:before {
  padding-top: 63.36633663%;
}
.hth .box .gr .swiper .hth_con .txt {
  padding: 0.3rem 0.34rem 0.5rem;
  background: #FFF;
}
.hth .box .gr .swiper .hth_con .txt span {
  display: block;
  color: #222;
}
.hth .box .gr .swiper .hth_con .txt h3 {
  transition: all 0.4s;
  margin-top: 0.14rem;
  line-height: 1.24;
  height: 2.48em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.hth .box .gr .swiper .hth_con .txt p {
  color: #999;
  line-height: 1.3;
  height: 2.6em;
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.hth .swiper-pagination {
  margin-top: 0.68rem;
  background: #E3E3E3;
  height: 5px;
  width: 100%;
  position: initial;
}
@media (max-width: 767px) {
  .hth .swiper-pagination {
    height: 3px;
    margin-top: 0.3rem;
  }
}
/* 探索大族数控 */
.sub_banner {
  overflow: hidden;
  height: 6.8rem;
  width: 100%;
  position: relative;
}
.sub_banner .mob_pc {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sub_banner .mob_pc .g_img {
  width: 100%;
  height: 100%;
}
.sub_banner .mob_pc .g_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub_banner .mob_pc .g_video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.sub_banner .sub_banner_txt {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}
.sub_banner .sub_banner_txt .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.sub_banner .sub_banner_txt .container .ban_l {
  width: 50%;
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container .ban_l {
    width: 100%;
  }
}
.sub_banner .sub_banner_txt .container .ban_l .tit h3 {
  font-weight: 900;
  line-height: 1.2;
}
.sub_banner .sub_banner_txt .container .ban_l .sub_banner_p {
  margin-top: 0.11rem;
}
.sub_banner .sub_banner_txt .container .ban_l .sub_banner_p p {
  line-height: 1.25;
}
.sub_banner .sub_banner_txt .container .ban_l .pub_btn {
  margin-top: 0.77rem;
}
.aboon {
  padding-bottom: 1.93rem;
}
.aboon .aboon_t {
  padding: 1.11rem 0 1rem;
  background: #F5F5F6;
}
.aboon .aboon_t .box {
  margin-top: 1.05rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem 0.95rem;
}
@media (max-width: 991px) {
  .aboon .aboon_t .box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .aboon .aboon_t .box {
    margin-top: 0.5rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
.aboon .aboon_t .box .item h3 {
  color: #000;
  margin-bottom: 5px;
}
.aboon .aboon_t .box .item p {
  color: #888;
}
.aboon .aboon_m {
  position: relative;
}
.aboon .aboon_m .bj {
  position: absolute;
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background: #F5F5F6;
}
.aboon .aboon_m .container {
  position: relative;
  z-index: 10;
}
.aboon .aboon_m .g_video {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.aboon .aboon_m .g_video .public-img:before {
  padding-top: 42.109375%;
}
.aboon .aboon_m .g_video .public-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboon .aboon_m .g_video .vid_on {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboon .aboon_m .g_video .vid_on svg,
.aboon .aboon_m .g_video .vid_on img {
  width: 100%;
  height: auto;
  color: #fff;
}
.aboon .aboon_b {
  margin-top: 1.2rem;
  background: #fff;
}
.aboon .aboon_b .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
}
@media (max-width: 991px) {
  .aboon .aboon_b .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .aboon .aboon_b .container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.aboon .aboon_b .container .item i {
  width: 100%;
  height: 1px;
  background: #E0DDDD;
  display: block;
}
.aboon .aboon_b .container .item .item_t {
  margin-top: 0.35rem;
  align-items: center;
  display: flex;
}
.aboon .aboon_b .container .item .item_t p {
  line-height: 1;
  font-weight: bold;
}
.aboon .aboon_b .container .item .item_t span {
  font-weight: bold;
  line-height: 1;
  margin-top: -0.1rem;
}
.aboon .aboon_b .container .item .item_b {
  margin-top: 0.14rem;
}
.aboon .aboon_b .container .item .item_b p {
  color: #888;
}
.abotw {
  position: relative;
}
.abotw .public-img {
  background: url(<path-to-image>) lightgray 50% / cover no-repeat;
}
@media (max-width: 767px) {
  .abotw .public-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.abotw .public-img::after {
  content: '';
}
@media (max-width: 991px) {
  .abotw .public-img::after {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    z-index: 3;
    top: 0;
    left: 0;
  }
}
.abotw .public-img:before {
  padding-top: 41.66666667%;
}
@media (max-width: 991px) {
  .abotw .public-img:before {
    padding-top: 70%;
  }
}
.abotw .container {
  color: #fff;
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  padding: 1.46rem 0;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .abotw .container {
    padding: 1rem 0 0.45rem;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .abotw .container {
    left: 0;
    position: relative;
    transform: translateX(0%);
  }
}
.abotw .container .box {
  margin-right: 0.88rem;
}
.abotw .container .box .item {
  margin-bottom: 0.55rem;
}
.abotw .container .box .item p {
  line-height: 1;
}
.aboth {
  background: #EFF2F6;
  padding: 1.12rem 0 0.42rem;
}
.aboth .pub_title {
  text-align: left;
}
.aboth .pub_title h2 {
  color: #000;
}
.aboth .box {
  margin-top: 0.47rem;
}
.aboth .box .item {
  padding: 0.6rem 0;
  border-top: 1px solid rgba(224, 221, 221, 0.5);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .aboth .box .item {
    flex-direction: column !important;
  }
}
.aboth .box .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.aboth .box .item:nth-child(2n) .gr i {
  display: none;
}
.aboth .box .item .public-img {
  width: 40.625%;
  box-shadow: 0 1px 15.8px 0 rgba(167, 167, 167, 0.25);
}
@media (max-width: 767px) {
  .aboth .box .item .public-img {
    width: 100%;
  }
}
.aboth .box .item .public-img:hover img {
  transform: scale(1.05);
}
.aboth .box .item .public-img:before {
  padding-top: 52.32142857%;
}
.aboth .box .item .gr {
  padding-right: 0.85rem;
  width: 50%;
  position: relative;
}
@media (max-width: 767px) {
  .aboth .box .item .gr {
    width: 100%;
  }
}
.aboth .box .item .gr .txt {
  padding: 0.42rem 0;
}
.aboth .box .item .gr .txt h3 {
  color: #222D82;
}
.aboth .box .item .gr .txt p {
  margin-top: 0.12rem;
  color: #999;
}
.aboth .box .item .gr i {
  position: absolute;
  right: 0;
  top: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.18rem;
  height: auto;
  color: #E7211A;
}
@media (max-width: 1260px) {
  .aboth .box .item .gr i {
    width: 0.22rem;
  }
}
@media (max-width: 767px) {
  .aboth .box .item .gr i {
    width: 0.26rem;
    display: none;
  }
}
.aboth .box .item .gr i svg,
.aboth .box .item .gr i img {
  width: 100%;
  height: auto;
}
.aboth .box .item .gr i svg path,
.aboth .box .item .gr i img path {
  fill: var(--color);
}
.abofo {
  padding: 1.26rem 0 1.53rem;
}
.abofo .pub_title h2 {
  color: #000;
}
.abofo .box {
  height: 4.46rem;
  position: relative;
  margin-top: 0.56rem;
}
@media (max-width: 1580px) {
  .abofo .box {
    height: 6rem;
  }
}
@media (max-width: 767px) {
  .abofo .box {
    height: auto;
  }
}
.abofo .box .item {
  box-shadow: 0 4px 18px 2px rgba(0, 0, 0, 0.08);
  padding: 0.47rem 0.2rem 0.47rem 0.54rem;
  left: 0;
  height: 100%;
  width: 55.46875%;
  position: absolute;
  z-index: 5;
  background: url(../images/about8.png) no-repeat;
  background-size: cover;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .abofo .box .item {
    position: relative;
    width: 100% !important;
    left: 0 !important;
    margin-bottom: 0.5rem;
  }
}
.abofo .box .item:hover {
  z-index: 10;
}
.abofo .box .item:nth-child(2) {
  left: calc((1280 - 710)/1280/3*100%);
}
.abofo .box .item:nth-child(3) {
  left: calc((1280 - 710)/1280/3*2*100%);
}
.abofo .box .item:nth-child(4) {
  left: calc((1280 - 710)/1280/3*3*100%);
}
.abofo .box .item .g_tit {
  display: flex;
}
.abofo .box .item .g_tit p {
  font-weight: bold;
  margin-right: 0.18rem;
  color: #222D82;
}
.abofo .box .item .txt {
  display: flex;
  overflow: auto;
  padding-bottom: 0.2rem;
  margin-top: 0.27rem;
}
.abofo .box .item .txt .g_li {
  flex-shrink: 0;
  width: 25%;
}
@media (max-width: 767px) {
  .abofo .box .item .txt .g_li {
    width: 50%;
  }
}
.abofo .box .item .txt .g_li .g_i {
  position: relative;
  margin-bottom: 0.16rem;
}
.abofo .box .item .txt .g_li .g_i .i1 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #222D82;
  display: block;
  position: relative;
  z-index: 1;
}
.abofo .box .item .txt .g_li .g_i .i2 {
  position: absolute;
  right: 0;
  top: 50%;
  width: calc(100% - 7px);
  border-top: 1px dashed #222D82;
}
.abofo .box .item .txt .g_li .year {
  padding-right: 0.25rem;
  font-weight: bold;
  color: #222D82;
  margin-bottom: 0.21rem;
}
.abofo .box .item .txt .g_li .g_p {
  padding-right: 0.25rem;
  color: #222D82;
}
.abofi {
  position: relative;
}
.abofi .imgbj {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.abofi .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.abofi .container {
  position: relative;
  z-index: 10;
  height: 100%;
  padding: 0.96rem 0 0.8rem;
}
.abofi .container .box {
  width: 39.53125%;
}
@media (max-width: 991px) {
  .abofi .container .box {
    width: 100%;
  }
}
.abofi .container .box .pub_title {
  text-align: left;
}
.abofi .container .box .pub_title h2 {
  color: #fff;
}
.abofi .container .box .gcon {
  color: #fff;
  margin-top: 0.45rem;
  padding-bottom: 0.22rem;
  border-left: 2px solid rgba(255, 255, 255, 0.16);
}
.abofi .container .box .gcon .item {
  padding-left: 0.46rem;
  position: relative;
  margin-bottom: 0.35rem;
}
.abofi .container .box .gcon .item::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  left: -2px;
  top: 0;
  background: #222D82;
  transition: all 0.4s;
  opacity: 0;
}
.abofi .container .box .gcon .item:hover::after {
  opacity: 1;
}
.abofi .container .box .gcon .item:hover .txt h3 {
  font-weight: bold;
}
.abofi .container .box .gcon .item .txt {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding-bottom: 0.19rem;
}
.abofi .container .box .gcon .item .txt span {
  display: block;
}
.abofi .container .box .gcon .item .txt h3 {
  transition: all 0.4s;
  margin-top: 3px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* 可持续发展 */
.suson {
  margin: 1.11rem 0 1.14rem;
}
.suson .box1 {
  margin-bottom: 0.87rem;
  margin-top: 1rem;
}
.suson .box1 .gcon {
  margin-top: 0.22rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 991px) {
  .suson .box1 .gcon {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .suson .box1 .gcon {
    grid-template-columns: repeat(1, 1fr);
  }
}
.suson .box1 .gcon .item {
  background: #F8F8F9;
  padding: 0.66rem 0.4rem;
  display: flex;
  align-items: center;
}
.suson .box1 .gcon .item img {
  width: 0.77rem;
  height: auto;
  margin-right: 0.43rem;
  flex-shrink: 0;
}
.suson .box1 .gcon .item .txt p {
  margin-top: 5px;
}
.suson .box2 .gcon {
  display: flex;
  margin-top: 0.2rem;
}
@media (max-width: 767px) {
  .suson .box2 .gcon {
    flex-direction: column;
  }
}
.suson .box2 .gcon .item {
  transition: all 0.4s;
  position: relative;
  margin-right: 0.14rem;
  width: 19.21875%;
  height: 4.3rem;
}
@media (max-width: 1580px) {
  .suson .box2 .gcon .item {
    height: 6rem;
  }
}
@media (max-width: 767px) {
  .suson .box2 .gcon .item {
    width: 100% !important;
    margin-bottom: 0.4rem;
  }
}
@media (min-width: 768px) {
  .suson .box2 .gcon .item.on {
    width: 59.375%;
    flex-shrink: 0;
  }
  .suson .box2 .gcon .item.on .txt .gxs {
    opacity: 0;
  }
  .suson .box2 .gcon .item.on .txt .gyr {
    opacity: 1;
  }
  .suson .box2 .gcon .item.on .txt .gyr .txt_box {
    opacity: 1;
  }
}
.suson .box2 .gcon .item .img {
  width: 100%;
  height: 100%;
}
.suson .box2 .gcon .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.suson .box2 .gcon .item .txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.suson .box2 .gcon .item .txt .gxs {
  padding: 0.42rem;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .suson .box2 .gcon .item .txt .gxs {
    display: none;
  }
}
.suson .box2 .gcon .item .txt .gxs h5 {
  line-height: 1.3;
  text-align: center;
}
.suson .box2 .gcon .item .txt .gxs p {
  margin-top: 0.08rem;
}
.suson .box2 .gcon .item .txt .gyr {
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0.42rem;
  padding-right: 1.42rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .suson .box2 .gcon .item .txt .gyr {
    padding: 0.3rem;
    opacity: 1;
  }
}
.suson .box2 .gcon .item .txt .gyr .txt_box {
  transition: all 0.4s;
  opacity: 0;
  transition-delay: 0.4s;
}
@media (max-width: 767px) {
  .suson .box2 .gcon .item .txt .gyr .txt_box {
    opacity: 1;
  }
}
.suson .box2 .gcon .item .txt .gyr .txt_box h5 {
  margin-bottom: 0.12rem;
}
.sustw {
  margin: 1.14rem 0 1.48rem;
}
.sustw .box {
  margin-top: 0.55rem;
}
.sustw .box ul li {
  margin-bottom: 6px;
}
.sustw .box ul li:first-child .g_xia {
  display: block;
}
.sustw .box ul li.on .g_top .g_gb {
  background: var(--color);
  transform: rotate(-270deg);
}
.sustw .box ul li.on .g_top .g_gb svg {
  color: #fff;
}
.sustw .box ul li.on .g_xia {
  pointer-events: auto;
}
.sustw .box ul li .g_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 0.57rem 0 0.18rem;
  position: relative;
  cursor: pointer;
  background: #F8F8F9;
}
@media (max-width: 767px) {
  .sustw .box ul li .g_top {
    height: 60px;
  }
}
.sustw .box ul li .g_top .g_top_l {
  display: flex;
  align-items: center;
  width: 80%;
}
.sustw .box ul li .g_top .g_top_l .lxh {
  margin-right: 0.32rem;
}
.sustw .box ul li .g_top .g_top_l .lxh span {
  display: block;
  line-height: 1.3;
  color: rgba(34, 45, 130, 0.1);
}
.sustw .box ul li .g_top .g_top_l .gtit {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .sustw .box ul li .g_top .g_top_l .gtit {
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
  }
}
.sustw .box ul li .g_top .g_top_l .gtit h3 {
  margin-right: 0.3rem;
}
.sustw .box ul li .g_top .g_top_l .gtit p {
  color: #999;
}
.sustw .box ul li .g_top .g_gb {
  position: relative;
  transition: 0.4s all;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.2rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  border: 1px solid var(--color);
  z-index: 10;
  flex-shrink: 0;
  transform: rotate(-90deg);
}
@media (max-width: 1580px) {
  .sustw .box ul li .g_top .g_gb {
    width: 0.46rem;
    height: 0.46rem;
  }
}
.sustw .box ul li .g_top .g_gb svg {
  width: 19.44444444%;
  height: auto;
  color: var(--color);
}
.sustw .box ul li .g_xia {
  display: none;
  filter: drop-shadow(0 1px 15.8px rgba(167, 167, 167, 0.25));
  margin-top: -80px;
  z-index: 10;
  pointer-events: none;
  background: #fff;
  padding: 0.39rem 1.59rem 1rem 0.18rem;
}
@media (max-width: 767px) {
  .sustw .box ul li .g_xia {
    margin-top: -60px;
    padding: 0.39rem 0.3rem 0.5rem;
  }
}
.sustw .box ul li .g_xia .g_xia_box {
  display: flex;
}
@media (max-width: 767px) {
  .sustw .box ul li .g_xia .g_xia_box {
    flex-direction: column;
  }
}
.sustw .box ul li .g_xia .g_xia_box .gl {
  max-width: 35%;
  margin-right: 0.88rem;
  display: flex;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .sustw .box ul li .g_xia .g_xia_box .gl {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    padding-right: 1rem;
  }
}
.sustw .box ul li .g_xia .g_xia_box .gl .lxh {
  margin-right: 0.32rem;
}
.sustw .box ul li .g_xia .g_xia_box .gl .lxh span {
  display: block;
  line-height: 1.1;
  color: rgba(34, 45, 130, 0.1);
}
.sustw .box ul li .g_xia .g_xia_box .gl .gtit h3 {
  line-height: 1.2;
}
.sustw .box ul li .g_xia .g_xia_box .gl .gtit p {
  margin-top: 0.08rem;
  color: #999;
}
@media (max-width: 767px) {
  .sustw .box ul li .g_xia .g_xia_box .gr {
    margin-top: 0.4rem;
  }
}
.sustw .box ul li .g_xia .g_xia_box .gr .gbox {
  color: #888;
  line-height: 1.77777778;
}
.susth {
  margin: 1.48rem 0 1.05rem;
}
.susth .box {
  margin-top: 0.7rem;
}
.susth .box .item {
  background: #FFF;
  box-shadow: 0 4px 18px 2px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.46rem;
}
@media (max-width: 767px) {
  .susth .box .item {
    flex-direction: column !important;
  }
}
.susth .box .item:hover .public-img img {
  transform: scale(1.05);
}
.susth .box .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.susth .box .item .public-img {
  width: 42.1875%;
}
@media (max-width: 767px) {
  .susth .box .item .public-img {
    width: 100%;
  }
}
.susth .box .item .public-img:before {
  padding-top: 70%;
}
.susth .box .item .txt {
  padding: 0.58rem 1.45rem 0.79rem 0.81rem;
  width: 57.8125%;
}
@media (max-width: 767px) {
  .susth .box .item .txt {
    width: 100%;
    padding: 0.4rem;
  }
}
.susth .box .item .txt .txt_box h3 {
  color: #222D82;
}
.susth .box .item .txt .txt_box p {
  margin-top: 0.13rem;
  color: #999;
}
.susth .box .item .txt .public-btn {
  margin-top: 0.5rem;
}
.susfo {
  margin: 1.05rem 0 1.19rem;
}
.susfo .gswi {
  position: relative;
}
@media (max-width: 991px) {
  .susfo .gswi .g_qie {
    display: none;
  }
}
.susfo .gswi .g_qie .pub_nav {
  top: 40%;
  position: absolute;
}
.susfo .gswi .g_qie .pub_prev {
  left: -0.9rem;
}
@media (max-width: 1260px) {
  .susfo .gswi .g_qie .pub_prev {
    left: -0.5rem;
  }
}
.susfo .gswi .g_qie .pub_next {
  right: -0.9rem;
}
@media (max-width: 1260px) {
  .susfo .gswi .g_qie .pub_next {
    right: -0.5rem;
  }
}
.susfo .box {
  overflow: hidden;
  width: calc(100% + 0.4rem);
  height: calc(100% + 0.4rem);
  margin-left: -0.2rem;
  padding: 0.2rem;
  margin-top: 0.47rem;
}
.susfo .box .swiper {
  overflow: initial;
}
.susfo .box .swiper .susfo_box {
  background: #FFF;
  box-shadow: 0 4px 0.18rem 2px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .susfo .box .swiper .susfo_box {
    box-shadow: 0 4px 0.1rem 2px rgba(0, 0, 0, 0.08);
  }
}
.susfo .box .swiper .susfo_box:hover .public-img img {
  transform: scale(1.05);
}
.susfo .box .swiper .susfo_box:hover .txt h3 {
  color: var(--color) !important;
}
.susfo .box .swiper .susfo_box .public-img:before {
  padding-top: 55.94059406%;
}
.susfo .box .swiper .susfo_box .txt {
  padding: 0.25rem 0.37rem 0.58rem;
}
.susfo .box .swiper .susfo_box .txt span {
  display: block;
}
.susfo .box .swiper .susfo_box .txt h3 {
  transition: all 0.4s;
  margin-top: 0.13rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.27272727;
  height: 2.54545455em;
}
.susfo .box .swiper .susfo_box .txt p {
  margin-top: 0.23rem;
  color: #777;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.susfi {
  margin: 1.19rem 0 1.14rem;
}
.susfi .box {
  display: flex;
  justify-content: space-between;
  margin-top: 0.37rem;
}
@media (max-width: 767px) {
  .susfi .box {
    flex-direction: column;
  }
}
.susfi .box .public-img:before {
  padding-top: 76.39344262%;
}
.susfi .box .g_num {
  padding: 0.38rem 0.6rem;
  color: #fff;
  height: 100%;
}
@media (max-width: 991px) {
  .susfi .box .g_num {
    padding: 0.18rem 0.3rem;
  }
}
.susfi .box .g_num .item_t {
  margin-top: 0.35rem;
  align-items: flex-end;
  display: flex;
}
.susfi .box .g_num .item_t p {
  line-height: 1;
  font-size: 0.64rem;
  font-weight: bold;
}
.susfi .box .g_num .item_t span {
  margin-left: 0.17rem;
  font-weight: bold;
  line-height: 1.6;
}
.susfi .box .g_num .item_b {
  margin-top: 0.1rem;
}
.susfi .box .gl {
  width: calc(50% - 0.1rem);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .susfi .box .gl {
    width: 100%;
  }
}
.susfi .box .gl .gl_l {
  width: calc(50% - 0.1rem);
}
.susfi .box .gl .gl_r {
  width: calc(50% - 0.1rem);
}
.susfi .box .gl .gl_r .public-img {
  height: 100%;
}
.susfi .box .gl .gl_r .public-img:before {
  padding-top: 159.3442623%;
}
.susfi .box .gr {
  width: calc(50% - 0.1rem);
}
@media (max-width: 767px) {
  .susfi .box .gr {
    width: 100%;
    margin-top: 0.2rem;
  }
}
.susfi .box .gr .gr_t {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.2rem;
  height: calc(50% - 0.2rem);
}
.susfi .box .gr .gr_b {
  height: 50%;
}
.susfi .box .item1 {
  display: flex;
  flex-direction: column;
  background: #0084FF;
  margin-bottom: 0.2rem;
  height: calc(50% - 0.2rem);
}
.susfi .box .item2 {
  height: 50%;
}
.susfi .box .item2 .public-img {
  height: 100%;
}
.susfi .box .item4 {
  width: calc(50% - 0.1rem);
  background: #222D82;
}
@media (max-width: 767px) {
  .susfi .box .item4 {
    height: auto;
  }
}
.susfi .box .item5 {
  width: calc(50% - 0.1rem);
}
.susfi .box .item6 {
  background: #0C9BE1;
}
@media (max-width: 767px) {
  .susfi .box .item6 {
    min-height: 2.5rem;
  }
}
.sussi {
  margin: 1.14rem 0 1.09rem;
}
.sussi .box {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .sussi .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.sussi .box .item {
  display: flex;
  justify-content: space-between;
  padding: 0.44rem 0.49rem;
  background: #F8F8F9;
  transition: all 0.4s;
}
.sussi .box .item:hover {
  background: #FFF;
  box-shadow: 0 4px 15.3px 0 rgba(0, 0, 0, 0.05);
}
.sussi .box .item:hover .gl .txt h3 {
  color: var(--color);
}
.sussi .box .item:hover .gr {
  border-color: var(--color);
  background: var(--color);
  color: #fff;
}
.sussi .box .item:hover .gr i {
  color: #fff;
}
.sussi .box .item .gl {
  display: flex;
  align-items: center;
}
.sussi .box .item .gl i {
  margin-right: 0.33rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.35rem;
  height: auto;
  color: var(--color);
}
@media (max-width: 1260px) {
  .sussi .box .item .gl i {
    width: 0.42rem;
  }
}
@media (max-width: 767px) {
  .sussi .box .item .gl i {
    width: 0.46rem;
  }
}
.sussi .box .item .gl i svg,
.sussi .box .item .gl i img {
  width: 100%;
  height: auto;
}
.sussi .box .item .gl i svg path,
.sussi .box .item .gl i img path {
  fill: var(--color);
}
.sussi .box .item .gl .txt h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #222;
  font-weight: bold;
}
.sussi .box .item .gl .txt p {
  margin-top: 5px;
  color: #777;
}
.sussi .box .item .gr {
  margin-left: 0.2rem;
  flex-shrink: 0;
  transition: all 0.4s;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  border: 1px solid #222D82;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #222D82;
}
@media (max-width: 767px) {
  .sussi .box .item .gr {
    width: 1rem;
    height: 1rem;
  }
}
.sussi .box .item .gr i {
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.2rem;
  height: auto;
  color: var(--color);
}
@media (max-width: 1260px) {
  .sussi .box .item .gr i {
    width: 0.22rem;
  }
}
@media (max-width: 767px) {
  .sussi .box .item .gr i {
    width: 0.26rem;
  }
}
.sussi .box .item .gr i svg,
.sussi .box .item .gr i img {
  width: 100%;
  height: auto;
}
.sussi .box .item .gr i svg path,
.sussi .box .item .gr i img path {
  fill: var(--color);
}
.sussi .box .item .gr p {
  margin-top: 3px;
}
@media (max-width: 767px) {
  .sussi .box .item .gr p {
    font-size: 10px;
  }
}
/* 可持续发展-详情 */
.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.crumbs p {
  display: flex;
  align-items: center;
}
.crumbs p > a,
.crumbs p > span {
  margin-right: 5px;
  color: #666;
}
@media (max-width: 767px) {
  .crumbs p > a,
  .crumbs p > span {
    font-size: 14px;
    margin-bottom: 0.05rem;
  }
}
.crumbs p:last-child a {
  color: #333;
}
.crumbs p:last-child svg,
.crumbs p:last-child i,
.crumbs p:last-child img {
  display: none;
}
.crumbs p svg,
.crumbs p img {
  color: #666;
  width: 5px;
  height: auto;
  margin-right: 5px;
}
.crumbs p svg path,
.crumbs p img path {
  fill: #666;
}
.crumbs p i {
  font-style: initial;
  opacity: 0.7;
  color: #fff;
  margin-right: 5px;
}
.sinfo {
  padding: 0.47rem 0 0.76rem;
  background: #F8F8F9;
}
.sinfo .box {
  margin-top: 0.67rem;
}
.sinfo .box h1 {
  font-weight: bold;
}
.sinfo .box .public-content {
  margin-top: 0.45rem;
}
.sinfo .box .public-content h3,
.sinfo .box .public-content h4,
.sinfo .box .public-content h5 {
  font-weight: bold;
}
.sinfo .box .public-content p,
.sinfo .box .public-content span {
  color: #777;
}
.sinfo .box .sinfo_b {
  display: flex;
  justify-content: space-between;
  margin-top: 0.62rem;
}
.sinfo .box .sinfo_b .gl {
  display: flex;
  justify-content: space-between;
}
.sinfo .box .sinfo_b .gl .c-link {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .sinfo .box .sinfo_b .gl .c-link {
    justify-content: flex-start;
  }
}
.sinfo .box .sinfo_b .gl .c-ico {
  display: flex;
  align-items: center;
}
.sinfo .box .sinfo_b .gl .c-ico a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 3px;
  color: #fff;
  background: #EFF2F6;
  transition: 0.4s;
}
@media (max-width: 767px) {
  .sinfo .box .sinfo_b .gl .c-ico a {
    width: 30px;
    height: 30px;
  }
}
.sinfo .box .sinfo_b .gl .c-ico a img,
.sinfo .box .sinfo_b .gl .c-ico a svg {
  transition: 0.4s;
  color: #999999;
  width: 46%;
  height: 46%;
}
.sinfo .box .sinfo_b .gl .c-ico a:hover {
  background: var(--color);
}
.sinfo .box .sinfo_b .gl .c-ico a:hover img,
.sinfo .box .sinfo_b .gl .c-ico a:hover svg {
  color: #fff;
}
.sinfo .box .sinfo_b .gr .g_fh {
  display: flex;
  border-radius: 100px;
  align-items: center;
  height: 0.52rem;
  padding: 0 0.2rem;
  background: var(--color);
  color: #fff;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .sinfo .box .sinfo_b .gr .g_fh {
    height: 0.8rem;
    padding: 0 0.3rem;
  }
}
.sinfo .box .sinfo_b .gr .g_fh:hover {
  opacity: 0.8;
}
.sinfo .box .sinfo_b .gr .g_fh p {
  margin-right: 0.15rem;
}
.sinfo .box .sinfo_b .gr .g_fh i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: auto;
  color: #fff;
}
@media (max-width: 1260px) {
  .sinfo .box .sinfo_b .gr .g_fh i {
    width: 11px;
  }
}
@media (max-width: 767px) {
  .sinfo .box .sinfo_b .gr .g_fh i {
    width: 10px;
  }
}
.sinfo .box .sinfo_b .gr .g_fh i svg,
.sinfo .box .sinfo_b .gr .g_fh i img {
  width: 100%;
  height: auto;
}
.sinfo .box .sinfo_b .gr .g_fh i svg path,
.sinfo .box .sinfo_b .gr .g_fh i img path {
  fill: var(--color);
}
.sinfotw {
  padding: 0.62rem 0 0.74rem;
}
.sinfotw .box {
  margin-top: 0.38rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 31px;
}
@media (max-width: 767px) {
  .sinfotw .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.sinfotw .box .item {
  position: relative;
}
.sinfotw .box .item .public-img:before {
  padding-top: 38.4%;
}
@media (max-width: 991px) {
  .sinfotw .box .item .public-img:before {
    padding-top: 60%;
  }
}
.sinfotw .box .item .txt {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  color: #fff;
  padding: 0.28rem 0.51rem;
}
.sinfotw .box .item .txt h3 {
  font-weight: bold;
}
.sinfotw .box .item .txt p {
  margin-top: 0.05rem;
}
/* 加入我们 */
.joinon {
  margin: 0.88rem 0 0.91rem;
}
.joinon .box {
  margin-top: 0.45rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .joinon .box {
    flex-direction: column;
  }
}
.joinon .box .gl {
  width: 34.765625%;
  position: relative;
}
@media (max-width: 991px) {
  .joinon .box .gl {
    width: 100%;
    margin-bottom: 0.2rem;
    height: 6rem;
  }
}
.joinon .box .gl .img {
  width: 100%;
  height: 100%;
}
.joinon .box .gl .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.joinon .box .gl .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0.43rem 0.4rem;
  z-index: 10;
  color: #fff;
}
.joinon .box .gl .txt p {
  opacity: 0.8;
  line-height: 1.62;
  margin-top: 0.13rem;
  padding-right: 0.56rem;
}
@media (max-width: 767px) {
  .joinon .box .gl .txt p {
    padding: 0;
    font-size: 12px;
  }
}
.joinon .box .gr {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 63.90625%;
}
@media (max-width: 991px) {
  .joinon .box .gr {
    width: 100%;
  }
}
.joinon .box .gr .gt {
  background: #0084FF;
  padding: 0.3rem;
  height: calc(282/688*100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .joinon .box .gr .gt {
    margin-bottom: 0.2rem;
  }
}
@media (max-width: 767px) {
  .joinon .box .gr .gt {
    justify-content: flex-start;
  }
}
.joinon .box .gr .gt .gtbox {
  display: inline-flex;
}
.joinon .box .gr .gt .gtbox .g_svg {
  margin-right: 0.35rem;
  width: 0.54rem;
  height: auto;
}
.joinon .box .gr .gt .gtbox .g_svg svg,
.joinon .box .gr .gt .gtbox .g_svg img {
  width: 100%;
  height: auto;
}
.joinon .box .gr .gt .gtbox .txt .txt_box {
  margin-top: 5px;
  display: flex;
  align-items: center;
}
.joinon .box .gr .gt .gtbox .txt .txt_box .g_li {
  display: flex;
  align-items: center;
}
.joinon .box .gr .gt .gtbox .txt .txt_box .g_li:last-child img,
.joinon .box .gr .gt .gtbox .txt .txt_box .g_li:last-child svg {
  display: none;
}
.joinon .box .gr .gt .gtbox .txt .txt_box .g_li p {
  margin-right: 0.1rem;
}
@media (max-width: 767px) {
  .joinon .box .gr .gt .gtbox .txt .txt_box .g_li p {
    font-size: 12px;
  }
}
.joinon .box .gr .gt .gtbox .txt .txt_box .g_li img,
.joinon .box .gr .gt .gtbox .txt .txt_box .g_li svg {
  margin-right: 0.1rem;
  width: 12px;
  height: auto;
}
@media (max-width: 767px) {
  .joinon .box .gr .gt .gtbox .txt .txt_box .g_li img,
  .joinon .box .gr .gt .gtbox .txt .txt_box .g_li svg {
    width: 8px;
  }
}
.joinon .box .gr .gb {
  height: calc(388/688*100%);
  display: flex;
  justify-content: space-between;
}
.joinon .box .gr .gb .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(50% - 0.09rem);
  padding: 0.73rem 0.37rem 0.2rem;
}
@media (max-width: 991px) {
  .joinon .box .gr .gb .item {
    padding: 0.4rem;
  }
}
@media (max-width: 767px) {
  .joinon .box .gr .gb .item {
    padding: 0.3rem;
  }
}
.joinon .box .gr .gb .item .g_svg {
  margin-bottom: 0.54rem;
  width: 0.67rem;
  height: 0.67rem;
}
@media (max-width: 767px) {
  .joinon .box .gr .gb .item .g_svg {
    margin-bottom: 0.3rem;
  }
}
.joinon .box .gr .gb .item .g_svg svg,
.joinon .box .gr .gb .item .g_svg img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .joinon .box .gr .gb .item .txt h3 {
    font-size: 14px;
  }
}
.joinon .box .gr .gb .item .txt .g_p {
  text-align: left;
  margin-top: 0.14rem;
}
@media (max-width: 767px) {
  .joinon .box .gr .gb .item .txt .g_p {
    font-size: 12px;
  }
}
.joinon .box .gr .gb .item1 {
  background: #CCE6FF;
}
.joinon .box .gr .gb .item1 .txt h3 {
  color: var(--color);
}
.joinon .box .gr .gb .item1 .txt .g_p {
  color: var(--color);
  opacity: 0.7;
}
.joinon .box .gr .gb .item2 {
  color: #fff;
  background: #222D82;
}
.jointw {
  padding: 1.02rem 0 1.34rem;
  background: rgba(239, 242, 246, 0.8);
}
.jointw .box {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .jointw .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.jointw .box .item {
  border-left: 0.06rem solid #0084FF;
  background: #FFF;
  box-shadow: 0 1px 15.8px 0 rgba(167, 167, 167, 0.25);
  padding: 0.43rem 0.52rem 0.47rem 0.45rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .jointw .box .item {
    align-items: center;
    justify-content: flex-end;
    flex-direction: column-reverse;
  }
}
@media (max-width: 991px) {
  .jointw .box .item .gl {
    width: 100%;
  }
}
.jointw .box .item .gl .g_h3 {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .jointw .box .item .gl .g_h3 {
    justify-content: center;
  }
}
.jointw .box .item .gl .g_h3 .gpng {
  margin-right: 0.39rem;
  flex-shrink: 0;
  width: 0.54rem;
}
@media (max-width: 767px) {
  .jointw .box .item .gl .g_h3 .gpng {
    width: 0.7rem;
  }
}
.jointw .box .item .gl .g_h3 .gpng img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.jointw .box .item .gl .g_h3 h3 {
  color: #222D82;
}
.jointw .box .item .gl .g_p {
  padding-right: 0.7rem;
  margin-top: 0.37rem;
  line-height: 1.75;
  color: #999;
}
@media (max-width: 991px) {
  .jointw .box .item .gl .g_p {
    padding: 0;
    text-align: center;
  }
}
.jointw .box .item .gr {
  position: relative;
  flex-shrink: 0;
  margin-left: 0.2rem;
  width: 34.89499192%;
}
@media (max-width: 991px) {
  .jointw .box .item .gr {
    width: 60%;
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 767px) {
  .jointw .box .item .gr {
    width: 50%;
  }
}
.jointw .box .item .gr .public-img {
  z-index: 10;
}
.jointw .box .item .gr i {
  position: absolute;
  display: block;
  width: 96%;
  height: 96%;
  background: #0054A1;
  border-radius: 50%;
  z-index: 1;
  right: -1px;
  bottom: -1px;
}
.jointh {
  margin: 1.28rem 0 1.6rem;
}
.jointh .box {
  margin-top: 0.54rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .jointh .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.jointh .box .item .public-img:before {
  padding-top: 57.6%;
}
.jointh .box .item .txt {
  margin-top: 0.27rem;
}
.jointh .box .item .txt h3 {
  color: #222;
}
.jointh .box .item .txt span {
  display: block;
  margin-top: 3px;
}
.jointh .box .item .txt p {
  padding-right: 0.4rem;
  margin-top: 0.07rem;
  color: #888;
  line-height: 1.62;
}
.joinfo {
  margin: 1.6rem 0 0.8rem;
}
.joinfo .box {
  margin-top: 0.7rem;
}
.joinfo .box .g_li {
  display: flex;
}
.joinfo .box .g_li:nth-child(2n) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .joinfo .box .g_li {
    flex-direction: column !important;
  }
}
.joinfo .box .g_li .item {
  position: relative;
}
@media (max-width: 767px) {
  .joinfo .box .g_li .item {
    width: 100% !important;
  }
}
.joinfo .box .g_li .item:nth-child(1) {
  width: 66.66666667%;
}
.joinfo .box .g_li .item:nth-child(2) {
  width: 33.33333333%;
}
.joinfo .box .g_li .item:nth-child(2) .public-img:before {
  padding-top: 45%;
}
.joinfo .box .g_li .item .public-img:before {
  padding-top: 22.5%;
}
@media (max-width: 767px) {
  .joinfo .box .g_li .item .public-img:before {
    padding-top: 40% !important;
  }
}
.joinfo .box .g_li .item .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0.6rem;
  color: #fff;
}
.joinfo .box .g_li .item .txt h3 {
  font-weight: bold;
}
.joinfi {
  margin: 0.8rem 0;
}
.joinfi .container {
  position: relative;
}
.joinfi .container .imgbj {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.joinfi .container .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.joinfi .box {
  position: relative;
  z-index: 10;
  padding: 0.9rem 0.67rem 1.25rem;
}
@media (max-width: 767px) {
  .joinfi .box {
    padding: 0.4rem;
  }
}
.joinfi .box h3 {
  line-height: 1.25;
  font-weight: bold;
  color: var(--color);
}
@media (max-width: 767px) {
  .joinfi .box h3 {
    font-size: 18px;
  }
}
.joinfi .box .public-btn {
  margin-top: 0.47rem;
  background: #fff;
}
.joinfi .box .public-btn:hover {
  background: var(--color);
}
/* 场景聚合页 */
.sceon {
  margin: 0.68rem 0 1.44rem;
}
@media (max-width: 767px) {
  .sceon {
    margin: 0.68rem 0 0.9rem;
  }
}
.sceon form .search_box {
  filter: drop-shadow(0 4px 18px rgba(167, 167, 167, 0.25));
  border-radius: 6px;
  background: #FFF;
  width: 100%;
  height: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sceon form .search_box {
    height: 0.8rem;
  }
}
.sceon form .search_box input {
  padding: 0 0.3rem;
  width: 100%;
  color: var(--color);
}
.sceon form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.3rem;
  width: 20px;
  height: auto;
}
@media (max-width: 767px) {
  .sceon form .search_box button {
    width: 0.3rem;
  }
}
.sceon form .search_box button svg {
  width: 100%;
  height: auto;
}
.sceon form .search_box button svg path {
  fill: #9a9a9a;
}
.sceon .sceon_nr {
  margin-top: 0.2rem;
}
.sceon .sceon_nr .sceon_nav a {
  cursor: pointer;
  margin-top: -1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E4E4E4;
  border-top: 1px solid #E4E4E4;
  padding: 0.2rem 0.24rem;
}
.sceon .sceon_nr .sceon_nav a:hover p {
  color: var(--color);
}
.sceon .sceon_nr .sceon_nav a:hover p::after {
  background: var(--color);
}
.sceon .sceon_nr .sceon_nav a:hover i {
  transform: translateX(5px);
}
.sceon .sceon_nr .sceon_nav a.on {
  background: var(--color);
}
.sceon .sceon_nr .sceon_nav a.on p {
  color: #fff;
}
.sceon .sceon_nr .sceon_nav a.on p::after {
  background: #fff;
}
.sceon .sceon_nr .sceon_nav a.on i {
  color: #fff;
}
.sceon .sceon_nr .sceon_nav a p {
  transition: all 0.4s;
  position: relative;
  padding-left: 17px;
}
@media (max-width: 767px) {
  .sceon .sceon_nr .sceon_nav a p {
    padding: 0;
    font-size: 12px;
  }
}
.sceon .sceon_nr .sceon_nav a p::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #aaa;
  left: 0;
  top: 50%;
  margin-top: -2px;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .sceon .sceon_nr .sceon_nav a p::after {
    display: none;
  }
}
.sceon .sceon_nr .sceon_nav a i {
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.18rem;
  height: auto;
  color: #777;
}
@media (max-width: 1260px) {
  .sceon .sceon_nr .sceon_nav a i {
    width: 0.22rem;
  }
}
@media (max-width: 767px) {
  .sceon .sceon_nr .sceon_nav a i {
    width: 0.2rem;
  }
}
.sceon .sceon_nr .sceon_nav a i svg,
.sceon .sceon_nr .sceon_nav a i img {
  width: 100%;
  height: auto;
}
.sceon .sceon_nr .sceon_nav a i svg path,
.sceon .sceon_nr .sceon_nav a i img path {
  fill: var(--color);
}
.sceon .box1 {
  margin-top: 0.68rem;
}
.sceon .box1 .pub_title {
  text-align: left;
}
.sceon .box1 .sceon_con .sceon_nr1 {
  display: flex;
  justify-content: space-between;
}
.sceon .box1 .sceon_con .sceon_nr1 .gl {
  width: 23.4375%;
}
@media (max-width: 767px) {
  .sceon .box1 .sceon_con .sceon_nr1 .gl {
    width: 31.25%;
  }
}
.sceon .box1 .sceon_con .sceon_nr1 .gr {
  width: 74.21875%;
}
@media (max-width: 767px) {
  .sceon .box1 .sceon_con .sceon_nr1 .gr {
    width: 66.40625%;
  }
}
.sceon .box1 .sceon_con .sceon_nr1 .gr .g_li {
  position: absolute;
  top: 0;
  opacity: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 991px) {
  .sceon .box1 .sceon_con .sceon_nr1 .gr .g_li {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .sceon .box1 .sceon_con .sceon_nr1 .gr .g_li {
    gap: 5px;
  }
}
.sceon .box1 .sceon_con .sceon_nr1 .gr .g_li.on {
  position: relative;
  opacity: 1;
}
.sceon .box1 .sceon_con .sceon_nr1 .gr .g_li .item {
  transition: all 0s;
  box-shadow: 0 1px 15.8px rgba(167, 167, 167, 0.25);
  padding: 0.32rem 0.32rem 0.24rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .sceon .box1 .sceon_con .sceon_nr1 .gr .g_li .item {
    padding: 0.2rem;
  }
}
.sceon .box1 .sceon_con .sceon_nr1 .gr .g_li .item:hover {
  background: #0C9BE1;
}
.sceon .box1 .sceon_con .sceon_nr1 .gr .g_li .item:hover .public-img svg {
  color: #fff;
}
.sceon .box1 .sceon_con .sceon_nr1 .gr .g_li .item:hover .public-img .img1 {
  opacity: 0;
}
.sceon .box1 .sceon_con .sceon_nr1 .gr .g_li .item:hover .public-img .img2 {
  opacity: 1;
}
.sceon .box1 .sceon_con .sceon_nr1 .gr .g_li .item:hover .txt h3 {
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.sceon .box1 .sceon_con .sceon_nr1 .gr .g_li .item .public-img:before {
  padding-top: 73.29192547%;
}
.sceon .box1 .sceon_con .sceon_nr1 .gr .g_li .item .public-img svg {
  color: #000;
  transition: all 0.4s;
}
.sceon .box1 .sceon_con .sceon_nr1 .gr .g_li .item .public-img img {
  transition: all 0s;
}
.sceon .box1 .sceon_con .sceon_nr1 .gr .g_li .item .public-img .img2 {
  opacity: 0;
}
.sceon .box1 .sceon_con .sceon_nr1 .gr .g_li .item .txt {
  margin-top: 0.2rem;
  text-align: center;
}
.sceon .box1 .sceon_con .sceon_nr1 .gr .g_li .item .txt h3 {
  /* transition: all 0.4s; */
  padding: 0.14rem 0.1rem 0;
  border-top: 1px solid transparent;
}
.sceon .box2 {
  display: flex;
  justify-content: space-between;
  margin-top: 0.68rem;
}
@media (max-width: 767px) {
  .sceon .box2 {
    flex-direction: column;
  }
}
.sceon .box2 .pub_title {
  text-align: left;
}
.sceon .box2 .box2_li {
  width: 45.9375%;
}
@media (max-width: 767px) {
  .sceon .box2 .box2_li {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.sceon .box2 .sceon_con .sceon_nr2 {
  display: flex;
  justify-content: space-between;
}
.sceon .box2 .sceon_con .sceon_nr2 .sceon_nr2_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.sceon .box2 .sceon_con .sceon_nr2 .sceon_nr2_box .sceon_nav {
  width: 51.02040816%;
}
@media (max-width: 767px) {
  .sceon .box2 .sceon_con .sceon_nr2 .sceon_nr2_box .sceon_nav {
    width: 31.25%;
  }
}
.sceon .box2 .sceon_con .sceon_nr2 .sceon_nr2_box .sceon_nr2_r {
  width: 41.49659864%;
}
@media (max-width: 767px) {
  .sceon .box2 .sceon_con .sceon_nr2 .sceon_nr2_box .sceon_nr2_r {
    width: 66.40625%;
  }
}
.sceon .box2 .sceon_con .sceon_nr2 .sceon_nr2_box .sceon_nr2_r .g_li {
  box-shadow: 0 1px 15.8px rgba(167, 167, 167, 0.25);
  display: flex;
  flex-direction: column;
  padding: 0.16rem 0.36rem 0.4rem;
  position: absolute;
  opacity: 0;
  top: 0;
}
.sceon .box2 .sceon_con .sceon_nr2 .sceon_nr2_box .sceon_nr2_r .g_li.on {
  position: relative;
  opacity: 1;
}
.sceon .box2 .sceon_con .sceon_nr2 .sceon_nr2_box .sceon_nr2_r .g_li a {
  transition: all 0.4s;
  line-height: 2.125;
  color: #A6A6A6;
}
.sceon .box2 .sceon_con .sceon_nr2 .sceon_nr2_box .sceon_nr2_r .g_li a:hover {
  color: var(--color);
}
.g_tac {
  text-align: center;
}
.scetw {
  position: relative;
}
.scetw .imgbj {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* &::after{
			content: '';
			position: absolute;
			width: 100%;
			height: 100%;
			top: 0;
			left: 0;
			background: rgba(#0756BE,0.6);
		} */
}
.scetw .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scetw .container {
  position: relative;
  z-index: 10;
  padding: 1.06rem 0 1.52rem;
}
.scetw .container .pub_title h2 {
  color: #fff;
}
.scetw .container .pub_title p {
  color: #fff;
}
.scetw .container .box {
  margin-top: 0.72rem;
  margin-bottom: 0.59rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
@media (max-width: 991px) {
  .scetw .container .box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .scetw .container .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.scetw .container .box .item {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.69rem 0.5rem 0.9rem;
}
.scetw .container .box .item .g_png {
  width: 0.64rem;
  height: 0.64rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .scetw .container .box .item .g_png {
    width: 0.94rem;
    height: 0.94rem;
  }
}
.scetw .container .box .item .g_png img {
  width: 100%;
  object-fit: contain;
}
.scetw .container .box .item .txt {
  margin-top: 0.38rem;
}
.scetw .container .box .item .txt .g_h3 span {
  display: block;
  color: #999;
}
.scetw .container .box .item .txt .g_p {
  margin-top: 0.22rem;
  color: #666;
}
.sceth {
  background: #F8F8F9;
  padding: 1.09rem 0 1.27rem;
}
.sceth .box {
  margin-top: 0.58rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .sceth .box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .sceth .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.sceth .box .item {
  background: #FFF;
  box-shadow: 0 4px 0.18rem 2px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .sceth .box .item {
    box-shadow: 0 4px 0.1rem 2px rgba(0, 0, 0, 0.08);
  }
}
.sceth .box .item:hover .public-img img {
  transform: scale(1.05);
}
.sceth .box .item:hover .txt h3 {
  color: var(--color) !important;
}
.sceth .box .item .public-img:before {
  padding-top: 55.94059406%;
}
.sceth .box .item .txt {
  padding: 0.25rem 0.37rem 0.58rem;
}
.sceth .box .item .txt span {
  display: block;
}
.sceth .box .item .txt h3 {
  transition: all 0.4s;
  margin-top: 0.13rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.27272727;
  height: 2.54545455em;
}
.sceth .box .item .txt p {
  margin-top: 0.23rem;
  color: #777;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.scefo {
  padding: 0.86rem 0 1.03rem;
}
.scefo .g_tit {
  display: flex;
  justify-content: space-between;
}
.scefo .g_tit .g_qie {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0.2rem;
}
.scefo .g_tit .g_qie .pub_nav {
  margin-left: 0.12rem;
}
.scefo .box {
  margin-left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  margin-top: 0.24rem;
}
@media (max-width: 767px) {
  .scefo .box {
    margin-left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
  }
}
.scefo .box .swiper {
  padding: 20px;
}
@media (max-width: 767px) {
  .scefo .box .swiper {
    padding: 10px;
  }
}
.scefo .box .swiper .scefo_con {
  display: flex;
}
@media (max-width: 767px) {
  .scefo .box .swiper .scefo_con {
    flex-direction: column;
  }
}
.scefo .box .swiper .scefo_con .public-img {
  width: 40.15625%;
}
@media (max-width: 767px) {
  .scefo .box .swiper .scefo_con .public-img {
    width: 100%;
  }
}
.scefo .box .swiper .scefo_con .public-img:before {
  padding-top: 56.42023346%;
}
.scefo .box .swiper .scefo_con .txt {
  background: #FFF;
  box-shadow: 0 4px 18px 2px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.2rem 1.09rem 0.2rem 0.85rem;
  width: 59.84375%;
}
@media (max-width: 767px) {
  .scefo .box .swiper .scefo_con .txt {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    padding: 0.3rem;
  }
}
.scefo .box .swiper .scefo_con .txt h3 {
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.scefo .box .swiper .scefo_con .txt p {
  margin-top: 0.1rem;
  color: #777;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.scefo .box .swiper .scefo_con .txt span {
  display: block;
  margin-top: 0.35rem;
  color: #777;
}
.scefo .box .swip2_pag {
  position: initial;
  margin-top: 0.2rem;
}
.scefo .box .swip2_pag span {
  margin: 0 6px;
  opacity: 0.3;
  background: #222D82;
}
.scefo .box .swip2_pag .swiper-pagination-bullet-active {
  opacity: 1;
}
/* 场景页 */
.sceinfoon {
  background: #F8F8F9;
  padding: 0.28rem 0 0.87rem;
}
.sceinfoon .box {
  margin-top: 0.49rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .sceinfoon .box {
    flex-direction: column;
  }
}
.sceinfoon .box .gl {
  width: 46.875%;
}
@media (max-width: 767px) {
  .sceinfoon .box .gl {
    width: 100%;
  }
}
.sceinfoon .box .gl .public-img:before {
  padding-top: 66.66666667%;
}
.sceinfoon .box .gr {
  width: 45.625%;
}
@media (max-width: 767px) {
  .sceinfoon .box .gr {
    width: 100%;
    margin-top: 0.4rem;
  }
}
.sceinfoon .box .gr h1 {
  font-weight: bold;
}
.sceinfoon .box .gr .g_p {
  margin-top: 0.2rem;
  color: #888;
}
.sceinfoon .box .gr .g_p p {
  line-height: 1.66666667;
}
.sceinfoon .box .gr .g_num {
  display: flex;
  margin-top: 0.33rem;
}
.sceinfoon .box .gr .g_num .item {
  margin-right: 0.67rem;
}
.sceinfoon .box .gr .g_num .item .item_t {
  align-items: flex-start;
  display: flex;
}
.sceinfoon .box .gr .g_num .item .item_t p {
  line-height: 1;
  font-weight: bold;
}
.sceinfoon .box .gr .g_num .item .item_t span {
  margin-left: 0.07rem;
  font-weight: bold;
  line-height: 1;
}
.sceinfoon .box .gr .g_num .item .item_b {
  margin-top: 2px;
}
.sceinfoon .box .gr .public-btn {
  margin-top: 0.3rem;
}
.sceinfotw {
  margin: 1.09rem 0 0.98rem;
}
.sceinfotw .box {
  margin-top: 0.23rem;
}
.sceinfotw .box ul li {
  margin-bottom: 6px;
}
.sceinfotw .box ul li:first-child .g_xia {
  display: block;
}
.sceinfotw .box ul li.on .g_top .g_gb {
  background: var(--color);
  transform: rotate(-270deg);
}
.sceinfotw .box ul li.on .g_top .g_gb svg {
  color: #fff;
}
.sceinfotw .box ul li.on .g_xia {
  pointer-events: auto;
}
.sceinfotw .box ul li.on .g_xia .g_xia_lb .gtit h3 {
  color: var(--color) !important;
}
.sceinfotw .box ul li .g_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 0.57rem 0 0.18rem;
  position: relative;
  cursor: pointer;
  background: #F8F8F9;
}
@media (max-width: 767px) {
  .sceinfotw .box ul li .g_top {
    height: 60px;
    padding: 0 0.2rem 0 0.18rem;
  }
}
.sceinfotw .box ul li .g_top .g_top_l {
  display: flex;
  align-items: center;
  width: 80%;
}
.sceinfotw .box ul li .g_top .g_top_l .lxh {
  margin-right: 0.32rem;
}
.sceinfotw .box ul li .g_top .g_top_l .lxh span {
  display: block;
  line-height: 1.3;
  color: rgba(34, 45, 130, 0.1);
}
.sceinfotw .box ul li .g_top .g_top_l .gtit {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .sceinfotw .box ul li .g_top .g_top_l .gtit {
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
  }
}
.sceinfotw .box ul li .g_top .g_top_l .gtit h3 {
  margin-right: 0.3rem;
}
.sceinfotw .box ul li .g_top .g_top_l .gtit p {
  color: #999;
}
.sceinfotw .box ul li .g_top .g_gb {
  position: relative;
  transition: 0.4s all;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.2rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  border: 1px solid var(--color);
  z-index: 10;
  flex-shrink: 0;
  transform: rotate(-90deg);
}
@media (max-width: 1580px) {
  .sceinfotw .box ul li .g_top .g_gb {
    width: 0.46rem;
    height: 0.46rem;
  }
}
.sceinfotw .box ul li .g_top .g_gb svg {
  width: 19.44444444%;
  height: auto;
  color: var(--color);
}
.sceinfotw .box ul li .g_xia {
  display: none;
  filter: drop-shadow(0 1px 15.8px rgba(167, 167, 167, 0.25));
  margin-top: -80px;
  z-index: 10;
  pointer-events: none;
  background: #fff;
  padding: 0.39rem 1.59rem 0.45rem 0.18rem;
}
@media (max-width: 767px) {
  .sceinfotw .box ul li .g_xia {
    margin-top: -60px;
    padding: 0.39rem 0.3rem 0.5rem;
  }
}
.sceinfotw .box ul li .g_xia .g_xia_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sceinfotw .box ul li .g_xia .g_xia_box {
    flex-direction: column;
  }
}
.sceinfotw .box ul li .g_xia .g_xia_box .gl {
  width: 62.55666364%;
  display: flex;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .sceinfotw .box ul li .g_xia .g_xia_box .gl {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    padding-right: 1rem;
    flex-direction: column;
    padding-right: 0.5rem;
  }
}
.sceinfotw .box ul li .g_xia .g_xia_box .gl .lxh {
  margin-right: 0.32rem;
}
.sceinfotw .box ul li .g_xia .g_xia_box .gl .lxh span {
  display: block;
  line-height: 1.1;
  color: rgba(34, 45, 130, 0.1);
}
@media (max-width: 767px) {
  .sceinfotw .box ul li .g_xia .g_xia_box .gl .g_xia_lb {
    margin-top: 0.3rem;
  }
}
.sceinfotw .box ul li .g_xia .g_xia_box .gl .g_xia_lb .gtit h3 {
  line-height: 1.2;
}
.sceinfotw .box ul li .g_xia .g_xia_box .gl .g_xia_lb .gtit p {
  margin-top: 0.22rem;
  color: #999;
}
.sceinfotw .box ul li .g_xia .g_xia_box .gl .g_xia_lb .gtit p span {
  color: var(--color);
}
.sceinfotw .box ul li .g_xia .g_xia_box .gl .g_xia_lb .public-btn {
  margin-top: 0.3rem;
}
.sceinfotw .box ul li .g_xia .g_xia_box .gr {
  width: 30.00906618%;
}
@media (max-width: 767px) {
  .sceinfotw .box ul li .g_xia .g_xia_box .gr {
    margin-top: 0.4rem;
    width: 50%;
  }
}
.sceinfotw .box ul li .g_xia .g_xia_box .gr .public-img:before {
  padding-top: 72.80966767%;
}
.sceinfotw .box ul li .g_xia .g_xia_box .gr .public-img img {
  object-fit: contain;
}
.sceinfoth {
  margin: 0.98rem 0 1rem;
}
.sceinfoth .box {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.22rem 0.18rem;
}
@media (max-width: 991px) {
  .sceinfoth .box {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .sceinfoth .box {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sceinfoth .box .item {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 0.21rem 0.1rem 0.1rem; */
  border-radius: 0.1rem;
  border: 1px solid #fff;
  background: linear-gradient(to bottom, #EEF5FB, #fff);
  box-shadow: 0 0.1rem 0.1rem rgba(34, 45, 130, 0.05);
}
.sceinfoth .box .item .public-img {
  width: 100%;
  border-radius: 0.1rem;
}
.sceinfoth .box .item .public-img:before {
  padding-top: 48.16753927%;
}
.sceinfoth .box .item .public-img img {
  object-fit: contain;
  mix-blend-mode: darken;
}
.sceinfofo {
  margin: 1rem 0 0.96rem;
}
.sceinfofo .box {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
@media (max-width: 991px) {
  .sceinfofo .box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .sceinfofo .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.sceinfofo .box .item:hover .public-img img {
  transform: scale(1.05);
}
.sceinfofo .box .item:hover .txt h3 {
  color: var(--color) !important;
}
.sceinfofo .box .item .public-img:before {
  padding-top: 56.43564356%;
}
.sceinfofo .box .item .txt {
  background: #F8F8F9;
  padding: 0.39rem 0.39rem 0.76rem;
}
@media (max-width: 767px) {
  .sceinfofo .box .item .txt {
    padding: 0.3rem;
  }
}
.sceinfofo .box .item .txt .txt_box img {
  mix-blend-mode: darken;
  height: 0.39rem;
  width: auto;
  margin-left: -0.13rem;
}
@media (max-width: 767px) {
  .sceinfofo .box .item .txt .txt_box img {
    height: 0.54rem;
  }
}
.sceinfofo .box .item .txt .txt_box h3 {
  transition: all 0.4s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.21rem;
  line-height: 1.25;
}
.sceinfofo .box .item .txt .txt_box span {
  display: block;
  margin-top: 0.2rem;
  color: #222D82;
}
.sceinfofo .box .item .txt .g_a {
  margin-top: 0.42rem;
}
/* 工序页 */
.sce_banner .sub_banner_txt .container .ban_l {
  width: 100%;
  text-align: center;
}
.sce_banner .sub_banner_txt .container .ban_l .sub_banner_p {
  margin-top: 0.27rem;
}
.sinfo2on {
  margin: 0.57rem 0 1.19rem;
}
.sinfo2on form .search_box {
  filter: drop-shadow(0 4px 18px rgba(167, 167, 167, 0.25));
  border-radius: 6px;
  background: #FFF;
  width: 100%;
  height: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sinfo2on form .search_box {
    height: 0.8rem;
  }
}
.sinfo2on form .search_box input {
  padding: 0 0.3rem;
  width: 100%;
  color: var(--color);
}
.sinfo2on form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.3rem;
  width: 20px;
  height: auto;
}
@media (max-width: 767px) {
  .sinfo2on form .search_box button {
    width: 0.3rem;
  }
}
.sinfo2on form .search_box button svg {
  width: 100%;
  height: auto;
}
.sinfo2on form .search_box button svg path {
  fill: #9a9a9a;
}
.sinfo2on .box {
  margin-top: 0.45rem;
}
.sinfo2on .box table {
  width: 100%;
}
.sinfo2on .box table tr {
  display: flex;
}
.sinfo2on .box table tr:nth-child(2n) {
  background: rgba(76, 129, 218, 0.06);
}
.sinfo2on .box table tr th {
  padding: 0.13rem;
  color: #fff;
  width: 33.333%;
}
.sinfo2on .box table tr th:nth-child(1) {
  background: #02ADE1;
}
.sinfo2on .box table tr th:nth-child(2) {
  background: #0C9BE1;
  justify-content: flex-start;
  padding-left: 1.19rem;
  text-align: left;
}
@media (max-width: 767px) {
  .sinfo2on .box table tr th:nth-child(2) {
    padding: 0.13rem;
    text-align: center;
  }
}
.sinfo2on .box table tr th:nth-child(3) {
  background: #2A5B95;
}
.sinfo2on .box table tr td {
  padding: 0.29rem;
  width: 33.333%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .sinfo2on .box table tr td {
    font-size: 12px;
  }
}
.sinfo2on .box table tr td:nth-child(2) {
  box-shadow: 0 1px 15.8px rgba(167, 167, 167, 0.25);
  position: relative;
  z-index: 10;
  justify-content: flex-start;
  padding-left: 1.19rem;
}
@media (max-width: 767px) {
  .sinfo2on .box table tr td:nth-child(2) {
    padding: 0.2rem;
    text-align: center;
  }
}
.sinfo2on .box table tr td .img img {
  max-height: 1.04rem;
  object-fit: contain;
}
.sinfo2on .box table tr td .txt p {
  color: #000;
}
.sinfo2on .box table tr td .txt span {
  color: #999;
  display: block;
}
/* 案例详情页 */
.cinfoon {
  margin: 0.72rem 0 1.27rem;
}
.cinfoon .public-content {
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 1rem;
  line-height: 1.444;
  color: #000;
}
.cinfoon .public-content p {
  color: #888;
}
/* 场景聚合页 */
.newon .swiper .newon_box {
  position: relative;
}
.newon .swiper .newon_box .public-img:before {
  padding-top: 33.33333333%;
}
@media (max-width: 767px) {
  .newon .swiper .newon_box .public-img:before {
    padding-top: 140%;
  }
}
.newon .swiper .newon_box .txt {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.newon .swiper .newon_box .txt .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.newon .swiper .newon_box .txt .container .txt_box {
  width: 38%;
  color: #fff;
}
@media (max-width: 767px) {
  .newon .swiper .newon_box .txt .container .txt_box {
    width: 100%;
  }
}
.newon .swiper .newon_box .txt .container .txt_box p {
  margin-top: 0.13rem;
  line-height: 1.42;
}
.newon .swiper .newon_box .txt .container .public-btn {
  margin-top: 0.7rem;
}
.newon .swiper .swip2_pag {
  bottom: 0.52rem;
}
.newon .swiper .swip2_pag .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 0.06rem;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
@media (max-width: 767px) {
  .newon .swiper .swip2_pag .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
}
.newon .swiper .swip2_pag .swiper-pagination-bullet-active {
  background: var(--color);
}
.newtw {
  margin: 0.61rem 0 0.56rem;
}
.newtw .filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .newtw .filter {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) {
  .newtw .filter .gl {
    margin-bottom: 0.4rem;
  }
}
.newtw .filter .gl a {
  transition: all 0.4s;
  color: #777;
  position: relative;
  margin-right: 0.7rem;
}
@media (max-width: 1580px) {
  .newtw .filter .gl a {
    margin-right: 0.3rem;
  }
}
.newtw .filter .gl a:hover {
  color: #000;
}
.newtw .filter .gl a.on {
  font-weight: bold;
  color: #000;
}
.newtw .filter .gl a.on::after {
  opacity: 1;
}
.newtw .filter .gl a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.04rem;
  background: var(--color);
  opacity: 0;
  transition: all 0.4s;
  bottom: -0.12rem;
  left: 0;
}
.newtw .filter .gl a:last-child {
  margin-right: 0;
}
.newtw .filter .gr {
  flex-shrink: 0;
  margin-left: 0.1rem;
}
@media (max-width: 991px) {
  .newtw .filter .gr {
    margin: 0 ;
  }
}
.newtw .filter .gr form {
  display: flex;
}
.newtw .filter .gr form .layui-input:focus,
.newtw .filter .gr form .layui-textarea:focus {
  border-color: var(--color) !important;
}
.newtw .filter .gr form .layui-input-block {
  margin-left: 0;
}
.newtw .filter .gr form .layui-form-select dl {
  top: 100%;
  bottom: auto;
}
.newtw .filter .gr form .layui-form-select dl dd.layui-this {
  background: var(--color);
  color: #fff;
}
.newtw .filter .gr form .layui-form-select .layui-input {
  width: 2.2rem;
  height: 0.6rem;
  border: 1px solid #E5E5E5;
  color: #444;
  padding: 0 0.2rem;
}
@media (max-width: 767px) {
  .newtw .filter .gr form .layui-form-select .layui-input {
    height: 0.8rem;
    width: 2.5rem;
  }
}
.newtw .filter .gr form .layui-form-select .layui-edge {
  right: 0.24rem;
  background: url(../images/b4.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 7px;
  border: none;
  margin: 0;
  margin-top: -4px;
}
.newtw .filter .gr form .search_box {
  margin-left: 0.1rem;
  width: 3.6rem;
  height: 0.6rem;
  background: #fff;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .newtw .filter .gr form .search_box {
    height: 0.8rem;
  }
}
.newtw .filter .gr form .search_box input {
  padding: 0 0.2rem;
  width: 100%;
  color: #333;
}
.newtw .filter .gr form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.2rem;
  width: 0.2rem;
  height: auto;
}
@media (max-width: 767px) {
  .newtw .filter .gr form .search_box button {
    width: 0.3rem;
  }
}
.newtw .filter .gr form .search_box button svg {
  width: 100%;
  height: auto;
}
.newtw .filter .gr form .search_box button svg path {
  fill: #9a9a9a;
}
.news_box {
  margin-top: 0.63rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .news_box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .news_box {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.news_box .item {
  box-shadow: 0 1px 15.8px 0 rgba(167, 167, 167, 0.25);
  background: #fff;
}
.news_box .item .public-img:before {
  padding-top: 63.36633663%;
}
@media screen and (min-width: 768px) {
  .news_box .item:hover {
    transform: translateY(-4px);
    transition: ease all 0.3s;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  }
}
.news_box .item .txt {
  padding: 0.37rem 0.6rem 0.5rem 0.41rem;
}
.news_box .item .txt .g_tag {
  margin-left: -0.41rem;
  width: 1.47rem;
  height: 0.43rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222D82;
  position: relative;
}
@media (max-width: 767px) {
  .news_box .item .txt .g_tag {
    width: 2rem;
    height: 0.8rem;
  }
}
.news_box .item .txt .g_tag i {
  position: absolute;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color);
}
.news_box .item .txt .g_tag i svg,
.news_box .item .txt .g_tag i img {
  width: 100%;
  height: auto;
}
.news_box .item .txt .g_tag i svg path,
.news_box .item .txt .g_tag i img path {
  fill: var(--color);
}
.news_box .item .txt .g_tag p {
  font-style: italic;
  position: relative;
  z-index: 10;
  padding: 0 0 0.05rem;
}
.news_box .item .txt .txt_box {
  margin-top: 0.33rem;
}
.news_box .item .txt .txt_box h3 {
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.18;
}
.news_box .item .txt .txt_box p {
  margin-top: 0.2rem;
  color: #888;
  line-height: 1.36;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news_box .item1 {
  background: #EFF2F6;
}
.news_box .item2 {
  background: #0C9BE1;
}
.news_box .item2 .txt .g_tag p {
  color: #fff;
}
.news_box .item2 .txt .txt_box h3 {
  color: #fff;
}
.news_box .item2 .txt .txt_box p {
  color: rgba(255, 255, 255, 0.7);
}
.news_box .item3 {
  background: #222D82;
}
.news_box .item3 .txt .g_tag p {
  color: #fff;
}
.news_box .item3 .txt .txt_box h3 {
  color: #fff;
}
.news_box .item3 .txt .txt_box p {
  color: rgba(255, 255, 255, 0.7);
}
.news_box2 {
  margin-top: 0.63rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .news_box2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .news_box2 {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.news_box2 .item {
  box-shadow: 0 1px 15.8px 0 rgba(167, 167, 167, 0.25);
  background: #fff;
}
.news_box2 .item .public-img:before {
  padding-top: 56.43564356%;
}
@media screen and (min-width: 768px) {
  .news_box2 .item:hover {
    transform: translateY(-4px);
    transition: ease all 0.3s;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  }
}
.news_box2 .item .txt {
  padding: 0.39rem 0.39rem 0.2rem;
  background: #F8F8F9;
}
.news_box2 .item .txt .txt_box {
  margin-bottom: 0.37rem;
}
.news_box2 .item .txt .txt_box h3 {
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.18;
}
.news_box2 .item .txt .txt_box p {
  margin-top: 0.1rem;
  color: #888;
  line-height: 1.36;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news_box2 .item .txt .g_add {
  margin-top: 0.35rem;
}
.news_box2 .item .txt .g_add .g_add_li {
  padding-right: 0.4rem;
  margin-bottom: 0.28rem;
  display: flex;
}
.news_box2 .item .txt .g_add .g_add_li i {
  margin-top: 0.05rem;
  margin-right: 0.26rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.26rem;
  height: 0.26rem;
  color: #222D82;
}
@media (max-width: 1260px) {
  .news_box2 .item .txt .g_add .g_add_li i {
    width: 0.22rem;
  }
}
@media (max-width: 767px) {
  .news_box2 .item .txt .g_add .g_add_li i {
    width: 0.26rem;
  }
}
.news_box2 .item .txt .g_add .g_add_li i svg,
.news_box2 .item .txt .g_add .g_add_li i img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.news_box2 .item .txt .g_add .g_add_li i svg path,
.news_box2 .item .txt .g_add .g_add_li i img path {
  fill: #222D82;
}
.news_box2 .item .txt .g_add .g_add_li p {
  color: #222;
}
.page {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page a {
  height: 0.39rem;
  width: 0.39rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.04rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: none;
  border-radius: 0.06rem;
  border: 1px solid transparent;
  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: var(--color);
  border: 1px solid var(--color);
}
.page a:hover p {
  color: #fff;
}
.page a:hover svg path {
  fill: #fff;
}
.page a img,
.page a svg {
  width: 12px;
  height: auto;
}
@media (max-width: 1580px) {
  .page a img,
  .page a svg {
    width: 10px;
  }
}
@media (max-width: 767px) {
  .page a img,
  .page a svg {
    width: 8px;
  }
}
.page a .img2 {
  display: none;
}
.page a svg path {
  fill: #999999;
}
.page .active {
  background: var(--color);
  color: #fff !important;
  border: 1px solid var(--color);
}
.page .active p {
  color: #fff !important;
}
.page > p {
  color: #000;
  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;
  }
}
.g_pubtag {
  margin-top: 0.79rem;
}
.g_pubtag .g_pubtag_box {
  display: flex;
  flex-wrap: wrap;
}
.g_pubtag .g_pubtag_box a {
  margin: 0 0.06rem 0.06rem 0;
  padding: 0.11rem 0.14rem;
  border-radius: 0.06rem;
  border: 1px solid #E5E5E5;
  color: #777;
  line-height: 1.1;
  transition: all 0.4s;
}
.g_pubtag .g_pubtag_box a:hover {
  color: var(--color);
  border-color: var(--color);
}
/* 新闻标签页 */
.newstag {
  padding: 0.27rem 0 0.79rem;
}
.newstag .pub_title {
  margin-top: 0.25rem;
}
.newstag .g_pubtag {
  margin-top: 1.2rem;
}
.newstag .g_pubtag h3 {
  font-weight: bold;
  color: #000;
  margin-bottom: 0.2rem;
}
/* 新闻详情 */
.ninfo {
  margin: 0.3rem 0 0.82rem;
}
.ninfo .box {
  margin-top: 0.46rem;
}
.ninfo .box h1 {
  color: #000;
  text-align: center;
  font-weight: bold;
  line-height: 1.11;
}
.ninfo .box .g_time {
  color: #777;
  margin-top: 0.25rem;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .ninfo .box .g_time {
    flex-direction: column;
  }
}
.ninfo .box .g_time p {
  margin: 0 0.1rem;
}
.ninfo .box .public-content {
  line-height: 1.5;
  margin-top: 0.46rem;
  color: #777;
}
.ninfo .box .public-content p {
  margin-bottom: 0.1rem;
}
.ninfo .box .g_b {
  display: flex;
  justify-content: space-between;
  margin-top: 0.98rem;
}
@media (max-width: 767px) {
  .ninfo .box .g_b {
    flex-direction: column;
  }
}
.ninfo .box .g_b .g_pubtag {
  margin-top: 0;
}
@media (max-width: 767px) {
  .ninfo .box .g_b .g_pubtag {
    margin-bottom: 0.2rem;
  }
}
.ninfo .box .g_b .gr {
  display: flex;
  align-items: center;
}
.ninfo .box .g_b .gr .i1 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.24rem;
  height: auto;
  color: #60BE68;
}
@media (max-width: 1260px) {
  .ninfo .box .g_b .gr .i1 {
    width: 0.26rem;
  }
}
@media (max-width: 767px) {
  .ninfo .box .g_b .gr .i1 {
    width: 0.28rem;
  }
}
.ninfo .box .g_b .gr .i1 svg,
.ninfo .box .g_b .gr .i1 img {
  width: 100%;
  height: auto;
}
.ninfo .box .g_b .gr .i1 svg path,
.ninfo .box .g_b .gr .i1 img path {
  fill: var(--color);
}
.ninfo .box .g_b .gr p {
  border-bottom: 1px solid #999;
  margin: 0 0.12rem 0 0.16rem;
}
.ninfo .box .g_b .gr .i2 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.16rem;
  height: auto;
  color: #444;
}
@media (max-width: 1260px) {
  .ninfo .box .g_b .gr .i2 {
    width: 0.18rem;
  }
}
@media (max-width: 767px) {
  .ninfo .box .g_b .gr .i2 {
    width: 0.2rem;
  }
}
.ninfo .box .g_b .gr .i2 svg,
.ninfo .box .g_b .gr .i2 img {
  width: 100%;
  height: auto;
}
.ninfo .box .g_b .gr .i2 svg path,
.ninfo .box .g_b .gr .i2 img path {
  fill: var(--color);
}
.ninfo .box .g_fy {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  margin-top: 0.28rem;
  padding: 0.33rem 0 0.93rem;
}
@media (max-width: 767px) {
  .ninfo .box .g_fy {
    flex-direction: column;
  }
}
.ninfo .box .g_fy .gl {
  width: calc(350/1280*100%);
}
@media (max-width: 767px) {
  .ninfo .box .g_fy .gl {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.2rem;
  }
}
.ninfo .box .g_fy .gl a {
  display: flex;
  align-items: center;
  color: #666;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .ninfo .box .g_fy .gl a {
    width: 45%;
  }
}
.ninfo .box .g_fy .gl a:hover {
  color: #222;
}
.ninfo .box .g_fy .gl a span {
  flex-shrink: 0;
}
.ninfo .box .g_fy .gl a p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .ninfo .box .g_fy .gm {
    display: flex;
    justify-content: center;
    margin-bottom: 0.2rem;
  }
}
.ninfo .box .g_fy .gm .g_fh {
  display: flex;
  border-radius: 100px;
  align-items: center;
  height: 0.52rem;
  padding: 0 0.2rem;
  border: 1px solid #E3E3E3;
  color: #333;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .ninfo .box .g_fy .gm .g_fh {
    height: 0.8rem;
    padding: 0 0.3rem;
  }
}
.ninfo .box .g_fy .gm .g_fh:hover {
  background: var(--color);
  border-color: var(--color);
  color: #fff;
}
.ninfo .box .g_fy .gm .g_fh:hover i {
  color: #fff;
}
.ninfo .box .g_fy .gm .g_fh p {
  margin-right: 0.15rem;
}
.ninfo .box .g_fy .gm .g_fh i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: auto;
  color: #777;
}
@media (max-width: 1260px) {
  .ninfo .box .g_fy .gm .g_fh i {
    width: 11px;
  }
}
@media (max-width: 767px) {
  .ninfo .box .g_fy .gm .g_fh i {
    width: 10px;
  }
}
.ninfo .box .g_fy .gm .g_fh i svg,
.ninfo .box .g_fy .gm .g_fh i img {
  width: 100%;
  height: auto;
}
.ninfo .box .g_fy .gm .g_fh i svg path,
.ninfo .box .g_fy .gm .g_fh i img path {
  fill: var(--color);
}
@media (max-width: 767px) {
  .ninfo .box .g_fy .gr {
    display: flex;
    justify-content: center;
  }
}
.ninfo .box .g_fy .gr .ins_det_fxr_box {
  display: flex;
  align-items: center;
}
.ninfo .box .g_fy .gr .ins_det_fxr_box * {
  transition: all 0.6s;
}
.ninfo .box .g_fy .gr .ins_det_fxr_box > p {
  margin-right: 0.05 rem;
  display: inline-flex;
  align-items: center;
}
.ninfo .box .g_fy .gr .ins_det_fxr_box > p img {
  margin-right: 0.09rem;
}
.ninfo .box .g_fy .gr .ins_det_fxr_box .bshare-custom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ninfo .box .g_fy .gr .ins_det_fxr_box .bshare-custom a {
  width: 0.4rem;
  height: 0.4rem;
  padding: 0;
  background: #EFF2F6;
  border-radius: 50%;
  margin: 0 0 0 0.04rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ninfo .box .g_fy .gr .ins_det_fxr_box .bshare-custom a:hover {
  background: var(--color);
  opacity: 1;
}
.ninfo .box .g_fy .gr .ins_det_fxr_box .bshare-custom a:hover svg {
  color: #fff;
}
.ninfo .box .g_fy .gr .ins_det_fxr_box .bshare-custom a:hover svg path {
  fill: #fff;
}
.ninfo .box .g_fy .gr .ins_det_fxr_box .bshare-custom a::before {
  content: '' !important;
}
@media (max-width: 767px) {
  .ninfo .box .g_fy .gr .ins_det_fxr_box .bshare-custom a {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.ninfo .box .g_fy .gr .ins_det_fxr_box .bshare-custom a svg {
  color: #999;
  width: 45%;
  height: auto;
  pointer-events: none;
}
.ninfo .box .g_fy .gr .ins_det_fxr_box .bshare-custom a svg path {
  fill: #fff;
  opacity: 1;
}
.ninfo .box .g_fy .gr .social-share .icon-wechat .wechat-qrcode {
  top: 120% !important;
  left: 50% !important;
  transform: translateX(-50%);
}
.ninfo .box .g_fy .gr .social-share .icon-wechat .wechat-qrcode:after {
  display: none !important;
}
.ninfo .box .g_fy .gr .bsBox {
  box-sizing: initial;
}
.ninfotw {
  margin: 0.82rem 0 0.93rem;
}
.ninfotw .box {
  margin-top: 0.41rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
@media (max-width: 991px) {
  .ninfotw .box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .ninfotw .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.ninfotw .box .item {
  position: relative;
}
.ninfotw .box .item:hover .public-img img {
  transform: scale(1.05);
}
.ninfotw .box .item .public-img:before {
  padding-top: 59.40594059%;
}
.ninfotw .box .item .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  color: #fff;
  padding: 0.2rem 0.32rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ninfotw .box .item .txt .g_lab {
  margin-top: 0.05rem;
  display: flex;
  flex-wrap: wrap;
}
.ninfotw .box .item .txt .g_lab span {
  line-height: 1;
  margin-right: 0.08rem;
  padding-right: 0.08rem;
  border-right: 1px solid #fff;
}
.ninfotw .box .item .txt .g_lab span:last-child {
  border: none;
}
/* 搜索结果 */
.seaon {
  padding: 1.09rem 0 0.56rem;
}
@media (max-width: 767px) {
  .seaon {
    padding: 1rem 0;
  }
}
.seaon .pub_title p {
  margin-top: 0.16rem;
}
.seaon .box2 {
  margin-top: 0.94rem;
}
.seaon .box2 .filter2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .seaon .box2 .filter2 .gr {
    margin: 0 ;
  }
}
.seaon .box2 .filter2 .gr form {
  display: flex;
}
.seaon .box2 .filter2 .gr form .search_box {
  margin-left: 0.1rem;
  width: 7.2rem;
  height: 0.6rem;
  background: #fff;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .seaon .box2 .filter2 .gr form .search_box {
    height: 0.8rem;
    width: 100%;
    margin: 0;
  }
}
.seaon .box2 .filter2 .gr form .search_box input {
  padding: 0 0.2rem;
  width: 100%;
  color: #333;
}
.seaon .box2 .filter2 .gr form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.2rem;
  width: 0.2rem;
  height: auto;
}
@media (max-width: 767px) {
  .seaon .box2 .filter2 .gr form .search_box button {
    width: 0.3rem;
  }
}
.seaon .box2 .filter2 .gr form .search_box button svg {
  width: 100%;
  height: auto;
}
.seaon .box2 .filter2 .gr form .search_box button svg path {
  fill: #9a9a9a;
}
.seaon .box2 .filter2 .gr .txt {
  padding: 0.74rem 0 4rem;
  text-align: center;
  color: #000;
}
@media (max-width: 767px) {
  .seaon .box2 .filter2 .gr .txt {
    padding: 1rem 0.5rem 2rem;
  }
}
.seaon .box {
  margin-top: 1.19rem;
}
.seaon .box .filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .seaon .box .filter {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) {
  .seaon .box .filter .gl {
    margin-bottom: 0.4rem;
  }
}
.seaon .box .filter .gl a {
  transition: all 0.4s;
  color: #777;
  position: relative;
  margin-right: 0.7rem;
}
@media (max-width: 1580px) {
  .seaon .box .filter .gl a {
    margin-right: 0.3rem;
  }
}
.seaon .box .filter .gl a:hover {
  color: #000;
}
.seaon .box .filter .gl a.on {
  font-weight: bold;
  color: #000;
}
.seaon .box .filter .gl a.on::after {
  opacity: 1;
}
.seaon .box .filter .gl a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.04rem;
  background: var(--color);
  opacity: 0;
  transition: all 0.4s;
  bottom: -0.12rem;
  left: 0;
}
.seaon .box .filter .gl a:last-child {
  margin-right: 0;
}
.seaon .box .filter .gr {
  flex-shrink: 0;
  margin-left: 0.1rem;
}
@media (max-width: 991px) {
  .seaon .box .filter .gr {
    margin: 0 ;
  }
}
.seaon .box .filter .gr form {
  display: flex;
}
.seaon .box .filter .gr form .search_box {
  margin-left: 0.1rem;
  width: 3.6rem;
  height: 0.6rem;
  background: #fff;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .seaon .box .filter .gr form .search_box {
    height: 0.8rem;
    margin-left: 0;
  }
}
.seaon .box .filter .gr form .search_box input {
  padding: 0 0.2rem;
  width: 100%;
  color: #333;
}
.seaon .box .filter .gr form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.2rem;
  width: 0.2rem;
  height: auto;
}
@media (max-width: 767px) {
  .seaon .box .filter .gr form .search_box button {
    width: 0.3rem;
  }
}
.seaon .box .filter .gr form .search_box button svg {
  width: 100%;
  height: auto;
}
.seaon .box .filter .gr form .search_box button svg path {
  fill: #9a9a9a;
}
.seaon .box .g_con {
  margin-top: 0.67rem;
}
.seaon .box .g_con .g_seali {
  margin-bottom: 0.86rem;
}
.seaon .box .g_con .g_seali:last-child {
  margin-bottom: 0;
}
.seaon .box .g_con .g_seali .headline {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0.22rem;
  border-bottom: 1px solid #E4E4E4;
}
.seaon .box .g_con .g_seali .headline .title-box {
  width: 100%;
  min-width: 0;
  height: auto;
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.seaon .box .g_con .g_seali .headline .title-box .title {
  font-weight: bold;
  line-height: 1;
}
.seaon .box .g_con .g_seali .headline .title-box .tips {
  margin-left: 0.23rem;
  color: #999;
  line-height: 1;
}
.seaon .box .g_con .g_seali .headline .more-box {
  width: auto;
  height: auto;
  display: flex;
}
.seaon .box .g_con .g_seali .headline .more-box .more {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  color: var(--color);
}
.seaon .box .g_con .g_seali .headline .more-box .more:hover .icon {
  transform: translateX(5px);
}
.seaon .box .g_con .g_seali .headline .more-box .more .icon {
  display: flex;
  margin-left: 0.06rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .seaon .box .g_con .g_seali .headline .more-box .more .icon {
    width: 12px;
  }
}
.seaon .box .g_con .g_seali .sea_sul .item {
  display: block;
  border-bottom: 1px solid #E4E4E4;
  padding: 0.35rem 0;
  padding-right: 2.74rem;
}
@media (max-width: 991px) {
  .seaon .box .g_con .g_seali .sea_sul .item {
    padding: 0.35rem 0;
  }
}
.seaon .box .g_con .g_seali .sea_sul .item .txt h3 {
  color: #000;
  font-weight: bold;
}
.seaon .box .g_con .g_seali .sea_sul .item .txt p {
  margin-top: 0.07rem;
  color: #777;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.seaon .box .g_con .g_seali .sea_sul .item .g_mbx {
  margin-top: 0.2rem;
}
.seaon .box .g_con .g_seali .sea_news .item {
  display: flex;
  align-items: center;
  padding: 0.35rem 0;
  padding-right: 1.1rem;
  border-bottom: 1px solid #E4E4E4;
}
@media (max-width: 991px) {
  .seaon .box .g_con .g_seali .sea_news .item {
    padding: 0.35rem 0;
  }
}
@media (max-width: 767px) {
  .seaon .box .g_con .g_seali .sea_news .item {
    flex-direction: column;
  }
}
.seaon .box .g_con .g_seali .sea_news .item .public-img {
  margin-right: 0.66rem;
  flex-shrink: 0;
  width: 34.52991453%;
}
@media (max-width: 767px) {
  .seaon .box .g_con .g_seali .sea_news .item .public-img {
    width: 100%;
    margin: 0 auto 0.3rem;
  }
}
.seaon .box .g_con .g_seali .sea_news .item .public-img:before {
  padding-top: 56.43564356%;
}
@media (max-width: 767px) {
  .seaon .box .g_con .g_seali .sea_news .item .txt {
    width: 100%;
  }
}
.seaon .box .g_con .g_seali .sea_news .item .txt .txt_box h3 {
  font-weight: bold;
  color: #000;
}
.seaon .box .g_con .g_seali .sea_news .item .txt .txt_box p {
  margin-top: 0.15rem;
}
.seaon .box .g_con .g_seali .sea_news .item .txt .time {
  display: flex;
  margin-top: 0.43rem;
  color: #777;
}
/* 右侧浮窗 */
.gpop {
  position: fixed;
  right: 0.4rem;
  bottom: 2rem;
  z-index: 100;
  display: none;
}
@media (max-width: 767px) {
  .gpop {
    right: 10px;
  }
}
.gpop > * {
  transition: all 0.4s;
}
.gpop .gpop_t {
  border-radius: 0.05rem;
  background: #222D82;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.gpop .gpop_t .pop_a {
  border-bottom: 2px solid #151c52;
}
.gpop .gpop_t .pop_a:last-child {
  border: none;
}
.gpop .pop_a {
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gpop .pop_a.on .pop_text {
  transform: translateY(-50%) scale(1);
  -webkit-transform: translateY(-50%) scale(1);
}
.gpop .pop_a.on .pop_a_img svg path {
  fill: #fff;
}
.gpop .pop_a.on .pop_a_img p {
  color: #fff;
}
.gpop .pop_a img {
  z-index: 100;
}
.gpop .pop_a .pop_a_img {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.gpop .pop_a .pop_a_img svg {
  color: #fff;
  width: 20px;
  height: 20px;
}
.gpop .pop_a .pop_a_img svg path {
  fill: #969696;
}
.gpop .pop_a .pop_a_img p {
  font-size: 12px;
  margin-top: 5px;
}
.gpop .pop_a .pop_text {
  position: absolute;
  top: 50%;
  right: 130%;
  background: #fff;
  padding: 0.15rem 0.3rem;
  transition: all 0.6s;
  -moz-transition: all 0.6s;
  z-index: 1;
  transform: translateY(-50%) scale(0);
  -webkit-transform: translateY(-50%) scale(0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_text {
    width: 220px;
  }
}
.gpop .pop_a .pop_text p {
  color: #666;
  margin-bottom: 0.02rem;
  white-space: nowrap;
  font-size: 14px;
}
.gpop .pop_a .pop_text img {
  height: 20px;
  width: 20px;
  margin-right: 0.1rem;
}
.gpop .pop_a .pop_text::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid dashed dashed;
  border-color: #fff transparent transparent;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  position: absolute;
  top: 50%;
  right: -20px;
  margin-top: -10px;
  border-width: 10px;
  border-top-color: #fff;
  -webkit-transform: rotate(-90deg);
}
.gpop .cur4 {
  margin-top: 0.12rem;
  background: #fff;
  border-radius: 0.05rem;
  box-shadow: 0 2px 5.6px 0 rgba(0, 0, 0, 0.15);
}
.gpop .cur4.on {
  background: var(--color);
}
.gpop .cur4.on .pop_a_img svg {
  color: #fff;
}
.gpop .cur4 .pop_a_img {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.gpop .cur4 .pop_a_img svg {
  color: var(--color);
}
.curtain1 {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none;
}
.curtain1 .mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
}
.curtain1 .curtain_box {
  position: absolute;
  max-width: 90%;
  max-height: 90%;
  left: 50%;
  top: 50%;
  overflow: hidden;
  z-index: 10000;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .curtain1 .curtain_box {
    width: 90%;
  }
}
.curtain1 .curtain_box .curtain_title {
  position: relative;
  padding: 0 30px;
  background: #1c4798;
}
.curtain1 .curtain_box .curtain_title .close_tc {
  position: absolute;
  top: 0.32rem;
  right: 0.34rem;
  width: 26px;
  height: 26px;
  border: 2px solid var(--color);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.4s;
}
.curtain1 .curtain_box .curtain_title .close_tc:hover {
  background: var(--color);
}
.curtain1 .curtain_box .curtain_title .close_tc:hover::before,
.curtain1 .curtain_box .curtain_title .close_tc:hover::after {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .curtain1 .curtain_box .curtain_title .close_tc {
    width: 20px;
    height: 20px;
    border: 1px solid var(--color);
  }
}
.curtain1 .curtain_box .curtain_title .close_tc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -6px;
  width: 12px;
  height: 2px;
  background: var(--color);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .curtain1 .curtain_box .curtain_title .close_tc::before {
    margin: 0 0 0 -5px;
    width: 10px;
    height: 1px;
  }
}
.curtain1 .curtain_box .curtain_title .close_tc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -6px;
  width: 12px;
  height: 2px;
  background: var(--color);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .curtain1 .curtain_box .curtain_title .close_tc::after {
    margin: 0 0 0 -5px;
    width: 10px;
    height: 1px;
  }
}
.curtain1 .curtain_con {
  max-height: 90vh;
  overflow: auto;
}
.curtain1 .g_bd {
  width: 43.38541667vw;
  background: #fff;
  padding: 0.31rem 0.55rem 0.43rem 0.38rem;
}
@media (max-width: 1260px) {
  .curtain1 .g_bd {
    width: 62.5vw;
  }
}
@media (max-width: 991px) {
  .curtain1 .g_bd {
    width: 100%;
  }
}
.curtain1 .g_bd h2 {
  font-weight: bold;
  margin-bottom: 0.23rem;
}
@media (max-width: 767px) {
  .curtain1 .g_bd h2 {
    padding-right: 0.2rem;
  }
}
.curtain1 .g_bd form .inp {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .curtain1 .g_bd form .inp {
    flex-direction: column;
  }
}
.curtain1 .g_bd form .inp .inp_box {
  width: calc(50% - 0.05rem);
  margin-bottom: 0.22rem;
}
@media (max-width: 767px) {
  .curtain1 .g_bd form .inp .inp_box {
    width: 100% !important;
    margin-bottom: 0.4rem;
  }
}
.curtain1 .g_bd form .inp .inp_box .inp_txt {
  margin-bottom: 0.04rem;
}
.curtain1 .g_bd form .inp .inp_box .inp_txt p {
  color: #333;
  font-weight: bold;
}
.curtain1 .g_bd form .inp .inp_box .inp_txt p span {
  color: red;
}
.curtain1 .g_bd form .inp .inp_box input {
  padding: 0 0.12rem;
  width: 100%;
  height: 0.4rem;
  border: 1px solid #E5E5E5;
}
@media (max-width: 1260px) {
  .curtain1 .g_bd form .inp .inp_box input {
    height: 0.6rem;
  }
}
@media (max-width: 767px) {
  .curtain1 .g_bd form .inp .inp_box input {
    height: 0.8rem;
  }
}
.curtain1 .g_bd form .inp .inp_box .sot_select_nr .sel_text_x {
  height: 0.5rem;
}
@media (max-width: 767px) {
  .curtain1 .g_bd form .inp .inp_box .sot_select_nr .sel_text_x {
    height: 0.8rem;
  }
}
.curtain1 .g_bd form .inp .inp_box .layui-input-block {
  margin-left: 0;
  margin-right: 0;
}
.curtain1 .g_bd form .inp .inp_box .layui-form-select dl {
  top: 100%;
  bottom: auto;
}
.curtain1 .g_bd form .inp .inp_box .layui-form-select dl dd.layui-this {
  background: var(--color);
  color: #fff;
}
.curtain1 .g_bd form .inp .inp_box .layui-form-select .layui-input {
  height: 0.4rem;
  border: 1px solid #E5E5E5;
  color: #444;
  padding: 0 0.15rem;
}
@media (max-width: 767px) {
  .curtain1 .g_bd form .inp .inp_box .layui-form-select .layui-input {
    height: 0.8rem;
  }
}
.curtain1 .g_bd form .inp .inp_box .layui-form-select .layui-edge {
  right: 0.24rem;
  background: url(../images/b3.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 7px;
  border: none;
  margin: 0;
  margin-top: -4px;
}
.curtain1 .g_bd form .inp2 .inp_box {
  width: 100%;
}
.curtain1 .g_bd form .inp3 .inp_box {
  width: calc((100% - 0.2rem)/3);
}
.curtain1 .g_bd form .inptext .inp_box {
  margin-bottom: 0;
}
.curtain1 .g_bd form .inptext .inp_box textarea {
  border: 1px solid #E5E5E5;
  width: 100%;
  height: 1.41rem;
  padding: 0.13rem 0.15rem;
}
@media (max-width: 767px) {
  .curtain1 .g_bd form .inptext .inp_box textarea {
    height: 2.2rem;
  }
}
.curtain1 .g_bd form .g_lab {
  padding-right: 1.1rem;
  margin-top: 0.09rem;
  color: #999999;
}
@media (max-width: 767px) {
  .curtain1 .g_bd form .g_lab {
    padding: 0;
  }
}
.curtain1 .g_bd form .g_lab label {
  display: flex;
  align-items: flex-start;
}
.curtain1 .g_bd form .g_lab label.on i {
  color: var(--color);
  border-color: var(--color);
}
.curtain1 .g_bd form .g_lab label.on i svg,
.curtain1 .g_bd form .g_lab label.on i img {
  opacity: 1;
}
.curtain1 .g_bd 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-top: 0.03rem;
  margin-right: 0.12rem;
}
@media (max-width: 1580px) {
  .curtain1 .g_bd form .g_lab i {
    width: 14px;
    height: 14px;
  }
}
.curtain1 .g_bd form .g_lab i svg,
.curtain1 .g_bd form .g_lab i img {
  opacity: 0;
  width: 8px;
  height: auto;
}
.curtain1 .g_bd form .g_lab i svg path,
.curtain1 .g_bd form .g_lab i img path {
  filter: none;
}
.curtain1 .g_bd form .g_lab p {
  line-height: 1.3;
}
.curtain1 .g_bd form .g_lab p a {
  color: var(--color);
  /* text-decoration: underline; */
}
.curtain1 .g_bd form .g_a {
  min-width: 1.3rem;
  margin-top: 0.56rem;
  display: inline-flex;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  height: 0.52rem;
  padding: 0 0.33rem;
  background: var(--color);
  color: #fff;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .curtain1 .g_bd form .g_a {
    height: 0.8rem;
    padding: 0 0.3rem;
    min-width: 2rem;
  }
}
.curtain1 .g_bd form .g_a:hover {
  opacity: 0.8;
}
#c-home-tips {
  display: none;
  position: fixed;
  z-index: 890;
  bottom: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.05);
  background: #fff;
}
#c-home-tips .c-wrap {
  padding: 0.5rem 0 0.93rem;
  display: flex;
  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: 60%;
  text-align: left;
}
@media (max-width: 767px) {
  #c-home-tips .c-wrap .c-left {
    width: 100%;
    margin-bottom: 0.3rem;
  }
}
#c-home-tips .c-wrap .c-left h2 {
  font-weight: bold;
  color: #000;
}
#c-home-tips .c-wrap .c-left p {
  color: #777;
  margin-top: 0.1rem;
}
#c-home-tips .c-wrap .c-wrapr {
  width: 30%;
  display: flex;
  justify-content: flex-end;
}
@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;
}
/* 导航搜索下拉 */
.hadbox-sec3 {
  line-height: 1.5;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: #F8F8F9;
  color: #222222;
  display: none;
}
.hadbox-sec3 .container {
  width: calc(600/1920*100vw);
  padding: calc(80px + 0.43rem) 0 2.56rem;
  position: relative;
}
@media (max-width: 991px) {
  .hadbox-sec3 .container {
    width: 100%;
    padding: calc(80px + 0.43rem) 5% 2.56rem;
  }
}
@media (max-width: 767px) {
  .hadbox-sec3 .container {
    padding-bottom: 0.6rem;
  }
}
.hadbox-sec3 .f_cont {
  max-width: 1000px;
  margin: 0 auto;
}
.hadbox-sec3 .f_cont .fz_title {
  font-weight: bold;
  color: #000;
  text-align: left;
  margin-bottom: 0.28rem;
}
@media (max-width: 767px) {
  .hadbox-sec3 .f_cont .fz_title {
    margin-bottom: 0.6rem;
  }
}
.hadbox-sec3 .f_cont .f_form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hadbox-sec3 .f_cont .f_form {
    padding-bottom: 0.3rem;
  }
}
.hadbox-sec3 .f_cont .f_form .search_box {
  width: 100%;
  height: 0.46rem;
  background: #fff;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hadbox-sec3 .f_cont .f_form .search_box {
    height: 0.8rem;
    width: 100%;
    margin: 0;
  }
}
.hadbox-sec3 .f_cont .f_form .search_box input {
  padding: 0 0.12rem;
  width: 100%;
  color: #333;
}
.hadbox-sec3 .f_cont .f_form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.32rem;
  width: 15px;
  height: 15px;
}
@media (max-width: 767px) {
  .hadbox-sec3 .f_cont .f_form .search_box button {
    width: 12px;
  }
}
.hadbox-sec3 .f_cont .f_form .search_box button svg {
  width: 100%;
  height: auto;
}
.hadbox-sec3 .f_cont .f_form .search_box button svg path {
  fill: #9a9a9a;
}
.hadbox-sec3 .f_cont .f_jut {
  display: flex;
  margin-top: 0.45rem;
  align-items: flex-start;
}
@media (max-width: 1580px) {
  .hadbox-sec3 .f_cont .f_jut {
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .hadbox-sec3 .f_cont .f_jut {
    line-height: 26px;
  }
}
.hadbox-sec3 .f_cont .f_jut .name {
  fill: 0 0 auto;
  margin-top: 1px;
  display: block;
  padding-right: 0.08rem;
  color: #666;
}
.hadbox-sec3 .f_cont .f_jut .f_list {
  fill: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
}
.hadbox-sec3 .f_cont .f_jut .f_list .li {
  margin-bottom: 10px;
  color: #666 !important;
  border-radius: 18px;
  display: block;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  margin-right: 0.27rem;
}
@media (max-width: 1580px) {
  .hadbox-sec3 .f_cont .f_jut .f_list .li {
    border-radius: 16px;
  }
}
@media (max-width: 991px) {
  .hadbox-sec3 .f_cont .f_jut .f_list .li {
    border-radius: 13px;
  }
}
.hadbox-sec3 .f_cont .f_jut .f_list .li:hover {
  color: var(--color) !important;
}
.hadbox-sec3 .f_cont .f_jut .f_list .li a {
  color: #666;
}
