.header {
  overflow: hidden;
}
.header .link {
  background-color: #efeff1;
  position: relative;
}
.header .link .link-wrapper {
  width: 1200px;
  height: 40px;
  margin: 0 auto;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}
.header .link .link-wrapper .link-left {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #666666;
}
.header .link .link-wrapper .link-right {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
}
.header .link #toolbarSwitch {
  position: absolute;
  left: 20px;
  top: 0;
}
.header .header-wrapper {
  background-color: var(--primary);
}
.header .header-wrapper .header-nav {
  width: 1200px;
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-wrapper .header-nav .hd-logo {
  width: 178px;
}
.header .header-wrapper .header-nav .nav {
  height: 82px;
  line-height: 82px;
  display: flex;
  gap: 20px;
}
.header .header-wrapper .header-nav .nav .subordinate::after {
  width: 12px;
  height: 12px;
  display: none;
  content: "";
  position: absolute;
  background-color: #fff;
  left: 50%;
  bottom: -6px;
  transform: translate(-50%, 0) rotate(-45deg);
}
.header .header-wrapper .header-nav .nav .subordinate:hover {
  background-color: color-mix(in srgb, var(--primary), black 20%);
}
.header .header-wrapper .header-nav .nav .nav-item {
  height: 100%;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
  position: relative;
}
.header .header-wrapper .header-nav .nav .nav-item .nav-item-text {
  padding: 0 25px;
  display: block;
}
.header .header-wrapper .header-nav .nav .nav-item:hover::after {
  display: block;
}
.header .header-wrapper .header-nav .nav .nav-item:hover .sub-nav {
  display: flex;
}
.header .header-wrapper .header-nav .nav .nav-item .sub-nav {
  width: 100vw;
  position: absolute;
  left: -40vw;
  right: 0;
  bottom: -42px;
  height: 42px;
  line-height: 42px;
  display: none;
  gap: 20px;
  color: var(--text-color-1);
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.header .header-wrapper .header-nav .nav .nav-item .sub-nav .sub-nav-item {
  cursor: pointer;
  font-size: 18px;
}
.header .header-wrapper .header-nav .nav .nav-item .sub-nav .sub-nav-item:hover {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.header .header-wrapper .header-nav .search {
  width: 286px;
  height: 40px;
  background-color: #2f7ec9;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
}
.header .header-wrapper .header-nav .search .search-icon {
  margin-left: 5px;
}
.header .header-wrapper .header-nav .search input {
  height: 100%;
  outline: none;
  border: 0;
  background-color: unset;
  color: #fff;
  font-size: 14px;
}
.header .header-wrapper .header-nav .search input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.header .header-wrapper .header-nav .search .search-btn {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: #eaf8fb;
  padding: 0 12px;
  border-radius: 24px;
  color: var(--primary);
  font-size: 14px;
  cursor: pointer;
}
.header .header-wrapper .header-nav .search .search-btn:hover {
  opacity: 0.92;
}

@media (max-width: 1599px) {
  .header {
    zoom: 0.8;
  }
}
.right-menu {
  position: fixed;
  right: 60px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}
.right-menu .share {
  position: relative;
}
.right-menu .share .share-icon {
  width: 52px;
  display: block;
  cursor: pointer;
}
.right-menu .share .share-qrcode {
  position: absolute;
  right: 80px;
  top: -40px;
  z-index: 1000;
  background-color: #fff;
  padding: 10px;
  box-shadow: var(--shadow);
  display: none;
}
.right-menu .share .share-qrcode::after {
  width: 20px;
  height: 20px;
  display: block;
  content: "";
  background-color: #fff;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: var(--shadow);
  z-index: -1;
}
.right-menu .share:hover .share-qrcode {
  display: block;
}
.right-menu .back-top {
  width: 52px;
  display: block;
  cursor: pointer;
}

@media screen and (max-width: 1366px) {
  .right-menu {
    right: 0;
  }
}
.footer {
  background-color: var(--primary);
  padding: 55px 0 80px 0;
}
.footer .footer-wrapper {
  width: var(--wrapper-width);
  margin: 0 auto;
}
.footer .footer-wrapper .footer-tag {
  display: flex;
  justify-content: space-between;
}
.footer .footer-wrapper .footer-tag .footer-tag-item {
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 20px;
  cursor: pointer;
}
.footer .footer-wrapper .footer-tag .footer-tag-item:hover {
  background-color: #fff;
  color: var(--primary);
}
.footer .footer-wrapper .footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
.footer .footer-wrapper .footer-bottom .footer-left {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #fff;
}
.footer .footer-wrapper .footer-bottom .footer-left .footer-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer-wrapper .footer-bottom .footer-left .footer-text-2 {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer .footer-wrapper .footer-bottom .footer-qr-code {
  display: flex;
  gap: 50px;
}
.footer .footer-wrapper .footer-bottom .footer-qr-code .footer-qr-code-item {
  width: 85px;
  font-size: 14px;
  line-height: 1.8;
}
.footer .footer-wrapper .footer-bottom .footer-qr-code .footer-qr-code-item .footer-qr-code-img {
  width: 85px;
  height: 85px;
  display: block;
}
.footer .footer-wrapper .footer-bottom .footer-qr-code .footer-qr-code-item .footer-qr-code-title {
  text-align: center;
  color: #fff;
  margin-top: 5px;
}