/*css*/
body {
  background: #fff;
  color: #666666;
  font-family: "openhuninn";
}
@font-face {
    font-family: "openhuninn";
    src: url("../font/jf-openhuninn-1.1.ttf");
    font-style: normal;
    font-weight: normal;
}
a {
  color: #2dc997;
}

a:hover, a:active, a:focus {
  color: #2dca98;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "openhuninn";
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #2dc997;
  color: #fff;
}
.tlinks{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 24px 0px 12px 0px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 998;
  background: #fff;
}

#header #logo {
  float: left;
	margin-left: 10%;
}
@media (max-width: 320px) {
	#header #logo{
		margin-left: 0;
	}
}

/*--------------------------------------------------------------
# Hero Section (Carousel) - Super Flow Style
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  margin-top: 0;
  overflow: hidden;
  position: relative;
  background: #000;
}

/* Hero right-side social icons */
.hero-social {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9;
}
.hero-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.hero-social-link img {
  width: 24px;
  height: 24px;
  filter: brightness(0.9) contrast(1.1);
}
.hero-social-link:hover,
.hero-social-link:focus-visible {
  transform: translateY(-1px) scale(1.06);
  box-shadow: 0 10px 26px rgba(0,0,0,0.2), 0 0 0 2px rgba(0,0,0,0.05);
  background: #f5f5f5;
}

.hero-social-link:active {
  transform: translateY(0) scale(1.12);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15), 0 0 0 2px rgba(0,0,0,0.08);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

@media (max-width: 768px) {
  .hero-social {
    right: 8px;
    gap: 10px;
    z-index: 997;
  }
  .hero-social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }
  .hero-social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(1.12) contrast(1.08);
  }
}

/* Game selector */
.game-selector {
  position: absolute;
  top: 90px;
  right: 20px;
  z-index: 1002;
}

.game-selector select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-family: "openhuninn";
  outline: none;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .game-selector {
    top: 70px;
    right: 12px;
  }
  .game-selector select {
    padding: 6px 10px;
    font-size: 12px;
  }
}

.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel-wrapper.transitioning .hero-carousel-btn {
  pointer-events: none;
  opacity: 0.5;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  display: table;
  z-index: 1;
  visibility: hidden;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
  visibility: visible;
}

.hero-slide.prev {
  opacity: 0;
  transform: translateX(-100%);
  z-index: 0;
  visibility: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.original-bg {
  background: url(../img/home_bg.png) no-repeat center;
  background-size: cover;
  background-color: #0a0a0a;
}

.tasty-bg {
  background: url(../img/lunbo/Tasty1920.png) no-repeat top center;
  background-size: cover;
  background-color: #1a0a1a;
}
.got-bg {
  background: url(../img/lunbo/got1920.png) no-repeat top center;
  background-size: cover;
  background-color: #1a0a1a;
}

.wwv-bg {
  background: url(../img/lunbo/WWV1920.png) no-repeat top center;
  background-size: cover;
  background-color: #1a0a1a;
}

.got-bg-m {
  background: url(../img/lunbo/got750.png) no-repeat center;
  background-size: cover;
  background-color: #1a0a1a;
}

.tasty-bg-m {
  background: url(../img/lunbo/Tasty750.png) no-repeat center;
  background-size: cover;
  background-color: #1a0a1a;
}

.wwv-bg-m {
  background: url(../img/lunbo/WWV750.png) no-repeat center;
  background-size: cover;
  background-color: #1a0a1a;
}


/* Gradient overlays for better text readability */
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
  transition: opacity 1.2s ease;
}

.hero-slide.active::before {
  opacity: 0.6;
}

/* Animated particles background */
.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(45, 201, 151, 0.1), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(45, 201, 151, 0.1), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.1), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particleMove 20s linear infinite;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active::after {
  opacity: 1;
}

@keyframes particleMove {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-100px) translateX(50px); }
}

/* Smooth entrance animation for content */
.hero-container {
  animation: fadeInUp 1.5s ease 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.download_con{
    position: absolute;
    left: 7vw;
    bottom: calc(6vh + 80px);
    z-index: 999;
    font-size: 0;
    width: 28vw;
    display: flex;
    justify-content: space-between;
}
.download_con .item {
    width: 13vw;
    height: auto;
    display: block;
    cursor: pointer;
}

.download_con .item img{
    width: 13vw;
    height: auto;
    display: block;
    cursor: pointer;
}
.fat_explain{
  display:none;
}

.home_logo{
  position: absolute;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: 31vw;
  height: auto;
}
.fat_logo{
  left: 0vw;
  width: 40vw;
}
.home_role{
  position: absolute;
  bottom: -8vh;
  right: 3vw;
  z-index: 9;
  width: auto;
  height: auto;
  max-width: 59.42vw;
  max-height: 89vh;
}

#hero .hero-container {
  display: table-cell;
  margin: 0;
  text-align: center;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  width:100%;
}

/* Hero Carousel Controls - Hidden */
.hero-carousel-controls {
  display: none;
}

.hero-carousel-btn {
  display: none;
}

/* Hero Carousel Indicators - Cool Dot Style */
.hero-carousel-indicators {
  position: absolute;
  bottom: calc(9vh + 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 16px;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 24px;
  border-radius: 50px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  display: block;
  border: 2px solid transparent;
}

.hero-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #FF5252;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
}

.hero-indicator.active {
  background: rgba(255, 82, 82, 0.3);
  border-color: #FF5252;
  transform: scale(1.4);
  box-shadow:
    0 0 20px rgba(255, 82, 82, 0.6),
    0 0 40px rgba(255, 82, 82, 0.3),
    inset 0 0 10px rgba(255, 82, 82, 0.2);
}

.hero-indicator.active::before {
  width: 100%;
  height: 100%;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
  }
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
  box-shadow:
    0 0 15px rgba(255, 255, 255, 0.4),
    0 0 25px rgba(255, 255, 255, 0.2);
}

#hero h1 {
    position: absolute;
	width: 100%;
	text-align: center;
	bottom: 0;
}
#hero h3{
	display: none;
}
#hero h2 {
  color: #fff;
  font-size: 31px;
  position: absolute;
  right:20px;
  bottom: 0px;
  text-shadow:#000 2px 2px 3px
}


@media (max-width: 768px) {
	#hero {
	  overflow: hidden;
	  width: 100vw;
	  height: 100vh;
	  margin-top: 0;
	  position: relative;
	}

	.hero-indicator {
	  width: 10px;
	  height: 10px;
	}

	.hero-carousel-indicators {
	  bottom: 200px;
	  gap: 12px;
	  padding: 10px 20px;
	}
  .home_logo{
    position: absolute;
    left: 25vw;
    top: 120px;
    z-index: 99;
    width: 50vw;
  }
  .home_role_m{
    width: 90vw;
    position: absolute;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
  }
  .home_ice_m{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 99;
  }

  .download_con{
      position: absolute;
      left: 5vw;
      width: 90vw;
      justify-content: space-around;
      bottom: 30px;
  }
  .download_con .item{
     width: 42vw;
      height: auto;
      display: block;
      cursor: pointer;
  }
  .download_con .item img{
   width: 42vw;
  }

  #hero h3{
	  display: block;
  }
  #hero h3 img{
	  width: 100%;
	  height: auto;
  }
  #hero h1 {
    display: none;
  }
  #hero h2 {
	width: 100%;
	text-align: center;
    font-size: 22px;
    line-height: 24px;
    bottom: 16%;
	right:0px;
  }

  th,td{
      min-width:25%;
  }

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container,.facebooklink {
  float: right;
  margin: 0;
}
.facebooklink2{
    display: none;
	float: right;
}

.facebooklink{
	margin-left: 10px;
	margin-right: 20px;
}

@media (max-width: 768px) {
  #nav-menu-container,.facebooklink{
    display: none;
  }
  .facebooklink2{
    display: block;
  }
  .facebooklink2 a {
	display: block;
    width: 35px;
	height: 35px;
	margin-right: 68px;
	margin-top: -8px;
  }
  .facebooklink2 a img{
    width: 100%;
	height: auto;
  }
	#header #logo{
	  margin-top: -5px;
	  margin-left: 10px;
	}

}

/* Nav Meu Styling */
.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #000;
  font-family:"openhuninn";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 19px;
  outline: none;
}

.nav-menu > li {
  margin-left: 10px;
}

/* Game dropdown in nav */
.nav-menu .menu-game {
  position: relative;
}
.nav-menu .menu-game .nav-game-toggle {
  cursor: pointer;
}
.nav-menu .menu-game .game-dropdown {
  position: absolute;
  top: 28px;
  left: 0;
  display: none;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 2000;
}
.nav-menu .menu-game.open .game-dropdown {
  display: block;
}
.nav-menu .menu-game .game-dropdown .game-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-menu .menu-game .game-dropdown .game-item {
  color: #000;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  font-family: "openhuninn";
}
.nav-menu .menu-game .game-dropdown .game-item:hover {
  background: #f5f5f5;
  /* border-color: rgba(255,82,82,0.6); */
  /* box-shadow: 0 0 10px rgba(255,82,82,0.2); */
}
.nav-menu .menu-game .game-dropdown .game-item.active {
  background: #fff;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  border: 1px solid #e7e7e7;
}

.nav-menu ul li {
  background: #fff;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li a:hover {
  background: #2dc997;
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 11px 16px 0 0;
  border: 0;
  background: none;
  font-size: 30px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
  padding: 0;
}

#mobile-nav-toggle i {
  color: #595959;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: -230px;
  padding-top: 0px;
  z-index: 1004;
  background: rgba(52, 59, 64, 0.95);
  right: 0;
  width: 120px;
  text-align: center;
  transition: 0.4s;
  display: none;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;

}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}
@media (max-width: 768px) {
	#mobile-nav {
		display: block;
	}
	#mobile-nav ul{
		position: relative;
	}
	#mobile-nav ul::before{
	   content: "";
	   width: 0;
       height: 0;
       border-bottom: 16px solid #343b40;
       border-right: 10px solid transparent;
       border-left: 10px solid transparent;
	   position: absolute;
	   top:-16px;
	   right:25px;
	   opacity: 0.9;
	}
  #mobile-nav .line {
    display: none;
  }
  #mobile-nav ul li{
	 border-bottom: 1px solid #fff;
  }
  #mobile-nav .bottomline{
	 border-bottom: none;
  }

  /* Mobile: game dropdown styles inside #mobile-nav */
  #mobile-nav .menu-game {
    position: relative;
    z-index: 1005;
  }
  #mobile-nav .menu-game .nav-game-toggle {
    display: block;
    padding: 10px;
    color: #fff;
  }
  #mobile-nav .menu-game .game-dropdown {
    position: static;
    display: none;
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 8px 10px 12px;
    z-index: 1006;
  }
  #mobile-nav .menu-game.open .game-dropdown { display: block; }
  #mobile-nav .menu-game .game-dropdown .game-list { gap: 10px; }
  #mobile-nav .menu-game .game-dropdown .game-item {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 6px;
    color: #000;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
  }
  #mobile-nav .menu-game .game-dropdown .game-item:hover {
    background: #f5f5f5;
  }
  #mobile-nav .menu-game .game-dropdown .game-item.active {
    color: #FF5252;
    font-weight: bold;
   border-color: rgba(255,82,82,0.8);
  }
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #2dc997;
}

#mobile-nav ul .menu-item-active {
  color: #2dc997;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 995;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  top: 90px;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}



/*--------------------------------------------------------------
# aboutjoy Section
--------------------------------------------------------------*/
#aboutjoy {
  display: table;
  width: 100%;
  height: calc(96vh - 74px);
  background: url(../img/8_02.png) no-repeat center;
  background-size: cover;
  margin-top: 74px;
  position:relative;
}
.aboutmobbg{
	display: none;
}
#aboutjoy .hero-container {
  display: table-cell;
  margin: 0;
  text-align: center;
  vertical-align: middle;
}
.about-container{
	width: 682px;
	height: 511px;
	background: url(../img/2_06.png) no-repeat center top;
	margin: 0 auto;
}
.sign{
	width: 100%;
  padding-bottom: 70px;
}
.sign img{
	margin-top: -70px;
}
.aboutjoygames{
	color: #fff;
	font-size: 17px;
	line-height: 46px;
	padding: 20px 50px 0 50px;
	text-align: left;
}
.aboutjoygames i{
	font-size: 31px;
	font-style:normal;
	margin-right: 5px;
}
.aboutjoygames .linep {
	border-bottom: 1px solid #fff;
}
.aboutaddress{
	padding: 0px 60px;
}
.address{
	float: left;
	width: 58%;
}
.address p{
	text-align: left;
	color: #fff;
	font-size: 14px;
	line-height: 30px;
	margin: 0;
}
.address p a{
	color: #fff;
}
.aboutlogo{
	padding-top: 34px;
}
.about-container_mob{
		display: none;
}


.managebox{
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
	padding: 50px 10% 9vh;
	line-height: 30px;
}
.managebox h2{
	margin-bottom: 30px;
}
.managebox p{
	text-align: left;
}
.managebox ol,.managebox ul{
	text-align: left;
}
.managebox ul li{
	list-style: disc ;
}


.footer { position: fixed; bottom: 0; left: 0; width: 100%; height: 80px; background: #000; font-size: 0; display: flex; align-items: center; justify-content: center;  z-index: 100;}

.footer .logo { height: 50%; width: auto; margin-right: 5vw; }

.footer .privacy_con { display: flex; flex-direction: column; font-size: 16px; line-height: 24px; color: #fff; font-weight: bold; margin-right: 18px; }

.footer .privacy_con .top { display: flex; }
.footer .privacy_con .top a{color: #fff;}

.footer .privacy_con .top .shu { margin: 0 10px; }

.footer .tw_level { display: flex; align-items: center; }

.footer .tw_level .pic { height: 40px; width: auto; margin-right: 12px; }

.footer .tw_level .text_con { flex-direction: column; justify-content: space-between; }

.footer .tw_level .text_con .item { font-size: 10px; line-height: 18px; color: #fff; margin: 0;}



.footer_m { background: #000;width: 100vw; display: flex; flex-direction: column; align-items: center; overflow: hidden; }

.footer_m .logo { width: 80px; margin: 20px auto 10px;display: block; }

.footer_m .privacy_con { display: flex; justify-content: center; font-size: 12px; line-height: 14px; color: #fff; }
.footer_m .privacy_con a{color: #fff;}
.footer_m .privacy_con .shu { margin:0 8px; }

.footer_m .tw_level { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 10px 0; }

.footer_m .tw_level .pic { height: 40px; width: auto; margin-bottom: 10px; }

.footer_m .tw_level .text_con { flex-direction: column; justify-content: center; align-items: center;padding: 0 20px; }

.footer_m .tw_level .text_con .item { font-size: 11px; line-height: 12px; color: #fff; margin-bottom: 10px;}

.footer_m .copyright { font-size: 12px;  color: #fff; text-align: center; padding-bottom: 10px; }

.hidden_pc{
  display: none;
}

@media (max-width: 768px) {
  .hidden_m{
    display: none;
  }
  .hidden_pc{
    display: block;
  }
	#aboutjoy {
	  display: table;
	  width: 100%;
	  height: auto;
      background: url(../img/66_02.png) no-repeat center center;
      background-size: cover;
	  margin-top: 63px;
	  position:relative;
	}
	.about-container{
		display: none;
	}
	.aboutmobbg{
		display: block;
		width: 100%;
		height: auto;
	}
	.aboutmobbg img{
		width: 100%;
		height: auto;
	}
	.about-container_mob{
		display: block;
		position: absolute;
		top: 0;
	}
	.about-container_mob .sign img{
		margin-top: 6vh;
		width: 80%;
		height: auto;
	}
	.about-container_mob .aboutjoygames{
		width: 90%;
		margin: 4vh auto;
		background: url(../img/SP_07.png) no-repeat center top;
		background-size: 100% 100%;
		padding: 6vw 3vw 3vw 2vw;
	}
	.about-container_mob .aboutjoygames p{
		line-height:9vw;
		font-size: 3vw;
	}
	.about-container_mob .aboutjoygames p i{
		font-size: 5vw;
	}
	.about-container_mob .aboutaddress{
		width: 100%;
		margin: 10px auto;
		padding: 0 20vw;
		text-align: center;
		bottom: 20px;
	}
	.about-container_mob .address{
		width: 100%;
		float: none;
		text-align: center;
	}
	.about-container_mob .address p{
		font-size: 2.6vw;
		line-height: 5vw;
	}
	.about-container_mob .aboutlogo{
		padding-top:15vw;
	}
	.about-container_mob .aboutlogo img{
		width: 26%;
		height: auto;
	}
	.aboutlines{
		border-bottom: 1px solid #fff;
		width: 88%;
		margin: 3vw auto;
	}
	.managebox {
      background: rgba(0, 0, 0, 0.3);
      color: #fff;
      padding: 30px 4%;
      line-height: 30px;
   }

}





