/*隐藏类*/
.hide {
    display: none !important;
}

/*隐藏遮罩*/
#aq-model {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff url(/themes/default/404.png) no-repeat center;
}

/*应用信息样式*/
#app_info {
    margin: 20px 0
}

#app_info li {
    display: inline-block;
    width: 33.33%;

}

#app_info li b {
    cursor: pointer;
}

#app_info_cover {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    text-align: center;
    z-index: 9999
}

#app_info_cover .app_info_main {
    background: #fff;
    width: 520px;
    margin: auto;
    margin-top: 100px;
    border-radius: 8px;
    overflow: hidden;
}

#app_info_cover .app_info_title {
    background: #5CA8F6;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 50px;
}

#app_info_cover .app_info_body {
    padding: 20px;
    height: 320px;
    overflow-y: scroll;
    text-align: left;
}

#app_info_cover .app_info_close {
    margin: 20px;
    font-size: 17px;
    color: #fff;
    background: #5CA8F6;
    line-height: 48px;
    border-radius: 20px;
    cursor: pointer;
    display: block;
    font-weight: bold;
    margin-top: 30px;
}

@media (max-width: 760px) {
    #app_info li {
        width: 100%;
        margin-top: 10px;
    }

    #app_info_cover .app_info_main {
        width: 98%;
    }

    #app_info_cover .app_info_close {
        font-size: 16px;
        line-height: 42px;
    }
}

/* 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 {
    -webkit-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* 解决IOS默认滑动很卡的情况 */
    -webkit-overflow-scrolling: touch;
    line-height: 1.3;
}

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

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

body {
    margin: 0;
    background: #f7f7f7;
    background-repeat: no-repeat;
    background-size: 100% 500px;
    background-image: url(../images/header_bgi.png);
}

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,
main,
header,
footer,
::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;
}

:root {
    --pm-c: #7774FF;
}

/* 重复使用 */
.p-l-r-20 {
    padding: 0 20px !important;
}

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

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

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

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

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

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

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

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

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

.m-t-40 {
    margin-top: 40px;
}

.m-t-50 {
    margin-top: 50px;
}

.m-t-60 {
    margin-top: 60px;
}

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

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

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

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

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

.m-b-12 {
    margin-bottom: 12px;
}

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

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

.m-b-40 {
    margin-bottom: 40px;
}

.m-b-50 {
    margin-bottom: 50px;
}

.m-b-60 {
    margin-bottom: 60px;
}

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

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

.w-300 {
    width: 300px;
}

.w-320 {
    width: 320px;
}

.w-340 {
    width: 340px;
}

.w-360 {
    width: 360px;
}

.w-380 {
    width: 380px;
}

.w-390 {
    width: 390px;
}

.w-400 {
    width: 400px;
}

.w-420 {
    width: 420px;
}

.w-440 {
    width: 440px;
}

.w-460 {
    width: 460px;
}

.m-l-r-24 {
    margin: 0 24px;
}

.p-l-r-24 {
    padding: 0 24px;
}

.p-l-r-30 {
    padding: 0 30px;
}

.m-l-24 {
    margin-left: 24px;
}

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

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

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

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

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

.m-r-24 {
    margin-right: 24px;
}

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

.bgc-fff {
    background-color: #fff;
    padding: 20px !important;
}

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

.twoTxtLine {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.threeTxtLine {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.fourTxtLine {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.fiveTxtLine {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

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

.title {
    display: block;
}

/* 评分图标 */
.star1 {
    height: 10px;
    width: 50px;
    background: url('../images/star_small.png') repeat-x center/10px;
    display: inline-block;
    margin: 10px 0;
}

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

.star1-1:before {
    width: 10px;
}

.star1-2:before {
    width: 20px;
}

.star1-3:before {
    width: 30px;
}

.star1-4:before {
    width: 40px;
}

.star1-5:before {
    width: 50px;
}

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

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

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

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

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

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

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

/* 评分图标 */
.star3 {
    height: 14px;
    width: 70px;
    background: url('../images/star3.png') repeat-x center/14px;
    display: inline-block;
    margin: 10px 0;
}

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

.star3-1:before {
    width: 14px;
}

.star3-2:before {
    width: 28px;
}

.star3-3:before {
    width: 42px;
}

.star3-4:before {
    width: 56px;
}

.star3-5:before {
    width: 70px;
}

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

.pagination .page-item {
    display: inline-block;
    margin: 5px;
    font-size: 16px;
    border: 1px solid #E6E6E6;
    color: #666;
    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 {
    color: #666;
}

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

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

/* 可复用 */
.list {}

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

.list li:last-child {
    margin-bottom: 0 !important;
}

.list li::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #d9d9d9;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: cover;
}

.list li .title {
    font-size: 14px;
    color: #333;
    padding-right: 20px;
}

.list li .title a {
    color: #333;
}

.list li .time {
    font-size: 12px;
    color: #aaa;
}

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

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

.footer a:last-child {
    margin-right: 0;
}

.footer .name {
    color: #ccc;
    margin: 20px 0;
}

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

.footer .aBox a {
    margin-right: 10px;
}

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

.public_title .title {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-left: 15px;
    padding-right: 8px;
}

.public_title .title::before {
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(119, 116, 255, 0.2) 0%, rgba(119, 116, 255, 0.04) 100%);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
}

.public_title .title::after {
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    background: linear-gradient(180deg, rgba(119, 116, 255, 0.2) 0%, rgba(119, 116, 255, 0.04) 100%);
}

.public_title .more {
    position: relative;
    padding-right: 19px;
    font-size: 13px;
    color: #999;
    line-height: 18px;
}

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

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

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

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

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

.crumbs::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/crumb.png);
}

.crumbs a:last-child::before {
    color: #999;
}

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

/* 首页页面 */
.header {
    z-index: 3;
    position: relative;
}

.header {}

.header .logo {
    display: block;
    overflow: hidden;
    width: 168px;
    position: relative;
    padding: 30px 0;
}

.header .navBar {}

.header .navBar .aBox {
    letter-spacing: 0;

}


.header .navBar .aBox li {
    display: block;
    display: inline-block;
    padding-top: 62px;
    width: 100px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    position: relative;
    z-index: 999;
    margin-right: 6px;
}

.header .navBar .aBox li a {
    color: #fff;
    position: relative;
}

.header .navBar .aBox li:last-child {
    margin-right: 0;
}

.header .navBar .aBox li:hover::before,
.header .navBar .aBox li.active::before {
    display: block;
    content: "";
    position: absolute;
    width: 100px;
    height: 101px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: -36;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/navBgi.png);
}

.header .navBar .aBox li:hover a,
.header .navBar .aBox li.active a {
    color: var(--pm-c);
    position: relative;
}

.header .navBar .aBox li a::before {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    width: 32px;
    height: 32px;
}

.header .navBar .aBox li:nth-child(1) a::before {
    background-image: url(../images/index_home.png);
}

.header .navBar .aBox li:nth-child(2) a::before {
    background-image: url(../images/index_news.png);
}

.header .navBar .aBox li:nth-child(3) a::before {
    background-image: url(../images/index_game.png);
}

.header .navBar .aBox li:nth-child(4) a::before {
    background-image: url(../images/index_rj.png);
}

.header .navBar .aBox li:nth-child(5) a::before {
    background-image: url(../images/index_zj.png);
}

.header .navBar .aBox li:nth-child(6) a::before {
    background-image: url(../images/index_zj.png);
}

.header .navBar .aBox li:nth-child(7) a::before {
    background-image: url(../images/index_ph.png);
}

.header .navBar .aBox li:nth-child(8) a::before {
    background-image: url(../images/index_gift.png);
}

.header .navBar .aBox li:nth-child(9) a::before {
    background-image: url(../images/index_kaifu.png);
}

.header .navBar .aBox li:nth-child(1).active a::before,
.header .navBar .aBox li:nth-child(1):hover a::before {
    background-image: url(../images/index_home_curr.png);
}

.header .navBar .aBox li:nth-child(2).active a::before,
.header .navBar .aBox li:nth-child(2):hover a::before {
    background-image: url(../images/index_news_curr.png);
}

.header .navBar .aBox li:nth-child(3).active a::before,
.header .navBar .aBox li:nth-child(3):hover a::before {
    background-image: url(../images/index_game_curr.png);
}

.header .navBar .aBox li:nth-child(4).active a::before,
.header .navBar .aBox li:nth-child(4):hover a::before {
    background-image: url(../images/index_rj_curr.png);
}

.header .navBar .aBox li:nth-child(5).active a::before,
.header .navBar .aBox li:nth-child(5):hover a::before {
    background-image: url(../images/index_zj_curr.png);
}

.header .navBar .aBox li:nth-child(6).active a::before,
.header .navBar .aBox li:nth-child(6):hover a::before {
    background-image: url(../images/index_zj_curr.png);
}

.header .navBar .aBox li:nth-child(7).active a::before,
.header .navBar .aBox li:nth-child(7):hover a::before {
    background-image: url(../images/index_ph_curr.png);
}

.header .navBar .aBox li:nth-child(8).active a::before,
.header .navBar .aBox li:nth-child(8):hover a::before {
    background-image: url(../images/index_gift_curr.png);
}

.header .navBar .aBox li:nth-child(9).active a::before,
.header .navBar .aBox li:nth-child(9):hover a::before {
    background-image: url(../images/index_kaifu_curr.png);
}

.searchBox {
    position: relative;
}

.searchBox .search_ipt {
    display: block;
    padding-left: 20px;
    padding-right: 40px;
    width: 320px;
    background-color: #f2f2f2;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    border-radius: 666px;
}


.searchBox .search_ipt::placeholder {
    font-size: 13px;
    color: #808080;
}

.searchBox .search_btn {
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: block;
    background-color: var(--pm-c);
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
    background-image: url(../images/search_icon.png);
}


.bgc-fff {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}

.bgc-f5 {
    background-color: #f5f5f5;
}

.indexBox {}

.indexBox .index_tagBox {
    border-bottom: none;
    margin-bottom: 0;
    border-bottom: none;
}


.index_tagBox {
    border-bottom: 6px solid #FAFAFA;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.index_tagBox .tjBox {}

.index_tagBox .tjBox span {
    margin-right: 16px;
    display: block;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    color: #4d4d4d;
}

.index_tagBox .tjBox span::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/tagIcon.png);
}

.index_tagBox .tjBox ul {}

.index_tagBox .tjBox ul li {
    display: inline-block;
    margin-right: 6px;
}

.index_tagBox .tjBox ul li:last-child {
    margin-right: 0;
}

.index_tagBox .tjBox ul li a {
    display: inline-block;
    padding: 0 10px;
    font-size: 14px;
    color: #a6a6a6;
    border-radius: 6px;
    height: 28px;
    line-height: 26px;
    border: 1px solid #E6E6E6;
}

.index_game_list {}

.index_game_list .thumBox {
    margin-left: -18px;
}

.index_game_list .thumBox .box {
    padding-left: 18px;
    width: 14.28%;
}

.index_game_list .thumBox .box:last-child .item {
    padding-right: 0;
    border: none;
}

.index_game_list .thumBox .item {
    padding-right: 17px;
    border-right: 1px solid #e6e6e6;
}

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

.index_game_list .thumBox .item .thum {
    width: 60px;
    height: 60px;
    position: relative;
    border-radius: 15px;
    margin-right: 10px;
}

.index_game_list .thumBox .item .title {
    color: #333;
    font-size: 14px;
    margin-bottom: 12px;
}

.index_game_list .thumBox .item .title a {
    font-size: 14px;
    color: #333;
}

.index_game_list .thumBox .item .down {
    display: block;
    width: 50px;
    height: 24px;
    border-radius: 99px;
    line-height: 22px;
    text-align: center;
    font-size: 14px;
    color: var(--pm-c);
    border: 1px solid #CBCAFF;
}

.index_game_list .itemBox {
    width: 100%;
    margin-bottom: 16px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f2f2f2;
}

.index_game_list .itemBox .item {
    margin-bottom: 12px;
}

.index_game_list .itemBox .item:last-child {
    margin-bottom: 0;
}

.index_game_list .itemBox .item .title {
    width: 86px;
    height: 32px;
    line-height: 32px;
    padding-left: 35px;
    position: relative;
    color: #FF7442;
    font-size: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/tj_bgi.png);
    margin-right: 15px;
    position: relative;
}

.index_game_list .itemBox .item .title::before {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/yj_icon.png);
}

.index_game_list .itemBox .item:nth-child(2) .title {
    background-image: url(../images/zx_bgi.png);
    color: #429AFF;
}

.index_game_list .itemBox .item:nth-child(2) .title::before {
    background-image: url(../images/news_icon.png);
}

.index_game_list .itemBox .item ul {
    line-height: 14px;
}

.index_game_list .itemBox .item ul li {
    display: inline-block;
}

.index_game_list .itemBox .item ul li a {
    display: block;
    font-size: 14px;
    color: #666;
}

.index_game_list .itemBox .item ul li a::before {
    content: "|";
    color: #E8E7EE;
    margin: 0 10px;
}

.index_game_list .itemBox .item ul li:first-child a::before {
    display: none;
}

.index_game_list .btmBox {
    margin-left: -16px;
}

.index_game_list .btmBox .uk-width-1-6 {
    padding-left: 16px;
}

.index_game_list .btmBox .item {}

.index_game_list .btmBox .item .thum {
    position: relative;
    width: 100%;
    height: 100px;
}

.index_game_list .btmBox .item span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    z-index: 3;
    padding: 0 12px;
    background: rgba(0, 0, 0, 0.6);
}

.index_cntent {
    margin-bottom: 60px;
}

.index_cntent .left {}

.index_cntent .left .sliderBox {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.index_cntent .left .sliderBox .sliderItem {
    width: 100%;
}

.index_cntent .left .sliderBox .sliderItem li {
    width: 100%;
}

.index_cntent .left .sliderBox .sliderItem li .thum {
    position: relative;
    width: 100%;
    height: 220px;
}

.index_cntent .left .sliderBox .sliderItem li .title {
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 44px;
    line-height: 44px;
    background: rgba(0, 0, 0, 0.6);
    padding: 0 85px 0 15px;
    font-size: 16px;
    color: #fff;
}

.index_cntent .left .sliderBox .dotnav {
    position: absolute;
    z-index: 333;
    right: 15px;
    bottom: 18px;
    margin-left: 0;
}

.index_cntent .left .sliderBox .dotnav li {
    display: block;
    margin-right: 6px;
    padding-left: 0;
}

.index_cntent .left .sliderBox .dotnav li:last-child {
    margin-right: 0;
}

.index_cntent .left .sliderBox .dotnav li a {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.4);
    width: 8px;
    height: 8px;
}

.index_cntent .left .sliderBox .dotnav li.uk-active {}

.index_cntent .left .sliderBox .dotnav li.uk-active a {
    background-color: #fff;
}


.index_zxsp {
    margin-top: 30px;
}

.index_zxsp .itemBox {
    margin-left: -18px;
}

.index_zxsp .itemBox .uk-width-1-2 {
    padding-left: 18px;
}

.index_zxsp .itemBox .uk-width-1-2.uk-grid-margin {
    margin-top: 18px;
}

.index_zxsp .itemBox .item {}

.index_zxsp .itemBox .item .thum {
    width: 100%;
    height: 108px;
    position: relative;
}

.index_zxsp .itemBox .item:hover .thum::before {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    background-repeat: no-repeat;
    background-size: 36px;
    background-position: center;
    background-image: url(../images/play_bgi.png);
    z-index: 9;
}

.index_zxsp .itemBox .item .title {
    height: 32px;
    line-height: 32px;
    text-align: center;
    padding: 0 15px;
    background: #F7F7F7;
    font-size: 14px;
    color: #333;
}

.index_zxsp .itemBox .item .title a {
    font-size: 14px;
    color: #333;
}

.index_zxsp .list {
    margin-top: 18px;
}

.index_zxsp .list li {
    margin-bottom: 18px;
    padding-left: 30px;
}

.index_zxsp .list li::before {
    width: 20px;
    height: 20px;
    border-radius: 0;
    background-color: transparent;
    background-image: url(../images/play.png);
}

.index_zxsp .list li .title {
    color: #333;
}

.index_zxsp .list li .title a {
    color: #333;
}

.index_zxsp .list li .time {}


.index_cntent .middle {}



.index_newsBox {}

.index_newsBox .top {
    margin-bottom: 18px;
    padding-bottom: 17px;
    border-bottom: 1px solid #f2f2f2;
}

.index_newsBox .top .title {
    font-size: 18px;
    color: var(--pm-c);
    font-weight: bold;
    margin-bottom: 14px;
}

.index_newsBox .top .title a {
    color: var(--pm-c);
}

.index_newsBox .top .thum {
    width: 130px;
    height: 88px;
    position: relative;
    margin-right: 15px;
}

.index_newsBox .top .desc {
    text-wrap: wrap;
    font-size: 14px;
    color: #666;
    line-height: 24px;
    margin-bottom: 18px;
}

.index_newsBox .top .tagBox {
    font-size: 12px;
    color: #999;
}

.index_newsBox .top .tagBox .tag {
    margin-right: 10px;
}

.index_newsBox .top .tagBox .tag:last-child {
    margin-right: 0;
}

.index_newsBox .top .tagBox .hot {
    display: inline-block;
    padding: 0 6px 0 24px;
    position: relative;
    height: 18px;
    background: #F7F7F7;
    border-radius: 2px;
    line-height: 18px;
    color: #FF5858;
}

.index_newsBox .top .tagBox .hot::before {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/hot.png);
}

.index_newsBox .list {}

.index_newsBox .list li:nth-child(8) {
    margin-bottom: 18px;
    padding-bottom: 17px;
    border-bottom: 1px solid #f2f2f2;
}

.index_newsBox .list li:nth-child(8)::before {
    transform: translateY(0);
    top: 6px;
}

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

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


.index_cntent .right {}

.index_jrtj {
    margin-bottom: 30px;
    padding: 69px 30px 25px;
    position: relative;
    background: linear-gradient(90deg, #EFEEFF 0%, #FBF6FF 100%);
    border-radius: 10px;
    z-index: 7;
}

.index_jrtj::before {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    content: "";
    width: 100%;
    height: 80px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/jrtjBgi.png);
    z-index: 2;
}

.index_jrtj::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 54px;
    display: block;
    content: "";
    width: calc(100% - 20px);
    height: calc(100% - 64px);
    z-index: 3;
    background-color: #fff;
    border-radius: 8px;
}

.index_jrtj .itemBox {
    margin-left: -25px;
    position: relative;
    z-index: 10;
}

.index_jrtj .itemBox .uk-width-1-3 {
    padding-left: 25px;
}

.index_jrtj .itemBox .uk-width-1-3.uk-grid-margin {
    margin-top: 22px;
}

.index_jrtj .itemBox .item {
    text-align: center;
}

.index_jrtj .itemBox .item .thum {
    margin: 0 auto;
    width: 70px;
    height: 70px;
    position: relative;
    border-radius: 15px;
    border: 3px solid #EBEBFF;
}

.index_jrtj .itemBox .item .title {
    margin-top: 8px;
    color: #333;
    font-size: 14px;
}

.index_jrtj .itemBox .item .title a {
    color: #333;
}

.index_jrtj .itemBox .item .score {
    display: inline-block;
    padding-left: 14px;
    font-size: 12px;
    color: var(--pm-c);
    position: relative;
    line-height: 1;
}

.index_jrtj .itemBox .item .score::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/score.png);
}

.index_gameType {}

.index_gameType .itemBox {
    margin-left: -32px;
}

.index_gameType .itemBox .uk-width-1-4 {
    padding-left: 32px;
}

.index_gameType .itemBox .uk-width-1-4.uk-grid-margin {
    margin-top: 24px;
}

.index_gameType .itemBox .item {
    text-align: center;
}

.index_gameType .itemBox .item .thum {
    position: relative;
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-size: cover;
    left: 50%;
    transform: translateX(-50%);
}

.index_gameType .itemBox .uk-width-1-4:nth-child(1) .item .thum {
    background-image: url(../images/index_jsby.png);
}

.index_gameType .itemBox .uk-width-1-4:nth-child(2) .item .thum {
    background-image: url(../images/index_dzgd.png);
}

.index_gameType .itemBox .uk-width-1-4:nth-child(3) .item .thum {
    background-image: url(../images/idnex_xxyz.png);
}

.index_gameType .itemBox .uk-width-1-4:nth-child(4) .item .thum {
    background-image: url(../images/index_fxsj.png);
}

.index_gameType .itemBox .uk-width-1-4:nth-child(5) .item .thum {
    background-image: url(../images/index_mxjm.png);
}

.index_gameType .itemBox .uk-width-1-4:nth-child(6) .item .thum {
    background-image: url(../images/index_cltf.png);
}

.index_gameType .itemBox .uk-width-1-4:nth-child(7) .item .thum {
    background-image: url(../images/index_scjs.png);
}

.index_gameType .itemBox .uk-width-1-4:nth-child(8) .item .thum {
    background-image: url(../images/index_kpyx.png);
}

.index_gameType .itemBox .item .title {
    font-size: 14px;
    color: #777;
    margin-top: 6px;
}

.index_gameType .itemBox .item .title a {
    color: #777;
}

.index_cyzx {}

.index_cyzx .itemBox {
    margin-left: -20px;
}

.index_cyzx .itemBox .uk-width-1-2 {
    padding-left: 20px;
}

.index_cyzx .top {
    margin-bottom: 18px;
}

.index_cyzx .top .thum {
    width: 130px;
    height: 82px;
    position: relative;
    margin-right: 15px;
}

.index_cyzx .top .title {
    margin-bottom: 11px;
    color: #333;
    font-size: 16px;
}

.index_cyzx .top .title a {
    color: #333;
}

.index_cyzx .top .desc {
    text-wrap: wrap;
    font-size: 12px;
    color: #999;
    line-height: 22px;
}

.index_cyzx .list {
    position: relative;
}

.index_cyzx .list::before {
    position: absolute;
    left: 3px;
    top: 0;
    background-color: #f1f1f1;
    width: 1px;
    height: 100%;
    display: block;
    content: "";
}

.index_cyzx .list li {}

.index_cyzx .list li::before {
    width: 7px;
    height: 7px;
    background-color: #fff;
    border: 1px solid #cdcdcd;
}

.index_xydt {}

.index_xydt .itemBox {
    margin-left: -18px;
    margin-bottom: 18px;
}

.index_xydt .itemBox .uk-width-1-2 {
    padding-left: 18px;
}

.index_xydt .itemBox .item {}

.index_xydt .itemBox .item .thum {
    width: 100%;
    height: 116px;
    position: relative;
}

.index_xydt .itemBox .item .thum span {
    width: 100%;
    display: block;
    height: 34px;
    background: rgba(0, 0, 0, 0.6);
    line-height: 34px;
    padding: 0 15px;
    font-size: 14px;
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
}

.index_xydt .list {
    position: relative;
}

.index_xydt .list::before {
    position: absolute;
    left: 3px;
    top: 0;
    background-color: #f1f1f1;
    width: 1px;
    height: 100%;
    display: block;
    content: "";
}

.index_xydt .list li {}

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

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

.index_xydt .list li::before {
    width: 7px;
    height: 7px;
    background-color: #fff;
    border: 1px solid #cdcdcd;
}

.index_rmss {}

.index_rmss .itemBox {}

.index_rmss .itemBox .item {
    padding: 0 20px 0 48px;
    position: relative;
    height: 42px;
    line-height: 42px;
    background-color: #f7f7f7;
    border-radius: 999px;
    margin-bottom: 14px;
}

.index_rmss .itemBox .item:last-child {
    margin-bottom: 0;
}

.index_rmss .itemBox .item:hover::before {
    background-image: url(../images/search_curr.png);
}

.index_rmss .itemBox .item:hover {
    background-color: #F5F5FF;
}

.index_rmss .itemBox .item::before {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/search.png);
}

.index_rmss .itemBox .item .title {
    color: #333;
    font-size: 14px;
}

.index_rmss .itemBox .item .title a {
    color: #333;
}

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

.index_syxz {}

.index_syxz .itemBox {
    margin-left: -30px;
}

.index_syxz .itemBox .uk-width-1-4 {
    padding-left: 30px;
}

.index_syxz .itemBox .uk-width-1-4.uk-grid-margin {
    margin-top: 26px;
}

.index_syxz .itemBox .item {}

.index_syxz .itemBox .item .thum {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 18px;
    margin-right: 12px;
}

.index_syxz .itemBox .item .title {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
}

.index_syxz .itemBox .item .title a {
    color: #333;
}

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

.index_syxz .itemBox .item .tagBox .tag {
    margin-bottom: 12px;
}

.index_syxz .itemBox .item .tagBox .tag:last-child {
    margin-bottom: 0;
}

.index_syxz .right {
    width: 308px;
    margin-left: 34px;
}

.index_syxz .navBox {
    margin-left: -10px;
}

.index_syxz .navBox .uk-width-1-3 {
    padding-left: 10px;
}

.index_syxz .navBox .uk-width-1-3.uk-grid-margin {
    margin-top: 10px;
}

.index_syxz .navBox .title {
    font-size: 14px;
    height: 40px;
    background: #F5F5F5;
    border-radius: 4px;
    line-height: 40px;
    text-align: center;
}

.index_syxz .navBox .title a {
    color: #333;
    display: block;
}

.index_syxz .navBox .title.active {
    background-color: var(--pm-c);
}

.index_syxz .navBox .title.active a {
    color: #fff;
}

.index_syxz .zjBox {
    margin-top: 28px;
}

.index_syxz .zjBox span {
    display: block;
    margin-bottom: 16px;
    font-size: 16px;
    color: #333;
}

.index_syxz .zjBox .moreBox {}

.index_syxz .zjBox .moreBox .title {
    height: 40px;
    line-height: 40px;
    position: relative;
    padding: 0 20px;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #EBEBEB;
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center;
}

.index_syxz .zjBox .moreBox .title:last-child {
    margin-bottom: 0;
}

.index_syxz .zjBox .moreBox .title::before {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
}

.index_syxz .zjBox .moreBox .title a {
    display: block;
}

.index_syxz .zjBox .moreBox .title:nth-child(1) {
    color: #FFAE5F;
}

.index_syxz .zjBox .moreBox .title:nth-child(2) {
    color: #93D877;
}

.index_syxz .zjBox .moreBox .title:nth-child(3) {
    color: #F38CE3;
}

.index_syxz .zjBox .moreBox .title:nth-child(1) a {
    color: #FFAE5F;
}

.index_syxz .zjBox .moreBox .title:nth-child(2) a {
    color: #93D877;
}

.index_syxz .zjBox .moreBox .title:nth-child(3) a {
    color: #F38CE3;
}

.index_syxz .zjBox .moreBox .title:nth-child(1):hover {
    background-color: #FFAE5F;
}

.index_syxz .zjBox .moreBox .title:nth-child(2):hover {
    background-color: #93D877;
}

.index_syxz .zjBox .moreBox .title:nth-child(3):hover {
    background-color: #F38CE3;
}

.index_syxz .zjBox .moreBox .title:nth-child(1)::before {
    background-image: url(../images/h+.png);
}

.index_syxz .zjBox .moreBox .title:nth-child(2)::before {
    background-image: url(../images/l+.png);
}

.index_syxz .zjBox .moreBox .title:nth-child(3)::before {
    background-image: url(../images/f+.png);
}

.index_syxz .zjBox .moreBox .title:hover a {
    color: #fff;
}


.list li .num {
    font-size: 12px;
    color: #aaa;
}



.index_rmzx {}

.index_rmzx .top {
    margin-bottom: 18px;
    padding-bottom: 17px;
    border-bottom: 1px solid #f2f2f2;
}

.index_rmzx .top .thum {
    height: 190px;
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}

.index_rmzx .top .title {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
}

.index_rmzx .top .title a {
    color: #333;
}

.index_rmzx .hot {
    display: inline-block;
    padding: 0 6px 0 24px;
    position: relative;
    height: 18px;
    background: #F7F7F7;
    border-radius: 2px;
    line-height: 18px;
    color: #FF5858;
    font-size: 12px;
}

.index_rmzx .hot::before {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/hot.png);
}

.index_rmzx .top .see {
    display: block;
    width: 68px;
    height: 32px;
    background: var(--pm-c);
    line-height: 32px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    border-radius: 99px;
}

.index_rmzx .itemBox {
    margin-left: -18px;
}

.index_rmzx .itemBox .uk-width-1-2 {
    padding-left: 18px;
}

.index_rmzx .itemBox .thum {
    width: 100%;
    height: 110px;
    position: relative;
    margin-bottom: 10px;
}

.index_rmzx .itemBox .title {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.index_rmzx .itemBox .title a {
    color: #333;
}

.index_rmzx .list {
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid #f2f2f2;
}


.index_zxzx {}

.index_zxzx .itemBox {
    position: relative;
}

.index_zxzx .itemBox::before {
    position: absolute;
    left: 7px;
    top: 0;
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: #ebebeb;
    border-radius: 1px;
}

.index_zxzx .itemBox .item {
    padding-left: 24px;
    margin-bottom: 20px;
}

.index_zxzx .itemBox .item:last-child {
    margin-bottom: 0;
}

.index_zxzx .itemBox .item .time {
    font-size: 12px;
    color: var(--pm-c);
    position: relative;
    margin-bottom: 10px;
}

.index_zxzx .itemBox .item .time::before {
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/time.png);
}

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

.index_zxzx .itemBox .item .title a {
    color: #333;
}

.index_zxzx .itemBox .item .info {
    background-color: #f7f7f7;
    padding-right: 15px;
}

.index_zxzx .itemBox .item .thum {
    width: 110px;
    height: 80px;
    position: relative;
    margin-right: 15px;
}

.index_zxzx .itemBox .item .desc {
    font-size: 12px;
    color: #666;
    line-height: 20px;
    margin-bottom: 8px;
    text-wrap: wrap;
}

.index_zxzx .itemBox .item .read {
    position: relative;
    display: inline-block;
    padding-right: 14px;
    font-size: 12px;
    color: var(--pm-c);
}

.index_zxzx .itemBox .item .read::before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/more_curr.png);
}

.index_jxlb {}

.index_jxlb .itemBox {
    margin-bottom: 18px;
    padding-bottom: 17px;
    border-bottom: 1px solid #f2f2f2;
}

.index_jxlb .itemBox .item {
    margin-bottom: 18px;
    padding-bottom: 17px;
    border-bottom: 1px solid #f2f2f2;
}

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

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

.index_jxlb .itemBox .item .title {
    margin-bottom: 18px;
    font-size: 14px;
}

.index_jxlb .itemBox .item .title a {
    color: #333;
}

.index_jxlb .itemBox .item .time {
    margin-bottom: 12px;
    font-size: 12px;
    color: #999;
}

.index_jxlb .itemBox .item .desc {
    font-size: 12px;
    color: #999;
}

.index_jxlb .itemBox .item .gift {
    margin-left: 10px;
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 100px;
    border: 1px solid #CBCAFF;
    background-repeat: no-repeat;
    background-size: 28px;
    background-position: center;
    background-image: url(../images/gift.png);
}

.index_jxlb .itemBox .item:hover .gift {
    background-image: url(../images/gift_curr.png);
    background-color: var(--pm-c);
}

.index_jxlb .list {}

.index_jxlb .list li {}

.index_jxlb .list li::before {
    width: 16px;
    height: 16px;
    border-radius: 0;
    background-color: transparent;
    background-image: url(../images/gift_icon.png);
}

.index_sygl {}

.index_sygl .itemBox {
    margin-left: -30px;
}

.index_sygl .itemBox .uk-width-1-2 {
    padding-left: 30px;
}

.index_sygl .itemBox .item {}

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

.index_sygl .itemBox .item .top .box {
    margin-bottom: 16px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f2f2f2;
}

.index_sygl .itemBox .item .top .box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.index_sygl .itemBox .item .top .box .title {
    font-size: 14px;
    color: #333;
}

.index_sygl .itemBox .item .top .box .title a {
    color: #333;
}

.index_sygl .itemBox .item .top .box .desc {
    margin: 15px 0;
    font-size: 12px;
    color: #666;
}

.index_sygl .itemBox .item .top .box .tagBox {
    font-size: 12px;
    color: #999;
}

.index_sygl .itemBox .item .top .box .time {}

.index_sygl .itemBox .item .top .box .more {
    position: relative;
    padding-right: 14px;
    color: var(--pm-c);
    font-weight: 12px;
}

.index_sygl .itemBox .item .top .box .more::before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    width: 12px;
    height: 12px;
    background-image: url(../images/more_curr.png);
}

.index_sygl .itemBox .item .top .box .thum {
    margin-left: 15px;
    position: relative;
    width: 120px;
    height: 80px;
}

.index_sygl .itemBox .item .top .box .thum span {
    position: absolute;
    display: block;
    width: 36px;
    height: 20px;
    background: rgba(119, 116, 255, 0.8);
    border-radius: 0px 0px 0px 4px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    right: 0;
    top: 0;
}

.index_sygl .itemBox .item .list {}

.index_rmsy {}

.index_rmsy .itemBox {}

.index_rmsy .itemBox .item {
    margin-bottom: 18px;
    padding-bottom: 17px;
    border-bottom: 1px solid #f2f2f2;
}

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

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

.index_rmsy .itemBox .item .title {
    margin-bottom: 10px;
    font-size: 14px;
    color: 333;
}

.index_rmsy .itemBox .item .title a {
    color: #333;
}

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

.index_rmsy .itemBox .item .tagBox .tag {
    margin-bottom: 10px;
}

.index_rmsy .itemBox .item .tagBox .tag:last-child {
    margin-bottom: 0;
}

.index_rmsy .itemBox .item .score {
    margin-left: 10px;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/info_bgi.png);
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    color: var(--pm-c);
}

.index_rmsy .itemBox .item .score span {
    font-size: 22px;
    font-weight: bold;
}






.index_rankBox {}

.index_rank {}

.index_rank:nth-child(2) {
    margin: 0 40px;
}

.index_rank:nth-child(2) .topTitleBox {
    background-image: url(../images/rankTopBgi2.png);
}

.index_rank:nth-child(2) .topTitleBox .topTitle {
    color: #FF8058;
}

.index_rank:nth-child(2) .topTitleBox .more {
    background-image: url(../images/more_h.png);
}

.index_rank .itemBox .item:hover {
    background-image: url(../images/rank_itemBgi1.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.index_rank:nth-child(2) .itemBox .item:hover {
    background-image: url(../images/rank_itamBgi2.png);
    border-color: transparent;
}

.index_rank:nth-child(3) .itemBox .item:hover {
    background-image: url(../images/rank_itamBgi3.png);
}

.index_rank:nth-child(2) .itemBox .item:nth-child(-n+3) .order {
    color: #FF8058;
}

.index_rank:nth-child(2) .itemBox .item .down {
    border-color: #FFD0C2;
    color: #FF8058;
}

.index_rank:nth-child(2) .itemBox .item:hover .down {
    background-color: #FF8058;
}

.index_rank:nth-child(2) .itemBox .item .down::before {
    background-image: url(../images/down_h.png);
}

.index_rank:nth-child(3) .topTitleBox {
    background-image: url(../images/rankTopBgi3.png);
}

.index_rank:nth-child(3) .topTitleBox .topTitle {
    color: var(--pm-c);
}

.index_rank:nth-child(3) .topTitleBox .more {
    background-image: url(../images/more_root.png);
}

.index_rank:nth-child(3) .itemBox .item:nth-child(-n+3) .order {
    color: var(--pm-c);
}

.index_rank:nth-child(3) .itemBox .item .down {
    border-color: var(--pm-c);
    color: var(--pm-c);
}

.index_rank:nth-child(3) .itemBox .item:hover .down {
    background-color: var(--pm-c);
}

.index_rank:nth-child(3) .itemBox .item .down::before {
    background-image: url(../images/down_root.png);
    width: 15px;
    height: 15px;
}

.index_rank .topTitleBox {
    margin-bottom: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/rankTopBgi1.png);
    width: 100%;
    height: 60px;
    line-height: 60px;
    padding-left: 40px;
    padding-right: 25px;
}

.index_rank .topTitleBox .topTitle {
    font-size: 22px;
    color: #4CB4FF;
    font-weight: bold;
}

.index_rank .topTitleBox .more {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/more_lan.png);
    width: 26px;
    height: 6px;
}

.index_rank .itemBox {}

.index_rank .itemBox .item {
    margin-bottom: 12px;
    padding: 10px 15px 10px 20px;
    border-radius: 10px;
    border: 1px solid #f5f5f5;
}

.index_rank .itemBox .item:last-child {
    margin-bottom: 0;
}

.index_rank .itemBox .item .order {
    margin-right: 15px;
    font-size: 16px;
    color: #ccc;
}

.index_rank .itemBox .item:nth-child(-n+3) .order {
    color: #4CB4FF;
}

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

.index_rank .itemBox .item .title {
    font-size: 16px;
    color: #333;
    margin-bottom: 14px;
}

.index_rank .itemBox .item .title a {
    color: #333;
}

.index_rank .itemBox .item .tagBox {
    font-size: 14px;
    color: #999;
}

.index_rank .itemBox .item .tagBox .tag::after {
    content: "|";
    margin: 0 6px;
    line-height: 1;
}

.index_rank .itemBox .item .tagBox .tag:last-child::after {
    display: none;
}

.index_rank .itemBox .item .down {
    display: block;
    position: relative;
    width: 68px;
    height: 32px;
    border-radius: 99px;
    line-height: 30px;
    padding-left: 29px;
    font-size: 14px;
    color: #4CB4FF;
    border: 1px solid #BCE3FF;
}

.index_rank .itemBox .item .down::before {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/down_lan.png);
}

.index_rank .itemBox .item:hover .down {
    color: #fff;
    background-color: #4CB4FF;
}

.index_rank .itemBox .item:hover .down::before {
    background-image: url(../images/down_curr.png);
}



.index_yxmx {}

.index_yxmx .imgBox {}

.index_yxmx .imgBox .thum {
    position: relative;
    width: 100%;
}

.index_yxmx .imgBox .imgBox1 {
    width: 500px;
    margin-right: 10px;
}

.index_yxmx .imgBox .imgBox1 .thum {
    height: 310px;
}

.index_yxmx .imgBox .imgBox2 {
    width: 470px;
}

.index_yxmx .imgBox .imgBox2 .top {
    margin-bottom: 10px;
}

.index_yxmx .imgBox .imgBox2 .top .thum {
    height: 150px;
    position: relative;
    margin-right: 10px;
}

.index_yxmx .imgBox .imgBox2 .top .thum:first-child {
    width: 390px;
}

.index_yxmx .imgBox .imgBox2 .top .thum:last-child {
    margin-right: 0;
    width: 250px;
}

.index_yxmx .imgBox .imgBox2 .btm .thum {
    height: 150px;
    position: relative;
    margin-right: 10px;
}

.index_yxmx .imgBox .imgBox2 .btm .thum:first-child {
    width: 290px;
}

.index_yxmx .imgBox .imgBox2 .btm .thum:last-child {
    width: 350px;
    margin-right: 0;
}

.index_link {
    margin-bottom: 60px;
}

.index_link .itemBox {}

.index_link .itemBox .title {
    display: inline-block;
    font-size: 14px;
    color: #666;
    margin-right: 30px;
    position: relative;
    padding-left: 14px;
    line-height: 2.5;
}
.index_link .itemBox a {
    font-size: 13px;
    color: #999;
}
.index_link .itemBox .title:last-child {
    margin-right: 0;
}










.list_game {
    padding-bottom: 30px;
}

.list_game .index_game_list .thumBox {
    margin-bottom: 0;
}

.list_game .index_tagBox {
    margin-bottom: 24px;
    padding-bottom: 0;
    border-bottom: none;
}

.list_game_nav {
    margin-bottom: 20px;
}

.list_game_nav .aBox {}

.list_game_nav .aBox li {
    display: inline-block;
    padding: 0 18px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.list_game_nav .aBox li a {
    color: rgba(255, 255, 255, 0.6);
}

.list_game_nav .aBox li:last-child {
    margin-right: 0;
}

.list_game_nav .aBox li.active::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/x.png);
}

.list_game_nav .aBox li.active::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/x.png);
}

.list_game_nav .aBox li.active a {
    color: #fff;
    font-weight: bold;
}

.list_game .list_game_nav ul {
    margin-left: -20px;
}

.list_game .list_game_nav ul li {
    padding: 0;
    padding-left: 20px;
    width: 10%;
    display: block;
}

.list_game .list_game_nav ul li.active::before {
    display: none;
}

.list_game .list_game_nav ul li.active::after {
    display: none;
}

.list_game .list_game_nav ul li.uk-grid-margin {
    margin-top: 20px;
}

.list_game .list_game_nav ul li a {
    display: block;
    height: 40px;
    background: #FFFFFF;
    border-radius: 4px;
    line-height: 38px;
    text-align: center;
    font-size: 14px;
    color: #4d4d4d;
    border: 1px solid #E2E2E2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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


.list_game_itemBox {}

.list_game_itemBox .itemBox {
    margin-left: -20px;
}

.list_game_itemBox .itemBox .uk-width-1-5 {
    padding-left: 20px;
}

.list_game_itemBox .itemBox .uk-width-1-5.uk-grid-margin {
    margin-top: 20px;
}

.list_game_itemBox .itemBox .item {
    position: relative;
    padding: 20px 15px 15px;
    z-index: 7;
    text-align: center;
}

.list_game_itemBox .itemBox .item::before {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: "";
    width: 100%;
    height: calc(100% - 20px);
    background-color: #f7f7f7;
    z-index: -2;
    border-radius: 10px;
}

.list_game_itemBox .itemBox .item::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    display: block;
    content: "";
    width: calc(100% - 20px);
    height: calc(100% - 66px);
    background-color: #fff;
    z-index: -1;
    border-radius: 10px;
    border: 2px solid #F7F7F7;
}

.list_game_itemBox .itemBox .item:hover::before {
    background-color: #F5F5FF;
}

.list_game_itemBox .itemBox .item .thum {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 22px;
    margin: 0 auto 17px;
}

.list_game_itemBox .itemBox .item .title {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    padding: 0 10px;
}

.list_game_itemBox .itemBox .item .title a {
    color: #333;
}

.list_game_itemBox .itemBox .item .tagBox {
    font-size: 12px;
    color: #999;
    margin-bottom: 35px;
    padding: 0 10px;
}

.list_game_itemBox .itemBox .item .tagBox .tag::after {
    content: "|";
    color: #ccc;
    line-height: 1;
    margin: 0 5px;
}

.list_game_itemBox .itemBox .item .tagBox .tag:last-child::after {
    display: none;
}

.list_game_itemBox .itemBox .item .score {
    color: var(--pm-c);
    margin-right: 8px;
    padding-left: 14px;
    position: relative;
    line-height: 16px;
}

.list_game_itemBox .itemBox .item .score::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/score.png);
}


.list_game_itemBox .itemBox .item .down {
    display: block;
    width: 100%;
    height: 36px;
    border-radius: 99px;
    line-height: 34px;
    text-align: center;
    padding-left: 20px;
    font-size: 14px;
    color: var(--pm-c);
    position: relative;
    border: 1px solid #CBCAFF;
}

.list_game_itemBox .itemBox .item .down::before {
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/down_big.png);
}

.list_game_itemBox .itemBox .item:hover .down::before {
    background-image: url(../images/down_curr.png);
}

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

.show_game {
    padding-bottom: 30px;
}

.show_game_titleBox {
    margin-bottom: 30px;
    padding: 30px;
    background-repeat: no-repeat;
    background-size: 100px;
    border: 6px solid #ECEAFF;
    border-radius: 10px;
    position: relative;
    background-image: url(../images/detail_top_zs.png);
    background-position: right top;
}

.show_game_titleBox .thum {
    width: 140px;
    height: 140px;
    border-radius: 35px;
    position: relative;
    margin-right: 30px;
}

.show_game_titleBox .txtBox {}

.show_game_titleBox .txtBox .title {
    font-size: 31px;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.show_game_titleBox .txtBox .tagBox {
    font-size: 14px;
    color: #808080;
}

.show_game_titleBox .btnBox {
    margin-top: 24px;
}

.show_game_titleBox .btnBox .btn:last-child {
    margin-right: 0;
}

.show_game_titleBox .btnBox .btn {
    display: block;
    width: 200px;
    height: 50px;
    border-radius: 42px;
    line-height: 50px;
    font-size: 17px;
    color: #fff;
    text-align: center;
    position: relative;
    padding-left: 20px;
}

.show_game_titleBox .btnBox .az {
    margin-right: 12px;
}

.show_game_titleBox .btnBox .btn:first-child {
    background-color: var(--pm-c);
}

.show_game_titleBox .btnBox .btn:last-child {
    background-color: #27D48C;
}

.show_game_titleBox .btnBox .btn::before {
    position: absolute;
    left: 44px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-size: cover;
}

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

.show_game_titleBox .btnBox .pc::before {
    /* background-image: url(../images/pc.png); */
}

.show_game_titleBox .btnBox .h5::before {
    /* background-image: url(../images/start.png); */
}

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

.show_game_titleBox .btnBox .btn .QRcodeBox {
    display: none;
    position: absolute;
    bottom: -200px;
    left: 0;
    color: #666;
    font-size: 16px;
    width: 166px;
    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;
    z-index: 5;
}

.show_game_titleBox .btnBox .btn:hover .QRcodeBox {
    display: block;
}

.show_game .contentBox {}

.show_game .contentBox .content {}

.show_game .contentBox .content .detail_title {
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ebebeb;
}

.show_game .contentBox .content .detail_title .title {
    padding-left: 34px;
    position: relative;
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

.show_game_package_content .detail_title {
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ebebeb;
}

.show_game_package_content .detail_title .title {
    padding-left: 34px;
    position: relative;
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

.show_game_package_content .detail_title .title::before {
    background-image: url(../images/jj.png);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-size: cover;
}

.show_game .contentBox .content .detail_title .title::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-size: cover;
}

.show_game .contentBox .content .itemBox .item:nth-child(1) .detail_title .title::before {
    background-image: url(../images/jj.png);
}

.show_game .contentBox .content .itemBox .item:nth-child(2) .detail_title .title::before {
    background-image: url(../images/tp.png);
}

.show_game .contentBox .content .itemBox .item:nth-child(3) .detail_title .title::before {
    background-image: url(../images/xx.png);
}

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

.show_game .contentBox .content .itemBox .item {
    margin-bottom: 30px;
}

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

.contentBox .content p {
    text-indent: 2em;
    font-size: 16px;
    color: #4d4d4d;
    line-height: 38px;
}

.page_content .content h2,
.contentBox .content h2,
.page_content .content h3,
.contentBox .content h3 {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-top: 30px;
    position: relative;
    display: inline-block;
    padding-right: 26px;
}

.page_content .content h2::before,
.contentBox .content h2::before,
.page_content .content h3::before,
.contentBox .content h3::before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/h3_before.png);
}

/* 游戏截图 */
.show_game .contentBox .content .screenshots {
    position: relative;
}

.show_game .contentBox .content .screenshots .sliderBox {
    width: auto;
    position: relative;
    margin: 0;
    overflow: hidden;
}

.show_game .contentBox .content .screenshots .sliderBox .slide {
    margin-left: -20px;
}

.show_game .contentBox .content .screenshots .sliderBox .slide li {
    width: calc(100%* 1 / 3.001);
    padding-left: 20px;
}


.show_game .contentBox .content .screenshots .sliderBox .slide li span {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.show_game .contentBox .content .screenshots .btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
    background-color: #fff;
    border: 1px solid #eee;
}

.show_game .contentBox .content .screenshots .btn:hover {
    background-color: var(--pm-c);
}

.show_game .contentBox .content .screenshots .btn svg {
    display: none;
}

.show_game .contentBox .content .screenshots .left {
    background-image: url(../images/left_btn.png);
}

.show_game .contentBox .content .screenshots .left:hover {
    background-image: url(../images/left_hover.png);
    border: 1px solid var(--pm-c);
}

.show_game .contentBox .content .screenshots .right {
    background-image: url(../images/right_btn.png);
}

.show_game .contentBox .content .screenshots .right:hover {
    background-image: url(../images/right_hover.png);
    border: 1px solid var(--pm-c);
}

.other_tltj {}

.other_tltj .itemBox {
    margin-left: -25px;
}

.other_tltj .itemBox .uk-width-1-3 {
    padding-left: 25px;
}

.other_tltj .itemBox .uk-width-1-3.uk-grid-margin {
    margin-top: 25px;
}

.other_tltj .itemBox .item {}

.other_tltj .itemBox .item .top {
    margin-bottom: 12px;
    background-color: #FAFAFA;
    height: 30px;
    line-height: 30px;
}

.other_tltj .itemBox .item .top span {
    display: block;
    width: 44px;
    height: 30px;
    padding-left: 8px;
    font-size: 12px;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/tag_bgi.png);
    margin-right: 10px;
}

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

.other_tltj .itemBox .item .top .tagBox .tag {
    margin-right: 12px;
}

.other_tltj .itemBox .item .top .tagBox .tag:last-child {
    margin-right: 0;
}

.other_tltj .itemBox .item .thum {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;
    margin-right: 12px;
}

.other_tltj .itemBox .item .title {
    font-size: 14px;
    margin-bottom: 8px;
}

.other_tltj .itemBox .item .title a {
    color: #333;
}

.other_tltj .itemBox .item .desc {
    font-size: 12px;
    color: #999;
    line-height: 22px;
    margin-right: 10px;
    text-wrap: wrap;
}

.other_tltj .itemBox .item .down {
    display: block;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    background-image: url(../images/down_big.png);
    border-radius: 99px;
    border: 1px solid #CBCAFF;
}

.other_tltj .itemBox .item:hover .down {
    background-color: #F6F5FF;
    border-color: #F6F5FF;
}

.other_xgyx {}

.other_xgyx .itemBox {
    padding: 0 !important;
    margin-left: -40px;
}

.other_xgyx .itemBox .box {
    padding-left: 40px;
    width: 14.28%;
}

.other_xgyx .itemBox .box.uk-grid-margin {}

.other_xgyx .itemBox .item {
    text-align: center;
}

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

.other_xgyx .itemBox .item .title {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

.other_xgyx .itemBox .item .title a {
    color: #333;
}

.other_xgyx .itemBox .item .num {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

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

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


.other_xgzx {}

.other_xgzx .itemBox {
    margin-left: -25px;
}

.other_xgzx .itemBox .uk-width-1-3 {
    padding-left: 25px;
}

.other_xgzx .itemBox .uk-width-1-3.uk-grid-margin {
    margin-top: 20px;
}

.other_xgzx .itemBox .item {}

.other_xgzx .itemBox .item .thum {
    width: 100%;
    height: 140px;
    margin-bottom: 10px;
    position: relative;
}

.other_xgzx .itemBox .item .title {
    font-size: 14px;
    color: #333;
    margin-bottom: 18px;
}

.other_xgzx .itemBox .item .title a {
    color: #333;
}

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

.other_xgzx .itemBox .item .tagBox .tag.author {
    padding-left: 18px;
    position: relative;
}

.other_xgzx .itemBox .item .tagBox .tag.author::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/author.png);
}

.other_xgzx .itemBox .item .tagBox .tag::after {
    content: "·";
    font-weight: bolder;
    line-height: 1;
    margin: 0 5px;
}

.other_xgzx .itemBox .item .tagBox .tag:last-child::after {
    display: none;
}

.other_xgzx .list {}

.other_xgzx .list li {
    padding-left: 22px;
    line-height: 24px;
    margin-bottom: 14px;
}

.other_xgzx .list li::before {
    width: 10px;
    height: 10px;
    background-image: url(../images/li_before.png);
    border-radius: 0;
    background-color: transparent;
}

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

.other_xgzx .list li:hover::before {
    background-image: url(../images/li_curr_before.png);
}

.sideBar {
    width: 320px;
    margin-left: 40px;
}

.sideBar .index_xydt .itemBox .item .thum {
    height: 90px;
}

.sideBar .index_xydt .itemBox .item .thum span {
    padding: 0 10px;
}





.other_jxsy {}

.other_jxsy .itemBox {
    margin-left: -25px;
}

.other_jxsy .itemBox .uk-width-1-3 {
    padding-left: 25px;
}

.other_jxsy .itemBox .uk-width-1-3.uk-grid-margin {
    margin-top: 20px;
}

.other_jxsy .itemBox .item {}

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

.other_jxsy .itemBox .item .title {
    margin-top: 10px;
    margin-bottom: 6px;
    text-align: center;
    font-size: 14px;
}

.other_jxsy .itemBox .item .title a {
    color: #333;
}

.other_jxsy .itemBox .item .score {
    text-align: center;
    line-height: 16px;
}

.other_jxsy .itemBox .item .score span {
    display: inline-block;
    padding-left: 14px;
    position: relative;
    font-size: 12px;
    color: var(--pm-c);
}

.other_jxsy .itemBox .item .score span::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/score.png);
}

.other_jxsy .navItemBox {
    margin-top: 20px;
    margin-left: -25px;
}

.other_jxsy .navItemBox .uk-width-1-3 {
    padding-left: 25px;
}

.other_jxsy .navItemBox .uk-width-1-3.uk-grid-margin {
    margin-top: 12px;
}

.other_jxsy .navItemBox .item {
    display: block;
    height: 34px;
    background: #F7F7F7;
    border-radius: 4px;
    line-height: 34px;
    text-align: center;
    font-size: 14px;
}

.other_jxsy .navItemBox .item:hover {
    background-color: #F5F5FF;
}

.other_jxsy .navItemBox .item:hover a {
    color: var(--pm-c);
}

.other_jxsy .navItemBox .item a {
    display: block;
    color: #333;
}



.other_zxph {}

.other_zxph .itemBox {}

.other_zxph .itemBox .item {
    margin-bottom: 18px;
}

.other_zxph .itemBox .item:last-child {
    margin-bottom: 0;
}

.other_zxph .itemBox .item .top {}

.other_zxph .itemBox .item.active .btm {
    display: flex;
}

.other_zxph .itemBox .item .order {
    width: 20px;
    height: 20px;
    background: #DDDDDD;
    border-radius: 2px;
    line-height: 20px;
    text-align: center;
    margin-right: 8px;
    font-size: 14px;
    color: #fff;
}

.other_zxph .itemBox .item:nth-child(1) .order {
    background-color: #FF5449;
}

.other_zxph .itemBox .item:nth-child(2) .order {
    background-color: #FF9950;
}

.other_zxph .itemBox .item:nth-child(3) .order {
    background-color: #FFC93F;
}

.other_zxph .itemBox .item .title {
    font-size: 14px;
    color: #333;
}

.other_zxph .itemBox .item .title a {
    color: #333;
}

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

.other_zxph .itemBox .item.active .top .time {
    display: none;
}

.other_zxph .itemBox .item .btm {
    display: none;
    margin-top: 14px;
}

.other_zxph .itemBox .item .thum {
    position: relative;
    width: 120px;
    height: 80px;
    margin-right: 15px;
}

.other_zxph .itemBox .item .desc {
    text-wrap: wrap;
    margin-bottom: 14px;
    font-size: 12px;
    color: #999;
    line-height: 22px;
}

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

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

.other_zxph .itemBox .item .more::before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/more_small_curr.png);
}



.show_game .index_bzxw {
    width: 100%;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    margin-left: 0;
}

.list_news {
    padding-bottom: 30px;
}

.list_news_itemBox {
    position: relative;
}

.list_news_itemBox .list_game_nav {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/list_news_navBgi.png);
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
}


.list_news_itemBox .itemBox {
    position: relative;
}


.list_news_itemBox .itemBox .item {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 19px;
    border-bottom: 1px solid #f2f2f2;
}

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

.list_news_itemBox .itemBox .item .thum {
    position: relative;
    width: 210px;
    height: 120px;
    margin-right: 25px;
}

.list_news_itemBox .itemBox .item .title {
    font-size: 18px;
    color: #333;
    margin-bottom: 18px;
    font-weight: bold;
}

.list_news_itemBox .itemBox .item .title a {
    color: #333;
}

.list_news_itemBox .itemBox .item .tagBox {
    font-size: 12px;
    color: #999;
    margin-bottom: 34px;
}

.list_news_itemBox .itemBox .item .tagBox .tag.author {
    padding-left: 18px;
    position: relative;
}

.list_news_itemBox .itemBox .item .tagBox .tag.author::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/author.png);
}

.list_news_itemBox .itemBox .item .tagBox .tag::after {
    content: "·";
    font-weight: bolder;
    line-height: 1;
    margin: 0 5px;
}

.list_news_itemBox .itemBox .item .tagBox .tag:last-child::after {
    display: none;
}

.list_news_itemBox .itemBox .item .desc {
    font-size: 14px;
    color: #666;
}


.show_news_content {}

.show_news_content .titleBox {
    padding-bottom: 31px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.show_news_content .titleBox h1 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0;
}

.show_news_content .titleBox .tagBox {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin: 0 auto;
    width: 70%;
}

.show_news_content .titleBox .tagBox div {
    margin-right: 44px;
}

.show_news_content .titleBox .tagBox div:last-child {
    margin-right: 0;
}

.show_news_content .content {
    background-color: #fff;
    padding: 20px;
    padding-top: 0;
    margin-bottom: 20px;
    width: 100%;
}

.detail_content_box {
    padding-bottom: 40px;
}

.detail_content_box p {
    text-indent: 2em;
    font-size: 14px;
    color: #333;
    line-height: 34px;
}

.detail_content_box p iframe,
.detail_content_box p img {
    display: block;
    max-width: 80%;
    border-radius: 20px;
    margin: 30px auto;
}

.deatil_module {
    padding: 20px;
    background-color: #fff;
    margin-bottom: 20px;
}

.list_collection {
    padding-bottom: 30px;
}

.list_collection .list_game_nav {
    height: 50px;
    line-height: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/zj_navBgi.png);
    width: 248px;
    padding-left: 22px;
}

.list_collection_itemBox {
    position: relative;
}

.list_collection_itemBox .itemBox {
    margin-left: -31px;
}

.list_collection_itemBox .itemBox .uk-width-1-3 {
    padding-left: 31px;
}

.list_collection_itemBox .itemBox .uk-width-1-3.uk-grid-margin {
    margin-top: 31px;
}

.list_collection_itemBox .itemBox .item {
    padding: 18px 25px;
    position: relative;
    border: 2px solid #F7F7F7;
    background-color: #fff;
    border-radius: 10px;
    z-index: 7;
}

.list_collection_itemBox .itemBox .item::after {
    z-index: 3;
    position: absolute;
    right: 0;
    top: 0;
    width: 90px;
    height: 70px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/zj_zs.png);
    content: "";
    display: block;
}

.list_collection_itemBox .itemBox .item::before {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    content: "";
    width: 100%;
    height: calc(100% - 148px);
    background-color: #f7f7f7;
    border-radius: 10px 10px 0px 0px;
    z-index: -2;
}

.list_collection_itemBox .itemBox .item:hover::before {
    background-color: #F5F5FF;
}

.list_collection_itemBox .itemBox .item:hover::after {
    background-image: url(../images/zj_zs_curr.png);
}

.list_collection_itemBox .itemBox .item:hover .top .detail {
    background-color: var(--pm-c);
    color: #fff;
}

.list_collection_itemBox .itemBox .item:hover .top .detail::before {
    background-image: url(../images/more_big_curr.png);
}

.list_collection_itemBox .itemBox .item .top {
    margin-bottom: 38px;
}

.list_collection_itemBox .itemBox .item .top .title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.list_collection_itemBox .itemBox .item .top .title a {
    color: #333;
}

.list_collection_itemBox .itemBox .item .top .time {
    position: relative;
    padding-left: 18px;
    position: relative;
    font-size: 12px;
    color: #999;
    margin-bottom: 18px;
}

.list_collection_itemBox .itemBox .item .top .time::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/time_root.png);
}

.list_collection_itemBox .itemBox .item .top .desc {
    text-wrap: wrap;
    font-size: 12px;
    color: #999;
    line-height: 20px;
    padding-right: 10px;
}

.list_collection_itemBox .itemBox .item .top .detail {
    display: block;
    width: 68px;
    height: 32px;
    line-height: 30px;
    text-align: center;
    padding-left: 18px;
    position: relative;
    font-size: 14px;
    color: var(--pm-c);
    border-radius: 99px;
    border: 1px solid #CBCAFF;
}

.list_collection_itemBox .itemBox .item .top .detail::before {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/more_big.png);
}

.list_collection_itemBox .itemBox .item .btm {
    margin-left: -38px;
}

.list_collection_itemBox .itemBox .item .btm .uk-width-1-3 {
    padding-left: 38px;
}

.list_collection_itemBox .itemBox .item .btm .box {}

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

.list_collection_itemBox .itemBox .item .btm .box .title {
    font-size: 14px;
    color: #333;
    text-align: center;
}

.list_collection_itemBox .itemBox .item .btm .box .title a {
    color: #333;
}

.show_news {
    padding-bottom: 30px;
}

.show_collection {}

.show_collection_titleBox {}

.show_collection_titleBox .titleBox {}

.show_collection_titleBox .box {}

.show_collection_titleBox .box .top {
    background: #FFFFFF;
    border-radius: 10px;
    border: 6px solid #ECEAFF;
    padding: 24px;
    position: relative;
}

.show_collection_titleBox .box .top::before {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 158px;
    height: 158px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/zjDetail_bgi.png);
}

.show_collection_titleBox .box .thum {
    width: 110px;
    height: 110px;
    border-radius: 24px;
    position: relative;
    margin-right: 30px;
}

.show_collection_titleBox .box .txtBox {
    padding-right: 160px;
}

.show_collection_titleBox .box .txtBox h1 {
    font-size: 30px;
    color: #333;
    font-weight: bold;
    margin: 0;
    margin-bottom: 36px;
    position: relative;
}

.show_collection_titleBox .box .txtBox .labelBox {
    font-size: 14px;
    color: #808080;
}

.show_collection_titleBox .box .txtBox .labelBox .label:last-child {
    margin-right: 0;
}

.show_collection_titleBox .tjBox {
    margin-top: 15px;
}

.show_collection_titleBox .tjBox span {
    font-size: 16px;
    color: #333;
    margin-right: 10px;
}

.show_collection_titleBox .tjBox .aBox {}

.show_collection_titleBox .tjBox .aBox .more {
    width: 186px;
    height: 24px;
    line-height: 22px;
    padding: 0 15px;
    height: 40px;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #EBEBEB;
    line-height: 40px;
    font-size: 14px;
    position: relative;
    margin-right: 10px;
}

.show_collection_titleBox .tjBox .aBox .more:last-child {
    margin-right: 0;
}

.show_collection_titleBox .tjBox .aBox .more::before {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
}

.show_collection_titleBox .tjBox .aBox .more:nth-child(1)::before {
    background-image: url(../images/h+.png);
}

.show_collection_titleBox .tjBox .aBox .more:nth-child(2)::before {
    background-image: url(../images/l+.png);
}

.show_collection_titleBox .tjBox .aBox .more:nth-child(3)::before {
    background-image: url(../images/f+.png);
}

.show_collection_titleBox .tjBox .aBox .more:nth-child(4)::before {
    background-image: url(../images/lan+.png);
}

.show_collection_titleBox .tjBox .aBox .more:nth-child(1) a {
    color: #FFAE5F;
}

.show_collection_titleBox .tjBox .aBox .more:nth-child(2) a {
    color: #93D877;
}

.show_collection_titleBox .tjBox .aBox .more:nth-child(3) a {
    color: #F38CE3;
}

.show_collection_titleBox .tjBox .aBox .more:nth-child(4) a {
    color: #74ABFF;
}


.xbtj {
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
    padding: 20px;
    margin-left: 40px;
    width: 260px;
}

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

.xbtj .thum {
    width: 90px;
    height: 90px;
    position: relative;
    border-radius: 18px;
    border: 4px solid #DBD8FF;
    margin: 0 auto 10px;
}

.xbtj .title {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.xbtj .title a {
    color: #404040;
}

.xbtj .tagBox {
    margin-bottom: 10px;
}

.xbtj .tagBox .tag {
    display: inline-block;
    height: 22px;
    border-radius: 4px;
    line-height: 20px;
    margin-right: 6px;
    padding: 0 6px;
    font-size: 12px;
    color: var(--pm-c);
    border: 1px solid var(--pm-c);
}

.xbtj .tagBox .tag:last-child {
    margin-right: 0;
}

.xbtj .desc {
    font-size: 12px;
    color: #999;
}



.show_collection {
    padding-bottom: 30px;
}

.show_collection_itemBox {}

.show_collection_itemBox .topTitle {
    padding-bottom: 11px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ebebeb;
}

.show_collection_itemBox .topTitle .title {
    position: relative;
    padding-left: 34px;
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

.show_collection_itemBox .topTitle .title::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/book.png);
}

.show_collection_itemBox .itemBox {
    margin-left: -31px;
}

.show_collection_itemBox .itemBox .uk-width-1-3 {
    padding-left: 31px;
}

.show_collection_itemBox .itemBox .uk-width-1-3.uk-grid-margin {
    margin-top: 31px;
}

.show_collection_itemBox .itemBox .item {
    background: #F7F7F7;
    border-radius: 10px;
    position: relative;
    padding: 15px 20px;
}

.show_collection_itemBox .itemBox .item .title {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
}

.show_collection_itemBox .itemBox .item .title a {
    color: #333;
}

.show_collection_itemBox .itemBox .item .order {
    position: absolute;
    right: -12px;
    top: 12px;
    width: 68px;
    height: 28px;
    line-height: 28px;
    padding-left: 12px;
    font-size: 14px;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/order_bgi.png);
}

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

.show_collection_itemBox .itemBox .item .tagBox {
    font-size: 12px;
    color: #999;
    padding-right: 10px;
}

.show_collection_itemBox .itemBox .item .tagBox .tag {
    margin-bottom: 12px;
}

.show_collection_itemBox .itemBox .item .tagBox .tag:last-child {
    margin-bottom: 0;
}

.show_collection_itemBox .itemBox .item .down {
    display: block;
    width: 82px;
    height: 36px;
    border-radius: 99px;
    line-height: 34px;
    text-align: center;
    padding-left: 18px;
    position: relative;
    font-size: 14px;
    color: var(--pm-c);
    border: 1px solid #CBCAFF;
}

.show_collection_itemBox .itemBox .item .down::before {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/down_big.png);
}

.show_collection_itemBox .itemBox .item .btm {
    margin-top: 15px;
}

.show_collection_itemBox .itemBox .item .btm .score {
    font-size: 12px;
    color: var(--pm-c);
    padding-left: 14px;
    position: relative;
    margin-right: 8px;
}

.show_collection_itemBox .itemBox .item .btm .score::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/score.png);
}

.show_collection_itemBox .itemBox .item .btm .desc {
    font-size: 12px;
    color: #666;
}


.other_xgzj {}

.other_xgzj .itemBox {
    margin-left: -40px;
}

.other_xgzj .itemBox .uk-width-1-3 {
    padding-left: 40px;
}

.other_xgzj .itemBox .item {}

.other_xgzj .itemBox .item .list {
    position: relative;
}

.other_xgzj .itemBox .item .list::before {
    position: absolute;
    left: 3px;
    width: 1px;
    height: 100%;
    display: block;
    content: "";
    background-color: #f1f1f1;
}

.other_xgzj .itemBox .item .list li {
    margin-bottom: 12px;
}

.other_xgzj .itemBox .item .list li::before {
    border: 1px solid #CDCDCD;
    width: 7px;
    height: 7px;
    background-color: #fff;
}

.other_xgzj .itemBox .item .list li .tag {
    width: 44px;
    height: 24px;
    line-height: 24px;
    padding-left: 11px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/labelBgi.png);
    font-size: 12px;
    color: var(--pm-c);
}

.other_xgzj .itemBox .item .list li:hover::before {
    border-color: var(--pm-c);
}

.other_xgzj .itemBox .item .list li:hover .tag {
    background-image: url(../images/labelBgi_curr.png);
    color: #fff;
}

.other_xgzj .itemBox .item .list li:hover .title a {
    color: var(--pm-c);
}

.other_xgzj .itemBox .item .list li .title {}

.other_xgzj .itemBox .item .list li .title a {}

.other_xgzj .itemBox .item .list li .num {
    font-size: 13px;
    color: #999;
}




.list_game_package {
    padding-bottom: 30px;
}

.list_game_package_top {}

.list_game_package_top .itemBox {
    margin-left: -16px;
}

.list_game_package_top .itemBox .uk-width-1-4 {
    padding-left: 16px;
}

.list_game_package_top .itemBox .item {
    position: relative;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 4px;
}

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

.list_game_package_top .itemBox .item .label {
    position: absolute;
    left: 10px;
    top: -4px;
    display: block;
    width: 24px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/tag2Bgi.png);
    writing-mode: vertical-rl;
    text-align: center;
    z-index: 4;
    line-height: 24px;
    font-size: 12px;
    color: #fff;
}

.list_game_package_top .itemBox .item .title {
    font-size: 14px;
}

.list_game_package_top .itemBox .item .title a {
    color: #333;
}

.list_game_package_top .itemBox .item .desc {
    margin: 10px 0;
    font-size: 12px;
    color: #666;
}

.list_game_package_top .itemBox .item .progress {
    width: 100px;
    height: 8px;
    background: #D9D9D9;
    border-radius: 99px;
    margin-right: 6px;
}

.list_game_package_top .itemBox .item .progress::-webkit-progress-bar {
    background: #D9D9D9;
    border-radius: 99px;
}

.list_game_package_top .itemBox .item .progress::-webkit-progress-value {
    border-radius: 99px;
    background-color: #FFB038;
}

.list_game_package_top .itemBox .item .num span {
    font-size: 12px;
    color: #FFB038;
}


.list_game_package_itemBox {}

.list_game_package_itemBox .itemBox {
    margin-left: -30px;
}

.list_game_package_itemBox .itemBox .uk-width-1-2 {
    padding-left: 30px;
}

.list_game_package_itemBox .itemBox .uk-width-1-2.uk-grid-margin {
    margin-top: 25px;
    padding-top: 24px;
    border-top: 1px solid #f2f2f2;
}

.list_game_package_itemBox .itemBox .item {}

.list_game_package_itemBox .itemBox .item .thum {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    position: relative;
    margin-right: 14px;
}

.list_game_package_itemBox .itemBox .item {}

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

.list_game_package_itemBox .itemBox .item .title a {
    color: #333;
}

.list_game_package_itemBox .itemBox .item .desc {
    font-size: 14px;
    color: #666;
    position: relative;
}

.list_game_package_itemBox .itemBox .item .time {
    font-size: 14px;
    color: #999;
    margin-bottom: 11px;
    padding-left: 20px;
    position: relative;
}

.list_game_package_itemBox .itemBox .item .time::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/time_2.png);
}

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

.list_game_package_itemBox .itemBox .item .get {
    display: block;
    width: 76px;
    height: 36px;
    border-radius: 99px;
    line-height: 34px;
    text-align: center;
    font-size: 14px;
    color: var(--pm-c);
    border: 1px solid #CBCAFF;
}

.other_zrlb {}

.other_zrlb .list {}

.other_zrlb .list li {}

.other_zrlb .list li .tag {
    font-size: 12px;
    color: #999;
}


.show_game_titleBox {}

.show_game_titleBox .box {}

.show_game_titleBox .box .num {
    font-size: 14px;
    color: rgba(51, 51, 51, 0.5);
    margin-top: 12px;
}

.show_game_titleBox .box .num span {
    color: #666;
    margin-left: 10px;
}

.show_game_titleBox .progress {
    width: 123px;
    height: 6px;
    background: #ECECEC;
    border-radius: 5px;
}

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

.show_game_titleBox .progress::-webkit-progress-bar {
    background-color: #ECECEC;
    border-radius: 5px;
}


.show_game_titleBox .box .timeBox {
    font-size: 14px;
    color: rgba(51, 51, 51, 0.5);
}

.show_game_titleBox .box .timeBox span {
    margin-left: 6px;
    color: #666;
}

.show_game_titleBox .box .timeBox .start {
    margin-right: 32px;
}

.show_game_titleBox .box .timeBox .end {}

.show_game_titleBox .btnBox {}

.show_game_titleBox .btnBox .btn.lb {
    margin-bottom: 12px;
}

.show_game_titleBox .btnBox .btn.lb::before {
    background-image: url(../images/lb.png);
    left: 44px;
}

.show_game_titleBox .btnBox .btn.down {}

.show_game_titleBox .btnBox .btn.down::before {
    background-image: url(../images/down_icon.png);
    left: 44px;
}

.show_game_package {
    padding-bottom: 30px;
}

.show_game_package_content {
    margin-bottom: 40px;
}

.show_game_package_titleBox {
    border: none;
    background-color: #fafafa;
    background-image: none;
}

.show_game_package_titleBox .thum {
    width: 120px;
    height: 120px;
    border-radius: 25px;
    border: 4px solid #fff;
    margin-right: 25px;
}

.show_game_package_titleBox .txtBox .title {
    font-size: 24px;
}

.show_game_package_titleBox .box .num span {
    font-size: 12px;
    color: #FFB038;
}

.show_game_package_titleBox .num .progress {
    width: 100px;
    background-color: #d9d9d9;
    height: 8px;
}

.show_game_package_titleBox .num .progress::-webkit-progress-bar {
    background-color: #d9d9d9;
}

.show_game_package_titleBox .num .progress::-webkit-progress-value {
    background-color: #FFB038;
}

.show_game_package_titleBox .num .progress::-webkit-progress {}

.show_game_package_titleBox .btnBox {}

.show_game_package_titleBox .btnBox .btn {
    width: 170px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 99px;
    line-height: 50px;
    padding-left: 0;
    border: 1px solid #7774FF;
}

.show_game_package_titleBox .btnBox .btn:last-child {
    background-color: var(--pm-c);
    color: #fff;
}

.show_game_package_titleBox .btnBox .btn::before {
    display: none;
}

.show_game_package_titleBox .btnBox .btn.lb {
    background: #FFFFFF;
    border-radius: 99px;
    line-height: 50px;
    padding-left: 0;
    border: 1px solid #7774FF;
    color: var(--pm-c);
}

.show_game_package_titleBox .btnBox .btn.down {}


.other_tjzx {}

.other_tjzx .itemBox {
    margin-left: -30px;
}

.other_tjzx .itemBox .uk-width-1-2 {
    padding-left: 30px;
}

.other_tjzx .itemBox .uk-width-1-2.uk-grid-margin {
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid #f2f2f2;
}

.other_tjzx .itemBox .item {}

.other_tjzx .itemBox .item .thum {
    width: 130px;
    height: 80px;
    position: relative;
    margin-right: 15px;
}

.other_tjzx .itemBox .item .title {
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
}

.other_tjzx .itemBox .item .title a {
    color: #333;
}

.other_tjzx .itemBox .item .desc {
    font-size: 12px;
    color: #666;
    margin-bottom: 18px;
}

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

.other_tjzx .itemBox .item .tagBox .tag:last-child {
    display: inline-block;
    margin-left: 12px;
    padding: 0 6px 0 24px;
    height: 18px;
    background: #F7F7F7;
    border-radius: 2px;
    line-height: 18px;
    color: #00CE84;
    position: relative;
}

.other_tjzx .itemBox .item .tagBox .tag:last-child::before {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/people.png);
}


.other_gdlb {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px 0;
}

.other_gdlb .public_title {
    padding: 0 20px;
}

.other_gdlb .itemBox {}

.other_gdlb .itemBox .item {
    height: 50px;
    padding: 0 20px;
}

.other_gdlb .itemBox .item .title {
    width: 210px;
    padding-left: 24px;
    position: relative;
    margin-right: 16px;
    font-size: 16px;
    color: #333;
}

.other_gdlb .itemBox .item .title::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/icon_gift.png);
}

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

.other_gdlb .itemBox .item:hover .text {
    color: #9990C2;
}

.other_gdlb .itemBox .item .text .tag {
    display: inline-block;
    width: 62px;
    height: 24px;
    line-height: 22px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/info.png);
    text-align: center;
}

.other_gdlb .itemBox .item:hover .text .tag {
    background-image: url(../images/info_curr.png);
}

.other_gdlb .itemBox .item .box {
    width: 128px;
    position: relative;
}

.other_gdlb .itemBox .item .box .time {
    position: relative;
    font-size: 12px;
    color: #c4c4c4;
    padding-left: 18px;
}

.other_gdlb .itemBox .item .box .time::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/time_4.png);
    width: 14px;
    height: 14px;
}

.other_gdlb .itemBox .item:hover {
    background: rgba(131, 109, 239, 0.1);
}

.other_gdlb .itemBox .item:hover .box .get {
    display: block;
}

.other_gdlb .itemBox .item:hover .box .time {
    display: none;
}

.other_gdlb .itemBox .item .box .get {
    display: none;
    width: 64px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    background: var(--pm-c);
    border-radius: 20px;
    border: 1px solid var(--pm-c);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}


.sideBar .other_xgzj .itemBox {
    margin-left: 0;
}

.sideBar .other_xgzj .itemBox .item {}

.other_gftj {}

.other_gftj .itemBox {
    margin-left: -25px;
}

.other_gftj .itemBox .uk-width-1-3 {
    padding-left: 25px;
}

.other_gftj .itemBox .uk-width-1-3.uk-grid-margin {
    margin-top: 22px;
}

.other_gftj .itemBox .item {
    text-align: center;
}

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

.other_gftj .itemBox .item .title {
    margin-top: 10px;
    color: #333;
    font-size: 14px;
}

.other_gftj .itemBox .item .title a {
    color: #333;
}


.list_rank_news .rankBgi,
.show_rank_news .rankBgi,
.list_rank .rankBgi {
    background-repeat: no-repeat;
    background-size: 100% 160px;
    background-image: url(../images/rankBgi.png);
    padding-top: 180px;
}

.list_rank {
    padding-bottom: 30px;
}

.list_rank_content {}

.list_rank_nav {
    width: 260px;
}

.list_rank_nav .aBox {
    width: 260px;
}

.list_rank_nav .aBox li {
    height: 80px;
    border-radius: 4px;
    margin-bottom: 4px;
    border: 1px solid #EDEDED;
    position: relative;
}

.list_rank_nav .aBox li:last-child {
    margin-bottom: 0;
}

.list_rank_nav .aBox li a {
    display: block;
    font-size: 18px;
    color: #333;
    padding-top: 17px;
    text-align: left;
    font-style: italic;
}

.list_rank_nav .aBox li a span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #999;
}

.list_rank_nav .aBox li::before {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    content: "";
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: cover;
}

.list_rank_nav .aBox li:nth-child(1)::before {
    background-image: url(../images/nav_pgBgi.png);
}

.list_rank_nav .aBox li.active:nth-child(1)::before {
    background-image: url(../images/nav_pgBgi_curr.png);
}

.list_rank_nav .aBox li:nth-child(2)::before {
    background-image: url(../images/nav_azBgi.png);
}

.list_rank_nav .aBox li.active:nth-child(2)::before {
    background-image: url(../images/nav_azBgi_curr.png);
}

.list_rank_nav .aBox li:nth-child(3)::before {
    background-image: url(../images/nav_newBgi.png);
}

.list_rank_nav .aBox li.active:nth-child(3)::before {
    background-image: url(../images/nav_newBgi_curr.png);
}

.list_rank_nav .aBox li:nth-child(4)::before {
    background-image: url(../images/nav_downBgi.png);
}

.list_rank_nav .aBox li.active:nth-child(4)::before {
    background-image: url(../images/nav_downBgi_curr.png);
}

.list_rank_nav .aBox li:nth-child(5)::before {
    background-image: url(../images/nav_rankBgi.png);
}

.list_rank_nav .aBox li.active:nth-child(5)::before {
    background-image: url(../images/nav_rank_bgi_curr.png);
}

.list_rank_nav .aBox li.active {
    background-color: #F5F4FF;
}

.list_rank_nav .aBox li.active a {
    color: var(--pm-c);
}

.list_rank_nav .aBox li.active a span {
    color: var(--pm-c);
}

.list_rank_nav .aBox a {
    padding: 0 28px;
    height: 100%;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    color: #666;
    position: relative;
}

.list_rank_nav .aBox a.active {
    display: block;
    color: #fff;
    font-weight: bold;
    z-index: 3;
    background: linear-gradient(60deg, #9D90F9 0%, #725EFF 100%);
    box-shadow: inset -2px 0px 0px 0px rgba(255, 255, 255, 0.4), inset 2px 0px 0px 0px rgba(255, 255, 255, 0.4);
}


.list_rank_itemBox {
    width: 850px;
    margin-left: 50px;
}

.list_rank_itemBox .itemBox {}

.list_rank_itemBox .itemBox .item {
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 4px;
    background-color: #FAFAFA;
    position: relative;
}

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

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


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

.list_rank_itemBox .itemBox .item .title a {
    color: #333;
}

.list_rank_itemBox .itemBox .item .order {
    position: absolute;
    left: -8px;
    top: -8px;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 34px;
    text-align: center;
    font-size: 16px;
    color: #999;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/top.png);
}

.list_rank_itemBox .itemBox .item:nth-child(1) .order {
    color: #CE9A15;
    background-image: url(../images/top1.png);
}

.list_rank_itemBox .itemBox .item:nth-child(2) .order {
    color: #7C9EBD;
    background-image: url(../images/top2.png);
}

.list_rank_itemBox .itemBox .item:nth-child(3) .order {
    color: #B98877;
    background-image: url(../images/top3.png);
}

.list_rank_itemBox .itemBox .item .tagBox {
    font-size: 14px;
    color: #999;
    margin-bottom: 24px;
}

.list_rank_itemBox .itemBox .item .score {
    padding-left: 16px;
    position: relative;
    color: var(--pm-c);
    margin-right: 12px;
}

.list_rank_itemBox .itemBox .item .score::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/score.png);
}

.list_rank_itemBox .itemBox .item .tagBox .tag::after {
    content: "|";
    margin: 0 6px;
}

.list_rank_itemBox .itemBox .item .tagBox .tag:last-child::after {
    display: none;
}


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

.list_rank_itemBox .itemBox .item .down {
    display: block;
    margin-left: 20px;
    width: 130px;
    height: 48px;
    border-radius: 99px;
    line-height: 46px;
    text-align: center;
    padding-left: 22px;
    position: relative;
    border: 1px solid #CBCAFF;
    font-size: 16px;
    color: var(--pm-c);
}

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

.list_rank_itemBox .itemBox .item:hover .down::before {
    background-image: url(../images/down_curr.png);
}

.list_rank_itemBox .itemBox .item .down::before {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/down_big.png);
}


.list_rank_news {
    padding-bottom: 30px;
}

.list_rank_news_itemBox {}

.list_rank_news_itemBox .itemBox {
    margin-left: -24px;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 {
    padding-left: 24px;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2.uk-grid-margin {
    margin-top: 24px;
}

.list_rank_news_itemBox .itemBox .item {}

.list_rank_news_itemBox .itemBox .item .top {
    margin-bottom: 14px;
}

.list_rank_news_itemBox .itemBox .item .top .title {
    font-size: 18px;
    padding-left: 28px;
    color: #333;
    font-weight: bold;
    position: relative;
}

.list_rank_news_itemBox .itemBox .item .top .title::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/rank_icon.png);
}

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

.list_rank_news_itemBox .itemBox .item .btm {
    padding: 20px 33px;
    background-color: #f7f7f7;
    border-radius: 4px;
}

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

.list_rank_news_itemBox .itemBox .item .box:hover .down::before {
    background-image: url(../images/down_curr.png);
}

.list_rank_news_itemBox .itemBox .item .thumBox {
    margin-left: -34px;
}

.list_rank_news_itemBox .itemBox .item .thumBox .uk-width-1-4 {
    padding-left: 34px;
}

.list_rank_news_itemBox .itemBox .item .thumBox .box {
    text-align: center;
    position: relative;
}

.list_rank_news_itemBox .itemBox .item .thumBox .box:last-child {
    margin-right: 0;
}

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

.list_rank_news_itemBox .itemBox .item .box .down {
    display: block;
    width: 68px;
    height: 32px;
    border-radius: 99px;
    line-height: 30px;
    text-align: center;
    padding-left: 18px;
    position: relative;
    font-size: 14px;
    color: var(--pm-c);
    margin: 0 auto;
    border: 1px solid #CBCAFF;
}

.list_rank_news_itemBox .itemBox .item .box .down::before {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/down_big.png);
}

.list_rank_news_itemBox .itemBox .item .box .title {
    font-size: 14px;
    color: #333;
    text-align: center;
    margin: 8px 0;
}

.list_rank_news_itemBox .itemBox .item .box .title a {
    color: #333;
}

.show_rank_news {
    padding-bottom: 30px;
}

.show_rank_contentBox {}

.show_rank_content {
    width: 800px;
}

.show_rank_content .rankTopTitle {
    height: 70px;
    background: var(--pm-c);
    border-radius: 99px;
    padding: 8px;
    margin-bottom: 30px;
}

.show_rank_content .rankTopTitle .rankIcon {
    width: 54px;
    height: 54px;
    background: #FFFFFF;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 34px;
    background-position: center;
    background-image: url(../images/rank_icon.png);
    margin-right: 8px;
}

.show_rank_content .rankTopTitle .titleBox {
    background-color: #fff;
    border-radius: 100px;
    padding: 0 25px;
    height: 100%;
}

.show_rank_content .rankTopTitle .titleBox .title {
    font-size: 22px;
    color: #333;
    font-weight: bold;
}

.show_rank_content .rankTopTitle .titleBox .time {
    font-size: 14px;
    color: #999;
}

.show_rank_content .list_rank_itemBox {
    width: auto;
    margin-left: 0;
}

.list_rank_itemBox .titleBox .time {
    font-size: 14px;
    color: #999;
}

.other_zxsy {}


.other_zxsy .itemBox {
    position: relative;
}

.other_zxsy .itemBox::before {
    position: absolute;
    left: 7px;
    top: 0;
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: #ebebeb;
    border-radius: 1px;
}

.other_zxsy .itemBox .item {
    padding-left: 24px;
    margin-bottom: 20px;
}

.other_zxsy .itemBox .item:last-child {
    margin-bottom: 0;
}

.other_zxsy .itemBox .item .time {
    font-size: 12px;
    color: var(--pm-c);
    position: relative;
    margin-bottom: 10px;
}

.other_zxsy .itemBox .item .time::before {
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/time.png);
}


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

.other_zxsy .itemBox .item .title {
    font-size: 15px;
    color: #333;
}

.other_zxsy .itemBox .item .title a {
    color: #333;
}

.other_zxsy .itemBox .item .desc {
    font-size: 12px;
    color: #666;
}

.other_zxsy .itemBox .item .tagBox {
    font-size: 12px;
    color: #999;
    margin: 9px 0;
}

.other_zxsy .itemBox .item .tagBox .tag::after {
    content: "|";
    color: #ccc;
    line-height: 1;
    margin: 0 5px;
}

.other_zxsy .itemBox .item .tagBox .tag:last-child::after {
    display: none;
}

.other_zxsy .itemBox .item .score {
    color: var(--pm-c);
    margin-right: 8px;
    padding-left: 14px;
    position: relative;
    line-height: 16px;
}

.other_zxsy .itemBox .item .score::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/score.png);
}


.page {
    padding-bottom: 30px;
}

.page_nav {}

.page_nav .aBox {
    display: inline-block;
    height: auto;
    padding: 20px 25px;
    width: 210px;
    border-radius: 4px;
    background-color: #fafafa;
    margin-right: 40px;
}

.page_nav .aBox li:last-child {
    margin-bottom: 0;
}

.page_nav .aBox li {
    text-align: center;
    display: block;
    width: 100%;
    height: 48px;
    line-height: 46px;
    font-size: 18px;
    color: #808080;
    position: relative;
    margin-bottom: 12px;
    border-radius: 666px;
}

.page_nav .aBox li a {
    color: #808080;
    display: block;
}

.page_nav .aBox li.active {
    border: 1px solid var(--pm-c);
}

.page_nav .aBox li.active a {
    color: var(--pm-c);
}

.page_content {}

.page_content .page_title {
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ebebeb;
}

.page_content .page_title .title {
    display: inline-block;
    padding: 0 36px;
    position: relative;
    font-size: 24px;
    color: #333;
}

.page_content .page_title .title::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/h3_after.png);
}

.page_content .page_title .title::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/h3_before.png);
}

.page_content .content h2,
.page_content .content h3 {
    margin-bottom: 14px;
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #4d4d4d;
}


.page_content .content h2::before,
.page_content .content h3::before {
    display: none;
}

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

.page_content p:last-child {
    margin-bottom: 0;
}

.page_content .content .item {
    margin-bottom: 30px;
}

.page_content .content .aBox {
    margin-left: -20px;
}

.page_content .content .aBox .box {
    padding-left: 20px;
    width: 14.28%;
}

.page_content .content .aBox .box.uk-grid-margin {
    margin-top: 15px;
}

.page_content .content .aBox .box a:hover {
    background-color: #F5F5FF;
    color: var(--pm-c);
}

.page_content .content .aBox .box a {
    display: block;
    height: 36px;
    line-height: 36px;
    text-align: center;
    position: relative;
    font-size: 15px;
    color: #666;
    background-color: #f5f5f5;
    border-radius: 100px;
    padding: 0 2px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page_search {
    padding-bottom: 30px;
}

.search_content .topTitle {
    font-size: 24px;
    color: #333;
    margin-bottom: 24px;
}

.search_content .title span {
    color: var(--pm-c);
}

/* 开服表 */
.kaifu {}

.kaifu .titleBox span {
    color: #999;
}

.kaifu .kaifuBox {
    margin-bottom: 40px !important
}

.kaifu .titleBox {
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    margin-top: 20px;
    font-weight: bold;
    background-color: var(--pm-c);
}

.kaifu .name {
    font-size: 14px;
    text-align-last: left;
    width: 18%;
}

.kaifu .type {
    width: 14%;
}

.kaifu .system img,
.kaifu .type img {
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-top: -4px;
    margin-left: 4px;
    cursor: pointer;
}

.kaifu .startTime {
    width: 12%;
}

.kaifu .startTime span {
    display: inline-block;
    height: 26px;
    padding: 0 10px;
    background: #BFBFBF;
    border-radius: 99px;
    margin-right: 10px;
    line-height: 26px;
    font-size: 14px;
    color: #fff;
}

.kaifu .new {
    width: 12%;
}

.kaifu .system {
    width: 12%;
}

.kaifu .platform {
    width: 12%;
}

.kaifu .down {
    display: block;
    width: 10%;
}

.kaifu .get {
    display: block;
    width: 10%;
}

.kaifu .itemBox {
    font-size: 14px;
    color: #666;
}

.kaifu .titleBox .selectBox {
    width: 150px;
    background-color: #fff;
    top: 20px;
    box-shadow: 0px 0px 4px 0px rgba(200, 200, 200, 0.4);
    left: -86px;
    border-radius: 12px;
    padding: 10px;
}

.kaifu .titleBox .selectBox li {
    width: 100%;
}

.kaifu .titleBox .selectBox li a:hover {
    background: rgba(131, 109, 239, 0.1);
    color: var(--pm-c);
}

.kaifu .titleBox .selectBox li a {
    display: block;
    width: 130px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 16px;
    color: #333;
}

.kaifu .itemBox .item {
    border-top: none;
    color: #666;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 666px;
}

.kaifu .itemBox .item .name .thum {
    width: 40px;
    height: 40px;
    position: relative;
    margin-right: 10px;
    border-radius: 12px;
}

.kaifu .itemBox .item .name .title {
    display: block;
    font-size: 14px;
    color: #666;
}

.kaifu .itemBox .item .startTime {}

.kaifu .itemBox .item .btn a {
    display: block;
    box-sizing: border-box;
    width: 80px;
    height: 34px;
    border-radius: 99px;
    line-height: 32px;
    text-align: center;
    font-size: 14px;
    color: var(--pm-c);
    border: 1px solid var(--pm-c);
    margin: 0 auto;
}

.kaifu .itemBox .item .system {}

.kaifu .itemBox .item .system {}

.kaifu .itemBox .item .system span {
    margin-right: 4px;
}

.kaifu .itemBox .item .system span:last-child {
    margin-right: 0;
}

.kaifu .itemBox .item .system .az {
    display: block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/kaifu_az.png);
}

.kaifu .itemBox .item .system .pg {
    display: block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/kaifu_pg.png);
}

.kaifu .itemBox .item .system .nodata {
    color: #999;
}

.kaifu .itemBox .item .get a {
    color: #FFA674;
    border-color: #FFA674;
}

.kaifu .itemBox .item .get span {
    font-size: 14px;
    color: #999;
}


.err {
    padding-bottom: 30px;
}

.err .index_tagBox {
    margin-bottom: 100px;
}

.err_content {}

.err_content .thum {
    width: 300px;
    margin: 0 auto;
}

.err_content .txtBox {
    text-align: center;
    padding-bottom: 100px;
}

.err_content .txtBox .title {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-bottom: 24px;
    line-height: 2;
}

.err_content .txtBox .goHome {
    font-size: 14px;
    color: var(--pm-c);
    text-decoration: underline;
}