@charset "UTF-8";
:root {
  --primary-color: #0093d8;
  /* 定义主色调变量 */
  --background-color: #181818;
  /* 定义背景色变量 */
  --font-size: 24px;
  /* 定义字体大小变量 */
  --color-white: #fff;
}

@font-face {
  font-family: "PlusJakartaSans";
  src: url("../fonts/PlusJakartaSans-Regular.woff2") format("woff2"), url("../fonts/PlusJakartaSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PlusJakartaSansBold";
  src: url("../fonts/PlusJakartaSans-Bold.woff2") format("woff2"), url("../fonts/PlusJakartaSans-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  background-color: var(--background-color);
  font-family: "PlusJakartaSans", -apple-system, Roboto, "PingFang SC", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

@media screen and (min-width: 1200px) {
  .layui-container {
    width: 100%;
    padding: 0 5vw;
    margin: 0 auto;
  }
}
/* 加载动画 */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-color);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader .loader-text {
  font-family: "Syne", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.loader .loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader .loader-progress {
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/*浏览器提示*/
.alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 0px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  border-radius: 4px;
}

.alert,
.alert h4 {
  color: #c09853;
}

.alert h4 {
  margin: 0;
}

.alert-danger {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

.alert-danger h4 {
  color: #b94a48;
}

/* Cookies 提示栏 */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 20px 0;
  background: #000;
  z-index: 9999;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-text {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.cookie-banner .cookie-text a {
  text-decoration: underline;
}
.cookie-banner .cookie-actions {
  display: flex;
  justify-content: end;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner .cookie-actions .layui-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}

/*header*/
.navbar {
  width: 100%;
}

/*pc header*/
.pcheader {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
  transition: all 0.3s linear;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.pcheader.hide {
  display: none;
}
.pcheader.hover {
  background: rgba(0, 0, 0, 0.2);
}
.pcheader.hover::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none; /* 允许点击穿透 */
  z-index: -1; /* 确保背景在内容之下 */
}
.pcheader .logo {
  width: 30%;
  height: 80px;
  background-size: auto;
  display: flex;
  align-items: center;
  justify-content: left;
  transition: all 0.3s;
  border: 0;
}
.pcheader .logo img {
  max-width: 100%;
  border: 0;
}
.pcheader .nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.pcheader .nav_right {
  display: flex;
  width: 70%;
  justify-content: flex-end;
  align-items: center;
}
.pcheader .nav_right button {
  width: 25px;
  height: 30px;
  position: absolute;
  top: 30px;
  right: 15px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.pcheader .nav_right button span {
  display: block;
  width: 25px;
  height: 2px;
  background: #2db5a3;
  margin-bottom: 6px;
  transition: 0.5s;
}
.pcheader .nav_right button span.spa1 {
  transform: rotate(45deg);
}
.pcheader .nav_right button span.spa3 {
  transform: rotate(-45deg) translate(5px, -5px);
}
.pcheader .h_nav_pc {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.pcheader .h_nav_pc li {
  text-align: center;
}
.pcheader .h_nav_pc li .item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 140px;
  margin: 0 20px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  line-height: 80px;
  font-size: 16px;
  cursor: pointer;
}
.pcheader .h_nav_pc li .item a:hover, .pcheader .h_nav_pc li .item a.active, .pcheader .h_nav_pc li .item a.c {
  color: #fff;
  transition: all 0.3s;
}
.pcheader .h_nav_pc li:hover .item a::after, .pcheader .h_nav_pc li.active::after, .pcheader .h_nav_pc li.c::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: #fff;
}
.pcheader .h_nav_sub {
  position: fixed;
  padding: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}
.pcheader .h_nav_sub::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none; /* 允许点击穿透 */
  z-index: -1; /* 确保背景在内容之下 */
}
.pcheader .layui-container {
  margin: 0 auto;
}
.pcheader .h_nav_sub_ul {
  padding: 20px 0;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: flex-end;
}
.pcheader .h_nav_sub_ul a {
  position: relative;
  padding: 0 40px;
  height: auto;
  display: inline-block;
  line-height: 40px;
  color: #fff;
  text-align: center;
  font-weight: normal;
  cursor: pointer;
}
.pcheader .h_nav_sub_ul a::after {
  position: absolute;
  right: 0;
  top: 10px;
  content: "";
  width: 1px;
  height: 16px;
  background-color: #fff;
  opacity: 0.3;
}
.pcheader .h_nav_sub_ul a:last-child::after {
  display: none;
}
.pcheader .h_nav_sub_ul a:hover, .nav_right .pcheader .h_nav_sub_ul a.active {
  text-decoration: underline;
}
.pcheader .subTab {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}
.pcheader .subTab .layui-tabs-header {
  height: 100%;
}
.pcheader .subTab .layui-tabs-header::after {
  display: none;
}
.pcheader .subTab .layui-tabs-header li {
  display: block;
  padding: 1rem;
  text-align: left;
  color: #fff;
  font-size: 1.25rem;
}
.pcheader .subTab .layui-tabs-header li span,
.pcheader .subTab .layui-tabs-header li a {
  margin: 0;
  cursor: pointer;
  line-height: 2rem;
}
.pcheader .subTab .layui-tabs-header li a {
  color: #fff;
}
.pcheader .subTab .layui-tabs-header li.layui-this, .pcheader .subTab .layui-tabs-header li:hover {
  color: var(--color-black);
  background-color: var(--color-white);
}
.pcheader .subTab .layui-tabs-header li.layui-this a, .pcheader .subTab .layui-tabs-header li:hover a {
  color: var(--color-black);
}
.pcheader .subTab .layui-tabs-header li.layui-this:after, .pcheader .subTab .layui-tabs-header li:hover:after {
  display: none;
}
.pcheader .subTab .layui-tabs-header .layui-tab-bar {
  display: none;
}
.pcheader .subTab .productList .card {
  cursor: pointer;
}
.pcheader .subTab .productList .card .img {
  position: relative;
  padding-bottom: 20px;
  width: 100%;
  text-align: center;
}
.pcheader .subTab .productList .card .img img {
  max-width: 80%;
}
.pcheader .subTab .productList .card .img::after {
  position: absolute;
  content: "";
  left: 30%;
  bottom: 5px;
  width: 40%;
  height: 15px;
  background: rgba(0, 0, 0, 0.3);
  filter: blur(3px);
  -webkit-filter: blur(3px);
  border-radius: 50%;
  pointer-events: none; /* 允许点击穿透 */
  z-index: -1; /* 确保背景在内容之下 */
}
.pcheader .subTab .productList .card .title {
  width: 100%;
  margin: 10px auto 20px;
  text-align: center;
  line-height: 1;
  opacity: 1;
}
.pcheader .subTab .productList .card .title span {
  position: relative;
  color: #fff;
}
.pcheader .subTab .productList .card .title span:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  height: 1px;
  width: 0;
  background: var(--color-white);
  opacity: 0;
  transition: all 0.4s ease;
}
.pcheader .subTab .productList .card:hover .title span::before {
  width: 100%;
  left: 0;
  opacity: 1;
}
.pcheader .h_language .iconfont {
  font-size: 20px;
}
.pcheader .h_language .language_menu {
  padding-left: 5px;
  height: 24px;
  font-size: 14px;
  line-height: 24px;
}
.pcheader.active {
  height: 60px;
  line-height: 60px;
  background: rgba(0, 0, 0, 0.2);
}
.pcheader.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none; /* 允许点击穿透 */
  z-index: -1; /* 确保背景在内容之下 */
}
.pcheader.active .logo,
.pcheader.active .h_nav_pc li .item a,
.pcheader.active .h_language {
  height: 60px;
  line-height: 60px;
}

/*手机版*/
.mheader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  margin-bottom: -20px;
  text-align: left;
  background-color: #000;
  z-index: 12;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mheader .logo {
  width: 80%;
  height: 70px;
  background: url(../images/logo.png) no-repeat left center;
  background-size: 150px auto;
  background-position: 10px center;
  display: block;
}

.h_ph_menu {
  position: absolute;
  top: 24px;
  right: 10px;
  cursor: pointer;
}
.h_ph_menu span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin-top: 5px;
  transition: all 0.5s;
  -webkit-transform-origin: 0px 0;
  -moz-transform-origin: 0px 0;
  -o-transform-origin: 0px 0;
  transform-origin: 0px 0;
}
.h_ph_menu span:first-child {
  margin-top: 0;
}
.h_ph_menu.active span {
  width: 26px;
}
.h_ph_menu.active span:first-child {
  -webkit-transform: rotate(45deg) translateY(-2px) translateX(1px);
  -moz-transform: rotate(45deg) translateY(-2px) translateX(1px);
  -ms-transform: rotate(45deg) translateY(-2px) translateX(1px);
  transform: rotate(45deg) translateY(-2px) translateX(1px);
}
.h_ph_menu.active span:nth-child(2) {
  opacity: 0;
}
.h_ph_menu.active span:last-child {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*pad手机下拉菜单*/
.h_nav_ph {
  background-color: var(--background-color);
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 1200;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.h_nav_ph .h_nav_ph1 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.h_nav_ph .h_nav_ph1 li {
  cursor: pointer;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.h_nav_ph .h_nav_ph1 li:first-child {
  border-top: 0;
}
.h_nav_ph .h_nav_ph1 li a {
  position: relative;
  padding: 0 1em;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 3;
  display: block;
}
.h_nav_ph .h_nav_ph1 li a:after {
  position: absolute;
  right: 1em;
  font-family: "iconfont";
  content: "\e651";
}
.h_nav_ph .h_nav_ph2 {
  display: none;
  padding-left: 15px;
  background-color: rgba(255, 255, 255, 0.1);
}
.h_nav_ph .h_nav_ph2 li {
  border: 0;
}
.h_nav_ph .h_nav_ph2 li a {
  color: #666;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 3;
  display: block;
}
.h_nav_ph .h_nav_ph2 li a::after {
  display: none;
}

/*footer*/
.footer {
  width: 100%;
  padding: 5rem 0 0px 0;
  background: #181818;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  z-index: 101;
}
.footer .footer_con {
  padding-bottom: 4rem;
  width: 100%;
  overflow: hidden;
}
.footer .footer_con img {
  max-width: 100%;
}
.footer .footerNav {
  margin-left: 10%;
  display: flex;
}
.footer .footerNav li {
  flex: 1;
}
.footer .footerNav .item {
  width: 100%;
  margin: 0 auto;
  font-size: 18px;
  color: #fff;
  font-weight: normal;
  line-height: 3rem;
}
.footer .footerNav .item_sub a {
  width: 100%;
  display: block;
  font-size: 0.85rem;
  line-height: 1.5rem;
  color: #999;
}
.footer .footerNav .item_sub a:hover {
  text-decoration: underline;
}
.footer .footer_cr {
  padding: 15px;
  border-top: 1px solid var(--lay-color-border-2);
  text-align: center;
  display: block;
  overflow: hidden;
  color: #999;
}
.footer .footer_cr a {
  color: #999 !important;
}

@media (max-width: 1399px) {
  .pcheader .subTab .layui-tab-title li {
    padding: 0 10px;
    margin: 10px 0;
    font-size: 1rem;
  }
}
@media (max-width: 999px) {
  .pcheader {
    display: none;
  }
  .mheader {
    display: block;
  }
  .footer {
    padding-top: 0;
  }
  .footer .footer_con {
    display: none;
  }
  .footer .footer_cr {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner .cookie-actions {
    justify-content: stretch;
  }
  .cookie-banner .cookie-btn {
    flex: 1;
  }
}/*# sourceMappingURL=common.css.map */