@charset "utf-8";

/* base */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  user-drag: none;
}

*[draggable],
*[draggable="true"] {
  -webkit-user-drag: element;
  -moz-user-drag: element;
  -ms-user-drag: element;
  user-drag: element;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family:  "Microsoft YaHei", "微软雅黑", Arial,Helvetica,  sans-serif;
  font-size: 14px;
  color: #333;
  background-color: #fff;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -moz-outline-style: none;
}

a:active,
a:hover {
  outline: 0;
  text-decoration: none;
}

a:focus {
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

b,
strong {
  font-weight: bold;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

pre {
  overflow: auto;
}


dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: normal;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  outline: none;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
  outline: none;
  -webkit-appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}

legend {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}

.clearfix::after {
  content: '';
  height: 0;
  display: block;
  clear: both;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.f-dr { /*水平*/
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.f-dc { /*垂直*/
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-1 > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: inline-block; /* IE10失效的解决办法 */
}

.f-as {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.f-ac {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.f-ae {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.f-js {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.f-jc {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.f-je {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.f-jsb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
/* base */

/* animation */
/*
  animation: jump_down 1.8s infinite ease-in-out;
	-moz-animation: jump_down 1.8s infinite ease-in-out;
	-webkit-animation: jump_down 1.8s infinite ease-in-out;
  -o-animation: jump_down 1.8s infinite ease-in-out;
*/
/* jump_down */
@keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

@-moz-keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

@-webkit-keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

@-o-keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

/* jump_down */

/* animation */

/* video_model */
.video_model {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
}
.video_model .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
}
.video_model .video {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  width: 80%;
  max-width: 1280px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  background: #252525;
}
.video_model .video .close {
  position: absolute;
  right: -7.3vw;
  top: 0;
  width: 4vw;
  z-index: 99999;
  cursor: pointer;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}

.video_model .video .close img{
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.video_model .video .close::before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: url(../pics/gameClose.png) center no-repeat;
  background-size: cover;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;

  opacity: 0;
}

.video_model .video .close:hover{
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.video_model .video .close:hover::before{
  opacity: 1;
}

.video_model .video .close:hover img{
  opacity: 0;
}

.video_model .video_inner {
  width: 100%;
  padding: 10px;
  overflow: hidden;
  position: relative;
  
}
.video_model .video_inner video {
  display: block;
  width: 100%;
  outline: none;
  
  
}
.video_model .video_inner .video_inner_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.video_model .video_inner .video_inner_mask img {
  cursor: pointer;
}
/* video_model */


.common_btn {
  display: block;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: relative;

}

.common_btn.xyx1,
.common_btn.xyx2,
.common_btn.tz1,
.common_btn.tz2,
.common_btn.lx1,
.common_btn.lx2,
.common_btn.lx3,
.common_btn.xyx,
.common_btn.sys,
.common_btn.lx,
.common_btn.xyix,
.common_btn.xzs,
.common_btn.tz {
  width: 4%;
  padding-top: 4%;
  height: 0;
}


.common_btn.xyx1 i,
.common_btn.xyx2 i,
.common_btn.tz1 i,
.common_btn.tz2 i,
.common_btn.lx1 i,
.common_btn.lx2 i,
.common_btn.lx3 i,
.common_btn.xyx i,
.common_btn.sys i,
.common_btn.lx i,
.common_btn.xyix i,
.common_btn.xzs i,
.common_btn.tz i{
  background: url(../pics/btn_shadow.png) center bottom / contain no-repeat;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  z-index: 9;
  position: absolute;
}

.common_btn.xyx1 i::before,
.common_btn.xyx2 i::before,
.common_btn.tz1 i::before,
.common_btn.tz2 i::before,
.common_btn.lx1 i::before,
.common_btn.lx2 i::before,
.common_btn.lx3 i::before,
.common_btn.xyx i::before,
.common_btn.sys i::before,
.common_btn.lx i::before,
.common_btn.xyix i::before,
.common_btn.xzs i::before,
.common_btn.tz i::before{
  content: '';
  position: absolute;
  left: 10%;
  top: 10%;
  width: 80%;
  height: 80%;
  animation: btn_ico 4s ease-in-out infinite;
}
.common_btn.xyx i::before {
  background: url(../pics/btn_xyx_ico.png) center / contain no-repeat;
}
.common_btn.sys i::before {
  background: url(../pics/btn_sys_ico.png) center / contain no-repeat;
}
.common_btn.lx i::before {
  background: url(../pics/btn_lx_ico.png) center / contain no-repeat;
}
.common_btn.xyix i::before {
  background: url(../pics/btn_xyix_ico.png) center / contain no-repeat;
}
.common_btn.xzs i::before {
  background: url(../pics/btn_xzs_ico.png) center / contain no-repeat;
}
.common_btn.tz i::before {
  background: url(../pics/btn_tz_ico.png) center / contain no-repeat;
}

.common_btn.lx1 i::before {
  background: url(../pics/btn_lx_ico.png) center / contain no-repeat;
}

.common_btn.lx2 i::before {
  background: url(../pics/btn_lx_ico.png) center / contain no-repeat;
}

.common_btn.lx3 i::before {
  background: url(../pics/btn_lx_ico.png) center / contain no-repeat;
}

.common_btn.tz1 i::before {
  background: url(../pics/btn_tz_ico.png) center / contain no-repeat;
}

.common_btn.tz2 i::before {
  background: url(../pics/btn_tz_ico.png) center / contain no-repeat;
}

.common_btn.xyx1 i::before {
  background: url(../pics/btn_xyx_ico.png) center / contain no-repeat;
}

.common_btn.xyx2 i::before {
  background: url(../pics/btn_xyx_ico.png) center / contain no-repeat;
}


@keyframes btn_ico {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  75% {
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}


.common_btn.xyx1::before,
.common_btn.xyx2::before,
.common_btn.tz1::before,
.common_btn.tz2::before,
.common_btn.lx1::before,
.common_btn.lx2::before,
.common_btn.lx3::before,
.common_btn.xyx::before,
.common_btn.sys::before,
.common_btn.lx::before,
.common_btn.xyix::before,
.common_btn.xzs::before,
.common_btn.tz::before{
  content: '';
  position: absolute;
  left: -10%;
  top: -10%;
  width: 120%;
  height: 120%;
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);

}


.common_btn.xyx1::before,
.common_btn.xyx2::before,
.common_btn.tz1::before,
.common_btn.tz2::before,
.common_btn.lx1::before,
.common_btn.lx2::before,
.common_btn.lx3::before,
.common_btn.xyx::before,
.common_btn.sys::before,
.common_btn.lx::before,
.common_btn.xyix::before,
.common_btn.xzs::before,
.common_btn.tz::before {
  background: url(../pics/btn_xyx_star.png) center / contain no-repeat;
}


.common_btn.xyx1::after,
.common_btn.xyx2::after,
.common_btn.tz1::after,
.common_btn.tz2::after,
.common_btn.lx1::after,
.common_btn.lx2::after,
.common_btn.lx3::after,
.common_btn.xyx::after,
.common_btn.sys::after,
.common_btn.lx::after,
.common_btn.xyix::after,
.common_btn.xzs::after,
.common_btn.tz::after {
  content: '';
  position: absolute;
  left: 36%;
  top: 27%;
  width: 80%;
  height: 100%;
  opacity: 0;
  z-index: 99;
  -webkit-transform: scale(0) translateY(20%);
  -moz-transform: scale(0) translateY(20%);
  -ms-transform: scale(0) translateY(20%);
  -o-transform: scale(0) translateY(20%);
  transform: scale(0) translateY(20%);
}
.common_btn.xyx::after {
  background: url(../pics/btn_xyx_text.png) center / contain no-repeat;
}
.common_btn.sys::after {
  background: url(../pics/btn_sys_text.png) center / contain no-repeat;
}
.common_btn.lx::after {
  background: url(../pics/btn_lx_text.png) center / contain no-repeat;
}
.common_btn.xyix::after {
  background: url(../pics/btn_xyix_text.png) center / contain no-repeat;
}
.common_btn.xzs::after {
  background: url(../pics/btn_xzs_text.png) center / contain no-repeat;
}
.common_btn.tz::after {
  background: url(../pics/btn_tz_text.png) center / contain no-repeat;
}

.common_btn.lx1::after {
  background: url(../pics/btn_lx1_text.png) center / contain no-repeat;
}

.common_btn.lx2::after {
  background: url(../pics/btn_lx2_text.png) center / contain no-repeat;
}

.common_btn.lx3::after {
  background: url(../pics/btn_lx3_text.png) center / contain no-repeat;
}

.common_btn.tz1::after {
  background: url(../pics/btn_tz1_text.png) center / contain no-repeat;
}

.common_btn.tz2::after {
  background: url(../pics/btn_tz2_text.png) center / contain no-repeat;
}


.common_btn.xyx1::after {
  background: url(../pics/btn_xyx1_text.png) center / contain no-repeat;
}

.common_btn.xyx2::after {
  background: url(../pics/btn_xyx2_text.png) center / contain no-repeat;
}



.common_btn.xyx1:hover::before,
.common_btn.xyx2:hover::before,
.common_btn.tz1:hover::before,
.common_btn.tz2:hover::before,
.common_btn.lx1:hover::before,
.common_btn.lx2:hover::before,
.common_btn.lx3:hover::before,
.common_btn.xyx:hover::before,
.common_btn.sys:hover::before,
.common_btn.lx:hover::before,
.common_btn.xyix:hover::before,
.common_btn.xzs:hover::before,
.common_btn.tz:hover::before,
.common_btn.active::before {
  animation: btn_star 1.2s ease-in-out infinite;
}
@keyframes btn_star {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
}

.common_btn.xyx1:hover::after,
.common_btn.xyx2:hover::after,
.common_btn.tz1:hover::after,
.common_btn.tz2:hover::after,
.common_btn.lx1:hover::after,
.common_btn.lx2:hover::after,
.common_btn.lx3:hover::after,
.common_btn.xyx:hover::after,
.common_btn.sys:hover::after,
.common_btn.lx:hover::after,
.common_btn.xyix:hover::after,
.common_btn.xzs:hover::after,
.common_btn.tz:hover::after,
.common_btn.active::after {
  animation: btn_text 5s ease-in-out infinite;
}
@keyframes btn_text {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) translateY(20%);
    -moz-transform: scale(0) translateY(20%);
    -ms-transform: scale(0) translateY(20%);
    -o-transform: scale(0) translateY(20%);
    transform: scale(0) translateY(20%);
  }
  10% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
    -moz-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    -o-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
    -moz-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    -o-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
  }
  81% {
    opacity: 0;
    -webkit-transform: scale(0) translateY(20%);
    -moz-transform: scale(0) translateY(20%);
    -ms-transform: scale(0) translateY(20%);
    -o-transform: scale(0) translateY(20%);
    transform: scale(0) translateY(20%);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0) translateY(20%);
    -moz-transform: scale(0) translateY(20%);
    -ms-transform: scale(0) translateY(20%);
    -o-transform: scale(0) translateY(20%);
    transform: scale(0) translateY(20%);
  }
}



.model {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}
.model .outer {
  max-width: 1280px;
  width: 80%;
  position: relative;
  height: 100%;
  margin: 0 auto;
}
.model .inner {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.model .inner .close {
  position: absolute;
  right: -7.3vw;
  width: 4vw;
  top: 0;
  cursor: pointer;
  z-index: 9;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}



.model .inner .close img{
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.model .inner .close::before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: url(../pics/gameClose.png) center no-repeat;
  background-size: cover;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;

  opacity: 0;
}

.model .inner .close:hover{
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.model .inner .close:hover::before{
  opacity: 1;
}

.model .inner .close:hover img{
  opacity: 0;
}




.model .inner iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}



.model2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}
.model2 .outer {
  max-width: 1280px;
  width: 80%;
  position: relative;
  height: 100%;
  margin: 0 auto;
}
.model2 .inner {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.model2 .inner .close {
  position: absolute;
  right: -7.3vw;
  width: 4vw;
  top: 0;
  cursor: pointer;
  z-index: 9;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}



.model2 .inner .close img{
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.model2 .inner .close::before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: url(../pics/gameClose.png) center no-repeat;
  background-size: cover;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;

  opacity: 0;
}

.model2 .inner .close:hover{
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.model2 .inner .close:hover::before{
  opacity: 1;
}

.model2 .inner .close:hover img{
  opacity: 0;
}


.model2 .inner iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}


















.gameBox{
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  background: url(../pics/game_background.png) center / contain no-repeat;
  border-radius: 3vw;
}

.gameBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gameBox > div,
.gameBox > label {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.gameBox_btn{
  width: 18.8%;
  height: 12.1%;
  background: url('../pics/btn_1.png');
  border-radius: 44px;
  border: 0.3125vw solid #fff;
  box-shadow: 0 5px 5px #4dacff30;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.82vw;
  cursor: pointer;
  transition: .5s;
}
.gameBox_btn:hover{
  background: url('../pics/btn_2.png');
  box-shadow: 0 5px 5px #ffbd6630;
  background-size: cover;
}

.gameBox_btn.act{
  background: url('../pics/btn_2.png');
  background-size: cover;
  box-shadow: 0 5px 5px #ffbd6630;
}

.gameBox_reset{
  background: url('../pics/btn_3.png');
}
.titModel .gameBox .show{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0%;
  top: 0%;
}
.titModel .gameBox .show .search_btn{
  width: 20%;
  height: 12%;
  position: absolute;
  top: 50%;
  right: 16%;
  cursor: pointer;
}
.titModel .gameBox .show .model_area{
  position: absolute;
  top: 40%;
  left: 10%;
  width: 81%;
  height: 32%;
  background: transparent;
  line-height: 295%;
  border: none;
  font-size:28px;
  overflow: hidden;
  resize: none;
  z-index: 3;
}
.titModel .gameBox .show .model_area_t{
  top: 38%;
}

.titModel .gameBox .show .show_input{
  width: 14%;
  height: 8%;
  border: none;
  background: transparent;
  text-align: center;
  position: absolute;
  top: 51.5%;
  left: 12.7%;
  font-size:25px;
}
.right_model,
.err_model {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.5) ;
  border-radius: 3vw;
}



.btn_outer{
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  background: url(../pics/game_background.png) center / contain no-repeat;
  border-radius: 3vw;
  position: absolute;
  top: 0;
  left: 0;
  display: none;

}

.btn_outer .img{position: absolute;top: 0;left: 0;width: 100%;height: 100%;}

.btn_outer .img img{display: block;width: 100%;}


.anniu{position: absolute;width: 22%;max-width: 240px ;cursor: pointer;right: 13%;bottom: 8%;}

.anniu img{position: absolute;top: 0;left: 0;z-index: 2;transition: all 0.5s;width: 100%;}

.anniu img:nth-child(1){position: relative;}

.anniu img:nth-child(2),.anniu img:nth-child(4){opacity: 0;}

.anniu:hover img:nth-child(1),.anniu.act img:nth-child(1),.anniu.act img:nth-child(3){opacity: 0;}

.anniu:hover img:nth-child(2),.anniu.act img:nth-child(2),.anniu.act img:nth-child(4){opacity: 1;}







