/*
Theme Name: webgame
Theme URI: http://example.com/my-custom-theme/
Author: Your Name
Author URI: http://example.com/
Description: A custom WordPress theme with disabled auto-updates and encrypted file uploads.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/

/* ... existing code ... */

html,
body,
img {
  margin: 0;
  padding: 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1920px;
  /* min-width: 1080px; */
  margin: auto;
  position: relative;
}

/* Flexbox 布局 */
.flex-container {
  display: flex;
  justify-content: space-between;
  /* 水平间距均匀分布 */
  align-items: center;
  /* 垂直居中对齐 */
}

/* Grid 布局 */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 创建三列等宽的网格 */
  gap: 20px;
  /* 网格之间的间距 */
}

/* 居中容器 */
.centered-container {
  display: flex;
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  /* 垂直居中 */
  height: 100vh;
  /* 使用视口高度 */
}

/* 固定顶部导航栏 */
.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
}

/* 响应式设计 - 小屏幕优化 */
@media (max-width: 768px) {
  .container {
    min-width: auto;
    /* 小屏幕时取消最小宽度限制 */
  }
}


.banner-1 {
  position: relative;
}

.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content-2 {
  align-items: flex-end;
  justify-content: flex-start;
}

.banner-text img {
  max-width: 100%;
}

.banner-text {
  max-width: 50%;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content-row-1 {
  padding: 0 50px;
  flex-wrap: wrap;
  margin-left: revert-layer;
  /* justify-content: space-evenly; */
  margin-left: -25px;
  margin-right: -25px;
}

.item-box-1 {
  width: 340px;
  position: relative;
  cursor: pointer;
  margin:  25px;
  margin-top: 0;
  margin-bottom: 70px;
}

.saler-icon {
  position: absolute;
  top: -8px;
  left: 0;
  z-index: 10;
}

.item-box-img-right {
  position: absolute;
  right: -55px;
  bottom: -17px;
  /* width: 235px; */
  z-index: 10;
  transition: 0.3s;
}

.item-box-img-right img {
  max-width: 100%;
}

.item-box-img-main {
  position: relative;
  width: 100%;
}

.item-box-img-main img {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
}

.item-box-img-main:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: #292B30;
  height: 100%;
  opacity: 0.5;
  z-index: 3;

}

.item-box-1 .item-box-img-main {
  overflow: hidden;
  border-radius: 12px;

}

.item-box-1 .item-box-img-main img {
  transition: all 0.3s ease-in-out;

}

.item-box-img-main:hover img {

  transform: scale(1.2);
}

.item-box-img-right:hover {
  transform: scale(1.1);
}

.item-box-1 {
  /* cursor: pointer; */
}

.row {
  display: flex;
  align-items: flex-start;
}

.row-space-between {
  justify-content: space-between;
}

.item-box-1.item-box-1-small {
  width: 248px;
}

.item-box-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  /* align-items: center; */
  z-index: 7;
  color: white;
  flex-direction: column;
  justify-content: center;
}

.item-box-text h3 {
  padding-left: 25px;
  font-size: 1.6rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgb(255 255 255 / 50%);
  letter-spacing: 2px;
  font-weight: 500;
}

.item-box-text p {
  font-size: 14px;
  margin: 0;
  padding-left: 26px;
  height: 20px;
}

p.red-text {
  color: #FF0000;
}



.development-box .item-box-text h3 {
  text-shadow: unset;
  opacity: 0.5;
}

.tab-menus {
  display: flex;
  justify-content: center;
  padding: 20px;
  margin-bottom: 60px;
  align-items: center;
}



.tab-item-menu {
  font-size: 40px;
  color: #707070;
  margin: 0 12px;
  position: relative;
  cursor: pointer;

}

.tab-item-menu.active {
  color: black;
  font-size: 45px;
}

.tab-item-menu.active:after {
  background: linear-gradient(to right, #BA2FF2, #9580F7, #66E4FD);
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  display: block;
  bottom: 0;
  left: 0;
}

.bottom-banner {
  padding-top: 50px;
}

.bottom-banner img {
  max-width: 100%;
}

@keyframes scroll-bg {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 -500%;
  }
}

.background-scroll {
  background-image: url('./images/background-scroll.png');
  background-repeat: repeat-y;
  background-size: 100% auto;
  animation: scroll-bg 20s linear infinite;
}

.game-item-1 {
  width: 248px;
  height: 120px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  /* margin: 0px 36px; */
  /* margin-bottom: 33px; */
}

.game-item-1:hover img {
  transform: scale(1.2);
}

.game-item-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.game-item-1-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
  text-align: center;
}

.game-item-1-text * {
  margin: 0;
}

.game-item-1-text p {
  font-size: 14px;
  height: 10px;
}

.game-item-1-text h3 {
  color: white;
}

.game-item-1:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background: black;
  opacity: 0.5;
}

.tab-content-row-2 {
  flex-wrap: wrap;
  padding-bottom: 100px;
}

.bg-white-to-green {
  background: linear-gradient(to bottom, #FFFFFF 20%, #EDF1F9 40%, #F5F8FC 60%, #B5E5EA 100%);

}

.bg-white-to-blue {

  background: linear-gradient(to bottom, #FFFFFF 20%, #EDF1F9 40%, #F5F8FC 60%, #75A4E8 100%);
}

.full-page {
  min-height: 100vh;
}

.full-page-2 {
  min-height: 100vh;
  min-width: 100vw;
}

.direction-y {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.single-banner {
  width: 100%;
  position: relative;
}

.single-banner img {
  width: 100%;
  display: block;
}

.single-banner-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.single-banner-content h3 {
  font-weight: bold;
  font-size: 3em;
}

.banner-div {
  position: relative;
  overflow: hidden;
}

.banner-div>img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.banner-div:hover>img {
  transform: scale(1.1);
}


.banner-content-2 h3 {
  color: white;
  padding-left: 30px;
  font-size: 40px;
  font-weight: bold;
}

@keyframes bound-sicky {
  0% {
    bottom: 0;
  }

  50% {
    bottom: 5px;
  }

  100% {
    bottom: 0;
  }
}

.right-img {
  position: absolute;
  right: 100px;
  bottom: 0;
  animation: bound-sicky 1s linear infinite;
}

.parent-tab ul {
  list-style: none;
  display: none;
  /* overflow: hidden; */
  /* height: 0; */
}

.parent-tab:hover ul {
  display: block;
}

.cat-menus-1 {
  display: flex;
  padding-top: 30px;
  align-items: flex-end;
  padding-bottom: 80px;
  position: relative;
}

.cat-tab {
  position: relative;
  color: #A07B50;
  font-size: 35px;
  font-weight: bold;
  margin-right: 25px;
  cursor: pointer;
}

.cat-tab.current-tab-act.active {
  color: #93652E;
  font-size: 40px;
}

.cat-tab ul {
  position: absolute;
  margin-top: 0;
  padding-left: 10px;
  white-space: nowrap;
  font-size: 0.9em;
  background: white;
  z-index: 16;
  box-shadow: 2px 3px 2px 3px white;
  padding: 15px 10px;
  line-height: 1.3;
  border: 1px solid #ebe9e9;
  border-radius: 10px;
}

.cat-tab ul:hover {
  display: block;
}

.flex-wrap {
  flex-wrap: wrap;
}

.grid-container-5 {
  display: grid;
  grid-template-columns: repeat(5, 312px);
  gap: 20px;
  justify-content: space-between;
  /* 两端对齐 */
}

.post-item {
  position: relative;
  height: 136px;
  transition: 0.3s;
  cursor: pointer;
  color: white;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.post-item-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  z-index: 10;
  /* opacity: 0.8; */
}

.post-item:hover {
  top: -10px;
  transform: scale(1.05);
}

.post-item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: black;
  opacity: 0.3;
}

.post-item-title {
  font-size: 1.8rem;
  font-weight: bold;
  text-shadow: 0 0 4px #f9f9f9;
  letter-spacing: 2px;
  opacity: 0.8;
}

.post-item-excerpt.read-text {
  color: #FF1200;
  font-weight: bold;
  line-height: 25px;
  opacity: 0.8;
  height: 25px;
}

.post-item:hover .post-item-excerpt.read-text,
.post-item:hover .post-item-title {
  opacity: 1;
}

.top-red-text {
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
  height: 28px;
  color: red;
  text-shadow: 1px 1px 4px white;
}

.yellow-read-more {
  /* flex: 1; */
  /* height: 40px; */
  padding-top: 20px;
  color: #FFF78D;
  font-size: 12px;
}

.cat-tab ul li:hover {
  background: #f7f7d8;
}

.parent-tab.cat-tab.active {
  color: #93652E;
  font-size: 40px;
  /* font-weight: bold; */
}

.parent-tab.cat-tab.active:after,
.parent-title.active:after {
  content: "";
  background-image: url(./images/under-line.png);
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 0;
  left: 0;
}

.history-bg {
  background-image: url(./images/bg2.jpg);
  min-height: 100vh;
}

.container-22 {
  padding: 30px;
}

.current-tab-act.active {
  background: #f7a370;
}

.inner-container-bg {
  background-image: url(./images/bg-3.jpg);
  background-size: 100% auto;
  background-repeat: repeat-y;
  padding: 50px;
  position: relative;
}

.container-bg-2 {
  background-image: url(./images/bg-3.jpg);
  background-size: 100% auto;
  background-repeat: repeat-y;

  position: relative;
}

.history-menus-groupp {
  display: flex;
}

.history-menu ul {
  margin: 0;
  padding: 0;
  height: 0;
  overflow: hidden;
}



/* .parent-title {
    color: #A07B50;
    font-size: 1.8em;
    font-weight: bold;
    margin-right: 32px;
    position: relative;
} */

.drop-menus-group {
  display: flex;
  text-align: center;
  padding: 5px 20px;
  font-size: 2.5em;
  align-items: flex-start;

  top: 0;
}

.drop-menus-item {
  padding: 5px 20px;
  color: #A07B50;
  font-weight: bold;
}

.parent-title.active {}

.parent-title.active {
  color: #93652E;
}

.parent-title.active {}

.parent-title {
  position: relative;
  padding-bottom: 15px;
  cursor: pointer;
  transition: 0.1s;
}

.drop-menus-group .child-group {
  color: #666666;
  font-size: 0.8em;
  line-height: 1.5;

}

.parent-row-d {
  display: flex;
  justify-content: center;
}

.drop-menus-group .child-group .child-item.active {
  color: #000000;
}


.child-group .child-item {
  /* CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX; */
  cursor: pointer;
  transition: 0.1s;
  margin: 3px 0;
}

.child-group .child-item:hover,
.parent-title:hover {
  transform: scale(1.1);
}

.drop-mas {
  background-image: url(./images/drop-bg.jpg);
  background-size: cover;
}

.sticky {
  position: -webkit-sticky;
  /* 对于 Safari */
  position: sticky;
  top: 0;
}

.game-item-outer {
  position: relative;
  margin: 0px 36px;
  margin-bottom: 50px;
  cursor: pointer;
}

.small-image-box {
  position: absolute;
  right: -34px;
  bottom: -17px;
  transition: .3s;
  z-index: 10;
}

.small-image-box:hover {
  transform: translateY(-10px) scale(1.1);
}

.game-item-1-text h3 {
  transition: 0.3s;
}

.game-item-outer {}

.game-item-outer:hover .game-item-1-text h3 {
  transform: scale(1.2);
}

.game-iframe {
  height: 700px;
  width: 70%;
  min-width: 1200px;
  max-height: 100vh - 100px;
  max-width: 100vw - 100px;

}

.game-container {
  position: relative;
  display: inline-block;
}

.fullscreen-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.fullscreen-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(1.05);
}

.fullscreen-btn:active {
  transform: scale(0.98);
}

.pouple-bg {
  background: url("./images/pouple-bg.jpg");
  background-size: cover;
}

/* 全屏状态下的iframe样式 */
.game-iframe:fullscreen {
  width: 100vw;
  height: 100vh;
  min-width: unset;
}

.game-iframe:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  min-width: unset;
}

.game-iframe:-moz-full-screen {
  width: 100vw;
  height: 100vh;
  min-width: unset;
}

.game-iframe:-ms-fullscreen {
  width: 100vw;
  height: 100vh;
  min-width: unset;
}

.back-to {
  background-image: url("./images/back-icon.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 96px;
  height: 32px;
  background-position: center center;
  margin-top: 10px;
  margin-bottom: 10px;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

.robort-msg-right {
  position: fixed;
  right: 30px;
  bottom: 100px;
  cursor: pointer;
  transition: 0.3s;
  animation: bounce 2s infinite;
}

.robort-msg-right:hover {
  transform: scale(1.1);
}

.grid-container-3 {
  grid-template-columns: repeat(3, 585px);
}

.grid-container-5.grid-container-3 .post-item {
  height: unset;
  border-radius: 0;
  overflow: unset;
  margin-bottom: 20px;
}

.grid-container-5.grid-container-3 .post-item .post-item-img {
  height: 240px;
  border-radius: 0;
  overflow: unset;
  box-shadow: 5px 4px 5px 3px #c3c3c3;
  position: relative;
}

.grid-container-5.grid-container-3 .post-item-img img {
  width: 100%;
  height: 100%;
}



.grid-container-5.grid-container-3 .post-item:after {
  content: "";
  display: none;
}



.post-item-content-bottom .post-item-title {
  color: #BD6052;
  line-height: 1.5;
}

.post-item-content-bottom .post-item-excerpt {
  color: #666666;
  line-height: 1.5;
  font-size: 0.9em;
}

.green-read-more {
  color: #63A8A5;
  font-size: 0.9em;
  line-height: 2em;
}

.post-item-content-bottom {
  padding-right: 55px;
}


.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.8); */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  background-color: #000;
  padding: 10px;
  border-radius: 8px;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.video-modal-close:hover {
  color: #ccc;
}

#dplayer {
  width: 80vw;
  height: 80vh;
  max-width: 1200px;
  max-height: 675px;
  /* 16:9 比例 */
}

@media (max-width: 768px) {
  #dplayer {
    width: 95vw;
    height: 50vh;
  }

  .video-modal-content {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  #dplayer {
    width: 95vw;
    height: 40vh;
  }
}

.video-modal-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.3;
}

.image-box-1 {
  height: 230px;
  position: relative;
}

.image-box-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-title-1 {
  color: #000000;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  padding-top: 10px;
  cursor: pointer;
}

.swiper-bottom-nav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-prev-1,
.swiper-button-next-1 {
  position: unset;
}



.swiper-pagination.swiper-pagination-1.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: unset;
  width: unset;
}

.image-box-2 {
  height: 208px;
  position: relative;
}

.image-box-2 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slide-2-box:after {
  background: black;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.swiper-content-2 {
  display: block;
  padding: 15px;
  background: #afaeae;
  color: #000000;
  z-index: 30;
  position: relative;
}

.nav-row-2 .swiper-button-next-2,
.nav-row-2 .swiper-button-prev-2 {
  background: #A2A8AF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* color: white; */
  /* font-size: 30px; */
}

.nav-row-2 .swiper-button-next-2::after,
.nav-row-2 .swiper-button-prev-2::after {
  color: white;
  /* height: 15px; */
  font-size: 30px;
  position: relative;
  right: -10px;
}

.nav-row-2 .swiper-button-next-2::before,
.nav-row-2 .swiper-button-prev-2::before {
  content: "";
  width: 33px;
  height: 2px;
  background: white;
  display: block;
  position: absolute;
  right: 10px;
}

.swiper-button-prev.swiper-button-prev-2:after {

  left: -10px;
}

.swiper-pagination-1 .swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;

}



.swiper-pagination-1 span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: black;
}

.swiper-bottom-row {
  display: flex;
  justify-content: center;
  padding: 30px;
  align-items: center;
}



.swiper-button-prev.swiper-button-prev-1,
.swiper-button-next.swiper-button-next-1 {
  position: relative;
  color: white;
  background: black;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0 10px;
  top: -2px;
}

.swiper-button-prev.swiper-button-prev-1:after,
.swiper-button-next.swiper-button-next-1:after {

  font-size: 20px;
  position: relative;

}

.swiper-button-next.swiper-button-next-1:after {
  right: -3px;
}

.swiper-button-prev.swiper-button-prev-1:after {
  left: -3px;
}

.player-btn {
  background-image: url(./images/player-btn.png);
  width: 60px;
  height: 60px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 30;

}


.image-box-1 .player-btn,
.image-box-2 .player-btn {
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
}

.play-title {
  color: white;
  font-size: 25px;
  font-weight: bold;
  padding: 10px;
}

.row-33 {
  display: flex;
  align-items: center;
  /* padding-left: 65px; */
  padding: 30px 0;
  padding-left: 65px;
}

.title-h2 {
  color: #93652E;
  font-weight: bold;
  font-size: 2.5em;
  /* margin-left: 40px; */
  margin: 0;
  margin-left: 40px;
}

.pedding {
  color: #FF0000;
  font-size: 2em;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
}

.title-333 {
  color: #666666;
  font-size: 14px;
  padding: 10px 0;
  padding-right: 40px;
}

.more-read {
  color: #937602;
  /* opacity: 0.5; */
  font-size: 14px;
}

.type-2-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;

}

.type-2-content:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  opacity: 0.3;
}



.type-2-content .top-red-text {
  z-index: 20;
  font-size: 2em;
}

.web-header {
  background-image: url("./images/web-top-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  padding: 5px 25px;
  min-height: 90px;
  /* box-shadow: 1px -1px 0px 1px #979797; */
  border-bottom: 1px solid #9b9b9b;
  flex-wrap: wrap;
}

.skytic-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  /* border-bottom: 1px solid black; */
}

.dialog-body .skytic-top {

  top: 32px;
}

.header-top-space {
  height: 100px;
}

.web-header-right,
.web-header-left {
  display: flex;
  align-items: center;
}

.web-header-right,
.web-header-left {
  display: flex;
  align-items: center;
}



.online-b-text,
.online-a-text {

  width: 155px;

  height: 65px;

  margin-left: 90px;

  background-repeat: no-repeat;

  background-size: contain;
}

.online-a-text {
  background-image: url(./images/msg-boy.png);
}

.online-b-text {
  background-image: url(./images/msg-girl.png);
}

.online-a-text span,
.online-b-text span {
  display: block;
  padding-top: 35px;
  padding-left: 22px;
  font-weight: 500;
}

.user-polie {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #082A46;
  margin-left: 20px;
  overflow: hidden;
  border: 2px solid #ababab;
  cursor: pointer;
}

.user-name-id {
  margin: 0 20px;
}

.login-out-icon {
  cursor: pointer;
}

.user-polie.user-polie-no-login img {
  width: 100%;
}

.user-polie.user-polie-no-login {
  background: white;
  margin-right: 15px;
  border-radius: 50%;
  border: 1px solid;
  cursor: pointer;
  overflow: hidden;
}

.login-btn {
  padding: 5px 20px;
  cursor: pointer;
  background: #FFC200;
  border-radius: 20px;
  font-size: 1.5em;
  box-shadow: 2px 3px 3px 1px white;
  border: 1px solid #b9b9b9;
}

.user-dia {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-mas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  opacity: 0.3;
}

.custom-login-dialog {
  border-radius: 25px;
  box-shadow: 1px 3px 6px 2px #cfcccc;
  padding-top: 0;
}

.prefix-icon {
  width: 20px;
  margin-top: 15px;
}

.wrap-xxx {
  padding: 20px 40px;
  padding-top: 0;
}

.tab-menus-2 {
  display: flex;
  justify-content: space-around;
  padding-bottom: 30px;
}

.tab-menus-2-item {
  font-size: 1.8em;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}

.tab-menus-2-item.active:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #BA2FF2, #66E4FD);
  bottom: 0;
  left: 0;
}

.tab-menus-2-item.active {
  color: black;
}

.submit-btn {
  background: linear-gradient(to right, #BA2FF2, #66E4FD);
  text-align: center;
  height: 50px;
  display: flex;
  border-radius: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.7em;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 50px;
}

.submit-btn:hover {
  transform: scale(1.05);
}

.input-css input {
  height: 50px;
}

p.error-msg {
  color: red;
  padding-left: 10px;
}

.user-polie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottom-row-2 {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  font-size: 1.2em;
}

.register-text-1 {
  color: #2774f3;
}

.register-text-1,
.register-text-2 {
  margin: 0 10px;
  font-weight: 500;
  cursor: pointer;
}

.tttt {
  text-align: center;
  margin-top: 20px;
}

span.ttt-xxx {
  color: #4285F4;
  cursor: pointer;
}

.face-box-wrap {
  flex-direction: column;
  display: flex;
  align-items: center;
}

.face-div {
  background-color: white;
  height: 150px;
  width: 150px;
  border: 1px solid black;
  border-radius: 50%;
  margin: 20px 0;
  overflow: hidden;
}

.face-video {
  /* height: 150%; */
  width: 136%;
  top: 0%;
  position: relative;
  left: -18%;
}

.form-111 .nf-form-fields-required,
.form-111 .nf-field-label {
  display: none;
}

 

.form-111 .textbox-container,
.form-111 .email-container {
  width: 480px;
  max-width: 100%;
  margin: auto;
  margin-bottom: 30px;
}

 

.form-111 .nf-field-element input,
.form-111 .nf-field-element textarea {
  line-height: 54px;
  border-radius: 15px;
  text-indent: 20px;
  border: 1px solid #c7c7c7;
  outline: 0;
  font-size: 1.2em;
}

.form-111 .nf-field-element textarea {
  line-height: 1.8;
  padding: 15px;
  padding-left: 20px;
  text-indent: 0;
}

.form-111 .nf-field-element:before {
  content: "*";
  color: red;
  position: absolute;
  left: 10px;
  top: 18px;
}

.form-111 .field-wrap input[type=submit] {
  width: 100%;
  background: #242525;
  color: white;
  width: 140px;
  text-indent: 0;
  /* margin: auto; */
}

.form-111 .field-wrap .nf-field-element {
  text-align: center;
}

.content-us-right {

width: 320px;

margin-bottom: 25px;

animation: bounce 2s infinite;
}
.content-us-right:hover{
  animation: none;
}
.flex-bottom {
    position: fixed;
    width: 100%;
    bottom: 275px;
    left: 0;
    z-index: 30;
    height: 0;
}

 

.flex-bottom .container {
    display: flex;
    justify-content: flex-end;
}

.tab-item-menu.tab-item-menu-new.active span,    .tab-item-menu-new .active-img {
    display: none;
}

 

.tab-item-menu.tab-item-menu-new.active  .active-img {
    display: block;
}
.tab-item-menu.tab-item-menu-new.active:after{
  content: "";
  background-image: url(./images/pan-1.png);
  bottom: -25px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}
.game-content{
  padding: 20px;
}
.submit-container .nf-field-element:before {
    display:none;
}
.tab-content-row-1:after {
    content: "";
    flex: 1;
    height: 0;
}
.tab-item-menu.tab-item-menu-new.active img.nonal-text {
    display: none;
}