html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  background-color: white;
}
/** 伸缩盒子布局 **/
.flex-row {
  display: flex;
}
.flex-row > * {
  display: block;
}
.flex-col {
  flex: 1;
}
.flex-hAlignCenter {
  justify-content: center;
}
.flex-hAlignBalance {
  justify-content: space-between;
}
.flex-autoWidthRowElem {
  flex: initial;
  width: auto;
}
.flex-vAlignCenter {
  align-items: center;
}
.flex-vAlignEnd {
  align-items: flex-end;
}
.flex-vDirection {
  flex-direction: column;
}
.hAlignCenter {
  text-align: center;
}
.absoluteFull {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.absoluteCenter,
#videoplay,
#loadingIcon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.absoluteCenterX,
.bottomArea {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.absoluteCenterY {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.fullWidth {
  width: 100%;
}
.fullHeight {
  height: 100%;
}
.relativePosition {
  position: relative;
}
/** 设计宽度DW（在下方script块中设置），转换成rem是px/75 **/
body {
  font-size: 0.29333333rem !important;
}
input[type="text"],
input[type="tel"],
input[type="number"],
input[type="password"],
select {
  -webkit-appearance: none;
  box-sizing: border-box;
  border: none;
}
/** 不显示浏览器加上的输入框外观 **/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input::-ms-reveal {
  display: none;
}
.marginBottom10 {
  margin-bottom: 0.13333333rem;
}
.marginBottom20 {
  margin-bottom: 0.26666667rem;
}
.marginBottom40 {
  margin-bottom: 0.53333333rem;
}
.marginBottom50 {
  margin-bottom: 0.66666667rem;
}
.marginBottom60 {
  margin-bottom: 0.8rem;
}
.marginBottom80 {
  margin-bottom: 1.06666667rem;
}
.marginBottom100 {
  margin-bottom: 1.33333333rem;
}
iframe {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
iframe body {
  margin: 0;
  padding: 0;
}
#layaContainer {
  width: 100%;
  height: 100%;
  background: black;
  position: absolute;
  top: 0;
  left: 0;
}
/** 不显示Safari浏览器给password类型输入框加上的小钥匙外观 **/
input::-webkit-credentials-auto-fill-button {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
}
a,
label {
  display: inline-block;
}
a {
  cursor: pointer;
}
.loadingArea {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
#videoplay {
  width: 100%;
  height: auto;
}
#splashDialog {
  z-index: 10;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
}
#loadingIcon {
  width: 6.46666667rem;
}
.nbgameIcon {
  display: inline-block;
  width: 4.96rem;
  position: absolute;
}
.loadingTitle {
  font-size: 0.45333333rem;
  color: black;
}
.loadingText {
  font-size: 0.29333333rem;
  color: #7a7a7a;
  margin-top: 0.8rem;
}
.bottomArea > * {
  white-space: nowrap;
}
@media screen and (orientation: portrait) {
  .bottomArea {
    font-size: 0.26666667rem;
    bottom: 10%;
  }
  .nbgameIcon {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (orientation: landscape) {
  .bottomArea {
    font-size: 0.26666667rem;
    bottom: 10%;
  }
  .nbgameIcon {
    top: 0.33333333rem;
    left: 0.33333333rem;
  }
}
