:root {
  --pagerKeyColor: rgb(243, 98, 98);
  --pagerActiveKeyColor: #9721e6;
}
.adv {
  padding: 10px 0;
  width: 100% !important;
  text-align: center;
}
#game_box {
  display: none;
}
#game_box #iframe_game {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
}
.fullscreen {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  background-color: #000;
}
.exitfullscreen {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  position: fixed;
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgb(173, 173, 173);
  transition: all 0.3s;
  padding: 0 20px 0;
}
.exitfullscreen .fullscreen_menu {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  position: absolute;
  bottom: 99%;
  width: 20%;
  height: 20px;
  background-color: #ffffff;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 0px 4px 0 rgb(173, 173, 173);
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.1s;
  z-index: -1;
}
.toggleFull {
  top: calc(100% - 70px);
}
.exitfullscreen .toggleOpcity {
  opacity: 1;
}
.exitfullscreen::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: -1;
}

.exitfullscreen .headBtns {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.headBtns .btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.headBtns .btns > div {
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 16%);
  background-image: url(/img/home.png);
  background-size: 22px auto;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  position: relative;
}
.headBtns .btns .gohome a {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  position: absolute;
}
.headBtns .btns .refresh {
  background-image: url(/img/refresh.png);
}
.headBtns .btns .smallscreen {
  background-image: url(/img/smallscreen.png);
}
.headBtns .btns .copy {
  background-image: url(/img/copy.png);
}
.headBtns .btns .close {
  background-image: url(/img/close.png);
  background-size: 19px auto;
}

.more_game {
  text-align: center;
  background-color: rgb(63, 179, 63);
  color: #fff;
  font-size: 0.27rem;
  padding: 0.2rem 0;
  margin: 0.2rem 0 0;
  cursor: pointer;
}
.more_game:nth-of-type(2) {
  background-color: rgb(112, 211, 112);
  cursor: no-drop;
}
/* page */
#pager {
  height: 50px;
  display: table;
  margin: 0 auto;
}
#pager a {
  color: rgba(255, 255, 255, 0.8);
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background-color: var(--pagerKeyColor);
}
#pager a:hover,
#pager a:focus {
  color: #74777b;
  text-decoration: none;
}
/*样式参考*/
a {
  text-decoration: none;
}
.page {
  text-align: center;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.pagingUl {
  float: right;
  padding: 0;
  margin: 0;
  list-style: none;
  height: 30px;
}

.pagingUl li {
  float: left;
  width: 40px;
  height: 40px;
  text-align: center;
  margin-right: 10px;
  border-radius: 5px;
}

.pagingUl li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #666;
  font-size: 17px;
  border-radius: 5px;
  background: #fff;
}

.prv,
.next {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  background: #fff;
  padding: 0 5px;
  border-radius: 5px;
  color: #000;
}

.prv {
  margin-right: 10px;
}

.first,
.last {
  width: 30px;
  height: 30px;
  font-size: 12px;
  text-align: center;
  line-height: 30px;
  /*border: 1px solid #ddd;*/
  cursor: pointer;
  background: #fff;
  padding: 0 5px;
  border-radius: 5px;
  margin-right: 10px;
}

.prv:hover,
.next:hover,
.first:hover,
.last:hover,
.pagingUl li a:hover,
.activP {
  background-color: var(--pagerActiveKeyColor) !important;
  color: #fff !important;
}
