@charset "utf-8";

/*layout*/
.wrap{
    width: 1200px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.wrap{
	    width: 980px;
	}
}
.inner-page{
    padding-top: 100px;
    width: 100%;
    overflow: hidden;
}

/*header*/
header{
    width: 100%;
    height: 100px;
    padding: 15px 0;
    background: #ffffff;
    border-bottom: 1px solid #e7e7e7;
    overflow: hidden;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
}
header .logo{
    float: left;
	margin-top:8px;
}
header .font{
    float: left;
	margin-top:28px;
	color: #e14c4c;
	font-size:20px;
	

}
header .nav{
    float: right;
    font-size: 18px;
    /*line-height: 24px;*/
    /*margin: 46px 0 0 120px;*/
    color: #333333;
    font-weight: normal;
}
header .nav li{
    float: left;
    line-height: 70px;
    margin: 0 18px;
}
header .nav li a{
    display: block;
    color: #666666;
    text-align: center;
}
header .nav li a:hover,
header .nav li a.active a{
    color: #c83c3c;
}

/*footer*/
footer .section-grey{
    padding: 0;
}
footer .QR-code-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 0;
}
footer .QR-code-list li{
    display: flex;
    justify-content: space-between;
    /*flex-wrap: wrap;*/
    width: 388px;
    height: 156px;
    background: #ffffff;
    padding: 24px 30px;
    margin: 0 6px;
    font-size: 12px;
    line-height: 20px;
}
footer .QR-code-list li .info{
    width: 200px;
}
footer .QR-code-list li .info h4{
    font-weight: bold;
    font-size: 12px;
}
footer .QR-code-list li .text{
    line-height: 20px;
    margin: 15px 0;
}
footer .QR-code-list li .note{
    font-size: 12px;
    line-height: 14px;
    color: #999999;
}
footer .section-dark{
    padding: 14px 0;
    background: #2a2a2a;
}
footer .section-dark .footer-info{
    display: flex;
    justify-content: space-between;
}
footer .section-dark .footer-info .logo{
    margin-right: 30px;
}
footer .section-dark .footer-info .copy-right{
    font-size: 12px;
    color: #adadad;
    line-height: 150%;
    margin-right: 15px;
}
footer .section-dark .footer-info .copy-right a{color:#adadad}
footer .section-dark .footer-info .copy-right .uppercase{
    text-transform: uppercase;
}

footer .section-dark .footer-info .about-us{
    font-size: 12px;
    color: #adadad;
    line-height: 150%;
}
footer .section-dark .footer-info .about-us b{
    font-weight: bold;
}
footer .section-dark .footer-info .about-us .share-box{
    width: 100%;
    height: 28px;
    margin-top: 5px;
}
footer .section-dark .footer-info .about-us .share-box .icon{
    width: 28px;
    height: 28px;
    margin-right: 5px;
    float: left;
    transition: all 0.3s;
    position: relative;
}
footer .section-dark .footer-info .about-us .share-box .icon-qq{
    background: url(../images/qq.png) no-repeat;
}
footer .section-dark .footer-info .about-us .share-box .icon-wechat{
    background: url(../images/wechat_f.png) no-repeat;
}
footer .section-dark .footer-info .about-us .share-box .icon-weibo{
    background: url(../images/weibo_mw.png) no-repeat;
}
footer .section-dark .footer-info .about-us .share-box .icon-taobao{
    background: url(../images/taobaoyin.png) no-repeat;
}
footer .section-dark .footer-info .about-us .share-box .icon-facebook{
    background: url(../images/facebook.png) no-repeat;
}
footer .section-dark .footer-info .about-us .share-box .icon-qq:hover{
    background: url(../images/qq_white.png) no-repeat;
}
footer .section-dark .footer-info .about-us .share-box .icon-wechat:hover{
    background: url(../images/wechat_f_white.png)no-repeat;
}
footer .section-dark .footer-info .about-us .share-box .icon-weibo:hover{
    background: url(../images/weibo_mw_white.png) no-repeat;
}
footer .section-dark .footer-info .about-us .share-box .icon-taobao:hover{
    background: url(../images/taobaoyin_white.png) no-repeat;
}
footer .section-dark .footer-info .about-us .share-box .icon-facebook:hover{
    background: url(../images/facebook_white.png) no-repeat;
}
footer .section-dark .footer-info .about-us .share-box .icon .QR-box{
    width:140px;
    height: 145px;
    background: #ffffff;
    position: absolute;
    left: -56px;
    top: 0;
    z-index: 100;
    display: none;
    transition: all 0.3s;
}
footer .section-dark .footer-info .about-us .share-box .icon-weibo .QR-box{
    z-index: 101;
}
footer .section-dark .footer-info .about-us .share-box .icon:hover .QR-box{
    display: block;
    top: -145px;
}

/*pagination*/
.pagination{
    width: 100%;
    height: 26px;
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.pagination a{
    font-size: 12px;
    line-height: 26px;
    padding: 0 9px;
    font-family: Arial;
    margin: 0 3px;
}
.pagination a.prev,
.pagination a.next,
.pagination a.first,
.pagination a.last{
    background: #f5f5f5;
    color: #666666;
}
.pagination a:hover,
.pagination a.active{
    background: #000000;
    color: #ffffff;
}

/*share box*/
.share-box{
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    color: #333333;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
}
.share-box .icon-share{
    width: 32px;
    height: 32px;
    display: block;
    cursor: pointer;
    transition: all 0.4s ease;
    margin: 0 3px;
}
.share-box .icon-share.share-wechat{
    margin-left: 10px;
    background: url(../images/share_wechat.png) no-repeat;
}
.share-box .icon-share.share-weibo{
    background: url(../images/share_weibo.png) no-repeat;
}
.share-box .icon-share.share-fb{
    background: url(../images/share_fb.png)  no-repeat;
}
.share-box .icon-share.share-wechat:hover{
    background-image: url(../images/share_wechat_hover.png);
}
.share-box .icon-share.share-weibo:hover{
    background-image: url(../images/share_weibo_hover.png);
}
.share-box .icon-share.share-fb:hover{
    background-image: url(../images/share_fb_hover.png);
}
.section-title {
  background: url() no-repeat 53% center;
  background-size: 160%;
  margin-bottom: 0;
  width: 100%;
  height: 4.5rem;
  font-size: 0px;
  color: transparent;
}
.desk {
  display: none;
}
.game-card {
  background-color: white;
  box-shadow: 0 -2px 14.5px 3.5px rgba(104, 104, 104, 0.1);
  transition: box-shadow 0.5s ease;
}
.game-card .game-img-wrapper {
  position: relative;
  overflow: hidden;
}
.game-card .game-img-wrapper .game-img {
  width: 100%;
  max-height: 230px;
}
.game-card .game-img-wrapper .game-img-cover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: rgba(15, 100, 206, 0.85);
}
.game-card .game-img-wrapper .game-img-cover .game-qrcode {
  box-sizing: content-box;
  border-radius: 0.2rem;
  padding-left: 13%;
  padding-right: 1.2rem;
  width: 25%;
  border: 1px solid gray;
}
.game-card .game-img-wrapper .game-img-cover .game-feature-name {
  font-size: 1.2rem;
  color: white;
}
.game-card .game-img-wrapper .game-img-cover .game-download {
  color: white;
}
.game-card .game-img-wrapper:hover .game-img-cover {
  transform: translateY(0%);
}
.game-card .game-desc {
  padding: 1rem;
  overflow: hidden;
}
.game-card .game-desc .game-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: #333333;
}
.game-card .game-desc .game-slogan {
  height: 2.8rem;
  font-size: 14px;
  line-height: 1.4rem;
  margin-bottom: 0.5rem;
  color: #999999;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.game-card .game-desc .game-hr {
  margin: 0.5rem 0;
}
.game-card .game-desc .game-to-site {
  font-size: 14px;
  float: right;
  color: #999999;
}
.game-card .game-desc .game-to-site-valid:hover {
  color: #0f64ce;
}
.game-card .game-desc .game-to-site-invalid:hover {
  color: #999999;
}
.game-card:hover {
  box-shadow: 0 -2px 14.5px 3.5px rgba(0, 0, 0, 0.25);
}