/*!****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./public/static/css/web/common.css ***!
  \****************************************************************************************************************/
@charset "UTF-8";
/*---Public CSS---*/
html, body, div, applet, object, iframe,p, dl, dt, dd, ol, ul, li, fieldset, form, label, input, button, select, textarea, img, table, th, td, article, aside, footer, header, hgroup, menu, nav,section,audio,video,a,i {
  font-weight: 400;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0 none;
}
:root {
  --base: 1920;
  --default-color: #000;
  --theme-color: #2a2a2a;
  --theme-color-hover: #000;
  --theme-light-color: #E4D160;
  --link-hover: #D3B847;
  --theme-success: #059922;
  --theme-danger: #EC0404;
  --theme-warning: #FFBB01;
  --padding-wrapper: 15rem;
  --padding-gap: var(--padding-wrapper);
}
html {
  font-size: calc((10 / var(--base)) * 100vw);
}

@media (max-width: 828px) {
  :root {
    --base: 428;
    --padding-wrapper: 2.4rem;
  }
}

article, aside, footer, header, menu, nav, section,img {
  display: block;
}

html {
  height:auto !important;
}

body {
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
  line-height: 1.5!important;
  background-color: #fff;
  width: 100%;
  height: 100%;
  color: #000;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #eee inset;
  border-bottom: 1px solid rgba(0,0,0,0.54)
}

button, input, select, textarea, img, .button {
  vertical-align: middle;
  outline: 0
}
/* 去掉 Chrome、Safari、Edge 中的默认箭头 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 让 input 在 WebKit 下表现为普通文本框 */
input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer
}

input[type="text"],textarea {
  appearance: none;
  -webkit-appearance: none;
}

select {
  padding-right: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select:-moz-focusring{
  color: transparent;
  text-shadow: 0 0 0 #705a39;
}

select::-ms-expand {
  display: none;
}

h1, h2, h3, h4, h5, h6, b {
  font-weight: 600;
}

.mobile{
  display: none;
}
.pc{
  display: block;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
  height: 0
}

li {
  list-style: none
}

a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
}
a:hover {
  color: var(--link-hover);
}

/* 隐藏原生 checkbox */
input[type="checkbox"] {
  display: none;
}

/* 自定义 Checkbox 外观 */
.custom-checkbox {
  position: relative;
  width: 4.8rem;
  height: 4.8rem;
  background: #000;
  border-radius: 0.8rem; /* 圆角 */
  margin-right: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 选中状态的样式 */
input[type="checkbox"]:checked ~ .custom-checkbox {
  background: var(--theme-color);
  border-color: var(--theme-color);
}

/* 选中的勾选图标 */
.custom-checkbox::after {
  content: "\e92c";
  font-family: 'icomoon';
  font-size: 3rem;
  color: white;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}


/* 选中时显示勾选 */
input[type="checkbox"]:checked ~ .custom-checkbox::after {
  opacity: 1;
}
@media (max-width: 828px) {
  .custom-checkbox {
    width: 2.8rem;
    height: 2.8rem;
    margin-right: 1.2rem;
  }
  .custom-checkbox::after {
    font-size: 2.5rem;
  }
}

/* 悬浮时的效果 */
.custom-checkbox:hover {
  border-color: var(--theme-color);
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}


em {
  font-style: normal
}

.bold {
  font-weight: 600
}

.show {
  display: block!important
}

.hide {
  display: none!important
}

.table{
  display: table;
}

.title{
  font-size: 28px;
}

.s-title{
  font-weight: 600;
}

.v-middle {
  display: table-cell;
  vertical-align: middle;
}

.fixed {
  position: fixed;
}

.no-event{
  pointer-events: none;
}

.error-tips {
  color: var(--theme-danger);
  text-align: left;
  font-size: 14px;
  line-height: 20px;
}
label.error-tips {
  margin: 0;
}
textarea ~ label.error-tips {
  top: 96px;
}
.mobile{
  display: none;
}
.btn {
  background: var(--theme-color);
  color: #fff;
  position: relative;
  display: inline-block;
  height: 60px;
  line-height: 58px;
  border-radius: 48px;
  border: none;
  overflow: hidden;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  -webkit-transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
}
.btn:hover {
  background: var(--theme-color-hover);
}

.btn-border {
  background: #fff;
  background: var(--theme-light-color);
  height: 60px;
  line-height: 58px;
  border-radius: 48px;
  overflow: hidden;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
}

.overflow-hide {
  overflow: hidden;
}

@media (max-width: 828px)  {
  
  .mobile{
    display: block;
  }
  .pc {
    display: none;
  }

  .error-tips {
    font-size: 1.2rem;
  }
  
  
}
.main-content.homepage{
  margin:0
}



  /*---transition---*/

.transition{
  transition: all .36s ease;
}
.transition1{transition:all 0.2s ease-in;}

.transition2{
  transition: all .6s ease;
}
.transition3{
  transition: all .2s ease;
}
.transition4{
  transition: all .8s ease;
}
.transition5{transition:all 1s ease-in;}
.transition6{transition:all 1s}
.transition7{transition:all 0.2s ease-out;}
.transition-sp1{
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.transition-sp2{transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 2) 0s}
.transition-sp3{transition: all 0.3s cubic-bezier(0.115, 0.61, 0.255, 1) 0s}
.transition-sp11{transition: box-shadow 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;}
/* color */
.green{
  color: #008866;
}

/* 超出不换行 */
.multi-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.single-line {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.frame-adaption {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

@media (max-width: 828px) {
  .frame-adaption {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}



body { top: 0px !important; }



/*---分页样式---*/
.page-wrap {
  margin: 48px auto;
  overflow: hidden;
  position: relative;
}

.page-inwrap {
  display: table;
  margin: 0 auto
}

.page li {
  float: left;
  margin: 0 8px;
}

.page li:last-child a, .page li:first-child a {
  font-size: 14px;
  color:#999
}

.page li:last-child {
  margin-left: 9px;
  margin-right: 0;
  font-weight: bold
}

.page li:first-child {
  margin-left: 0;
  margin-right: 9px;
  font-weight: bold
}

.page-end {
  color: #999
}

.page li a.focus {
  color: #121212;
  background: #ebebeb;
}

.page li a:hover,.page li.active a {
  color: #121212;
  background: #ebebeb;
}

.page li a {
  text-align: center;
  line-height: 36px;
  color: #888;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 36px;
}

.page li .icon-Shape:hover {
  color: #333;
}

.page li .page-end:hover {
  color: #999
}

/*---videobox---*/
.blur {
  filter: blur(10px);
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -ms-filter: blur(10px);
  -o-filter: blur(10px);
}

.videobox {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0
}

.videobox iframe {
  width: 854px;
  height: 480px;
  margin: 0 auto;
  top: -480px;
  background: #000;
  position: relative;
  z-index: 1;
  display: block;
}

.videobox .videobox-over {
  top: 15%;
  transition: all 0.4s;
}

.video-masker {
  background: rgba(0, 0, 0, .6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0
}

.video-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}

.video-close .icon-close {
  cursor: pointer;
  font-size: 1.25em;
  color: #fff;
}

/*---layui---*/
.tips-success,.tips-error,.tips-warning{
  border: none!important;
  overflow: hidden !important;
  display: table !important;
  min-width: 140px !important;
  border-radius: 1.2rem!important;
  background-color: #000!important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.30), 0 2px 6px 2px rgba(0, 0, 0, 0.15); 
}
.tips-warning{
  width: auto !important;
}
.tips-success .layui-layer-content i {
  color: var(--theme-success);
}
.tips-success .layui-layer-padding,.tips-error .layui-layer-padding{
  padding: 16px 16px 16px 52px !important;
}
.tips-success .layui-layer-ico,.tips-error .layui-layer-ico {
  background: #fff;
  border-radius: 50%;
  width: 24px !important;
  height:24px !important;
  font-size: 24px !important;
  color:#fff;
}

.tips-error .layui-layer-content i {
  color:var(--theme-danger);
}

.tips-error .layui-layer-content .layui-layer-ico2 {
  font-size: 24px;
}

.tips-warning .layui-layer-content i{
  color:var(--theme-warning);
}

.tips-warning .layui-layer-content .layui-layer-ico3 {
  font-size: 24px;
  top:20px !important;
}
.layui-layer-dialog .layui-layer-content{
  word-break: normal !important;
  color: #fff!important;
}

/*---agelimit---*/
.agelimit {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.90);
  backdrop-filter: blur(27.182817459106445px);
  color: #fff;
}

.welcome-box {
  position: absolute;
  max-width: 80rem;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  text-align: center;
  font-size: 1.8rem;
}
.welcome-box p {
  font-size: 2.4rem;
}
.welcome-box .logo {
  width: 16rem;
  margin: 0 auto;
}
.welcome-box .title {
  font-size: 6rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 4.8rem 0 2.4rem;
}
.welcome-box .btn-box {
  margin-top: 4.8rem;
  font-size: 0;
  display: flex;
  gap: 6rem;
  justify-content: center;
}
.welcome-box .btn-box button {
  width: 28rem;
  height: 6rem;
  font-size: 2.4rem;
  border-radius: 4.8rem;
  line-height: 1;
}
.welcome-box .btn {
  border: 1px solid var(--theme-light-color);
  background: rgba(228, 209, 96, 0.10);
  color: var(--theme-light-color);
}
.welcome-box .btn:hover {
  background: rgba(228, 209, 96, 0.20);
}
.welcome-box .btn-border {
  background: #000;
  border: 1px solid #fff;
  color: #fff;
}
.welcome-box .btn-border:hover {
  background:rgba(255, 255, 255, .1);
}
.welcome-box a {
  text-decoration: underline;
}

/* accept cookies */
.accept-cookies {
  position: fixed;
  bottom: -400px;
  left: 0;
  right: 0;
  z-index: 999999;
  background-color: #AC7F0D;
  box-shadow: 0 0 12px 10px rgba(0, 0, 0, 0.10);
}
.accept-cookies.add {
  bottom: 0;
}
.accept-cookies .content {
  max-width: 162rem;
  display: flex;
  justify-content: center;
  padding: 24px 0;
  gap: 2rem;
  margin: 0 auto;
  box-sizing: content-box;
}
.accept-cookies .content a {
  text-decoration: underline;
  color: #fff;
}
.accept-cookies .con-left {
  display: flex;
  align-items: center;
}
.accept-cookies .con-right {
  display: flex;
  align-items: center;
}

.accept-cookies p {
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  font-size: 14px;
  -webkit-text-size-adjust: 100%; /* 禁用iOS的自动字体调整 */
  text-size-adjust: 100%;
  line-height: 1.42;
}
.accept-cookies .btn-border {
  color: #fff;
  background-color: #AC7F0D;
  font-size: 14px;
  height: 40px;
  padding: 1rem 2.2rem;
  border: 1px solid #fff;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 828px) {
  .welcome-box {
    font-size: 1.4rem;
    padding: 0 3rem;
  }
  .welcome-box .logo {
    width: 10rem;
  }
 
  .welcome-box {
   margin-top: -10%;
  }
  .welcome-box .btn-box button {
    font-size: 1.4rem;
    height: 4rem;
    width: 16rem;
  }
  .accept-cookies .btn-border {
    float: none;
    display: block;
    height: 4rem;
    font-size: 1.4rem;
  }
  .welcome-box .btn-box {
    gap: 2rem;
    margin-top: 3.2rem;
  }
  .accept-cookies p {
    width: 100%;
  }
  .welcome-box .title {
    font-size: 2.8rem;
    margin: 3.2rem 0 1.6rem;
  }
  .welcome-box p, .accept-cookies p {
    font-size: 1.4rem;
    line-height: 1.42;
  }
  .accept-cookies .content {
    flex-direction: column;
    max-width: 100%;
    padding: 2.4rem;
  }
  .accept-cookies .btn-border {
    margin: 0 auto;
  }
}
/*---productdetail---*/
.wapper-container {
  overflow-x: hidden;
}

/* ---text-editbox---
.textbox {
  margin: 0 auto;
}

.text-editbox {
  font-size: 16px;
  color: #000;
  position: relative;
  z-index: 1;
}
.text-editbox strong {
  color: #000;
}
.text-editbox table, .text-editbox td {
  border: 1px solid rgb(204, 204, 204);
}
.text-editbox td {
  padding-left: 16px;
}
.text-editbox em {
  font-style: italic;
}
.text-editbox .date {
  margin-bottom: 2.0833vw;
}
.textbox p strong{
  font-size:18px;
}
.textbox p,.textbox li,.textbox span {
  line-height: 24px !important;
}
.textbox img {
  margin: 32px auto !important;
  display: block !important;
  max-width: 100% !important;
}
.textbox .inner-title {
  font-size: 7rem; 
  font-weight: 700; 
  line-height: 1.2;
  margin-bottom: 12px;
  color: #000;
}
.textbox .pd-title {
  margin-bottom: 12px;
}
.centerbox {
  width: 800px;
  margin:0 auto;
}
.text-editbox img {
  margin: 36px auto;
  display: block;
}
.text-editbox img:first-child{
  margin-top:0;
}
.text-editbox b,.text-editbox h3{
  text-align: center;
  margin-top: 32px;
  display: block;
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 20px;
  font-size: 18px;
  text-align: left;
}

.text-editbox b:first-child,.text-editbox h3:first-child{
  margin-top: 0px;
}
.text-editbox p {
  line-height: 24px;
  margin-bottom: 20px;
  text-align: left;
}

.text-editbox p b {
  margin: 0;
  text-align: center;
  display: inline;
  font-size: 16px;
}
@media (max-width: 1023px) {
  .text-editbox,.centerbox{
    width: 100% !important;
  }
}
@media (max-width: 828px) {
  .textbox .inner-title{
    margin-bottom: 16px;
  }
  .text-editbox {
    font-size:14px;
  }
  .textbox p strong{
    font-size:16px;
  }
  .text-editbox b, .text-editbox h3 {
    font-size: 16px;
  }
}

.headershow{
  top:0px;
}

@media (max-width:420px) {
  .text-editbox img {
    max-width: 400px;
    width: 100%;
  }
} */

/* 文字动效 */
.animation-item {
  -webkit-transform: translateY(40px);
  -o-transform: translateY(40px);
     -moz-transform: translateY(40px);
       -ms-transform: translateY(40px);
      transform: translateY(40px);
  opacity: 0;
  -webkit-transition: all .5s ease .3s;
  -o-transition: all .5s ease .3s;
  -moz-transition: all .5s ease .3s;
  transition: all .5s ease .3s;
}
.animation-item.animation {
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);
     -moz-transform: translateY(0);
       -ms-transform: translateY(0);
      transform: translateY(0);
  opacity: 1;
}

.pic_view {
  width: 100%;
  height:0;
  padding-bottom: 100%;
  display: block;
}
.pic_view:after {
  content: "";
  width: 0;
  display: inline-block;
  padding-top: 100%;
  vertical-align: middle;
}


/* subscribe layer */
.subscribeLayer{
  width: 420px;
  position: fixed;
  z-index: 9998;
  left:16px;
  bottom:-500px;
  background: #fff;
  padding: 40px 32px 0 32px;
  box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.1);
  border-radius: 12px;
  color: #000;
  text-align: center;
  overflow: hidden;
}
.subscribeLayer.up{
  bottom:16px;
}
.subscribeLayer .icon-close{
  position: absolute;
  z-index: 3;
  cursor: pointer;
  right:12px;
  top:12px;
  font-size: 14px;
  color:#999;
}
.subscribeLayer .subscribeLayer-title{
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
}
.subscribeLayer .subscribeLayer-title span {
  color:#4F2DE7;
}
.subscribeLayer .subscribeLayer-des{
  font-size: 14px;
  margin-bottom:16px;
}
.subscribeLayer .input-group {
  height: 40px;
  line-height: 40px;
  margin-bottom:20px;
}
.subscribeLayer .input-group input {
  float: left;
  height: 100%;
  width: calc(100% - 54px);
  border: 1px solid #CCCCCC;
  border-right: 0;
  border-radius: 6px 0 0 6px;
  padding-left: 10px;
}
.subscribeLayer .input-group button {
  width: 54px;
  height: 100%;
  border-radius: 0px 6px 6px 0px;
  background: #000000;
  color: #fff;
  font-size: 18px;
  float: left;
  position: relative;
}
.subscribeLayer .subscribeLayer-welcome{
  width: 100%;
  margin-bottom:-100px
}
.subscribeLayer label{
  text-align: left;
  display: block;
}
.subscribeLayer .subscribeLayer-success{
  display: none;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  justify-content: center;
  align-items: center;
  bottom: 0;
}
.subscribeLayer .icon-check{
  font-size:40px;
  color:#36B800;
  margin-bottom:20px;
  display: block;
}
.subscribeLayer .exposubscribe-success-des {
  color:#36B800;
  font-size: 18px;
  font-weight: 600;
  margin-bottom:20px;
}
.subscribeLayer .btn{
  width: 120px;
  background: #121212;
}
@media (max-width: 767px) {
  .subscribeLayer{
    left:32px;
    right:32px;
    width: auto;
  }
  .subscribeLayer .subscribeLayer-title{
    font-size: 24px;
  }
}


/*---text-editbox---*/
.textbox {
  margin: 80px auto 96px auto;
  max-width: 1024px;
}
.textbox .inner-title{
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}
.textbox .date {
  text-align: center;
}
.textbox .text-editbox{
  width: 1024px;
  text-align: center;
  margin:32px auto;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.02);
  padding: 40px 40px 40px 40px;
}
.textbox .text-editbox img{
  margin: 36px auto;
  display: block;
  max-width:100%;
}
.textbox .text-editbox img:first-child{
  margin-top:0;
}
.textbox .text-editbox b,.textbox .text-editbox h3{
  text-align: center;
  margin-top: 32px;
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 20px;
  font-size: 18px;
  text-align: left;
}

.textbox .text-editbox b:first-child,.textbox .text-editbox h3:first-child{
  margin-top: 0px;
}
.textbox .text-editbox p{
  line-height: 24px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 14px;
}
.textbox .text-editbox video{
  max-width: 100%;
}

.textbox .text-editbox p b{
  margin: 0;
  text-align: center;
  display: inline;
  font-size: 16px;
}
@media (max-width:828px) {
  .textbox{
    margin: 60px auto 96px auto;
  }
  .textbox .inner-title{
    font-size: 30px;
    margin-bottom: 16px;
  }
  .textbox .text-editbox {
    width: 100%;
    padding: 20px 20px 40px 20px;
    margin: 24px auto;
  }
}

