/* 公共样式 */
:root {
  --pm-c: #2664af;
  --dm-c: #fdeaea;
  --bg-c: #f5f5f5;
  --br-c: #eee;
}

.bg-gradient {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0, transparent 100%);
}

.bg-f7 {
  background-color: #f7f7f7;
}

.bg-f {
  background-color: #ffffff;
}

/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
}

/*修改UIKIT框架自带样式*/
body,
html {
  /* background-color: var(--bg-c); */
  padding: 0;
  margin: 0;
  font-family: Microsoft YaHei;
}

.w380 {
  width: 380px;
}

a,
a:hover {
  text-decoration: none;
}

ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/*图片高清*/
img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  object-fit: cover;
}

/*边框样式*/
.b-a {
  border: 1px solid var(--br-c) !important;
}

.b-b {
  border-bottom: 1px solid var(--br-c) !important;
}

.b-t {
  border-top: 1px solid var(--br-c) !important;
}

.b-l {
  border-left: 1px solid var(--br-c) !important;
}

.b-r {
  border-right: 1px solid var(--br-c) !important;
}

.b-t-dashed {
  border-top: 1px dashed var(--br-c) !important;
}

.b-b-dashed {
  border-bottom: 1px dashed var(--br-c) !important;
}

/* 内边距  */
.p-a-5 {
  padding: 5px;
}

.p-a-10 {
  padding: 10px;
}

.p-a-20 {
  padding: 20px;
}

/* 内上边距 */
.p-b-0 {
  padding-top: 0px;
}

.p-t-5 {
  padding-top: 5px;
}

.p-t-10 {
  padding-top: 10px;
}

.p-t-15 {
  padding-top: 15px;
}

.p-t-20 {
  padding-top: 20px;
}

.p-t-30 {
  padding-top: 30px;
}

/* 内下边距 */
.p-b-0 {
  padding-bottom: 0px;
}

.p-b-5 {
  padding-bottom: 5px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-b-15 {
  padding-bottom: 15px;
}

.p-b-20 {
  padding-bottom: 20px;
}

.p-b-30 {
  padding-bottom: 30px;
}

/* 内右边距 */
.p-r-5 {
  padding-right: 5px;
}

.p-r-10 {
  padding-right: 10px;
}

.p-r-15 {
  padding-right: 15px;
}

.p-r-20 {
  padding-right: 20px;
}

/* 内左边距 */
.p-l-5 {
  padding-left: 5px;
}

.p-l-10 {
  padding-left: 10px;
}

.p-l-15 {
  padding-left: 15px;
}

.p-l-20 {
  padding-left: 20px;
}

/*圆角样式*/
.b-r-4 {
  border-radius: 4px !important;
}

.b-r-6 {
  border-radius: 6px !important;
}

.b-r-8 {
  border-radius: 8px !important;
}

.b-r-10 {
  border-radius: 10px !important;
}

.b-r-12 {
  border-radius: 12px !important;
}

.b-r-24 {
  border-radius: 24px !important;
}

.m-t-b-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

/* 上外边距 */
.m-t-5 {
  margin-top: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

/* 下外边距 */
.m-b-0 {
  margin-bottom: 0px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

/* 左外边距 */
.m-l-0 {
  margin-left: 0px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

/* 右外边距 */
.m-r-0 {
  margin-right: 0px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

/* 溢出2行省略号 */
.line-2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

/* 溢出3行省略号 */
.line-3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}

/* 溢出4行省略号 */
.line-4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}

/*伪类居中*/
/* 增加伪类 前置 */
.before-middle {
  position: relative;
}

.before-middle::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

/* 增加伪类 后置 */
.after-middle {
  position: relative;
}

.after-middle::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.after-center {
  position: relative;
}

.after-center::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}

.my-uk-flex-between {
  justify-content: space-between;
}

/*默认图标尺寸*/
.item .icon {
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.item .icon img {
  width: 100%;
  height: 100%;
}

.item .data span {
  font-size: 14px;
}

.item .hr {
  display: inline-block;
  height: 12px;
  width: 1px;
  background: #bbb;
  margin: 0 5px;
}

/* 默认缩略图尺寸 */
.thumb img {
  width: 100%;
  height: 100%;
}

/* 分页 */
.pagination {
  margin: 60px 0 40px 0;
  text-align: center;
}

.pagination .page-item {
  display: inline-block;
  margin: 5px;
  font-size: 13px;
  border: 1px solid var(--br-c);
  color: #555;
}

.pagination .active span {
  background: var(--pm-c);
  color: #fff;
}

.pagination .page-item:hover {
  background: var(--pm-c);
  color: #fff;
}

.pagination .page-item .page-link {
  display: block;
  padding: 6px 12px;
  border: 1px solid transparent;
}

.pagination li span {}

.pagination li a {
  display: inline-block;
  color: #666;
}

.pagination li a:hover {
  background: var(--pm-c);
  color: #fff;
  border: 1px solid var(--pm-c) !important;
}

.star {
  height: 15px;
  width: 75px;
  background: url(../images/icon-star-bg.png) repeat-x 15px/contain;
  display: inline-block;
  vertical-align: middle;
}

.star:before {
  content: "";
  display: block;
  background: url(../images/icon-star.png) repeat-x 15px/contain;
  height: 15px;
}

.star-1:before {
  width: 16px;
}

.star-2:before {
  width: 30px;
}

.star-3:before {
  width: 45px;
}

.star-4:before {
  width: 60px;
}

.star-5:before {
  width: 75px;
}

/*面包屑导航*/
.crumbs {
  font-size: 12px;
  padding: 10px;
  color: #999;
  background-color: #f8f8f8;
}

.crumbs a {
  color: #909399;
  display: inline-block;
  position: relative;
  font-size: 12px;
}

.crumbs a::after {
  content: ">";
}

/* 平台 安卓 苹果 图标显示 */
.platform i {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
}

.platform .az {
  background-image: url(../img/icon-az.png);
}

.platform .ios {
  background-image: url(../img/icon-ios.png);
}

/* 公共标题 */
.module-title {
  border-bottom: 1px solid var(--br-c);
  padding-bottom: 10px;
}

.module-title .title {
  padding-left: 30px;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
}

.module-title .more {
  display: block;
  height: 18px;
  width: 56px;
  color: #fff;
  background-image: url(../images/module-title-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.module-title .title::before {
  width: 4px;
  height: 18px;
  left: 0;
  background: var(--pm-c);
  border-radius: 2px;
}

/* list 样式 */
.list ul li a {
  padding-left: 25px;
}

.list ul li a::before {
  display: inline-block;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--pm-c);
}

/* 鼠标移入 阴影立体效果 */
.list-game-li ul li:hover {
  box-shadow: 0px 0px 16px 0px rgba(100, 100, 100, 0.22);
  box-shadow: 0px 0px 9px 0px rgba(210, 222, 235, 0.72);
}

/* 带图标 序号 */
.item .icon {
  width: 100px;
  height: 100px;
}

.item .num {
  margin-right: 20px;
  text-align: center;
  width: 42px;
  height: 27px;
  line-height: 27px;
  background-color: #e3e3e3;
  border-radius: 0px 14px 14px 0px;
  color: #fff;
}

.item:nth-child(-n + 3) .num {
  background-color: var(--pm-c);
}

/* 卡片式 */
.gl-card .item:hover {
  background: #f7f7f7;
}

/* 
 * -n+3  获取前三个元素 
 * 2n    偶数even
 * 2n-1  奇数odd
*/

/* 公共样式 end */
/* 公共头部样式 */
header {
  background-color: var(--pm-c);
  height: 80px;
  line-height: 80px;
}

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

header .logo {
  width: 200px;
  height: 42px;
  line-height: 42px;
}

header .logo a {
  display: block;
  height: 42px;
}

header .logo img {
  height: 100%;
}

header .nav {
  max-width: 900px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

header .nav ul li {
  display: inline-block;
  padding-right: 20px;
  margin-left: 20px;
}

header .nav ul li a {
  color: #fff;
  font-size: 18px;
}

header .nav ul li::after {
  content: "|";
  right: 0;
  color: #fff;
  margin-top: -2px;
}

header .nav ul li a:hover {
  color: #fff;
}

header .nav ul li.active a {
  border-bottom: 4px solid #fff;
  padding-bottom: 15px;
}

/* 公共头部样式end */
/* 公共页脚样式 */
.footer {
  margin-top: 30px;
  background: #333333;
  padding: 50px 0;
}

.footer .foot-nav ul li {
  display: inline-block;
  padding-right: 10px;
  margin-right: 5px;
}

.footer a {
  color: #999999;
}

.footer p {
  color: #999999;
  margin-bottom: 0;
}

.footer .foot-nav ul li::after {
  content: "|";
  right: 0;
  color: #999999;
}

/* 公共页脚样式end */

.top {
  margin: 20px 0;
  justify-content: space-between;
}

.top .time {
  font-size: 16px;
  font-weight: 400;
  color: #999999;
}

/* 搜索 */
.search-1 {
  width: 260px;
  height: 36px;
  box-sizing: border-box;
  overflow: hidden;
}

.search-input {
  width: calc(100% - 60px);
  height: 100%;
  padding-left: 13px;
  border: none;
  outline: medium;
  vertical-align: top;
  width: 200px;
  height: 36px;
  line-height: 36px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  color: #999;
}

.search-input::-webkit-input-placeholder {
  color: #999;
}

.search-input:-moz-placeholder {
  color: #999;
}

.search-input:-ms-input-placeholder {
  color: #999;
}

.search-btn {
  width: 50px;
  height: 100%;
  color: #fff;
  text-align: center;
  border: none;
  float: right;
  vertical-align: top;
  background: url(../images/search.png) no-repeat center, var(--pm-c);
  background-size: 20px 20px;
}

/* 首页 */
.home-headlines {
  padding-bottom: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  padding-right: 35px;
}

.home-headlines .title {
  background: url("../images/headlines_title.png") no-repeat center/contain;
  width: 100px;
  height: 92px;
}

.home-headlines-list ul {
  margin-top: -5px;
  max-height: 105px;
  overflow: hidden;
}

.home-headlines .home-headlines-list ul li {
  width: 33.3%;
  float: left;
}

.home-headlines .home-headlines-list ul li:nth-child(7),
.home-headlines .home-headlines-list ul li:nth-child(8),
.home-headlines .home-headlines-list ul li:nth-child(9) {
  padding-bottom: 0;
}

.home-headlines-list ul li {
  padding-left: 20px;
  box-sizing: border-box;
}

.home-headlines-list ul li a {
  padding-left: 20px;
  font-size: 14px;
  color: #333333;
}

.home-headlines-list ul li span {
  font-size: 14px;
  color: #999999;
}

.home-headlines-list ul li a:before {
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--pm-c);
}

.home-banner {}

.home-banner-img {
  width: 380px;
  height: 265px;
}

.home-banner-pre {
  width: 27px;
  height: 55px;
  background: url(../images/pre_page.png) center/contain;
  position: absolute;
  top: calc(50% - 80px);
  left: 0;
  z-index: 1;
  opacity: 1;
  cursor: pointer;
}

.home-banner-next {
  width: 27px;
  height: 55px;
  background: url(../images/pre_page.png) center/contain;
  position: absolute;
  top: calc(50% - 80px);
  right: 0;
  z-index: 1;
  opacity: 1;
  transform: translate(0, 0) rotate(180deg);
  cursor: pointer;
}

.home-banner .info {
  margin-top: 30px;
}

.home-banner .info .title {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 16px !important;
  font-weight: 500;
}

.home-banner .info .desc {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  line-height: 26px;
}

.home-banner .info .look {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--pm-c);
  background: #fff;
  line-height: 26px;
}

.home-latest {
  /* max-width: 400px; */
}

.home-latest-hot .title a {
  font-size: 16px;
  font-weight: 500;
  color: var(--pm-c);
}

.home-latest .list ul li {
  width: 100%;
  padding-left: 0;
}

.home-latest .list ul {
  max-height: 100%;
}

.home-latest .list ul li:last-child {
  padding-bottom: 0px;
}

.home-latest-hot-item {
  border-bottom: 1px dashed #eeeeee;
}

.home-latest-hot-item .icon {
  width: 151px;
  height: 91px;
}

.home-latest-hot-item .icon img {
  width: 100%;
  height: 100%;
}

.home-latest-hot-item .info .desc {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 25px;
}

.home-latest-hot-item .info .time {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
}

/* 游戏资讯 */
.home-information {
  /* width: 380px; */
}

.home-information ul li {
  padding-left: 30px;
  overflow: hidden;
  /* padding-right: 10px; */
}

.home-information ul li:last-child {
  border: none !important;
}

.home-information ul li::before {
  background: url("../images/list_dot.png") no-repeat center/contain;
  left: 0;
  width: 12px;
  height: 12px;
  top: 12px;
}

.home-information ul li .title {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  display: inline-block;
}

.home-information ul li:hover .title {
  color: var(--pm-c);
}

.home-information ul li p {
  margin-top: 10px !important;
}

.home-information ul li .desc {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
}

.home-information ul li .look {
  font-size: 12px;
  font-weight: 400;
  color: #999999;
}

/* 游戏攻略 */
.home-gl {}

.home-gl ul li {}

.home-gl ul li .thumb {
  width: 140px;
  height: 80px;
}

.home-gl ul li .thumb img {
  width: 100%;
  height: 100%;
}

.home-gl ul li .info {}

.home-gl ul li .info .desc {
  margin-bottom: 2px;
  min-height: 50px;
}

.home-gl ul li .info .desc a {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 28px;
}

.home-gl ul li .info .time {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
}

/* 游戏测评 */
.home-cp {
  /* max-width: 380px; */
}

.home-cp .thumb {
  display: block;
  width: 180px;
  height: 100px;
}

.home-cp .home-cp-list .list li a {
  font-size: 14px;
  color: #333333;
  margin-right: 15px;
}

.home-cp .home-cp-list .list li:hover a {
  color: var(--pm-c);
}

.home-cp .home-cp-list .list li span {
  font-size: 14px;
  color: #999999;
  line-height: 24px;
}

.home-cp .home-cp-list .list ul li::before {
  background: url("../images/list_dot1.png") no-repeat center/contain;
  left: 0;
  width: 12px;
  height: 12px;
  top: 12px;
}

/* 友情链接 */
.home-links a {
  font-size: 14px;
  color: #8d8c8c;
  margin-right: 15px;
  line-height: 24px;
}

/* 游戏新闻 */
.home-news {
  /* width: 380px; */
}

.home-news-list .item:last-child {
  border-bottom: none !important;
}

.home-news-list .title {
  font-size: 14px;
  color: #333333;
  margin-left: 10px;
  line-height: 30px;
}

.home-news-list .up-to-date {
  font-size: 14px;
  color: #2664af;
}

.home-news-list .up-to-date::after {
  content: "|";
  right: 0;
  color: #eee;
}

.home-news-list .more a {
  font-size: 14px;
  color: #999999;
}

.home-news-list .time {
  font-size: 14px;
  color: #999999;
}

/* 列表页 */
/* 游戏列表 */
.list-game-list {}

.list-game-list .item .icon {
  width: 81px;
  height: 81px;
}

/* 热门游戏 */
.list-hot-game {
  /* width: 380px; */
  overflow: hidden;
}

.list-hot-game .item .icon {
  width: 68px;
  height: 68px;
  border-radius: 10px;
}

.game-list .item {
  border-bottom: 1px dashed #eee;
}

.game-list .item:last-child {
  border: none;
}

.game-list .item .icon img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.game-list .item .info p {
  margin: 0 !important;
}

.game-list .item .info a {
  font-size: 16px;
  color: #2f2f2f;
  line-height: 30px;
  font-weight: 700;
  display: inline-block;
}

.game-list .item .info .desc {
  font-size: 14px;
  color: #777777;
  line-height: 30px;
}

.game-list .item .info span {
  font-size: 14px;
  color: #666666;
  line-height: 35px;
}

.game-list .item .info .time{
  color: #666;
   font-size: 14px
}


.game-list .item .down {
  width: 25px;
  height: 24px;
  background: url("../images/down.png") no-repeat center/contain;
}

.game-list .item .more {
  border: 1px solid var(--pm-c);
  color: var(--pm-c);
  font-size: 14px;
}

.game-list .item:hover .info a {
  color: var(--pm-c);
}

.game-list .item:hover .more {
  background: var(--pm-c);
  color: #fff;
}

.list-hot-game-list .item .icon {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}

/* 文章内页 */
.single- {}

.single-content p {
  text-indent: 2em;
  line-height: 36px;
  font-size: 16px;
  color: #666;
}

.single-content h2,
.single-content h3 {
  font-size: 17px;
  font-weight: bold;
  margin: 15px 0;
}

.single-content img {
  display: block;
  max-width: 100%;
  margin: 10px auto;
  height: auto !important;
}

.single .icon {
  width: 131px;
  height: 131px;
  border-radius: 10px;
}

.single .icon img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.single-head .title {
  font-size: 24px;
  color: #333333;
}

.single-head .title2 {
  color: #333333;
  font-size: 26px;
  font-weight: bold;
  padding: 50px 0;
  padding-bottom: 45px;
  margin-bottom: 0;
}

.single-head ul li {
  line-height: 36px;
  color: #858585;
  font-size: 14px;
  width: 32%;
  padding-right: 10px;
  margin-right: 10px;
  box-sizing: border-box;
}

.single-head ul li:nth-child(3n) {
  margin-right: 0;
}

.btn span {
  position: relative;
  display: block;
  font-size: 16px;
  color: #ffffff;
  text-indent: 60px;
  line-height: 50px;
}

.single-head .download .btn::before {
  left: 30px;
  display: inline-block;
  width: 21px;
  height: 24px;
  background-repeat: no-repeat;
}

.single-head .download .az:before {
  background-image: url(../images/az.png);
}

.single-head .download .ios:before {
  background-image: url(../images/ios.png);
}

.single-head .download .btn {
  position: relative;
  height: 50px;
  line-height: 50px;
  min-width: 180px;
  background: var(--pm-c);
  border-radius: 5px;
  margin-right: 20px;
  cursor: pointer;
}

.single-head .download .none {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
  -webkit-filter: grayscale(1);
  opacity: 0.4;
}

.single-head .download .code {
  display: none;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 20px;
  color: #777;
  font-size: 14px;
  line-height: normal;
  right: -170px;
  z-index: 10;
}

.single-head .download .code img {
  border: 1px solid #f5f5f5;
  margin-bottom: 15px;
}

.single-head .download .az:hover .code {
  display: block;
}

/* 资讯列表 */
.list-new {}

.list-new ul li .item .thumb {
  width: 150px;
  height: 95px;
}

.list-new ul li .title {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  display: inline-block;
}

.list-new ul li:hover .title {
  color: var(--pm-c);
}

.list-new ul li .item .info .desc {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 30px;
}

.list-new ul li .item .info .time {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
}

.list-new ul li .item .info .look {
  font-size: 14px;
  font-weight: 400;
  color: var(--pm-c);
}

/* 相关资讯 */
.show-news .single-head {
  min-height: 190px;
}

.show-news .single-head .info {
  /* marign-top: 51px; */
}

.show-news .single-head .info span {
  font-size: 12px;
  color: #999999;
}

.show-news .single-head .info span:nth-child(odd) {
  margin-right: 80px;
}

.xg-news {
  overflow: hidden;
}

.xg-news .news-list .item {
  width: 50%;
  float: left;
  padding-right: 20px;
  box-sizing: border-box;
}

.xg-news .news-list .item:nth-child(even) {
  padding-right: 0px;
}

.xg-news .news-list .item .thumb {
  width: 95px;
  height: 60px;
}

.xg-news .news-list .item .title {
  font-size: 14px;
  color: #333333;
}

.xg-news .news-list .item .time {
  font-size: 12px;
  color: #999999;
}

.page {}

.page a {
  width: 50%;
  display: block;
  height: 40px;
  line-height: 40px;
  background: #f8f8f8;
  border-radius: 5px;
  text-align: center;
  padding: 0 20px;
}

.single-swiper-warp {
  padding: 0 50px;
  width: 780px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.single-swiper {
  position: unset;
  padding: 50px 0;
}

.single-swiper .swiper-wrapper {
  height: auto;
}

.single-swiper .swiper-slide {}

.single-swiper .swiper-slide img {
  min-height: 100%;
}

.single-swiper .swiper-btn {
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 100px;
  background-image: url(../images/left-btn.png);
  position: absolute !important;
  max-width: calc(100% - (0px * 2));
  box-sizing: border-box;
}

.single-swiper .swiper-slide-active {
  position: relative;
  z-index: 10;
}

.single-swiper .swiper-slide-active .thumb {
  transform: scale(1.2);
  z-index: 10;
}

.single-swiper .button-next {
  right: 0;
  top: calc(50%);
  transform: translate(0, -50%);
}

.single-swiper .button-prev {
  transform: translate(0, -50%) rotate(180deg);
  left: 0px;
  top: calc(50%);
}

@media (max-width: 760px) {
  header {
    padding: 15px 0;
  }

  header .logo {
    height: 35px;
    margin: 0 15px;
  }

  header .logo img {
    height: 100%;
  }

  header .nav ul {
    white-space: nowrap;
    overflow-x: scroll;
  }

  header .nav ul li {
    margin-right: 0;
  }

  .footer {
    padding: 15px;
  }

  .xg-news .news-list .item {
    padding-right: 0px;
    width: 100%;
  }

  .w380 {
    width: 100%;
  }

  .show-game-left {
    width: 100%;
  }

  .list-game-left {
    width: 100%;
  }

  .list-game-right {
    margin-left: 0 !important;
  }

  .single {
    display: block;
  }

  .single-swiper-warp {
    width: 100%;
  }

  .single-head ul li {
    font-size: 12px;
  }

  .game-rank-score,
  .game-rank-score-1,
  .game-rank-score-2,
  .game-rank-score-3,
  .game-rank-score-4,
  .game-rank-score-5 {
    width: 70px;
    height: 14px;
  }

  .xg-news {
    margin-bottom: 20px;
  }

  .index-banner,
  .index-gl,
  .list-new {
    display: block;
  }

  .home-banner-img {
    width: 100%;
    height: auto;
  }

  .home-headlines-list {
    width: 100%;
  }

  .home-latest,
  .home-cp {
    width: 100%;
    max-width: 100%;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .home-information,
  .home-cp,
  .home-news {
    margin-top: 20px;
  }
}

.info-title{
  width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
}
.info-title .kfbg{
  width: 100%;
  height: 100px;
  background: url("/themes/default/common_cms/pc/assets/images/kfbg.png") no-repeat;
  background-size: 100% 100px;
}
.info-title .title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
}
.info-title .title div:first-child{
  font-size: 18px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  padding-left: 14px;
  position: relative;
}
.info-title .title div:first-child::before{
  content: "";
  display: block;
  width: 4px;
  height: 18px;
  background: #2664AF;
  border-radius: 99px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.info-title .title div:last-child{
  margin-left: 30px;
  font-size: 12px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #666666;   
}
.info-title .title div:last-child span{
  color: #2664AF;
}

table {
  width: 1200px;
  margin-top: 20px;
  border-bottom: 1px solid #EBEBEB;
}
table thead{
  height: 40px;
  background: #DCE9F9;  
  width: 1200px;  
}
table thead tr th{
  font-size: 14px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #4D4D4D;
}
table thead tr th:nth-child(1){
  width: 200px;
}
table thead tr th:nth-child(2){
  width: 260px;
}
table thead tr th:nth-child(3){
  width: 220px;
}
table thead tr th:nth-child(4){
  width: 140px;
}
table thead tr th:nth-child(5){
  width: 180px;
}
table thead tr th:nth-child(6){
  width: 200px;
}
table tbody{ 
  background-color: #ffffff;
}
table tbody td{
  height: 70px;
  border-top:1px solid #EBEBEB;
  border-left: 1px solid #EBEBEB;
}
table tbody tr td:nth-child(1) .date{
  width: 200px;
  height: 70px;
  padding: 11px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-content: space-between;
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #666666;
  
}
table tbody tr td:nth-child(1) .date div{
  width: 100%;
  text-align: center;
}
table tbody tr td:nth-child(2) .body{
  height: 70px;
  display: flex;
  align-items: center;
  text-align: start;
  position: relative;
} 
table tbody tr td:nth-child(2) .body::before{
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  background: url("/themes/default/common_cms/pc/assets/images/hot.png") no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
table tbody tr td:nth-child(2) .img{
  display: block;
  width: 40px;
  height: 40px;
  padding-left: 46px;
}
table tbody tr td:nth-child(2) img{
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
table tbody tr td:nth-child(2) .right{
  height: 40px;
  flex: 1;
  margin-left: 14px;
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
}
table tbody tr td:nth-child(2) .name{
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #333333; 
  width: 100%;  
}
table tbody tr td:nth-child(2) .info{
  font-size: 12px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #999999;
}
table tbody tr td{
  text-align: center;
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #666666;
}
table tbody tr td:last-child{
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #EBEBEB;
}
table tbody tr td:last-child a{
  display: block;
  width: 110px;
  height: 30px;
  background: linear-gradient(180deg, #55A2FF 0%, #045ECA 100%);
  border: 2px solid #126CD9;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  text-indent: 15px;
  position: relative;
}
table tbody tr td:last-child a::before{
  content: " ";
  display: block;
  width: 12px;
  height: 12px;
  background: url("/themes/default/common_cms/pc/assets/images/xz1.png") no-repeat center left;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

table tbody tr:nth-of-type(even){
  background-color: #F9F9F9;
}
table tbody tr:hover{
  background-color: #F0F0F0;  
}
.list-game {
	width: 100% !important
}
.foot-nav li span {
    color: #999
}