:root {
  --content-padding: 24px;
  --content-width: 1580px;
  --footer-content-width: 1530px;
  --linear-gradient: linear-gradient(135deg, #b30505, #da0000 100%);

  --swiper-theme-color: #da0000;
  --primary-color: #da0000;
  --main-color: #da0000;
  --link-color: #da0000;

  --ant-font-size: 14px;
  --ant-font-size-sm: 12px;
  --ant-font-size-lg: 0.16rem;
  --ant-font-size-xl: 0.18rem;

  --ant-font-size-heading-1: 0.36rem;
  --ant-font-size-heading-2: 0.32rem;
  --ant-font-size-heading-3: 0.24rem;
  --ant-font-size-heading-4: 0.22rem;
  --ant-font-size-heading-5: 0.2rem;

  --ant-padding-xxs: 4px;
  --ant-padding-xs: 8px;
  --ant-padding-sm: 12px;
  --ant-padding: 16px;
  --ant-padding-md: 0.2rem;
  --ant-padding-lg: 0.24rem;
  --ant-padding-xl: 0.32rem;
  --ant-padding-xxl: 0.48rem;
  --ant-margin-xxs: 4px;
  --ant-margin-xs: 8px;
  --ant-margin-sm: 12px;
  --ant-margin: 16px;
  --ant-margin-md: 0.2rem;
  --ant-margin-lg: 0.24rem;
  --ant-margin-xl: 0.32rem;
  --ant-margin-xxl: 0.48rem;

  --text-color: rgba(255, 255, 255, 0.9);

  --ant-box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.06), 0 3px 6px -4px rgba(0, 0, 0, 0.1),
    0 9px 28px 8px rgba(0, 0, 0, 0.03);
}

.h {
  color: #da0000 !important;
}

body {
  color: rgba(255, 255, 255, 1);
  background-color: rgba(0, 0, 0, 1);
  font-family: Microsoft YaHei, Arial, Helvetica, sans-serif;
  font-size: 0.18rem;
  line-height: 1.5;
}

.theme-dark a {
  color: rgba(255, 255, 255, 1);
}

@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;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-flex-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-flex-end {
  justify-content: flex-end;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-space-around {
  justify-content: space-around;
}

.justify-space-evenly {
  justify-content: space-evenly;
}

.align-flex-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-flex-end {
  align-items: flex-end;
}

.mod {
  --mod-title-font-size: 0.36rem;
  --mod-subtitle-font-size: 0.18rem;
  --mod-title-color: rgba(255, 255, 255, 1);
  --mod-subtitle-color: rgba(255, 255, 255, 0.6);
}

.theme-light .mod {
  --mod-title-color: rgba(0, 0, 0, 1);
  --mod-subtitle-color: rgba(0, 0, 0, 0.6);
}

.mod .mod-hd {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 0.56rem;
}

.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 {
  max-width: 828px;
  text-align: center;
  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;
}

@media only screen and (max-width: 767px) {
  :root {
    --content-padding: 20px;
  }

  .mod {
    --mod-title-font-size: 20px;
    --mod-subtitle-font-size: 14px;
  }

  .mod .mod-hd {
    margin-bottom: 24px;
  }
}

.wrapper {
  box-sizing: content-box;
  margin: 0 auto;
  max-width: var(--content-width);
  padding: 0 var(--content-padding, 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-right: 0 !important;
    margin-bottom: 24px;
  }

  .flex-box .flex-box-right {
    width: 100% !important;
    padding-left: 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;
    color: #000;
  }
  .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);
  display: none;
  top: 80%;
  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;
  display: none;
}

.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 .wrapper {
  max-width: var(--footer-content-width);
}

.footer {
  background: rgba(15, 15, 15, 1);
  color: rgba(255, 255, 255, 1);
}

.footer a {
  color: rgba(255, 255, 255, 1);
  transition: color 0.3s;
}

.footer a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-ft {
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 1);
}

.footer-ft a {
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s;
}

.footer-hd a:hover,
.footer-ft a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}

.footer-hd-inner,
.footer-bd-inner,
.footer-ft-inner {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

.footer-hd-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.6rem;
  padding-bottom: 0.28rem;
}

.footer-bd-inner {
  padding-top: 0.48rem;
}

.footer-ft-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.32rem;
  padding-bottom: 0.32rem;
}

.footer-logo {
}

.footer-logo img {
  width: 1.5rem;
}

.footer-contact {
  box-sizing: border-box;
  padding-left: 0.12rem;
  font-size: 0.2rem;
}

.footer-nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.footer-nav .fn-col {
}

.footer-nav .fn-col h3 {
  color: rgba(255, 255, 255, 1);
  font-size: 0.2rem;
  font-weight: bold;
  margin-bottom: 0.16rem;
}

.footer-nav .fn-col h3 a {
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s;
}

.footer-nav .fn-col li {
  font-size: 0.16rem;
  margin-bottom: 0.12rem;
}

.footer-nav .fn-col li a {
  color: rgba(255, 255, 255, 1);
  transition: color 0.3s;
}

.footer-nav .fn-col li a:hover {
  text-decoration: underline;
  color: rgba(255, 255, 255, 1);
}

.social-share-wrap {
  margin-top: 0.88rem;
}

.social-share-hd {
  color: rgba(255, 255, 255, 1);
  font-size: 0.16rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.social-share-bd {
  display: flex;
  flex-wrap: wrap;
}

.social-share-bd .item {
  box-sizing: border-box;
  padding-right: 0.16rem;
  margin-bottom: 0.08rem;
}

.social-share-bd a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background-color: rgba(76, 78, 100, 0.18);
  transition: background-color 0.3s;
}

.social-share-bd a:hover {
  background-color: rgba(76, 78, 100, 0.5);
  transition: background-color 0.3s;
}

.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;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  .footer {
    font-size: 12px;
  }

  .footer .wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-hd {
    display: none;
  }

  .footer-bd {
    display: none;
  }

  .beian,
  .copyright {
    margin-bottom: 4px;
  }

  .footer-ft {
    font-size: 12px;
  }

  .footer-ft-inner {
    padding: 20px 0;
    flex-wrap: wrap;
  }
}

/* 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;
}

@media only screen and (max-width: 767px) {
  .divider {
    height: 14px;
    margin: 0 16px;
    margin-top: 1px;
  }
}

.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: 0.12rem;
  color: #fff;
  font-size: 0.16rem;
  line-height: 0.27rem;
  color: var(--r-globalnav-color);
}

.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) {
  .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);
  }
}

/* 搜索 */
.header-search {
  box-sizing: border-box;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--global-header-height);
  cursor: pointer;
  width: 0.6rem;
  margin-right: 0.12rem;
  transition: all 0.3s;
  color: var(--r-globalnav-color);
}

.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: -800px;
  left: 0;
  width: 100%;
  height: 64vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
  transition: all 0.5s;
  box-sizing: border-box;
  padding: 28vh 20px 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.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);
  }
}

.news-area {
  position: relative;
  padding-bottom: 0.6rem;
  padding-top: 0.2rem;
}

.news-list-item {
  box-sizing: border-box;
  transition: all 0.3s;
  border-radius: 0.16rem;
  box-shadow: 0rem 0.04rem 0.19rem 0rem rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.news-list-item a {
  display: block;
  border-radius: 0.16rem;
}

.news-list-item .pic,
.news-list-item .pic img {
  border-radius: 0.16rem 0.16rem 0 0;
}

.news-list-item .meta {
  box-sizing: border-box;
  padding: 0.36rem 0.48rem 0.24rem;
}

.news-list-item .title {
  transition: all 0.3s;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.2rem;
  line-height: 1.5;
}

.news-list-item .date {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.2rem;
  margin-bottom: 0.1rem;
}

.news-list-item .desc {
  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, 0.8);
  font-size: 0.2rem;
  line-height: 1.5;
}

.news-list-item:hover {
  background: var(--main-color);
}

.news-list-item:hover .date,
.news-list-item:hover .title,
.news-list-item:hover .desc {
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .news-list-item .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    overflow: hidden;
    height: 0.6rem;
  }
}

@media only screen and (max-width: 767px) {
  #globalheader .btn-contact {
    display: none;
  }

  .header-avatar-actions {
    font-size: 14px;
  }

  .news-area {
    padding-bottom: 40px;
  }

  .news-list-item .meta {
    padding: 20px;
  }

  .news-list-item .title {
    font-size: 16px;
  }

  .news-list-item .date {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .news-list-item .desc {
    font-size: 14px;
  }
}

.access-row {
  display: none;
}

.access-list-wrap {
  padding-bottom: 0.84rem;
  padding-top: 0.84rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.access-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.16rem;
}

.access-list li {
  box-sizing: border-box;
  width: 25%;
  padding: 0 0.16rem;
}

.access-list li a {
  display: block;
}

.access-list li .wrap {
  box-sizing: border-box;
  border-radius: 0.16rem;
  background: rgba(34, 33, 36, 1);
  height: 1.8rem;
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
  transition: all 0.3s;
}

.access-list li .title {
  color: rgba(255, 255, 255, 1);
  font-size: 0.24rem;
  margin-bottom: 0.08rem;
  transition: color 0.3s;
}

.access-list li .more {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.18rem;
  transition: color 0.3s;
}

.access-list li .icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.2rem;
}

.access-list li .icon img {
  width: 100%;
  height: 100%;
}

.access-list li:hover .wrap {
}

.access-list li:hover .title {
  color: var(--main-color);
}

.access-list li:hover .more {
  color: rgba(255, 255, 255, 1);
}

@media only screen and (max-width: 767px) {
  .access-list-wrap {
    padding-bottom: 24px;
    padding-top: 0;
  }

  .access-list {
    margin: 0 -4px;
  }

  .access-list li {
    width: 50%;
    padding: 0 4px;
    margin-bottom: 8px;
  }

  .access-list li .wrap {
    height: 88px;
    padding-left: 12px;
  }

  .access-list li .title {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .access-list li .more {
    font-size: 12px;
  }

  .access-list li .icon {
    width: 44px;
    height: 44px;
    margin-right: 16px;
  }
}
/* logo */
#globalnav .logo {
  box-sizing: border-box;
  display: block;
  transition: all 0.3s;
  flex: none;
  width: var(--global-logo-width);
  height: var(--global-logo-height);
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: auto 100%;
  background-image: var(--global-logo-url);
  position: relative;
  z-index: 998;
}

@media only screen and (max-width: 767px) {
  #globalnav .logo {
    margin-top: 8px;
  }
}

.swiper-pagination-bullet,
.swiper-button-next,
.swiper-button-prev {
  user-select: none;
}

#globalnav #gn_03 {
  position: static;
}
.proMenuDown {
  position: absolute;
  width: 100%;
  left: 0;
  line-height: initial;
  background: #fff;
  border-top: 1px solid #d5d5d5;
  display: none;
  z-index: 8;
  top: var(--global-header-height);
}
.proMenuDown .container {
  max-width: 86%;
  margin: 0 auto;
}
.proNavList {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.proNavList .hd {
  width: 15%;
}
.proNavList {
  display: flex;
  align-items: flex-start;
}
/*.proNavList .hd dd {margin-bottom: 20px;}*/
.proNavList .hd dd .smtit {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 10px;
}
.proNavList .hd dd a {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.proNavList .hd dd a span {
  font-size: 0.16rem;
  color: rgba(0, 0, 0, 0.85);
}
.proNavList .hd dd a .imgBox {
  width: 20px;
  height: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proNavList .hd dd a .imgBox img {
  max-width: 100%;
  object-fit: contain;
  max-height: 100%;
  display: none;
}
.proNavList .hd dd.on a {
  background-color: hsla(0, 0%, 59.2%, 0.1);
}
.proNavList .bd {
  width: 82%;
}
.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;
}

.floatbutton {
  position: fixed;
  right: 0.2rem;
  bottom: 1.2rem;
  z-index: 999;
  width: 0.6rem;
}

.floatbutton .fb-item {
  box-sizing: border-box;
  position: relative;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0.2rem;
}

.floatbutton .fb-item .fb-item-hd {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fafafa;
  border: 0.02rem solid #ffffff;
  box-shadow: 0.02rem 0.02rem 0.06rem 0px rgba(169, 169, 169, 0.5);
}

.floatbutton .fb-item:hover .fb-item-hd {
  border-color: #f2f2f2;
}

.floatbutton .fb-item.goinfo .fb-item-hd {
  background: var(--main-color);
}

.floatbutton .fb-item .fb-item-bd {
  display: none;
  padding-right: 0.16rem;
}

.floatbutton .fb-item:hover .fb-item-bd {
  display: block;
}

.floatbutton .fb-item.goinfo .fb-item-bd {
  position: absolute;
  right: 0.6rem;
  bottom: -0.9rem;
}

.floatbutton .fb-item.goinfo ul {
  box-sizing: border-box;
  position: relative;
  background: #fff;
  border-radius: 0.04rem;
  /* box-shadow: 1px 1px 10px #d9d9d9; */
  padding: 0.08rem 0.2rem 0;
  box-shadow: 0.02rem 0.02rem 0.06rem 0px rgba(169, 169, 169, 0.5);
  width: 2.62rem;
}

.floatbutton .fb-item.goinfo ul:after {
  content: "";
  height: 100%;
  position: absolute;
  right: -0.14rem;
  top: 0;
  width: 0.14rem;
}

.floatbutton .fb-item.goinfo ul:before {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAArCAMAAABcrBizAAAAXVBMVEUAAAD9/f39/f3U1NSUlJT19fX09PTt7e3o6OjPz8+mpqb////4+Pj39/fy8vLOzs7////7+/v+/v77+/v7+/v5+fn4+Pj6+vr29vbs7Oze3t7x8fHd3d3Kysr/////fX9XAAAAHnRSTlMA4vAvBpqLb00zDeCnh3wr8NPRxLSnlnNgXlVQQxQmzti4AAAAmElEQVQ4y5XSSQ7CQAxEUbs7UyckYZ6p+x+TBQIWxF/ib9/Gssr0araF3tgSHghTBaiGUHfCoQDKM6D8UsUoNT2gvABq3QJKqx5QngGlkVD7DCjvAKWRUD4Dym+ASoQD4OkRYjrH126zhXiMP5Q6C3GXLcTJPi28/NvvDiJMU7y+TbEQa1h8YzHWFqMbYAvoBlgTXgmrv/EJtQJMppM/KroAAAAASUVORK5CYII=);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 0.2rem;
  position: absolute;
  right: -0.11rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.16rem;
}

.floatbutton .fb-item.goinfo ul li {
  position: relative;
  border-bottom: 1px solid #f1f1f1;
  padding: 0.12rem 0.08rem;
  font-size: 0.18rem;
  color: #333333;
}

.floatbutton .fb-item.goinfo ul li .desc {
  color: var(--main-color);
  font-size: 0.18rem;
  margin-top: 0.04rem;
}

.floatbutton .fb-item.goinfo ul li .desc a {
  color: var(--main-color);
}

.floatbutton .fb-item.goinfo ul li .desc a:hover {
  text-decoration: underline;
}

.floatbutton .fb-item.goinfo ul li:last-child {
  border-bottom: 0;
}

.floatbutton .fb-item.goinfo ul li.phone .title,
.floatbutton .fb-item.goinfo ul li.mail .title {
  background-repeat: no-repeat;
  background-position: 0 50%;
  padding-left: 0.32rem;
}

.floatbutton .fb-item.goinfo ul li.phone .title {
  background-image: url("../images/float/phone.svg");
  background-size: 0.18rem auto;
}

.floatbutton .fb-item.goinfo ul li.mail .title {
  background-image: url("../images/float/email.svg");
  background-size: 0.2rem auto;
}

.floatbutton .fb-item.goinfo ul li .other-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.16rem;
  padding: 0.04rem 0;
  color: #333333;
}

.floatbutton .fb-item.goinfo ul li .other-link .icon-arrow img {
  width: 0.08rem;
}

.floatbutton .fb-item.goinfo .fb-item-hd img {
  width: 0.26rem;
}

.floatbutton .fb-item.gotop .fb-item-hd img {
  width: 0.2rem;
}

.floatbutton .hide {
  border: 0;
  height: 0;
  margin-top: -0.2rem;
  opacity: 0;
}

@media only screen and (max-width: 768px) {
  .floatbutton {
    width: 36px;
    right: 6px;
  }

  .floatbutton .fb-item {
    width: 36px;
    height: 36px;
  }

  .floatbutton .fb-item .fb-item-bd {
    padding-right: 12px;
  }

  .floatbutton .fb-item.goinfo .fb-item-bd {
    right: 36px;
    bottom: -64px;
  }

  .floatbutton .fb-item.goinfo ul {
    width: 200px;
  }

  .floatbutton .fb-item.goinfo ul li {
    padding: 4px;
    font-size: 14px;
  }

  .floatbutton .fb-item.goinfo ul li .desc {
    font-size: 16px;
    margin-top: 0;
  }

  .floatbutton .fb-item.goinfo ul li.phone .title,
  .floatbutton .fb-item.goinfo ul li.mail .title {
    padding-left: 20px;
  }

  .floatbutton .fb-item.goinfo ul li.phone .title {
    background-size: 12px auto;
  }

  .floatbutton .fb-item.goinfo ul li.mail .title {
    background-size: 14px auto;
  }

  .floatbutton .fb-item.goinfo ul li .other-link {
    font-size: 14px;
    padding: 4px 0;
  }

  .floatbutton .fb-item.goinfo ul li .other-link .icon-arrow img {
    width: 6px;
  }

  .floatbutton .fb-item.goinfo .fb-item-hd img {
    width: 16px;
  }

  .floatbutton .fb-item.gotop .fb-item-hd img {
    width: 12px;
  }
}
