* {
  padding: 0;
  margin: 0;
  letter-spacing: -1px;
}

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: 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;
}

@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;
  }
}

.poker_layout {
  width: 100%;
  height: auto;
  position: relative;
  background-image: url(../images/set_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.poker_layout:after {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../images/top_after.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 1033px;
  height: 911px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.poker_layout:before {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../images/top_after1.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 1026px;
  height: 911px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.poker_setting {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 73px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.poker_setting_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;
}

.poker_setting_tit h3 {
  font-size: 30px;
  color: #080b0f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
}

.poker_setting_tit .tip {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 66px 1fr;
      grid-template-columns: 66px 1fr;
  grid-gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 34px;
}

.poker_setting_tit .tip_img {
  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;
}

.poker_setting_tit .tip_img span {
  color: #404040;
  font-weight: bold;
  font-size: 18px;
  margin-top: 5px;
}

.poker_setting_tit .tip_text {
  font-size: 20px;
  color: #404040;
  font-weight: bold;
  text-align: center;
}

.poker_setting_list {
  width: 664px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 44px;
  margin-top: 56px;
}

.poker_setting_list_item {
  position: relative;
}

.poker_setting_list_item .cover {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto;
}

.poker_setting_list_item:nth-child(1) .cover {
  top: 160px;
}

.poker_setting_list_item:nth-child(2) .cover {
  top: 260px;
}

.poker_setting_list_item:nth-child(3) .cover {
  top: 188px;
}

.poker_setting_list_item:nth-child(4) .cover {
  top: unset;
  bottom: 10px;
}

@media (max-width: 980px) {
  .poker_layout {
    height: auto;
  }
  .poker_layout:after {
    -webkit-transform: scale(0.25);
            transform: scale(0.25);
  }
  .poker_layout:before {
    -webkit-transform: scale(0.25);
            transform: scale(0.25);
  }
  .poker_setting {
    width: 100%;
    padding: 35px 0;
  }
  .poker_setting_tit h3 {
    font-size: 20px;
  }
  .poker_setting_tit .tip_img span {
    font-size: 14px;
  }
  .poker_setting_tit .tip_text {
    font-size: 14px;
    line-height: 2;
  }
  .poker_setting_list {
    width: 100%;
    grid-gap: 10px;
  }
  .poker_setting_list_item .cover {
    width: 100%;
  }
  .poker_setting_list_item img {
    width: 100%;
  }
  .poker_setting_list_item:nth-child(1) .cover {
    top: 98px;
  }
  .poker_setting_list_item:nth-child(2) .cover {
    top: 150px;
  }
  .poker_setting_list_item:nth-child(3) .cover {
    top: 110px;
  }
  .poker_setting_list_item:nth-child(4) .cover {
    top: unset;
    bottom: 10px;
  }
}
/*# sourceMappingURL=header.css.map */