@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: 'Roboto Condensed', sans-serif;
}
article, aside, footer, header, menu, nav, section,img {
  display: block
}

html {
  height:auto !important;
}

body {
  font-size: 14px !important;
  font-weight: 400;
  line-height: 1.5!important;
  background-color: #000;
  width: 100%;
  height: 100%;
  color: #fff;
  -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
}
.pic_view {
  width: 100%;
  height:0;
  padding-bottom: 100%;
  display: block;
}

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;
}

.inner-pagebox{
  background-color: #fff;
  color: #000;
}

.btn {
  height: 48px;
  line-height: 48px;
  color: #51F190;
  display: inline-block;
  border-radius: 10px;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  background-color: #fff;
}
.btn:hover {
  box-shadow: 0 0 0.1em 0px rgb(81, 241, 144, 0.8);
}


.btn-border {
  height: 48px;
  line-height: 48px;
  background: rgba(81, 241, 144, 1);
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}
.btn-border:hover {
  background: #33dd77;
}

.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: content-box;
}
@media (max-width: 1023px) {
  .wrapper {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .wrapper {
    padding: 0 16px;
  }
}

/*---文字动效---*/
.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;
}
 

/*---transition---*/

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

.transition2{
  transition: all .6s ease;
}
.transition3{
  transition: all .2s ease;
}
.transition-sp1{
  transition: all 0.4s 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;
}

/*---text-editbox---*/
.textbox {
  margin: 0 auto;
  padding-top: 66px;
  padding-bottom: 96px;
  max-width: 1024px;
}
.textbox .inner-title{
  font-size: 40px;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.2;
}
.textbox .date {
  text-align: center;
}
.textbox .text-editbox{
  width: 920px;
  text-align: center;
  margin: 40px auto;
  font-size: 16px;
  border-top: 1px solid #D8D8D8;
  padding-top: 46px;
}
.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;
  font-weight: 600;
}

.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: 1023px) {
  .textbox {
    padding-top: 48px;
    padding-bottom: 80px;
  }
  .textbox .inner-title {
    font-size: 32px;
  }
}
@media (max-width:820px) {
  .textbox {
    padding-top: 32px;
    padding-bottom: 40px;
  }
  .textbox .inner-title {
    font-size: 24px;
  } 
  .textbox .text-editbox {
    width: 100%;
    padding: 20px 16px 0 16px;
    margin: 24px auto;
  }
}

/* 按钮-loading */
.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);
  }
}



/*---layui---*/
.tips-success,.tips-error,.tips-warning{
  box-shadow: none !important;
  border: 1px solid #d9e9c9;
  border-radius: 3px !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: #F4F8EE;
  color:#559900;
}


.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-error {
  border: 1px solid #f1cddb;
}

.tips-error .layui-layer-content {
  background: #fef1f1;
  color:#ea4949;
}

.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;
}
.icon-warning{
  background: none !important;
  /* width: 24px!important;
  height:24px!important;
  background: url(../../images/web/icon-warning.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  18+---*/
.agelimit {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  color: #fff;
  transition: all 0.5s;
}
.agelimit.animate {
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
  opacity: 0;
}
.agelimit .q-icon {
  max-width: 280px;
  margin-bottom: 80px;
}
.agelimit.animate .q-icon {
  opacity: 1;
}

.welcome-box {
  position: absolute;
  max-width: 460px;
  width: 100%;
  padding: 0 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  text-align: center;
  font-size: 16px;
}
.welcome-box .subtitle {
  font-size: 20px;
  margin: 24px 0 32px;
}

.welcome-icon b {
  font-weight: 700;
}
.welcome-box .welcome-icon p {
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 600;
}

.welcome-box button {
  margin: 0 auto;
  width: 320px;
  border: none;
  border-radius: 10px;
  display: block;
  margin-bottom: 20px;
}
.btn-box {
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .agelimit .q-icon {
    max-width: 224px;
    margin-bottom: 64px;
  }
  .welcome-box .welcome-icon p {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .agelimit .q-icon {
    max-width: 140px;
    margin-bottom: 36px;
  }
  .welcome-box .welcome-icon p {
    font-size: 16px;
  }
  .welcome-icon + p {
    font-size: 14px;
  }
  .welcome-box .welcome-icon p {
    margin-bottom: 16px;
  }
  .btn-box {
    margin-top: 20px;
  }
  .welcome-box button {
    margin-bottom: 16px;
    max-width: 100%;
  }
}


/* 底部弹出 -- cookie */
.pop-bottom {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  background: #51F190;
  z-index: 99999;
  animation-delay:2s;
  -webkit-animation-delay:2s;
  padding: 0 20px;
}

.pop-bottom.add {
  bottom: 0;
}

.pop-bottom p {
  color: #333;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  width: calc(100% - 170px);
}

.pop-bottom p a{
  text-decoration: underline;
}

.pop-bottom .btn {
  display: inline-block;
  width: 136px;
  border-radius: 10px;
  line-height: 40px;
  height: 40px;
}
.pop-bottom:hover .btn {
  box-shadow: 0 0 8px 0 rgb(0, 0, 0, 0.3);
}

.pop-bottom .center{
  max-width: 1100px;
  margin: 24px auto;
}
@media (max-width: 1024px) {
  .pop-bottom p {
    width: 100%;
    margin-bottom: 24px;
  }
  .pop-bottom .center {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
}
@media (max-width: 767px) {
  .pop-bottom {
    padding: 0 16px;
  }
  .pop-bottom .center {
    margin-top: 12px;
  }
  .pop-bottom p {
    margin-bottom: 16px;
  }
  .pop-bottom .btn {
    height: 32px;
    line-height: 32px;
  }
}