@font-face {
  font-family: "icomoon";
  src: url("../font/icomoon.eot");
  src:
    url("../font/icomoon.eot?#iefix") format("embedded-opentype"),
    url("../font/icomoon.woff2") format("woff2"),
    url("../font/icomoon.woff") format("woff"),
    url("../font/icomoon.ttf") format("truetype"),
    url("../font/icomoon.svg#icomoon") format("svg");
  font-display: swap;
}

:root {
  --zs-color-primary: #0078c9;
  --zs-color-primary-dark: #005e9f;
  --zs-color-header-top: #016db8;
  --zs-header-top-height: 40px;
  --zs-header-main-height: 93px;
  --zs-color-text: #555555;
  --zs-color-dark: #111111;
  --zs-color-border: #cccccc;
  --zs-color-white: #ffffff;
  --zs-color-black: #000000;
  --zs-color-footer-line: #1a6ea9;
  --zs-color-mobile-dark: #292929;
  --zs-color-highlight: #52b4fc;
  --zs-transition: 0.4s all ease;
  --zs-content-width: 90%;
  --zs-content-max-width: 1680px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--zs-color-text);
  font-family: Arial, Helvetica, "Microsoft YaHei", SimSun, sans-serif;
  font-size: 14px;
  line-height: 1.5714;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--zs-color-white);
}

body.is-scroll-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a,
button,
img,
span,
i,
li,
div::before,
div::after {
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

a {
  color: var(--zs-color-text);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.zs-page {
  overflow-x: hidden;
}

.zs-center {
  width: var(--zs-content-width);
  max-width: var(--zs-content-max-width);
  margin-right: auto;
  margin-left: auto;
}

.zs-icon::before,
.zs-mobile-btn::before,
.zs-search__toggle::before,
.zs-search__field i::before,
.zs-banner__arrow::before,
.zs-go-top::before,
.zs-toolbar__link::before,
.zs-toolbar__btn::before,
.zs-product-mask__close::before,
.zs-chat-box i::before,
.zs-footer__products a::before,
.zs-footer__contact li::before,
.zs-nav__list > li > ul > li > a::before,
.zs-nav__list > li > ul > li > ul > li > a::before {
  font-family: "icomoon", Arial, Helvetica, "Microsoft YaHei", SimSun, sans-serif;
  speak: none;
}

.zs-header {
  position: relative;
  z-index: 30;
  width: 100%;
  background: var(--zs-color-white);
  border-bottom: 1px solid var(--zs-color-border);
}

.zs-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  animation: zs-slide-down 0.35s ease;
}

.zs-header.is-fixed .zs-header__top {
  display: none;
}

.zs-header__top {
  height: var(--zs-header-top-height);
  background: var(--zs-color-header-top);
}

.zs-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.zs-header__slogan {
  color: var(--zs-color-white);
  line-height: 40px;
}

.zs-header__social,
.zs-footer__social ul {
  display: flex;
  gap: 2px;
  align-items: center;
}

.zs-header__social a,
.zs-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 18px;
  color: var(--zs-color-white);
}

.zs-footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--zs-color-white);
  font-size: 22px;
}

.zs-icon--facebook::before {
  content: "\e62c";
}

.zs-icon--linkedin::before {
  content: "\e630";
}

.zs-header__social a:hover::before {
  color: var(--zs-color-primary);
}

.zs-footer__social a:hover::before {
  color: var(--zs-color-highlight);
}

.zs-header__mobile-bar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  display: none;
  width: 100%;
  padding: 0 5px;
  background: var(--zs-color-mobile-dark);
  border-bottom: 1px solid var(--zs-color-white);
}

.zs-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--zs-color-white);
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.zs-mobile-btn--search {
  float: left;
}

.zs-mobile-btn--menu {
  float: right;
}

.zs-mobile-btn::before {
  display: block;
  line-height: 1;
}

.zs-mobile-btn--search::before {
  content: "\e638";
  font-size: 28px;
}

.zs-mobile-btn--menu::before {
  content: "\e637";
  font-size: 36px;
}

.zs-mobile-btn.is-active::before {
  content: "\e60b";
  font-size: 24px;
}

.zs-header__main {
  text-align: right;
}

.zs-header__main-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 14px;
}

.zs-site-title {
  display: inline-block;
  font-size: 100%;
  font-weight: 400;
}

.zs-site-title a {
  display: inline-block;
}

.zs-header__right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
}

.zs-nav {
  position: relative;
  z-index: 2;
}

.zs-nav__list {
  display: inline-flex;
  align-items: flex-start;
  margin-top: 20px;
  margin-right: 35px;
  font-size: 0;
  line-height: 1;
}

.zs-nav__list > li {
  position: relative;
  margin-right: 40px;
}

.zs-nav__list > li:last-child {
  margin-right: 0;
}

.zs-nav__list > li > a {
  position: relative;
  display: block;
  padding: 18px 0;
  color: var(--zs-color-dark);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.zs-nav__list > li > a::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 8px;
  left: 50%;
  height: 2px;
  background: var(--zs-color-primary);
  transition: var(--zs-transition);
}

.zs-nav__list > li:hover > a,
.zs-nav__list > li.is-active > a,
.zs-nav__list > li.is-open > a {
  color: var(--zs-color-primary);
}

.zs-nav__list > li:hover > a::before,
.zs-nav__list > li.is-active > a::before,
.zs-nav__list > li.is-open > a::before {
  right: 0;
  left: 0;
}

.zs-nav__list > li > ul,
.zs-nav__list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: -20px;
  visibility: hidden;
  width: 270px;
  padding: 25px 0;
  text-align: left;
  background: var(--zs-color-white);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: 0.4s all cubic-bezier(1, -0.6, 0.195, 0.34);
}

.zs-nav__list > li > ul > li > ul {
  top: -25px;
  left: 100%;
}

.zs-nav__list > li:hover > ul,
.zs-nav__list > li.is-open > ul,
.zs-nav__list > li > ul > li:hover > ul,
.zs-nav__list > li > ul > li.is-open > ul {
  visibility: visible;
  opacity: 1;
}

.zs-nav__list > li > ul > li,
.zs-nav__list > li > ul > li > ul > li {
  position: relative;
  margin-bottom: 1px;
  line-height: 1.2;
}

.zs-nav__list > li > ul > li:last-child,
.zs-nav__list > li > ul > li > ul > li:last-child {
  margin-bottom: 0;
}

.zs-nav__list > li > ul > li > a,
.zs-nav__list > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 40px 10px 20px;
  color: var(--zs-color-black);
  font-size: 14px;
  text-transform: capitalize;
}

.zs-nav__list > li > ul > li.has-children > a::before,
.zs-nav__list > li > ul > li > ul > li.has-children > a::before {
  content: "\e624";
  position: absolute;
  top: 7px;
  right: 20px;
  font-size: 18px;
}

.zs-nav__list > li > ul > li:hover > a,
.zs-nav__list > li > ul > li.is-open > a,
.zs-nav__list > li > ul > li > ul > li:hover > a,
.zs-nav__list > li > ul > li > ul > li.is-open > a {
  color: var(--zs-color-white);
  background: var(--zs-color-primary);
}

.zs-search {
  position: static;
  margin-top: 30px;
}

.zs-search__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  color: var(--zs-color-primary);
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
}

.zs-search__toggle::before {
  content: "\e618";
}

.zs-search__toggle.is-active::before {
  content: "\e60b";
  font-size: 14px;
}

.zs-search__panel {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 8;
  display: none;
  width: 400px;
  height: 40px;
  margin-top: 1px;
  background: transparent;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.zs-search__panel.is-open {
  display: block;
}

.zs-search__field {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--zs-color-white);
}

.zs-search__field i {
  position: absolute;
  top: 50%;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  color: var(--zs-color-primary);
  font-size: 11px;
  line-height: 1;
  transform: translateY(-50%);
}

.zs-search__field i::before {
  content: "\e618";
}

.zs-search__input {
  width: 100%;
  height: 100%;
  padding: 0 120px 0 45px;
  color: var(--zs-color-black);
  background: #f3f3f3;
  border: 0;
  border-radius: 3px 0 0 3px;
  outline: none;
}

.zs-search__input::placeholder {
  color: #9b9b9b;
}

.zs-search__field label {
  position: absolute;
  top: 50%;
  left: 0;
  display: none;
  padding-left: 30px;
  color: #5f656d;
  text-transform: capitalize;
  transform: translateY(-50%);
}

.zs-search__input:focus + label,
.zs-search__input:not(:placeholder-shown) + label {
  display: none;
}

.zs-search__submit {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0 12px;
  color: var(--zs-color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.zs-search__submit:hover {
  color: var(--zs-color-mobile-dark);
}

.zs-footer {
  background: var(--zs-color-primary-dark);
}

.zs-footer__top {
  padding-top: 2.60417%;
  padding-bottom: 4.16667%;
}

.zs-footer__top-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.zs-footer__about {
  width: 16.07143%;
}

.zs-footer__products,
.zs-footer__contact {
  width: 20.2381%;
}

.zs-footer__title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
  color: var(--zs-color-white);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.zs-footer__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: var(--zs-color-white);
}

.zs-footer__social {
  margin-top: 15.09434%;
}

.zs-footer__products li,
.zs-footer__contact li {
  position: relative;
  margin-bottom: 1px;
  border-bottom: 1px solid var(--zs-color-footer-line);
}

.zs-footer__products li {
  padding: 12px 0;
}

.zs-footer__products li:first-child {
  padding-top: 0;
}

.zs-footer__products a {
  position: relative;
  display: block;
  padding-left: 15px;
  color: var(--zs-color-white);
}

.zs-footer__products a::before {
  content: "\e624";
  position: absolute;
  top: -5px;
  left: 0;
  font-size: 20px;
}

.zs-footer__products a:hover,
.zs-footer__contact a:hover {
  color: var(--zs-color-highlight);
}

.zs-footer__contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  color: var(--zs-color-white);
}

.zs-footer__contact li:first-child {
  padding-top: 0;
}

.zs-footer__contact li::before {
  position: static;
  display: inline-block;
  color: var(--zs-color-white);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.zs-footer__contact li.is-email::before {
  content: "\e6c6";
}

.zs-footer__contact-link {
  color: var(--zs-color-white);
}

.zs-footer__bottom {
  padding-top: 1.04167%;
  padding-bottom: 1.04167%;
  text-align: left;
  border-top: 1px solid #b5d0e3;
}

.zs-footer__support {
  display: inline-block;
  color: var(--zs-color-white);
}

.zs-footer__support a {
  color: var(--zs-color-white);
}

.zs-footer__support a:hover {
  text-decoration: underline;
}

.zs-go-top {
  position: fixed;
  right: 3%;
  bottom: 6%;
  z-index: 40;
  display: block;
  width: 38px;
  height: 38px;
  color: var(--zs-color-white);
  background: var(--zs-color-primary);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.zs-go-top::before {
  content: "\e627";
  font-size: 20px;
}

.zs-go-top.is-visible {
  opacity: 0.6;
  visibility: visible;
  pointer-events: auto;
}

.zs-go-top:hover {
  opacity: 0.9;
}

.zs-toolbar {
  display: none;
}

.zs-product-mask {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.65);
}

.zs-product-mask[hidden] {
  display: none;
}

.zs-product-mask__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--zs-color-white);
}

.zs-product-mask__head {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--zs-color-white);
  background: var(--zs-color-primary);
}

.zs-product-mask__close {
  width: 24px;
  height: 24px;
  color: var(--zs-color-white);
}

.zs-product-mask__close::before {
  content: "\e60b";
  font-size: 20px;
}

.zs-product-mask__body {
  padding: 18px 16px 72px;
}

.zs-product-mask__title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}

.zs-product-mask__title a {
  color: var(--zs-color-primary-dark);
}

.zs-product-mask__list > li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}

.zs-product-mask__list > li > a {
  display: block;
  font-weight: 700;
  color: var(--zs-color-dark);
}

.zs-product-mask__list ul {
  margin-top: 8px;
  padding-left: 12px;
}

.zs-product-mask__list ul li {
  padding: 6px 0;
}

.zs-chat-box {
  position: fixed;
  right: 0;
  bottom: 18%;
  z-index: 41;
}

.zs-chat-box ul {
  margin: 0;
}

.zs-chat-box li {
  display: flex;
  align-items: center;
  min-width: 150px;
  color: var(--zs-color-white);
  background: var(--zs-color-primary);
  border-radius: 4px 0 0 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.zs-chat-box i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--zs-color-white);
}

.zs-chat-box i::before {
  content: "\e6c6";
  font-size: 18px;
}

.zs-chat-box a {
  display: block;
  padding-right: 16px;
  color: var(--zs-color-white);
  line-height: 38px;
}

@keyframes zs-slide-down {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

body.zs-header-fixed {
  padding-top: var(--zs-header-main-height);
}

@media screen and (max-width: 1400px) {
  .zs-nav__list > li {
    margin-right: 25px;
  }
}

@media screen and (max-width: 1366px) {
  .zs-center {
    width: 88%;
  }
}

@media screen and (max-width: 1300px) {
  .zs-center {
    width: 90%;
  }
}

@media screen and (max-width: 1200px) {
  .zs-header__main-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0;
    text-align: center;
  }

  .zs-header__logo,
  .zs-header__right {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .zs-header__right {
    display: block;
    margin-top: 25px;
  }

  .zs-nav__list {
    margin-right: 0;
  }
}

@media screen and (max-width: 1000px) {
  .zs-center {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media screen and (max-width: 875px) {
  .zs-header {
    position: relative;
    top: 0;
    padding-top: 40px;
    text-align: center;
  }

  .zs-header__mobile-bar {
    display: block;
  }

  .zs-header__top {
    position: fixed;
    top: 43px;
    left: 0;
    z-index: 59;
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 0;
    line-height: 30px;
    background: var(--zs-color-mobile-dark);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0s linear 0.35s;
  }

  .zs-header__top.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .zs-header__top-inner {
    flex-direction: column;
    gap: 8px;
    justify-content: center;
  }

  .zs-header__main-inner {
    padding-top: 18px;
  }

  .zs-header__right {
    margin-top: 10px;
  }

  .zs-nav {
    width: 100%;
  }

  .zs-nav__list {
    position: fixed;
    top: 40px;
    right: 0;
    z-index: 58;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: calc(100vh - 40px);
    margin-top: 0;
    overflow-y: auto;
    background: var(--zs-color-primary);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0s linear 0.35s;
  }

  .zs-nav__list.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .zs-nav__list > li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1px;
    text-align: center;
  }

  .zs-nav__list > li > a {
    padding: 12px 40px 12px 16px;
    color: var(--zs-color-white);
    font-size: 14px;
  }

  .zs-nav__list > li > a::before {
    display: none;
  }

  .zs-nav__list > li:hover,
  .zs-nav__list > li.is-open,
  .zs-nav__list > li.is-active {
    background: #c9932c;
  }

  .zs-nav__list > li:hover > a,
  .zs-nav__list > li.is-open > a,
  .zs-nav__list > li.is-active > a {
    color: var(--zs-color-white);
  }

  .zs-nav__list > li > ul,
  .zs-nav__list > li > ul > li > ul {
    display: none !important;
    visibility: hidden;
    width: 100%;
    padding: 0;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: none;
    opacity: 0;
  }

  .zs-nav__list > li.is-open > ul,
  .zs-nav__list > li > ul > li.is-open > ul {
    display: none !important;
  }

  .zs-nav__list > li > ul > li > a,
  .zs-nav__list > li > ul > li > ul > li > a {
    padding: 12px 18px;
    color: var(--zs-color-white);
    text-align: center;
  }

  .zs-nav__list > li > ul > li.has-children > a::before,
  .zs-nav__list > li > ul > li > ul > li.has-children > a::before {
    display: none;
  }

  .zs-search {
    position: absolute;
    right: 0;
    bottom: 0;
    margin-top: 0;
  }

  .zs-search__toggle {
    width: 24px;
    height: 24px;
    margin-right: 0;
  }

  .zs-search__panel {
    top: 100%;
    width: 100%;
    height: 43px;
    margin-top: 0;
  }

  .zs-search__panel.is-open {
    position: fixed;
    top: calc(40px + var(--zs-header-main-height));
    left: 0;
    right: 0;
    z-index: 57;
    width: 100%;
  }

  .zs-search__input {
    min-height: 43px;
    padding-left: 36px;
  }

  .zs-footer {
    margin-bottom: 47px;
  }

  .zs-footer__top {
    padding-top: 26px;
    padding-bottom: 0;
  }

  .zs-footer__top-inner {
    flex-direction: column;
  }

  .zs-footer__about,
  .zs-footer__products,
  .zs-footer__contact {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .zs-footer__about {
    display: block;
    margin-bottom: 26px;
  }

  .zs-footer__about > a {
    display: inline-block;
  }

  .zs-footer__about > a img {
    width: 300px;
    max-width: 82%;
    margin: 0 auto;
    opacity: 0.32;
  }

  .zs-footer__social {
    display: none;
  }

  .zs-footer__products {
    display: block;
  }

  .zs-footer__contact {
    margin-bottom: 0;
  }

  .zs-footer__title {
    margin-bottom: 18px;
    padding-bottom: 12px;
    font-size: 20px;
    text-align: center;
  }

  .zs-footer__title::before {
    display: block;
    left: 50%;
    width: 48px;
    transform: translateX(-50%);
  }

  .zs-footer__products li,
  .zs-footer__contact li {
    margin-bottom: 0;
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .zs-footer__products li {
    padding: 0;
  }

  .zs-footer__products a {
    padding: 12px 36px 12px 28px;
    text-align: center;
  }

  .zs-footer__products a::before {
    top: 50%;
    left: 8px;
    font-size: 18px;
    transform: translateY(-50%);
  }

  .zs-footer__contact li {
    justify-content: center;
    padding: 10px 0 16px;
    border-bottom: 0;
  }

  .zs-footer__contact li::before {
    display: none;
  }

  .zs-footer__bottom {
    padding-top: 14px;
    padding-bottom: 14px;
    text-align: center;
  }

  .zs-footer__bottom-inner {
    justify-content: center;
  }

  .zs-footer__support {
    display: block;
  }

  .zs-go-top {
    right: 10px;
    bottom: 82px;
    width: 38px;
    height: 38px;
    margin-bottom: 0;
  }

  .zs-toolbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: block;
    background: var(--zs-color-primary);
  }

  .zs-toolbar ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .zs-toolbar li {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .zs-toolbar li:last-child {
    border-right: 0;
  }

  .zs-toolbar__link,
  .zs-toolbar__btn {
    display: block;
    width: 100%;
    padding: 6px 2px 7px;
    color: var(--zs-color-white);
    font-size: 12px;
    line-height: 1.2;
  }

  .zs-toolbar__btn {
    background: none;
    border: 0;
    cursor: pointer;
  }

  .zs-toolbar__icon {
    display: block;
    width: 22px;
    height: 22px;
    margin: 0 auto 4px;
  }

  .zs-chat-box {
    right: 10px;
    bottom: 74px;
  }
}

@media screen and (max-width: 500px) {
  .zs-chat-box li {
    min-width: 124px;
  }
}

/* 留言弹窗 */
.zs-chat-box a {
  cursor: pointer;
}

body.zs-msg-modal-open {
  overflow: hidden;
}

.zs-msg-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zs-msg-modal[hidden] {
  display: none;
}

.zs-msg-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.zs-msg-modal__dialog {
  position: relative;
  width: 92%;
  max-width: 640px;
  background: var(--zs-color-white);
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: zs-slide-down 0.25s ease;
}

.zs-msg-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--zs-color-primary);
  color: var(--zs-color-white);
  font-size: 15px;
}

.zs-msg-modal__close {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--zs-color-white);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.zs-msg-modal__close::before {
  content: "\00d7";
}

.zs-msg-modal__body {
  padding: 28px 30px 34px;
}

.zs-msg-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
}

.zs-msg-form__field {
  display: block;
}

.zs-msg-form__field--message {
  margin-top: 16px;
}

.zs-msg-form__label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}

.zs-msg-form__label em {
  margin-left: 4px;
  color: #e60012;
  font-style: normal;
}

.zs-msg-form__field input,
.zs-msg-form__field textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
}

.zs-msg-form__field input:focus,
.zs-msg-form__field textarea:focus {
  outline: none;
  border-color: var(--zs-color-primary);
}

.zs-msg-form__field textarea {
  resize: vertical;
}

.zs-msg-form__actions {
  margin-top: 26px;
  text-align: center;
}

.zs-msg-form__submit {
  min-width: 96px;
  padding: 8px 22px;
  border: 0;
  border-radius: 2px;
  background: var(--zs-color-primary);
  color: var(--zs-color-white);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.zs-msg-form__submit:hover {
  background: var(--zs-color-primary-dark);
}

.zs-msg-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media screen and (max-width: 640px) {
  .zs-msg-modal__body {
    padding: 20px 18px 24px;
  }

  .zs-msg-form__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ===== 分享弹窗 ===== */
.zs-share-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zs-share-modal[hidden] {
  display: none;
}

.zs-share-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.zs-share-modal__dialog {
  position: relative;
  width: 92%;
  max-width: 420px;
  background: var(--zs-color-white);
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  animation: zs-slide-down 0.25s ease;
}

.zs-share-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #666;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.zs-share-modal__close::before {
  content: "\00d7";
}

.zs-share-modal__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 20px;
  background: linear-gradient(180deg, #f5f6f7 0%, #e9ebed 100%);
}

.zs-share-modal__logo img {
  max-height: 40px;
  max-width: 70%;
  width: auto;
}

.zs-share-modal__title {
  padding: 16px;
  text-align: center;
  background: #cfd4d8;
  color: var(--zs-color-white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.zs-share-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.zs-share-modal__grid > li {
  margin: 0;
}

.zs-share-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  color: var(--zs-color-white);
  transition: filter 0.2s ease;
}

.zs-share-item:hover {
  filter: brightness(1.08);
}

.zs-share-item svg {
  width: 46px;
  height: 46px;
  display: block;
}

.zs-share-item--facebook {
  background: #3b5998;
}

.zs-share-item--google {
  background: #dd4b39;
}

.zs-share-item--linkedin {
  background: #3b8dc3;
}

.zs-share-item--twitter {
  background: #2caae1;
}

.zs-share-item--pinterest {
  background: #cb2027;
}

.zs-share-item--email {
  background: #7f95a2;
}

@media screen and (max-width: 640px) {
  .zs-share-item {
    min-height: 104px;
  }

  .zs-share-item svg {
    width: 42px;
    height: 42px;
  }
}
