@charset "UTF-8";
/*---Public CSS---*/
html, body, div, applet, object, iframe,p, h1, h2, h3, h4, h5, h6, 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: 500;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0 none;
}

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

html {
  height:auto !important;
}

body {
  font-family: 'Montserrat', 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 white inset;
  border-bottom: 1px solid rgba(0,0,0,0.54)
}

button, input, select, textarea, img, .button {
  vertical-align: middle;
  outline: 0
}

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

input[type="text"],textarea {
  -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 {
  font-weight: 700;
}
.mobile{
  display: none;
}
.pc{
  display: block;
}
.banner_list_icons {
  position: relative;
}

.banner_list_icon {
  position: absolute;
  left: 0;
  top: 0;
  position: relative;
  background: url(../../images/web/arrow-down.svg) 100% 50% no-repeat;
}

.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: initial;
}

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

/* 自定义 Checkbox 外观 */
.custom-checkbox {
  position: relative;
  width: 3.3333vw;
  height: 3.3333vw;
  border: var(--input-border-width) solid var(--input-border-color);
  background: transparent;
  border-radius: 0; /* 圆角 */
  margin-right: 12px;
  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: 1.875vw;
  color: white;
  font-weight: bold;
  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: 12.1495vw;
    height: 12.1495vw;
  }
  .custom-checkbox::after {
    font-size: 8vw;
  }
}

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

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

b {
  font-weight: 600;
}
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: #D50000;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
}
label.error-tips {
  margin: 0;
}
textarea ~ label.error-tips {
  top: 96px;
}
.mobile{
  display: none;
}
.btn {
  color: #fff;
  position: relative;
  display: inline-block;
  height: 40px;
  line-height: 38px;
  border: none;
  border-radius: 38px;
  overflow: hidden;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  background-color: #FD9251;
  -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;
  /* -webkit-tap-highlight-color:initial; */
}

.btn-border {
  background: #fff;
  height: 40px;
  line-height: 38px;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid #121212;
  color: #121212;
  font-weight: 600;
  font-size: 14px;
}
.is-loading {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: calc(var(--column-width) / 2);;
  background: var(--theme-color);
  text-align: center;
  color: #fff;
  top: 0;
  left: 0;
  z-index: 3;
  cursor: not-allowed;
}
.icon-loading {
  animation: rotating 1s linear infinite;
  display: inline-block;
  font-size: 20px;
  vertical-align: middle;
}
@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}
.overflow-hide {
  overflow: hidden;
}

/*---main-content---*/
  .main-content{
    margin-bottom: 96px;
  }
  .main-content.home{
    margin:0 !important;
  }

@media (max-width: 1200px) {
  .main-content{
    margin-bottom: 48px !important;
  }
}
@media (max-width: 828px)  {
  .main-content{
    margin-bottom: 20px !important;
  }
  
  .mobile{
    display: block;
  }
  .pc {
    display: none;
  }
  
  
}
.main-content.homepage{
  margin:0
}

/*---top---*/
.header-warning{
  height: 20vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: none;
}
.header-warning .warning {
  font-size: 2.5vw;
  line-height: 1.2;
  font-family: Arial-BoldMT, Arial;
  color: #fff;
}

@media (max-width: 1200px) {
  .header-warning .warning {
    font-size: 32px;
  }
}
@media (max-width:828px) {
  .header-warning .warning {
    font-size: 4vw;
    line-height: 1.3;
  }
}

  /*---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: 767px) {
  .frame-adaption {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
:root {
  --theme-color: #8733FF;
}


body { top: 0px !important; }

.friend_tips {
  font-size: 13px;
  color: #fff;
  background-color: #FD9251;
  padding: 24px 20px;
}



/*---分页样式---*/
.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{
  box-shadow: none !important;
  border: 1px solid #d9e9c9;
  border-radius: 2px !important;
  overflow: hidden !important;
  display: table !important;
  min-width: 140px !important;
}
.tips-warning{
  border: 1px solid #FFDEAF;
  width: auto !important;
}
.tips-success .layui-layer-content {
  background: #F1FDF3;
  color:#008811;
}
.tips-success .layui-layer-padding,.tips-error .layui-layer-padding{
  padding: 16px 20px 16px 55px !important;
}
.tips-success .layui-layer-ico,.tips-error .layui-layer-ico {
  background: none !important;
  width: 24px !important;
  height:24px !important;
  font-size: 24px !important;
}
.tips-success {
  border: 1px solid rgba(0,136,17,0.6);
}

.tips-error {
  border: 1px solid rgba(213,0,0,0.6);
}

.tips-error .layui-layer-content {
  background: #FCEBEB;
  color:#EC0000;
}

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

.tips-warning .layui-layer-content{
  background: #FDF6EC;
  color:#E6A23C;
}

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

/*---agelimit---*/
.agelimit {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  color: #fff;
}

.welcome-box {
  position: absolute;
  max-width: 600px;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  text-align: center;
  font-size: 18px;
}
.welcome-box p {
  line-height: 1.2!important;
  font-size: 18px;
}
.welcome-box .logo {
  width: 246px;
  margin: 0 auto;
}
.welcome-box .title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  margin: 60px 0 24px;
}
.welcome-box .btn-box {
  margin-top: 60px;
  font-size: 0;
}
.welcome-box .btn-box button {
  width: 50%;
  height: 64px;
  font-size: 18px;
  border-radius: 0;
}
.welcome-box .btn {
  background: var(--theme-color);
}
.welcome-box .btn-border {
  background: #000;
  border: var(--input-border-width) solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.welcome-box a {
  text-decoration: underline;
}

/* accept cookies */
.accept-cookies {
  position: fixed;
  bottom: -300px;
  left: 0;
  right: 0;
  z-index: 999999;
}
.accept-cookies.add {
  bottom: 40px;
}
.accept-cookies .content {
  max-width: 85.5147vw;
  display: flex;
  justify-content: space-between;
  min-height: 4.167vw;
  background-color: #fff;
  margin: 0 auto;
  box-sizing: content-box;
  box-shadow: 0 0 12px 10px rgba(0, 0, 0, 0.10);
}
.accept-cookies .content a {
  text-decoration: underline;
}
.accept-cookies .con-left {
  padding: 8px 8px 8px 3.125vw;
  background-color: #fff;
  display: flex;
  align-items: center;
  flex: 1;
}
.accept-cookies .con-right {
  background-color: var(--theme-color);
}

.accept-cookies p {
  color: #000;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  font-size: 18px;
  -webkit-text-size-adjust: 100%; /* 禁用iOS的自动字体调整 */
  text-size-adjust: 100%;
  line-height: 1.2;
}
.accept-cookies .btn-border {
  min-width: 18.6458px;
  border: 0;
  border-radius: 0;
  font-weight: 600;
  float: right;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--theme-color);
  height: 100%;
  font-size: 18px;
  padding: 0 32px;
}
@media (min-width: 1920px) {
  .accept-cookies p {
    font-size: 18px;
  }
}


@media (max-width: 828px) {
  .welcome-box {
    font-size: 3.271vw;
    /* padding: 0 24px; */
  }
  .welcome-box .logo {
    width: 46.729vw;
  }
 
  .welcome-box {
   margin-top: -10%;
  }
  .welcome-box .btn-box button {
    font-size: 18px;
    height: 56px;
  }
  .accept-cookies.add {
    bottom: 20px;
  }
  .accept-cookies .btn-border {
    float: none;
    display: block;
    height: 56px;
  }
  .accept-cookies .con-left {
    padding: 24px;
  }
  .accept-cookies p {
    width: 100%;
  }
  .welcome-box p {
    padding: 0 24px;
  }
  .welcome-box .title {
    font-size: 22px;
    margin: 40px 0 16px;
  }
  .welcome-box p, .accept-cookies p {
    font-size: 16px;
  }
  .accept-cookies .content {
    flex-direction: column;
    max-width: 100%;
  }
  .accept-cookies .btn-border {
    width: 100%;
  }
}
/*---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: 2.5vw; 
  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;
  }
}
