/*动画*/
/*透明到不透明*/
.fadeIn {
  animation-name: fadeIn;
}
/*从右往左滑入*/
.fadeInRight {
  animation-name: fadeInRight;
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
/*从左往右滑入*/
.fadeInLeft {
  animation-name: fadeInLeft;
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
/*从下往上*/
.fadeInUp {
  animation-name: fadeInUp;
}
/*从上往下*/
.fadeInDown {
  animation-name: fadeInDown;
}
/*弹入*/
.bounceInUp {
  animation-name: bounceInUp;
}
/*旋转滑入*/
.rotateIn {
  animation-name: rotateIn;
}
/*缩放滑入*/
.bounceIn {
  animation-name: bounceIn;
}
/* 缩放消失 */
.bounceOut {
  animation-name: bounceOut;
}
.animated {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -100%, 0);
    -webkit-transform: translate3d(-50%, -100%, 0);
    -moz-transform: translate3d(-50%, -100%, 0);
    -ms-transform: translate3d(-50%, -100%, 0);
    -o-transform: translate3d(-50%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  0%,
  to {
    -webkit-transform-origin: center;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -moz-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    -o-transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -moz-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    -o-transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -moz-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    -o-transform: scale3d(0.3, 0.3, 0.3);
  }
}
@media screen and (orientation: landscape) {
}
@media screen and (orientation: landscape) and (min-width: 1024px) {
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: scale(0.9) translate3d(-60%, -100%, 0);
    }
    to {
      opacity: 1;
      transform: scale(0.9) translate(-60%, -60%);
    }
  }
}

#ballId {
    background: white;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    box-shadow: 5px 5px 40px rgba(0, 0, 0, 0.5);
    /* 过渡效果在IE下展示效果不友好 */
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    top: 42%;
    left: -25px;
    display: flex;
    align-items: center;
    z-index: 99;
    /* transform: translate3d(0%, -50%, 0); */
  }
  
  #ballId .ballImg {
    width: 50px;
    height: 50px;
  }
  
  #ballId #account {
    display: none;
    font-size: 14px;
    padding: 0 10px 0 8px;
  }

  /*公共组件*/
/* .u-mark {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
} */
.u-mark {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background-color: #0000008c;
  }
  .u-mark.u-mark-cover {
    background: rgba(0, 0, 0, 0.5) url(../images/game.png) no-repeat center;
    background-size: contain;
  }
  /* .pop-com {
    position: absolute;
    top: 50%;
    left: 50%;
    box-sizing: border-box;
    width: 9rem;
    border: 1px solid #fff;
    border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    background-color: #fff;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    padding-bottom: 20px;
  } */
  .pop-com {
    box-sizing: border-box;
    width: 80%;
    max-width: 340px;
    max-height: 92%;
    /* border: 1px solid #fff; */
    border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    background-color: #fff;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    padding-bottom: 20px;
    transform: scale(1) !important;
    background: linear-gradient(#664540, #71544d, #604a48);
  }
  
  .landscapeScreen .pop-com{
      width: 50%;
      max-width: none;
  }
  
  .pop-com .header {
    /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    /* 老版本语法: Firefox (buggy) */
    /* 混合版本语法: IE 10 */
    /* 新版本语法: Chrome 21+ */
    display: flex;
    /* 新版本语法: Opera 12.1, Firefox 22+ */
    text-align: center;
    border-bottom: 0.01rem solid #f3ebeb;
    position: relative;
  }
  .pop-com .header.bd-none {
    /* border-bottom: none; */
  }
  .pop-com .header .title {
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- */
    /* Chrome */
    /* IE 10 */
    flex: 1;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    font-size: 0.5rem;
    padding: 14px 40px;
    color: #fe0000;
    font-weight: bold;
    min-height: 0.3rem;
  }
  .pop-com .header .i-logo-title {
    margin: 0.1rem auto;
  }
  .pop-com .warn_box{
    margin: 0 0.5rem 0.3rem 0.5rem;
      text-align: center;
      margin-top: -12px;
      margin-bottom: 22px;
      color: #ababab;;
  }
  .pop-com .cont {
    padding: 0rem 0.5rem 0 0.5rem;
  }
  .pop-com .cont .tips {
    margin: 0.1rem 0;
    font-size: 0.35rem;
    color: #f00;
  }
  .pop-com .cont .cont-p {
    font-size: 0.35rem;
    text-align: center;
  }
  .pop-com .tool {
    /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    /* 老版本语法: Firefox (buggy) */
    /* 混合版本语法: IE 10 */
    /* 新版本语法: Chrome 21+ */
    display: flex;
    /* 新版本语法: Opera 12.1, Firefox 22+ */
  }
  .pop-com .tool .item {
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- */
    /* Chrome */
    /* IE 10 */
    flex: 1;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    text-align: center;
    line-height: 2;
    font-size: 0.32rem;
    color: #9f9f9f;
  }
  .pop-com .footer .bot-btn {
    display: block;
    height: 0.8rem;
    width: 36%;
    margin: 0.2rem auto;
    border-radius: 0.2rem;
    -webkit-border-radius: 0.2rem;
    color: #fff;
    line-height: 0.8rem;
    text-align: center;
    font-size: 0.4rem;
    background-color: #3997EE;
  }
  .pop-com.hide {
    display: none;
  }
  .pop-com.hint-pop .i-back{
    position: absolute;
    top: 50%;
    left: 0.65rem;
    margin-top: -3%;
  }
  .pop-com.hint-pop .step1{
    width: 100%;
    margin: 0.4rem 0 0 0;
  }
  .pop-com.hint-pop .step1 .text_box{
    margin: 1.5rem 0 1.5rem 0;
    text-align: center;
    font-size: 15px;
    color: #fff;
  }
  .pop-com.hint-pop .step1 .text_box p{
      font-weight: bold;
      padding: 0 24px;
  }
  .pop-com.hint-pop .step1 .btn-group{
    display: flex
;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 82%;
    margin: 0 auto;
  }
  .pop-com.hint-pop .step1 .btn-group .btn-item{
    /* background: linear-gradient(90deg, #ff0000 60%, #f2aa49 100%); */
    background: linear-gradient(181deg, #ac6816 32%, #ffe74b 100%);
    /* background-color: #fe0000; */
    height: 38px;
    border-radius: 20pt;
    text-align: center;
    color: white;
    line-height: 34px;
    font-size: 16px;
    flex: 1;
    font-weight: bold;
  }
  .pop-com.hint-pop .step1 .btn-group .btn-item.btn-no{
    margin-left: 0.3rem;
  }
  .pop-com.hint-pop .step2{
    margin: 0 auto;
      width: 93%;
      padding-bottom: 0.5rem;
      box-sizing: border-box;
  }
  .pop-com.hint-pop .step2 .text_box{
    min-height: 1rem;
    width: 94%;
    margin: 0 auto;
    background-color: #fe0000;
    display: flex;
    align-items: center;
    FONT-VARIANT: JIS83;
    padding: 0.3rem 0.3rem;
    box-sizing: border-box;
    margin-top: 0.8rem;
    justify-content: center;
    border-radius: 0.15rem;
    color: #ffffff;
  }
  .pop-com.hint-pop .i-back{
    position: absolute;
      left: 0.4rem;
      top: 0.65rem;
      
  }

  #haoping_btn{
    position: absolute;
    cursor: move;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    right: 0px;
  }

  #code_btn{
    position: absolute;
    cursor: move;
    top: 50%;
    background-color: #1d0101;
    border-radius: 0.8rem;
    display: flex
;
    flex-direction: column;
    align-items: center;
    left: 0px;
    padding-bottom: 6px;
    padding-top: 6px;
  }

  #haoping_btn img,#code_btn img{
    width: 46px;
  }
  #haoping_btn span,#code_btn span{
    text-align: center;
    width: 66px;
    color: #fff;
    font-weight: bold;
  }

  .j-com-mark .text_box img{
    width: 12rem;
    height: 12rem;
    margin-top: 12px;
  }

  .a_txt{
    text-decoration: underline;
    text-underline-offset: 6px;
    -webkit-text-decoration-color: #0019ff;
            text-decoration-color: #0019ff;
    text-decoration-thickness: 1px;
    color: #0004ff;
  }
