/*!****************************************************************************************************************!*\
  !*** 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, 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: normal;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0 none;
  font-family: sans-serif !important;
}

/* @font-face {
  font-family: 'gotham-medium';
  src: url(fonts/gotham-medium.ttf);
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'gotham-light';
  src: url(fonts/gotham-light.ttf);
  font-weight: normal;
  font-style: normal;
  font-display: block;
} */


article, aside, footer, header, menu, nav, section,img {
  display: block
}

html {
  height:auto !important;
}

body {
  font-family: 'Nunito' !important;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 1.5!important;
  background-color: #fff;
  width: 100%;
  height: 100%;
  color: #333;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.overflow-hide {
  overflow: hidden;
}
@media (max-width:768px) {
  body{
    overflow-x: hidden;
  }

}
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;
}

select:-moz-focusring{
  color: transparent;
  text-shadow: 0 0 0 #705a39;
}

select::-ms-expand {
  display: none;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
  height: 0
}

li {
  list-style: none
}

a {
  color: #333;
  text-decoration: none;
  cursor: pointer;
  outline: 0
}
.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

b {
  font-weight: 500;
}
em {
  font-style: normal
}

.bold {
  font-weight: 500
}

.show {
  display: block!important;
}

.hide {
  display: none!important;
}

.table{
  display: table;
}

.title{
  font-size: 28px;
}

.s-title{
  font-weight: 500;
}

.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: 13px;
  line-height: 20px;
}
label.error-tips {
  margin: 0;
}
textarea ~ label.error-tips {
  top: 96px;
}

.btn {
  height: 48px;
  line-height: 48px;
  border: 1px solid #CCCCCC;
  color: #333;
  display: inline-block;
  border-radius: 24px;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  background-color: #fff;
}


.btn-border {
  height: 48px;
  line-height: 48px;
  background: linear-gradient(97deg, #7CA1FF 0%, #467AFF 100%);
  border-radius: 24px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

.wrapper {
  max-width: 1818px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: content-box;
}
@media (max-width: 1023px) {
  .wrapper {
    padding: 0 20px;
  }
    html{
  	font-size: 46px!important
  }
}

/*---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;}


/* 超出不换行 */
.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;
}

/*
 * flex布局
 */
.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.f-fc {
	flex-direction: column;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;

}

.f-item {
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.f-ac {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.f-ae {
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	-o-align-items: flex-end;
	align-items: flex-end;
}

.f-jc {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.f-jb {
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

.f-wrap {
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
}


/*
 * 文字溢出隐藏
 */
.ellipsis-5 {
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}

.ellipsis-4 {
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.ellipsis-3 {
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.ellipsis-2 {
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.ellipsis-1 {
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
/*---top---*/
.header-top {
  padding-top: .23rem;
  padding-bottom: .23rem;
  background: #ff6b00;
  color:#000;
}
.header-top .warning {
  font-size: .3rem;
  font-family: sans-serif !important;
  font-weight: 500;
}
.header-top .warning span{
	 font-family: sans-serif !important;
}
.header-top .showlanguagebox {
  position: relative;

}
.header-top .showlanguagebox .icon-language {

  font-size: .3rem;
  vertical-align: middle;
}
.header-top .showlanguagebox .icon-arrow-down {
  font-size: .2rem;
  vertical-align: middle;
}
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 11;
  height: 1.25rem;
}
.public-header {
  width: 100%;
  height: 1.25rem;
  z-index: 999;
  background: #fff;
  position: relative;
  width: 100%;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  position: absolute;
  top: 0;
}
.header-box {
    height:100%;
    display: flex;
    -webkit-display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}
.public-header .logo {
    width: 3.38rem;
    height: .65rem;
    width: 1.51rem;
    height: .84rem;
    background: url(/static/images/web/logo.png) no-repeat;
    background-size: 100%;
}
.public-header.fixed {
  position: fixed;
  top: 0;
}

.top-nav ul {
    height: 100%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}

.top-nav ul li {
    font-size: .34rem;
    margin-left: 1rem;
    line-height: 1.2;
}

.top-nav ul li a {
    position: relative;
  font-family: sans-serif !important;
    color: #6d6d6d;
}


.top-nav ul li .category-wrapper a {
    padding: 6px 24px;
}

.top-nav ul li a:hover {
  color: #333;
}


.mobile-back,
.header-box .icon-menu,
.header-box .icon-close {
    display: none;
}

.googleelement {
  position: absolute;
  top:36px;
  right: 0;
  padding:12px;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.3);
  background: #fff;
  z-index: 9999;
  line-height: 1;
}
.googleelement a{
  display: inline !important;
  margin: 0 12px !important;
  line-height: 24px !important;
}
.top-nav .googleelement {
  display: none;
}
.showlanguagebox {
  position: relative;
  cursor: pointer;
}
.showlanguagebox .googleelement{
display: none;
}
.showlanguagebox:hover .googleelement{
display: block;
}
.showlanguagebox a:after {
  content: none !important;
}
.showlanguagebox .icon-arrow-down{
  display: inline-block;
  margin-left: 4px;
}
.goog-te-banner-frame.skiptranslate {display: none !important;}
.slide-li {
  position: relative;
}
.category-wrapper {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: #FFFFFF;
  box-shadow: 0 8px 16px rgba(0,0,0,.1);
  padding: 8px 12px;
  z-index: 2;
  display: none;
}
.category-wrapper a {
  margin: 0 !important;
  line-height: 32px !important;
  text-transform: none;
  white-space: nowrap;
  color: #000 !important;
  display: block;
}
.expand-toggle {
  display: none;
}

@media (max-width: 1023px) {
  .public-header, .header-sticky {
      height: 56px;
  }
  .header-box .icon-menu,
  .header-box .icon-close {
      display: block;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      font-size: 24px;
  }
  .header-box .icon-close {
    display: none;
  }
  .mobile-back {
      display: block;
      font-size: 24px;
      position: absolute;
      left: 8px;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
  }
  .header-top .warning {
    float: none;
    text-align: center;
    font-size: 13px;
  }

  .top-nav {
      position: fixed;
      top: 56px;
      left: 100%;
      height: calc(100% - 56px);
      z-index: 999;
      width: 100%;
      max-width: 100%;
      background: #fff;
      border-top: 1px solid #f7f7f7;
  }
  .top-nav.in {
      left: 0;
  }
  .top-nav ul {
    display: block;
    text-align: center;
    width: 100%;
    height: auto;
  }
  .top-nav ul li a:hover {
    border-radius: 0;
  }
  .top-nav ul li a {
    display: block;
    width: 100%;
    padding: 0;
  }
  .top-nav ul li {
      margin: 0;
      line-height: 48px;
      height: 48px;
  }
  
  .public-header .logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      width: 117px;
      height: 20px;
      width: 151px;
      height: 42px;
    background: url(/static/images/web/logo.png) no-repeat center;
    background-size:auto 100%;
  }
  .nav-content {
    height: 100%;
    overflow: auto;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    padding-bottom: 40px;
  }
  
  .showlanguagebox {
    padding:8px 0 0 8px;
  }
  .showlanguagebox .language_a,
  .header-top .showlanguagebox {
    display: none;
  }
 .googleelement {
    display: block !important;
    box-shadow: none;
    line-height: 24px;
    padding: 0;
    margin: 0;
    right: auto;
    left: 50%;
    top: auto;
    bottom: 20px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .top-nav ul li .category-wrapper a {
    width: 100%;
    line-height: 48px!important;
    height: 48px;
    position: relative;
  }
  .category-wrapper {
    transform: translateX(0);
    -webkit-transform: translaeX(0);
    /* display: block; */
    position: static;
    border: none;
    padding: 0;
  }
  .top-nav ul li.slide-li {
    height: auto;
  }
  .nav-dropdown {
    box-shadow: none;
  }
  .expand-toggle {
    display: inline-block;
    margin-left: 4px;
  }
  .expand-toggle.expand .icon-arrow-down:before {
    content: "\e90a";
  }
  .top-nav ul .slide-li>a {
    padding-left: 20px;
  }
}


/* footer */
.footer {
  background: #ff6b00;
  color: #fff;
  text-align: left;
  padding: 1rem 0 .8rem 0;
  position: relative;
  z-index: 2;
}
.footer-row {
  display: -webkit-flex;
  display: flex;
}
.footer-row .subscribe {
  width: 40%;
  margin-right: 40px;
  position: relative;
}
.footer-row .customer-service {
  width: 30%;
}
.footer-row .follow-us {
  width: 30%;
}
.footer-row .title {
  font-size: .32rem;
  padding-bottom: .25rem;
    font-family: sans-serif !important;

}
.footer .input-group input {
  height: .47rem;
  line-height: .47rem;
  max-width: 312px;
  width: calc(100% - .7rem);
  background: #FFFFFF;
  border-radius: 2px 0 0 2px;
  border:none;
  border-right: none;
  padding: 0 16px;
  float: left;
  font-size: .22rem;
  color: #ff6b00;
  font-weight: none;
}


.footer .input-group ::-webkit-input-placeholder {color:#ff6b00}
.footer .input-group :-moz-placeholder {color:#ff6b00}
.footer .input-group ::-moz-placeholder {color:#ff6b00;}
.footer .input-group :-ms-input-placeholder {color:#ff6b00}



.footer .input-group button {
  width: .7rem;
  height: .48rem;
  border-radius: 0;
  background-color: #000000;
  color: #fff;
  font-size: 20px;

}
.footer .input-group button:hover {
  background-color: #638FFF;
}
.footer .tips {
  margin-top: 4px;
  position: absolute;
  top:1.4rem;
  width: 100%;
  max-width: 360px;
  padding: 8px 16px;
  color: #ff6b00;
  background-color: #fff;
}
.footer .tips i {
  font-size: 16px;
  margin-right: 6px;
  color: #009900;
}
.footer .tips i,.footer .tips span {
  vertical-align: middle;
}
.footer .description {
  margin: 8px 0 16px;
}
.footer .follow-us li {
  float: left;
  margin-right: 20px;
}
.footer .follow-us a {
  width: .93rem;
  line-height: .93rem;
  height: .93rem;
  display: block;
  background-color: #fff;
  border-radius: 100%;
  font-size: .5rem;
  text-align: center;
  color: #ff6b00;
}
.footer .follow-us a:hover {
  color: #ff6b00;
}
.footer .footer-bottom {
  margin-top: 64px;
}
.footer-privacybox {
  display: inline;
}
.footer-privacybox a {
  margin-left: 20px;
  position: relative;
  color: #666;
}
.footer-privacybox a:first-child:after {
  content: '';
  position: absolute;
  right: -12px;
  top: 4px;
  width: 1px;
  height: 12px;
  background: #595959;
}

.footer-style-fix{
    position: fixed;
    width: 100%;
    bottom: 0;
}
img.imgs{
	width: 100%;
	display: block;
}
video.videos{
	width: 100%;
	object-fit: cover;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer .follow-us li {
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .header-top {
    line-height: 18px;
    padding: 5px 0;
  }
  .footer {
    /* text-align: center; */
    padding: 28px 0 32px;
  }
  .footer-row {
    display: block;
  }
  .footer-row .subscribe,
  .footer-row .customer-service,
  .footer-row .follow-us {
    width: 100%;
    margin-right: 0;
  }
  .footer-row .follow-us,
  .footer-row .customer-service,
  .footer .footer-bottom {
    margin-top: 32px;
  }
  .footer-privacybox {
    display: block;
  }
  .footer-privacybox a:first-child {
    margin-left: 0;
  }


.footer-row .title,.footer .description{
	text-align: center;
}
.footer .description{
	margin-top: 0;
}
.follow-us ul.clearfix{
	display: flex;
	justify-content: center;
}

}


/*---分页样式---*/
.page-wrap {
  margin: 16px auto;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .page-wrap {
    margin: 24px 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
}


/*---layui---*/
.kizoku-tips-success,.kizoku-tips-error,.kizoku-tips-warning{
  box-shadow: none !important;
  border: 1px solid #d9e9c9;
  border-radius: 3px !important;
  overflow: hidden !important;
  display: table !important;
  min-width: 140px !important;
}
.kizoku-tips-warning{
  border: 1px solid #FFDEAF;
  width: auto !important;
}
.kizoku-tips-success .layui-layer-content {
  background: #F4F8EE;
  color:#559900;
}


.kizoku-tips-success .layui-layer-padding,.kizoku-tips-error .layui-layer-padding{
  padding: 16px 20px 16px 55px !important;
}

.kizoku-tips-success .layui-layer-ico,.kizoku-tips-error .layui-layer-ico {
  background: none !important;
  width: 24px !important;
  height:24px !important;
  font-size: 24px !important;
}

.kizoku-tips-error {
  border: 1px solid #f1cddb;
}

.kizoku-tips-error .layui-layer-content {
  background: #fef1f1;
  color:#ea4949;
}

.kizoku-tips-error .layui-layer-content .layui-layer-ico2 {
  font-size: 24px;
}

.kizoku-tips-warning .layui-layer-content{
  background: #FDF6EC;
  color:#E6A23C;
}

.kizoku-tips-warning .layui-layer-content .layui-layer-ico3 {
  font-size: 24px;
  top:20px !important;
}
.icon-warning{
  background: none !important;
  width: 24px!important;
  height:24px!important;
  background: url(/static/dist/assets/icon-warning_d416d3.svg) no-repeat !important;
  background-size: 100% !important;
}
.layui-layer-dialog .layui-layer-content{
  word-break: normal !important;
}


.tips-loading {
  min-width: 100px !important;
  width: 100px;
  height: 80px;
  background-color: rgba(0,0,0,0.8) !important;
  border-radius: 8px !important;
}
.tips-loading .layui-layer-content {
  padding: 0 !important;
  text-align: center !important;
  height: 100%;
  display: flex;
  display: -webkit-flex;
}
.tips-loading .timer-loading{
  width: 24px;
  height: 24px;
  background-color: transparent;
  box-shadow: inset 0px 0px 0px 2px #fff;
  border-radius: 50%;
  position: relative;
  margin: auto;
}
.tips-loading .timer-loading:after, .tips-loading .timer-loading:before{
  position: absolute;
  content:"";
  background-color: #fff;
}
.tips-loading .timer-loading:after{
  width: 10px;
  height: 2px;
  top: 11px;
  left: 11px;
  -webkit-transform-origin: 1px 1px;
     -moz-transform-origin: 1px 1px;
          transform-origin: 1px 1px;
  -webkit-animation: minhand 2s linear infinite;
     -moz-animation: minhand 2s linear infinite;
          animation: minhand 2s linear infinite;
}

.tips-loading .timer-loading:before{
  width: 8px;
  height: 2px;
  top: 11px;
  left: 11px;
  -webkit-transform-origin: 1px 1px;
     -moz-transform-origin: 1px 1px;
          transform-origin: 1px 1px;
  -webkit-animation: minhand 8s linear infinite;
     -moz-animation: minhand 8s linear infinite;
          animation: minhand 8s linear infinite;
}
@-webkit-keyframes minhand{
  0%{-webkit-transform:rotate(0deg)}
  100%{-webkit-transform:rotate(360deg)}
}
@-moz-keyframes minhand{
  0%{-moz-transform:rotate(0deg)}
  100%{-moz-transform:rotate(360deg)}
}
@keyframes minhand{
  0%{transform:rotate(0deg)}
  100%{transform:rotate(360deg)}
}
/*---agelimit---*/
.agelimit {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.2);
}

.welcome-box {
  position: absolute;
  width: 560px;
  left: 50%;
  top: 50%;
  margin-top: -180px;
  margin-left: -280px;
  text-align: center;
  padding:32px;
  background: #fff;
  font-size: 16px;
}

.welcome-box .logo {
  float: none;
  margin:0 auto 24px auto;
  
      width: 3.38rem;
    height: .65rem;
        width: 1.51rem;
    height: .84rem;
    background: url(/static/images/web/logo.png) no-repeat;
    background-size: 100%;
    
    
    
}
.welcome-icon b {
  font-weight: 700;
}
.welcome-icon p {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 36px;
}
.welcome-box .btn-box {
  margin-top:24px;
}
.welcome-box .btn{
  float: left;
  width: calc(50% - 8px);
  margin-right:16px;
  height:48px;
}
.welcome-box .btn-border {
  float: left;
  width: calc(50% - 8px);
  height:48px;
}

.agelimit-bottom {
  position: fixed;
  bottom: -170px;
  left: 0;
  right: 0;
  background: rgba(207,51,57,1);
  height: 80px;
  z-index: 99999;
  animation-delay:2s;
  text-align: center;
  -webkit-animation-delay:2s;
}

.agelimit-bottom.add {
  bottom: 0;
}

.agelimit-bottom p {
  color:#fff;
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 170px);
}

.agelimit-bottom p a{
  text-decoration: underline;
  color:#fff;
}

.agelimit-bottom .icon-close {
  color:#fff;
  padding:16px;
  font-size: 20px;
  position: relative;
  top:-6px;
  cursor: pointer;
}

.agelimit-bottom .center{
  max-width: 1100px;
  margin: 20px auto;
}

@media (max-width:768px) {
  .text-editbox,.centerbox{
    width: 100% !important;
  }

}
@media (max-width:600px) {
  .welcome-box {
    font-size: 14px;
  }
}
@media (max-width:420px) {
  .welcome-box {
    width: auto;
    left:16px;
    right: 16px;
    padding:16px;
    height:auto;
    margin:0;
    transform: translate(0,-50%);
  }

  .welcome-box .btn:first-child {
    margin-top: 0;
  }

  .welcome-box .welcome-icon p {
    font-size: 20px;
    line-height: 1.2;
  }
  .agelimit-bottom{
    height:auto;
  }
  .agelimit-bottom .center{
    margin:10px 0;
    padding-right: 24px;
  }
  .agelimit-bottom p{
    width: 100%;
  }
  .agelimit-bottom .icon-close{
    position: absolute;
    right: 0;
    top:0;
  }
}


/*---productdetail---*/
.wapper-container {
  overflow-x: hidden;
}


/*---table-style---*/
.table-style-1 {
  margin-top: 32px;
  border-top: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
  font-size: 14px;
  width: 100%;
}
.table-style-1 td {
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}
.table-style-1 thead td,.table-style-1 tbody:first-child td{
  height:44px;
  background: #f0f0f0;
  font-weight: 700;
}
.table-style-1 tbody td{
  padding:14px 16px;
  text-align: left;
  vertical-align: top;
  background: #fff;
}
.table-style-1 tbody td p span{
  text-decoration: underline;
}
.table-style-1 tbody td p{
  margin-bottom: 24px;
}
.table-style-1 tbody td li{
  list-style-type: disc;
  margin-left: 16px;
}

.table-style-2{
  border-top: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
  font-size: 14px;
  text-align: center;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 32px;
}

.table-style-2 td {
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  height:44px;
  padding:0 16px;
}

.table-style-2 thead td,.table-style-2 tbody:first-child td{
  font-weight: 700;
}
.table-style-2 thead tr td:last-child,.table-style-2 tbody:first-child tr td:last-child{
  background: #000;
  color:#fff;
}

.table-style-2 tr td:first-child{
  text-align: right;
}
.table-style-2 tr td:last-child{
  text-align: left;
  background:#CF3339;
  color:#fff;
}

.headershow{
  top:0px;
}

@media (max-width:420px) {
  .table-style-1 td {
    padding: 8px !important;
  }
}
/* 文字动效 */
.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;
}
.icon-loading {
  animation: rotating 1s linear infinite;
  display: inline-block;
  font-size: 20px;
  vertical-align: middle;
}
.is-loading {
  display: none;
  position: absolute;
  width: 100%;
  height: 48px;
  line-height: 48px;
  background: #000;
  text-align: center;
  color: #fff;
  top: 0;
  left: 0;
  z-index: 3;
  cursor: not-allowed;
}
@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}

/*---text-editbox---*/
.textbox {
  margin: 48px 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:820px) {
  .textbox{
    padding:0 20px;
  }
  .textbox .inner-title{
    margin-bottom: 16px;
  }
  .textbox .text-editbox {
    width: 100%;
    padding: 20px 20px 40px 20px;
    margin: 24px auto;
  }
}

/* bottom-communitylink */
.bottom-communitylink{
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 100px;
  height: 118px;
  z-index: 9999;
  cursor: pointer;
}
.bottom-communitylink a{
  display: block;
  width: 100%;
  height: 100%;
  background: url(/static/dist/assets/communitylink_0cc6e4.png) no-repeat;
  background-size: 100%;
}
.bottom-communitylink span{
  position: absolute;
  right: 0;
  top: -8px;
  width: 18px;
  height: 18px;
  color: #fff;
  background: #333;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}
.bottom-communitylink i {
  display: block;
  width: 12px;
  height: 12px;
  font-size: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .bottom-communitylink{
    right: 4px;
    bottom: 40px;
    width: 18vw;
    height: 22vw;
  }
}


.float-investigation-lists {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 99999;
}
.float-investigation {
  position: relative;
  margin-top: 36px;
}
.float-investigation a {
  display: block;
  width: 140px;
  height: 132px;
  background: none no-repeat;
  background-image: url(/static/images/web/float-investigation.png);
  background-size: 100%;
}
.float-investigation span {
  position: absolute;
  top: 0;
  right: 0;
}
.float-investigation i {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  background-color: #FF6701;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .float-investigation {
    bottom: 32px;
  }
  .float-investigation a {
    width: 110px;
    height: 104px;
  }
  .float-investigation i {
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
}

@media (max-width: 767px) {
  .float-investigation {
    bottom: 20px;
    right: 8px;
  }
  .float-investigation span {
    position: absolute;
    top: -34px;
    right: -14px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
  }
}