.h {
  color: var(--main-color) !important;
}

body {
  color: rgba(0, 0, 0, 1);
  font-family: Manrope, Arial, Helvetica, sans-serif;
  font-size: 0.16rem;
  line-height: 1.75;
}

body {
  color: rgb(50, 50, 50);
  font-family: Arial, Helvetica, sans-serif;
  /* font-family: "HarmonyOS Sans SC", "Open Sans", "microsoft yahei", "pingfang", arial !important; */

  font-size: 0.16rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }

  body {
    font-size: 14px;
  }
}

@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.28rem;
  --mod-num-font-size: 0.28rem;
  --mod-title-color: #111111;
  --mod-subtitle-color: #333333;
  --mod-num-color: #e70000;
}

.theme-dark .mod {
  --mod-title-color: #ffffff;
  --mod-subtitle-color: #ffffff;
  --mod-num-color: #ffffff;
}

.mod .mod-hd {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 0.52rem;
}

.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;
}

.mod .mod-hd h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2em;
  height: 0.05rem;
  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.16rem;
  max-width: 1000px;
  text-align: justify;
}

.mod .mod-hd .subtitle .h {
  font-size: var(--font32);
}

.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) {
  :root {
    --content-padding: 20px;
  }

  .mod {
    --mod-title-font-size: 20px;
    --mod-subtitle-font-size: 16px;
    --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, 24px);
}

/* .wrapper {
  box-sizing: border-box;
  width: 100%;
  padding: 0 var(--safe-area-inset, 24px);
} */

.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;
  }
}

.container {
  height: 100%;
}

.container img {
  max-width: 100%;
}

.pic {
  overflow: hidden;
  position: relative;
  height: auto;
}

.bgimg {
  width: 100%;
}

.upimg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}

.pic:hover .upimg {
  transform: scale(1.1);
}

.pic-area.center .upimg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pic-area.center .pic:hover .upimg {
  transform: translate(-50%, -50%) scale(1.1);
}

/* + */
.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, 0.9);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  display: none;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 1.2rem;
  padding: 0.28rem 0.28rem 0.16rem;
  /* border-radius: 0.2rem; */
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12);
}

.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(--primary);
  left: 50%;
  margin-left: -5px;
  top: -5px;
} */

#globalnav .gn-link:after {
  content: "";
  position: absolute;
  width: 0;

  height: 1px;
  background-color: var(--main-color);
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
  transition: all 0.5s;
}

#globalnav .gn-item.active .gn-link:after {
  width: 100%;
}

.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: 1px 1px 3px rgba(0, 0, 0, 0);
  }

  .dropdown a {
    white-space: nowrap;
    font-size: 14px;
    text-align: left;
  }

  .dropdown:after {
    display: none;
  }
}

/* 底部 */
.footer {
  background: rgba(1, 75, 136, 1);
  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 .wrapper {
  max-width: 90%;
}

.footer .wrapper > .flex-box > .flex-box-left {
  width: 30%;
}

.footer .wrapper > .flex-box > .flex-box-right {
  width: 70%;
}

.footer-ft-inner {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(231, 231, 231, 1);
  padding: 0.32rem 0;
}

.footer-ft-right {
  display: flex;
  gap: 0.16rem;
}

.footer-hd {
  padding: 0.6rem 0.4rem 0.6rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bd {
  padding: 0.6rem 0.4rem 0.6rem 0.6rem;
}

.footer-bd-inner {
  padding: 0.8rem 0 0.4rem;
  display: flex;
  justify-content: space-between;
}

.footer-nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.footer-nav .fn-col {
  line-height: 2;
  font-size: 0.16rem;
}

.footer-nav .fn-col h3 {
  color: rgba(255, 255, 255, 1);
  font-size: var(--font18);
  font-weight: bold;
  margin-bottom: 0.08rem;
}

.footer-nav .fn-col h3 a {
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s;
}

.footer-nav .fn-col li {
  font-size: var(--font16);
}

.footer-nav .fn-col li a {
  transition: color 0.3s;
  color: rgba(255, 255, 255, 0.8);
}

.footer-nav .fn-col li a:hover {
  text-decoration: underline;
  color: rgba(255, 255, 255, 1);
}

.social-share {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.social-share .item {
  position: relative;
}

.social-share .item-hd {
  cursor: pointer;
  transition: all 0.3s;
}

.social-share .item-hd img {
  height: var(--icon40);
}

.social-share .item-hd:hover {
  opacity: 0.8;
}

.social-share .item-bd {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.6rem;
  width: 1.2rem;
}

.social-share .item-bd img {
  width: 100%;
}

.qr-list {
  display: flex;
  gap: 0.24rem;
  position: relative;
  margin-top: -0.12rem;
}

.footer .qrcode {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .qrcode .qrcode-bd img {
  width: 1.2rem;
}

.footer .qrcode .qrcode-ft {
  margin-top: 0.16rem;
}

.footer-contact {
  margin-top: 0.44rem;
}

.footer-contact .title {
  color: rgba(255, 255, 255, 1);
  font-size: var(--font16);
  margin-bottom: 0.12rem;
}

.footer-contact .desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font16);
  line-height: 2;
}

.footer-contact .desc a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}

.footer-contact .desc a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-contact .desc p {
  margin-bottom: 0.08rem;
}

.footer-logo {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.15rem;

  color: rgba(255, 255, 255, 1);
  font-size: var(--font20);
}

.footer-logo img {
  width: 0.96rem;
}

.footer-legal {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.14rem;
  line-height: 2;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 1);
}

@media only screen and (max-width: 767px) {
  .footer-hd {
    padding: 24px 0 0 0;
  }

  .footer-logo {
    margin-bottom: 24px;
  }

  .social-share {
    display: none;
  }

  .footer {
    font-size: 12px;
  }

  .footer .wrapper {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }

  .footer-bd {
    display: none;
  }

  .footer-ft {
    padding: 16px 0;
    font-size: 12px;
  }

  .beian,
  .copyright {
    margin-bottom: 4px;
  }

  .footer-legal {
    font-size: 12px;
  }
}

/* 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);
}

.divider {
  width: 1px;
  height: 0.16rem;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0 0.16rem;
  margin-top: 0.02rem;
}

.lang-box {
  position: relative;
  z-index: 999;
}

.lang-dropdown-trigger {
  box-sizing: border-box;
  padding: var(--gn-item-padding);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.16rem;
  font-size: var(--font18);
  color: var(--r-globalnav-color);
}

.lang-dropdown-trigger svg {
  width: var(--icon28);
  height: var(--icon28);
}

.lang-dropdown-trigger .icon {
  width: 0.2rem;
  height: 0.2rem;
  transform: rotate(180deg);
  font-size: 12px;
  line-height: 0.2rem;
  text-align: center;
}

.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) {
  .divider {
    height: 14px;
    margin: 0 16px;
    margin-top: 1px;
  }

  .lang-box {
    display: none;
  }

  #globalnav .gn-item-lang {
    display: block;
  }
}

.row {
  padding-bottom: var(--padding100);
}

.list-with-dot {
  --dot-size: 0.06rem;
}

.list-with-dot p {
  position: relative;
  padding-left: 0.24rem;
}

.list-with-dot p::after {
  box-sizing: border-box;
  content: "";
  position: absolute;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background-color: currentColor;
  left: 0.04rem;
  top: 0.15rem;
}

@media only screen and (max-width: 767px) {
  .list-with-dot {
    --dot-size: 4px;
  }

  .list-with-dot p {
    position: relative;
    padding-left: 16px;
  }

  .list-with-dot p::after {
    left: 2px;
    top: 10px;
  }
}

.swiper-area {
  position: relative;
  padding-bottom: 0.6rem;
}

/* 搜索 */
.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);
  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?v=1");
  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);
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .footer .wrapper {
    max-width: 98%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .footer .wrapper > .flex-box {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .footer .wrapper > .flex-box > .flex-box-left {
    width: 100%;
  }

  .footer .wrapper > .flex-box > .flex-box-right {
    width: 100%;
    border-right: 0 none;
  }

  .footer-bd {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 24px;
    margin-bottom: 24px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-legal {
    margin-top: 0;
  }

  .footer-hd {
    padding-top: 0;
    padding-right: 0;
    display: flex;
    border-right: 0 none;
  }

  .footer-hd > div {
    width: 50%;
  }
}
