html,
body {
  width: 100%;
  min-width: 1350px;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

a {
  text-decoration: none;
}

.header {
  width: 100%;
  height: 60px;
  background-color: #2274dc;
  color: #ffffff;
}

.header .top_bar {
  width: 1200px;
  margin: 0 auto;
}

.header .top_bar .logo {
  float: left;
  display: block;
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  line-height: 60px;
  letter-spacing: 3px;
  position: relative;
  top: -2px;
}

.header .top_bar .logo img {
  margin: 10px;
}

.agreement {
  font-size: 24px;
  color: #fff;
  line-height: 60px;
  margin-left: 30px;
  position: relative;
}
.agreement:after {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  width: 1px;
  height: 100%;
  background: #b1b1b1;
}

.header .top_bar .nav {
  height: 60px;
  line-height: 60px;
  float: right;
}

.header .top_bar .nav a {
  color: #fff;
  font-size: 16px;
}

.header .top_bar .nav a p {
  margin: 0;
  padding: 0;
  float: left;
  height: 60px;
  padding: 0 15px;
}

.header .top_bar .nav a p.on {
  background-color: #2e8bff;
}

/* banner */
.banner {
  width: 100%;
  height: 532px;
}
.banner .swiper-container,
.banner .swiper-container img {
  width: 100%;
  height: 100%;
  text-align: center;
}
.banner .swiper-pagination-bullet {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: 1;
  margin-left: 10px;
  background-color: #fff;
}
.banner .swiper-pagination-bullet-active {
  background-color: #2274dc;
}

.main {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  background-color: #ffffffaa;
}

h2 {
  font-size: 20px;
  font-weight: bold;
  color: #2274dc;
  position: absolute;
  left: 20px;
}

.content {
  width: 1200px;
  padding: 40px 0 10px;
}

.content li {
  display: inline-block;
  width: 30%;
  padding: 5px 1%;
}

.content li div {
  height: 350px;
  overflow: hidden;
}

.content li div img {
  width: 100%;
  transition: all 0.5s;
  cursor: url("../images/enlarge.ico"), pointer;
}

.content li div img:hover {
  transform: scale(1.1);
}

.content li p {
  font-size: 20px;
  margin: 5px 0;
}

.introduction {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.introduction h1 {
  font-size: 38px;
  font-weight: normal;
  color: #f43c60;
  text-align: center;
}
.introduction h3 {
  font-size: 19px;
  font-weight: normal;
  color: #69d2e8;
}
.introduction p {
  line-height: 1.7em;
  color: #666;
  font-size: 1em;
  margin-top: 1rem;
}

.footer {
  width: 100%;
  height: 120px;
  background-color: #fff;
  padding: 10px 0;
}

.footer p {
  margin: 10px;
  text-align: center;
  color: #333;
}

.footer a {
  color: #333;
}

.mask {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: black;
  opacity: 0.75;
  top: 0;
  left: 0;
  z-index: 999;
}

.view {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 10000;
}

.view .view_source {
  max-width: 720px;
  max-height: 100%;
  margin: 0 auto;
  cursor: url("../images/lessen.ico"), pointer;
  position: relative;
}

.view .view_source .title {
  width: 720px;
  height: 50px;
  line-height: 50px;
  background-color: #000000aa;
  margin: 0 auto;
  position: fixed;
  bottom: 0px;
  text-indent: 10px;
  color: #fff;
  font-size: 20px;
}

.view .close {
  background: url("../images/close.png") no-repeat center;
  background-size: 100%;
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  right: 20px;
  top: 20px;
  z-index: 10000;
  cursor: pointer;
}

.view .close:hover {
  animation: rotate 300ms linear forwards;
  -webkit-animation: rotate 300ms linear forwards;
}

.download {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 150px;
  height: 40px;
  line-height: 40px;
  left: 50%;
  margin-left: -75px;
}

.download p {
  border: 1px solid #fbc93d;
  background-color: #270900;
  color: #fbc93d;
  text-align: center;
}

/*提交显示加载中*/

.submit_loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  text-align: center;
  box-sizing: border-box;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  width: 100px;
  height: 100px;
  margin-top: -100px;
}

.submit_loading img {
  border: none;
  width: 74px;
  height: 74px;
  animation: rotation 2s infinite linear;
  -moz-animation: rotation 2s infinite linear;
  /* Firefox */
  -webkit-animation: rotation 2s infinite linear;
  /* Safari 和 Chrome */
  -o-animation: rotation 2s infinite linear;
  /* Opera */
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* 充值页面 */

.game_list {
  display: block;
  float: none;
  margin: auto;
  border: none;
  width: auto;
  padding: 50px 0;
}

.game_list a {
  color: #2375dc;
}

.game_list ul {
  margin: 0;
  list-style: none;
}

.game_list ul li {
  width: auto;
  height: auto;
  padding: 5px;
}

.game_list ul li {
  float: left;
  display: inline;
  padding: 20px;
  margin: 0px 0px 0px 15px;
  text-align: center;
}

.game_list ul li p {
  margin: 0px;
  padding: 0px;
  line-height: 30px;
}

.game_list ul li.hover {
  background: url(recharge/pay_game_hover.png);
}

.type {
  float: left;
  height: 80px;
  line-height: 80px;
  width: 120px;
  border: 1px solid #2375dcaa;
  border-right: 0;
  border-radius: 15px 0 0 0;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  background: #2375dcaa;
  color: #fff;
}

.info {
  float: right;
  height: 80px;
  width: 100px;
  border: 1px solid #2375dcaa;
}

.count {
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #2375dcaa;
}

.count * {
  vertical-align: middle;
}

.count del {
  color: #aaa;
}

.game_list b {
  font-size: 20px;
  color: #ff3300;
}

.game_list .btn {
  line-height: 40px;
}

.game_list a {
  cursor: pointer;
}

/* 注册页面 */

.register_cont {
  width: 600px;
  margin: 0 auto;
  padding: 80px;
}

.register_cont form {
  padding: 40px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
}

.register_cont form h2 {
  margin: 10px 0px 20px 0px;
  padding: 0px;
  font-size: 14px;
  font-weight: bold;
  line-height: 50px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.register_cont form div {
  clear: both;
  _height: 50px;
  min-height: 50px;
  line-height: 30px;
}

.register_cont form div strong {
  font-weight: normal;
  font-size: 14px;
  width: 150px;
  text-align: right;
  float: left;
  display: inline;
}

.register_cont form div p {
  margin: 0px;
  padding: 0px;
  float: left;
  display: inline;
}

.register_cont form div p input {
  height: 30px;
  line-height: 30px;
  padding-left: 5px;
}

.register_cont form div p button {
  height: 40px;
  line-height: 40px;
}

.register_cont .agreement {
  margin: 10px;
  padding: 5px;
  height: 200px;
  overflow: auto;
  border: 1px solid #ddd;
  background: #f4f4f4;
  border-radius: 3px;
}

.check {
  width: 220px;
  margin-left: 130px;
}

.check a {
  color: #2274dc;
}

.check a:hover {
  color: #2e8bff;
}

.check span {
  float: right;
}

.submit-btn {
  cursor: pointer;
  margin: 0 auto;
  border: 1px solid #2274dc;
  min-height: 35px !important;
  width: 100px !important;
  height: 35px;
  border-radius: 4px;
  line-height: 35px !important;
  background: #2274dc;
}

.submit-btn p {
  text-align: center;
  float: none !important;
  display: block !important;
  color: #fff;
}

.submit-btn:hover {
  background: #2e8bff;
}

.login_tip {
  width: 150px;
  text-align: center;
  margin: 20px auto;
}

.login_tip a {
  color: #2274dc;
}

.login_tip a:hover {
  color: #2e8bff;
}

/*2022-04-08 by lium*/
.game-rec {
  width: 1000px;
  margin: 30px auto 0;
}

#info {
  line-height: 30px;
  font-size: 16px;
  color: #999;
}

.gogame {
  padding: 15px;
  border: 1px solid #e4e4e4;
  background: #fff;
  margin-bottom: 10px;
  color: #333;
  font-size: 12px;
  line-height: 24px;
  position: relative;
}

.gogame a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.gogame:hover {
  color: #0a8bc4;
}

.game-til {
  height: 55px;
  line-height: 55px;
  border-bottom: 1px dashed #cecece;
  padding: 0 15px;
}

.g-til {
  float: left;
  font-size: 24px;
}

.game-til span {
  float: right;
}

.game-con {
  padding: 15px;
}

.game-con:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.g-dec {
  width: 535px;
  float: left;
}

.g-h3 {
  font-size: 18px;
  font-weight: bold;
  color: #c69000;
  line-height: 40px;
  margin-bottom: 10px;
}

.g-pic {
  width: 390px;
  float: right;
}

.g-pic img {
  width: 100%;
}
