/* CSS Reset */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* 解决IOS默认滑动很卡的情况 */
    -webkit-overflow-scrolling: touch;
}

/* Sections
     ========================================================================== */

/**
   * Remove the margin in all browsers.
   */

body {
    margin: 0;
    background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
button,
textarea,
p,
th,
td,
span,
a,
b,
i,
strong,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/**
   * Render the `main` element consistently in IE.
   */

main {
    display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */

/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */

hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

/* Text-level semantics
     ========================================================================== */

/**
   * Remove the gray background on active links in IE 10.
   */


a,
a:hover {
    background-color: transparent;
    text-decoration: none;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */

abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    text-decoration: underline dotted;
    /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */

b,
strong {
    font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */

code,
kbd,
samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */

small {
    font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
     ========================================================================== */

/**
   * Remove the border on images inside links in IE 10.
   */

img {
    border-style: none;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

/* Forms
     ========================================================================== */

/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */

button,
input {
    /* 1 */
    overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */

button,
select {
    /* 1 */
    text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}


/**
   * Remove the default vertical scrollbar in IE 10+.
   */

textarea {
    overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */

[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */

::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

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

input {
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
    outline: none;
}

input::-webkit-input-placeholder {
    color: transparent;
}

input:-moz-placeholder {
    /* Firefox 18- */
    color: transparent;
}

input::-moz-placeholder {
    /* Firefox 19+ */
    color: transparent;
}

input:-ms-input-placeholder {
    color: transparent;
}

input:focus {
    outline: none;
}

.uk-container {
    box-sizing: border-box;
    padding: 0;
}

:root {
    --pm-c: #434BE1;
}

.hide {
  display: none !important;
}

/* 重复使用 */
.p-20 {
    padding: 20px;
}

.p-16 {
    padding: 16px;
}

.bgc-fff {
    background-color: #fff;
}

.frame {
    border: 1px solid #eaeaf8;
}

.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: .6;
}

.truncate-t-l {
    display: -webkit-box !important;
    /* 使用弹性盒子布局模型 */
    -webkit-box-orient: vertical;
    /* 垂直排列子元素 */
    -webkit-line-clamp: 2;
    /* 限制在三行 */
    overflow: hidden;
    /* 隐藏溢出的内容 */
    text-overflow: ellipsis;
    /* 使用省略号表示文本溢出 */
}

.public_head {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.public_head .public_title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    position: relative;
    padding-left: 38px;
}

.public_head .public_title::before {
    display: block;
    width: 28px;
    height: 18px;
    content: "";
    background-image: url(../images/public-left.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 2px;
}

.public_head .public_more {
    font-size: 12px;
    color: #888;
    position: relative;
    padding-right: 20px;
}

.public_head .public_more::after {
    display: block;
    content: "";
    width: 10px;
    height: 12px;
    background-image: url(../images/public-right.png);
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
}

.public_icon {
    position: relative;
}

.public_icon::before {
    position: absolute;
    display: block;
    content: "";
    width: 90px;
    height: 99px;
    background-image: url(../images/game.png);
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
}

.public_icon span {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    position: relative;
    padding-top: 30px;
    padding-left: 120px;
    padding-bottom: 44px;
    z-index: 1;
}

.public_icon span::before {
    display: block;
    position: absolute;
    content: "Mobile Game";
    font-size: 48px;
    color: #f0f0fe;
    top: -8px;
    left: 120px;
    width: 1000px;
    z-index: -1;
}


/* 当前位置 */
.crumbs {
    margin-top: 10px;
    position: relative;
    padding-left: 30px;
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}

.crumbs::before {
    display: block;
    position: absolute;
    content: "";
    width: 12px;
    height: 15px;
    background-image: url(../images/now_position.png);
    background-repeat: no-repeat;
    background-size: cover;
    top: -1px;
    left: 0;
}

.crumbs a {
    font-size: 13px;
    color: #999;
}

.crumbs a::before {
    display: inline-block;
    content: ">";
    margin: 0 4px;
}

.crumbs a:first-child:before {
    display: none;
}

/* 首页页面 */
/* 首页-头部 */

.header {
    background-repeat: no-repeat;
    background-size: 100% 100px;
    background-image: url(../images/header_bgi.png);
    margin-bottom: 30px;
}

.header .head {
    padding: 25px 0;
    height: 100px;
}

.header .head .logo {
    width: 194px;
    height: 50px;
    display: block;
    position: relative;
    overflow: hidden;
}

.header .head .search {
    width: 278px;
    height: 40px;
    background: #fff;
    border-radius: 4px 4px 4px 4px;
    position: relative;
}

.header .head .search .search_ipt {
    width: 100%;
    height: 100%;
    padding-left: 15px;
    padding-right: 40px;
}

.header .head .search .search_ipt::placeholder {
    font-size: 14px;
    color: #999;
}

.header .head .search a {
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    overflow: hidden;
    right: 15px;
    top: 8px;
}

.header .topNav {
    height: 50px;
    background: #F1F1FF;
    line-height: 50px;
}

.header .navBar li {
    width: 118px;
    height: 100%;
    margin-right: 30px;
}

.header .navBar li a {
    font-size: 18px;
    color: #333;
    display: block;
    width: 118px;
    height: 100%;
    text-align: center;
}

.header .navBar li.active {
    width: 118px;
    height: 74px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/navBar_active.png);
}

.header .navBar li.active a {
    color: #fff;
}

.index_imgBox {
    width: 100%;
    padding-bottom: 18px;
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 18px;
}

.index_imgBox .item {
    width: 16.6%;
}

.index_imgBox .item .img {
    display: block;
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    border-radius: 2px;
}

.index_imgBox .item span {
    position: absolute;
    background: rgba(0, 0, 0, .5);
    height: 28px;
    width: 100%;
    bottom: 0;
    left: 0;
    line-height: 28px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    padding: 0 4px;
    box-sizing: border-box;
}

/* 首页-热门应用列表 */
.index_navList {
    padding-top: 4px;
    line-height: 30px;
}

.index_navList .gameList {
    flex: 1;
    margin-bottom: 4px !important;
    overflow: hidden;
    margin-left: 20px !important;
    text-align: center;
}

.index_navList .gameList li {
    text-wrap: nowrap;
}

.index_navList .gameList li a {
    display: inline-block;
    max-width: 100px;
    color: #666;
    font-size: 13px;
    text-align: center;
}

.index_navList .item:nth-child(1) li a {
    max-width: 100px;
}

.index_navList .item:nth-child(2) li a {
    max-width: 120px;
}

.index_navList .item:nth-child(3) li a {
    max-width: 180px;
}


.index_navList .item li a:hover {
    color: #939CFC;
}

.index_navList .item:nth-child(2) li a:hover {
    color: #7CBDFF;
}

.index_navList .item:nth-child(3) li a:hover {
    color: #FFA7A1;
}

.index_navList .gameList li::before {
    display: inline-block;
    content: "|";
    margin: 0 12px;
    color: #D9D9D9;
    vertical-align: top
}

.index_navList .gameList li:first-child::before {
    display: none;
}

.index_navList .item .game_title {
    display: inline-block;
    width: 88px;
    height: 28px;
    background-image: url(../images/navList1.png);
    line-height: 28px;
    text-align: center;
    background-repeat: no-repeat;
    margin-right: 2px;
    font-size: 14px;
    color: #fff;
}

.index_navList .item:nth-child(2) .game_title {
    background-image: url(../images/navList2.png);
}

.index_navList .item:nth-child(3) .game_title {
    background-image: url(../images/navList3.png);
}

.index_thumBox {}

.index_thumBox .itemBox {
    background-color: #F7F7FC;
    height: 135px;
    margin-left: 0;
}

.index_thumBox .itemBox .item {
    width: 10%;
    height: 100%;
    padding: 20px 25px 0 25px;
    border-radius: 6px 6px 6px 6px;
}

.index_thumBox .itemBox .item:hover {
    background: #6067F4;
}

.index_thumBox .itemBox .item:hover .name {
    color: #fff;
}

.thum {
    display: block;
    overflow: hidden;
}

.title,
.name {
    display: block;
}

.index_thumBox .itemBox .item .thum {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    position: relative;
    margin-bottom: 10px;
}

.index_thumBox .itemBox .item .name {
    max-width: 90px;
    text-align: center;
    margin: 0 auto;
    font-size: 13px;
    color: #4D4D4D;
}

.index_content {
    margin-top: 30px;
    margin-bottom: 30px;
}

.index_content .left {
    width: 400px;
    margin-right: 30px;
}

.index_content .left .index_sliderBox {}

.index_content .left .index_sliderBox .slider {
    width: 100%;
    height: 220px;
    margin-bottom: 30px;
}

.index_content .left .index_sliderBox .slider .slide {
    width: 100%;
    height: 100%;
    margin-left: 0;
}

.index_content .left .index_sliderBox .slider .slide li {
    padding-left: 0;
}

.index_content .left .index_sliderBox .slider .slide li .img {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.index_content .left .index_sliderBox .slider .slide li .img span {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 38px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    padding: 0 78px 0 15px;
    display: block;
    width: 100%;
    line-height: 38px;
    text-align: center;
}

.index_content .left .index_sliderBox .slider .slideNav {
    position: absolute;
    bottom: 14px;
    right: 16px;
}

.index_content .left .index_sliderBox .slider .slideNav li {
    margin-right: 5px;
    padding-left: 0;
}

.index_content .left .index_sliderBox .slider .slideNav li:last-child {
    margin-right: 0;
}

.index_content .left .index_sliderBox .slider .slideNav li a {
    width: 8px;
    height: 8px;
    background: #999;
    display: block;
    border-radius: 50%;
    border: none;
}

.index_content .left .index_sliderBox .slider .slideNav li.uk-active a {
    background-color: #6067F4;
}

.index_content .left .new_activity .itemBox .item {
    margin-bottom: 30px;
}

.index_content .left .new_activity .itemBox .item .txtBox {
    max-width: 265px;
}

.index_content .left .new_activity .itemBox .item .txtBox .title {
    font-size: 14px;
    color: #333;
}

.index_content .left .new_activity .itemBox .item .txtBox .text {
    display: block;
    font-size: 14px;
    color: #666;
    margin: 12px 0 16px;
}

.index_content .left .new_activity .itemBox .item .txtBox .tagBox {
    font-size: 12px;
    color: #999;
}

.index_content .left .new_activity .itemBox .item .txtBox .tagBox .num {
    position: relative;
    padding-left: 20px;
}

.index_content .left .new_activity .itemBox .item .txtBox .tagBox .num::before {
    position: absolute;
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/eye.png);
    left: 0;
    top: -1px;
}

.index_content .left .new_activity .itemBox .item .thum {
    width: 120px;
    height: 80px;
    border-radius: 2px;
    position: relative;
    margin-left: 15px;
}

.list {}

.list li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 16px;
}

.list li::before {
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    background: #E6E6E6;
    border-radius: 50%;
    left: 0;
    top: 6px;
    position: absolute;
}

.list li .title {
    max-width: 330px;
    font-size: 14px;
    color: #333;
}

.list li .time {
    display: block;
    font-size: 13px;
    color: #999;
}

.index_content .left .left_other .list {}

.index_content .left .left_other .list li {
    margin-bottom: 10px;
    padding-left: 0;
}

.index_content .left .left_other .list li::before {
    display: none;
}

.index_content .left .left_other .list li .tag {
    width: 42px;
    height: 22px;
    background: #F94255;
    border-radius: 4px 4px 4px 4px;
    line-height: 22px;
    text-align: center;
    font-size: 14px;
    color: #FFFFFF;
    margin-right: 4px;
}

.index_content .left .left_other .list li:nth-child(2) .tag {
    background: #3764F7;
}

.index_content .left .left_other .list li:nth-child(3) .tag {
    background: #FF7649;
}

.index_content .left .left_other .list li:nth-child(4) .tag {
    background: #F8B33A;
}

.index_content .left .left_other .list li .title {
    max-width: 310px;
}

.index_content .left .left_other .list li .time {}

.index_content .middle {
    width: 400px;
    margin-right: 30px;
}

.index_content .middle .titleBox {
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 20px;
}

.index_content .middle .titleBox .titleItem {
    max-width: 400px;
    text-align: center;
    margin-bottom: 20px;
}

.index_content .middle .titleBox .titleItem .title {
    font-size: 18px;
    color: var(--pm-c);
    margin: 0 auto 10px;
}

.index_content .middle .titleBox .titleItem .text {
    display: block;
    font-size: 13px;
    color: #666;
}

.index_content .middle .list li {
    line-height: 26px;
    margin-bottom: 8px;
}

.index_content .middle .list li::before {
    top: 12px;
}

.index_content .middle .list .tag {
    display: none;
    width: 52px;
    height: 26px;
    background: #F1F1FF;
    border-radius: 3px;
    line-height: 26px;
    text-align: center;
    font-size: 14px;
    color: var(--pm-c);
    margin-right: 6px;
}

.index_content .right {
    width: 340px;
}

.index_content .right .topImg {
    display: block;
    width: 340px;
    height: 150px;
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
}

.goodGame_tj {}

.goodGame_tj .top {
    background-repeat: no-repeat;
    background-size: 100px 100%;
    background-position: center;
    background-image: url(../images/goodGame_hytj.png);
    width: 100%;
    height: 17px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 20px;
}

.goodGame_tj .top::after {
    display: block;
    content: "";
    width: 110px;
    height: 1px;
    background-color: #EBEBEB;
    position: absolute;
    right: 0;
    top: 7px;
}

.goodGame_tj .top::before {
    display: block;
    content: "";
    width: 110px;
    height: 1px;
    background-color: #EBEBEB;
    position: absolute;
    left: 0;
    top: 7px;
}

.goodGame_tj .thumBox {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #F2F2F2;
    margin-left: 0;
}

.goodGame_tj .thumBox .item {
    padding-left: 10px;
}

.goodGame_tj .thumBox .thum {
    width: 96px;
    height: 96px;
    border-radius: 20px;
    margin-bottom: 8px;
    position: relative;
}

.goodGame_tj .thumBox .thum::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    display: block;
    background: rgba(0, 0, 0, .5);
    width: 96px;
    height: 96px;
    background-repeat: no-repeat;
    background-size: 42px;
    background-image: url(../images/down.png);
    background-position: center;
}

.goodGame_tj .thumBox .thum:hover::before {
    z-index: 2;
}

.goodGame_tj .thumBox .item span {
    font-size: 14px;
    color: #333;
    display: block;
    max-width: 96px;
    text-align: center;
}

.goodGame_tj .gameList {}

.goodGame_tj .gameList .item {
    margin-bottom: 22px;
}

.goodGame_tj .gameList .item .thum {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    margin-right: 15px;
    position: relative;
}

.goodGame_tj .gameList .item .txtBox {
    max-width: 240px;
}

.goodGame_tj .gameList .item .txtBox .title {
    max-width: 200px;
    font-size: 16px;
    color: #333;
}

.goodGame_tj .gameList .item .txtBox .tagBox {
    margin: 10px 0;
}

.goodGame_tj .gameList .item .txtBox .tagBox .score {
    font-size: 12px;
    color: #F28A2A;
    margin-right: 10px;
    padding-left: 18px;
    position: relative;
}

.goodGame_tj .gameList .item .txtBox .tagBox .score::before {
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/score.png);
    position: absolute;
    left: 0;
    top: -1px;
}

.goodGame_tj .gameList .item .txtBox .tagBox .downNum {
    font-size: 12px;
    color: #666;
}

.goodGame_tj .gameList .item .txtBox .text {
    font-size: 12px;
    color: #999;
    display: block;
}


/* 公共标题 */
.public_title {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 18px;
}

.public_title .label::before {
    position: absolute;
    display: block;
    width: 26px;
    height: 26px;
    content: "";
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.public_title .dt::before {
    background-image: url(../images/public_title_dt.png);
}

.public_title .label {
    font-weight: bold;
    height: 100%;
    display: block;
    padding-bottom: 12px;
    font-size: 20px;
    color: #333;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid var(--pm-c);
}

.public_title .more {
    font-size: 12px;
    color: var(--pm-c);
    padding-right: 14px;
    position: relative;
}

.public_title .more::after {
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    right: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/public_title_more.png);
}


.index_gftj {
    height: 536px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/gftjBgi.png);
    margin-bottom: 20px;
}

.index_gftj .tj::before {
    background-image: url(../images/gftj.png);
}

.index_gftj .lb::before {
    background-image: url(../images/gift.png);
}

.index_gftj .content {
    padding-top: 20px;
}

.index_gftj .content .gftj {
    margin-right: 30px;
}

.index_gftj .content .gftj .itemBox .item {
    height: 130px;
    padding: 15px;
    width: 406px;
    height: 130px;
    background: #FFF;
    border-radius: 4px;
}

.index_gftj .content .gftj .itemBox .item .thum {
    width: 160px;
    height: 100px;
    position: relative;
    margin-right: 15px;
    border-radius: 2px;
}

.index_gftj .content .gftj .itemBox .item .thum .score {
    position: absolute;
    left: 0;
    top: 10px;
    width: 40px;
    height: 23px;
    line-height: 23px;
    text-align: center;
    background: #F28A2A;
    border-radius: 0px 2px 2px 0px;
    color: #FFF;
    font-size: 12px;
}

.index_gftj .content .gftj .itemBox .item .thum .score span {
    font-size: 16px;
}

.index_gftj .content .gftj .itemBox .item .txtBox {
    max-width: 200px;
}

.index_gftj .content .gftj .itemBox .item .title {
    font-size: 16px;
    color: #333;
}

.index_gftj .content .gftj .itemBox .item .text {
    display: block;
    font-size: 14px;
    color: #666;
    margin: 16px 0 26px;
}

.index_gftj .content .gftj .itemBox .item .tagBox {
    font-size: 12px;
    color: #999;
}

.index_gftj .content .gift {
    width: 340px;
}

.index_gftj .content .gift .giftTopBox .item {
    margin-bottom: 24px;
}

.index_gftj .content .gift .giftTopBox .item:last-child {
    margin-bottom: 18px;
}

.index_gftj .content .gift .giftTopBox .item .thum {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    position: relative;
    margin-right: 10px;
}

.index_gftj .content .gift .giftTopBox .item .txtBox {
    max-width: 200px;
}

.index_gftj .content .gift .giftTopBox .item .txtBox .title {
    font-size: 14px;
    color: #333;
}

.index_gftj .content .gift .giftTopBox .item .txtBox .text {
    display: block;
    font-size: 12px;
    color: #666;
    margin: 10px 0 12px;
}

.index_gftj .content .gift .giftTopBox .item .txtBox .progress {
    font-size: 12px;
    color: #999;
}

.index_gftj .content .gift .giftTopBox .item .txtBox .uk-progress {
    margin: 0;
    background-color: #D9D9D9;
    height: 8px;
    width: 100px;
    margin-right: 10px;
}

.progress progress::-webkit-progress-value {
    background-color: var(--pm-c);
    border-radius: 10px;
}

.index_gftj .content .gift .get {
    display: block;
    width: 40px;
    height: 26px;
    border-radius: 4px;
    border: 1px solid var(--pm-c);
    color: var(--pm-c);
    line-height: 26px;
    text-align: center;
    font-size: 13px;
}

.index_gftj .content .gift .get:hover {
    color: #fff;
    background-color: var(--pm-c);
}

.index_gftj .content .gift .list li {
    margin-bottom: 14px;
}

.index_gftj .content .gift .list li::before {
    background-color: var(--pm-c);
    top: 10px;
}

.index_gftj .content .gift .list li .title {
    max-width: 270px;
}

.index_gameDown {
    margin-bottom: 54px;
}

.index_gameDown .content {
    margin-left: 0;
}

.index_gameDown .content .tab {
    margin-right: 26px;
    padding-left: 0;
}

.index_gameDown .content .tab ul {
    width: 230px;
    height: 404px;
    background: #F7F7F7;
    padding: 32px 35px;
}

.index_gameDown .content .tab ul li {
    margin-bottom: 20px;
}

.index_gameDown .content .tab ul li:last-child {
    margin-bottom: 0;
}

.index_gameDown .content .tab ul li a {
    display: block;
    width: 160px;
    height: 40px;
    background: #fff;
    border-radius: 4px;
    position: relative;
    font-size: 16px;
    color: #333;
    line-height: 32px;
    text-align: center;
    border: 1px solid #E1E1E1;
}

.index_gameDown .content .tab ul li.uk-active a {
    background-color: var(--pm-c);
    border: none;
    color: #fff;
}

.index_gameDown .content .tab ul li a::after {
    display: block;
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #E0E0E0;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.index_gameDown .content .tab ul li.uk-active a::after {
    background-color: var(--pm-c);
    border: none;
}

.index_gameDown .content .tabContent {
    padding-left: 0;
}

.index_gameDown .content .tabContent li {
    margin-top: 0;
}

.index_gameDown .content .tabContent .item {
    margin-bottom: 12px;
}

.index_gameDown .content .tabContent .item .thum {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    margin-right: 15px;
    position: relative;
}

.index_gameDown .content .tabContent .item .txtBox {
    max-width: 126px;
}

.index_gameDown .content .tabContent .item .txtBox .title {
    font-size: 14px;
    color: #333;
}

.index_gameDown .content .tabContent .item .txtBox .tagBox {
    font-size: 12px;
    color: #999;
    margin: 8px 0;
}

.index_gameDown .content .tabContent .item .txtBox .tagBox span {
    display: inline-block;
}

.index_gameDown .content .tabContent .item .txtBox .tagBox span::before {
    display: inline-block;
    content: "|";
    margin: 0 6px;
}

.index_gameDown .content .tabContent .item .txtBox .tagBox span:first-child::before {
    display: none;
}

.index_gameDown .content .tabContent .item .txtBox .down {
    display: block;
    width: 64px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid var(--pm-c);
    color: var(--pm-c);
    line-height: 30px;
    padding-left: 22px;
    position: relative;
}

.index_gameDown .content .tabContent .item .txtBox .down::before {
    display: block;
    width: 16px;
    height: 16px;
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/gameDown.png);
    left: 6px;
    top: 7px;
}

.index_gameDown .content .tabContent .item .txtBox .down:hover {
    background-color: var(--pm-c);
    color: #fff;
}

.index_gameDown .content .tabContent .item .txtBox .down:hover::before {
    background-image: url(../images/gameDown_curr.png);
}

.index_news {
    margin-bottom: 54px;
}

.sp::before {
    background-image: url(../images/video.png);
}

.zx::before {
    background-image: url(../images/news.png);
}

.index_news .video {
    width: 400px;
    margin-right: 40px;
}

.index_news .video .top1 {
    margin-bottom: 20px;
    position: relative;
}

.index_news .video .top1 .img {
    display: block;
    overflow: hidden;
    border-radius: 2px 2px 0px 0px;
    width: 100%;
    height: 210px;
    position: relative;
    margin-bottom: 10px;
}

.index_news .video .top1 .btn::before {
    display: block;
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    background: var(--pm-c);
    border-radius: 50%;
    border: 7px solid #FFF;
    box-sizing: content-box;
    background-repeat: no-repeat;
    background-size: 20px;
    background-image: url(../images/bf.png);
    background-position: center;
    z-index: 2;
    bottom: -8px;
    right: 0;
}

.index_news .video .top1 .title {
    font-size: 14px;
    color: #333;
    max-width: 330px;
}

.index_news .video .btm {}

.index_news .video .btm .uk-width-1-2 {
    margin-right: 20px;
    position: relative;
}

.index_news .video .btm .uk-width-1-2:last-child {
    margin-right: 0;
}

.index_news .video .btm .img {
    display: block;
    overflow: hidden;
    border-radius: 2px;
    position: relative;
    width: 190px;
    height: 120px;
    margin-bottom: 6px;
}

.index_news .video .btm .btn::before {
    display: block;
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    background: var(--pm-c);
    border-radius: 50%;
    border: 5px solid #FFF;
    box-sizing: content-box;
    background-repeat: no-repeat;
    background-size: 14px;
    background-image: url(../images/bf.png);
    background-position: center;
    z-index: 2;
    bottom: -6px;
    right: 0;
}

.index_news .video .btm .title {
    font-size: 12px;
    color: #333;
    max-width: 140px;
}

.index_news .news {}

.index_news .news .news_box {}

.index_news .news .news_box .left {
    margin-right: 30px;
}

.index_news .news .news_box .left .itemBox {
    margin-bottom: 30px;
}

.index_news .news .news_box .left .itemBox .item {
    margin-bottom: 20px;
}

.index_news .news .news_box .left .itemBox .item .title {
    font-size: 14px;
    color: #333;
    max-width: 380px;
    margin-bottom: 12px;
}
.sideBar .index_news .news .news_box .left .itemBox .item .title{
	max-width: 340px;
}
.index_news .news .news_box .left .itemBox .item .title span {
    display: inline-block;
    color: var(--pm-c);
}

.index_news .news .news_box .left .itemBox .item .title span::after {
    display: inline-block;
    color: var(--pm-c);
    content: "|";
    margin: 0 4px;
}
.sideBar .index_news .news .news_box .left .itemBox .item .title a{
	font-size: 14px;
	color: #333;
}
.index_news .news .news_box .left .itemBox .item .box {
    border-radius: 2px;
    overflow: hidden;
}

.index_news .news .news_box .left .itemBox .item .box .thum {
    width: 150px;
    height: 90px;
    position: relative;
}

.index_news .news .news_box .left .itemBox .item .box .txtBox {
    height: 90px;
    background: #F7F7F7;
    width: 250px;
    padding: 10px 15px;
    font-size: 12px;
    color: #666;
}

.index_news .news .news_box .left .itemBox .item .box .txtBox .text {
    display: block;
    margin-bottom: 14px;
    line-height: 20px;
}

.index_news .news .news_box .list li {
    margin-bottom: 18px;
}

.index_news .news .news_box .list li a {
    max-width: 290px;
}

.index_news .news .news_box .list li::before {
    background-color: var(--pm-c);
}

.index_news .news .news_box .right .img {
    position: relative;
    display: block;
    border-radius: 2px;
    width: 340px;
    height: 170px;
    overflow: hidden;
    margin-bottom: 18px;
}

.index_news .news .news_box .right .img span {
    display: block;
    width: 100%;
    height: 38px;
    line-height: 38px;
    text-align: center;
    padding: 0 15px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.tj::before {
  background-image: url(../images/yx.png);
}
.yy::before {
  background-image: url(../images/yy.png);
}

.sygl::before {
  background-image: url(../images/sygl.png);
}

.djyygl::before {
  background-image: url(../images/djyygl.png);
}

.index_strategy {
  margin-bottom: 54px;
}

.index_strategy .left {
  width: 830px;
  margin-right: 30px;
}

.index_strategy .left .bLeft {
  margin-right: 30px;
}

.index_strategy .left .img {
    display: block;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    width: 190px;
    height: 120px;
    margin-bottom: 20px;
}

.index_strategy .left .img.img1 {
    width: 400px;
    height: 200px;
    margin-bottom: 20px;
}

.index_strategy .left .img.img2 {
    margin-right: 20px;
}

.index_strategy .left .img span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 38px;
    text-align: center;
    line-height: 38px;
    padding: 0 15px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-size: 14px;
}

.index_strategy .list li::before {
    background-color: var(--pm-c);
}

.index_strategy .itemBox .item {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f2f2f2;
}

.index_strategy .itemBox .item .title {
    max-width: 380px;
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
}

.index_strategy .itemBox .item .title span {
    color: var(--pm-c);
}

.index_strategy .itemBox .item .title span::after {
    display: inline-block;
    content: "|";
    margin: 0 4px;
}

.index_strategy .itemBox .item .thum {
    width: 150px;
    height: 92px;
    position: relative;
    margin-right: 15px;
    border-radius: 2px;
}

.index_strategy .itemBox .item .txtBox {
    font-size: 12px;
    color: #666;
    max-width: 235px;
}

.index_strategy .itemBox .item .text {
    line-height: 20px;
    margin-bottom: 30px;
}

.index_strategy .itemBox .item .time {
    color: #999;
}

.index_strategy .itemBox .item .see {
    display: block;
    width: 52px;
    height: 26px;
    background: #fff;
    border-radius: 3px;
    border: 1px solid var(--pm-c);
    line-height: 26px;
    text-align: center;
    color: var(--pm-c);
}

.index_strategy .itemBox .item .see:hover {
    background-color: var(--pm-c);
    color: #fff;
}

.index_strategy .bright .img {
    display: block;
    position: relative;
    width: 400px;
    height: 186px;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0;
}


.index_strategy .right {
    width: 340px;
}

.index_strategy .right .item {
    margin-bottom: 12px;
    padding-bottom: 14px;
}

.index_strategy .right .item:last-child {
    border: none;
    margin-bottom: 0;
}

.index_strategy .right .item .title {
    font-size: 14px;
    color: #999;
}

.index_strategy .right .item .thum {
    width: 120px;
    height: 70px;
}

.index_strategy .right .item .top {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    display: block;
}

.index_strategy .right .item .txtBox {
    max-width: 205px;
}

.index_strategy .right .item .txtBox .text {
    font-size: 12px;
    color: #999;
    margin-bottom: 0;
}

.index_yxmx {
    width: 100%;
}

.yxmx::before {
    background-image: url(../images/yxmx.png);
}

.index_yxmx .artBox {
    margin-bottom: 54px;
    position: relative;
    height: 310px;
    width: 100%;
}

.index_yxmx .artBox a {
    display: block;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    /* box-sizing: content-box; */
    width: 100%;
    height: 100%;
}

.index_yxmx .artBox a:hover {
    border: 10px solid #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
    z-index: 3;
    transform: scale(1.02);
    transform-origin: center;
    /* 设置变换的基点，默认是元素的中心 */
}

.index_yxmx .artBox .art {
    position: absolute;
}

.index_yxmx .artBox .art1 {
    width: 290px;
    height: 150px;
    left: 0;
    top: 0;
}

.index_yxmx .artBox .art2 {
    width: 290px;
    height: 150px;
    left: 0;
    top: 160px;
}

.index_yxmx .artBox .art3 {
    width: 450px;
    height: 310px;
    left: 300px;
}


.index_yxmx .artBox .art4 {
    width: 170px;
    height: 310px;
    right: 270px;
    top: 0;
}


.index_yxmx .artBox .art5 {
    width: 260px;
    height: 150px;
    right: 0;
    top: 0;
}



.index_yxmx .artBox .art6 {
    width: 260px;
    height: 150px;
    right: 0;
    top: 160px;
}



.index_other {
    margin-bottom: 24px;
}

.jxGame::before {
    background-image: url(../images/jxyx.png);
}

.cynews::before {
    background-image: url(../images/cyzx.png);
}

.tjstrategy::before {
    background-image: url(../images/tjzj.png);
}

.index_other .jxyx {
    width: 400px;
}

.index_other .jxyx .itemBox .uk-width-1-4.uk-grid-margin {
    margin-top: 38px;
}

.index_other .jxyx .itemBox .item .thum {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    position: relative;
    margin-bottom: 8px;
}

.index_other .jxyx .itemBox .item .title {
    max-width: 82px;
    font-size: 14px;
    color: #333;
    text-align: center;
}

.index_other .jxyx .itemBox .item .thum:hover::before {
    z-index: 2;
}

.index_other .jxyx .itemBox .item .thum::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    display: block;
    background: rgba(0, 0, 0, .5);
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: 32px;
    background-image: url(../images/down.png);
    background-position: center;
}

.index_other .cyzx {
    width: 400px;
    margin: 0 30px;
}

.index_other .cyzx .itemBox .item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
}

.index_other .cyzx .itemBox .item:last-child {
    margin-bottom: 0;
    border: none;
    padding-bottom: 0;
}

.index_other .cyzx .itemBox .item .top {
    margin-bottom: 18px;
}

.index_other .cyzx .itemBox .item .top .img {
    width: 100px;
    height: 70px;
    border-radius: 2px;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
}

.index_other .cyzx .itemBox .item .top .box {
    max-width: 240px;
}

.index_other .cyzx .itemBox .item .top .title {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.index_other .cyzx .itemBox .item .top .text {
    font-size: 14px;
    color: #666;
}

.index_other .cyzx .itemBox .item .top .detail {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--pm-c);
    background-image: url(../images/detail.png);
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
}

.index_other .cyzx .itemBox .item .top .detail:hover {
    background-image: url(../images/detail_curr.png);
    background-color: var(--pm-c);
}

.index_other .cyzx .itemBox .item .list li {
    margin-bottom: 19px;
}

.index_other .cyzx .itemBox .item .list li::before {
    background-color: var(--pm-c);
}

.index_other .cyzx .itemBox .item .list li:last-child {
    margin-bottom: 0;
}

.index_other .tjzj {
    width: 340px;
}

.index_other .tjzj .img {
    display: block;
    position: relative;
    overflow: hidden;
    width: 340px;
    height: 130px;
    margin-bottom: 18px;
}

.index_other .tjzj .list li {
    padding-left: 0;
    height: 30px;
    background: #F7F7F7;
    border-radius: 2px;
    line-height: 30px;
    padding-right: 10px;
    margin-bottom: 12px;
}

.index_other .tjzj .list li .title {
    max-width: 220px;
}

.index_other .tjzj .list li::before {
    display: none;
}

.index_other .tjzj .list li .tag {
    width: 60px;
    height: 30px;
    background-image: url(../images/tagBgi.png);
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 30px;
}

.index_other .tjzj .list li .time {
    font-size: 13px;
}

.index_rank {
    height: 624px;
    background: #F7F7FA;
    margin-bottom: 20px;
    padding: 20px 0 34px;
}

.index_rank .itemBox {}

.index_rank .itemBox .item {
    width: 380px;
    height: 570px;
    background: #fff;
    border-radius: 4px;
    padding-top: 20px;
}

.index_rank .itemBox .item .top {
    margin: 0 auto 28px;
    width: 150px;
    text-align: center;
    font-size: 20px;
    color: #333;
    font-weight: bold;
    padding-left: 30px;
    position: relative;
}

.index_rank .itemBox .item .top::before {
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: -2px;
}

.index_rank .itemBox .item .top.top1::before {
    background-image: url(../images/rank_1.png);
}

.index_rank .itemBox .item .top.top2::before {
    background-image: url(../images/rank_2.png);
}

.index_rank .itemBox .item .top.top3::before {
    background-image: url(../images/rank_3.png);
}

.index_rank .itemBox .item .list {
    padding: 0 20px;
}

.index_rank .itemBox .item .list li {
    padding-left: 0;
    margin-bottom: 22px;
}

.index_rank .itemBox .item .list li::before {
    display: none;
}

.index_rank .itemBox .item .list li .rankList {}

.index_rank .itemBox .item .list li .rankList .order {
    width: 20px;
    height: 20px;
    background: #60ACFF;
    border-radius: 3px;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    color: #fff;
    margin-right: 10px;
}

.index_rank .itemBox .item .list li .rankList .title {
    max-width: 270px;
}

.index_rank .itemBox .item .list li .rankList .tag {
    font-size: 12px;
    color: #999;
}

.index_rank .itemBox .item .list li.active .rankList {
    display: none;
}

.index_rank .itemBox .item .list li.active .rankPanel {
    display: flex;
    padding: 15px 20px;
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/rankBgi1.png);
    color: #fff;
}

.index_rank .itemBox .item .list li .rankPanel {
    display: none;
}

.index_rank .itemBox .uk-width-1-3:nth-child(2) .item .list li .rankPanel {
    background-image: url(../images/rankBgi2.png);
}

.index_rank .itemBox .uk-width-1-3:nth-child(3) .item .list li .rankPanel {
    background-image: url(../images/rankBgi3.png);
}

.index_rank .itemBox .uk-width-1-3:nth-child(2) .item .list li .rankList .order {
    background-color: #FFA33B;
}

.index_rank .itemBox .uk-width-1-3:nth-child(3) .item .list li .rankList .order {
    background-color: #A47EFE;
}

.index_rank .itemBox .item .list li .rankPanel .order {
    margin-right: 20px;
    font-size: 26px;
}

.index_rank .itemBox .item .list li .rankPanel .thum {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    position: relative;
    margin-right: 15px;
}

.index_rank .itemBox .item .list li .rankPanel .txtBox {
    max-width: 150px;
}

.index_rank .itemBox .item .list li .rankPanel .txtBox .title {
    font-size: 14px;
    color: #fff;
}

.index_rank .itemBox .item .list li .rankPanel .txtBox .type {
    font-size: 12px;
    margin: 8px 0;
}

.index_rank .itemBox .item .list li .rankPanel .txtBox .size {
    font-size: 12px;
}

.yqlj::before {
    background-image: url(../images/friend.png);
}

.index_friend {
    margin-bottom: 30px;
}

.index_friend .aBox {
    line-height: 36px;
}

.index_friend .aBox a {
    display: inline-block;
    font-size: 14px;
    color: #666;
}

.index_friend .aBox a:first-child::before {
    display: none;
}

.index_friend .aBox a::before {
    display: inline-block;
    content: "";
    margin: 0 10px;
}

.footer {
    font-size: 14px;
    color: #999;
    background-color: #333;
    height: 180px;
    text-align: center;
    padding-top: 40px;
}

.footer a {
    font-size: 14px;
    color: #999;
}

.footer .name {
    color: #ccc;
}

.footer .aBox {
    margin: 24px 0;
}

.footer .aBox a::before {
    display: inline-block;
    content: "|";
    margin: 0 20px;
}

.footer .aBox a:first-child::before {
    display: none;
}

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

.pagination .page-item {
    display: inline-block;
    margin: 5px;
    font-size: 13px;
    border: 1px solid #E6E6E6;
    color: #555;
    background: #fff;
}

.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 a {
    display: inline-block;
    color: #666;
}

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

.pagination li:last-child {
    display: inline-block;
}

/* 咨询中心页面 */
.crumbs {
    padding-left: 20px;
    margin-bottom: 30px;
}

.crumbs::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/crumbs.png);
}

.crumbs a:last-child {
    color: #4d4d4d;
}

.module_nav {}

.module_nav li {
    position: relative;
    min-width: 70px;
    display: inline-block;
}

.module_nav li a {
    display: inline-block;
    margin-right: 30px;
    font-size: 16px;
    color: #666;
    min-width: 70px;
    position: relative;
    z-index: 2;
}

.module_nav li.active::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 80%;
    height: 8px;
    background: linear-gradient(90deg, #939CFC 0%, rgba(147, 156, 252, 0) 100%);
    border-radius: 99px;
}

.module_nav li.active a {
    color: #333;
    font-weight: bold;
}

.list_news {}

.list_news .list_news_box {
    margin-right: 40px;
    width: 100%;
}

.list_news .list_news_box .itemBox {
    margin-top: 28px;
}

.list_news .list_news_box .itemBox .item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
    padding-right: 20px;
}

.list_news .list_news_box .itemBox .item:hover {
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.list_news .list_news_box .itemBox .item:last-child {
    margin-bottom: 0;
    border: none;
}

.list_news .list_news_box .itemBox .item .thum {
    width: 200px;
    height: 130px;
    border-radius: 2px;
    position: relative;
    margin-right: 25px;
}

.list_news .list_news_box .itemBox .item .txtBox {
    max-width: 570px;
}

.list_news .list_news_box .itemBox .item .txtBox .title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.list_news .list_news_box .itemBox .item .txtBox .text {
    font-size: 14px;
    color: #666;
    display: block;
    margin: 20px 0 40px;
}

.list_news .list_news_box .itemBox .item .txtBox .tagBox {
    font-size: 12px;
    color: #999;
}

.list_news .list_news_box .itemBox .item .txtBox .tagBox .author {
    padding-left: 20px;
    position: relative;
}

.list_news .list_news_box .itemBox .item .txtBox .tagBox .time {
    padding-left: 20px;
    position: relative;
}

.list_news .list_news_box .itemBox .item .txtBox .tagBox .author::before {
    position: absolute;
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: -1px;
    background-image: url(../images/author.png);
}

.list_news .list_news_box .itemBox .item .txtBox .tagBox .time::before {
    position: absolute;
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
    background-image: url(../images/time.png);
}


.sideBar {
    width: 340px;
}

.sideBar .public_title .label {
    padding-left: 0;
}

.sideBar .index_news .news .news_box .left .itemBox .item .box .txtBox {
    width: 190px;
}

.sideBar .index_news .news .news_box .left {
    margin-right: 0;
}

.sideBar .index_content {
    margin-top: 0;
}

.sideBar .index_news {
    margin-bottom: 20px;
}

.sideBar .index_content .left .new_activity .itemBox .item .txtBox {
    max-width: 205px;
}

.sideBar .index_content .left {
    width: 100%;
    margin-right: 0;
}

.sideBar .sideBar_rank .itemBox .item:last-child .panel,
.sideBar .sideBar_rank .itemBox .item:last-child .list {
    border: none;
}

.sideBar .sideBar_rank .itemBox .item .list {
    height: 65px;
    border-bottom: 1px solid #F8F8F8;
    padding: 16px 0;
}

.sideBar .sideBar_rank .itemBox .item .panel {
    padding: 16px 0;
    height: 101px;
    border-bottom: 1px solid #F8F8F8;
    display: none;
}

.sideBar .sideBar_rank .itemBox .item:nth-child(1) .order {
    background-color: #FF6666;
}

.sideBar .sideBar_rank .itemBox .item:nth-child(2) .order {
    background-color: #FF9966;
}

.sideBar .sideBar_rank .itemBox .item:nth-child(3) .order {
    background-color: #FFCC66;
}

.sideBar .sideBar_rank .itemBox .item .order {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    margin-right: 15px;
    background: #ccc;
    border-radius: 3px;
}

.sideBar .sideBar_rank .itemBox .item .thum {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    position: relative;
    margin-right: 15px;
}

.sideBar .sideBar_rank .itemBox .item .txtBox {
    max-width: 160px;
}

.sideBar .sideBar_rank .itemBox .item .title {
    font-size: 14px;
    color: #333;
    max-width: 200px;
}

/* 评分图标 */
.star {
    height: 16px;
    width: 80px;
    background: url('../images/star.png') repeat-x center/16px;
    display: inline-block;
    margin: 8px 0;
}

.star:before {
    content: "";
    display: block;
    background: url('../images/star_curr.png') repeat-x 0/16px;
    height: 16px;
}

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

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

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

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

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

.sideBar .sideBar_rank .itemBox .item .tagBox {
    font-size: 12px;
    color: #999;
}

.sideBar .sideBar_rank .itemBox .item .tagBox span::before {
    display: inline-block;
    content: "|";
    margin: 0 4px;
}

.sideBar .sideBar_rank .itemBox .item .tagBox span:first-child::before {
    display: none;
}

.sideBar .sideBar_rank .itemBox .item .panel .thum {
    width: 70px;
    height: 70px;
    border-radius: 15px;
}

.sideBar .sideBar_rank .itemBox .item .down {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid var(--pm-c);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    background-image: url(../images/rank_down.png);
}

.sideBar .sideBar_rank .itemBox .item .down:hover {
    background-color: var(--pm-c);
    background-image: url(../images/rank_down_curr.png);
}

.sideBar .sideBar_rank .itemBox .item.active .list {
    display: none;
}

.sideBar .sideBar_rank .itemBox .item.active .panel {
    display: flex;
}

/* 咨询详情页面 */
.show_news {}

.show_news .show_news_box {
    width: 840px;
    margin-right: 40px;
}

.show_news .show_news_box .titleBox {
    text-align: center;
    margin-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #f2f2f2;
}

.show_news .show_news_box .titleBox h1 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    margin-bottom: 40px;
}

.show_news .show_news_box .titleBox .info {
    font-size: 14px;
    color: #999;
    padding: 0 160px;
}

.show_news .show_news_box .contentBox {
    margin-bottom: 90px;
}

.show_news .show_news_box .contentBox p {
    line-height: 38px;
    font-size: 16px;
    color: #666;
    text-indent: 2em;
}

.show_news .show_news_box .contentBox p img {
    width: 460px;
    height: auto;
    margin: 10px auto;
    display: block;
}

.show_news .label {
    padding-left: 0;
}

.show_news .label::before {
    display: none;
}

.about_strategy {
    margin-bottom: 40px;
}

.about_strategy .list li {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #f2f2f2;
}

.about_strategy .list li:last-child {
    margin-bottom: 0;
    border: none;
    padding-bottom: 0;
}

.about_game {
    margin-bottom: 60px;
}

.about_game .itemBox {}

.about_game .itemBox .item {
    height: 70px;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: #faf9f9;
    padding: 10px;
}

.about_game .itemBox .item .thum {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 10px;
    position: relative;
}

.about_game .itemBox .item .txtBox {
    max-width: 250px;
    margin-right: 10px;
}

.about_game .itemBox .item .txtBox .title {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
}

.about_game .itemBox .item .txtBox .text {
    font-size: 12px;
    color: #999;
}

.about_game .itemBox .item .score {
    font-size: 20px;
    color: #F28A2A;
    display: block;
    height: 40px;
    padding-left: 34px;
    border-left: 1px solid #e6e6e6;
    line-height: 40px;
    position: relative;
}

.about_game .itemBox .item .score::before {
    display: inline-block;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    width: 20px;
    height: 20px;
    background-image: url(../images/score_star.png);
    position: absolute;
    left: 10px;
    top: 10px;
}

.list_game_nav {
    border-bottom: 1px solid #F2F2F2;
    margin-bottom: 24px;
}

.list_game_nav li {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
}

.list_game_nav li a {
    display: inline-block;
    width: 96px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    color: #333;
    border: 1px solid #eaeaea;
    background-color: #f9f9f9;
}

.list_game_nav li.active a {
    background-color: var(--pm-c);
    border: none;
    color: #fff;
}

/* 手游下载页面 */
.list_game {}

.list_game_itemBox {}

.list_game_itemBox .item {
    height: 176px;
    border-radius: 4px;
    padding: 20px 24px 20px 20px;
    border: 1px solid #ededed;
}

.list_game_itemBox .item .top {
    padding-bottom: 16px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f8f8f8;
}

.list_game_itemBox .item .top .thum {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    position: relative;
    margin-right: 18px;
}

.list_game_itemBox .item .top .txtBox {
    max-width: 232px;
}

.list_game_itemBox .item .top .txtBox .title {
    font-size: 16px;
    color: #333;
}

.list_game_itemBox .item .top .txtBox .tagBox {
    font-size: 12px;
    color: #666;
}

.list_game_itemBox .item .top .txtBox .tagBox .type {
    margin: 12px 0;
}

.list_game_itemBox .item .top .txtBox .down {
    display: block;
    width: 84px;
    height: 36px;
    background: #F1F1FF;
    border-radius: 4px;
    font-size: 14px;
    color: var(--pm-c);
    text-align: center;
    line-height: 36px;
    position: relative;
    padding-left: 10px;
}

.list_game_itemBox .item .top .txtBox .down::before {
    display: block;
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/gameDown.png);
    left: 15px;
    top: 9px;
}

.list_game_itemBox .item .top .txtBox .down:hover {
    color: #fff;
    background-color: var(--pm-c);
}

.list_game_itemBox .item .top .txtBox .down:hover::before {
    background-image: url(../images/gameDown_curr.png);
}

.list_game_itemBox .item .btm {
    padding-left: 24px;
    font-size: 12px;
    color: #999;
    position: relative;
}

.list_game_itemBox .item .btm .text {
    max-width: 316px;
}

.list_game_itemBox .item .btm::before {
    display: block;
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/info.png);
    left: 0;
    top: -2px;
}

.list_game_itemBox .item:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}

/* 手游下载详情 */
.show_game {}

.show_game .contentBox {}

.show_game .contentBox .content {
    margin-right: 40px;
}

.show_game .contentBox .content .titleBox {
    margin-bottom: 20px;
}

.show_game .contentBox .content .titleBox .thum {
    width: 140px;
    height: 140px;
    border-radius: 35px;
    position: relative;
    margin-right: 30px;
}

.show_game .contentBox .content .titleBox .txtBox {
    max-width: 650px;
}

.show_game .contentBox .content .titleBox .txtBox .title {
    font-size: 31px;
    color: #333;
    margin-bottom: 34px;
    font-weight: bold;
}

.show_game .contentBox .content .titleBox .txtBox .tagBox {
    font-size: 14px;
    color: #808080;
}

.show_game .contentBox .btnBox {}

.show_game .contentBox .btnBox .btn {
    display: inline-block;
    width: 200px;
    height: 50px;
    border-radius: 8px;
    margin-right: 20px;
    line-height: 50px;
    font-size: 17px;
    color: #fff;
    text-align: center;
    padding-left: 20px;
    position: relative;
		background: #666;
}

.show_game .contentBox .btnBox .btn::before {
    display: block;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 40px;
    top: 15px;
}

.show_game .contentBox .btnBox .az {
    background-color: #33CD83;
}

.show_game .contentBox .btnBox .pg {
    background-color: #5C64F4;
}

.show_game .contentBox .btnBox .az::before {
    background-image: url(../images/az.png);
}

.show_game .contentBox .btnBox .pg::before {
    background-image: url(../images/pg.png);
}

.show_game .contentBox .btnBox .btn .QRcodeBox {
    display: none;
    position: absolute;
    bottom: -200px;
    left: 0;
    color: #666;
    font-size: 16px;
    width: 200px;
    height: 200px;
    background-color: #fff;
    box-sizing: border-box;
    padding: 25px;
    border-radius: 0 0 10px 10px;
    border: 1px solid var(--pm-c);
    border-top: none;
}

.show_game .contentBox .btnBox .btn:hover .QRcodeBox {
    display: block;
}

.show_content_title {
    width: 820px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 130px 50px;
    background-image: url(../images/show_content_title.png);
    background-position: left center;
    background-color: #F7F7F7;
    border-radius: 2px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    padding-left: 20px;
    line-height: 50px;
    margin-top: 40px;
    margin-bottom: 18px;
}

.show_game .contentBox .content .text_content {}

.list_game_package_content .details .box h3,
.show_game .contentBox .content .text_content h3 {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    position: relative;
    z-index: 2;
    margin: 20px 0 16px;
}

.list_game_package_content .details .box h3::after,
.show_game .contentBox .content .text_content h3::after {
    background: linear-gradient(90deg, #BCC2FF 0%, rgba(188, 194, 255, 0) 100%);
    border-radius: 99px;
    display: block;
    width: 60px;
    height: 8px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.list_game_package_content .details .box p,
.show_game .contentBox .content .text_content p {
    font-size: 14px;
    color: #4d4d4d;
    line-height: 38px;
}

.show_game .contentBox .content h2,
.show_game .contentBox .content h3{
    font-size: 18px;
    color: #333;
    font-weight: bold;
    position: relative;
    z-index: 2;
    margin: 20px 0 16px;
}

/* 游戏截图 */
.show_game .contentBox .screenshots .allMore_screenhot_icon p {
    font-size: 20px !important;
}

.show_game .contentBox .screenshots .allMore .allMore_screenhot_icon.allMore_now_icon::before {
    width: 24px;
    height: 24px;
    background-color: transparent;
    background-image: url(../images/screenHot.png)
}

.show_game .contentBox .screenshots .sliderBox {
    width: 820px;
    margin: 0;
    overflow: hidden;
}

.show_game .contentBox .screenshots .sliderBox .slide {
}

.show_game .contentBox .screenshots .sliderBox .slide li {
    width: 33.33%;
}

.show_game .contentBox .screenshots .sliderBox .slide li a {
    width: 250px;
    display: inline-block;
    overflow: hidden;
    position: relative;
    height: 440px;
    margin-right: 35px;
}

.show_game .contentBox .screenshots .sliderBox .slide_toggle {
    height: 8px;
    margin-top: 10px !important;
    background-color: #F0F0F0;
    border-radius: 20px;
    overflow: hidden;
}

.show_game .contentBox .screenshots .sliderBox .slide_toggle li {
    display: flex;
    width: 33.3%;
    padding-left: 0;
}

.show_game .contentBox .screenshots .sliderBox .slide_toggle li a {
    display: inline-block;
    width: 100%;
    height: 8px;
    background-color: transparent;
    border-radius: 20px;
    border: none;
}

.show_game .contentBox .screenshots .sliderBox .slide_toggle li.uk-active a {
    display: inline-block;
    width: 100%;
    height: 8px;
    background-color: #ccc;
    border-radius: 20px;
}

/* .show_content_strategy {
    margin-top: 40px;
} */

.show_content_tj .label,
.show_content_strategy .label {
    padding-left: 0;
}

.show_content_tj .label::before,
.show_content_strategy .label::before {
    display: none;
}

.show_content_strategy .index_strategy {
    margin-bottom: 26px;
}

.show_content_strategy .index_strategy {
    margin-left: -30px;
}

.show_content_strategy .index_strategy .uk-width-1-2 {
    padding-left: 30px;
}

.show_content_strategy .index_strategy .left {
    width: auto;
    margin-right: 0;
}

.show_content_tj {
    margin-bottom: 60px;
}

.show_content_tj .itemBox {}

.show_content_tj .itemBox .item {
    width: 14.28%;
}

.show_content_tj .itemBox .item .thum {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    position: relative;
    margin: 0 auto;
}

.show_content_tj .itemBox .item .title {
    width: 84px;
    font-size: 14px;
    color: #333;
    text-align: center;
    margin: 10px auto 12px;
}

.show_content_tj .itemBox .item .down {
    display: block;
    width: 68px;
    border-radius: 4px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid var(--pm-c);
    color: var(--pm-c);
    font-size: 14px;
    margin: 0 auto;
}

.show_content_tj .itemBox .item .down:hover {
    background-color: var(--pm-c);
    color: #fff;
}

/* 专辑页面 */
.list_collection_nav {
    margin: 30px auto 28px;
}

.list_collection_nav .item {
    display: inline-block;
}

.list_collection_nav .item a {
    font-size: 16px;
    color: #666;
    display: block;
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-right: 30px;
}

.list_collection_nav .item.active a::before {
    display: block;
    position: absolute;
    content: "";
    width: 64px;
    height: 8px;
    z-index: -1;
    background: linear-gradient(90deg, #939CFC 0%, rgba(147, 156, 252, 0) 100%);
    border-radius: 99px 99px 99px 99px;
    bottom: 0;
    left: 0;
}

.list_collection_nav .item.active a {
    color: #333;
    font-weight: bold;
}

.list_collection_itemBox .item {
    height: 200px;
    padding: 20px 20px 24px 20px;
    border: 1px solid #ededed;
    border-radius: 4px;
}

.list_collection_itemBox .item:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}

.list_collection_itemBox .item .titleBox {
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 2px solid #F8F8F8;
}

.list_collection_itemBox .item .titleBox .title {
    font-size: 18px;
    color: #333;
    display: block;
    max-width: 260px;
    font-weight: bold;
}

.list_collection_itemBox .item .titleBox .time {
    font-size: 12px;
    color: #999;
}

.list_collection_itemBox .item .thumBox .tj {
    width: 32px;
    height: 96px;
    text-align: center;
    writing-mode: vertical-rl;
    /* 文字从上到下，从右到左排列 */
    font-size: 16px;
    color: var(--pm-c);
    background-repeat: no-repeat;
    background-image: url(../images/collection.png);
    background-size: cover;
    line-height: 32px;
    letter-spacing: 4px;
    margin-right: 16px;
}

.list_collection_itemBox .item .thumBox .tj:hover {
    background-image: url(../images/collection_curr.png);
    color: #fff;
}

.list_collection_itemBox .item .thumBox .itemBox .box .thum {
    width: 70px;
    height: 70px;
    position: relative;
    border-radius: 18px;
    margin: 0 auto;
}

.list_collection_itemBox .item .thumBox .itemBox .box .name {
    font-size: 14px;
    color: #333;
    display: block;
    width: 80px;
    margin: 8px auto 0;
    text-align: center;
}

/* 专辑详情 */
.show_collection {}

.show_collection .titleBox {
    margin-bottom: 36px;
}

.show_collection .titleBox .left {
    margin-right: 30px;
}

.show_collection .titleBox .left .top {
    padding-bottom: 20px;
    margin-bottom: 18px;
    border-bottom: 2px solid #F8F8F8;
}

.show_collection .titleBox .left .top .thum {
    width: 110px;
    height: 110px;
    border-radius: 24px;
    margin-right: 30px;
    position: relative;
}

.show_collection .titleBox .left .top .txtBox {
    max-width: 600px;
}

.show_collection .titleBox .left .top .txtBox .title {
    font-size: 30px;
    color: #333;
    margin-bottom: 26px;
}

.show_collection .titleBox .left .top .txtBox .tagBox span {
    display: inline-block;
    margin-right: 4px;
    width: auto;
    padding: 0 20px;
    height: 30px;
    line-height: 30px;
    background-color: #f5f5f5;
    font-size: 13px;
    color: #999;
}

.show_collection .titleBox .left .top .txtBox .tagBox span:last-child {
    margin-right: 0;
}

.show_collection .titleBox .left .btm {
    font-size: 16px;
    color: #666;
}

.show_collection .titleBox .left .btm span {
    margin-right: 4px;
}

.show_collection .titleBox .left .btm .aBox {
    line-height: 44px;
}

.show_collection .titleBox .left .btm a {
    display: inline-block;
    margin-right: 12px;
    padding: 7px 8px 7px;
    border: 1px solid #37AFFF;
    color: #37AFFF;
    max-width: 180px;
}

.show_collection .titleBox .left .btm a:hover {
    background: #37AFFF;
    color: #fff;
}

.show_collection .titleBox .left .btm a:nth-child(2n) {
    border: 1px solid #7E87FF;
    color: #7E87FF;
}

.show_collection .titleBox .left .btm a:nth-child(2n):hover {
    color: #fff;
    background-color: #7E87FF;
}

.show_collection .titleBox .left .btm a:last-child {
    margin-right: 0;
}


.show_collection .titleBox .right {
    width: 370px;
    height: 180px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background: linear-gradient(90deg, #826CFE 0%, #9FAFFF 100%);
    position: relative;
    padding-top: 44px;
}

.show_collection .titleBox .right::before {
    position: absolute;
    display: block;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    top: 5px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/detail_bgi3.png);
    width: 116px;
    height: 34px;
    z-index: 2;
}

.show_collection .titleBox .right .content {
    height: 136px;
    width: 370px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/detail_bgi.png);
    padding: 28px;
}

.show_collection .titleBox .right .content .thum {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    margin-right: 18px;
    position: relative;
}

.show_collection .titleBox .right .content .txtBox {
    max-width: 210px;
}

.show_collection .titleBox .right .content .txtBox .title {
    font-size: 16px;
    color: #404040;
}

.show_collection .titleBox .right .content .txtBox .tagBox {
    margin: 13px 0;
    font-size: 12px;
    color: #666;
}

.show_collection .titleBox .right .content .txtBox .tagBox .score {
    color: #F28A2A;
    padding-left: 16px;
    position: relative;
    margin-right: 10px;
}

.show_collection .titleBox .right .content .txtBox .tagBox .score::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/score_star.png);
    width: 14px;
    height: 14px;
}

.show_collection .titleBox .right .content .txtBox .tagBox span::after {
    display: inline-block;
    content: "|";
    margin: 0 3px;
}

.show_collection .titleBox .right .content .txtBox .tagBox span:last-child::after {
    display: none;
}

.show_collection .titleBox .right .content .txtBox .text {
    font-size: 12px;
    color: #999;
}

.show_collection .label {
    padding-left: 0;
}

.show_collection .label::before {
    display: none;
}

.show_collection_detail {
    margin-bottom: 70px;
}

.show_collection_detail .list_game_itemBox .itemBox .item .order {
    display: block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/order.png);
    line-height: 26px;
    text-align: center;
    color: var(--pm-c);
    font-size: 12px;
}

.show_collection_detail .list_game_itemBox .item .top .txtBox .tagBox div {
    width: 50%;
    margin-bottom: 12px;
}

.show_collection_detail .list_game_itemBox .item .top .txtBox {
    max-width: 430px;
}

.show_collection_detail .list_game_itemBox .item .top .txtBox .tagBox {
    margin-top: 12px;
}

.show_collection_detail .list_game_itemBox .item .top .txtBox .tagBox .type {
    margin: 0;
}

.show_collection_detail .list_game_itemBox .item .top .txtBox .down {
    width: 114px;
    height: 40px;
    line-height: 40px;
}

.show_collection_detail .list_game_itemBox .item .top .txtBox .down::before {
    left: 30px;
    top: 12px;
}

.show_collection_detail .list_game_itemBox .item .btm .text {
    max-width: 500px;
}

.xgzj {
    margin-bottom: 40px;
}

.xgzj .list li {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 2px solid #F8F8F8;
}

.xgzj .list li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
}

.xgzj .list li .tag {
    font-size: 14px;
    color: var(--pm-c);

}

.xgzj .list li .tag::after {
    display: inline-block;
    content: "|";
    margin: 0 4px;
}

.xgzj .list li .title {
    max-width: 340px;
}

.recommendedAlbum {
    margin-bottom: 60px;
}

.recommendedAlbum .itemBox {}

.recommendedAlbum .itemBox .item {
    height: 196px;
    border: 1px solid #EDEDED;
    border-radius: 4px;
    padding: 15px 20px 20px 20px;
    position: relative;
}

.recommendedAlbum .itemBox .item:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}

.recommendedAlbum .itemBox .item .tj {
    position: absolute;
    right: 20px;
    top: 0;
    writing-mode: vertical-rl;
    /* 文字从上到下，从右到左排列 */
    letter-spacing: 4px;
    width: 30px;
    height: 48px;
    line-height: 30px;
    text-align: center;
    color: var(--pm-c);
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/tj.png);
    font-size: 14px;
}

.recommendedAlbum .itemBox .item .tj:hover {
    color: #fff;
    background-image: url(../images/tj_curr.png);
}

.recommendedAlbum .itemBox .item .title {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    max-width: 200px;
}

.recommendedAlbum .itemBox .item .tagBox {
    margin: 10px 0 30px;
    font-size: 12px;
    color: #999;
}

.recommendedAlbum .itemBox .item .tagBox span::after {
    display: inline-block;
    content: "|";
    margin: 0 4px;
}

.recommendedAlbum .itemBox .item .tagBox span:last-child::after {
    display: none;
}

.recommendedAlbum .itemBox .item .thum {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    position: relative;
    margin-bottom: 8px;
}

.recommendedAlbum .itemBox .item .name {
    font-size: 12px;
    color: #333;
    max-width: 60px;
}

/* 排行榜页面 */
.list_rank {}

.list_rank_banner {
    height: 140px;
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.list_rank_nav {
    margin-bottom: 40px;
}

.list_rank_nav .item a,
.list_rank_nav .item {
    display: inline-block;
    margin-right: 45px;
    width: 200px;
    height: 50px;
    border-radius: 4px;
    background-color: #f7f7f7;
    line-height: 50px;
    text-align: center;
    color: var(--pm-c);
    position: relative;
    margin-bottom: 20px;
}

.list_rank_nav .item a:nth-child(5n),
.list_rank_nav .item:nth-child(5n) {
    margin-right: 0;
}

.list_rank_nav .item.active a {
    color: #fff;
    background-color: var(--pm-c);
}

.list_rank_nav .item.active::before {
    background-color: var(--pm-c);
}

.list_rank_nav .item::before {
    display: block;
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: #f7f7f7;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    z-index: 2;
}

.list_rank_itemBox {
    margin-bottom: 60px;
}

.list_rank_itemBox .item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #F8F8F8;
}

.list_rank_itemBox .item:last-child {
    margin-bottom: 0;
    border: none;
    margin-bottom: 0;
}

.list_rank_itemBox .item .order {
    text-align: center;
    color: #ccc;
    font-size: 20px;
    font-weight: bold;
    display: block;
    width: 64px;
    height: 64px;
    padding-top: 14px;
    margin-right: 30px;
    background-repeat: no-repeat;
    background-size: cover;
}

.list_rank_itemBox .item:nth-child(1) .order {
    background-image: url(../images/rank_order1.png);
}

.list_rank_itemBox .item:nth-child(2) .order {
    background-image: url(../images/rank_order2.png);
}

.list_rank_itemBox .item:nth-child(3) .order {
    background-image: url(../images/rank_order3.png);
}

.list_rank_itemBox .item .order span {
    display: block;
    font-size: 12px;
    font-weight: normal;
}

.list_rank_itemBox .item .thum {
    width: 110px;
    height: 110px;
    border-radius: 25px;
    position: relative;
    margin-right: 25px;
}

.list_rank_itemBox .item .txtBox {
    max-width: 800px;
    margin-right: 60px;
}

.list_rank_itemBox .item .txtBox .title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    max-width: 360px;
    font-weight: bold;
}

.list_rank_itemBox .item .tagBox {
    font-size: 14px;
    color: #666;
    margin-bottom: 22px;
}

.list_rank_itemBox .item .tagBox div {
    width: 20%;
}

.list_rank_itemBox .item .tagBox .score .star {
    margin: 0;
    margin-right: 6px;
}

.list_rank_itemBox .item .tagBox .score .fs {
    color: #FF8C1E;
}

.list_rank_itemBox .item .text {
    padding-left: 28px;
    position: relative;
    font-size: 14px;
    color: #999;
}

.list_rank_itemBox .item .text::before {
    display: block;
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/info_curr.png);
    left: 0;
    top: -2px;
}

.list_rank_itemBox .item .text span {
    display: block;
}

.list_rank_itemBox .item .down {
    display: block;
    width: 130px;
    height: 44px;
    border-radius: 4px;
    border: 1px solid var(--pm-c);
    line-height: 44px;
    text-align: center;
    padding-left: 16px;
    color: var(--pm-c);
    position: relative;
}

.list_rank_itemBox .item .down::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url(../images/gameDown.png) no-repeat center/contain;
	position: absolute;
	left: 13px;
	  top: 12px;
}

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

.list_rank_itemBox .item .down:hover::before {
    background: url(../images/gameDown_curr.png) no-repeat center/contain;
}

.list_rank_news {}

.list_rank_news_itemBox {}

.list_rank_news_itemBox .itemBox {}

.list_rank_news_itemBox .itemBox .item {
    height: 284px;
    padding: 20px 30px;
    background-color: #F9F9FC;
}

.list_rank_news_itemBox .itemBox .item:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}

.list_rank_news_itemBox .itemBox .item .titleBox {
    margin: 0 auto;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #EFEFF1;
}

.list_rank_news_itemBox .itemBox .item .titleBox .title {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    font-weight: bold;
}

.list_rank_news_itemBox .itemBox .item .titleBox .time {
    font-size: 12px;
    color: #999;
}

.list_rank_news_itemBox .itemBox .item .thumBox .uk-width-1-3:nth-child(1) {
    transform: translateX(100%);
}

.list_rank_news_itemBox .itemBox .item .thumBox .uk-width-1-3:nth-child(1) .thum:first-child {
    transform: scale(1);
    margin-bottom: 16px;
}

.list_rank_news_itemBox .itemBox .item .thumBox .uk-width-1-3:nth-child(2) {
    transform: translateX(-100%);
}

.list_rank_news_itemBox .itemBox .item .thumBox .uk-width-1-3:nth-child(2) .order {
    background-image: url(../images/list_rank_news2.png);
    color: #5085AE;
}

.list_rank_news_itemBox .itemBox .item .thumBox .uk-width-1-3:nth-child(3) .order {
    background-image: url(../images/list_rank_news3.png);
    color: #B97E64;
}

.list_rank_news_itemBox .itemBox .item .thumBox .box {}

.list_rank_news_itemBox .itemBox .item .thumBox .box .thum {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    position: relative;
    transform: scale(.8);
    margin: 0 auto 8px;
}

.list_rank_news_itemBox .itemBox .item .thumBox .box .name {
    width: 80px;
    text-align: center;
    margin: 0 auto 4px;
    font-size: 14px;
    color: #333;
}

.list_rank_news_itemBox .itemBox .item .thumBox .box .order {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/list_rank_news1.png);
    font-weight: bold;
    font-size: 12px;
    color: #C89619;
    line-height: 30px;
    text-align: center;
}

/* 排行榜详情 */
.show_rank_news {}

.show_rank_news .show_rank_news_box {}

.show_rank_news .show_rank_news_box .content {
    margin-right: 40px;
}

.show_rank_news .show_rank_news_box .content .titleBox {
    margin-bottom: 30px;
    padding: 0 20px;
    height: 50px;
    background-color: #f7f7f7;
    border-radius: 2px;
    line-height: 50px;
    width: 100%;
}

.show_rank_news .show_rank_news_box .content .titleBox .title {
    font-size: 22px;
    color: var(--pm-c);
    padding-left: 36px;
    position: relative;
}

.show_rank_news .show_rank_news_box .content .titleBox .title::before {
    position: absolute;
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/rank_1.png);
    left: 0;
    top: 12px;
}

.show_rank_news .show_rank_news_box .content .titleBox .time {
    position: relative;
    z-index: 2;
    font-size: 14px;
    color: #fff;
}

.show_rank_news .show_rank_news_box .content .titleBox .time::before {
    width: 160px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/show_content_title.png);
    transform: rotateY(180deg);
    position: absolute;
    top: 0;
    right: -20px;
    content: "";
    display: block;
    z-index: -1;
}

.show_rank_news .list_rank_itemBox .item .txtBox {
    max-width: 430px;
    margin-right: 30px;
}

.show_rank_news .list_rank_itemBox .item .tagBox div {
    width: auto;

}

.show_rank_news .list_rank_itemBox .item .tagBox div::before {
    display: inline-block;
    content: "|";
    margin: 0 6px;
}

.show_rank_news .list_rank_itemBox .item .tagBox div:first-child::before {
    display: none;
}

.show_rank_news .list_rank_itemBox .item .tagBox {
    color: #999;
}

.show_rank_news .xgzj .list li {
    margin-bottom: 16px;
    padding-bottom: 0;
    border: none;
}

.show_rank_news .label {
    padding-left: 0;
}

.show_rank_news .label::before {
    display: none;
}

.show_rank_news .xgzj .list li::before {
    background-color: var(--pm-c);
}

.show_rank_news .xgzj .uk-width-1-3 {
    padding-left: 28px;
}

.show_rank_news .xgzj .itemBox {
    margin-left: -28px;
}

.show_rank_news .xgzj .img {
    display: block;
    overflow: hidden;
    border-radius: 2px;
    width: 100%;
    height: 150px;
    position: relative;
    margin-bottom: 18px;
}

.show_rank_news .xgzj.sideBar_sgzj .img::before {
    display: block;
    content: "";
    position: absolute;
    right: 8px;
    top: 8px;
    width: 36px;
    height: 36px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/rank.png);
    z-index: 3;
}

.show_rank_news .xgzj .img .text {
    background: rgba(0, 0, 0, 0.6);
    display: block;
    width: 100%;
    position: absolute;
    line-height: 38px;
    height: 38px;
    text-align: center;
    padding: 0 15px;
    font-size: 14px;
    color: #fff;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.show_rank_news .goodGame_tj .thumBox .thum::before {
    display: none;
}

.show_rank_news .goodGame_tj .thumBox .thum {
    width: 80px;
    height: 80px;
}

.show_rank_news .goodGame_tj .thumBox {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.show_rank_news .goodGame_tj .thumBox {
    margin-left: -50px;
}

.show_rank_news .goodGame_tj .thumBox .item {
    padding-left: 50px;
}

.show_rank_news .goodGame_tj .thumBox .item.uk-grid-margin {
    margin-top: 26px;
}

.show_rank_news .goodGame_tj .thumBox .item span {
    max-width: 80px;
}

.show_rank_news .index_strategy {
    margin-bottom: 40px;
}

.show_rank_news .index_other .cyzx {
    margin: 0;
    width: 340px;
}

.show_rank_news .index_other .cyzx .itemBox .item .top .box {
    max-width: 180px;
}

.show_rank_news .sideBar_sgzj .itemBox {
    margin: 0;
}

.show_rank_news .sideBar_sgzj .itemBox li::before {
    background-color: #e6e6e6;
}

.show_rank_news .sideBar_sgzj .list li .title {
    max-width: 300px;
}

.show_rank_news .sideBar_sgzj .itemBox li .more {
    display: block;
    width: 18px;
    height: 18px;
    position: relative;
    overflow: hidden;
}

.sideBar_hot_news .img::before {
    display: none !important;
}

.sideBar_hot_news .box .item {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 2px solid #f8f8f8;
}

.sideBar_hot_news .box .item:hover .order {
    color: #939CFC;
}

.sideBar_hot_news .box .item:last-child {
    border: none;
    margin-bottom: 0;
}

.sideBar_hot_news .box .item .order {
    font-weight: bold;
    font-size: 22px;
    color: #E6E6E6;
    margin-right: 12px;
    display: block;
    line-height: 40px;
}

.sideBar_hot_news .box .item .txtBox {
    max-width: 300px;
}

.sideBar_hot_news .box .item .txtBox .title {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.sideBar_hot_news .box .item .txtBox .title:hover {
    font-weight: bold;
}

.sideBar_hot_news .box .item .txtBox .text {
    font-size: 12px;
    color: #999;
}

/* 礼包列表 */
.list_game_package {}

.list_game_package .public_title {
    padding-left: 0;
}

.list_game_package .public_title::before {
    display: none;
}

.list_game_package .index_thumBox {
    margin-bottom: 40px;
}

.list_game_package .index_thumBox .item {
    width: 20%;
    border-radius: 4px;
}

.list_game_package .index_thumBox .item:hover .time,
.list_game_package .index_thumBox .item:hover .name {
    color: #fff !important;
}

.list_game_package .index_thumBox .item:hover {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/package_item_bgi.png);
}

.list_game_package .index_thumBox .itemBox {
    height: 194px;
}

.list_game_package .index_thumBox .itemBox .item .thum {
    margin: 0 auto 15px;
    width: 90px;
    height: 90px;
    border-radius: 20px;
}

.list_game_package .index_thumBox .itemBox .item .name {
    color: #333;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    max-width: 180px;
}

.list_game_package .index_thumBox .itemBox .item .time {
    font-size: 14px;
    color: #999;
    margin: 0 auto;
    text-align: center;
}

.list_game_package_content .sideBar_sgzj li {
    padding-bottom: 0;
    border: none;
    margin-bottom: 16px;
}

.list_game_package_content .sideBar_sgzj li .title {
    max-width: 280px;
}

.list_game_package_content .index_gftj {
    background: none;
    height: auto;
    margin-bottom: 40px;
}

.list_game_package_content .content {
  margin-right: 40px;
}
.list_game_package_content .content .itemBox {
	padding-left: 15px !important;
}
.list_game_package_content .content .itemBox .uk-width-1-2{
	padding-left: 0px !important;
}
.list_game_package_content .content .itemBox .uk-width-1-2:nth-child(2n) .item{
	padding-left: 30px !important;
}
.list_game_package_content .content .itemBox .item {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 2px solid #F8F8F8;
}

.list_game_package_content .content .itemBox .item .line {
    margin-left: -30px;

}

.list_game_package_content .content .itemBox .item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
		padding-bottom: 25px;
		margin-bottom: 10px;
		border-bottom: 2px solid #F8F8F8;
}

.list_game_package_content .content .itemBox .item .uk-width-1-2 {
    padding-left: 30px;

}

.list_game_package_content .content .itemBox .item .box .thum {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    position: relative;
    margin-right: 20px;
}

.list_game_package_content .content .itemBox .item .box .title {
    max-width: 280px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 12px;
}

.list_game_package_content .content .itemBox .item .box .txtBox {
    max-width: 200px;
    font-size: 14px;
    color: #666;
}

.list_game_package_content .content .itemBox .item .box .txtBox .text {
    display: block;
    margin-bottom: 11px;
}

.list_game_package_content .content .itemBox .item .box .txtBox .time {
    color: #999;
}

.list_game_package_content .content .itemBox .item .box .get {
    display: block;
    width: 76px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid var(--pm-c);
    color: var(--pm-c);
    font-size: 14px;
}

.list_game_package_content .content .itemBox .item .box .get:hover {
    background-color: var(--pm-c);
    color: #fff;
}

.sideBar .index_gftj .content {
    padding-top: 0;
}

/* 礼包详情 */
.show_game_package {}

.show_game_package .list_game_package_content {}

.show_game_package .list_game_package_content .details {
    margin-right: 40px;
}

.show_game_package .list_game_package_content .details .titleBox {}

.show_game_package .list_game_package_content .details .titleBox .thum {
    width: 120px;
    height: 120px;
    border-radius: 25px;
    position: relative;
    margin-right: 25px;
}

.show_game_package .list_game_package_content .details .titleBox .txtBox {
    max-width: 440px;
}

.show_game_package .list_game_package_content .details .titleBox .txtBox .title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.show_game_package .list_game_package_content .details .titleBox .txtBox .tagBox {
    font-size: 14px;
    color: #808080;
}

.show_game_package .list_game_package_content .details .titleBox .txtBox .tagBox div {
    width: 50%;
}

.show_game_package .list_game_package_content .details .titleBox .txtBox .tagBox .status {
    margin-top: 14px;
}

.show_game_package .list_game_package_content .details .titleBox .txtBox .tagBox .status .uk-progress {
    margin: 0;
    background-color: #D9D9D9;
    height: 8px;
    width: 100px;
    margin-right: 10px;
}

.status progress::-webkit-progress-value {
    background-color: var(--pm-c);
    border-radius: 10px;
}

.show_game_package .list_game_package_content .details .titleBox .txtBox .tagBox .status span {
    font-size: 12px;
    color: #999;
}

.show_game_package .list_game_package_content .details .titleBox .btnBox {
    margin-left: 65px;
}

.show_game_package .list_game_package_content .details .titleBox .btnBox .btn {
    display: block;
    width: 170px;
    height: 50px;
    border-radius: 8px;
    color: #fff;
    font-size: 17px;
    line-height: 50px;
    text-align: center;
}

.show_game_package .list_game_package_content .details .titleBox .btnBox .btn.get {
    background-color: #FF5C45;
    margin-bottom: 20px;
}

.show_game_package .list_game_package_content .details .titleBox .btnBox .btn.down {
    background-color: var(--pm-c);
}

.show_game_package .list_game_package_content .public_title .label {
    padding-left: 0;
}

.show_game_package .list_game_package_content .public_title .label::before {
    display: none;
}

.show_game_package .list_game_package_content .xglb {
  margin-top: 20px;
}

.show_game_package .list_game_package_content .xglb .content .itemBox .uk-width-1-2:nth-child(n+3) .item{
	border: none;
}
.show_game_package .list_game_package_content .content {
    margin-right: 0;
}

/* 搜索结果页面 */
.search_index {}

.search_index .result {
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
}

.search_index .public_title {
    border: none;
}

.search_index .public_title .label {
    padding-left: 0;
}

.search_index .public_title .label::before {
    display: none;
}

.search_index .list_game_itemBox {
    margin-bottom: 50px;
}

.search_index .list_news {
    margin-bottom: 60px;
}

.search_index .list_news .list_news_box .itemBox .item .txtBox {
    max-width: 950px;
}

/* 404/500页面 */
.error {}

.error .img {
    width: 150px;
    height: 150px;
    position: relative;
    overflow: hidden;
    display: block;
    margin: 60px auto 10px;
}

.error .txt {
    display: block;
    width: 192px;
    text-align: center;
    margin: 0 auto 20px;
    font-size: 14px;
    color: #999;
}

.error .goHome {
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    color: var(--pm-c);
    text-decoration: underline;
    margin-bottom: 240px;
}

/* 关于我们 */
.about {}

.about .contentBox {
    margin-bottom: 60px;
}

.about .contentBox .content {
    margin-left: 40px;
}

.about_nav {
    width: 200px;
    height: 420px;
    background: #F7F7F7;
    border-radius: 4px;
}

.about_nav li {}

.about_nav li.active a {
    color: #fff;
    background-color: var(--pm-c);
}

.about_nav li.active a::before {
    display: block;
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    right: 12px;
    top: 22px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/about_more.png);
}

.about_nav li a {
    display: block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    position: relative;
    font-size: 18px;
    color: #4d4d4d;
}

.about .contentBox .content .public_title .label {
    padding-left: 0;
    color: var(--pm-c);
}

.about .contentBox .content .public_title .label::before {
    display: none;
}

.about .contentBox .content p {
    line-height: 38px;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.about .contentBox .content p:last-child {
    margin-bottom: 0;
}

.about .contentBox .content .itemBox .item {
    margin-bottom: 24px;
}

.about .contentBox .content .itemBox .item:last-child {
    margin-bottom: 0;
}

.about .contentBox .content .itemBox .item h3 {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.about .contentBox .content .itemBox .item .box {
    line-height: 56px;
}

.about .contentBox .content .itemBox .item .box a {
    display: inline-block;
    width: 110px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #F9F9F9;
    border-radius: 3px;
    border: 1px solid #EAEAEA;
    margin-right: 20px;
    color: #333;
    font-size: 16px;
}

/* 开服表 */
.kf::before {
    background-image: url(../images/kaifu.png);
}

.kaifu {}

.kaifu .content {}

.kaifu .content .titleBox {
    background: #F6F5F5;
    height: 40px;
    width: 100%;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    color: #4c4c4c;
    font-weight: bold;
}

.kaifu .content .kfTime {
    width: 150px;
}

.kaifu .content .game {
    width: 200px;
    text-align: left;
}

.kaifu .content .type {
    width: 120px;
}

.kaifu .content .zxqf {
    width: 190px;
}

.kaifu .content .platform {
    width: 150px;
}

.kaifu .content .system {
    width: 130px;
}

.kaifu .content .down {
    width: 130px;
}

.kaifu .content .get {
    width: 130px;
}

.kaifu .content .itemBox {
    text-align: center;
}

.kaifu .content .itemBox .item {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #f2f2f2;
}

.kaifu .content .itemBox .item:last-child {
    border: none;
}

.kaifu .content .itemBox .item:hover {
    background-color: #FAF9F9;
}

.kaifu .content .itemBox .item:hover div {
    font-weight: bold;
}

.kaifu .content .itemBox .item .game .thum {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    margin-right: 10px;
}

.kaifu .content .itemBox .item .game .name {
    color: #333;
    max-width: 130px;
}

.kaifu .content .itemBox .item .down {
    display: block;
    width: 80px;
    height: 34px;
    border-radius: 4px;
    border: 1px solid var(--pm-c);
    color: var(--pm-c);
    line-height: 34px;
    text-align: center;
    margin: 13px auto;
    font-size: 14px;
}

.kaifu .content .itemBox .item .down:hover {
    background-color: var(--pm-c);
    color: #fff;
}

.kaifu .content .itemBox .item .get:hover {
    background-color: #FF5C45;
    color: #fff;
}

.kaifu .content .itemBox .item .get {
    display: block;
    width: 80px;
    height: 34px;
    border-radius: 4px;
    border: 1px solid #FF5C45;
    color: #FF5C45;
    line-height: 34px;
    text-align: center;
    margin: 13px auto;
    font-size: 14px;
}

.kaifu .content .titleBox .zxqf,
.kaifu .content .titleBox .system,
.kaifu .content .titleBox .type {
    display: block;
    position: relative;
}

.kaifu .dropdown {
    position: absolute;
    top: 8px;
}

.kaifu .titleBox .type .dropdown {
    left: 86px;
}

.kaifu .content .titleBox .zxqf .dropdown {
    left: 124px;
}

.kaifu .content .titleBox .system .dropdown {
    left: 90px;
}

.kaifu .dropdown img {
    display: block;
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    cursor: pointer;
}

.kaifu .dropdown:hover ul {
    display: block;
}

.kaifu .titleBox .zxqf .dropdown ul {
    width: 190px;
    transform: translateX(-110px);
}

.kaifu .titleBox .zxqf .dropdown ul li a {
    width: 170px;
}

.kaifu .titleBox .type .dropdown ul {
    transform: translateX(-84px);
}

.kaifu .content .titleBox .system .dropdown ul {
    transform: translateX(-84px);
}

.kaifu .dropdown ul {
    display: none;
    width: 120px;
    padding: 20px 0;
    height: auto;
    background-color: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}

.kaifu .dropdown ul li {
    width: 100%;
    height: 36px;
    padding: 0 10px;
    margin-bottom: 10px;
}

.kaifu .dropdown ul li a {
    display: block;
    max-width: 100px;
    font-size: 18px;
    color: #333;
    font-weight: normal;
    line-height: 36px;
    height: 36px;
    text-align: center;
    margin: 0 auto;
}