@charset "utf-8";

/* ==================== 全局重置 & 公共样式 ==================== */
body {
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
}

.fixed-bottom {
  position: relative;
  bottom: 0;
  width: 100%;
  z-index: 100001;
  left: 0;
}

/* ==================== 公用容器 ==================== */
.contain {
  width: 1680px;
  margin: 0 auto;
}

/* ==================== 底部固定导航 (link-justified) ==================== */
.link-justified ul {
  display: table;
  table-layout: fixed;
  margin-bottom: -1px;
  width: 100%;
  background-color: #fff;
  padding: 4px 0;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.05);
}

.link-justified ul li {
  display: table-cell;
  margin-bottom: 0;
  width: 100%;
}

.link-justified ul li a {
  display: block;
  padding: 1px 0;
  text-align: center;
  color: #333;
}

.link-justified ul li a:hover,
.link-justified ul li a:active {
  background-color: #fff;
  color: #333;
}

.link-justified ul li:first-child a {
  border-left: none;
}

.link-justified ul li:last-child a {
  border-right: none;
}

.link-justified ul li p {
  line-height: normal;
  font-size: 14px;
}

.link-justified ul li a i {
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  margin-bottom: -10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 25px;
}

/* ==================== 面包屑 ==================== */
.bread-box {
  display: flex;
  align-items: center;
  padding: 20px 0 25px;
  color: #666;
  font-size: 14px;
}

.bread-box .icon-59 {
  display: inline-block;
  margin: 0 4px;
  font-size: 12px;
}

.bread-box .icon-home {
  font-size: 18px;
  margin-right: 5px;
  color: #858585;
}

.bread-box .cur {
  color: #0068b6;
}

/* ==================== 二级导航 (second-box) ==================== */
.second-box {
  border-bottom: 1px solid #f1f2f3;
  height: 60px;
  background-color: #fff;
  z-index: 9;
  position: relative;
}

.second-box .container,
.second-box .contain {
  display: flex;
  align-items: center;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.second-box .container .item,
.second-box .contain .item {
  font-size: 16px;
  color: #333;
  height: 100%;
  line-height: 60px;
  margin-right: 45px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.second-box .container .item.active,
.second-box .container .item:hover,
.second-box .contain .item.active,
.second-box .contain .item:hover {
  color: #0068b6;
}

.second-box .container .item.active:before,
.second-box .container .item:hover:before,
.second-box .contain .item.active:before,
.second-box .contain .item:hover:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #0068b6;
  left: 0;
  bottom: 0;
}

.second-box .container .item:last-of-type,
.second-box .contain .item:last-of-type {
  margin-right: 0;
}

.second-box.second-fix {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.hide {
  display: none !important;
}

/* ==================== 详情底部 ==================== */
.detail-bottom {
  padding: 30px 40px;
  border-top: 1px solid #f1f2f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.detail-bottom .left {
  font-size: 16px;
  color: #999;
}

.detail-bottom .left .pg {
  line-height: 30px;
}

.detail-bottom .left .pg .item {
  color: #999;
}

.detail-bottom .left .pg:hover .item {
  color: #0068b6;
}

.detail-bottom .back {
  width: 130px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #999;
  border: 1px solid #ddd;
  text-align: center;
  display: block;
}

/* ==================== 弹窗遮罩 ==================== */
.more-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 64, 104, 0.8);
  z-index: 1000;
  display: none;
}

.more-cover .info-content {
  width: 75%;
  max-width: 1440px;
  height: 650px;
  top: 15%;
  left: 12.5%;
  position: absolute;
  background-color: #fff;
  padding: 40px 40px 50px;
}

.more-cover .info-content .content {
  font-size: 16px;
  color: #666;
  height: 100%;
  overflow-y: auto;
  padding-right: 30px;
}

.more-cover .info-content .content::-webkit-scrollbar {
  width: 4px;
  height: 10px;
  background-color: #e1e1e1;
}

.more-cover .info-content .content::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #e1e1e1;
}

.more-cover .info-content .content::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: #0068b6;
}

.more-cover .info-content .close-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  bottom: -100px;
  left: calc(50% - 25px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-cover .info-content .close-box i {
  font-size: 22px;
  color: #0068b6;
}

/* ==================== 头部 Header ==================== */
.Header-wrapper {
  width: 100%;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  background: transparent;
  user-select: none;
  box-shadow: none;
  transition: all 0.4s ease;
}

.Header-wrapper>.contain {
  width: 100%;
  padding-left: 20px;
}

.Header-logo-stock {
  float: left;
  position: relative;
  z-index: 999;
}

.Header-logo-stock a {
  display: flex;
  align-items: center;
}

.Header-logo {
  width: 185px;
  height: 80px;
  display: flex;
  align-items: center;
}

.Header-logo img {
  max-width: 100%;
  position: absolute;
  transition: all 0.4s ease;
  height: 50px;
}

.Header-logo img.s {
  opacity: 1;
}

.Header-logo img.h {
  opacity: 0;
}

.Header-stock {
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  padding-left: 16px;
  margin-left: 16px;
}

.Header-stock span,
.Header-stock p {
  line-height: 1;
}

.Header-stock p {
  font-size: 15px;
}

.Header-search {
  float: right;
}

.Header-search-click {
  width: 70px;
  height: 80px;
  cursor: pointer;
  background: url('../images/ss.svg') no-repeat center/19px auto;
  position: relative;
  z-index: 999;
}

.Header-search-click.active {
  background: url('../images/close.svg') no-repeat center/20px auto !important;
}

.Header-search-item {
  display: none;
  position: absolute;
  width: 100%;
  height: 80px;
  line-height: 80px;
  top: 0;
  left: 0;
  z-index: 99;
  text-align: right;
}

.Header-search-item .contain {
  width: 100%;
  padding-right: 50px;
}

.Header-search-item.active {
  display: block;
}

.Header-search-item input,
.Header-search-item button {
  display: inline-block;
  vertical-align: middle;
}

.Header-search-item input[type="text"] {
  width: 0px;
  height: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  color: #666;
  background: transparent;
  transition: width 0.6s ease;
}

.Header-search-item.active input[type="text"] {
  width: 520px;
}

.Header-search-item button {
  width: 50px;
  height: 40px;
  background: url('../images/search.svg') no-repeat center/23px auto;
  cursor: pointer;
  margin-right: 0;
}

body.onSearch .Header-navbar {
  visibility: hidden;
  opacity: 0;
}

.Header-lang {
  float: right;
  position: relative;
  z-index: 999;
  padding-right: 30px;
}

.Header-lang::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  right: 0;
  top: 50%;
  margin-top: -15px;
}

.Header-lang-menu {
  display: flex;
  align-items: center;
  height: 80px;
}

.Header-lang-menu span {
  display: block;
  padding-left: 30px;
  background: url('../images/copy.svg') no-repeat left center/20px auto;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease 0s;
}

.Header-lang.active .Header-lang-menu span {
  color: #0482f0;
  background-image: url('../images/copylan.svg');
}

/* 多语言下拉 */
.Header-lang-more {
  display: none;
  z-index: 9;
  width: 140px;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  position: absolute;
  left: 50%;
  margin-left: -70px;
}

.Header-lang-more:before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 8px 8px;
  border-color: transparent transparent #efefef transparent;
  position: absolute;
  top: -8px;
  left: 50%;
  margin: 0 0 0 -8px;
}

.Header-lang-more a {
  display: block;
  font-size: 16px;
  color: #666;
  text-align: center;
  padding: 10px 0;
}

.Header-lang-more a span {
  display: inline-block;
}

.Header-lang-more a:hover {
  color: #fff;
  background: #0482f0;
}

.Header-lang.active .Header-lang-more {
  display: block;
  animation: langInUp 0.4s ease-out;
}

@keyframes langInUp {
  0% {
    transform: translateY(20px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.Header-navbar {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  visibility: visible;
  opacity: 1;
}

.Header-navbar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

body.PC .Header-navbar {
  display: block !important;
}

.Header-navbar li {
  margin: 0 25px;
  z-index: 9;
}

.Header-navbar li.erji {
  position: relative;
}

.Header-navbar li:last-child {
  margin-right: 0;
}

.Header-navbar li:first-child {
  margin-left: 0;
}

.Header-menu {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  transition: color 0.4s ease;
}

.Header-navbar li:hover .Header-menu,
.Header-navbar li.active .Header-menu {
  color: #0482f0 !important;
}

.Header-arrow {
  display: none;
}

/* 一级下拉菜单 */
.Header-drop {
  display: none;
  position: absolute;
  background: #eee;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.Header-drop::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #eee;
  left: 0;
  top: 0;
  z-index: 2;
}

.Header-drop-case {
  width: 100%;
}

.Header-case .contain {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 28px 0;
  min-height: 470px;
}

.Header-case .contain::after {
  content: "";
  position: absolute;
  width: calc(100vw - 280px + (1400px - 100vw)/2);
  height: 100%;
  right: calc((1400px - 100vw)/2);
  top: 0;
  background: #fff url('../images/logo.png') no-repeat right bottom 30px/832px auto;
  opacity: 0.93;
}

.Header-case-menu {
  width: 290px;
  position: relative;
  z-index: 6;
}

.Header-case-menu .link {
  width: 100%;
  cursor: pointer;
  margin-top: 10px;
  display: flex;
  height: 50px;
  color: #333;
  align-items: center;
  transition: all 0.6s ease;
  position: relative;
  padding-left: 10px;
}

.Header-case-menu .link:first-child {
  margin-top: 0;
}

.Header-case-menu .link span {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 3;
}

.Header-case-menu .link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: #0482f0;
  z-index: 1;
  opacity: 0;
  transition: all 0.4s ease;
}

.Header-case-menu .link::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 20px;
  top: 50%;
  margin-top: -9px;
  right: 8px;
  transform: scale(0);
  background: url('../images/logobai.png') no-repeat center/100% auto;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s ease;
}

.Header-case-menu .link.active {
  color: #fff;
}

.Header-case-menu .link.active::before {
  width: calc(100% + 15px);
  opacity: 1;
}

.Header-case-menu .link.active::after {
  opacity: 1;
  transform: scale(1);
}

.Header-case-mix {
  width: calc(100% - 300px);
  padding-left: 70px;
  position: relative;
  z-index: 6;
}

.Header-case-items {
  width: 100%;
  display: none;
}

.Header-case-items.active {
  display: block;
}

.Header-case-ul {
  display: flex;
  flex-wrap: wrap;
  margin: -40px 0 0 -50px;
}

.Header-case-li {
  width: calc(33.33% - 20px);
  margin: 40px 0 0 20px;
}

.Header-case-li-name {
  display: flex;
  width: 100%;
  height: 32px;
  position: relative;
  line-height: 1;
  font-size: 15px;
  font-weight: 500;
}

.Header-case-li-name span {
  padding-right: 20px;
  color: #333;
  background: url('../images/arrrc.svg') no-repeat right -2px top/18px auto;
  transition: all 0.4s ease;
}

.Header-case-li-name::before,
.Header-case-li-name::after {
  content: "";
  position: absolute;
  height: 1px;
  right: 0;
  bottom: 0;
}

.Header-case-li-name::before {
  width: 100%;
  background: #dcdcdc;
}

.Header-case-li-name::after {
  width: 0;
  background: #0482f0;
  opacity: 0;
  transition: width 0.4s ease, opacity 0.1s ease 0.4s;
}

.Header-case-li-name:hover span {
  color: #0482f0;
  background-image: url('../images/arrrh.svg');
}

.Header-case-li-name:hover::after {
  width: 100%;
  opacity: 1;
  right: auto;
  left: 0;
  transition: width 0.4s ease 0.1s, opacity 0.1s ease;
}

.Header-case-li-more {
  width: 100%;
  margin-top: 12px;
}

.Header-case-li-more .items {
  width: 100%;
  position: relative;
}

.Header-case-li-more .items a {
  display: flex;
  align-items: center;
  line-height: 28px;
  padding-right: 36px;
  font-size: 14px;
  color: #666;
  transition: all 0.4s ease;
  width: 100%;
  position: relative;
}

.Header-case-li-more .items a.name {
  min-height: 36px;
}

.Header-case-li-more .items .name {
  position: relative;
}

.Header-case-li-more .items .arrow {
  display: block;
  width: 36px;
  height: 36px;
  pointer-events: none;
  position: absolute;
  z-index: 4;
  right: 0;
  top: 0;
  background: url('../images/arrd.svg') no-repeat center/16px auto;
}

.Header-case-li-more .items .arrow.active {
  transform: rotate(180deg);
}

.Header-case-li-more .items .drop {
  width: 100%;
  display: none;
}

.Header-case-li-more .items .drop a {
  position: relative;
  padding-left: 10px;
}

.Header-case-li-more .items .drop a::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 1px;
  background: #666;
  left: 0;
  top: 12px;
  transition: all 0.4s ease;
}

.Header-case-li-more .items a:hover {
  color: #0482f0;
}

.Header-case-li-more .items .drop a:hover::before {
  background: #0482f0;
}

/* 汉堡菜单按钮 */
.Header-navclick {
  position: relative;
  z-index: 999;
  width: 80px;
  height: 80px;
  cursor: pointer;
  float: right;
  user-select: none;
  align-items: center;
  display: flex;
  justify-content: center;
  background: #0482f0;
}

.Header-navclick span {
  width: 30px;
  position: relative;
  height: 2px;
  background: #fff;
}

.Header-navclick span:before,
.Header-navclick span:after {
  content: "";
  transition: top 0.2s linear, bottom 0.2s linear;
  transform-origin: center !important;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  left: 0;
}

.Header-navclick span:before {
  top: -10px;
}

.Header-navclick span:after {
  bottom: -10px;
}

.Header-navclick:hover span::before {
  top: 0;
}

.Header-navclick:hover span::after {
  bottom: 0;
}

.Header-navclick.active span::before {
  top: 0;
  transform: rotate(45deg);
  transition: transform 0.2s linear;
}

.Header-navclick.active span::after {
  bottom: 0;
  transform: rotate(-45deg);
  transition: transform 0.2s linear;
}

.Header-navclick.active span {
  background: transparent;
}

/* 侧边栏 (网站导航) */
.Header-website-click {
  display: none;
}

.Header-website-shade {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9991;
  transition: all 0.4s ease 0.8s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.Header-website-shade.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: all 0.4s ease;
}

.Header-website {
  position: absolute;
  width: 445px;
  transition: transform 0.6s ease 0.4s, opacity 0.2s ease 0.8s, visibility 0.2s ease 0.8s;
  transform: translateX(490px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #0482f0;
  color: #fff;
  right: 0;
  top: 0;
  padding: 48px;
  height: 100vh;
  z-index: 9994;
}

.Header-website.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.6s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.Header-website-mix {
  width: 100%;
}

.Header-website-head {
  width: 100%;
  position: relative;
  font-size: 16px;
  line-height: 1;
  padding-top: 62px;
}

.Header-website-link {
  width: 100%;
  margin-top: 20px;
}

.Header-website-link p {
  display: flex;
  align-items: center;
  height: 36px;
  padding-left: 0px;
  background: url('../images/arrrw.svg') no-repeat left center/16px auto;
}

.Header-website-link p a {
  font-size: 16px;
  position: relative;
}

.Header-website-link p a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  right: 0;
  bottom: -2px;
  background: #fff;
  transition: width 0.4s ease, opacity 0.1s ease 0.4s;
}

.Header-website-link p a:hover::after {
  right: auto;
  left: 0;
  width: 100%;
  opacity: 1;
  transition: width 0.4s ease 0.1s, opacity 0.1s ease;
}

.Header-website-code {
  margin-top: 32px;
}

.Header-website-code .name {
  display: flex;
  align-items: center;
  height: 18px;
  font-size: 16px;
  padding-left: 30px;
  background: url('../images/wxt.svg') no-repeat left center/22px auto;
  line-height: 1;
}

.Header-website-code .code {
  width: 148px;
  margin-top: 18px;
}

.Header-website-code .code img {
  max-width: 100%;
  object-fit: cover;
}

.Header-website-close {
  width: 80px;
  height: 80px;
  opacity: 0;
  transform: translateY(-80px);
  z-index: 8;
  transition: all 0.4s ease;
  background: #0482f0;
  position: absolute;
  top: 0;
  left: -80px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Header-website-close::after {
  content: "";
  width: 26px;
  height: 26px;
  background: url('../images/closew.svg') no-repeat center/100% auto;
  transition: all 0.4s ease;
}

.Header-website-close:hover::after {
  transform: rotate(90deg);
}

.Header-website.active .Header-website-close {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease 0.6s;
}

/* 头部滚动/透明效果 */
.bodyScroll .Header-wrapper,
.bodyMouse .Header-wrapper,
.bodySearch .Header-wrapper,
.noLucency .Header-wrapper,
.bodyMenu .Header-wrapper {
  background: #fff;
  box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.bodyScroll .Header-menu,
.bodyMouse .Header-menu,
.bodySearch .Header-menu,
.noLucency .Header-menu,
.bodyMenu .Header-menu {
  color: #666;
}

.bodyScroll .Header-logo img.s,
.bodyMouse .Header-logo img.s,
.bodySearch .Header-logo img.s,
.noLucency .Header-logo img.s,
.bodyMenu .Header-logo img.s {
  opacity: 0;
}

.bodyScroll .Header-logo img.h,
.bodyMouse .Header-logo img.h,
.bodySearch .Header-logo img.h,
.noLucency .Header-logo img.h,
.bodyMenu .Header-logo img.h {
  opacity: 1;
}

.bodyScroll .Header-lang-menu span,
.bodyMouse .Header-lang-menu span,
.bodySearch .Header-lang-menu span,
.noLucency .Header-lang-menu span,
.bodyMenu .Header-lang-menu span {
  color: #666;
  background-image: url('../images/copy2.svg');
}

.bodyScroll .Header-stock,
.bodyMouse .Header-stock,
.bodySearch .Header-stock,
.noLucency .Header-stock,
.bodyMenu .Header-stock {
  color: #666;
  border-left: 1px solid #999;
}

.bodyScroll .Header-lang::before,
.bodyMouse .Header-lang::before,
.bodySearch .Header-lang::before,
.noLucency .Header-lang::before,
.bodyMenu .Header-lang::before {
  background: #999;
}

.bodyScroll .Header-search-click,
.bodyMouse .Header-search-click,
.bodySearch .Header-search-click,
.noLucency .Header-search-click,
.bodyMenu .Header-search-click {
  background-image: url('../images/ss2.svg');
}

.bodySearch .Header-navbar {
  visibility: hidden;
  opacity: 0;
}

.noLucency .Container-wrapper {
  margin-top: 80px;
}

/* ==================== 底部 Footer ==================== */
.Footer-wrapper {
  width: 100%;
  background: #00162f;
  position: relative;
  z-index: 9;
}

.Footer-items {
  width: 100%;
  padding: 100px 0 64px;
  justify-content: space-between;
  align-items: flex-start;
}

.Footer-info {
  width: 25%;
}

.Footer-info-logo {
  width: 100%;
}

.Footer-info-logo img {
  max-width: 170px;
}

.Footer-info-cont {
  width: 100%;
  margin-top: 30px;
}

.Footer-info-cont .items {
  width: 100%;
  align-items: center;
  margin-top: 4px;
}

.Footer-info-cont .items:first-child {
  margin-top: 0;
}

.Footer-info-cont .items .icon {
  width: 40px;
  padding-right: 8px;
  display: flex;
  align-items: center;
  height: 40px;
}

.Footer-info-cont .items .icon img {
  max-width: 100%;
}

.Footer-info-cont .items .text {
  width: calc(100% - 45px);
  font-size: 14px;
  color: #fff;
  line-height: 24px;
}

.Footer-info-cont .items .text p {
  display: flex;
  width: 100%;
  margin-top: 6px;
}

.Footer-info-cont .items .text p:first-child {
  margin-top: 0;
}

.Footer-info-cont .items .text p a {
  position: relative;
}

.Footer-info-cont .items .text p a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  left: 0;
  bottom: 2px;
}

.FooterCode {
  width: 100%;
  font-size: 0;
  margin-top: 42px;
}

.FooterCode a {
  width: 30px;
  height: 30px;
  margin-left: 7px;
  position: relative;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
}

.FooterCode a>img {
  width: 22px;
}

.FooterCode a:first-child {
  margin-left: 0;
}

.FooterCode-img {
  display: none;
  width: 152px;
  height: 152px;
  padding: 6px;
  position: absolute;
  bottom: 42px;
  left: 50%;
  margin-left: -76px;
  background: #fff;
  border-radius: 4px;
}

.FooterCode-img::after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border: 8px solid transparent;
  border-top-color: #fff;
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -8px;
}

.FooterCode-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.FooterCode a:hover .FooterCode-img {
  display: block;
  animation: FooterCode 0.6s ease-in-out both;
}

.FooterCode a:hover {
  background: #fff;
}

@keyframes FooterCode {
  0% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}

.Footer-navbar {
  width: 70%;
  overflow: hidden;
  user-select: none;
}

.Footer-navbar ul {
  justify-content: space-between;
}

.Footer-navbar li {
  width: auto;
}

.Footer-menu {
  font-size: 18px;
  color: #fff;
  display: flex;
  line-height: 1;
  margin-top: 23px;
  transition: all 0.4s ease;
  position: relative;
}

.Footer-menu span {
  position: relative;
}

.Footer-menu span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #fff;
  right: 0;
  bottom: -4px;
  opacity: 0;
  transition: width 0.4s ease, opacity 0.1s ease 0.4s;
}

.Footer-menu:hover span::after {
  width: 100%;
  opacity: 1;
  transition: width 0.4s ease 0.1s, opacity 0.1s ease;
  right: auto;
  left: 0;
}

.Footer-menu:first-of-type {
  margin-top: 0;
}

.Footer-arrow {
  display: none;
}

.Footer-drop {
  width: 100%;
  margin-top: 14px;
}

body.PC .Footer-drop {
  display: block !important;
}

.Footer-drop a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  padding: 9px 0;
  transition: all 0.4s ease;
}

.Footer-drop a:hover {
  color: #fff;
}

.Footer-copyright {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px 0;
  align-items: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  justify-content: space-between;
}

.Footer-copyright-info {
  display: flex;
  flex-wrap: wrap;
}

.Footer-copyright-info p {
  margin-left: 12px;
}

.Footer-copyright-info p:first-child {
  margin-left: 0;
}

.Footer-copyright-link {
  display: flex;
}

.Footer-copyright-link a {
  position: relative;
  transition: all 0.4s ease;
  margin-right: 20px;
}

.Footer-copyright-link a:last-child {
  margin-right: 0;
}

.Footer-copyright-link a:hover {
  color: #fff;
}

/* ==================== 置顶按钮 ==================== */
.backTop {
  display: none;
  right: 40px;
  bottom: 60px;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  position: fixed;
  cursor: pointer;
  z-index: 9999;
  background: #0482f0 url('../images/top.svg') no-repeat center/22px auto;
}

/* ==================== 中间容器 ==================== */
.Container-wrapper {
  width: 100%;
}

/* ==================== 视频弹窗 ==================== */
.popVideo {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 999999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

.popVideo-items {
  width: 1280px;
  position: relative;
  padding: 34px 34px 0;
  opacity: 0;
}

.popVideo-video {
  width: 100%;
}

.popVideo-video video {
  width: 100%;
  max-height: 840px;
}

.popVideo-video iframe {
  width: 100%;
  height: 500px;
}

.popVideo-close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  background: url('../images/closew.svg') no-repeat center/24px auto;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.6s ease;
}

.popVideo-close:hover {
  opacity: 1;
}

.popVideo.active {
  display: flex;
}

.popVideo.active .popVideo-items {
  animation: popVideRun 1s ease both 0.4s;
}

@keyframes popVideRun {
  0% {
    opacity: 0;
    transform: translateY(-200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== 二级分类下拉（独立） ==================== */
.Header-drop2 {
  display: none;
  position: absolute;
  background: transparent;
  left: 0;
  width: 160px;
  font-size: 0;
  padding: 10px 20px;
  background: #fff;
  box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
  margin-left: -17px;
}

.Header-drop2 a {
  height: 40px;
  line-height: 40px;
  text-align: left;
  width: 100%;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  color: #666;
  transition: color 0.4s ease;
  position: relative;
  z-index: 2;
  margin-left: 0;
}

.Header-drop2 a.active,
.Header-drop2 a:hover {
  color: #0482f0;
}

/* ==================== 分页样式 ==================== */
.pager {
  text-align: center;
  padding-bottom: 25px;
  margin-top: 25px;
}

.pager ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pager ul li {
  display: inline-block;
}

.pager ul li a {
  padding: 5px 15px;
  border: #dddddd solid 1px;
  margin-left: -1px;
  display: inline-block;
}

.pager ul li a:hover {
  border-color: #0482f0;
  background-color: #0482f0;
  color: #FFF;
}

.pager ul .active a {
  border: #0482f0 solid 1px;
  display: inline-block;
  background-color: #0482f0;
  color: #fff;
}

.pager ul .active a:hover {
  color: #fff;
  border: #0482f0 solid 1px !important;
  background-color: #0482f0 !important;
}

/* ==================== 响应式布局 ==================== */
/* 超大屏 (1680 以上维持默认) */
@media all and (max-width: 1700px) {
  .contain {
    width: 1480px;
  }
}

@media all and (max-width: 1599px) {
  .contain {
    width: 1400px;
  }
  .Header-navbar ul {
    padding-left: 120px;
  }
  .Header-search {
    display: none;
  }
  .Header-navbar li {
    margin: 0 15px;
  }
  .Footer-items {
    padding: 80px 0 60px;
  }
  .Header-case-menu {
    width: 240px;
  }
  .Header-case .contain::after {
    width: calc(100vw - 240px + (1200px - 100vw)/2);
    right: calc((1200px - 100vw)/2);
    background-position: right bottom -120px;
    background-size: 480px auto;
  }
  .Header-case-mix {
    width: calc(100% - 240px);
    padding-left: 60px;
  }
  .Header-case-ul {
    margin: -30px 0 0 -30px;
  }
  .Header-case-li {
    width: calc(33.33% - 20px);
    margin: 30px 0 0 30px;
  }
  .Header-case-menu .link.active::before {
    width: calc(100% + 20px);
  }
  .Header-case .contain {
    padding: 50px 0;
    min-height: 440px;
  }
  .Header-website {
    width: 360px;
    transform: translateX(450px);
    padding: 36px 40px;
  }
  .Header-website-link p {
    height: 32px;
  }
  /* 搜索框动画宽度调整 (基于transition) */
  .Header-search-item.active input[type="text"] {
    width: 460px;
  }
}

@media all and (max-width: 1439px) {
  .Header-navbar ul {
    padding-left: 40px;
  }
  .contain {
    width: 1300px;
  }
  .Header-stock {
    display: none;
  }
}

@media all and (max-width: 1359px) {
  .Header-navbar ul {
    padding-left: 80px;
  }
  .contain {
    width: 1250px;
  }
}

@media all and (max-width: 1279px) {
  .contain {
    width: 900px;
  }
  .Header-wrapper > .contain {
    padding-left: 40px;
  }
  .Header-navbar li {
    margin: 0 12px;
  }
  .Header-search-click {
    width: 62px;
  }
  .Header-lang {
    padding-right: 24px;
  }
  .Header-search-item .contain {
    padding-right: 260px;
  }
  .Footer-info {
    width: 246px;
  }
  .Footer-navbar {
    width: 600px;
  }
  .Footer-items {
    padding: 60px 0 40px;
  }
  .Header-case-menu {
    width: 190px;
  }
  .Header-case .contain::after {
    width: calc(100vw - 190px + (900px - 100vw)/2);
    right: calc((900px - 100vw)/2);
    background-position: right bottom -80px;
    background-size: 360px auto;
  }
  .Header-case-mix {
    width: calc(100% - 190px);
    padding-left: 30px;
  }
  .Header-case-ul {
    margin-left: -20px 0 0 -20px;
  }
  .Header-case-li {
    width: calc(33.33% - 20px);
    margin: 20px 0 0 20px;
  }
  .Header-case-menu .link.active::before {
    width: calc(100% + 8px);
  }
  .Header-case-menu .link span {
    font-size: 14px;
  }
  .Header-case-menu .link {
    padding-left: 12px;
  }
  .Header-case-menu .link::after {
    right: 4px;
  }
  .Header-case-li-name {
    font-size: 14px;
  }
  .Header-case-li-name span {
    padding-right: 18px;
  }
  .Header-case .contain {
    padding: 44px 0;
    min-height: 428px;
  }
  .Header-search-item.active input[type="text"] {
    width: 420px;
  }
}

@media all and (max-width: 1151px) {
  .Header-stock {
    display: none;
  }
  .Header-navbar ul {
    padding-left: 0;
  }
  .Header-navbar li {
    margin: 0 7px;
  }
}

/* 平板与手机端 (≤1000px) */
@media all and (max-width: 1000px) {
  .Header-wrapper {
    background: #fff;
    box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
  }
  .Header-menu {
    color: #666;
  }
  .Header-logo img.s {
    opacity: 0;
  }
  .Header-logo img.h {
    opacity: 1;
  }
  .Header-search-click {
    background-image: url('../images/ss2.svg');
  }
  .bodySearch .Header-navbar {
    visibility: visible;
    opacity: 1;
  }
  .noLucency .Container-wrapper {
    margin-top: 60px;
  }
  .Header-lang-menu span {
    background-image: url('../images/copy2.svg');
    color: #666;
    padding-left: 26px;
  }
  .Header-lang::before {
    height: 20px;
    background: #999;
    margin-top: -10px;
    display: none;
  }
  .contain-1600,
  .contain-1400,
  .contain {
    width: 96%;
  }
  .Container-wrapper {
    margin-top: 60px;
  }
  .Header-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
  }
  .Header-wrapper > .contain {
    padding-left: 0;
  }
  .Header-logo,
  .Header-search-click,
  .Header-lang-menu {
    height: 60px;
  }
  .Header-logo {
    margin-left: 4%;
    width: 120px;
  }
  .Header-navclick {
    width: 40px;
    height: 60px;
    background: transparent;
    margin-left: 10px;
  }
  .Header-navclick span {
    width: 22px;
    background: #0482f0;
  }
  .Header-navclick span:before {
    top: -7px;
    background: #0482f0;
  }
  .Header-navclick span:after {
    bottom: -7px;
    background: #0482f0;
  }
  .Header-navclick:hover span::before {
    top: -7px;
  }
  .Header-navclick:hover span::after {
    bottom: -7px;
  }
  .Header-navclick.active span::before {
    top: 0;
  }
  .Header-navclick.active span::after {
    bottom: 0;
  }
  .Header-search-click {
    width: 40px;
    display: none;
  }
  .Header-lang,
  .Header-search,
  .Header-website-click {
    padding-right: 10px;
  }
  .Header-lang-more {
    width: 120px;
    margin-left: -50px;
    top: 60px;
  }
  .Header-lang-more a {
    padding: 6px 0;
  }
  .Header-navbar {
    display: none;
    position: absolute;
    width: 100%;
    margin-right: 0;
    height: calc(100vh - 60px);
    top: 60px;
    left: 0;
    padding: 20px 0;
    background: #fff;
  }
  .Header-navbar ul {
    display: block;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .Header-navbar li {
    display: block;
    width: 100%;
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.4s ease;
    margin: 0;
  }
  .Header-navbar.active li {
    opacity: 1;
    transform: translateY(0);
  }
  .Header-menu {
    height: 48px;
    padding: 0 4%;
  }
  .Header-arrow {
    display: block;
    width: 48px;
    height: 48px;
    position: absolute;
    z-index: 9;
    right: 0;
    top: 0;
    background: url('../images/arrd.svg') no-repeat center/20px auto;
    transition: all 0.3s ease 0s;
  }
  .Header-arrow.active {
    transform: rotate(180deg);
  }
  .Header-navbar li:hover .Header-menu {
    color: #666 !important;
  }
  .Header-navbar li.active .Header-menu {
    color: #0482f0 !important;
  }
  .Header-drop {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
    overflow: hidden;
    background: #f7f7f7;
  }
  .Header-drop::before,
  .Header-case .contain::after {
    display: none;
  }
  .Header-case-menu .link::after {
    display: none;
  }
  .Header-case .contain {
    padding: 20px 0 0;
    min-height: auto;
    width: 100%;
  }
  .Header-case-menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 4%;
  }
  .Header-case-menu .link::before {
    display: none;
  }
  .Header-case-menu .link {
    padding: 0;
    height: 30px;
    width: calc(100% - 0px);
    margin: 0;
  }
  .Header-case-menu .link.active {
    color: #0482f0;
  }
  .Header-case-mix {
    width: 100%;
    padding: 20px 4%;
    background: #eee;
    margin-top: 14px;
  }
  .Header-case-ul {
    margin: -14px 0 0 -14px;
  }
  .Header-case-li {
    width: 100%;
    margin: 14px 0 0 14px;
  }
  .Header-case-items:nth-child(2) .Header-case-ul,
  .Header-case-items:nth-child(4) .Header-case-ul {
    margin: -14px 0 0 -14px;
  }
  .Header-case-items:nth-child(2) .Header-case-li,
  .Header-case-items:nth-child(4) .Header-case-li {
    width: calc(100% - 1px);
    margin: 14px 0 0 14px;
  }
  .Header-case-li-name {
    height: 28px;
  }
  .Header-case-li-name span {
    padding-right: 0;
    background: none !important;
  }
  .Header-case-li-name:hover span {
    background-image: none;
  }
  .Header-case-li-more .items a {
    font-size: 14px;
    padding-right: 28px;
  }
  .Header-case-li-more .items a.name {
    min-height: 28px;
  }
  .Header-case-li-more {
    margin-top: 6px;
  }
  .Header-case-li-more .items .arrow {
    width: 28px;
    height: 28px;
    pointer-events: auto;
  }
  .Header-case-li-more .items .drop a::before {
    top: 12px;
  }
  .Header-search-item {
    display: none;
    width: 100%;
    line-height: normal;
    height: 45px;
    top: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    background: #fff;
  }
  .Header-search-item .contain {
    padding-right: 0;
  }
  .Header-search-item input[type="text"] {
    width: 100%;
    height: 44px;
    padding: 0 54px 0 4%;
    border-bottom: none;
  }
  .Header-search-item.active input[type="text"] {
    animation: none;
    width: 100%;
  }
  .Header-search-item button {
    position: absolute;
    right: 0;
    width: 44px;
    height: 47px;
    top: -2px;
    background: #0482f0 url('../images/searchw.svg') no-repeat center/23px auto !important;
    z-index: 2;
  }
  .Header-search-click.active {
    background-image: url('../images/close.svg') !important;
  }
  .Header-website-click {
    display: flex;
    position: relative;
    align-items: center;
    width: 34px;
    height: 60px;
    float: right;
    background: url('../images/ewm.svg') no-repeat center/23px auto;
  }
  .Header-website-click::before,
  .Header-website-click::after {
    display: none;
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    background: #999;
    left: 0;
    top: 50%;
    margin-top: -10px;
  }
  .Header-website-click::after {
    left: auto;
    right: 0;
  }
  .Header-website-close {
    width: 60px;
    height: 60px;
    transform: translateY(-60px);
    left: auto;
    right: 0;
  }
  .Header-website {
    width: 100%;
    transform: translateX(calc(100% + 2px));
    padding: 0 20px;
  }
  .Header-website-head {
    font-size: 18px;
    display: flex;
    align-items: center;
    height: 60px;
    padding-top: 0;
    padding-left: 32px;
    background-size: 23px;
    background-position: left center;
  }
  .Header-website-mix {
    margin-top: 85px;
  }
  .Header-website-head span {
    display: none;
  }
  .Header-website-link p a {
    font-size: 15px;
  }
  .Header-website-link p {
    height: 30px;
    background-size: 14px auto;
  }
  .Header-website-close::after {
    width: 24px;
    height: 24px;
    transform: rotate(0) !important;
  }
  .Header-website-link {
    margin-top: 10px;
  }
  .Header-website-code {
    margin-top: 24px;
  }
  .Footer-items {
    padding: 38px 0 30px;
  }
  .Footer-info-logo {
    text-align: center;
  }
  .Footer-info {
    width: 100%;
  }
  .Footer-info-cont {
    margin-top: 22px;
  }
  .Footer-info-cont .items {
    margin-top: 8px;
  }
  .Footer-info-cont .items .text p {
    margin-top: 2px;
  }
  .FooterCode {
    justify-content: center;
    margin-top: 18px;
  }
  .Footer-navbar {
    display: none;
  }
  .Footer-copyright {
    padding: 20px 0;
    margin-top: 0;
  }
  .Footer-copyright-info {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .Footer-copyright-info p {
    width: 100%;
    margin-left: 0;
  }
  .Footer-copyright-info p:first-child {
    font-size: 13px;
    margin-bottom: 2px;
  }
  .Footer-copyright-link {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
  /* 二级分类在移动端调整 */
  .Header-drop2 {
    position: initial;
    background: transparent;
    left: 0;
    width: 100%;
    padding: 10px 40px;
    margin-left: 0px;
  }
  .Header-logo img {
    height: auto !important;
  }
}

@media all and (max-width: 640px) {
  .Footer-copyright-link a:first-child {
    display: none;
  }
  .backTop {
    right: 8px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-size: 20px auto;
  }
  .popVideo-video iframe {
    height: 200px;
  }
}

@media all and (max-width: 1100px) {
  .popVideo-items {
    width: 92%;
    padding: 34px 0 0;
  }
  .popVideo-close {
    right: 0;
  }
  .popVideo-video iframe {
    height: 400px;
  }
}