.h {
  color: #fb1314 !important;
}

body {
  color: rgba(51, 51, 51, 1);
  font-family: Arial, Helvetica, "microsoft yahei", "pingfang", sans-serif;
  /* font-family: "HarmonyOS Sans SC", "Open Sans", "microsoft yahei", "pingfang", arial !important; */

  font-size: var(--font16);
  line-height: 1.5;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  box-shadow: 0 0 0 1000px white inset !important;
}
@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.36rem;
  --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 {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 0.36rem;
}

.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.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;
}

.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);
}

.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%;
}

/* + */
.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.4);
  display: none;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 1.2rem;
  padding: 0.16rem;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12);
  border-radius: var(--border-radius);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.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;
  display: none;
}

.dropdown a {
  box-sizing: border-box;
  transition: all 0.3s;
  white-space: nowrap;
  color: #333;
  display: block;
  text-align: center;
  padding: 0.12rem;
  border-radius: 0.1rem;
  font-size: 0.16rem;
}

.dropdown a:hover {
  color: #fff;
  background: linear-gradient(to right, var(--gradient-from) 0, var(--gradient-to) 100%);
  border-radius: var(--border-radius);
}

@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;
    padding: var(--padding20);
  }
}

/* 底部 */
.footer {
  box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 1);
}

.footer a {
  transition: color 0.3s;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-ft {
  font-size: 0.16rem;
  padding: 0.2rem 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.48rem 0 0.36rem;
}

.footer-bd-left {
  display: flex;
  padding-right: 10%;
}

.footer-contact {
  padding-right: 10%;
}

.footer-logo {
  margin-bottom: 0.28rem;
}

.footer-nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.footer-nav .fn-col {
}

.footer-nav .fn-col h3 {
  color: var(--main-color);
  font-size: 0.18rem;
  margin-bottom: 0.12rem;
}

.footer-nav .fn-col h3 a {
  color: var(--main-color);
  transition: all 0.3s;
}

.footer-nav .fn-col li {
  margin-bottom: 0.08rem;
  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;
}

.footer .qrcode .qrcode-bd {
  width: 1.48rem;
  display: flex;
  justify-content: center;
}

.footer .qrcode .qrcode-bd img {
    max-width: 100%;
}

.footer .qrcode .qrcode-ft {
  margin-top: 0.04rem;
  font-size: var(--font16);
}

@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;
  }
}

/* 搜索 */
.header-search {
  max-width: 168px;
  box-sizing: border-box;
  z-index: 999;
  border-radius: 998px;
  background: rgba(255, 255, 255, 1);
  color: rgba(85, 85, 85, 1);
  padding-right: 4px;
  margin-right: 4px;
  border: 1px solid var(--r-globalnav-color-reverse);
}

.header-search form {
  display: flex;
  align-items: center;
}

.globalsearch .search-input {
  box-sizing: border-box !important;
  width: calc(100% - 24px);
  height: 24px;
  font-size: 12px;
  line-height: 24px;
  margin: 0 11px;
}

.globalsearch .search-btn {
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  border: 0;
  text-align: center;
  background: url("../images/icons/search.svg") 50% 50% no-repeat;
  background-size: 17px;
}

@media only screen and ((max-width: 767px)) {
  .header-search {
    display: none;
  }

  .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);
  }
}

.lang-dropdown-trigger a {
  color: var(--r-globalnav-color);
}

.lang-box {
  position: relative;
  z-index: 999;
}

.lang-dropdown-trigger {
  box-sizing: border-box;
  padding: 0.2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 12px;
  line-height: 17px;
  color: var(--r-globalnav-color);
}

.lang-dropdown-trigger .txt-area {
  display: flex;
  align-items: center;
}

.lang-dropdown-trigger .txt-area .divider {
  width: 1px;
  height: 8px;
  background-color: var(--r-globalnav-color);
  margin-top: 3px;
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
}

.lang-dropdown-trigger .icon {
  width: 17px;
  height: 17px;
}

.lang-dropdown-trigger .icon svg {
  width: 100%;
  height: 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 .gn-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#globalnav .fluid-wrapper {
  box-sizing: border-box;
  width: 100%;
  padding: 0 var(--safe-area-inset, 20px);
}

@media only screen and (max-width: 1200px) {
  #globalnav .fluid-wrapper {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 767px) {
  #globalnav .fluid-wrapper {
    padding: 0 !important;
  }
}

#globalnav.hidden {
  opacity: 0;
}

.floatbutton {
  --w: 2.14rem;
  --item-w: 1.52rem;

  transition: all 0.3s;
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 99;
}

.floatbutton .fb-item {
  transform: var(--item-w);
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0.2rem 0.16rem;
  border-radius: 0.1rem 0px 0px 0.1rem;
  box-shadow: 0px 0px 0.15rem 0px rgba(0, 0, 0, 0.15);
  background: linear-gradient(
    270deg,
    rgba(210, 231, 232, 1),
    rgba(255, 255, 255, 1) 21.097%,
    rgba(255, 255, 255, 1) 100%
  );
  display: flex;
  gap: 0.08rem;
  width: var(--w);
}

.floatbutton .fb-item .fb-item-hd {
  box-sizing: border-box;
}

.floatbutton .fb-item .fb-item-hd img {
  width: 0.2rem;
}

.floatbutton .fb-item .fb-item-bd {
  transition: all 0.3s;
}

.floatbutton .fb-item ul li {
  width: var(--item-w);
  box-sizing: border-box;
  background-color: var(--main-color);
  margin-bottom: 0.06rem;
  color: rgba(255, 255, 255, 1);
  font-size: var(--font16);
  line-height: 1.75;
  padding: 0.08rem 0.08rem 0.08rem 0.16rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0.08rem;
}

.floatbutton .fb-item ul li a {
  color: rgba(255, 255, 255, 1);
}

.floatbutton .fb-item ul li:last-child {
  margin-bottom: 0;
}

.floatbutton .fb-item ul li .title {
  display: flex;
  align-items: center;
  gap: 0.12rem;
}

.floatbutton .hide {
  /* border: 0;
  height: 0;
  margin-top: -0.2rem;
  opacity: 0; */
}

.hidden .floatbutton {
  right: calc(var(--item-w) * -1 - 0.08rem);
}

.hidden .floatbutton .fb-item .fb-item-bd {
  display: none;
}

@media only screen and (max-width: 768px) {
}

@media only screen and (max-width: 767px) {
  .floatbutton {
    --w: 132px;
    --item-w: 92px;
  }

  .floatbutton .fb-item .fb-item-hd img {
    width: 16px;
  }
}

.culture-row {
  box-sizing: border-box;
  padding-top: 2rem;
  height: calc(100vh - var(--global-header-height));
}

.culture-row .mod .mod-hd h3 {
  color: #fff;
}

.culture-row,
.home .index_05 {
  background-image: url("../images/home/bg5.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.culture-row .wrapper,
.home .index_05 .wrapper {
  max-width: 1735px;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
}

.culture-list {
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  /* background-image: url("../images/home/line.png"); */
  height: 2.44rem;
  width: 100%;
  position: relative;
  display: flex;
  /* justify-content: space-between; */
  margin-top: 6vh;
}

.culture-list > li {
  box-sizing: border-box;
}

.culture-list > li:nth-child(1) {
  width: 36%;
  padding-left: 2.15rem;
}

.culture-list > li:nth-child(2) {
  width: 38%;
}

.culture-list > li:nth-child(3) {
  width: 26%;
}

.culture-list > li:nth-child(1) .culture-list-item::after {
  width: 2.15rem;
  background-image: url("../images/home/line/line1.png");
}

.culture-list > li:nth-child(2) .culture-list-item::after {
  width: 3.08rem;
  background-image: url("../images/home/line/line2.png");
}

.culture-list > li:nth-child(3) .culture-list-item::after {
  width: 8.42rem;
  background-image: url("../images/home/line/line3.png");
  right: 0;
}

.culture-list-item {
  box-sizing: border-box;
  position: relative;
}

.culture-list-item::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
  height: 2.43rem;
}

.culture-list-item .meta {
  padding-top: 0.8rem;
  padding-left: 0.16rem;
}

.culture-list-item .title {
  color: rgba(255, 255, 255, 1);
  font-size: var(--font36);
}

.culture-list-item .desc {
  color: rgba(255, 255, 255, 1);
  font-size: var(--font18);
  line-height: 2;
  max-width: 4.48rem;
}

@media only screen and (max-width: 1600px) {
  .culture-list > li:nth-child(2) {
    width: 35%;
  }

  .culture-list > li:nth-child(3) {
    width: 27%;
  }

  /* .culture-list > li:nth-child(2) .culture-list-item .meta {
    padding-left: 0.6rem;
  } */
}

/*

.culture-list > li {
  position: absolute;
  top: 33.5%;
  max-width: 4.48rem;
}


.culture-list > li:nth-child(1) {
  left: 13%;
}

.culture-list > li:nth-child(2) {
  left: 36.8%;
}

.culture-list > li:nth-child(3) {
  left: 75%;
} */

@media only screen and (max-width: 1210px) {
  .culture-list > li:nth-child(3) .culture-list-item .meta {
    padding-left: 0.6rem;
  }
}

@media only screen and (max-width: 1100px) {
  .culture-list > li:nth-child(3) .culture-list-item .meta {
    padding-left: 0.4rem;
  }
}

@media only screen and (max-width: 1024px) {
  .culture-list {
    height: auto;
    flex-wrap: wrap;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .culture-list > li {
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 20px;
  }

  .culture-list-item::after {
    display: none;
  }

  .culture-list-item .meta {
    padding: 0;
  }

  .culture-list-item .title {
  }

  .culture-list-item .desc {
    max-width: 100%;
  }

  .culture-list > li:nth-child(3) .culture-list-item .meta {
    padding-left: 0;
  }
}
