@charset "UTF-8";
iframe#agreement-frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  border: none;
}

iframe#iframe-tutorial {
  width: 100%;
  height: 600px;
}

* {
  margin: 0px;
  padding: 0px;
}

/* CSS 滚动条样式 STAR */
::-moz-selection {
  background: #007aff;
  color: white;
  text-shadow: none;
}
::-moz-selection,
::selection {
  background: #007aff;
  color: white;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background: #bbbbbb;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background: #dddddd;
  background: rgba(0, 0, 0, 0.05);
}

/* CSS 滚动条样式 END */
body {
  font-size: 13px;
  background-color: #fff;
  font-family: "Microsoft YaHei", Arial, sans-serif;
  /* for ie */
  font: 13px/1 Tahoma, "微软雅黑", sans-serif, Arial, Helvetica, "宋体";
  /* 用 ascii 字符表示，使得在任何编码下都无问题 */
}

body {
  background-color: #000;
  min-width: 1200px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-y: auto;
}

body,
button,
input,
select,
textarea {
  /* for ie */
  font: 13px/1 Tahoma, "微软雅黑", sans-serif, Arial, Helvetica, "宋体";
}

ul,
li {
  list-style: none;
}

/* 重置列表元素 */
a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}
a:hover {
  text-decoration: underline;
}
a:visited, a:link {
  text-decoration: none;
}

img {
  border: none;
}

/* img 搭车：让链接里的 img 无边框 */
button,
input,
select,
textarea {
  font-size: 100%;
}

/* 使得表单元素在 ie 下能继承字体大小 */
/* 注：optgroup 无法扶正 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 重置表格元素 */
body {
  min-width: 1000px;
}

body .body-wrapper {
  opacity: 0;
  -webkit-transition: opacity 150ms ease-in;
  transition: opacity 150ms ease-in;
}

body.ready .body-wrapper {
  opacity: 1;
}

.hide {
  display: none !important;
}

.greyline {
  height: 1px;
  background-color: #dddddd;
  margin: 20px 0 0 66px;
  width: 228px;
}

.blueline {
  height: 2px;
  background-color: #2161b3;
}

.g_glear {
  clear: both;
}

.g_w1 {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  margin-top: 0;
}

/* 顶部工具条 */
.header-links {
  float: right;
  margin-top: 0px;
  line-height: 45px;
}
.header-links ul {
  color: #000;
  float: left;
}
.header-links ul li {
  float: left;
  margin-right: 20px;
}
.header-links ul li a {
  color: #000;
}

/*Top Header Starts Here*/
.top-header {
  height: 80px;
  background-color: #fff;
  width: 100%;
}
.top-header > .main-wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-header .form {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: 250px;
}
.top-header .form .login-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.top-header .form .login-wrapper > .input {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: 5px;
}

.logo-wdl {
  width: 180px;
  height: 60px;
  display: block;
  margin-right: 20px;
}
.logo-wdl img {
  max-height: 100%;
  max-width: 100%;
}

.logo {
  width: 237px;
  height: 60px;
  display: block;
  position: absolute;
  margin-top: 5px;
}
.logo img {
  max-height: 100%;
}

.datetime {
  float: left;
  height: 48px;
  line-height: 48px;
  font-size: 10.5pt;
  color: #666;
  display: inline-block;
}
.datetime .more-links {
  padding-left: 12px;
}
.datetime .more-links a {
  text-decoration: none;
  color: #fff;
  position: relative;
}
.datetime .more-links a .red-packet {
  position: relative;
  width: 16px;
  height: 22px;
  background-color: #d1333d;
  -webkit-box-shadow: 0 0 14px #ffc600;
  box-shadow: 0 0 14px #ffc600;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  -webkit-perspective: 20px;
  perspective: 20px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-animation: tada 2s linear infinite alternate;
  animation: tada 2s linear infinite alternate;
}
.datetime .more-links a .red-packet:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 8px solid #f05348;
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid transparent;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
  -webkit-transition: -webkit-transform 300ms ease-in-out;
  transition: -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}
.datetime .more-links a .red-packet:after {
  content: "$";
  position: absolute;
  top: 48%;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  margin: auto;
  font-size: 6px;
  line-height: 8px;
  text-align: center;
  background-color: #ffc600;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
}
.datetime .more-links a:hover .red-packet {
  -webkit-box-shadow: 0 0 30px #ffc600;
  box-shadow: 0 0 30px #ffc600;
}
.datetime .more-links a:hover .red-packet:before {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.quick-links {
  float: left;
  height: 48px;
  line-height: 48px;
  font-size: 9.5pt;
  display: inline-block;
}
.quick-links a:not(:last-child):after {
  content: "|";
  position: absolute;
  color: #fff;
  line-height: 34pt;
  right: -15px;
}

.qlinks {
  color: #fff;
  display: inline-block;
  padding-left: 20px;
  position: relative;
}

.login-wrapper {
  float: right;
  height: 48px;
  line-height: 48px;
  font-size: 10.5pt;
  color: #fff;
}
.login-wrapper button {
  color: #fff;
  border: none;
}
.login-wrapper div a {
  color: #fff;
}

.button {
  display: inline-block;
  background: #e4393c;
  width: 60px;
  height: 30px;
  border-radius: 4px;
  text-align: center;
  line-height: 30px;
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 5px;
}
.button.register {
  background-color: #4c8ae8;
}
.button.guest {
  background-color: #ef9029;
}
.button:hover {
  -webkit-box-shadow: 0 0 2px #fff0ab, 0 0 10px rgba(255, 240, 171, 0.5);
  box-shadow: 0 0 2px #fff0ab, 0 0 10px rgba(255, 240, 171, 0.5);
}

.login-wrapper a div {
  color: #fff;
}

.input.username, .input.password {
  display: inline-block;
  width: 150px;
  height: 30px;
  line-height: 30px;
  border-radius: 2px;
  border: 1px solid #ccc;
  position: relative;
}
.input.vcode {
  display: inline-block;
  width: 120px;
  height: 30px;
  line-height: 30px;
  border-radius: 2px;
  border: 1px solid #ccc;
  position: relative;
}

.login-wrapper .input.vcode input {
  background-color: transparent;
  border: 0;
  outline: none;
  height: 28px;
  font-size: 10pt;
  margin-left: 10px;
  color: #666;
}
.login-wrapper input {
  background-color: transparent;
  border: 0;
  outline: none;
  height: 28px;
  font-size: 10pt;
  padding-left: 35px;
  color: #666;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border-radius: 20px;
}
.login-wrapper input::-webkit-input-placeholder {
  color: #666;
}
.login-wrapper input::-moz-placeholder {
  color: #666;
}
.login-wrapper input:-ms-input-placeholder {
  color: #666;
}
.login-wrapper input::-ms-input-placeholder {
  color: #666;
}
.login-wrapper input::placeholder {
  color: #666;
}

.input.username {
  display: inline-block;
  color: #fff;
}
.input.username:before {
  content: "";
  background: url(../img/ico_username.png) center/contain no-repeat;
  height: 17px;
  width: 16px;
  position: absolute;
  top: 7px;
  left: 12px;
}
.input.password {
  display: inline-block;
}
.input.password:before {
  content: "";
  background: url(../img/ico_password.png) center/contain no-repeat;
  height: 17px;
  width: 14px;
  position: absolute;
  top: 7px;
  left: 12px;
}

.verify-code.vcode-login {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  cursor: pointer;
}

.btn-pass {
  background-color: #961313;
  border-radius: 4px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  width: 50px;
  font-size: 9pt;
  position: absolute;
  right: 5px;
  top: 4px;
}
.btn-pass:hover {
  background-color: #ce3333;
}

/*Main Menu Starts Here*/
.navigation {
  height: 70px;
  width: 100%;
  background-color: #e4393c;
  background-repeat: repeat-x;
}
.navigation > .main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.navigation > .main-wrapper .wdl-controller {
  display: none;
}
.navigation > .main-wrapper .wdl-controller + .main-menu {
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.navigation > .main-wrapper .login-wrapper {
  margin-left: auto;
}
.navigation > .main-wrapper .login-wrapper .input {
  border: 1px solid #fff;
}
.navigation > .main-wrapper .login-wrapper .input.username:before {
  background: url(../img/ico_username_white.png) center/contain no-repeat;
}
.navigation > .main-wrapper .login-wrapper .input.password:before {
  background: url(../img/ico_password_white.png) center/contain no-repeat;
}
.navigation > .main-wrapper .login-wrapper .input.vcode .verify-code {
  top: 3px;
  right: 3px;
}
.navigation > .main-wrapper .login-wrapper .input input {
  color: #fff;
}
.navigation > .main-wrapper .login-wrapper .input input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.navigation > .main-wrapper .login-wrapper .input input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.navigation > .main-wrapper .login-wrapper .input input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.navigation > .main-wrapper .login-wrapper .input input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.navigation > .main-wrapper .login-wrapper .input input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.navigation > .main-wrapper .login-wrapper .button {
  margin-left: 0;
  width: 48px;
}
.navigation > .main-wrapper .login-wrapper #loginBtn {
  background-color: #62c794;
}

.main-menu {
  float: right;
  height: 70px;
  /*padding: 24px 0 24px 25px;*/
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-menu > .menu-links {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.menu-links {
  color: #fff;
  display: inline-block;
  width: 90px;
  height: 70px;
  position: relative;
  cursor: pointer;
}
.menu-links:hover {
  color: #000;
}
.menu-links.active {
  color: #000;
  pointer-events: none;
}
.menu-links.vip .ch:before {
  content: "VIP";
  position: absolute;
  color: #ffc600;
  background-color: #ce3333;
  top: -16px;
  left: -5px;
  border-radius: 4px;
  display: block;
  padding: 1px 4px;
  font-size: 10px;
}
.menu-links.vip .ch:after {
  content: "";
  position: absolute;
  border-top: 2px solid #ce3333;
  border-right: 4px solid #ce3333;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  left: 8px;
}
.menu-links:before {
  content: "";
  background-color: #ce3333;
  background-image: url(../img/navigation_bg.jpg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transform: skew(20deg) translateX(5%);
  -ms-transform: skew(20deg) translateX(5%);
  transform: skew(20deg) translateX(5%);
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  pointer-events: none;
  border-left: 1px solid #e4393c;
  border-right: 1px solid #e4393c;
}
.menu-links:after {
  content: "";
  background-color: #fa7b78;
  background-image: url(../img/navigation_bg.jpg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  -webkit-transform: skew(-20deg) translateX(-5%);
  -ms-transform: skew(-20deg) translateX(-5%);
  transform: skew(-20deg) translateX(-5%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  pointer-events: none;
}
.menu-links.active:before, .menu-links:hover:before {
  opacity: 1;
  -webkit-transform: skew(20deg) translateX(0);
  -ms-transform: skew(20deg) translateX(0);
  transform: skew(20deg) translateX(0);
}
.menu-links.active:after, .menu-links:hover:after {
  opacity: 0.7;
  -webkit-transform: skew(-20deg) translateX(0);
  -ms-transform: skew(-20deg) translateX(0);
  transform: skew(-20deg) translateX(0);
}
.menu-links .ch {
  font-size: 10.5pt;
  line-height: 10.5pt;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  z-index: 2;
}
.menu-links .en {
  font-size: 7.5pt;
  text-align: center;
  line-height: 7.5pt;
  padding-top: 5px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 2;
}
.menu-links.menu-links-lottery.guest + .menu-links-lottery {
  display: none;
}

/*Navigation Lottery Dropdown Starts Here*/
.lottery-dropdown-wrapper {
  position: absolute;
  top: 74px;
  left: -380px;
  display: none;
}

.menu-links.lottery:hover .lottery-dropdown-wrapper {
  /*display: block;*/
}

.lottery-dropdown {
  width: 650px;
  background-color: #fff;
  position: relative;
  z-index: 20;
  top: 0;
  border-radius: 10px;
  left: 0;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 12px rgba(228, 57, 60, 0.57);
  box-shadow: 0 0 12px rgba(228, 57, 60, 0.57);
}
.lottery-dropdown .arrow {
  width: 12px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  top: -5px;
  right: 562px;
  z-index: 15;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-box-shadow: -1px -1px 1px rgba(228, 57, 60, 0.57), -1px -1px 2px rgba(255, 240, 171, 0);
  box-shadow: -1px -1px 1px rgba(228, 57, 60, 0.57), -1px -1px 2px rgba(255, 240, 171, 0);
}
.lottery-dropdown:before {
  content: "";
  width: 100%;
  height: 12px;
  position: absolute;
  top: -5px;
  left: 0;
  z-index: 15;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.lottery-dropdown-title {
  color: #000;
  font-size: 11pt;
  border-bottom: 1px solid rgba(228, 57, 60, 0.57);
  margin-bottom: 10px;
  padding: 0 20px 10px;
}

.lottery_guan {
  background: url(../img/icon_guan.png) no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin: -3px 0 0 7px;
}

.lottery-dropdown ul {
  color: #000c44;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 10pt;
  text-align: center;
}
.lottery-dropdown ul li {
  cursor: pointer;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  height: 100px;
  width: 100px;
  margin: 20px 0;
  position: relative;
}
.lottery-dropdown ul li .lottery-games {
  height: 100px;
  width: 100px;
  margin: 0 auto 5px;
}
.lottery-dropdown ul li.game-1 .lottery-games {
  background: url("../img/lottery_dropdown.png") -10px -10px;
}
.lottery-dropdown ul li.game-2 .lottery-games {
  background: url("../img/lottery_dropdown.png") -130px -10px;
}
.lottery-dropdown ul li.game-3 .lottery-games {
  background: url("../img/lottery_dropdown.png") -10px -130px;
}
.lottery-dropdown ul li.game-4 .lottery-games {
  background: url("../img/lottery_dropdown.png") -130px -130px;
}
.lottery-dropdown ul li.game-5 .lottery-games {
  background: url("../img/lottery_dropdown.png") -250px -10px;
}
.lottery-dropdown ul li.game-6 .lottery-games {
  background: url("../img/lottery_dropdown.png") -250px -130px;
}
.lottery-dropdown ul li.game-7 .lottery-games {
  background: url("../img/lottery_dropdown.png") -10px -250px;
}
.lottery-dropdown ul li.game-8 .lottery-games {
  background: url("../img/lottery_dropdown.png") -130px -250px;
}
.lottery-dropdown ul li.game-9 .lottery-games {
  background: url("../img/lottery_dropdown.png") -250px -250px;
}
.lottery-dropdown ul li.game-10 .lottery-games {
  background: url("../img/lottery_dropdown.png") -370px -10px;
}
.lottery-dropdown ul li.game-11 .lottery-games {
  background: url("../img/lottery_dropdown.png") -370px -130px;
}
.lottery-dropdown ul li.game-12 .lottery-games {
  background: url("../img/lottery_dropdown.png") -370px -250px;
}
.lottery-dropdown ul li.game-13 .lottery-games {
  background: url("../img/lottery_dropdown.png") -10px -370px;
}
.lottery-dropdown ul li.game-14 .lottery-games {
  background: url("../img/lottery_dropdown.png") -130px -370px;
}
.lottery-dropdown ul li.game-15 .lottery-games {
  background: url("../img/lottery_dropdown.png") -250px -370px;
}
.lottery-dropdown ul li.game-16 .lottery-games {
  background: url("../img/lottery_dropdown.png") -370px -370px;
}
.lottery-dropdown ul li.game-17 .lottery-games {
  background: url("../img/lottery_dropdown.png") -490px -10px;
}
.lottery-dropdown ul li.game-18 .lottery-games {
  background: url("../img/lottery_dropdown.png") -490px -130px;
}
.lottery-dropdown ul li.game-19 .lottery-games {
  background: url("../img/lottery_dropdown.png") -490px -250px;
}
.lottery-dropdown ul li.game-20 .lottery-games {
  background: url("../img/lottery_dropdown.png") -490px -370px;
}
.lottery-dropdown ul li.game-21 .lottery-games {
  background: url("../img/lottery_dropdown.png") -10px -490px;
}
.lottery-dropdown ul li.game-22 .lottery-games {
  background: url("../img/lottery_dropdown.png") -130px -490px;
}
.lottery-dropdown ul li.game-23 .lottery-games {
  background: url("../img/lottery_dropdown.png") -250px -490px;
}
.lottery-dropdown ul li.game-24 .lottery-games {
  background: url("../img/lottery_dropdown.png") -370px -490px;
}
.lottery-dropdown ul li.game-19.wdl .lottery-games {
  background: url("../img/wdl_lottery_dropdown.png") -490px -250px;
}
.lottery-dropdown ul li.game-20.wdl .lottery-games {
  background: url("../img/wdl_lottery_dropdown.png") -490px -370px;
}
.lottery-dropdown ul li.game-21.wdl .lottery-games {
  background: url("../img/wdl_lottery_dropdown.png") -10px -490px;
}
.lottery-dropdown ul li.game-22.wdl .lottery-games {
  background: url("../img/wdl_lottery_dropdown.png") -130px -490px;
}
.lottery-dropdown ul li.game-23.wdl .lottery-games {
  background: url("../img/wdl_lottery_dropdown.png") -250px -490px;
}
.lottery-dropdown ul li.game-24.wdl .lottery-games {
  background: url("../img/wdl_lottery_dropdown.png") -370px -490px;
}

.sidebar {
  position: fixed;
  top: 50%;
  right: 1rem;
  width: 50px;
  z-index: 50;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sidebar .sidebar-item {
  display: block;
  font-size: 50px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0);
  width: 1em;
  min-width: 1em;
  height: 1em;
  min-height: 1em;
  background-size: 100% auto;
  background-position-x: center;
  background-repeat: no-repeat;
  background: black;
  position: relative;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sidebar .sidebar-item:not(:last-child) {
  margin-bottom: 5px;
}
.sidebar .sidebar-item:hover {
  border: 3px solid rgba(255, 255, 255, 0.5);
}
.sidebar .sidebar-item:hover .sidebar-desc {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 1;
  visibility: visible;
}
.sidebar .sidebar-item:hover .sidebar-desc.appqr-wrapper {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}
@supports (filter: brightness(1.2)) {
  .sidebar .sidebar-item:hover:hover {
    -webkit-filter: brightness(1.2);
    filter: brightness(1.2);
  }
}
.sidebar .sidebar-item:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.sidebar .sidebar-item.morse {
  background-image: url(../img/morse-icon.png);
  background-position-y: 0;
  background-size: cover;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sidebar .sidebar-item.navigator {
  background-color: #493a87;
  background-position-y: 0;
}
.sidebar .sidebar-item.navigator:before {
  background-image: url("../img/icons/icon-daohang.svg");
}
.sidebar .sidebar-item.app {
  background-color: #ed6c0e;
  background-position-y: -1em;
}
.sidebar .sidebar-item.app:before {
  background-image: url("../img/icons/icon-app.svg");
}
.sidebar .sidebar-item.qq {
  background-color: #0099cc;
  background-position-y: -2em;
}
.sidebar .sidebar-item.qq:before {
  background-image: url("../img/icons/icon-qq.svg");
}
.sidebar .sidebar-item.wechat {
  background-color: #009900;
  background-position-y: -3em;
}
.sidebar .sidebar-item.wechat:before {
  background-image: url("../img/icons/icon-wechat.svg");
}
.sidebar .sidebar-item.customer-service {
  background-color: #ffae00;
  background-position-y: -4em;
}
.sidebar .sidebar-item.customer-service:before {
  background-image: url("../img/icons/icon-cs.svg");
}
.sidebar .sidebar-item.customer-service-app {
  background-color: #AE511C;
  background-position-y: -5em;
}
.sidebar .sidebar-item.customer-service-app:before {
  background-image: url("../img/icons/icon-kefuapp.svg");
  background-size: 70%;
}
.sidebar .sidebar-item.livechat-service {
  background-color: #bf0e04;
  background-position-y: -6em;
}
.sidebar .sidebar-item.livechat-service:before {
  background-image: url("../img/icons/icon-livechat.svg");
}
.sidebar .sidebar-item.macos-download {
  background-color: #d5208a;
  background-position-y: -7em;
}
.sidebar .sidebar-item.macos-download:before {
  background-image: url("../img/icons/icon-apple.svg");
}
.sidebar .sidebar-item.windows-download {
  background-color: #7225c1;
  background-position-y: -8em;
}
.sidebar .sidebar-item.windows-download:before {
  background-image: url("../img/icons/icon-windows.svg");
}
.sidebar .sidebar-item .sidebar-desc {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-decoration: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-30%, -50%);
  -ms-transform: translate(-30%, -50%);
  transform: translate(-30%, -50%);
  right: 60px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 6px;
  padding: 5px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.8125rem;
  color: #fff;
  -webkit-transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}
.sidebar .sidebar-item .sidebar-desc:not(.appqr-wrapper) {
  white-space: nowrap;
}
@supports (-webkit-backdrop-filter: blur(10px)) {
  .sidebar .sidebar-item .sidebar-desc {
    -webkit-backdrop-filter: blur(10px);
  }
}
.sidebar .sidebar-item .sidebar-desc canvas {
  width: 200px;
  height: 200px;
}
.sidebar .sidebar-item .sidebar-desc:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid rgba(0, 0, 0, 0.7);
}
.sidebar .sidebar-item .sidebar-desc.appqr-wrapper {
  top: 0;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.sidebar .sidebar-item .sidebar-desc.appqr-wrapper:before {
  content: "";
  position: absolute;
  top: 10%;
  right: -10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid rgba(0, 0, 0, 0.7);
}
.sidebar .sidebar-item .sidebar-desc.appqr-wrapper .appqrcode {
  width: 150px;
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sidebar .sidebar-item .sidebar-desc.appqr-wrapper .appqrcode img {
  display: none;
  width: 130px;
  height: 130px;
}
.sidebar .sidebar-item .sidebar-desc.appqr-wrapper .appqrcode canvas {
  width: 130px !important;
  height: 130px !important;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sidebar .sidebar-item .sidebar-desc.appqr-wrapper .appqrcode .text {
  color: #000;
  text-align: center;
  font-size: 16px;
  line-height: 19px;
  font-style: italic;
  margin-top: 7px;
}
.sidebar .sidebar-item .sidebar-desc.appqr-wrapper .appdlurl {
  text-align: center;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  color: #fff;
  border-radius: 0 0 4px 4px;
  padding: 5px 3px;
}

/* left adv */
.left_adv {
  height: 389px;
  width: 129px;
  position: fixed;
  left: 0;
  top: 220px;
  z-index: 9;
}

.left_adv_img {
  width: 100%;
}

/* footer navi */
.footercontainer {
  width: 1000px;
  height: 238px;
  margin: 0 auto;
}

.footernavi2 {
  height: 120px;
  background-color: #2161b3;
}
.footernavi2 .col4,
.footernavi2 .col5,
.footernavi2 .col6 {
  height: 238px;
  float: left;
}
.footernavi2 .col4 {
  width: 325px;
}
.footernavi2 .col5 {
  width: 338px;
}
.footernavi2 .col6 {
  width: 331px;
}

.footercontent {
  width: 220px;
  height: auto;
  margin-top: 15px;
  margin-left: 85px;
  text-align: left;
}
.footercontent a {
  text-decoration: none;
  color: #bcc9e3;
  line-height: 25px;
  font-size: 13px;
}

.borderright {
  border-right: 1px solid #174f97;
}

.borderleft {
  border-left: 1px solid #4073b4;
}

.bothborder {
  border-left: 1px solid #174f97;
  border-right: 1px solid #4073b4;
}

.footerindex2 {
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.bank_number {
  margin-top: 0px;
}

.bank_numbertxt {
  margin-top: 26px;
}

#btn-register {
  float: left;
  margin-right: 5px;
  margin-top: 1px;
}

/* banner */
.bannerpromo {
  background-image: url(../img/cash/promotiontile.jpg);
  background-repeat: repeat-x;
}

.promobanner {
  cursor: pointer;
}

.bxslider2,
.bxslider3 {
  height: 160px !important;
}

.coltxt a {
  color: #000;
}

.cci_title {
  height: 20px;
  left: 0px;
  top: 0px;
  color: #111;
  font-size: 15.5px;
  line-height: 18px;
  white-space: nowrap;
  text-shadow: 0 1px 0 #ffffff;
}

.cci_title2 {
  height: auto;
  left: 0px;
  top: 0px;
  color: #111;
  font-size: 15.5px;
  line-height: 20px;
  white-space: nowrap;
  text-shadow: 0 1px 0 #ffffff;
  margin-bottom: 10px;
}

.bxslider4 {
  height: 274px !important;
}

/*Main Banner Starts Here*/
.main-banner {
  height: 400px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.main-banner .swiper-container {
  width: 100%;
  height: 400px;
}
.main-banner .swiper-container .swiper-pagination.banner {
  bottom: 50px;
}
.main-banner .swiper-container .swiper-pagination.banner .swiper-pagination-bullet {
  background-color: #fec52e;
}
.main-banner .swiper-container .swiper-pagination.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}
.main-banner img {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  overflow: hidden;
}
.swiper-slide .img-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-filter: blur(10px) grayscale(50%);
  filter: blur(10px) grayscale(50%);
  z-index: 1;
}
.swiper-slide img {
  width: auto;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

/* News Section Starts Here */
.news {
  background-color: rgba(55, 55, 55, 0.6);
  height: 40px;
  font-size: 10.5pt;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

.news-wrapper {
  white-space: nowrap;
  width: 1048px;
  height: 40px;
  line-height: 40px;
}

.news-title {
  background: url(../img/news.png) no-repeat;
  width: 23px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.news-content {
  display: inline-block;
  vertical-align: middle;
  height: 40px;
  width: 900px;
  color: #fff;
  min-width: initial;
}

.news-content p {
  line-height: 40px;
  font-size: 10.5pt;
  margin: 0;
  padding: 0 30px 0 10px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hot Lottery Section Starts Here */
.main-wrapper.hotlottery {
  width: 940px;
  max-width: initial;
  padding-top: 20px;
}
.main-wrapper.hotlottery > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-wrapper.hotlottery > div.hide {
  display: none;
}

.hot-lottery {
  height: 390px;
  background: #fff url(../img/hotlottery_bg.png) center/cover no-repeat;
}
.hot-lottery > .main-wrapper {
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}

.subtitle {
  height: 60px;
  position: relative;
  text-align: center;
  background-color: #ffd5d0;
  background: url(../img/hl_header_bg.png) center/contain no-repeat;
  padding: 12px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.subtitle label:before {
  content: "";
  background: url(../img/hotlottery_arrow.png) no-repeat;
  width: 331px;
  height: 14px;
  position: absolute;
  display: block;
  top: 27px;
  right: 65%;
}
.subtitle label:after {
  content: "";
  background: url(../img/hotlottery_arrow.png) no-repeat;
  width: 331px;
  height: 14px;
  position: absolute;
  display: block;
  top: 27px;
  left: 65%;
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}
.subtitle .ch {
  font-size: 18px;
  color: #fff;
}
.subtitle .en {
  font-size: 10px;
  color: #fff;
  line-height: 24px;
}

.hl-box {
  position: relative;
  display: block;
  width: 260px;
  height: 260px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-shadow: 0 0 0 12px #fff, 0 0 0 15px #e4393c;
  box-shadow: 0 0 0 12px #fff, 0 0 0 15px #e4393c;
}
.hl-box:first-child {
  background: #000 url(../img/hotlottery1.png) center/cover no-repeat;
}
.hl-box:nth-child(2) {
  background: #000 url(../img/hotlottery2.png) center/cover no-repeat;
}
.hl-box:last-child {
  background: #000 url(../img/hotlottery3.png) center/cover no-repeat;
}

.hl-link {
  position: absolute;
  color: #fff;
  margin: auto;
  bottom: 0;
  font-size: 20px;
  line-height: 40px;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  height: 50px;
  text-align: center;
  background-color: rgba(55, 55, 55, 0.5);
}

.hotgame-wrapper {
  background: url("../img/hotlottery_bg.png") center/100% no-repeat #fff;
}
.hotgame-wrapper .hotgame-title {
  background: url("../img/hl_header_bg.png") center/contain no-repeat;
  border-top: 1px solid #e43a3d;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 40px;
}
.hotgame-wrapper .hotgame-title .cn {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}
.hotgame-wrapper .hotgame-title .en {
  font-size: 10px;
  color: #fff;
  text-transform: uppercase;
}
.hotgame-wrapper .hotgame-box-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hotgame-wrapper .hotgame-box-wrapper.hide {
  display: none;
}
.hotgame-wrapper .hotgame-box-wrapper .hotgame-box {
  background-color: #f4f4f4;
  padding: 20px 10px 10px 10px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.hotgame-wrapper .hotgame-box-wrapper .hotgame-box:not(:last-child) {
  margin-right: 30px;
}
.hotgame-wrapper .hotgame-box-wrapper .hotgame-box:hover {
  background-color: #e43a3d;
}
.hotgame-wrapper .hotgame-box-wrapper .hotgame-box:hover .text-box {
  background-image: url("../img/hotgame_txtbg_red.png");
  color: #fff;
}
.hotgame-wrapper .hotgame-box-wrapper .hotgame-box a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.hotgame-wrapper .hotgame-box-wrapper .hotgame-box .text-box {
  background: url("../img/hotgame_txtbg.png") center/contain no-repeat;
  font-weight: 600;
  position: absolute;
  padding: 5px;
  top: -15px;
  width: 128px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.hotgame-wrapper .hotgame-box-wrapper .hotgame-box img {
  margin-bottom: -2px;
}
.hotgame-wrapper .latest-hot {
  margin-top: 40px;
}
.hotgame-wrapper .latest-hot .latest-hot-title {
  color: #b6b2b2;
  margin-bottom: 10px;
  text-align: center;
}
.hotgame-wrapper .latest-hot .latest-hot-title .en {
  position: relative;
  text-transform: uppercase;
  font-style: italic;
  position: relative;
  margin-top: 5px;
}
.hotgame-wrapper .latest-hot .latest-hot-title .en:before, .hotgame-wrapper .latest-hot .latest-hot-title .en:after {
  background-color: #b6b2b2;
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  left: 46%;
  top: 6px;
}
.hotgame-wrapper .latest-hot .latest-hot-title .en:after {
  left: unset;
  right: 46%;
}
.hotgame-wrapper .latest-hot .latest-hot-gametype {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hotgame-wrapper .latest-hot .latest-hot-gametype.hide {
  display: none;
}
.hotgame-wrapper .latest-hot .latest-hot-gametype .gametype-box {
  position: relative;
}
.hotgame-wrapper .latest-hot .latest-hot-gametype .gametype-box:not(:last-child) {
  margin-right: 30px;
}
.hotgame-wrapper .latest-hot .latest-hot-gametype .gametype-box a {
  position: absolute;
  height: 100%;
  width: 100%;
}
.hotgame-wrapper .latest-hot .latest-hot-desc {
  margin-top: 25px;
  text-align: center;
  padding-bottom: 40px;
  color: #4b4b4b;
}
.hotgame-wrapper .latest-hot .latest-hot-desc .red {
  color: #b72928;
  font-weight: 600;
}

a {
  text-decoration: none;
}
a i {
  text-decoration: none;
  color: #e09e01;
}

p {
  margin: 0;
  padding: 0;
}

table,
th {
  border: none;
  padding: 10px;
}

table,
td {
  border: none;
  padding: 10px;
  background-color: transparent;
}

.main-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

/* Bottom 3 Section Starts Here */
.service-list {
  background: #e4393c url(../img/service_bg.png) center/cover no-repeat;
}

.servicelist-wrapper {
  display: inline-block;
  padding: 35px 0;
  height: 318px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.slist-box {
  width: calc((99% - 100px) / 3);
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  height: 100px;
}
.slist-box:not(:last-child) {
  content: "";
  margin-right: 50px;
}

.sl-title {
  top: 0;
  display: block;
  height: 36px;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.sl-title .ch {
  font-size: 15pt;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  border-bottom: 4px solid #fff;
  height: 34px;
}
.sl-title .en {
  font-size: 8pt;
  color: #fff;
  display: inline-block;
}

/* Service Advantages Section Starts Here */
.sl1-title {
  top: 0;
  display: block;
  height: 40px;
  margin-bottom: 10px;
}

.sl1-deposit,
.sl1-withdraw {
  color: #fff;
  font-size: 10.5pt;
  width: 100%;
  display: block;
  margin-top: 30px;
  height: 80px;
}

.deposit-left {
  float: left;
  display: inline-block;
}

.deposit-right {
  float: right;
  display: inline-block;
  height: 55px;
}

.dp-wrapper:after {
  content: "";
  clear: both;
  display: table;
}

.dp-title,
.wd-title {
  font-size: 11pt;
  margin: 2px 0;
  color: #fff;
}

.dp-time,
.wd-time {
  font-size: 9pt;
  color: #fff;
}

.dp-no,
.dp-sec {
  color: #fff;
  display: inline-block;
}

.dp-no {
  font-size: 24pt;
  color: #fff;
  line-height: 40pt;
}

.dp-bargrey {
  width: 100%;
  height: 10px;
  border-radius: 20px;
  background-color: #d0bdbd;
  position: relative;
  overflow: hidden;
}

.dp-barred {
  width: 0;
  height: 10px;
  border-radius: 20px;
  background-color: #ffd900;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: width 2s ease-in-out;
  transition: width 2s ease-in-out;
  -webkit-box-shadow: 0px 2px 8px rgba(30, 2, 39, 0.4);
  box-shadow: 0px 2px 8px rgba(30, 2, 39, 0.4);
}
.dp-barred.active {
  width: 50%;
}

.withdraw-left {
  float: left;
  display: inline-block;
}

.withdraw-right {
  float: right;
  display: inline-block;
  height: 55px;
}

.wd-wrapper:after {
  content: "";
  clear: both;
  display: table;
}

.wd-no,
.wd-sec {
  display: inline-block;
}

.wd-no {
  font-size: 24pt;
  color: #fff;
  line-height: 40pt;
}

.wd-bargrey {
  width: 100%;
  height: 10px;
  border-radius: 20px;
  background-color: #d0bdbd;
  position: relative;
  overflow: hidden;
}

.wd-barred {
  width: 0;
  height: 10px;
  border-radius: 20px;
  background-color: #ffa200;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: width 2s ease-in-out;
  transition: width 2s ease-in-out;
  -webkit-box-shadow: 0px 2px 8px rgba(30, 2, 39, 0.4);
  box-shadow: 0px 2px 8px rgba(30, 2, 39, 0.4);
}
.wd-barred.active {
  width: 70%;
}

/* Mobile Terminal Downloads Starts Here */
.sl2-title {
  padding-bottom: 10px;
  color: #fff;
}

.sl2-text {
  font-size: 10.5pt;
  color: #fff;
  line-height: 17pt;
  margin-top: 30px;
}

.sl2-img {
  background: url(../img/terminal_download.png) no-repeat;
  width: 245px;
  height: 70px;
  margin-top: 50px;
  position: relative;
}

.appdl {
  width: 245px;
  height: 70px;
  position: absolute;
}

/* Help Center Section Starts Here */
.sl3-text-wrapper {
  display: block;
  font-size: 10pt;
  color: #fff;
  height: 100px;
  line-height: 16pt;
  margin-top: 30px;
}

.sl3-left {
  float: left;
  display: inline-block;
  width: 100px;
  padding-right: 30px;
}
.sl3-left a {
  display: block;
  padding-bottom: 20px;
  color: #fff;
}

.sl3-star {
  background: url(../img/star.png) no-repeat;
  height: 11px;
  width: 11px;
  display: inline-block;
  padding-right: 12px;
}

/* Homepage Footer Starts Here */
.foot {
  background-color: #191919;
  text-align: center;
  height: 227px;
  background-image: url(../img/footer_bg.jpg);
  background-repeat: repeat-x;
}

.footer {
  background-color: #000;
  height: 61px;
}

.foot-text1 {
  background: url(../img/providers.jpg) no-repeat;
  padding: 0;
  height: 100px;
  background-position: center;
  display: block;
}

.foot-text2 {
  color: #fff;
  font-size: 9.5pt;
  padding: 0;
  height: 75px;
  line-height: 66px;
  display: block;
}

.ft-browser {
  display: inline-block;
  font-size: 12pt;
}

.foot-text3 {
  color: #fff;
  font-size: 10pt;
  padding: 0;
  height: 50px;
  line-height: 46px;
  display: block;
}

.footer-text {
  background: url(../img/footer.jpg) no-repeat;
  padding: 0;
  height: 61px;
  background-position: center;
  display: block;
}

.ft-divider {
  background: url(../img/footer_divider.png) no-repeat;
  padding: 0;
  height: 1px;
  background-position: center;
  clear: both;
}

.ft-bs-img {
  background: url(../img/browser.png) no-repeat;
  width: 300px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}

/* Subpage Layout Starts Here */
.subpage-body {
  background-color: #fff;
  height: auto;
  padding-bottom: 30px;
  background-position: center;
  background-size: cover;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.subpage-body p {
  color: #000;
}

.sub-header {
  height: 140px;
  padding: 47px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sub-header h1 {
  font-size: 28px;
  margin-bottom: 12px;
}
.sub-header h3 {
  font-size: 16px;
  font-weight: normal;
}

.sub-title,
.sub-desc {
  display: block;
}

.sub-content {
  height: auto;
  position: relative;
  overflow: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.sub-content-wrapper {
  background-color: #fff;
  height: 360px;
  width: 95%;
  margin: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Register Starts Here */
.subpage-body.registration {
  background: url(../img/registration_bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: auto;
}

.sub-content.registration {
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 12px rgba(228, 57, 60, 0.57);
  box-shadow: 0 0 12px rgba(228, 57, 60, 0.57);
}

.sub-header.registration {
  height: 125px;
  width: 1000px;
  margin-bottom: 20px;
}

.reg-login-btn {
  display: inline-block;
  background: url(../img/button_reg.png) no-repeat;
  height: 113px;
  width: 209px;
  margin-top: 13px;
  vertical-align: middle;
  position: relative;
}
.reg-login-btn a {
  position: absolute;
  width: 97%;
  height: 95%;
  top: 6px;
}

.reg-banner {
  display: inline-block;
  background: url(../img/banner_reg.png) no-repeat;
  height: 125px;
  width: 786px;
  margin-top: 1px;
  vertical-align: middle;
}

.title-reg {
  font-size: 44pt;
  color: #a2a2a2;
  font-weight: 300;
  vertical-align: top;
  letter-spacing: 3px;
  display: inline-block;
}

.reg-steps {
  width: 75%;
  left: 0;
  right: 0;
  margin: 40px auto;
  background-color: #efe8e8;
}
.reg-steps:after {
  content: "";
  display: table;
  clear: both;
}

.reg-steps-box {
  display: inline-block;
  vertical-align: middle;
  width: 33.3333333333%;
  text-align: center;
  border: 1px solid #c2c2c2;
  line-height: 32pt;
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.reg-steps-box.red {
  border: 1px solid #e4393c !important;
  background: #e4393c;
}
.reg-steps-box:not(:first-child) {
  border-left: 0;
}
.reg-steps-box:not(:last-child) {
  border-left: 0;
}
.reg-steps-box:not(:last-child):before {
  content: "";
  width: 17px;
  height: 30px;
  position: absolute;
  background-color: #efe8e8;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  top: 6px;
  right: -18px;
  border: 1px solid #c2c2c2;
  border-left: none;
}
.reg-steps-box:not(:last-child):after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-left: 5px solid #978e8e;
  border-top: 6px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid transparent;
  top: 16px;
  right: -15px;
}
.reg-steps-box.red:not(:last-child):before {
  content: "";
  width: 17px;
  height: 30px;
  position: absolute;
  background-color: #e4393c;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  top: 6px;
  right: -17px;
  border: 1px solid #e4393c;
  border-left: none;
}
.reg-steps-box.red:not(:last-child):after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-left: 5px solid #fff;
  border-top: 6px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid transparent;
  top: 16px;
  right: -15px;
}

.steps-no {
  display: inline-block;
  vertical-align: middle;
  font-size: 18pt;
  color: #978e8e;
}

.steps-title {
  display: inline-block;
  vertical-align: middle;
  font-size: 10.5pt;
  color: #978e8e;
}

.steps-no.red,
.steps-title.red {
  color: #fff;
}

.reg-form {
  height: auto;
  padding: 0 20px 0 20px;
}

.rform.row {
  height: 50px;
  line-height: 50px;
  padding-bottom: 5px;
}
.rform.col1 {
  width: 150px;
  display: inline-block;
  vertical-align: middle;
  text-align: right;
  font-size: 9pt;
  color: #eb2523;
}
.rform.col2 {
  width: 280px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
}
.rform.col2 input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 90%;
  height: 30px;
  line-height: 30px;
  background-color: transparent;
  -webkit-appearance: none;
  border-radius: 5px;
  outline: none;
  border: 1px solid #978e8e;
  padding-left: 5px;
}
.rform.col3 {
  width: calc(99% - 150px - 290px);
  display: inline-block;
  vertical-align: middle;
  font-size: 9pt;
}
.rform.row .button {
  width: 115px;
  left: 0;
  right: 0;
  margin: auto;
  height: 30px;
  border-radius: 30px;
  font-size: 10pt;
  display: block;
  margin-top: 20px;
  border: 0px solid transparent;
  color: white;
  cursor: pointer;
  background: -webkit-gradient(linear, left top, left bottom, from(#ee5151), to(#c62423));
  background: linear-gradient(to bottom, #ee5151, #c62423);
}
.rform .verify-code {
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  bottom: 1px;
}

/* Promotion Starts Here */
.subpage-body.promo {
  min-height: calc(100vh - 48px - 71px - 490px - 227px - 61px);
  background: url(../img/registration_bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: auto;
}
.subpage-body.promo > .main-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 0 12px rgba(55, 55, 55, 0.5);
  box-shadow: 0 0 12px rgba(55, 55, 55, 0.5);
}

.sub-header.promo {
  height: 56px;
  width: 100%;
  background: url(../img/navigation_bg.png) center/contain no-repeat;
  padding: 0;
  margin-bottom: 20px;
}
.sub-header.promo > .main-wrapper {
  height: 100%;
}

.sub-content.promo {
  height: auto;
  width: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promo-main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.promo-menu-links {
  color: #fff;
  width: 100px;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 40px;
  height: 40px;
  border-radius: 40px;
}
.promo-menu-links:hover div {
  color: #fff;
}
.promo-menu-links.active div {
  color: #fff;
  pointer-events: none;
}
.promo-menu-links.active {
  background-color: #fff;
}
.promo-menu-links.active .promo-links {
  color: #e4393c;
}
.promo-menu-links .promo-links {
  color: #fff;
  font-size: 12.5pt;
  text-align: center;
  z-index: 2;
}

.promo-menu-links div.active {
  pointer-events: none;
  color: #fff;
}
.promo-menu-links div:hover {
  color: #fff;
}

.promo-title {
  font-size: 24pt;
}

.promo-box {
  display: block;
  width: 100%;
  border: 1px solid #999999;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.promo-box:not(:last-child) {
  margin-bottom: 10px;
}
.promo-box table,
.promo-box td {
  border: 1px solid #ccc;
}
.promo-box .sub-content-item-header {
  min-height: 180px;
  max-height: 190px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.promo-box .sub-content-item-header h3 {
  margin: 10px 0;
}
.promo-box .sub-content-item-header .banner {
  width: 100%;
  height: auto;
}
.promo-box .sub-content-item-content {
  display: none;
}

.promo-menu {
  width: 100%;
  height: 28px;
  line-height: 28px;
  padding: 0 20px;
}

/* FAQ Starts Here */
.sub-title.faq {
  background: url(../img/faq_title.png) no-repeat;
  width: 98px;
  height: 25px;
}

.sub-desc.faq {
  background: url(../img/faq_desc.png) no-repeat;
  width: 404px;
  height: 14px;
  margin-top: 7px;
}

.subpage-body.faq {
  min-height: calc(100vh - 48px - 71px - 227px - 61px);
  background: url(../img/registration_bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: auto;
}

.sub-content.faq {
  background-color: #fff;
  padding-top: 1px;
  -webkit-box-shadow: 0 0 12px rgba(228, 57, 60, 0.57);
  box-shadow: 0 0 12px rgba(228, 57, 60, 0.57);
}

.sub-menu ul li {
  list-style: none;
  border: 1px solid #000;
  height: 60px;
  line-height: 60px;
  border-right: none;
}

.sub-body ul li {
  list-style: none;
}

.sub-content .sub-menu {
  float: left;
  width: 200px;
}
.sub-content .sub-menu .itms {
  width: 198px;
  height: 58px;
  border: 1px solid #fff;
  border-right: 1px solid #ffc600;
  position: relative;
  margin-bottom: -1px;
  cursor: pointer;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sub-content .sub-menu .itms.active {
  margin-top: 0;
  border: 1px solid #ffc600;
  border-right: 1px solid #391111;
  z-index: 9;
  color: #ffc600;
}

.sprite {
  background: url(../img/faq_sprite.png) no-repeat top left;
  width: 33px;
  height: 24px;
  float: left;
  margin-top: 15px;
  margin-left: 30px;
}

.itmstxt {
  font-size: 16px;
  float: left;
  line-height: 57px;
}

.sub-content .sub-menu .itms .icon1 {
  background-position: 0 0;
}
.sub-content .sub-menu .itms.active .icon1 {
  background-position: 0 -25px;
}
.sub-content .sub-menu .itms .icon2 {
  background-position: 0 -50px;
}
.sub-content .sub-menu .itms.active .icon2 {
  background-position: 0 -75px;
}
.sub-content .sub-menu .itms .icon3 {
  background-position: 0 -101px;
}
.sub-content .sub-menu .itms.active .icon3 {
  background-position: 0 -125px;
}
.sub-content .sub-menu .itms .icon4 {
  background-position: 0 -150px;
}
.sub-content .sub-menu .itms.active .icon4 {
  background-position: 0 -175px;
}
.sub-content .sub-menu .itms .icon5 {
  background-position: 0 -200px;
}
.sub-content .sub-menu .itms.active .icon5 {
  background-position: 0 -225px;
}
.sub-content .sub-menu .itms .icon6 {
  background-position: 0 -250px;
}
.sub-content .sub-menu .itms.active .icon6 {
  background-position: 0 -275px;
}
.sub-content .sub-body {
  float: left;
  width: calc(100% - 201px);
  margin-left: -3px;
  border: 1px solid #ffc600;
  color: #fff;
  display: none;
  min-height: 412px;
}

.faq-title {
  font-size: 19pt;
  font-weight: 600;
  padding: 18px 35px 0;
}

.faq-text {
  font-size: 11pt;
  line-height: 20pt;
  padding-bottom: 3px;
}

/* Mobile Betting Page Starts Here */
.subpage-body.mobilebet {
  background: url(../img/registration_bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 0;
}

.sub-content.mobilebet {
  background-color: transparent;
  height: 800px;
  position: relative;
  overflow: auto;
  padding: 40px 0 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.left-col1 {
  background: url(../img/mobile.png) no-repeat;
  width: 534px;
  height: 661px;
  display: inline-block;
  vertical-align: middle;
  float: left;
  margin-top: 80px;
  position: absolute;
  left: -80px;
}
.left-col1 img {
  position: absolute;
  top: 85px;
  left: 215px;
  width: 150px;
}

.right-col1 {
  float: right;
  width: 530px;
  display: inline-block;
  vertical-align: middle;
  height: 620px;
  color: #fff;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 60px;
  position: relative;
}

.play-icon {
  background: url(../img/play.gif) no-repeat;
  width: 84px;
  height: 84px;
  left: -40px;
  top: -28px;
  position: absolute;
}

.btn-play {
  width: 84px;
  height: 84px;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}

.mobile-title {
  display: inline-block;
  font-size: 32px;
  color: #e4393c;
  font-weight: bold;
  margin-bottom: 8px;
}

.right-col1-text2 {
  font-size: 14px;
  margin: 5px 0;
  color: #666;
  line-height: 16px;
}

.right-col1-img {
  background: url(../img/mb_advantages.png) no-repeat;
  width: 507px;
  height: 136px;
  margin: 30px 20px;
}

.right-col1-text3 {
  font-size: 12.5pt;
  padding-bottom: 25px;
  position: relative;
}
.right-col1-text3 label:before {
  content: "";
  position: absolute;
  display: block;
  width: 82px;
  border-top: 1px solid #fff;
  top: 12px;
  left: 13%;
}
.right-col1-text3 label:after {
  content: "";
  position: absolute;
  display: block;
  width: 82px;
  border-top: 1px solid #fff;
  top: 12px;
  left: 64%;
}

.qrcode-wrapper {
  margin: 20px 0;
}

.right-col1-wrapper {
  display: inline-block;
  margin: 0 10px;
}

.right-col1-android {
  background: linear-gradient(-45deg, #e54245, #fff, #e54245);
  width: 190px;
  height: 190px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.right-col1-android:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: #f5f5f5;
}
.right-col1-android .qr-code {
  z-index: 10;
}
.right-col1-android img,
.right-col1-android canvas {
  width: 170px;
  height: 170px;
  z-index: 10;
}

.tx-android,
.tx-ios {
  color: #666;
  display: block;
  font-size: 11pt;
  margin: 10px;
}

.btn-android {
  background: #e54245;
  border-radius: 56px;
  width: 180px;
  height: 56px;
  left: 0;
  right: 0;
  margin: auto;
  position: relative;
  color: #fff;
}
.btn-android:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: url(../img/android.png) center/contain no-repeat;
}

.btn-ios {
  background: #e54245;
  border-radius: 56px;
  width: 180px;
  height: 56px;
  left: 0;
  right: 0;
  margin: auto;
  position: relative;
  color: #fff;
}
.btn-ios:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: url(../img/ios.png) center/contain no-repeat;
}

.btn-qr {
  width: 180px;
  height: 56px;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  padding-left: 18px;
}

.right-col1-ios {
  background: linear-gradient(-45deg, #e54245, #fff, #e54245);
  width: 190px;
  height: 190px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.right-col1-ios:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: #f5f5f5;
}
.right-col1-ios .qr-code {
  z-index: 10;
}
.right-col1-ios img,
.right-col1-ios canvas {
  width: 170px;
  height: 170px;
  z-index: 10;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
  display: none;
  z-index: 999;
}
.overlay:target {
  display: block;
}

.popup {
  margin: 80px auto;
  padding: 20px;
  background: #000;
  width: 70%;
  position: relative;
  -webkit-transition: all 5s ease-in-out;
  transition: all 5s ease-in-out;
  margin: 80px auto;
  padding: 20px;
  background: #000;
  width: 70%;
  height: calc(100% - 200px);
  position: relative;
  transition: all 5s ease-in-out;
}
.popup .close {
  position: absolute;
  top: 12px;
  right: 12px;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  z-index: 1;
}
.popup .close:hover {
  color: #ce3333;
}
.popup .content {
  text-align: center;
}

.content .video-js {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.popup img {
  max-width: 100%;
}

.video-js .vjs-big-play-button {
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  margin: auto;
}

/* Jssor Slider */
/* ssor slider loading skin spin css */
.jssorb032 {
  position: absolute;
}
.jssorb032 .i {
  position: absolute;
  cursor: pointer;
}
.jssorb032 .i .b {
  fill: #fff558;
}
.jssorb032 .i:hover .b {
  fill: #f45b25;
  fill-opacity: 0.6;
}
.jssorb032 .iav .b {
  fill: #f45b25;
  fill-opacity: 1;
}
.jssorb032 .i.idn {
  opacity: 0.3;
}

.jssora051 {
  display: block;
  position: absolute;
  cursor: pointer;
}
.jssora051 .a {
  fill: none;
  stroke: #fff;
  stroke-width: 360;
  stroke-miterlimit: 10;
}
.jssora051:hover {
  opacity: 0.8;
}
.jssora051.jssora051dn {
  opacity: 0.5;
}
.jssora051.jssora051ds {
  opacity: 0.3;
  pointer-events: none;
}

.daohang {
  width: 120px;
}

.appqr-wrapper {
  z-index: 99999;
  width: 118px;
}
.appqr-wrapper .appqrcode {
  width: 118px;
  background-color: #b62929;
  border-radius: 10px;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.appqr-wrapper .appqrcode img {
  width: 98px;
  height: 98px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 6px;
}

.appqr img {
  background-color: #fff;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  top: 80px;
  position: absolute;
  left: 14px;
}

.appqr-wrapper .text {
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 21px;
  font-style: italic;
  margin-top: 7px;
  font-weight: 600;
}

.appdlurl {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: -0.5px;
}
/*# sourceMappingURL=../maps/main.css.map */
