:root {
  --text-color: #062147;
  --blue-color: #00469c;
  --orange-color: #fcbb1f;
}
body {
  background: #f7f7f7;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 999;
}
@media (max-width: 1024px) {
  header {
    height: 66px;
  }
}
@media (max-width: 1024px) {
  header .container {
    padding: 0 12px;
  }
}
header .container nav .item {
  height: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
}
header .container nav .item a {
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 6px;
}
header .container nav .item a i {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
}
header .container nav .item a i span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-color);
}
header .container nav .item a i span:nth-child(2) {
  top: 6px;
}
header .container nav .item a i span:nth-child(3) {
  top: 12px;
}
header .container nav .item a:hover {
  color: var(--blue-color);
}
header .container nav .item .nav-product-popup {
  display: none;
  position: fixed;
  top: 83px;
  left: 0;
  right: 0;
  height: calc(100vh - 483px);
  min-height: 400px;
  padding-top: 1px;
  overflow: hidden;
  z-index: 999;
}
header .container nav .item .nav-product-popup .box {
  display: none;
  width: 100%;
  height: 100%;
  padding-bottom: 30px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  animation: slide-down 0.3s ease-in-out;
}
header .container nav .item .nav-product-popup .box .container {
  display: flex;
  height: 100%;
}
header .container nav .item .nav-product-popup .box .container .menu {
  width: 40%;
  height: 100%;
  padding: 60px 40px 60px 0;
  border-right: 2px solid #eee;
  overflow: hidden auto;
}
header .container nav .item .nav-product-popup .box .container .menu .menu-title {
  width: 40px;
  font-size: 20px;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 30px;
}
header .container nav .item .nav-product-popup .box .container .menu .menu-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
header .container nav .item .nav-product-popup .box .container .menu .menu-list .menu-item {
  width: calc(100% / 2 - 10px);
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-size: 15px;
  color: var(--text-color);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: 0.3s;
}
header .container nav .item .nav-product-popup .box .container .menu .menu-list .menu-item:hover {
  background: #ddd;
}
header .container nav .item .nav-product-popup .box .container .menu .menu-list .menu-item.active {
  background: #ddd;
}
header .container nav .item .nav-product-popup .box .container .menu-content {
  width: 60%;
  height: 100%;
  padding: 60px 40px;
  overflow: hidden auto;
}
header .container nav .item .nav-product-popup .box .container .menu-content .menu-product-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-gap: 16px;
}
header .container nav .item .nav-product-popup .box .container .menu-content .menu-product-list li {
  width: 100%;
  height: 68px;
  border: 2px solid #eee;
  border-radius: 6px;
  cursor: pointer;
}
header .container nav .item .nav-product-popup .box .container .menu-content .menu-product-list li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 12px;
}
header .container nav .item .nav-product-popup .box .container .menu-content .menu-product-list li a .pic {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
}
header .container nav .item .nav-product-popup .box .container .menu-content .menu-product-list li a .pic img {
  width: 100%;
  height: 100%;
}
header .container nav .item .nav-product-popup .box .container .menu-content .menu-product-list li a .name {
  width: calc(100% - 40px);
  padding-left: 12px;
  font-size: 15px;
  color: var(--text-color);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
header .container nav .item .nav-product-popup .box .container .menu-content .menu-product-list li a:hover .name {
  color: var(--blue-color);
}
header .container nav .item .nav-product-popup .box .container .menu-content .no-product {
  font-size: 15px;
  color: var(--text-color);
}
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(1px);
    opacity: 1;
  }
}
header .container nav .item .nav-news-popup {
  display: none;
  position: fixed;
  top: 83px;
  transform: translateX(-30px);
  padding-top: 1px;
  overflow: hidden;
  z-index: 999;
}
header .container nav .item .nav-news-popup .box {
  display: none;
  background: #eee;
  animation: slide-down 0.3s ease-in-out;
}
header .container nav .item .nav-news-popup .box .nav-item {
  width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 16px;
}
header .container nav .item:hover .nav-product-popup {
  display: block;
}
header .container nav .item:hover .nav-product-popup .box {
  display: block;
}
header .container nav .item:hover .nav-news-popup {
  display: block;
}
header .container nav .item:hover .nav-news-popup .box {
  display: block;
}
header .container .right {
  gap: 10px;
}
header .container .right .btn {
  height: 100%;
  padding: 0 10px;
  align-items: center;
  cursor: pointer;
}
header .container .right .btn .icon {
  width: 18px;
  height: 18px;
}
header .container .right .btn .text {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1em;
  margin-left: 6px;
}
header .container .right .line {
  width: 2px;
  height: 16px;
  background: #ddd;
}
header .container .right .mobile-nav-btn {
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
}
header .container .right .mobile-nav-btn i {
  display: inline-block;
  width: 18px;
  height: 18px;
  position: relative;
}
header .container .right .mobile-nav-btn i span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-color);
  transition: all 0.3s ease;
  transform-origin: center;
}
header .container .right .mobile-nav-btn i span:nth-child(2) {
  top: 8px;
}
header .container .right .mobile-nav-btn i span:nth-child(3) {
  top: 16px;
}
.mobile-nav-popup {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  height: calc(100vh - 66px);
  background: #fff;
  z-index: 999;
}
.nav-open .mobile-nav-btn i span:nth-child(1) {
  top: 50%!important;
  transform: translateY(-50%) rotate(45deg);
}
.nav-open .mobile-nav-btn i span:nth-child(2) {
  opacity: 0;
}
.nav-open .mobile-nav-btn i span:nth-child(3) {
  top: 50%!important;
  transform: translateY(-50%) rotate(-45deg);
}
.nav-open .mobile-nav-popup {
  display: block;
}
.global-nav-popup {
  display: none;
  position: fixed;
  top: 84px;
  width: 100%;
  max-width: 600px;
  right: 0;
  height: calc(100vh - 84px);
  padding: 0 0 0 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
@media (max-width: 1024px) {
  .global-nav-popup {
    top: 66px;
    height: calc(100vh - 66px);
  }
}
.global-open .global-nav-popup {
  display: block;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-layout {
  position: relative;
  width: 100%;
  padding-top: calc(84px + 60px);
  padding-bottom: 60px;
}
@media (max-width: 1024px) {
  .page-layout {
    padding-top: calc(66px + 40px);
    padding-bottom: 40px;
  }
}
.text-shadow {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.1);
}
.word-content-body {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  word-break: break-all;
  overflow: hidden;
}
.word-content-body a {
  color: var(--blue-color);
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}
.word-content-body p {
  margin-bottom: 20px;
  word-break: break-all;
  text-indent: 2em;
}
.word-content-body h1,
.word-content-body h2,
.word-content-body h3,
.word-content-body h4,
.word-content-body h5,
.word-content-body h6 {
  color: var(--text-color);
  margin-bottom: 20px;
}
.word-content-body h1 {
  font-size: 42px;
}
.word-content-body h2 {
  font-size: 32px;
}
.word-content-body h3 {
  font-size: 28px;
}
.word-content-body h4 {
  font-size: 24px;
}
.word-content-body h5 {
  font-size: 20px;
}
.word-content-body h6 {
  font-size: 18px;
}
.word-content-body img,
.word-content-body video {
  max-width: 100%;
}
.r_menu {
  position: fixed;
  right: 14px;
  bottom: 50%;
  z-index: 20;
}
.menu_list {
  width: 60px;
  height: 60px;
  text-align: center;
  background-color: #fff;
  transition: 0.5s ease;
  backdrop-filter: blur(5px);
  color: #333;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.menu_list:nth-of-type(2) {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.menu_list:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.menu_list:first-child {
  background: #053588;
  margin-bottom: 10px;
  color: #fff;
  border-radius: 5px;
}
.r_menu .txt {
  margin-top: 3px;
  font-size: 12px;
}
.r_menu a {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
/*# sourceMappingURL=common.css.map */