@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  letter-spacing: -1px;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #12171e;
}

.wrap {
  width: 100%;
  background-color: #12171e;
  padding-bottom: 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 980px) {
  .wrap {
    max-width: 480px;
    min-width: 320px;
    margin: 0 auto;
  }
}

header {
  width: 100%;
  height: 101px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #12171e;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 2 2 2 2;
     border-image: -webkit-gradient(linear, left top, right top, from(#2a2420), color-stop(32%, #4b443d), color-stop(50%, #615851), color-stop(67%, #4b443d), to(#2a2420)) 2 2 2 2;
     border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 2 2 2 2;
  background: -webkit-gradient(linear, left top, left bottom, from(#12171E), to(#1A202B));
  background: linear-gradient(180deg, #12171E 0%, #1A202B 100%);
}

header .head {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 107px 1fr;
      grid-template-columns: 107px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .head h1 {
  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;
}

header .head .logo {
  width: auto;
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

header .head .top_menu {
  justify-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}

header .head .top_menu .tit {
  display: none;
}

header .head .top_menu > ul {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .head .top_menu > ul > li {
  height: 100%;
  position: relative;
}

header .head .top_menu > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color: #4a423c;
  -webkit-transition: all .2s;
  transition: all .2s;
  height: 100%;
  padding: 0 20px;
  font-weight: bold;
  z-index: 100;
  background: -webkit-gradient(linear, left top, left bottom, from(#12171E), to(#1A202B));
  background: linear-gradient(180deg, #12171E 0%, #1A202B 100%);
  position: relative;
}

header .head .top_menu > ul > li > a .mobile {
  display: none;
  margin-right: 10px;
}

header .head .top_menu > ul > li > a:after {
  content: '';
  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;
  width: 0%;
  height: 6px;
  background-color: #ebddd3;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  margin: 0 auto;
}

header .head .top_menu > ul > li > a:hover, header .head .top_menu > ul > li > a.active {
  color: #ebddd3;
}

header .head .top_menu > ul > li > a:hover:after, header .head .top_menu > ul > li > a.active:after {
  width: 100%;
}

header .head .top_menu > ul > li .sub_menu {
  position: absolute;
  top: 99px;
  left: 0;
  right: 0;
  background-color: #12171e;
  border: 2px solid #ffb22c;
  border-radius: 0 0 10px 10px;
  padding: 15px 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: -1;
}

header .head .top_menu > ul > li .sub_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

header .head .top_menu > ul > li .sub_menu ul li {
  margin-bottom: 10px;
}

header .head .top_menu > ul > li .sub_menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: #433d38;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: all .2s;
  transition: all .2s;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
}

header .head .top_menu > ul > li .sub_menu ul li a:hover, header .head .top_menu > ul > li .sub_menu ul li a.active {
  color: #ffb22c;
}

header .head .top_menu > ul > li .sub_menu ul li a .mobile {
  display: none;
}

header .head .top_menu > ul > li .sub_menu ul li:last-child {
  margin-bottom: 0;
}

header .head .top_menu > ul > li:first-child {
  margin-left: 0;
}

header .head .top_menu > ul > li:hover .sub_menu {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

header .head .bg_black {
  display: none;
}

@media (max-width: 980px) {
  header .head .top_menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #12171e;
    width: 70%;
    padding: 12px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  header .head .top_menu .tit {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 27px;
  }
  header .head .top_menu .tit strong {
    color: #93887f;
    font-size: 24px;
  }
  header .head .top_menu .tit .close {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  header .head .top_menu .tit .close img {
    width: 27px;
  }
  header .head .top_menu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: calc(100% - 27px);
    overflow-y: auto;
    margin-top: 12px;
  }
  header .head .top_menu > ul li {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
  }
  header .head .top_menu > ul li a {
    padding: 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #1a2027;
    height: 42px;
    border-radius: 5px;
    color: #93887f;
    border: 0;
  }
  header .head .top_menu > ul li a .mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .head .top_menu > ul li a .mobile img {
    width: 15px;
  }
  header .head .top_menu > ul li a:hover, header .head .top_menu > ul li a.active {
    background-color: #323130;
    border-bottom: 0;
  }
  header .head .top_menu > ul li a:hover:after, header .head .top_menu > ul li a.active:after {
    display: none;
  }
  header .head .top_menu > ul li .sub_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: unset;
    height: auto;
    margin-top: 5px;
    -webkit-transform: unset;
            transform: unset;
    border: 0;
    padding: 0;
  }
  header .head .top_menu > ul li .sub_menu ul {
    position: unset;
    -webkit-transform: unset;
            transform: unset;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  header .head .top_menu > ul li .sub_menu ul li {
    width: 100%;
    margin-bottom: 2px;
  }
  header .head .top_menu > ul li .sub_menu ul li a {
    width: 100%;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #202122;
    height: 42px;
    border-radius: 0;
    color: #93887f;
  }
  header .head .top_menu > ul li .sub_menu ul li a .mobile {
    margin-right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .head .top_menu > ul li .sub_menu ul li a .mobile img {
    width: 15px;
  }
  header .head .top_menu > ul li .sub_menu ul li a.active {
    background-color: #323334;
  }
  header .head .top_menu > ul li .sub_menu ul li:first-child a {
    border-radius: 5px 5px 0 0;
  }
  header .head .top_menu > ul li .sub_menu ul li:last-child a {
    border-radius: 0 0 5px 5px;
  }
  header .head .top_menu > ul li .sub_menu:after {
    display: none;
  }
  header .head .top_menu > ul li:last-child {
    margin-bottom: 0;
  }
  header .head .top_menu > ul::-webkit-scrollbar {
    display: none;
  }
  header .head .top_menu.on {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    z-index: 99999;
  }
  header .head .bg_black {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
  }
  header .head .bg_black.on {
    display: block;
  }
}

header .head .mobile_menu {
  display: none;
  cursor: pointer;
}

.container {
  background-color: #0b0f14;
  margin-top: 101px;
  padding-bottom: 60px;
}

.container .banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container .banner .bannerArea {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 40%;
      grid-template-columns: 1fr 40%;
}

.container .banner_tit {
  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;
}

.container .banner_tit .tit_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .banner_tit .tit_text strong.sub_tit {
  color: #c9ac89;
}

.container .banner_tit .tit_text strong.sub_tit span {
  color: #ffba00;
}

.container .banner_tit .tit_text strong.tit {
  margin: 20px 0;
}

.container .banner_tit .tit_text .tx {
  color: #ffeed9;
  font-size: 16px;
}

.container .banner_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #c1ad94;
  font-size: 16px;
  line-height: 1.5;
}

.container .banner_text p {
  margin-top: 5px;
  font-size: 20px;
}

.container .banner_text p:first-child {
  margin-top: 0;
}

.container .banner.RNG {
  background-color: #0b0f14;
  background-image: url(../images/RNG/top_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 400px;
}

.container .banner.RNG .banner_text {
  margin-top: 70px;
}

.container .banner.method {
  background-color: #0f1318;
  background-image: url(../images/gamerule/tit_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 336px;
}

.container .banner.method .banner_tit {
  margin-top: -50px;
}

.container .banner.method .banner_tit .tit_text .tit {
  margin: 0;
}

.container .banner.method .banner_text {
  margin-top: 0;
}

.container .banner.MTT {
  background-color: #0b0f14;
  background-image: url(../images/mtt/bg.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 407px;
}

.container .banner.MTT .banner_tit {
  margin-top: -100px;
}

.container .banner.MTT .banner_tit .tit_text .tit {
  margin: 0;
}

.container .banner.MTT .banner_text {
  margin-top: 0;
  max-width: 700px;
  text-align: center;
  line-height: 1.5;
}

.container .banner.DECK {
  background-color: #0b0f14;
  background-image: url(../images/deck/table.jpg);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 437px;
}

.container .banner.DECK .banner_tit {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: -50px;
}

.container .banner.DECK .banner_tit .tit_text .tit {
  margin: 0;
  font-size: 48px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
  background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'yindigo-360';
  font-weight: bold;
}

.container .banner.DECK .banner_text {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.container .banner.DECK .banner_text .banner_img {
  position: absolute;
  top: -180px;
  right: 90px;
}

.container .banner.SPORTS {
  background-color: #0b0f14;
  background-image: url(../images/sports/bg.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 344px;
}

.container .banner.SPORTS .banner_tit {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: -70px;
}

.container .banner.SPORTS .banner_tit .tit_text .tit {
  margin: 0;
  font-size: 48px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
  background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'yindigo-360';
  font-weight: bold;
}

.container .banner.SPORTS .banner_text {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.container .banner.SPORTS .banner_text p {
  max-width: 600px;
  line-height: 1.5;
}

.container .banner.SPORTS .banner_text .banner_img {
  position: absolute;
  top: -180px;
  right: 90px;
}

.container .banner.OMAHA {
  background-color: #0b0f14;
  background-image: url(../images/omaha/bg.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 446px;
}

.container .banner.OMAHA .bannerArea {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40%;
      grid-template-columns: 1fr 40%;
}

.container .banner.OMAHA .banner_tit {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: -50px;
}

.container .banner.OMAHA .banner_tit .tit_text .tit {
  margin: 0;
  font-size: 48px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
  background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'yindigo-360';
  font-weight: bold;
}

.container .banner.OMAHA .banner_text {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.container .banner.OMAHA .banner_text p {
  max-width: 500px;
}

.container .banner.OMAHA .banner_text .banner_img {
  position: absolute;
  top: -180px;
  right: 90px;
}

.container .banner.ALLINFOLD {
  background-color: #0b0f14;
  background-image: url(../images/ALLINFOLD/bg1.png);
  background-repeat: no-repeat;
  background-position: right;
  width: 100%;
  height: 591px;
}

.container .banner.ALLINFOLD .banner_tit {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: -200px;
}

.container .banner.ALLINFOLD .banner_tit .tit_text {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.container .banner.ALLINFOLD .banner_tit .tit_text .sub_tit {
  font-size: 16px;
  color: #c1ad94;
}

.container .banner.ALLINFOLD .banner_tit .tit_text .tit {
  margin: 0;
  font-size: 48px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
  background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'yindigo-360';
  font-weight: bold;
}

.container .banner.ALLINFOLD .banner_text {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.container .banner.ALLINFOLD .banner_text p {
  max-width: 500px;
}

.container .banner.ALLINFOLD .banner_text .banner_img {
  position: absolute;
  top: -180px;
  right: 90px;
}

.container .banner.HOLDEM {
  background-color: #0b0f14;
  background-image: url(../images/holdem/bg.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 438px;
  position: relative;
}

.container .banner.HOLDEM .banner_tit {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: -50px;
}

.container .banner.HOLDEM .banner_tit .tit_text .tit {
  margin: 0;
  font-size: 48px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
  background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'yindigo-360';
  font-weight: bold;
}

.container .banner.HOLDEM .banner_text {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.container .banner.HOLDEM .banner_text p {
  max-width: 500px;
}

.container .banner.features {
  background-color: #0f1318;
  background-image: url(../images/game/bg.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 424px;
}

.container .banner.features .banner_tit {
  margin-top: -100px;
}

.container .banner.features .banner_text {
  max-width: 500px;
  text-align: center;
}

.container .banner.EVENT {
  background-color: #0b0f14;
  background-image: url(../images/event/bg.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 296px;
}

.container .banner.EVENT .bannerArea .banner_tit {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.container .banner.EVENT .bannerArea .banner_tit .tit_text {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.container .banner.EVENT .bannerArea .banner_tit .tit_text .tit {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -2px;
  font-family: "yindigo-330" !important;
  font-weight: bold !important;
  color: #d0bfb3;
}

.container .banner.EVENT .bannerArea .banner_tit .tit_text .tit font.yellow {
  color: #ffc259;
}

.container .banner.EVENT .bannerArea .banner_tit .tit_text .tit font.orangeyellow {
  color: #ff8955;
}

.container .banner.EVENT .bannerArea .banner_tit .tit_text .tit font.orangered {
  color: #f54949;
}

.container .banner.EVENT .bannerArea .banner_img {
  justify-self: flex-end;
}

@media (max-width: 980px) {
  .container .banner {
    background-size: contain;
    background-position: top !important;
  }
  .container .banner img {
    width: 100%;
  }
  .container .banner.RNG {
    background-image: url(../images/RNG/m_top_bg.png);
    height: 300px;
  }
  .container .banner.RNG .banner_tit .tit_text .tit {
    margin: 10px 0;
  }
  .container .banner.RNG .banner_tit .tit_text .tx {
    text-align: center;
  }
  .container .banner.RNG .banner_text {
    max-width: 90%;
    margin-top: 35px;
  }
  .container .banner.RNG .banner_text p {
    text-align: center;
    font-size: 13px;
  }
  .container .banner.features {
    height: 170px;
  }
  .container .banner.features .banner_tit {
    margin: 0;
  }
  .container .banner.features .banner_text {
    display: none;
  }
  .container .banner.method {
    height: 175px;
  }
  .container .banner.method .banner_tit {
    margin-top: 0;
  }
  .container .banner.method .banner_tit .tit_text .tit {
    text-align: center;
  }
  .container .banner.method .banner_tit .tit_text .tit img {
    width: 80%;
    margin: 0 auto;
  }
  .container .banner.method .banner_text {
    max-width: 90%;
  }
  .container .banner.method .banner_text p {
    text-align: center;
    font-size: 13px;
  }
  .container .banner.MTT {
    height: 175px;
  }
  .container .banner.MTT .banner_tit {
    margin-top: 0;
  }
  .container .banner.MTT .banner_tit .tit_text .tit {
    text-align: center;
  }
  .container .banner.MTT .banner_tit .tit_text .tit img {
    width: 60%;
    margin: 0 auto;
  }
  .container .banner.MTT .banner_text {
    max-width: 90%;
  }
  .container .banner.MTT .banner_text p {
    text-align: center;
    font-size: 13px;
  }
  .container .banner.HOLDEM {
    background-size: 200%;
    height: 235px;
  }
  .container .banner.HOLDEM .bannerArea {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .container .banner.HOLDEM .banner_tit {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: -20px;
  }
  .container .banner.HOLDEM .banner_tit .tit_text {
    width: 100%;
  }
  .container .banner.HOLDEM .banner_tit .tit_text .tit {
    margin: 0;
    font-size: 24px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
    background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'yindigo-360';
    font-weight: bold !important;
    text-align: center;
  }
  .container .banner.HOLDEM .banner_tit .banner_text {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 10px;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding-left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .container .banner.HOLDEM .banner_tit .banner_text p {
    max-width: 500px;
    font-size: 13px;
    text-align: center;
  }
  .container .banner.HOLDEM .banner_img {
    -ms-grid-row: 2;
    -ms-grid-row-span: -1;
    grid-row: 2/1;
    text-align: center;
  }
  .container .banner.HOLDEM .banner_img img {
    width: 50%;
    margin: 0 auto;
  }
  .container .banner.OMAHA {
    background-size: 200%;
    height: 235px;
  }
  .container .banner.OMAHA .bannerArea {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .container .banner.OMAHA .banner_tit {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: -20px;
  }
  .container .banner.OMAHA .banner_tit .tit_text {
    width: 100%;
  }
  .container .banner.OMAHA .banner_tit .tit_text .tit {
    margin: 0;
    font-size: 24px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
    background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'yindigo-360';
    font-weight: bold !important;
    text-align: center;
  }
  .container .banner.OMAHA .banner_tit .banner_text {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 10px;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding-left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    align-items: center;
  }
  .container .banner.OMAHA .banner_tit .banner_text p {
    font-size: 13px;
    max-width: unset;
    text-align: center;
  }
  .container .banner.OMAHA .banner_img {
    -ms-grid-row: 2;
    -ms-grid-row-span: -1;
    grid-row: 2/1;
    text-align: center;
  }
  .container .banner.OMAHA .banner_img img {
    width: 50%;
    margin: 0 auto;
  }
  .container .banner.DECK {
    background-image: url(../images/deck/table_bg.png);
    height: 264px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .container .banner.DECK .bannerArea {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .container .banner.DECK .banner_tit {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .container .banner.DECK .banner_tit .tit_text {
    width: 100%;
  }
  .container .banner.DECK .banner_tit .tit_text .tit {
    margin: 0;
    font-size: 24px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
    background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'yindigo-360';
    font-weight: bold !important;
    text-align: center;
  }
  .container .banner.DECK .banner_tit .banner_text {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 10px;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding-left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .container .banner.DECK .banner_tit .banner_text p {
    font-size: 13px;
    text-align: center;
  }
  .container .banner.DECK .banner_img {
    text-align: center;
  }
  .container .banner.DECK .banner_img img {
    width: 50%;
    margin: 0 auto;
  }
  .container .banner.ALLINFOLD {
    background-image: url(../images/allinfold/bg1_m.png);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 427px;
  }
  .container .banner.ALLINFOLD .banner_tit {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding-left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .container .banner.ALLINFOLD .banner_tit .tit_text {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container .banner.ALLINFOLD .banner_tit .tit_text .tit {
    margin: 0;
    font-size: 24px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
    background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'yindigo-360';
    font-weight: bold !important;
    text-align: center;
  }
  .container .banner.ALLINFOLD .banner_text {
    max-width: 1200px;
    width: 100%;
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    margin-top: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container .banner.ALLINFOLD .banner_text p {
    font-size: 13px;
    text-align: center;
    max-width: unset;
  }
  .container .banner.SPORTS {
    height: 203px;
    background-size: cover;
    background-position: center;
  }
  .container .banner.SPORTS .banner_tit {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding-left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .container .banner.SPORTS .banner_tit .tit_text {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container .banner.SPORTS .banner_tit .tit_text .tit {
    margin: 0;
    font-size: 24px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
    background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'yindigo-360';
    font-weight: bold !important;
    text-align: center;
  }
  .container .banner.SPORTS .banner_text {
    max-width: 1200px;
    width: 100%;
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    margin-top: 10px;
  }
  .container .banner.SPORTS .banner_text p {
    font-size: 13px;
    text-align: center;
    max-width: unset;
  }
  .container .banner.EVENT {
    height: 400px;
    background-size: cover;
  }
  .container .banner.EVENT .bannerArea {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
  }
  .container .banner.EVENT .bannerArea .banner_tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
  .container .banner.EVENT .bannerArea .banner_tit .tit_text {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container .banner.EVENT .bannerArea .banner_tit .tit_text .tit {
    font-size: 20px;
    text-align: center;
  }
  .container .banner.EVENT .bannerArea .banner_img {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}

.container .contents_layout {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.container .contents_layout.bgs {
  background-color: #12171e;
}

.container .contents_layout .layout_width {
  max-width: 1200px;
  margin: 0 auto;
}

.container .contents_layout .layout_width > strong {
  font-size: 30px;
  color: #767d89;
  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;
  width: 100%;
}

.container .contents_layout .layout_width > strong.grayorange {
  color: #e5c192;
}

.container .contents_layout .layout_width .tip {
  background-color: #1b1c23;
  padding: 33px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
  border-top: 2px solid;
  -o-border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 2 2 2 2;
     border-image: -webkit-gradient(linear, left top, right top, from(#2a2420), color-stop(32%, #4b443d), color-stop(50%, #615851), color-stop(67%, #4b443d), to(#2a2420)) 2 2 2 2;
     border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 2 2 2 2;
}

.container .contents_layout .layout_width .tip strong {
  font-size: 23px;
  color: #e5c192;
  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;
}

.container .contents_layout .layout_width .tip p {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
  color: #c1ad94;
}

.container .contents_layout .layout_width .tip p:last-child {
  margin-bottom: 0;
}

.container .contents_layout .layout_width .tip p.color_dd {
  color: #c1ad94 !important;
}

.container .contents_layout .layout_width .tip.darkgray {
  border-bottom: 2px solid;
  border-left: 1px solid;
  border-right: 1px solid;
  -o-border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 2 2 2 2;
     border-image: -webkit-gradient(linear, left top, right top, from(#2a2420), color-stop(32%, #4b443d), color-stop(50%, #615851), color-stop(67%, #4b443d), to(#2a2420)) 2 2 2 2;
     border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 2 2 2 2;
}

.container .contents_layout .layout_width .tip.darkgray p {
  color: #e5c192;
}

.container .contents_layout .layout_width .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container .contents_layout .layout_width .text strong {
  font-size: 23px;
  color: #e5c192;
}

.container .contents_layout .layout_width .text p {
  font-size: 16px;
  color: #c1ad94;
  max-width: 750px;
  line-height: 1.5;
}

.container .contents_layout .layout_width .img {
  margin-top: 70px;
  text-align: center;
}

.container .contents_layout .layout_width .game_omaha {
  margin: 0;
  background-image: url(../images/omaha/img2.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 646px;
}

.container .contents_layout .layout_width .game_omahaTwo {
  margin: 0;
  background-image: url(../images/omaha/img3.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 646px;
}

.container .contents_layout .layout_width .rule_img {
  margin: 0;
  background-image: url(../images/deck/img2.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 770px;
}

.container .contents_layout .layout_width .list {
  max-width: 930px;
  margin: 0 auto;
}

.container .contents_layout .layout_width .list_item {
  margin-bottom: 87px;
}

.container .contents_layout .layout_width .list_item strong {
  font-size: 24px;
  color: #e5c192;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "yindigo-330" !important;
  font-weight: 200;
}

.container .contents_layout .layout_width .list_item strong span {
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .contents_layout .layout_width .list_item .list_text {
  margin-top: 20px;
}

.container .contents_layout .layout_width .list_item .list_text p {
  font-size: 16px;
  color: #c1ad94;
  line-height: 1.5;
}

.container .contents_layout .layout_width .list_item:last-child {
  margin-bottom: 0;
}

.container .contents_layout .layout_width .numberArea {
  margin-top: 80px;
}

.container .contents_layout .layout_width .numberArea_item {
  position: relative;
  width: 100%;
  border-top: 2px solid;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 2 2 2 2;
     border-image: -webkit-gradient(linear, left top, right top, from(#2a2420), color-stop(32%, #4b443d), color-stop(50%, #615851), color-stop(67%, #4b443d), to(#2a2420)) 2 2 2 2;
     border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 2 2 2 2;
  padding: 60px 0 50px;
  margin-bottom: 80px;
  border-left: 1px solid;
  border-right: 1px solid;
}

.container .contents_layout .layout_width .numberArea_item .number {
  position: absolute;
  top: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateZ(0);
          transform: translateX(-50%) translateZ(0);
  background-image: url(../images/mtt/number_bg.png);
  background-repeat: no-repeat;
  width: 88px;
  height: 91px;
  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: #ffb933;
  font-size: 30px;
}

.container .contents_layout .layout_width .numberArea_item_tit {
  font-size: 24px;
  color: #e5c192;
  font-family: "title";
  max-width: 610px;
  margin: 0 auto;
  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;
}

.container .contents_layout .layout_width .numberArea_item_contents {
  max-width: 670px;
  margin: 0 auto;
  margin-top: 37px;
}

.container .contents_layout .layout_width .numberArea_item_contents ul {
  width: 100%;
}

.container .contents_layout .layout_width .numberArea_item_contents ul li {
  color: #c1ad94;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 10px;
}

.container .contents_layout .layout_width .numberArea_item_contents ul li span {
  color: #e5c192;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-right: 10px;
  font-size: 16px;
}

.container .contents_layout .layout_width .numberArea_item_contents ul li:last-child {
  margin-bottom: 0;
}

.container .contents_layout .layout_width .numberArea_item:last-child {
  margin-bottom: 0;
}

.container .contents_layout .rule {
  width: 100%;
  height: 272px;
  background-image: url(../images/deck/bg1.png);
  margin-top: 60px;
}

.container .contents_layout .rule_item {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  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;
}

.container .contents_layout .rule_item .sub_tit {
  font-size: 16px;
  color: #c6b49d;
}

.container .contents_layout .rule_item .tit {
  font-size: 24px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#bd964c), to(#f7dfb6));
  background-image: linear-gradient(to top, #bd964c, #f7dfb6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'yindigo-360';
  margin-top: 10px;
}

.container .contents_layout .rule_item .text {
  color: #c1ad94;
  font-size: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
  margin-top: 20px;
}

.container .contents_layout .rule.no_bg {
  background: unset;
}

@media (max-width: 980px) {
  .container .contents_layout .rule {
    background-image: url(../images/deck/bg1_m.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
  }
  .container .contents_layout .rule .rule_item .text p {
    font-size: 13px;
  }
}

.container .contents_layout .deckArea_tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 91px;
  background: -webkit-gradient(linear, left top, left bottom, from(#161b23), color-stop(50%, #11161c), to(#0e1117));
  background: linear-gradient(180deg, #161b23 0%, #11161c 50%, #0e1117 100%);
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 2 2 2 2;
     border-image: -webkit-gradient(linear, left top, right top, from(#2a2420), color-stop(32%, #4b443d), color-stop(50%, #615851), color-stop(67%, #4b443d), to(#2a2420)) 2 2 2 2;
     border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 2 2 2 2;
}

.container .contents_layout .deckArea_tit .sub_tit {
  font-size: 16px;
  color: #c6b49d;
}

.container .contents_layout .deckArea_tit .tit {
  font-size: 24px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#bd964c), to(#f7dfb6));
  background-image: linear-gradient(to top, #bd964c, #f7dfb6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'yindigo-360';
  margin-top: 10px;
}

.container .contents_layout .deckArea_contents {
  background-color: #12171e;
  padding: 40px 64px;
}

.container .contents_layout .deckArea_contents .itemArea {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 43px;
}

.container .contents_layout .deckArea_contents .itemArea .itemArea_item {
  background-color: #181e27;
  border: 1px solid #48423d;
  padding: 43px 53px;
}

.container .contents_layout .deckArea_contents .itemArea .itemArea_item .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffd9a2;
}

.container .contents_layout .deckArea_contents .itemArea .itemArea_item .tit span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}

.container .contents_layout .deckArea_contents .itemArea .itemArea_item .text {
  color: #c1ad94;
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.5;
}

.container .contents_layout .deckArea_contents .item_tip {
  background-image: url(../images/deck/text-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 800px;
  width: 100%;
  height: 66px;
  margin: 0 auto;
  margin-top: 40px;
  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: #c1ad94;
  font-size: 16px;
}

@media (max-width: 980px) {
  .container .contents_layout .deckArea_contents {
    padding: 10px;
  }
  .container .contents_layout .deckArea_contents .itemArea {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .container .contents_layout .deckArea_contents .itemArea_item {
    padding: 20px !important;
  }
  .container .contents_layout .deckArea_contents .itemArea_item .text {
    font-size: 13px !important;
  }
  .container .contents_layout .deckArea_contents .item_tip {
    background-size: 100% 100%;
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 13px;
  }
}

.container .contents_layout .colorArea {
  background-color: #141920;
  border-radius: 20px;
  padding: 50px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-bottom: 80px;
}

.container .contents_layout .colorArea .number {
  position: absolute;
  top: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateZ(0);
          transform: translateX(-50%) translateZ(0);
  background-image: url(../images/sports/number_bg.png);
  background-repeat: no-repeat;
  width: 88px;
  height: 91px;
  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: #ffb933;
  font-size: 30px;
  padding-bottom: 9px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container .contents_layout .colorArea_tit {
  margin-top: 10px;
}

.container .contents_layout .colorArea_tit strong {
  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;
  font-size: 24px !important;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
  background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500 !important;
}

.container .contents_layout .colorArea_contents {
  max-width: 670px;
  margin: 0 auto;
  margin-top: 20px;
}

.container .contents_layout .colorArea_contents ul {
  width: 100%;
  margin-top: 20px;
}

.container .contents_layout .colorArea_contents ul li {
  color: #c1ad94;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.container .contents_layout .colorArea_contents ul li span {
  color: #c98a46;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}

.container .contents_layout .colorArea_contents ul li:last-child {
  margin-bottom: 0;
}

.container .contents_layout .colorArea_contents .text {
  color: #c1ad94;
  font-size: 16px;
}

.container .contents_layout .colorArea .img_tull {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 43px;
  margin-top: 47px;
}

@media (max-width: 980px) {
  .container .contents_layout .colorArea .colorArea_contents .text {
    max-width: 90%;
    margin: 0 auto;
    font-size: 13px;
    margin-top: 0 !important;
  }
  .container .contents_layout .colorArea .colorArea_contents ul li {
    font-size: 13px;
  }
  .container .contents_layout .colorArea .img_tull {
    grid-gap: 10px;
  }
}

.container .contents_layout .radiusbox {
  padding: 60px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 110px;
  border: 7px solid #0b0d10;
  position: relative;
}

.container .contents_layout .radiusbox_tit {
  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;
}

.container .contents_layout .radiusbox_tit span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .contents_layout .radiusbox_tit strong {
  font-size: 24px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
  background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'yindigo-360';
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 15px;
}

.container .contents_layout .radiusbox_contents {
  margin-top: 25px;
}

.container .contents_layout .radiusbox_contents .text {
  font-size: 16px;
  color: #c1ad94;
  max-width: 85%;
  margin: 0 auto;
  text-align: center;
}

.container .contents_layout .radiusbox:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 9px solid #12161b;
  border-radius: 104px;
}

.container .contents_layout .radiusbox:before {
  content: '';
  position: absolute;
  top: 9px;
  left: 9px;
  right: 9px;
  bottom: 9px;
  border: 4px solid #0b0d10;
  border-radius: 100px;
}

.container .contents_layout .radiusbox.blue {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#09131b), color-stop(#0b161f), color-stop(#0e1d28), color-stop(#0b161f), to(#09131b));
  background-image: linear-gradient(to top, #09131b, #0b161f, #0e1d28, #0b161f, #09131b);
}

.container .contents_layout .radiusbox.green {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#091a18), color-stop(#0b1f1b), color-stop(#0e2923), color-stop(#0b1f1b), to(#091a18));
  background-image: linear-gradient(to top, #091a18, #0b1f1b, #0e2923, #0b1f1b, #091a18);
}

.container .contents_layout .system {
  max-width: 740px;
  margin: 0 auto;
  margin-top: 50px;
}

.container .contents_layout .system_img {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}

.container .contents_layout .system .list {
  margin-top: 50px;
}

.container .contents_layout .system .list_item strong .icon {
  margin: 0 15px;
}

@media (max-width: 980px) {
  .container .contents_layout .radiusbox .radiusbox_contents .text {
    font-size: 13px;
  }
  .container .contents_layout .system .list_item strong {
    font-size: 16px !important;
  }
}

.container .contents_layout .gameRule_tit {
  background-image: url(../images/holdem/bg_header.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 71px;
  position: relative;
}

.container .contents_layout .gameRule_tit strong {
  width: 120px;
  height: 100%;
  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;
  font-size: 24px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
  background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'yindigo-360';
  font-weight: bold;
  padding-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}

.container .contents_layout .gameRule_contents {
  padding: 45px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url(../images/holdem/holdem_bg.png);
}

.container .contents_layout .gameRule_contents .gameRule_item {
  max-width: 1200px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.container .contents_layout .gameRule_contents .gameRule_item .item {
  position: relative;
  width: 100%;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-left: 1px solid;
  border-right: 1px solid;
  -o-border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 2 2 2 2;
     border-image: -webkit-gradient(linear, left top, right top, from(#2a2420), color-stop(32%, #4b443d), color-stop(50%, #615851), color-stop(67%, #4b443d), to(#2a2420)) 2 2 2 2;
     border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 2 2 2 2;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#161c24), color-stop(#13181f), to(#11151c));
  background-image: linear-gradient(to top, #161c24, #13181f, #11151c);
  padding: 30px 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px 1fr;
      grid-template-columns: 40px 1fr;
  grid-gap: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .contents_layout .gameRule_contents .gameRule_item .item_number {
  font-size: 36px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
  background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'yindigo-360';
  font-weight: bold;
}

.container .contents_layout .gameRule_contents .gameRule_item .item_text {
  font-size: 16px;
  color: #c1ad94;
}

.container .contents_layout .gameRule_contents .gameRule_item .item.last {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container .contents_layout .game_tab {
  background-color: #10151b;
  padding: 50px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container .contents_layout .game_tab_tit {
  height: 71px;
  position: relative;
}

.container .contents_layout .game_tab_tit strong {
  width: 120px;
  height: 100%;
  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;
  position: relative;
  font-size: 24px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
  background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'yindigo-360';
  font-weight: bold;
  padding-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}

.container .contents_layout .game_tab_contents {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.container .contents_layout .game_tab_contents .tabs {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px 1fr;
      grid-template-columns: 200px 1fr;
  grid-gap: 10px;
}

.container .contents_layout .game_tab_contents .tabs .tabs_menu a {
  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;
  width: 100%;
  height: 39px;
  -webkit-transition: all .2s;
  transition: all .2s;
  position: relative;
  margin-bottom: 4px;
}

.container .contents_layout .game_tab_contents .tabs .tabs_menu a strong {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 16px;
  color: #c1ad94;
  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;
  z-index: 9999;
}

.container .contents_layout .game_tab_contents .tabs .tabs_menu a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: #0b0f14;
}

.container .contents_layout .game_tab_contents .tabs .tabs_menu a:last-child {
  margin-bottom: 0;
}

.container .contents_layout .game_tab_contents .tabs .tabs_menu a:hover strong, .container .contents_layout .game_tab_contents .tabs .tabs_menu a.active strong {
  color: #f4d7a6;
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.container .contents_layout .game_tab_contents .tabs .tabs_menu a:hover:after, .container .contents_layout .game_tab_contents .tabs .tabs_menu a.active:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/holdem/tab_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}

.container .contents_layout .game_tab_contents .tabs .tabs_contents {
  display: none;
}

.container .contents_layout .game_tab_contents .tabs .tabs_contents .list_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 1fr;
      grid-template-columns: 20% 1fr;
  grid-gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0b0f14;
  padding: 30px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 2px;
}

.container .contents_layout .game_tab_contents .tabs .tabs_contents .list_item dt {
  font-size: 16px;
  color: #e9cea1;
}

.container .contents_layout .game_tab_contents .tabs .tabs_contents .list_item dd {
  font-size: 16px;
  color: #c1ad94;
}

.container .contents_layout .game_tab_contents .tabs .tabs_contents .list_item:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .container .contents_layout .game_tab_contents .tabs .tabs_contents .list_item dd {
    font-size: 13px;
  }
}

.container .contents_layout .game_tab_contents .tabs .tabs_contents.on {
  display: block;
}

@media (max-width: 980px) {
  .container .contents_layout .game_tab .game_tab_tit strong {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: -webkit-box;
  }
  .container .contents_layout .game_tab_contents .tabs {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }
  .container .contents_layout .game_tab_contents .tabs .tabs_menu {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container .contents_layout .game_tab_contents .tabs .tabs_menu a:after {
    background-size: 100% 100% !important;
  }
  .container .contents_layout .game_tab_contents .tabs .tabs_contents .list_item {
    padding: 10px !important;
    grid-gap: 10px;
    -ms-grid-columns: 20% 1fr;
        grid-template-columns: 20% 1fr;
  }
  .container .contents_layout .game_tab_contents .tabs .tabs_contents .list_item dt {
    font-size: 16px;
  }
}

.container .contents_layout .game_banner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.container .contents_layout .game_banner_item {
  position: relative;
  width: 100%;
  border: 1px solid #2b2520;
  overflow: hidden;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#0d1117), color-stop(#0f141a), to(#10141b));
  background-image: linear-gradient(to top, #0d1117, #0f141a, #10141b);
  padding: 30px 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 10% 1fr 30%;
      grid-template-columns: 10% 1fr 30%;
  grid-gap: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 5px 20px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 20px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 52px;
}

.container .contents_layout .game_banner_item .number {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fee4ba), color-stop(#f7c87a), color-stop(#a66933), color-stop(#f7c87a), to(#fee4ba));
  background-image: linear-gradient(#fee4ba, #f7c87a, #a66933, #f7c87a, #fee4ba);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  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;
  font-weight: 600 !important;
}

.container .contents_layout .game_banner_item .text strong {
  font-size: 24px;
  color: #958373;
}

.container .contents_layout .game_banner_item .text strong font {
  color: #e1b747;
}

.container .contents_layout .game_banner_item .text p {
  font-size: 16px;
  color: #c1ad94;
  line-height: 1.5;
  margin-top: 25px;
}

.container .contents_layout .game_banner_item .img {
  -ms-grid-column-align: center;
      justify-self: center;
}

.container .contents_layout .game_banner_item:after {
  content: '';
  border-top: 1px solid;
  -o-border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 1 1 1 1;
     border-image: -webkit-gradient(linear, left top, right top, from(#2a2420), color-stop(32%, #4b443d), color-stop(50%, #615851), color-stop(67%, #4b443d), to(#2a2420)) 1 1 1 1;
     border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 1 1 1 1;
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 999;
}

.container .contents_layout .game_banner_item:before {
  content: '';
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 1 1 1 1;
     border-image: -webkit-gradient(linear, left top, right top, from(#2a2420), color-stop(32%, #4b443d), color-stop(50%, #615851), color-stop(67%, #4b443d), to(#2a2420)) 1 1 1 1;
     border-image: linear-gradient(90deg, #2a2420 0%, #4b443d 32%, #615851 50%, #4b443d 67%, #2a2420 100%) 1 1 1 1;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 999;
}

.container .contents_layout .game_banner_item:last-child {
  margin-bottom: 0;
}

.container .contents_layout .game_img {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 90px;
}

.container .contents_layout .game_img_item {
  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;
}

@media screen {
  .container .contents_layout .game_img img {
    width: 100%;
  }
}

.container .contents_layout .install {
  width: 100%;
  background-image: url(../images/setting/bg.png);
  background-repeat: no-repeat;
  background-color: #0b0f14;
}

.container .contents_layout .install .install_layout {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.container .contents_layout .install .install_layout_menuArea {
  width: 100%;
  height: 171px;
  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;
}

.container .contents_layout .install .install_layout_tit {
  font-size: 24px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#af8636), color-stop(#f4d7a6), to(#f7dfb8));
  background-image: linear-gradient(to top, #af8636, #f4d7a6, #f7dfb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'yindigo-360';
  font-weight: bold !important;
  text-align: center;
}

.container .contents_layout .install .install_layout_menu {
  max-width: 600px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 25px;
  margin-top: 20px;
}

.container .contents_layout .install .install_layout_menu a {
  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;
  background-color: #0b0f14;
  color: #c4ac73;
  width: 100%;
  height: 44px;
  border-radius: 20px;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-weight: bold;
}

.container .contents_layout .install .install_layout_menu a span {
  margin-right: 15px;
}

.container .contents_layout .install .install_layout_menu a:hover, .container .contents_layout .install .install_layout_menu a.active {
  background-color: #c4ac73;
  color: #0b0f14;
}

.container .contents_layout .install .install_layout_menu a:hover span, .container .contents_layout .install .install_layout_menu a.active span {
  -webkit-filter: brightness(0%);
          filter: brightness(0%);
}

.container .contents_layout .install .install_layout_contents {
  padding: 60px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container .contents_layout .install .install_layout_contents .swiperArea {
  position: relative;
}

.container .contents_layout .install .install_layout_contents .swiperArea .swiper-button-prev:after, .container .contents_layout .install .install_layout_contents .swiperArea .swiper-button-next:after {
  display: none;
}

.container .contents_layout .install .install_layout_contents .settingArea {
  margin-top: 60px;
}

.container .contents_layout .install .install_layout_contents .settingArea_item {
  background-color: #141920;
  border-radius: 10px;
  padding: 70px 58px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 100px;
}

.container .contents_layout .install .install_layout_contents .settingArea_item .item {
  margin-bottom: 70px;
}

.container .contents_layout .install .install_layout_contents .settingArea_item .item_head {
  font-size: 24px;
  color: #e5c192;
  font-weight: bold;
  font-family: 'yindigo-360';
}

.container .contents_layout .install .install_layout_contents .settingArea_item .item_body {
  margin-top: 28px;
}

.container .contents_layout .install .install_layout_contents .settingArea_item .item_body ul li {
  color: #c1ad94;
  font-size: 16px;
  margin-bottom: 10px;
}

.container .contents_layout .install .install_layout_contents .settingArea_item .item_body ul li span {
  color: #e4d5ca;
  margin-right: 10px;
}

.container .contents_layout .install .install_layout_contents .settingArea_item .item_body ul li font {
  color: #e5c192;
}

.container .contents_layout .install .install_layout_contents .settingArea_item .item_body ul li:last-child {
  margin-bottom: 0;
}

.container .contents_layout .install .install_layout_contents .settingArea_item .item:last-child {
  margin-bottom: 0;
}

.container .contents_layout .install .install_layout_contents .settingArea_item:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .container .contents_layout .install .install_layout .install_layout_menuArea {
    padding: 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .container .contents_layout .install .install_layout .install_layout_menuArea .install_layout_menu {
    grid-gap: 10px;
    max-width: 100%;
    width: 100%;
  }
  .container .contents_layout .install .install_layout .install_layout_menuArea .install_layout_menu a {
    padding: 0;
  }
  .container .contents_layout .install .install_layout .install_layout_menuArea .install_layout_menu a strong {
    font-size: 13px;
  }
  .container .contents_layout .install .install_layout .install_layout_contents {
    padding: 30px 0;
  }
  .container .contents_layout .install .install_layout .install_layout_contents .settingArea .settingArea_item {
    padding: 15px;
  }
  .container .contents_layout .install .install_layout .install_layout_contents .settingArea .settingArea_item .item .item_head {
    font-size: 20px;
  }
  .container .contents_layout .install .install_layout .install_layout_contents .settingArea .settingArea_item .item .item_body {
    margin-top: 20px;
  }
  .container .contents_layout .install .install_layout .install_layout_contents .settingArea .settingArea_item .item .item_body ul li {
    font-size: 13px;
    letter-spacing: -1px;
  }
}

.container .contents_layout .event {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container .contents_layout .event_tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container .contents_layout .event_tit strong {
  font-size: 24px;
  color: #c1ad94;
  letter-spacing: -2px;
}

.container .contents_layout .event_tit strong span.yellowwhite {
  color: #e5c192;
}

.container .contents_layout .event_tit strong span.red {
  color: #e33637;
}

.container .contents_layout .event_contents {
  margin-top: 80px;
}

.container .contents_layout .event_item {
  margin-bottom: 65px;
}

.container .contents_layout .event_item strong {
  font-size: 24px;
  color: #ffbf6c;
  letter-spacing: -2px;
}

.container .contents_layout .event_item .img {
  margin-top: 25px;
}

.container .contents_layout .event_item .text {
  margin-top: 15px;
}

.container .contents_layout .event_item .text p {
  color: #c1ad94;
  font-size: 16px;
}

.container .contents_layout .event_item:last-child {
  margin-bottom: 0;
}

.container .contents_layout .event_footer {
  margin-top: 50px;
}

.container .contents_layout .event_footer p {
  font-size: 16px;
  color: #c1ad94;
  width: 100%;
  text-align: center;
}

@media (max-width: 980px) {
  .container .contents_layout .event {
    padding: 30px 0;
  }
  .container .contents_layout .event .event_tit strong {
    font-size: 16px;
  }
  .container .contents_layout .event .event_contents {
    margin-top: 30px;
  }
  .container .contents_layout .event .event_contents .event_item {
    margin-bottom: 30px;
  }
  .container .contents_layout .event .event_contents .event_item strong {
    font-size: 16px;
  }
  .container .contents_layout .event .event_contents .event_item .img {
    margin-top: 10px;
  }
  .container .contents_layout .event .event_contents .event_item .img img {
    width: 100%;
  }
  .container .contents_layout .event .event_contents .event_item .text {
    margin-top: 5px;
  }
  .container .contents_layout .event .event_contents .event_item .text p {
    font-size: 13px !important;
  }
}

.pk_right_menu {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  z-index: 999;
  color: white;
}

.pk_right_menu .rt_btn_adr {
  margin-bottom: 6px;
}

.pk_right_menu .rt_btn_adr a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pk_right_menu .rt_btn_adr:last-child {
  margin-bottom: 0;
}

footer {
  background: #0e131a;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .telegram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: #fff;
}

footer .telegram a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

footer .telegram a img {
  width: 20px;
  margin-right: 5px;
}

footer .address {
  color: #3b4149;
  font-size: 16px;
  margin-top: 15px;
}

@media (max-width: 980px) {
  footer {
    width: 100%;
  }
  footer .address {
    width: 100%;
    text-align: center;
    font-size: 13px;
  }
}

.titArea_tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.titArea_tit .tit {
  font-family: 'title';
  font-size: 60px;
  color: #767d89;
  text-align: center;
  font-weight: 100;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#636a76), to(#888e99));
  background-image: linear-gradient(to top, #636a76, #888e99);
  /* 线性渐变背景，方向向上 */
  -webkit-background-clip: text;
  /* 背景被裁剪成文字的前景色 */
  -webkit-text-fill-color: transparent;
  /* 文字填充颜色变透明 */
}

.titArea_tit .sub_tit {
  font-size: 30px;
  font-family: 'korean';
  color: #efc37c;
  margin-top: 20px;
  font-weight: 100;
  text-transform: uppercase;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#e8af60), to(#f3d198));
  background-image: linear-gradient(to top, #e8af60, #f3d198);
  /* 线性渐变背景，方向向上 */
  -webkit-background-clip: text;
  /* 背景被裁剪成文字的前景色 */
  -webkit-text-fill-color: transparent;
  /* 文字填充颜色变透明 */
}

.titArea_tit p {
  font-size: 16px;
  color: #c1ad94;
  margin-top: 25px;
  line-height: 1.5;
}

.titArea_img {
  margin-top: 50px;
}

.titArea_text {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.titArea_text p {
  font-size: 16px;
  color: #c1ad94;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: justify;
}

.titArea_text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .titArea_tit .tit {
    font-size: 30px;
  }
  .titArea_tit .sub_tit {
    font-size: 15px;
    margin-top: 10px;
  }
  .titArea_tit p {
    margin-top: 13px;
    text-align: center;
    font-size: 13px;
  }
  .titArea_text p {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

@media (max-width: 980px) {
  header {
    max-width: 480px;
    min-width: 320px;
    margin: 0 auto;
  }
  header .head {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    max-width: unset;
  }
  header .head h1 a {
    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;
  }
  header .head .mobile_menu {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
    cursor: pointer;
  }
  .container {
    padding-bottom: 30px;
  }
  .container .contents_layout {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow-x: hidden;
  }
  .container .contents_layout .layout_width img {
    width: 100%;
  }
  .container .contents_layout .layout_width strong {
    font-size: 15px;
  }
  .container .contents_layout .layout_width .tip {
    margin-top: 15px;
    padding: 15px 0;
  }
  .container .contents_layout .layout_width .tip strong {
    font-size: 18px;
  }
  .container .contents_layout .layout_width .tip p {
    font-size: 13px;
  }
  .container .contents_layout .layout_width .img {
    margin-top: 35px;
  }
  .container .contents_layout .layout_width .text {
    margin-top: 25px !important;
  }
  .container .contents_layout .layout_width .text strong {
    font-size: 15px !important;
  }
  .container .contents_layout .layout_width .text p {
    font-size: 13px;
  }
  .container .contents_layout .layout_width .list_item {
    margin-bottom: 40px;
  }
  .container .contents_layout .layout_width .list_item strong {
    font-size: 16px;
  }
  .container .contents_layout .layout_width .list_item strong span {
    margin-right: 5px;
  }
  .container .contents_layout .layout_width .list_item strong span img {
    width: 25px;
  }
  .container .contents_layout .layout_width .list_item .list_text {
    margin-top: 10px;
  }
  .container .contents_layout .layout_width .list_item .list_text p {
    font-size: 13px;
  }
  .container .contents_layout .layout_width .numberArea {
    margin-top: 40px;
  }
  .container .contents_layout .layout_width .numberArea_item {
    padding: 30px 0 25px;
    margin-bottom: 40px;
  }
  .container .contents_layout .layout_width .numberArea_item .number {
    -webkit-transform: translateX(-50%) translateZ(0) scale(0.5);
            transform: translateX(-50%) translateZ(0) scale(0.5);
  }
  .container .contents_layout .layout_width .numberArea_item_contents {
    margin-top: 15px;
  }
  .container .contents_layout .layout_width .numberArea_item_contents ul li {
    font-size: 13px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 30px 1fr;
        grid-template-columns: 30px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: -1px;
    margin-bottom: 2px;
  }
  .container .contents_layout .layout_width .numberArea_item_contents ul li > span {
    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;
  }
  .container .contents_layout .layout_width .game_omaha {
    background-image: url(../images/omaha/img2_m.png);
    background-position: center;
    height: 282px;
  }
  .container .contents_layout .layout_width .game_omahaTwo {
    margin: 0;
    background-image: url(../images/omaha/img3_m.png);
    background-position: center;
    height: 243px;
  }
  .container .contents_layout .layout_width .rule_img {
    background-image: url(../images/deck/img2_m.png);
    background-position: center;
    height: 473px;
  }
  .container .contents_layout .game_banner_item {
    padding: 20px 10px;
    -ms-grid-columns: 15% 1fr;
        grid-template-columns: 15% 1fr;
    grid-gap: 10px;
    margin-bottom: 15px;
  }
  .container .contents_layout .game_banner_item .number {
    font-size: 30px;
  }
  .container .contents_layout .game_banner_item .text strong {
    font-size: 18px;
    font-weight: bold !important;
    font-family: 'yindigo-360';
    letter-spacing: -1px;
  }
  .container .contents_layout .game_banner_item .text p {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: -1px;
    text-align: justify;
  }
  .container .contents_layout .game_banner_item .img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: -2;
    grid-column: 3/1;
  }
  .container .contents_layout .game_banner_item .img img {
    max-height: 100px;
  }
  .container .contents_layout .game_img {
    margin-top: 45px;
  }
  .container .contents_layout .rule_item {
    width: 100%;
  }
  .container .contents_layout .gameRule_tit {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .container .contents_layout .gameRule_tit strong {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: -webkit-box;
  }
  .container .contents_layout .gameRule_contents {
    padding: 0;
  }
  .container .contents_layout .gameRule_contents .gameRule_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 10px;
  }
  .container .contents_layout .gameRule_contents .gameRule_item .item .item_text {
    font-size: 13px;
  }
}

.DX {
  font-family: 'title';
  font-weight: 100;
}

.mb_poker_button {
  display: none;
}

@media (max-width: 980px) {
  .pk_right_menu {
    display: none;
  }
  .mb_poker_button {
    display: block;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 999;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    left: 0;
    right: 0;
    bottom: 10px;
  }
  .mb_poker_button .poker_iphone_btn {
    margin-left: 2px;
  }
}
/*# sourceMappingURL=layout.css.map */