:root {
    --main-color: #FF491D;
	--text-color:#494949;
	--text-color-hover:#FF491D;
	--main-background:#ffffff;
	--main-border-color:#eaecee;
	--main-border-radius:3px;
	--box-shadow-normal: 0 10px 10px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 4px 60px 0 rgba(0, 0, 0, 0.2);
	--button-shadow-color-normal: hsla(0, 0%, 42.4%, 0.2);
	--button-shadow-color-hover: hsla(0, 0%, 42.4%, 0.3);
}
::-webkit-scrollbar {
    width: 5px;
    height: 10px;
    background-color: var(--main-background);
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,.1);
    background-color: rgba(0,0,0,.2)
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,.2)
}
body, html {
  font-family: arial;
  font-size: 13px;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: var(--main-background);
  color: #000;
  outline: 0
}
a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all .4s ease 0s;
  -moz-transition: all .4s ease 0s;
  -o-transition: all .4s ease 0s;
  transition: all .4s ease 0s
}
a:hover {
  color: var(--main-color);
  text-decoration: none
}
li, ul {
  list-style: none;
  padding: 0;
  margin: 0
}
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  opacity: .8
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001
}
#loader:after, #loader:before {
  position: absolute;
  content: "";
  border: 3px solid transparent
}
#loader:before {
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border-top-color: #e74c3c;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite
}
#loader:after {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border-top-color: #f9c922;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #fff;
  z-index: 1000
}
#loader-wrapper .loader-section.section-left {
  left: 0
}
#loader-wrapper .loader-section.section-right {
  right: 0
}
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all .35s .15s cubic-bezier(.645, .045, .355, 1);
  transition: all .35s .15s cubic-bezier(.645, .045, .355, 1)
}
.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all .35s .15s cubic-bezier(.645, .045, .355, 1);
  transition: all .35s .15s cubic-bezier(.645, .045, .355, 1)
}
.loaded #loader {
  opacity: 0;
  -webkit-transition: all .15s ease-out;
  transition: all .15s ease-out
}
.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all .15s .5s ease-out;
  transition: all .15s .5s ease-out
}
.layout-bound {
  transition: .5s ease
}
.layout-content{padding: 60px 0 30px;}
.layout-main{border-radius: 10px;}
.banner-home, .game-detail .detail-top, .game-detail-bound, .menu-list ul li, .newshome-list ul li:first-child, .search-wrapper, .statistic-list .tiny {
  position: relative
}
.banner-home, .banner-home a, .box-search, .frame-content, .gamesuggest-left a, .gamesuggest-list, .menu-list a {
  overflow: hidden
}
.populargames{
	display: flex;
	justify-content: center;
	background: #f4f4f5;
	padding: 15px;
	border-radius: 8px;
}
.statistic-list ul{
	display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.statistic-list ul li{width: 21%;}
.statistic-list ul li img{border-radius: 10px;}
.gift-item-1 .info h4 a, .gift-item-1 .info span {
  white-space: pre-wrap;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis
}
.game-item .right .tag, .mt-10 {
  margin-top: 10px
}
.mt-15{
  margin-top: 15px
}
.mt-20 {
  margin-top: 20px
}
.mt-30 {
  margin-top: 30px
}
.mt-50 {
  margin-top: 50px
}
.mb-10,.platform-btn:not(:last-child){
  margin-bottom: 10px
}
.footer-act, .mb-15{
  margin-bottom: 15px
}
.mb-20 {
  margin-bottom: 20px
}
.mb-30 {
  margin-bottom: 30px
}
.mb-50 {
  margin-bottom: 50px
}
.header-bound {
	box-shadow: 0 0 2px #ccc;
}
.banner-home, .frame-bound, .menu-bound {
  background-color: #fff
}
.header-bound .navbar li a {
	font-size: 13px;
	color: var(--text-color);
	padding: 8px 16px;
	border-radius: 8px;
	display: flex;
	align-items: center;
}
.header-bound .navbar li:hover a{
	color: var(--main-color);
    background-color: #faf4f4;
}
.searchhome{
	background-image: url('/skins/images/blogs-bg.png');
	background-position: center bottom;
	background-repeat:  no-repeat;
	background-size: contain;
	padding: 0 0 60px;
}
.search-wrapper{
	position: relative;
    display: flex;
    align-items: center;
    background-color: #FFF;
    border: 0;
    border-radius: 16px;
    padding: 6px 8px;
	margin: 0px 0px 16px 0px;
    box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.1);
}
.search-wrapper .searchico{
	display: flex;
	color: var(--main-color);
}
.search-wrapper .searchinput{
	color: var(--text-color);
	font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    height: auto;
    width: 100%;
    padding: 12px 24px;
    margin: 0;
    background: #fff;
	box-shadow: none !important;
	outline: none !important;
	border: 0;
    border-radius: 0;
}
.search-wrapper .searchinput::placeholder {
  font-style: italic; 
}
.search-wrapper .searchbtn{
    text-decoration: none;
    border: 0;
    border-radius: 8px;
    padding: 13px ;
    cursor: pointer;
    position: relative;
    z-index: 0;
    outline: none;
    background-color: var(--main-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.15s;
    line-height: inherit;
}
.search-most{
	display: flex;
	justify-content: center
}
.search-most ul {
    display: flex;
    align-items: center;
	justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
	color:var(--text-color);
}
.search-most ul li{
	border-radius: 5px;
	overflow: hidden;
}
.search-most ul li a{
	position: relative;
	text-transform: uppercase;
	font-weight: 600;
    font-size: .875rem;
	display: block;
    padding: 8px 12px;
    line-height: 1;
	background: rgba(255,73,29,0.05);
    color:var(--main-color);
}
.search-most ul li a:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background:var(--main-color);
}
.frame-bound {
  padding: 12.5px;
  border-radius: 5px
}
.frame-bound.frame-botop {
  border-top: 5px solid #44b3f8;
	box-shadow: 0 1px 3px #e5e5e5;
}
.frame-title {
	width: 100%;
	overflow: hidden;
	height: 40px;
	position: relative;
	margin-bottom: 15px;
}
.frame-title::before {
    content: '';
    width: 100%;
    height: 3px;
    background: #F1F1F1;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
}
.frame-title span {
  float: left;
	display: block;
  font-size: 17px;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  position: relative
}
.frame-title::after {
    content: '';
    width: 100%;
    height: 3px;
    background: url('/skins/images/common_title_bottom.png') no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
}
.game-item .right h3 a, .game-items p, .gift-item-1 .info h4 a, .rank-name2 {
  text-transform: capitalize
}
.frame-title.is-border {
  height: 42.5px
}
.frame-title.is-border::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 12.5px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #f4f4f4
}
.frame-title .more {
  float: right;
  margin-top: 1px;
  position: relative;
  padding-right: 17.5px;
  cursor: pointer
}
.frame-title .more::before {
  position: absolute;
  top: 3px;
  right: 0;
  color: #FF491D;
  content: '\f196';
  font: 14px/1 FontAwesome
}
.gamesuggest{line-height: 25px;}
.gamesuggest-left h5 {
	margin-bottom: 5px;
	position: relative;
	float: left;
	width: 100%;
	height: 26px;
	line-height: 26px;
	text-align: center;
	font-size: 12px;
	color: #fff;
	font-weight: 400;
	text-overflow: ellipsis;
	white-space: nowrap;
	background: #44b3f8;
}
.gamesuggest-left h5 i{
	position: absolute;
    right: -3px;
    top: 9px;
    width: 0;
    height: 0;
    line-height: 0;
    border-width: 4px 0 4px 4px;
    border-style: dashed dashed dashed solid;
    border-right-color: transparent;
    border-top-color: transparent;
    border-bottom-color: transparent;
	border-left-color: #44b3f8;
}
.gamesuggest-left.red h5{
	background: #f36161;
}
.gamesuggest-left.red h5 i{
	border-left-color: #f36161;
}
.find-list li,
.games-list-tiny li{
	display: inline-block;
}
.find-list li a,
.games-list-tiny li a{
	display: block;
	padding: 0 10px;
}
.find-list li:not(:last-child) a,
.games-list-tiny li:not(:last-child) a{background: url('/skins/images/rm_line.gif') no-repeat right 6px;}
.games-list-tiny li img{
	display: inline-block;
    width: 24px;
    height: 24px;
    margin: -3px 6px 0 0;
}
.game-items p, .game-tiny:hover .action, .gamesuggest-list-bound .gamesuggest-list.active, .social-fix .social-item:hover .info, .sortby, .statistic-list .hover .full, .statistic-list .tiny {
  display: block
}
.gift-item-1 .info h4 a, .gift-item-1 .info span, .rank-name {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical
}
.game-items {
  overflow: hidden;
  text-align: center
}
.game-items img {
  display: block;
  width: 65px;
  height: 65px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto
}
.game-items p {
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 2.5px;
  padding-right: 2.5px
}
.choose-list dl dd a, .hotlink a, .newshome-nav div {
  display: inline-block
}
.gamelist-1 ul li {
  float: left;
  width: 8.333%;
  text-align: center
}
.gamelist-2 .image img{
	width: 80px;
	height: 80px;
	border-radius: 10px;
}
.gamelist-2 .game-item .right{margin-left: 90px}
.gamelist-2 h3{}
.gamelist-2 h3 a{
	font-size: 13px !important;
}
.gamelist-2 .game-item .right .tag{
	margin-top: 3px;
	font-size: 12px;
	color: #999;
	max-width: 90%;
}
.gamelist-2 .btn-download{
	display: inline-block;
    width: 60px;
    height: 25px;
    line-height: 25px;
	margin-top: 5px;
    text-align: center;
    color: #666;
    font-size: 12px;
    border: 1px solid #ddd;
	border-radius: 3px;
}
.gamelist-2 .game-item:hover .btn-download{
	background: #FF491D;
	border: 1px solid #FF491D;
	color: #fff;
}
.newshome-list ul li a, .sortby > a {
  font-size: 14px
}
.detail-block:last-child {
  border-bottom: none
}
.game-tiny .action, .newshome-slide > div {
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s
}
.gift-item-1:hover .info > a {
  color: #fff !important;
  background: #4190ff;
  border: 1px solid #4190ff
}
.hotlink a, .rank-ico, .sortby > a {
  margin-right: 10px
}
.newshome-list ul li {
  overflow: hidden;
  margin-bottom: 8px;
  position: relative;
  padding: 3px 0 3px 15px;
	background-color: #f9f9f9
}
.newshome-list ul li::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #f36161
}
.game-item .right .brief {
  white-space: pre-wrap;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis
}
.game-tiny {
  margin-bottom: 15px
}
.footer-act a, .footer-bound {
  color: #63696e;
  position: relative
}
.games-list {
  margin-top: 15px;
  overflow: hidden
}
.footer-bound {
 background: #fff;
  display: block;
}
.text-footter {
  text-align: center
}
.footer-act a {
  display: inline-block;
  padding: 0 15px
}
.footer-act a:not(:first-child)::after {
  content: '';
  width: 1px;
  height: 50%;
  background: #63696e;
  position: absolute;
  top: 25%;
  left: 0
}
.footer-act a:hover {
  color: #fff
}
.game-detail .detail-top .info .meta span span, .platform-btn > a {
  margin-right: 5px
}
.game-item .left {
  float: left;
  text-align: center
}
.game-item .left .image {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  float: left
}
.game-item .left .item-download {
	display: inline-block;
	border: 1px solid #ddd;
	margin-left: auto;
	margin-right: auto;
	color: #666;
	padding: 5px 17.5px;
	margin-top: 10px;
	font-size: 12px;
}
.game-item:hover .left .item-download {
  background: #f36161;
    border: 1px solid #f36161;
    color: #fff;
}
.game-item .right {
  margin-left: 105px
}
.game-item .righth3, .related-item .title h3 {
  margin: 0
}
.game-item .right h3 a {
  display: block;
  font-size: 16px;
  color: #666;
  overflow: hidden;
  font-weight: 700;
	white-space: pre-wrap;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.game-item .right .brief {
  font-size: 12px;
  color: #f41141;
  display: -webkit-box;
  overflow: hidden;
  margin-top: 5px
}
.game-item .right .time {
  font-style: italic;
  color: #a0a0a0;
  font-size: 11px
}
.game-item .right .tag span {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 3px;
  border: 1px solid #f6f6f6;
	background: #f6f6f6;
  color: #646464;
  padding: 1px 3px;
  font-size: 10px;
}
.games-list-bound .paging {
  margin: 20px 0
}
.paging .pagination{
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
}
.paging .page-item .page-link {
	font-weight: 600;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 12px;
	transition: 0.15s;
	border: 1px solid #e4e4e7;
	color: #000000;
}
.paging .page-item:hover .page-link{
	background: var(--main-color);
	border: 1px solid var(--main-color);
	color: #fff;
}
.paging .page-item.disabled .page-link {
	background: #e4e4e7;
	border: 1px solid #e4e4e7;
	color: #adadad
}
.game-detail .detail-top .image {
  position: relative;
  float: left;
  width: 160px;
  height: 160px;
  border-radius: 10px;
  overflow: hidden
}
.game-detail .detail-top .info {
  float: right;
  width: calc(100% - 175px)
}
.game-detail .detail-top .info h1 {
  margin: 0 0 5px;
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 400;
  color: #333;
  position: relative;
  overflow: hidden
}
.game-detail-bound .other-name{
	color: #888;
    font-size: 12px;
    margin-bottom: 1px;
}
.game-detail-bound .info .meta {
  line-height: 16px;
  color: #8b8b8b;
  font-size: 12px;
  margin-top: 10px
}
.game-detail-bound .info .meta > span {
  display: inline-block;
  margin-right: 15px
}
.game-detail-bound .info .meta.tag > span{
	display: inline-block;
  margin-right: 5px;
  margin-bottom: 3px;
  border: 1px solid #f6f6f6;
	background: #f6f6f6;
  color: #646464;
  padding: 1px 3px;
  font-size: 10px;
	border-radius: 3px;
}
.game-detail .detail-top .info .go-mobile {
  position: absolute;
  top: 0;
  right: 0
}
.layout-main .sticky-top {
  top: 40px;
  z-index: 1019
}
.game-detail .detail-main p {
  margin: 0;
  line-height: 30px
}
.game-detail iframe, .game-detail img, .game-detail video, .modal-body .alert img, .news-detail .description img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
	overflow: hidden;
}
.platform-btn > a {
  display: inline-block;
  border-radius: 3px;
  padding: 5px 8px 3px;
	margin-bottom: 3px;
  color: #fff !important;
  position: relative;
  cursor: pointer
}
.platform-btn > a > i {
  margin-right: 5px;
  font-size: 16px
}
.platform-btn .android {
  background: #6bb137
}
.platform-btn .android.chplay {
  background: #01875f
}
.platform-btn .ios {
  background: #ff9b24
}
.platform-btn .pc {
  background: #7634f7
}
.platform-btn .gift {
  background: #ff491d
}
.platform-btn .facebook {
  background: #1877f2
}
.platform-btn .siteinfo{
	background: #226699
}
.game-detail .game-image img {
  padding: 0 2px;
	border-radius: 5px;
}
.game-detail .show-detail{
	display: inline-block;
	cursor: pointer;
	border: 1px solid #f6f6f6;
	background: #f6f6f6;
	color: #666;
	border-radius: 3px;
	padding: 1px 5px;
}
.detail-block {display: none}
.detail-block.show {
	display: block;
	background-color: #f6f6f6;
	padding: 10px;
	border-radius: 10px;
}
.detail-block#detail-game{padding-right: 5px;background-color: #f4f4f5;}
.detail-block#detail-game .block-content{max-height: 500px;overflow-y: auto;padding-right: 10px;}
.detail-block .block-content {
  color: #7f7f7f;
  font-size: 14px;
  line-height: 24px;
  text-align: justify
}
.detail-block .block-content h2{
	font-size: 18px;
	margin-bottom: 15px;
}
.detail-block .block-content .grid-image{
	width: 20%;
	display: inline-block;
}
fieldset {
  border: 1px solid #dee2e6;
  padding: 15px
}
fieldset legend {
  width: auto
}
.input-group-prepend {
  background-color: #dcdcdc
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  border-left: 5px solid #eee
}
.game-tiny, .related-item {
  position: relative
}
.back-to-top{
  font-size: 20px;
  text-align: center
}
.news-sidebar ul li {
  margin: 7.5px auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 25px
}
.news-sidebar ul li span {
  display: block;
  float: left;
  margin-right: 7.5px;
  background-color: #f6f6f6;
  color: #646464;
  width: 25px;
  text-align: center;
  border-radius: 5px
}
.news-sidebar ul li:first-child span, .news-sidebar ul li:nth-child(2) span, .news-sidebar ul li:nth-child(3) span {
  background-color: #ff9b24;
  color: #fff
}
.news-item {
	padding: 15px;
	margin-bottom: 15px;
	line-height: 24px;
	border-radius: 5px;
	position: relative;
	overflow: hidden
}
.game-detail .news-item{background-color: #f4f4f5;}
.news-item .thumb a{display: block}
.news-item .thumb .is_hot{
	position: absolute;
	top: -20px;
	right: -20px;
}
.news-item h3 a {
  display: block;
  color: #494949;
  font-size: 14px;
  font-weight: 700;
	line-height: 20px;
  overflow: hidden;
}
.news-item:hover h3 a{
	color: var(--main-color);
}

.news-item .info{padding: 5px;min-height: 68px;overflow: hidden}
.news-item .info h3{min-height: 40px;}

.news-item .brief {
  display: block;
  color: #666;
  font-size: 12px;
  margin-top: 5px;
  line-height: 20px;
  height: 40px;
  overflow: hidden
}
.news-item .view-more {
  display: block;
  float: right;
  color: #FF491D;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px
}
.news-item.cdk-item h3 a{
	font-size: 16px;
}
.news-item.cdk-item .info{
	padding: 15px;
	background: rgba(0,0,0,0.03);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.view-all {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  color: #ff6600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.view-all:hover {
  background-color: #ff6600;
  color: #fff;
  border-color: #ff6600;
}

.news-detail {
  color: #646464;
  line-height: 24px;
  overflow: hidden
}
.news-detail h1 {
	color: #000000;
	font-weight: 700;
	margin: 0 0 30px;
	font-size: 3rem;
	line-height: 1.2;
	word-break: break-word;
}
.news-detail h2, .news-detail h3, .news-detail h4, .news-detail h5, .news-detail h6 {
  color: #494949;
  font-size: 20px;
	font-weight: bold;
	margin: 15px 0;
}
.news-detail .description {
  font-size: 14px;
  line-height: 30px
}
.news-detail .description ul {
  margin: 0 15px
}
.giftcode-list{
	padding: 0 15px 15px;
}
.giftcode-list .table-responsive{
	background: #f9f6f3;
}
.giftcode-list table{margin-bottom: 0}
.giftcode-list td{position: relative;}
.giftcode-list .copycdk{
	display: inline-block;
	width: 18px;
	height: 18px;
	background:url('/skins/images/copy.png') center center no-repeat;
	background-size: contain;
	cursor: pointer;
	margin-left: 5px;
}
.giftcode-list .copied{
	color: var(--main-color);
}
#action_success, .game-tiny .action {
  position: absolute;
  left: 0;
  display: none
}
.breadcrumb-bound{
	width: 100%;
	padding: 68px 0;
	background-color: #f4f4f5;
	background-image: url('/skins/images/blogs-bg.png');
	background-position: center bottom;
	background-repeat:  no-repeat;
	background-size: contain;
	text-align: center;
	font-size: 24px;
	text-transform: uppercase;
}
.breadcrumb-bound a{
	display: block
}
.gamenewhome{
	background: #f4f4f5;
	padding: 15px 0;
}
.related-item{
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 5px;
	margin-bottom: 15px;
}
.related-item .info {
  position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0,0,0,.7);
	padding: 5px;
}
.related-item .info a{
	color: #fff;
	font-size: 12px;
	font-weight: bold;
}
.game-tiny{
	border-radius: 5px;
	background: #f4f4f5;
	overflow: hidden
}
.game-tiny .info{
	position: relative;
	padding: 5px;
}
.game-tiny .info .meta{
	position: relative;
	margin-top: -25px;
	overflow: hidden;
}
.game-tiny .info .meta .icon{float: left;margin-right: 5px}
.game-tiny .info img{
	width: 68px;
    height: 68px;
    border-radius: 10px;
    border: 3px solid #f4f4f5;
}
.game-tiny .platform-btn{margin-top: 30px;}
.game-tiny .platform-btn > a{
	padding: 2px 5px 0;
	font-size: 12px;
	margin-right: 5px
}
.game-tiny .platform-btn > a >i{font-size: 12px;margin-right: 3px}
.game-tiny .info h2{
	margin-top: 10px;
	font-size: 16px;
	font-weight: bold;
}
.game-tiny .info .other-name{
	color: #888;
    font-size: 12px;
}
input.copy {
  font-size: 16px;
  background: 0 0;
  border: none;
  display: inline-block;
  font-weight: 700;
  outline: 0
}
#action_success {
  z-index: 999;
  top: -1px;
  padding: 3px 5px;
  background: #000;
  color: #fff;
  -webkit-transition: .4s;
  -o-transition: .4s;
  -moz-transition: .4s;
  transition: .4s
}
#translate_select {
  max-height: 30px;
  overflow: hidden
}
.back-to-top {
  width: 68px;
  height: 68px;
  position: fixed;
  bottom: 10px;
  right: -90px;
  border-radius: 8px;
  background-color: #a2a5b2;
  color: #fff;
  line-height: 68px;
  transition: .3s ease-out .2s;
  cursor: pointer;
	font-size: 38px;
	z-index: 9999;
}
.back-to-top:hover {
  background: var(--main-color)
}
.newslist-2{
	overflow-y: auto;
}
.newslist-2 ul{
	margin-bottom: 15px;
}
.newslist-2 ul li{
	padding:2px 10px 2px 0;
	overflow: hidden;
    margin-bottom: 8px;
}
.newslist-2 ul li a{
	display: block;
	padding: 3px 0 3px 10px;
	border-left: 2px solid #d8d8d8;
	background-color: #f9f9f9;
}
.tab-pane{
	padding-top: 15px;
}
.zindex11{position: relative;z-index: 2}
.modal-open{overflow: inherit;padding-right: 0 !important}
.modal-open .zindex11{position: static}
.custom-money{
	position: absolute;
	top: 88px;
	left: 50%;
    width: 100%;
    height: auto;
    overflow: hidden;
	transform: translateX(-50%)
}
.news-detail .giftcodelist>div{
	background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, #f9f9f9), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, #f9f9f9), color-stop(.75, #f9f9f9), color-stop(.75, transparent), to(transparent));
    background-image: -moz-linear-gradient(45deg, #f9f9f9 25%, transparent 25%, transparent 50%, #f9f9f9 50%, #f9f9f9 75%, transparent 75%, transparent);
    background-size: 5px 5px;
}
.news-detail .giftcodelist>div.col-6{
	min-height: 48px;
	line-height: 48px;
	border: 1px solid #eee;
	border-left: 1px solid transparent;
    border-top: 1px solid transparent;
	margin-bottom: -1px;
	margin-left: -1px;
	margin-right: -1px;
}
.news-detail .giftcodelist>div.copied{color: #f00;}
.news-detail .giftcodelist input.copy{
	width: 100% !important;
}
.qrcode {
    width: 160px;
    height: 160px;
    border-radius: 8px;
    border: 1px solid #faeae3;
    padding-top: 13px;
    position: relative;
	float: right;
}
.qrcode .qr_code {
    width: 110px;
    height: 110px;
    background: #eee;
    margin: auto;
    margin-bottom: 5px;
}
.qrcode .light-line {
    position: absolute;
    width: 148px;
    height: 16px;
    left: 8px;
    top: 0;
    -webkit-animation: scan 3s infinite linear;
    animation: scan 3s infinite linear;
    background-image: url(../images/light-line.png);
    background-repeat: no-repeat;
}
@-webkit-keyframes scan {
    0% {
        top: 0
    }

    100% {
        top: 110px
    }
}

@keyframes scan {
    0% {
        top: 0
    }

    100% {
        top: 110px
    }
}
.qrcode span {
    color: #333;
    font-size: 12px;
    display: block;
    text-align: center;
}
