@charset "utf-8";
blockquote,
body,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
ol,
p,
pre,
td,
textarea,
th{margin: 0; padding: 0}
table{border-collapse: collapse; border-spacing: 0}
fieldset,
img{border: 0; outline: none; max-height: 100%; max-width: 100%}
address,
caption,
cite,
code,
dfn,
em,
th,
var{font-style: normal; font-weight: normal}
ol,
ul{list-style: none; margin: 0; padding: 0}
caption,
th{text-align: left}
h1,
h2,
h3,
h4,
h5,
h6{font-size: 100%; font-weight: normal}
q:after,
q:before{content: ''}
abbr,
acronym{border: 0}
body{font: 14px/1.5 '微软雅黑'}
input:focus,
select:focus{border: none; outline: none}
a{background: none; border: none; outline: none}
a:link{text-decoration: none;}
a:visited{text-decoration: none; outline: none}
a:hover{text-decoration: none}
a:active{text-decoration: none; outline: none}

.tl{text-align: left}
.tc{text-align: center}
.tr{text-align: right}
.fb{font-weight: bold}
.fn{font-weight: normal}
.tu{text-decoration: underline!important;}
.tn{text-decoration: none}
.t2{text-indent: 2em}
.te{white-space: nowrap; text-overflow: ellipsis; overflow: hidden}
.fl{float: left}
.fr{float: right}
.cl{clear: left}
.cr{clear: right}
.cb{clear: both}
.clearfix:after{content: '';display: block;clear: both;}
.pr{position: relative}
.pa{position: absolute}
.pf{position: fixed}
.vm{vertical-align: middle}
.bc{margin-left: auto; margin-right: auto}
.dib{display: inline-block}
.db{display: block!important;}
.dn{display: none!important;}
.vv{visibility: visible}
.vh{visibility: hidden}
.zoom{zoom: 1}
.w{width: 100%}
.wa{width: auto}
.h{height: 100%}
.ha{height: auto}

/* common css */
.container{
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.flex{
  display: flex;
  align-items: center;
}
.flex-between{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
}
.blue{
  color: #13C5CD;
}
.line1only{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* top */
.top-banner{
  width: 100%;
  height: 44px;
  color: #fff;
  background: #474A4F;
  font-size: 14px;
}
.top-banner .btn-small{
  width: 90px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 30px;
  background: #13C5CD;
  cursor: pointer;
  position: relative;
  .btn-pop{
    display: none;
    padding: 18px;
    background: #fff;
    position: absolute;
    top: 50px;
    left: 0%;
    transform: .3s;
    z-index: 10;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    &::before{
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: 10px solid;
      border-color: transparent transparent #fff transparent;
      position: absolute;
      top: -19px;
      left: 35px;
    }
    .pop-code{
      width: 178px;
      height: 178px;
    }
    .pop-desc{
      color: #333;
      font-size: 14px;
      line-height: 1;
      white-space: nowrap;
    }
  }
  &:hover{
    .btn-pop{
      display: block;
    }
  }
}
/* header */
.header{
  width: 100%;
  height: 80px;
  background: #1D2127;
}
.header .logo{
  width: 168px;
  height: 56px;
  cursor: pointer;
}
.header .logo .pic{
  width: 100%;
  height: 100%;
}
.header .nav-list{
  display: flex;
  align-items: center;
}
.header .nav-list .nav-item{
  color: #fff;
  font-size: 18px;
  margin: 0 27px;
  padding: 5px 0;
  cursor: pointer;
}
.header .nav-list .nav-item.active{
  position: relative;
}
.header .nav-list .nav-item.active::before{
  content: '';
  display: block;
  width: 30px;
  height: 4px;
  background: #13C5CD;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.header .search-section input{
  width: 252px;
  height: 44px;
  line-height: 42px;
  border: 1px solid #fff;
  border-radius: 44px;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 14px;
  background: none;
  color: #fff;
}
.header .search-section .search-btn{
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  margin-left: 16px;
}
.header.white{
  background: #fff;
}
.header.white .nav-list .nav-item{
  color: #333333;
}
.header.white .nav-list .nav-item.active{
  font-weight: 600;
}
.header.white .search-section input{
  background: #F6F6F6;
  color: #000;
}
.header.white .search-section .search-btn{
  color: #1D2127;
}

/* footer */
.footer{
  width: 100%;
  background: #474A4F;
  padding: 30px 0;
}
.footer-info{
  display: flex;
  padding: 0 60px;
}
.footer-left{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-left .code{
  width: 180px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
}
.footer-left .code .pic{
  width: 100%;
  height: 100%;
}
.footer-left .code-desc{
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1;
  margin-top: 19px;
  font-weight: bold;
}
.footer-left .code-desc2{
  font-size: 16px;
  color: #FFFFFF;
  margin-top: 10px;
}
.footer-right{
  display: flex;
  margin-left: 36px;
  flex-direction: column;
}
.footer-line{
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 10px;
}
.footer-line.white{
  color: #fff;
}
.bread{
  color: #999;
  font-size: 14px;
}
/* game-list-card */
.game-list-card{
  display: flex;
  padding: 30px 0;
  height: 210px;
  box-sizing: border-box;
  border-top: 1px solid #E6EAEE;
}
.game-list-card .icon{
  width: 150px;
  height: 150px;
  border-radius: 20px;
  overflow: hidden;
}
.game-list-card .icon .pic{
  width: 100%;
  height: 100%;
}
.game-list-card .game-info{
  flex: 1;
  padding: 0 30px 0 20px;
}
.game-list-card .game-info{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.game-list-card .game-info .title{
  font-size: 22px;
  color: #333333;
  line-height: 1.2;
}
.game-list-card .game-info .title{
  font-size: 22px;
  color: #333333;
}
.game-list-card .game-info .tag{
  display: flex;
  align-items: center;
  color: #A7ABB2;
  font-size: 12px;
  margin-top: 15px;
}
.game-list-card .game-info .tag .space{
  width: 1px;
  height: 12px;
  background: #333333;
  margin: 0 10px;
}
.game-list-card .game-info .tag .black{
  color: #333333;
}
.game-list-card .game-info .tag .info-tag{
  color: #13C5CD;
  font-size: 12px;
  width: 46px;
  height: 22px;
  text-align: center;
  line-height: 22px;
  border: 1px solid #13C5CD;
  border-radius: 5px;
  box-sizing: border-box;
  margin-left: 13px;
}
.game-list-card .game-info .desc{
  font-size: 14px;
  color: #999999;
  height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  line-height: 24px;
}
.game-opt{
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.game-opt .tag1{
  width: 90px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #FE784B;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
}
.game-opt .tag2{
  width: 90px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #13C5CD;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
}
.game-opt .link{
  color: #333333;
  margin-top: 10px;
  text-align: center;
}
/* download-section */
.download-section{
  padding: 20px;
  text-align: center;
}
.download-section .downlaod-title{
  font-size: 26px;
  color: #333333;
  font-weight: bold;
}
.download-section .downlaod-desc{
  color: #FE784B;
  font-size: 18px;
  margin-top: 4px;
}
.download-section .btn-download{
  width: 200px;
  height: 56px;
  border-radius: 56px;
  background: #13C5CD;
  display: flex;
  align-items: center;
  padding: 0 6px;
  box-sizing: border-box;
  margin-top: 12px;
  cursor: pointer;
}
.download-section .btn-download.type2{
  background: #5791FB;
  margin-top: 19px;
}
.download-section .btn-download .icon{
  width: 38px;
  height: 38px;
  border-radius: 38px;
  background: #fff;
}
.download-section .btn-download .icon .pic{
  width: 100%;
  height: 100%;
}
.download-section .btn-download .text{
  margin-left: 10px;
  font-size: 16px;
  color: #fff;
}
.download-section-content{
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.download-section-content .code-section{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.download-section-content .code-section .pic{
  width: 136px;
  height: 136px;
  padding: 6px;
  box-sizing: border-box;
  background: url(../img/download-code.png) no-repeat center;
  background-size: 100% 100%;
}
.download-section-content .code-section p{
  color: #999999;
  font-size: 12px;
  margin-top: 10px;
}
/* game-rank */
.game-rank{
  padding: 20px;
  padding-top: 10px;
  padding-bottom: 52px;
}
.game-rank .rank-title{
  border-top: 1px solid #E6EAEE;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #333333;
  font-weight: bold;
  padding-top: 20px;
}
.game-rank .rank-title .desc{
  color: #999999;
  font-size: 14px;
  font-weight: normal;
}
.game-rank .rank-title .desc .icon-reload{
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url(../img/icon-reload.png) no-repeat center;
  background-size: 100%;
  margin-left: 3px;
}
.game-rank .rank-list{
  margin-top: 12px;
}
.game-rank .rank-item{
  display: flex;
  align-items: center;
  padding: 18px 0;
}
.game-rank .rank-item .ranks{
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #A7ABB2;
  text-align: center;
  line-height: 24px;
  color: #fff;
  font-size: 16px;
  margin-right: 18px;
}
.game-rank .rank-item .ranks.rank1{
  background: #EF2E54;
}
.game-rank .rank-item .ranks.rank2{
  background: #FE784B;
}
.game-rank .rank-item .ranks.rank3{
  background: #13C5CD;
}
.game-rank .rank-item .rank-section{
  flex: 1;
  display: flex;
}
.rank-section .icon{
  width: 90px;
  height: 90px;
  border-radius: 15px;
  overflow: hidden;
}
.rank-section .icon .pic{
  width: 100%;
  height: 100%;
}
.rank-section .rank-info{
  margin-left: 13px;
}
.rank-section .rank-info .info-title{
  font-size: 16px;
  color: #333333;
}
.rank-section .rank-info .info-desc{
  display: flex;
  align-items: center;
  color: #A7ABB2;
  font-size: 12px;
  margin: 10px 0;
}
.rank-section .rank-info .info-desc .space{
  display: block;
  width: 1px;
  height: 12px;
  background: #A7ABB2;
  margin: 0 10px;
}
.rank-section .rank-info .tag{
  color: #13C5CD;
  font-size: 12px;
  padding: 3px 9px;
  border-radius: 5px;
  border: 1px solid #13C5CD;
  margin-right: 10px;
}
.game-rank .rank-item .rank-tag1{
  width: 54px;
  height: 30px;
  text-align: center;
  padding-left: 5px;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
  background: #FE784B;
  background: url(../img/tag1.png);
  background-size: 100% 100%;
}
.game-rank .rank-item .rank-tag2{
  width: 54px;
  height: 30px;
  text-align: center;
  padding-left: 5px;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
  background: url(../img/tag2.png);
  background-size: 100% 100%;
}
/* nodata */
.nodata-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 14px;
  text-align: center;
  height: 500px;
}
.nodata{
  background: url(../img/nodata.png) no-repeat center;
  background-size: 218px 170px;
  width: 218px;
  height: 170px;
}
.nodata-desc{
  margin-top: -30px;
}
.flex1{
  flex: 1;
}
/* 下载弹窗 */
.layui-layer{
  background-color: transparent !important;
  box-shadow: none !important;
}
.modal{
  width: 646px;
  min-height: 420px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: none;
}
.modal .modal-head{
  width: 100%;
  height: 80px;
  background: #13C5CD;
  text-align: center;
  line-height: 80px;
  position: relative;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
}
.modal .modal-head .icon-close{
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../img/modal-close.png) no-repeat center;
  background-size: 100%;
  cursor: pointer;
}
.modal .modal-content{
  padding: 50px;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal .modal-content .code{
  width: 200px;
  height: 200px;
}
.modal .modal-content .code .pic{
  width: 100%;
  height: 100%;
}
.modal .modal-content  .code-desc{
  font-size: 16px;
  color: #333333;
  margin-top: 20px;
}
.modal-space{
  width: 504px;
  height: 1px;
  background: #E6EAEE;
  margin: 50px 0;
}
.modal-desc{
  color: #999999;
  font-size: 16px;
}
.moda-foot{
  display: flex;
  margin-top: 34px;
  align-items: center;
  justify-content: center;
  color: #13C5CD;
  font-size: 16px;
}
.moda-foot .icon{
  width: 30px;
  height: 30px;
  margin-right: 8px;
}
.moda-foot .icon .pic{
  width: 100%;
  height: 100%;
}
/* couplet */
.couplet{
  position: fixed;
  right: 30px;
  top: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  .couplet1{
    width: 242px;
    height: 373px;
    background: url(../img/couplet1.png) no-repeat center;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    .couplet-line1{
      color: #FA8213;
      font-size: 26px;
      font-weight: bold;
      text-align: center;
    }
    .icon-code{
      width: 110px;
      height: 110px;
      margin: 0 auto;
      .pic{
        width: 100%;
        height: 100%;
      }
    }
    .couplet-line2{
      color: #1D2127;
      font-size: 12px;
      text-align: center;
      margin-top: 5px;
    }
  }
  .couplet2{
    width: 216px;
    height: 101.13px;
    background: url(../img/couplet2.png) no-repeat center;
    background-size: 100% 100%;
    margin-top: -20px;
  }
  .couplet3{
    width: 216px;
    height: 66px;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(29,33,39,0.1);
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #13C5CD;
    font-size: 20px;
    margin-top: 30px;
    cursor: pointer;
    .icon-couplet{
      display: block;
      width: 20px;
      height: 18px;
      background: url(../img/couplet3.png) no-repeat center;
      background-size: 100% 100%;
      margin-right: 10px;
    }
  }
}