@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
  position: relative;
  /* 设置滚动条的样式 */
  /* 滚动槽 */
  /* 滚动条滑块 */
}

html ::-webkit-scrollbar,
body ::-webkit-scrollbar {
  width: 12px;
}

html ::-webkit-scrollbar-track,
body ::-webkit-scrollbar-track {
  background: transparent;
}

html ::-webkit-scrollbar-thumb,
body ::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
}

html ::-webkit-scrollbar-thumb:hover,
body ::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

.mainnav-container {
  width: 100%;
  height: 120px;
  position: fixed;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 999;
}

.mainnav-container .nav-bottle {
  width: 100%;
  height: 100%;
  position: relative;
}

.mainnav-container .mainnav-plate {
  width: 1380px;
  margin: 0 auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mainnav-container .mainnav-plate .links-plate {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mainnav-container .mainnav-plate .links-plate .home-and-logo-box {
  height: 100%;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
}

.mainnav-container .mainnav-plate .links-plate .home-and-logo-box .icon-logo-font {
  font-size: 24px;
  color: #FFF;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.mainnav-container .mainnav-plate .links-plate .links-item-box {
  height: 100%;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
  cursor: pointer;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.mainnav-container .mainnav-plate .links-plate .links-item-box:hover p {
    opacity: 1;
}

.mainnav-container .mainnav-plate .links-plate .links-item-box p {
  text-align: center;
  color: inherit;
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.mainnav-container .mainnav-plate .login-btn {
  height: 40px;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.mainnav-container .mainnav-plate .login-btn:hover {
  background: rgba(0, 0, 0, 0.3);
}

.mainnav-container .mainnav-plate .login-btn:hover p {
  opacity: 1;
}

.mainnav-container .mainnav-plate .login-btn p {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #FFF;
  opacity: 0.7;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.mainnav-container .mainnav-plate .h5-switch {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: none;
}

.mainnav-container .mainnav-plate .h5-switch .switch-row {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.mainnav-container .mainnav-plate .h5-switch .first {
  -webkit-transform: translate(-50%, calc(-50% + 4px));
          transform: translate(-50%, calc(-50% + 4px));
}

.mainnav-container .mainnav-plate .h5-switch .last {
  -webkit-transform: translate(-50%, calc(-50% - 4px));
          transform: translate(-50%, calc(-50% - 4px));
}

.mainnav-container .mainnav-plate .h5-switch .switch-up {
  position: absolute;
  width: 22px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(225deg);
          transform: translate(-50%, -50%) rotateZ(225deg);
  margin: 0;
}

.mainnav-container .mainnav-plate .h5-switch .switch-down {
  position: absolute;
  width: 22px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(-225deg);
          transform: translate(-50%, -50%) rotateZ(-225deg);
  margin: 0;
}

.product-menu-switch,
.help-switch {
  position: relative;
}

.submenu-products {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transform: translateX(-60px);
          transform: translateX(-60px);
  overflow: hidden;
  cursor: default;
}

.submenu-products .submenu-plate {
  background: rgba(242, 242, 242, 0.8);
  border-radius: 10px;
  margin-top: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-backdrop-filter: saturate(170%) blur(20px);
          backdrop-filter: saturate(170%) blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.submenu-products .submenu-plate .prodcut-item:last-child {
  border: none;
}

.submenu-products .submenu-plate .prodcut-item {
  width: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #000;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.submenu-products .submenu-plate .prodcut-item:hover img {
  -webkit-animation: imgup 0.5s ease;
          animation: imgup 0.5s ease;
}

@-webkit-keyframes imgup {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes imgup {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.submenu-products .submenu-plate .prodcut-item:hover p {
  color: #0071E3;
}

.submenu-products .submenu-plate .prodcut-item img {
  width: 50px;
  height: 50px;
  display: block;
}

.submenu-products .submenu-plate .prodcut-item p {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  margin-top: 2px;
  margin-bottom: 10px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.submenu-help {
  min-width: 100%;
  width: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transform: translateX(-60px);
          transform: translateX(-60px);
  overflow: hidden;
  cursor: default;
}

.submenu-help .submenu-plate {
  background: rgba(242, 242, 242, 0.8);
  border-radius: 10px;
  margin-top: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 35px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-backdrop-filter: saturate(170%) blur(20px);
          backdrop-filter: saturate(170%) blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.submenu-help .submenu-plate .list-box {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 40px;
  white-space: nowrap;
  cursor: default;
}

.submenu-help .submenu-plate .list-box .deve-title {
  font-size: 14px !important;
  color: rgba(0, 0, 0, 0.5) !important;
  font-weight: 900;
  cursor: default;
}

.submenu-help .submenu-plate .list-box a {
  text-decoration: none;
  margin: 8px 0;
  font-size: 14px;
  color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.submenu-help .submenu-plate .list-box a span {
  display: inline-block;
  -webkit-transition: inherit;
  transition: inherit;
}

.submenu-help .submenu-plate .list-box a:hover {
  color: #0071E3;
}

.submenu-help .submenu-plate .list-box a:hover span {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.submenu-help .submenu-plate .list-box .contact-text {
  text-decoration: none;
  margin: 8px 0;
  font-size: 14px !important;
  color: #000 !important;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.no-scroll {
  overflow-y: hidden;
}

.h5-menu-container {
  width: 100%;
  position: absolute;
  top: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFF;
  padding: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  height: 0;
  max-height: calc(100vh - 50px);
  overflow-y: auto;
}

.h5-menu-container .product-links-box .links-title {
  color: #969696 !important;
  margin: 0;
  padding: 25px  0 10px 0;
}

.h5-menu-container .product-links-box .links-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #000;
  padding: 10px 0;
}

.h5-menu-container .product-links-box .links-box .links-box-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
}

.h5-menu-container .product-links-box .links-box .links-box-flex img {
  width: 30px;
  height: 30px;
  display: block;
  margin-right: 10px;
}

.h5-menu-container .product-links-box .links-box .icon-arrow-right-short {
  margin-right: 10px;
}
.h5-menu-container .help-links-box .links-title {
  color: #969696 !important;
  margin: 0;
  padding:  10px 0;
}

.h5-menu-container .help-links-box .links-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #000;
  padding: 15px 0;
}

.h5-menu-container .help-links-box .links-box .links-box-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
}

.h5-menu-container .help-links-box .links-box .icon-arrow-right-short {
  margin-right: 10px;
}

.h5-menu-container .division-row {
  width: 100%;
  height: 1px;
  background: #000;
  opacity: 0.08;
  margin: 15px 0;
}

.h5-menu-container .primary-link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  text-decoration: none;
  color: #000;
}

.h5-menu-container .primary-link .icon-arrow-right-short {
  margin-right: 10px;
}

.this-show {
  height: calc(100vh - 50px);
  padding: 0px 30px 30px;
}

.nav-solid-color-a {
  background: #000;
  color: #FFF !important;
  height: 50px;
}

.nav-solid-color-a .mainnav-plate .links-plate .home-and-logo-box .icon-logo-font{
  color: #FFF !important;
}

.nav-solid-color .mainnav-plate .links-plate .home-and-logo-box .icon-logo-font{
  color: #FFF !important;
}

.nav-solid-color {
  background: #000;
  color: #FFF !important;
  height: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.nav-solid-color .mainnav-plate .login-btn {
  background: rgba(0, 0, 0, 0) !important;
}

.nav-solid-color .mainnav-plate .login-btn:hover p {
  opacity: 1;
}

.is-not-change {
  position: absolute;
  top: 0;
}

.height-prop {
  width: 100%;
  height: 5000px;
  background: linear-gradient(135deg, #ffffff, #f2f2f2);
}

.banner {
  width: 100%;
  height: 800px;
  background-image: url(/src/images/banner.png);
}

.user-info {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}
.user-info:hover {
    cursor: pointer;
}
.user-info img {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    margin-right: 5px;
}
.user-info>p {
    width: auto;
    max-width: 200px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.user-pop {
    width: 180px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 100%;
    left: -30px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    cursor: default;
}
.user-info .user-plate {
    background: rgba(242, 242, 242, 0.8);
    border-radius: 10px;
    margin-top: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: center;
    -webkit-backdrop-filter: saturate(170%) blur(20px);
    backdrop-filter: saturate(170%) blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.user-info .user-plate .list-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: center;
    white-space: nowrap;
    cursor: default;
}

.user-info .user-plate .list-box a {
    height: 50px;
    line-height: 50px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #000;
}

.user-info .user-plate .list-box a:hover {
    color: #0071E3;
}

.menu-show {
    visibility: visible;
    opacity: 1;
}

.links-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.links-title span {
    margin-right: 10px;
    color: #797979;
    transition: .3s;
}
.links-title span.res {
    transform: rotateX(180deg);
}

@media screen and (max-width: 1601px) {
  .mainnav-container .mainnav-plate {
    width: 1200px;
  }
}

@media screen and (max-width: 1441px) {
  .mainnav-container .mainnav-plate {
    width: 860px;
  }
  .submenu-products .submenu-plate {
    width: 510px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .submenu-products .submenu-plate .prodcut-item:nth-child(3n+0) {
    border: none;
  }
  .submenu-products .submenu-plate .prodcut-item {
    width: calc(100% / 3);
    margin: 20px 0;
  }
  .submenu-help {
    -webkit-transform: translateX(-150px);
            transform: translateX(-150px);
  }
}

@media screen and (max-width: 961px) {

    .mainnav-container {
        height: 50px;
    }

  .mainnav-container .mainnav-plate {
    width: calc(100% - 60px);
  }
  .mainnav-container .mainnav-plate .links-plate .links-item-box {
    display: none;
  }
  .mainnav-container .mainnav-plate .login-btn {
    display: none;
  }
  .mainnav-container .mainnav-plate .h5-switch {
    display: block;
  }
    .my-homepage {
        display: flex;
        align-items: center;
    }
    .my-homepage img {
        border-radius: 3px;
        margin-right: 5px;
        width: 25px;
        height: 25px;
    }
    .user-info {
        display: none;
    }
    .roll {
        display: none;
    }
}
/*# sourceMappingURL=header.css.map */
