@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/poppins/Poppins-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("./fonts/poppins/Poppins-Light.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/poppins/Poppins-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("./fonts/poppins/Poppins-SemiBold.ttf");
  font-display: swap;
}

strong {
  font-weight: 700 !important;
}

p {
  /*margin-bottom: 1em;*/
}

.h {
  color: #de5a0d !important;
}

body {
  color: rgba(51, 51, 51, 1);
  font-family: "Poppins", Arial, Helvetica, sans-serif, "microsoft yahei", "pingfang";
  font-weight: 400;
  /* font-family: "HarmonyOS Sans SC", "Open Sans", "microsoft yahei", "pingfang", arial !important; */

  font-size: var(--font16);
  line-height: 1.75;
  background-color: #fff;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden-desktop {
    display: none !important;
  }
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  background-color: #f5f5f5;
}
body::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #bdb9b9;
}

div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  background-color: #f5f5f5;
}

div::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

div::-webkit-scrollbar-thumb {
  border-radius: 3px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  background-color: #bdb9b9;
}

.mod {
  --mod-title-font-size: 0.42rem;
  --mod-subtitle-font-size: 0.18rem;
  --mod-num-font-size: 0.36rem;
  --mod-title-color: rgba(0, 0, 0, 1);
  --mod-subtitle-color: #1c222c;
  --mod-num-color: #e70000;
}

.theme-dark .mod {
  --mod-title-color: #ffffff;
  --mod-subtitle-color: #ffffff;
  --mod-num-color: #ffffff;
}

.mod .mod-hd {
  margin-bottom: 0.48rem;
}

.mod .mod-title {
  flex: 1;
}

.mod .mod-hd h3 {
  position: relative;
  font-weight: bold;
  color: var(--mod-title-color);
  font-size: var(--mod-title-font-size);
  transition: all 0.3s;
  line-height: 1.5;
}

.mod .mod-hd h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2em;
  height: 0.04rem;
  background-color: var(--main-color);
  transition: all 0.3s;
  display: none;
}

.mod .mod-hd .center h3::after {
  left: 50%;
  transform: translateX(-50%);
}

.mod .mod-hd .subtitle {
  color: var(--mod-subtitle-color);
  font-size: var(--mod-subtitle-font-size);
  margin-top: 0.12rem;
  font-weight: 300;
}

.mod .mod-bd {
}

/* 居中 */
.mod .mod-title.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mod .mod-title.right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.mod .subtitle.center {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .mod {
    --mod-title-font-size: 20px;
    --mod-subtitle-font-size: 14px;
    --mod-num-font-size: 20px;
  }

  .mod .mod-hd {
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .mod .mod-title {
    flex: none;
    width: 100%;
  }

  .mod .mod-extra {
    margin-top: 12px;
  }
}

.wrapper {
  box-sizing: content-box;
  margin: 0 auto;
  max-width: var(--content-width);
  padding: 0 var(--content-padding, 20px);
}

.fluid-wrapper {
  box-sizing: border-box;
  width: 100%;
  padding: 0 var(--safe-area-inset, 20px);
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.flex-box {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}

.flex-box .flex-box-left {
  box-sizing: border-box;
  width: 50%;
}

.flex-box .flex-box-right {
  box-sizing: border-box;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .flex-box .flex-box-left {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 24px;
  }

  .flex-box .flex-box-right {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* + */
.toggle-btn {
  display: none;
}

@media only screen and (max-width: 767px) {
  .toggle-btn {
    display: block;
    transition: all 0.5s;
    font-size: 18px;
  }
  .inner-cont > p img {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
  }
}

/* ==========================================================================
Nav 导航栏
========================================================================== */
.dropdown {
  box-sizing: border-box;
  position: absolute;
  z-index: 10000;
  background: rgba(255, 255, 255, 1);
  top: 80%;
  left: 50%;
  transform: translate(-50%, 20px);
  min-width: 1.2rem;
  padding: 0.16rem 0.28rem;
  border-radius: 0 0 0.2rem 0.2rem;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12);
  border-top: 1px solid var(--main-color);
  transition: all 0.3s;
  opacity: 0;
  display: none;
}

.gn-item.active .dropdown {
  pointer-events: all;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  -webkit-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
  transition-delay: 0.1s;
  opacity: 1;
  display: block;
}

.globalheader-light .dropdown {
  top: 100%;
}

.dropdown:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  border: 0 solid transparent;
  border-width: 0 5px 5px;
  border-bottom-color: var(--main-color);
  left: 50%;
  margin-left: -5px;
  top: -5px;
}

.dropdown a {
  box-sizing: border-box;
  transition: all 0.3s;
  white-space: nowrap;
  color: #000;
  display: block;
  text-align: center;
  padding: 0.12rem;
  border-radius: 0.1rem;
  font-size: 0.16rem;
}

.dropdown a:hover {
  color: var(--main-color);
}

@media only screen and (max-width: 767px) {
  .dropdown {
    width: 100%;
    position: relative;
    margin: 0;
    background: #fff;
    overflow: hidden;
    box-shadow: none;
  }

  .dropdown a {
    white-space: nowrap;
    font-size: 14px;
    text-align: left;
  }

  .dropdown:after {
    display: none;
  }
}
/* 底部 */
.footer {
  background: #1f2028;
  color: rgba(255, 255, 255, 1);
}

.footer a {
  transition: color 0.3s;
  color: rgba(255, 255, 255, 1);
}

.footer a:hover {
  text-decoration: underline;
}

.footer-ft {
  box-sizing: border-box;
  border-top: 1px solid rgba(60, 61, 72, 1);
  padding: 0.24rem 0;
}

.footer-ft a {
  transition: all 0.3s;
}

.footer-ft a:hover {
}

.footer-ft-inner {
  display: flex;
  justify-content: space-between;
}

.footer-ft-left {
  display: flex;
  gap: 2em;
}

.footer-bd-inner {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.64rem 0;
  gap: 0.8rem;
}

.footer-bd-left {
  display: flex;
}

.footer-contact {
  padding-right: 10%;
}

.footer-logo {
  margin-bottom: 0.2rem;
}

.footer-nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

.footer-nav .fn-col {
}

.footer-nav .fn-col h3 {
  color: rgba(255, 255, 255, 1);
  font-size: 0.18rem;
  margin-bottom: 0.12rem;
}

.footer-nav .fn-col h3 a {
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s;
}

.footer-nav .fn-col li {
  margin-bottom: 0.08rem;
  line-height: 2;
  font-size: 0.14rem;
}

.footer-nav .fn-col li a {
  transition: color 0.3s;
}

.footer-nav .fn-col li a:hover {
  text-decoration: underline;
}

.footer .qrcode {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.12rem;
}

.footer .qrcode .qrcode-bd {
  width: 1.48rem;
  display: flex;
  justify-content: center;
}

.footer .qrcode .qrcode-bd img {
}

.footer .qrcode .qrcode-ft {
  margin-top: 0.08rem;
  font-size: 12px;
}

@media only screen and (max-width: 767px) {
  .footer {
    font-size: 12px;
  }

  .footer .fluid-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-bd {
    display: none;
  }

  .footer-ft {
    padding: 20px 0;
    font-size: 12px;
  }

  .beian,
  .copyright {
    margin-bottom: 4px;
  }

  .footer-ft-inner {
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-ft-left {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* lang */

.header-item {
  color: var(--r-globalnav-color);
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 0.18rem;
  cursor: pointer;
  transition: all 0.3s;
}

.header-item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 767px) {
  .divider {
    height: 14px;
    margin: 0 16px;
    margin-top: 1px;
  }

  .lang-box {
    display: none;
  }

  #globalnav .gn-item-lang {
    display: block;
  }
}

.row {
  padding-bottom: var(--padding100);
}

.float-btn {
  box-sizing: border-box;
  cursor: pointer;
  position: fixed;
  z-index: 99;
  right: 24px;
  bottom: 48px;
  width: 40px;
  height: 40px;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12),
    0 9px 28px 8px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  transition: background-color 0.2s;
  display: none;
}

.float-btn-item {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.3s;
}

.float-btn-item:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 768px) {
  .float-btn {
    right: 20px;
    width: 32px;
    height: 32px;
  }
}

.lang-dropdown-trigger a {
  color: var(--r-globalnav-color);
  color: var(--main-color);
}

.lang-box {
  position: relative;
  z-index: 999;
  margin-left: 0.32rem;
}

.lang-dropdown-trigger {
  box-sizing: border-box;
  padding: var(--gn-item-padding);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.08rem;
  color: #fff;
  font-size: var(--font20);
  line-height: 0.27rem;
  color: var(--r-globalnav-color);
  color: var(--main-color);
}

.lang-dropdown-trigger .icon {
  width: 0.2rem;
  height: 0.2rem;
}

.lang-dropdown-trigger .icon .custom-icon {
  width: 100%;
  height: 100%;
}

.lang-dropdown-trigger .lang-arrow {
  margin-left: 0.08rem;
  width: 0.14rem;
  height: 0.08rem;

  background-image: url("../images/icons/xiala_icon.svg");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 100%;
}

.lang-dropdown {
  position: absolute;
  left: 50%;
  top: 100%;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
}

.lang-box:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transform: translate(-50%, 0);
  transition: all 0.3s;
  padding: 0.08rem;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.04rem 0.2rem;
  font-size: 0.16rem;
  color: #333;
  border-bottom: 1px solid #e5e5e58e;
  transition: all 0.3s;
  min-width: 0.8rem;
}

.lang-dropdown a:last-child {
  border-bottom: 0 none;
}

.lang-dropdown a:hover {
  color: var(--main-color);
}

@media only screen and (max-width: 767px) {
  .lang-box {
    display: none;
  }

  #globalnav .gn-item-lang {
    display: block;
    color: rgb(50, 50, 50);
  }

  #globalnav .gn-item-lang a {
    color: rgb(50, 50, 50);
  }
}

#globalnav .fluid-wrapper {
  box-sizing: border-box;
  width: 100%;
  padding: 0 var(--safe-area-inset, 20px);
}

@media only screen and (max-width: 767px) {
  #globalnav .fluid-wrapper {
    padding: 0 !important;
  }
}

#globalnav.hidden {
  opacity: 0;
}

.news-area {
  padding-bottom: 0.6rem;
  position: relative;
  --gap: 0.2rem;

  margin: calc(var(--gap) * -1);
}

@media only screen and (min-width: 768px) {
  .news-list {
    --gap: 0.2rem;
    --item-margin-bottom: 0.4rem;
  }
}

.news-list > li {
}
/* news */

.news-list-item {
  box-sizing: border-box;
  height: 100%;
  padding: var(--gap);
}

.news-list-item a {
  display: block;
  box-sizing: border-box;
  height: 100%;
  transition: all 0.5s;
  background-color: #f2f4f9;
}

.news-list-item a,
.news-list-item,
.news-list-item .pic,
.news-list-item .pic img {
  border-radius: var(--border-radius);
}

.news-list-item .meta {
  box-sizing: border-box;
  padding: 0.32rem 0.48rem;
}

.news-list-item .title {
  transition: all 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
  overflow: hidden;
  color: rgba(0, 0, 0, 1);
  font-size: var(--font18);
  min-height: 0.945rem;
  margin-bottom: 0.2rem;
}

.news-list-item .date {
  transition: all 0.3s;
  color: rgba(153, 153, 153, 1);
  font-size: var(--font14);
  margin-bottom: 0.12rem;
}

.top-news-list-item .pic .upimg,
.news-list-item .pic .upimg {
  object-fit: cover;
}

.news-list-item a:hover {
  background-color: #fff;
  box-shadow: 0px 0px 0.2rem 0px rgba(0, 0, 0, 0.1);
}

.news-list-item a:hover .upimg {
  transform: scale(1.1);
}

@media only screen and (max-width: 767px) {
}

.hm-sec6 {
  position: relative;
}

.hm-sec6 .bg {
  width: 100%;
  padding-top: 20%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .hm-sec6 .bg {
    padding-top: 60.54490414%;
  }
}

@media (max-width: 767px) {
  .hm-sec6 .bg {
    padding-top: 106.66666667%;
  }
}

.hm-sec6 .bg img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;

  transition: none;
  width: 100%;
  height: 140%;
  object-fit: cover;
  transform: translateY(-20%);
}

.hm-sec6 .bg:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(13, 222, 196, 1), rgba(27, 63, 130, 1) 100%);
  opacity: 0.48;
}

.hm-sec6 .container {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 100%;
  z-index: 2;
}

.hm-sec6 .meta {
  margin: 0 auto;
  width: 74%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hm-sec6 .title {
  max-width: 7.8rem;
  color: #ffffff;
  font-size: var(--font42);
  line-height: 1.5;
}

.slogan-row {
  position: relative;
}

.slogan-row .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slogan-row .bg:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(13, 222, 196, 1), rgba(27, 63, 130, 1) 100%);
  opacity: 0.48;
}

.slogan-row .container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.slogan-row .meta {
  margin: 0 auto;
  width: 74%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
}

.slogan-row .title {
  color: #ffffff;
  font-size: var(--font42);
  line-height: 1.5;
  max-width: 840px;
}

@media only screen and (max-width: 767px) {
  .slogan-row .bg {
    height: 180px;
  }

  .slogan-row .meta {
    width: 90%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .slogan-row .title {
    font-size: 16px;
    text-align: center;
  }
}

.swiper-buttons {
  --swiper-button-size: 0.42rem;
  --swiper-arrow-size: 0.2rem;

  box-sizing: border-box;
  position: absolute;
  width: calc(var(--swiper-button-size) * 2 + 0.24rem);
  height: var(--swiper-button-size);
  z-index: 2;
}

.swiper-buttons .swiper-button-next,
.swiper-buttons .swiper-button-prev {
  transition: all 0.3s;
  box-sizing: border-box;
  height: var(--swiper-button-size);
  width: var(--swiper-button-size);
  border-radius: 50%;
  border: 0.01rem solid var(--main-color);
  margin-top: 0;
  top: 0;
}

.swiper-buttons .swiper-button-next svg,
.swiper-buttons .swiper-button-prev svg {
  height: var(--swiper-arrow-size);
  width: var(--swiper-arrow-size);
}

.swiper-buttons .swiper-button-next:hover,
.swiper-buttons .swiper-button-prev:hover,
.swiper-buttons .swiper-button-next:active,
.swiper-buttons .swiper-button-prev:active {
  color: #fff;
  background-color: var(--main-color);
}

.swiper-buttons .swiper-button-next:after,
.swiper-buttons .swiper-button-prev:after {
  display: none;
}

.pro-area {
  position: relative;
  margin-left: -0.19rem;
  margin-right: -0.19rem;
}

.pro-list-item {
  box-sizing: border-box;
  padding: 0.2rem 0.19rem;
}

.pro-list-item a {
  display: block;
  background: rgba(242, 244, 249, 1);
  position: relative;
}

.pro-list-item a,
.pro-list-item .pic,
.pro-list-item .pic img,
.pro-list-item .meta {
  border-radius: var(--border-radius);
}

.pro-list-item .meta {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.36rem 0.4rem 0.72rem;
}

.pro-list-item .title {
  transition: all 0.3s;
  color: rgba(0, 0, 0, 1);
  font-weight: 300;
  font-size: var(--font24);
}

.pro-list-item .more {
  transition: all 0.3s;
  opacity: 0;

  transform: translateY(15px);
}

.pro-list-item:hover .img-default {
  transition: all 0.3s;
  opacity: 1;
}

.pro-list-item .img-hover {
  transition: all 0.3s;
  opacity: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.pro-list-item.active .meta,
.pro-list-item:hover .meta {
  /* background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(11, 34, 76, 0.63),
    rgba(11, 34, 76, 0.3)
  ); */

  background: rgba(11, 34, 76, 0);
}

.pro-list-item.active .title,
.pro-list-item:hover .title {
  color: rgba(255, 255, 255, 1);
}

.pro-list-item.active .more,
.pro-list-item:hover .more {
  opacity: 1;
  transform: translateY(0);
}

.pro-list-item.active .img-hover,
.pro-list-item:hover .img-hover {
  opacity: 1;
}

.pro-list-item.active .img-default,
.pro-list-item:hover .img-default {
  opacity: 0;
}

/* 搜索 */
.header-search {
  box-sizing: border-box;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  height: var(--global-header-height);
  cursor: pointer;
  margin-right: 0.12rem;
  transition: all 0.3s;
  color: var(--r-globalnav-color);
  color: var(--main-color);
  font-size: var(--font18);
}

.header-search svg {
  width: var(--icon28);
  height: var(--icon28);
}

.header-search:hover .fa {
  transition: all 0.3s;
}

.header-search:hover .fa {
  color: var(--main-color);
}

.header-search-icon {
  width: 0.24rem;
  height: 0.24rem;
  background-image: url("../images/search_icon.svg");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 100%;
}

.search-flyout {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: all 0.5s;
  box-sizing: border-box;
  padding: 28vh 20px 0;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.search-flyout.active {
  top: 0;
}

.search-flyout .wrap {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.search-flyout .close {
  position: absolute;
  right: 0;
  top: 0.1rem;
  width: 0.4rem;
  height: 0.4rem;
  background-image: url("../images/close_icon.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 0.24rem auto;
  cursor: pointer;
}

.search-flyout .close:hover {
  opacity: 0.5;
}

.search-flyout .globalsearch {
  padding-right: 0.8rem;
}

.globalsearch {
  margin-bottom: 0.24rem;
}

.globalsearch .search-input {
  box-sizing: border-box;
  float: left;
  width: calc(100% - 1.6rem);
  height: 0.6rem;
  padding: 0.08rem 0.26rem;
  border: 1px solid #d9d9d9;
  font-size: 0.2rem;
}

.globalsearch .search-btn {
  box-sizing: border-box;
  float: left;
  width: 1.6rem;
  height: 0.6rem;
  line-height: 0.6rem;
  color: #fff;
  font-size: 0.2rem;
  border: 0;
  background-color: var(--main-color);
  text-align: center;
}

@media only screen and ((max-width: 767px)) {
  .header-search {
    height: 48px;
    position: absolute;
    right: 60px;
    top: 0;
  }

  .header-search .search_txt {
    display: none;
  }

  .header-search-icon {
    width: 24px;
    height: 24px;
  }

  .search-flyout .close {
    background-size: 20px auto;
    top: 10px;
  }

  .globalsearch .search-input {
    font-size: 14px;
    height: 40px;
  }

  .globalsearch .search-btn {
    font-size: 14px;
    height: 40px;
  }

  .search-flyout.active {
    top: var(--global-header-height);
  }
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  height: 1px;
  top: auto;
  bottom: 0;
  background-color: rgba(215, 215, 215, 1);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--main-color);
  height: 5px;
  border-radius: 980px;
  top: -2px;
}

#globalnav #gn_02 {
  position: static;
}

#gn_02 .gn-link {
  position: relative;
}

#gn_02 .gn-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  border: 0 solid transparent;
  border-width: 0 5px 5px;
  border-bottom-color: var(--main-color);
  left: 50%;
  margin-left: -5px;
  bottom: 0;
  display: none;
}

#gn_02.active .gn-link::after {
  display: block;
}

.proMenuDown {
  position: absolute;
  width: 100%;
  left: 0;
  line-height: initial;
  background: #fff;
  z-index: 8;
  top: var(--global-header-height);
  box-shadow: 0 0 0.26041666vw rgba(0, 0, 0, 0.1);
  display: none;
  height: 500px;
}

.proMenuDown .container {
  /* max-width: 86%;
  margin: 0 auto; */
}

.proNavList {
  display: flex;
  justify-content: space-between;
}
.proNavList .hd {
  height: 100%;
  height: 5rem;
  box-sizing: border-box !important;
  width: 23%;
  padding: 0.5rem 0.4rem 0.5rem var(--safe-area-inset);
  background: rgba(242, 244, 249, 1);
}
.proNavList {
  display: flex;
  align-items: flex-start;
}

.proNavList .hd dd a {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  transition: all 0.3s ease;
  box-sizing: border-box !important;
}

.proNavList .hd dd a {
  color: rgba(0, 0, 0, 1);
  font-size: var(--font20);
}

.proNavList .hd dd.on a {
  color: var(--main-color);
  font-weight: 700;
}

.proNavList .bd {
  box-sizing: border-box !important;
  width: 77%;
  padding: 0.5rem var(--safe-area-inset) 0.5rem 0.7rem;
}
.proNavList .bd ul {
  display: none;
}
.proNavList .bd ul li {
  position: relative;
}
.proNavList .bd ul.on {
  display: block;
}
.proNavSwiper {
  position: static;
  max-width: 100%;
}
.proNavSwiper .swiper-slide {
  height: auto;
}
.proNavSwiper .swiper-slide a {
  display: block;
  background-color: hsla(0, 0%, 59.2%, 0.1);
  padding: 0.3rem 0.2rem;
  text-align: center;
  height: 100%;
}
.proNavSwiper .swiper-slide a img {
  width: 100%;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
  transition: 0.5s;
}
.proNavSwiper .swiper-slide .imgBox {
  margin-bottom: 0.1rem;
}
.proNavSwiper .swiper-slide h5 {
  color: #333;
  font-size: 0.16rem;
}
.proNavSwiper .swiper-slide span {
  color: #666;
  font-size: 0.14rem;
}
.proNavSwiper .swiper-slide:hover .imgBox img {
  transform: scale(1.02);
}
.proNavSwiper .swjt {
  right: 0;
}
.proNavSwiper .swjt.swiper-button-prev {
  transform: rotate(180deg);
  right: auto;
  left: 0;
}

.proNav-area {
  position: relative;
  padding-bottom: 0.64rem;
}

.proNav-list-item {
  box-sizing: border-box;
}

.proNav-list-item a {
  display: block;
}

.proNav-list-item .pic {
  background: rgba(242, 244, 249, 1);
}

.proNav-list-item .pic,
.proNav-list-item .pic img,
.proNav-list-item .meta {
  border-radius: var(--border-radius);
}

.proNav-list-item .meta {
  margin-top: 0.24rem;
}

.proNav-list-item .title {
  transition: all 0.3s;
  color: rgba(30, 30, 40, 1);
  font-size: var(--font20);
  text-align: center;
}

.cell-hd {
  color: rgba(30, 30, 40, 1);
  font-weight: 700;
  font-size: var(--font24);
  margin-bottom: 0.32rem;
}

.proNav .flex-box {
}

.proMenuDown .flex-box-left {
  box-sizing: border-box !important;
  width: 40%;
  padding-right: 0.7rem;
  border-right: 1px solid rgba(230, 232, 237, 1);
}

.proMenuDown .flex-box-right {
  width: 60%;
  padding-left: 0.7rem;
  box-sizing: border-box !important;
}

.solNav-list-item {
  box-sizing: border-box;
}

.solNav-list-item a {
  display: block;
}

.solNav-list-item .pic,
.solNav-list-item .pic img,
.solNav-list-item .meta {
  border-radius: var(--border-radius);
}

.solNav-list-item .meta {
  margin-top: 0.24rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(30, 30, 40, 1);
  font-size: var(--font20);
}

.solNav-list-item .title {
  transition: all 0.3s;
  color: var(--main-color);
  font-size: var(--font20);
}

.right-pop {
  box-sizing: border-box;
  width: 48px;
  position: fixed;
  right: 0.2rem;
  z-index: 999;
  bottom: 24px;
}

@media (max-width: 767px) {
  .right-pop {
    display: none !important;
  }

  .news-list-item .meta {
    box-sizing: border-box;
    padding: 16px;
  }
}

.right-pop .social-bar {
  box-sizing: border-box;
  width: 100%;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.06);
  padding: 24px 0;
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
}

.right-pop .social-bar > a {
  transition: all 0.3s;
}

.right-pop .social-bar > a:hover {
  opacity: 0.8;
}

.goTop {
  width: 48px;
  height: 48px;
  cursor: pointer;
  margin-bottom: 12px;
  display: none;
}

.goTop-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.06);
}
