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

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

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

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

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: #2BC56F;
}

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

.p-16 {
    padding: 16px;
}

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

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

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

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

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

.title {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 首页页面 */

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

.header .head .logo {
    display: block;
    height: 50px;
    position: relative;
    overflow: hidden;
}
.header .head .logo img {
	height: 100%
}
.header .head .searchBox {
    height: 44px;
    width: 400px;
    border-radius: 4px;
    border: 1px solid var(--pm-c);
    position: relative;
}

.header .head .searchBox .search {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    padding-right: 120px;
}

.header .head .searchBox .search_icon {
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    width: 97px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    padding-left: 20px;
    background-color: var(--pm-c);
    border-radius: 0px 4px 4px 0px;
}

.header .head .searchBox .search_icon::before {
    display: block;
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/search_icon.png);
    left: 12px;
    top: 11px;
}

.header .navBar {
    height: 50px;
    line-height: 50px;
    background-color: var(--pm-c);
}

.header .navBar .aBox {
    padding: 0;
}

.header .navBar .aBox a {
    display: inline-block;
    margin-right: 60px;
    height: 100%;
    position: relative;
    font-size: 18px;
    color: #fff;
}

.header .navBar .aBox a.active::before {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    bottom: 0;
    content: "";
    display: block;
}

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

.main {
    background-repeat: no-repeat;
    background-image: url(../images/index_bgi.png);
    background-size: 1920px 570px;
    padding-top: 20px;
}

.index_zdtj {
    box-sizing: border-box;
    margin-bottom: 20px;
}

.index_zdtj .allTitle {
    padding-left: 30px;
    font-size: 20px;
    color: #333;
    position: relative;
    margin-bottom: 20px;
}

.index_zdtj .allTitle::before {
    position: absolute;
    left: 0;
    top: 2px;
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
}

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

.index_zdtj .allTitle.ss::before {
    background-image: url(../images/ss.png);
}

.index_zdtj .left {
    width: 810px;
}

.index_zdtj .left .thumBox {
    margin-left: -37px;
    margin-bottom: 27px;
}

.index_zdtj .left .thumBox .item {
    width: 14.28%;
    padding-left: 37px;
}

.index_zdtj .left .thumBox .item .thum {
    position: relative;
    width: 84px;
    height: 84px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.index_zdtj .left .thumBox .item .title {
    max-width: 84px;
    text-align: center;
    font-size: 13px;
    color: #333;
}

.index_zdtj .left .left_list {
    overflow: hidden;
}

.index_zdtj .left .left_list .item {
    margin-bottom: 20px;
}

.index_zdtj .left .left_list .item ul {
    padding-left: 62px;
    position: relative;
}

.index_zdtj .left .left_list .item ul::before {
    position: absolute;
    display: block;
    content: "";
    width: 49px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/list_sy.png);
    left: 0;
    top: -5px;
}

.index_zdtj .left .left_list .item:nth-child(2) ul::before {
    background-image: url(../images/list_yy.png);
}

.index_zdtj .left .left_list .item:nth-child(3) ul::before {
    background-image: url(../images/list_zj.png);
}

.index_zdtj .left .left_list .item:nth-child(3) {
    margin-bottom: 0;
}

.index_zdtj .left .left_list .item ul li {
    width: auto;
}

.index_zdtj .left .left_list .item ul li .list_item {
    display: inline-block;
    font-size: 13px;
    color: #666;
}

.index_zdtj .left .left_list .item ul li .list_item::before {
    display: inline-block;
    content: "|";
    margin: 0 15px;
    color: #d9d9d9;
}

.index_zdtj .left .left_list .item ul li:first-child .list_item::before {
    display: none;
}

.index_zdtj .right {
    margin-left: 30px;
    width: 320px;
}

.index_zdtj .right .itemBox {}

.index_zdtj .right .itemBox .order {
    width: 20px;
    height: 20px;
    background: #DDD;
    border-radius: 2px;
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    text-align: center;
}

.index_zdtj .right .itemBox .box:nth-child(-n+5) .order {
    background-color: #FD6943;
}

.index_zdtj .right .itemBox .uk-width-1-1 {}

.index_zdtj .right .itemBox .uk-width-1-1 .item {
    padding-bottom: 18px;
    border-bottom: 1px solid #f2f2f2;
}

.index_zdtj .right .itemBox .uk-width-1-1 .item .thum {
    width: 110px;
    height: 70px;
    border-radius: 2px;
    position: relative;
    margin-right: 15px;
}

.index_zdtj .right .itemBox .uk-width-1-1 .item .order {
    position: absolute;
    left: 0;
    bottom: 0;
}

.index_zdtj .right .itemBox .uk-width-1-1 .item .txtBox {
    max-width: 195px;
}

.index_zdtj .right .itemBox .uk-width-1-1 .item .txtBox .title {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

.index_zdtj .right .itemBox .uk-width-1-1 .item .txtBox .time {
    font-size: 12px;
    color: #999;
}

.index_zdtj .right .itemBox .uk-width-1-2 {}

.index_zdtj .right .itemBox .uk-width-1-2 .item {}

.index_zdtj .right .itemBox .uk-width-1-2 .item .order {
    margin-right: 5px;
}

.index_zdtj .right .itemBox .uk-width-1-2 .item .title {
    font-size: 14px;
    color: #333;
}

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

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

.public_title .label::before {
    position: absolute;
    left: 0;
    top: 4px;
    content: "";
    display: block;
    width: 8px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/public_title_label.png);
}

.public_title .more {
    font-size: 13px;
    color: #999;
    position: relative;
    padding-right: 15px;
}

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

.index_gftj {
    box-sizing: border-box;
    margin-bottom: 20px;
}

.index_gftj .left {
    width: 390px;
    margin-right: 30px;
}

.index_gftj .left .top {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

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

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

.index_gftj .left .itemBox .item .top .star {
    margin: 0 !important;
}

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

.index_gftj .left .itemBox .item .box .txtBox {
    max-width: 255px;
}

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

.index_gftj .left .itemBox .item .box .txtBox .text {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
}

.index_gftj .left .itemBox .item .box .txtBox .time {
    font-size: 12px;
    color: #999;
}

.index_gftj .middle {
    width: 390px;
    margin-right: 30px;
}

.index_gftj .middle .index_sliderBox {
    margin-bottom: 16px;
}

.index_gftj .middle .index_sliderBox .slider {
    width: 100%;
    height: 220px;
}

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

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

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

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

.index_gftj .middle .index_sliderBox .slider .slideNav {
    position: absolute;
    bottom: 17px;
    right: 16px;
}

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

.index_gftj .middle .index_sliderBox .slider .slideNav li:last-child {
    margin-right: 0;
}

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

.index_gftj .middle .index_sliderBox .slider .slideNav li.uk-active a {
    background-color: var(--pm-c);
}

.list {}

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

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

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

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

.index_gftj .middle .list li:nth-child(5n) {
    background: #F5F4F4;
    height: 32px;
    line-height: 32px;
    width: 100%;
    padding-left: 40px;
}

.index_gftj .middle .list li:nth-child(5n)::before {
    background-repeat: no-repeat;
    background-size: cover;
    width: 28px;
    height: 32px;
    background-image: url(../images/list_hot.png);
    left: 0;
    top: 0;
    border-radius: 0;
}

.index_gftj .middle .list li:nth-child(5n) .title {
    max-width: 338px;
}

.index_gftj .middle .list li:nth-child(5n) .time {
    display: none;
}

.index_gftj .right {
    width: 320px;
}

.index_gftj .right .top {
    padding: 44px 6px 6px 6px;
    position: relative;
    width: 320px;
    height: 180px;
    background: linear-gradient(to bottom, #DFF4EE 0%, #6FD09A 100%), url(../images/jqrdbgi.png);
    border-radius: 8px;
    background-repeat: no-repeat;
    background-blend-mode: color;
    margin-bottom: 30px;
}

.index_gftj .right .top .titleBox::before {
    display: block;
    position: absolute;
    content: "";
    left: 21px;
    top: 12px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/jqrd.png);
    width: 82px;
    height: 20px;

}

.index_gftj .right .top .titleBox .time {
    font-size: 13px;
    color: #49A468;
    position: absolute;
    right: 21px;
    top: 14px;
}

.index_gftj .right .top .list {
    width: 308px;
    height: 130px;
    background: #fff;
    border-radius: 6px;
    padding: 18px 15px;
}

.index_gftj .right .top .list li {
    padding-left: 0;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f2f2f2;
    box-sizing: content-box;
}

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

.index_gftj .right .top .list li::before {
    display: none;
}

.index_gftj .right .top .list li .title {
    max-width: 220px;
}

.index_gftj .right .top .list li .hot {
    position: relative;
    font-size: 12px;
    color: #999;
}

.index_gftj .right .top .list li .hot::before {
    left: -12px;
    top: 3px;
    position: absolute;
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/rd.png);
}

.index_gftj .right .itemBox {
    margin-bottom: 22px;
}

.public_item {
    margin-bottom: 20px;
}

.public_item:last-child {
    margin-bottom: 0;
}

.public_item .thum {
    position: relative;
    width: 110px;
    height: 80px;
    border-radius: 2px;
    margin-right: 15px;
}

.public_item .txtBox {
    max-width: 195px;
}

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

.public_item .txtBox .text {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
}

.public_item .txtBox .tagBox {
    font-size: 12px;
    color: #999;
}

.other_rmgl .itemBox .tagBox .source,
.public_item .txtBox .tagBox .author {
    position: relative;
    padding-left: 20px;
}

.other_rmgl .itemBox .tagBox .source::before,
.public_item .txtBox .tagBox .author::before {
    position: absolute;
    display: block;
    content: "";
    left: 0;
    top: -2px;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/public_item_author.png);
}

.other_rmgl .itemBox .tagBox .time,
.public_item .txtBox .tagBox .time {
    position: relative;
}

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

.index_gftj .right .btm .list .title {
    max-width: 250px;
}

.index_gftj .right .btm .list {
    position: relative;
}

.index_gftj .right .btm .list::before {
    display: block;
    content: "";
    width: 1px;
    height: 238px;
    position: absolute;
    left: 2px;
    top: 10px;
    background-color: #e6e6e6;
    z-index: 1;
}

.index_gftj .right .btm .list li::before {
    width: 6px;
    height: 6px;
    z-index: 2;
}

.index_gftj .right .btm .list li:hover::before,
.index_gftj .right .btm .list li.active::before {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/list_active.png);
    width: 12px;
    height: 12px;
    left: -3px;
    top: 3px;
}

.index_gftj .right .btm .list li .title:hover,
.index_gftj .right .btm .list li.active .title {
    color: var(--pm-c);
}

.index_zxzx {
    margin-bottom: 20px;
}

.index_zxzx .left {
    width: 390px;
    margin-right: 30px;
}

.index_zxzx .left .topImg {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 190px;
    border-radius: 2px;
    margin-bottom: 18px;
}

.index_zxzx .left .topImg .tip {
    position: absolute;
    width: 100%;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0px 0px 2px 2px;
    line-height: 44px;
    padding: 0 15px;
    font-size: 16px;
    color: #fff;
    left: 0;
    bottom: 0;
}

.index_zxzx .left .topImg .tip span {
    max-width: 290px;
    margin-right: 20px;
}

.index_zxzx .left .topImg .tip .rd {
    position: relative;
}

.index_zxzx .left .topImg .tip .rd::before {
    position: absolute;
    left: -20px;
    top: 14px;
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/rd_2.png);
}

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

.index_zxzx .left .itemBox {}

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

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

.index_zxzx .left .itemBox .item .box .thum {
    position: relative;
    width: 130px;
    height: 80px;
    border-radius: 2px;
    margin-right: 15px;
    border-radius: 2px;
}

.index_zxzx .left .itemBox .item .box .txtBox {
    max-width: 245px;
}

.index_zxzx .left .itemBox .item .box .txtBox .text {
    font-size: 14px;
    color: #666;
    line-height: 24px;
    margin-bottom: 16px;
}

.index_zxzx .left .itemBox .item .box .txtBox .time {
    font-size: 12px;
    color: #999;
}

.index_zxzx .right .top {
    margin-bottom: 25px;
}

.index_zxzx .right .top .top_left {
    width: 390px;
    margin-right: 30px;
}

.index_zxzx .right .top .top_left .public_item {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f2f2f2;
}

.index_zxzx .right .top .top_left .public_item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
}

.index_zxzx .right .top .top_left .public_item .thum {
    width: 120px;
    height: 80px;
}

.index_zxzx .right .top .top_left .public_item .txtBox {
    max-width: 255px;
}

.index_zxzx .right .top .top_left .public_item .txtBox .title {
    margin-bottom: 15px;
}

.index_zxzx .right .top .top_left .public_item .txtBox .text {
    margin-bottom: 15px;
}

.index_zxzx .right .top .top_right {
    width: 320px;
}

.sideBar .index_zxzx .list li,
.index_zxzx .right .top .top_right .list li {
    padding-left: 0;
    margin-bottom: 18px;
}

.sideBar .index_zxzx .list li:last-child,
.index_zxzx .right .top .top_right .list li:last-child {
    margin-bottom: 0;
}

.sideBar .index_zxzx .list li::before,
.index_zxzx .right .top .top_right .list li::before {
    display: none;
}

.sideBar .index_zxzx .list li .tag,
.index_zxzx .right .top .top_right .list li .tag {
    width: 36px;
    height: 20px;
    background: #F5F5F5;
    border-radius: 2px;
    line-height: 20px;
    text-align: center;
    color: var(--pm-c);
    font-size: 12px;
}

.sideBar .index_zxzx .list li .title,
.index_zxzx .right .top .top_right .list li .title {
    max-width: 240px;
}

.index_zxzx .right .btm .uk-width-1-3 .thum {
    width: 234px;
    height: 130px;
    position: relative;
    border-radius: 2px;
}

.index_zxzx .right .btm .uk-width-1-3 .thum span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 34px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0px 0px 2px 2px;
    line-height: 34px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    padding: 0 15px;
}

.index_game_down {
    margin-bottom: 20px;
}

.index_game_down .box {}

.index_game_down .box .left {
    width: 324px;
    margin-right: 30px;
}

.index_game_down .box .left .aBox {
    margin-bottom: 13px;
}

.index_game_down .box .left .aBox a {
    display: inline-block;
    width: 100px;
    height: 40px;
    background: var(--pm-c);
    border-radius: 4px;
    margin-right: 7px;
    margin-bottom: 12px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #333;
    background: #F5F5F5;
    padding: 0 8px;
}

.index_game_down .box .left .aBox a:nth-child(3n) {
    margin-right: 0;
}

.index_game_down .box .left .aBox a.active {
    color: #fff;
    background-color: var(--pm-c);
}

.xbtj {
    width: 324px;
    height: 172px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #EDEDED;
}

.xbtj {
    padding: 62px 0 20px 20px;
    background-repeat: no-repeat;
    background-size: 324px 42px;
    background-image: url(../images/xbtj.png);
    background-position: left top;
}

.xbtj .txtBox .star {
    margin: 15px 0;
}

.xbtj .thum {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 22px;
    margin-right: 18px;
}

.xbtj .txtBox {
    max-width: 160px;
}

.xbtj .txtBox .title {
    font-size: 16px;
    color: #333;
}

.xbtj .txtBox .tagBox {
    font-size: 14px;
    color: #999;
}

.xbtj .txtBox .tagBox span::before {
    display: inline-block;
    content: "|";
    margin: 0 8px;
}

.xbtj .txtBox .tagBox span:first-child::before {
    display: none;
}

.xbtj .more {
    display: block;
    width: 28px;
    height: 50px;
    background: #EFF9F3;
    border-radius: 12px 0px 0px 12px;
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center;
    background-image: url(../images/xbtj_more.png);
}

.index_game_down .box .right {
    margin-left: -40px;
}

.index_game_down .box .right .item {
    width: 14.28%;
    padding-left: 40px;
}

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

.index_game_down .box .right .item .title {
    width: 80px;
    min-width: 80px;
    text-align: center;
    font-size: 13px;
    color: #333;
    margin: 10px auto 4px;
}

.index_game_down .box .right .item .size {
    width: 80px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.index_game_down .box .right .item .down {
    display: none;
    width: 70px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background: var(--pm-c);
    border-radius: 4px;
    margin: 10px auto 0;
}

.index_game_down .box .right .item .hoverBox {
    width: 80px;
}

.index_game_down .box .right .item .hoverBox:hover .name {
    display: none;
}

.index_game_down .box .right .item .hoverBox:hover .down {
    display: block;
}

.index_orther {
    margin-bottom: 20px;
}

.index_orther .game_video {
    width: 390px;
    margin-right: 30px;
}

.index_orther .game_video .itemBox {
    margin-bottom: 20px;
}

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

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

.index_orther .game_video .itemBox .item .thum {
    width: 140px;
    height: 80px;
    border-radius: 2px;
    position: relative;
}

.index_orther .game_video .itemBox .item .thum::before {
    position: absolute;
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/play.png);
    right: 8px;
    bottom: 8px;
    z-index: 2;
}

.index_orther .game_video .itemBox .item .txtBox {
    max-width: 235px;
    margin-right: 15px;
}

.index_orther .game_video .itemBox .item .txtBox .title {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
}

.index_orther .game_video .itemBox .item .txtBox .text {
    font-size: 12px;
    color: #666;
    margin-bottom: 14px;
}

.index_orther .game_video .list li {
    padding-left: 20px;
}

.index_orther .game_video .list li:last-child {
    margin-bottom: 0;
}

.index_orther .game_video .list li::before {
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(../images/list_play.png);
    background-color: #d9d9d9;
    top: 0;
}

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

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

.index_orther .game_video .itemBox .item .txtBox .tagBox .tag {
    font-size: 12px;
    color: #999;
    margin-right: 8px;
}

.index_orther .game_video .itemBox .item .txtBox .tagBox .gksj {
    height: 18px;
    background: #EFF9F3;
    border-radius: 2px;
    padding: 0 6px;
    padding-left: 22px;
    position: relative;
    line-height: 18px;
    color: var(--pm-c);
    font-size: 12px;
}

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


.index_orther .cyzx {
    width: 390px;
    margin-right: 30px;
}

.index_orther .cyzx .topImg {
    display: block;
    overflow: hidden;
    width: 390px;
    height: 186px;
    position: relative;
    border-radius: 2px;
    margin-bottom: 18px;
}

.index_orther .cyzx .topImg .article {
    width: 390px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0px 0px 2px 2px;
    line-height: 44px;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 15px;
}

.index_orther .cyzx .topImg .article .text {
    font-size: 16px;
    max-width: 300px;
    display: inline-block;
}

.index_orther .cyzx .topImg .article .time {
    font-size: 13px;
    display: inline-block;
    color: #fff;
}



.index_orther .hot_game {
    width: 320px;
}

.index_orther .hot_game .itemBox {}

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

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

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

.index_orther .hot_game .itemBox .item .txtBox {
    max-width: 235px;
}

.index_orther .hot_game .itemBox .item .txtBox .title {
    max-width: 150px;
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
}

.index_orther .hot_game .itemBox .item .txtBox .rmtj {
    margin-bottom: 12px;
    width: 78px;
    height: 18px;
    background: var(--pm-c);
    line-height: 18px;
    font-size: 12px;
    color: #fff;
    border-radius: 2px;
    padding-right: 6px;
    padding-left: 24px;
    position: relative;
}

.index_orther .hot_game .itemBox .item .txtBox .rmtj::before {
    display: block;
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/rmtj.png);
    left: 6px;
    top: 2px;
}

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

.index_orther .hot_game .itemBox .item .txtBox .tagBox .tag {
    width: 50%;
}

.index_yxmx {
    margin-bottom: 20px;
}

.index_yxmx a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.index_yxmx .a1 {
    width: 290px;
    height: 310px;
    margin-right: 10px;
}

.index_yxmx .a2 {
    width: 290px;
    height: 150px;
    margin-bottom: 10px;
    margin-right: 10px;
}

.index_yxmx .a3 {
    width: 290px;
    height: 150px;
}

.index_yxmx .a4 {
    width: 260px;
    height: 310px;
    margin-right: 10px;
}

.index_yxmx .a5 {
    width: 290px;
    height: 150px;
    margin-bottom: 10px;
}

.index_yxmx .a6 {
    width: 290px;
    height: 150px;
}

.index_xydt {
    margin-bottom: 20px;
}

.index_xydt .xydt {
    margin-right: 30px;
}

.index_xydt .xydt .itemBox {
    margin-left: -30px;
}

.index_xydt .xydt .itemBox .item {
    width: 50%;
    padding-left: 30px;
}

.index_xydt .xydt .itemBox .item .box {
    margin-left: -30px;
}

.index_xydt .xydt .itemBox .item .box .line {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f2f2f2;
}

.index_xydt .xydt .itemBox .item .box .content {
    width: 50%;
    padding-left: 30px;
}

.index_xydt .xydt .itemBox .item .box .content.uk-grid-margin {
    margin-top: 24px;
}

.index_xydt .xydt .itemBox .item .box .content .thum {
    width: 180px;
    height: 100px;
    position: relative;
    margin-bottom: 12px;
}

.index_xydt .xydt .itemBox .item .box .content .title {
    max-width: 180px;
    font-size: 14px;
    color: #333;
}

.index_xydt .xydt .itemBox .item .list {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f2f2f2;
}

.index_xydt .xydt .itemBox .item .list li:last-child {
    margin-bottom: 0;
}


.index_xydt .yxlb {
    width: 320px;
}

.index_xydt .yxlb {}

.index_xydt .yxlb .itemBox {}

.index_xydt .yxlb .itemBox .item {}

.index_xydt .yxlb .itemBox .item .itemList {
    margin: 21px 0;
}

.index_xydt .yxlb .itemBox .item .itemList .order {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid var(--pm-c);
    line-height: 20px;
    text-align: center;
    color: var(--pm-c);
    font-size: 14px;
    margin-right: 10px;
}

.index_xydt .yxlb .itemBox .item .itemList .title {
    max-width: 234px;
    font-size: 14px;
    color: #333;
}

.index_xydt .yxlb .itemBox .item .num {
    font-size: 12px;
    color: #999;
    position: relative;
    padding-left: 20px;
}

.index_xydt .yxlb .itemBox .item .num::before {
    position: absolute;
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/list_package.png);
    left: 0;
    top: -2px;
}

.index_xydt .yxlb .itemBox .item .itemList .num span {
    color: #FF6666;
}

.index_xydt .yxlb .itemBox .item.active .itemList {
    display: none;
}

.index_xydt .yxlb .itemBox .item.active .itemCard {
    display: flex;
}

.index_xydt .yxlb .itemBox .item .itemCard {
    display: none;
    margin: 20px 0;
}

.index_xydt .yxlb .itemBox .item:last-child .itemCard {
    margin-bottom: 0;
}

.index_xydt .yxlb .itemBox .item:first-child .itemCard {
    margin-top: 0;
}

.index_xydt .yxlb .itemBox .item:first-child .itemList {
    margin-top: 0;
}

.index_xydt .yxlb .itemBox .item:last-child .itemList {
    margin-bottom: 0;
}

.index_xydt .yxlb .itemBox .item .itemCard .order {
    width: 20px;
    height: 70px;
    background: var(--pm-c);
    border-radius: 3px;
    margin-right: 10px;
    text-align: center;
    line-height: 70px;
    font-size: 14px;
    color: #fff;
}

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

.index_xydt .yxlb .itemBox .item .itemCard .txtBox {
    max-width: 204px;
}

.index_xydt .yxlb .itemBox .item .itemCard .txtBox .title {
    font-size: 14px;
    color: #333;
}

.index_xydt .yxlb .itemBox .item .itemCard .txtBox .text {
    font-size: 12px;
    color: #666;
    margin: 10px 0;
}

.index_top {
    padding: 0 !important;
    margin-bottom: 20px;
}

.index_top .top {
    padding-bottom: 40px;
}

.index_top .top.top2 {
    margin: 0 30px;
}

.index_top .top .topTitle {
    width: 380px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 21px;
    color: #fff;
    font-weight: bold;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 28px;
}

.index_top .top.top1 .topTitle {
    background-image: url(../images/top1.png);
}

.index_top .top.top2 .topTitle {
    background-image: url(../images/top2.png);
}

.index_top .top.top3 .topTitle {
    background-image: url(../images/top3.png);
}

.index_top .top .itemBox {
    padding: 0 20px;
}

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

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

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

.index_top .top.top2 .itemBox .item .order {
    background-color: #FFA53B;
}

.index_top .top.top3 .itemBox .item .order {
    background-color: var(--pm-c);
}

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

.index_top .top .itemBox .item .box .title {
    max-width: 207px;
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
}

.index_top .top .itemBox .item .box .tag {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.index_top .top .itemBox .item .box .time {
    font-size: 14px;
    color: #999;
}

.index_top .top .itemBox .item .box .down {
    width: 74px;
    height: 34px;
    border-radius: 4px;
    border: 1px solid var(--pm-c);
    line-height: 34px;
    text-align: center;
    position: relative;
    font-size: 14px;
    color: var(--pm-c);
    padding-left: 14px;
}

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

.index_top .top .itemBox .item .box .down:hover::before {
    background-image: url(../images/top_down_curr.png);
}

.index_top .top .itemBox .item .box .down::before {
    position: absolute;
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/top_down.png);
    left: 12px;
    top: 10px;
}

.index_link {
    margin-bottom: 30px;
}

.index_link .aBox a {
    display: inline-block;
    margin-right: 30px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

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

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

.footer .name {
    color: #ccc;
}

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

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

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


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

.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: 0;
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/crumbs.png);
}

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

.header {
    background-color: #fff;
}

/* 资讯列表页面 */
.sideBar {
    width: 320px;
    margin-left: 40px;
}

.list_news {
    margin-bottom: 30px;
}

.list_news .box .content .topNav {
    padding: 0 28px;
    background-color: #f7f7f7;
    height: 45px;
    line-height: 45px;
    margin-bottom: 20px;
}

.list_news .box .content .topNav a {
    display: block;
    margin-right: 30px;
    font-size: 16px;
    color: #666;
    height: 100%;
}

.list_news .box .content .topNav a:last-child {
    margin-right: 0;
}

.list_news .box .content .topNav a.active {
    font-weight: bold;
    color: var(--pm-c);
    border-bottom: 1px solid var(--pm-c);
}

.list_news .box .content .itemBox {}

.list_news .box .content .itemBox .public_item {
    padding-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
}

.list_news .box .content .itemBox .public_item:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.list_news .box .content .itemBox .public_item .thum {
    width: 210px;
    height: 120px;
    margin-right: 25px;
}

.list_news .box .content .itemBox .public_item .txtBox {
    max-width: 565px;
}

.list_news .box .content .itemBox .public_item .txtBox .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 22px;
}

.list_news .box .content .itemBox .public_item .txtBox .text {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.list_news .box .content .itemBox .public_item .txtBox .tagBox .author {
    margin-right: 40px;
}

.sideBar .index_gftj {
    padding-top: 0;
    margin-bottom: 40px;
}

.sideBar .index_orther .game_video {
    width: 320px;
}

.sideBar .index_orther .game_video .txtBox {
    max-width: 190px !important;
}

.sideBar .index_orther .game_video .thum {
    width: 115px;
    height: 76px;
}

.sideBar .game_video .itemBox .item .thum::before {
    width: 26px;
    height: 26px;
}

.sideBar .index_orther .game_video .title {
    font-size: 14px;
}

.sideBar .index_orther .list li .title {
    max-width: 240px;
}

.sideBar .index_orther {
    margin-bottom: 40px;
}

.sideBar .index_game_down .box .right .item {
    width: calc(100%* 1 / 3.001);
}

.sideBar .index_game_down .box .right .item.uk-grid-margin {
    margin-top: 24px;
}

/* 咨询详情页面 */
.show_news {
    margin-bottom: 30px;
}

.show_news .box {}

.show_news .box .content {}

.show_news .box .content .titleBox {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #f2f2f2;
}

.show_news .box .content .titleBox h1 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.show_news .box .content .titleBox .tagBox {
    width: 500px;
    margin: 0 auto;
    font-size: 14px;
    color: #999;
}

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

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

.show_news .box .content .contentBox p iframe{
    width: 100%;
    margin: 20px auto;
    display: block;
    height: 500px;
}
.show_news .box .content .contentBox p img {
    width: 100%;
	height: 450px;
    height: auto;
    margin: 20px auto;
    display: block;
}

.show_news .index_zxzx {
    margin-bottom: 50px;
}

.show_news .index_zxzx .list {
    width: 100%;
}

.show_news .index_zxzx .list li .title {
    max-width: 100% !important;
    padding-right: 30px;
}

.show_news .index_zxzx .right .top .top_right {
    width: 100%;
}

.show_news .index_zxzx .itemBox {
    margin-left: -30px;
}

.show_news .index_zxzx .itemBox .uk-width-1-2 {
    padding-left: 30px;
}
.show_news .index_zxzx .itemBox .uk-width-1-2.uk-grid-margin {
    margin-top: 16px;
}
.show_news .index_zxzx .itemBox .item {}
.show_news .index_zxzx .itemBox .item .tag{
    width: 36px;
    height: 20px;
    background: #F5F5F5;
    border-radius: 2px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    color: var(--pm-c);
}
.show_news .index_zxzx .itemBox .item .title{
    max-width: 320px;
    padding-right: 30px;
    font-size: 14px;
    color: #333;
}
.show_news .index_zxzx .itemBox .item .time{
    font-size: 13px;
    color: #999;
}
.index_xgyx {}

.index_xgyx .itemBox {
    margin-left: -10px;
}

.index_xgyx .itemBox .uk-width-1-3 {
    padding-left: 10px;
}

.index_xgyx .itemBox .uk-width-1-3.uk-grid-margin {
    margin-top: 10px;
}

.index_xgyx .itemBox .uk-width-1-3 .item {
    padding: 10px;
    height: 90px;
    background: #FAFAFA;
    border-radius: 4px;
}

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

.index_xgyx .itemBox .uk-width-1-3 .item .txtBox {
    max-width: 155px;
}

.index_xgyx .itemBox .uk-width-1-3 .item .txtBox .title {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.index_xgyx .itemBox .uk-width-1-3 .item .txtBox .tagBox {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
}

.index_xgyx .itemBox .uk-width-1-3 .item .txtBox .tagBox span::before {
    display: inline-block;
    content: "|";
    margin: 0 4px;
}

.index_xgyx .itemBox .uk-width-1-3 .item .txtBox .tagBox span:first-child::before {
    display: none;
}

.index_xgyx .itemBox .uk-width-1-3 .item .txtBox .rd {
    padding-left: 15px;
    position: relative;
    font-size: 12px;
    color: #999;
}

.index_xgyx .itemBox .uk-width-1-3 .item .txtBox .rd::before {
    position: absolute;
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/rd.png);
    left: 0;
    top: 0;
}

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

.list_game_nav {
    margin-left: -20px;
    padding-bottom: 10px;
}

.list_game_nav .item {
    width: 10%;
    padding-left: 20px;
}

.list_game_nav .item.uk-grid-margin {
    margin-top: 20px;
}

.list_game_nav .item a {
    display: block;
    height: 40px;
    max-width: 96px;
    line-height: 40px;
    text-align: center;
    background-color: #f1f1f1;
    font-size: 14px;
    color: #333;
}

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

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

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

.list_game .itemBox .uk-width-1-4.uk-grid-margin {
    margin-top: 16px;
}

.list_game .itemBox .uk-width-1-4 .item {
    height: 188px;
    background: #fff;
    border-radius: 4px;
}

.list_game .itemBox .uk-width-1-4 .item .top {
    margin-bottom: 20px;
}

.list_game .itemBox .uk-width-1-4 .item .top .thum {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    position: relative;
    margin-right: 18px;
}

.list_game .itemBox .uk-width-1-4 .item .top .txtBox {
    max-width: 140px;
}

.list_game .itemBox .uk-width-1-4 .item .top .txtBox .title {
    font-size: 16px;
    color: #333;
}

.list_game .itemBox .uk-width-1-4 .item .top .txtBox .star {
    margin: 14px 0;
}

.list_game .itemBox .uk-width-1-4 .item .top .txtBox .tagBox {
    font-size: 12px;
    color: #999;
}

.list_game .itemBox .uk-width-1-4 .item .top .txtBox .tagBox span::before {
    display: inline-block;
    content: "|";
    margin: 0 4px;
}

.list_game .itemBox .uk-width-1-4 .item .top .txtBox .tagBox span:first-child::before {
    display: none;
}

.list_game .game_box {
    padding: 0;
    margin-top: 16px;
}

.list_game .itemBox .uk-width-1-4 .item .down {
    display: block;
    height: 38px;
    border-radius: 4px;
    width: 100%;
    border: 1px solid var(--pm-c);
    line-height: 38px;
    text-align: center;
    padding-left: 26px;
    position: relative;
    font-size: 14px;
    color: var(--pm-c);
}

.list_game .itemBox .uk-width-1-4 .item .down::before {
    position: absolute;
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/top_down.png);
    left: 88px;
    top: 12px;
}

.list_game .itemBox .uk-width-1-4 .item .down:hover {
    background-color: var(--pm-c);
    color: #fff;
}

.list_game .itemBox .uk-width-1-4 .item .down:hover::before {
    background-image: url(../images/top_down_curr.png);
}

/* 手游下载详情 */
.show_game {
    margin-bottom: 30px;
}

.show_game .box {}

.show_game .box .content {}

.show_game .box .content h3,
.show_game .box .content h2{
    font-size: 24px;
    color: #333;
    margin: 5px 0;
}

.show_game .box .content .titleBox {
    margin-bottom: 24px;
}

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

.show_game .box .content .titleBox .txtBox {}

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

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

.show_game .box .content .titleBox .txtBox .tagBox div {
    width: 33%;
}

.show_game .box .btnBox {
    margin-bottom: 40px;
}

.show_game .box .btnBox .down {
    display: block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 17px;
    color: #fff;
    position: relative;
    border-radius: 99px;
    padding-left: 20px;
    margin-right: 20px;
	cursor: pointer;
}

.show_game .box .btnBox .down:last-child {
    margin-right: 0;
}

.show_game .box .btnBox .down.az {
    background: var(--pm-c);
}

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

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

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

.show_game .box .btnBox .down.pg {
    background-color: #F47B41;
}

.show_game .box .btnBox .down .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 .box .btnBox .down:hover .QRcodeBox {
    display: block;
}

.content_title {
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--pm-c);
}

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

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

.content_title .title.game::before {
    background-image: url(../images/game.png);
}

.content_title .title.app::before {
    background-image: url(../images/app.png);
}

.content_title .title.photo::before {
    background-image: url(../images/photo.png);
}

.content_title .title.info::before {
    background-image: url(../images/info.png);
}

.show_game .box .contentBox .item {
    margin-bottom: 50px;
}

.show_game .box .contentBox .item:last-child {
    margin-bottom: 50px;
}

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

.show_game .box .contentBox h3,
.show_game .box .contentBox h2{
    margin-top: 20px;
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--pm-c);
    font-weight: bold;
}

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

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

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

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

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

.show_game .box .contentBox .screenshots .sliderBox .slide li a {
    display: inline-block;
    overflow: hidden;
    position: relative;
    margin-right: 40px;
}

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

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

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

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

.other_rmgl {
    margin-bottom: 40px;
}

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

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

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

.other_rmgl .itemBox .uk-width-1-2 .item {}

.other_rmgl .itemBox .uk-width-1-2 .item .name {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
}

.other_rmgl .itemBox .uk-width-1-2 .item .name .tag {
    width: 40px;
    height: 22px;
    background: #FD6943;
    border-radius: 2px;
    line-height: 22px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    margin-right: 10px;
}

.other_rmgl .itemBox .uk-width-1-2 .item .name span {
    display: block;
    max-width: 335px;
}

.other_rmgl .itemBox .uk-width-1-2 .item .rmglBox {
    width: 100%;
    height: 117px;
    background: #F7F7F7;
    border-radius: 4px;
    padding: 12px 20px;
}

.other_rmgl .itemBox .uk-width-1-2 .item .rmglBox .text {
    font-size: 14px;
    color: #666;
    line-height: 28px;
}

.other_rmgl .itemBox .uk-width-1-2 .item .rmglBox .tagBox {
    font-size: 12px;
    color: #999;
    margin-top: 22px;
}

.other_tltj .right .item {
    width: 14.28%;
}

.other_tltj .right .item.uk-grid-margin {
    margin-top: 28px;
}

.sideBar .index_gftj .left {
    width: 320px;
    margin-right: 0;
}

.sideBar .index_gftj .left .itemBox .item .box .txtBox {
    max-width: 185px;
}

.sideBar .index_xydt {
    margin-bottom: 40px;
}

.sideBar_top {
    width: 100%;
    margin-bottom: 40px;
}

.sideBar_top .top {
    margin-left: -45px;
    margin-bottom: 18px;
}

.sideBar_top .top .uk-width-1-3 {
    padding-left: 45px;
}

.sideBar_top .top .uk-width-1-3 .item {
    position: relative;
}

.sideBar_top .top .uk-width-1-3 .item::before {
    position: absolute;
    content: '';
    display: block;
    width: 26px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
    z-index: 2;
}

.sideBar_top .top .uk-width-1-3 .item .thum {
    width: 72px;
    height: 72px;
    border-radius: 15px;
    border: 2px solid;
    position: relative;
    margin-bottom: 8px;
    transform: scale(1);
}

.sideBar_top .top .uk-width-1-3:nth-child(1) {
    transform: translateX(100%);
}

.sideBar_top .top .uk-width-1-3:nth-child(2) {
    transform: translateX(-100%);
}

.sideBar_top .top .uk-width-1-3:nth-child(1) .item::before {
    background-image: url(../images/sideBar_top1.png);
    top: -6px;
    left: -6px;
}

.sideBar_top .top .uk-width-1-3:nth-child(2) .item::before {
    background-image: url(../images/sideBar_top2.png);
}

.sideBar_top .top .uk-width-1-3:nth-child(3) .item::before {
    background-image: url(../images/sideBar_top3.png);
}

.sideBar_top .top .uk-width-1-3:nth-child(1) .item .thum {
    transform: scale(1.12);
    margin-bottom: 12px;
}

.sideBar_top .top .uk-width-1-3:nth-child(2) .item .thum {
    border-color: #A9D2FA;
}

.sideBar_top .top .uk-width-1-3:nth-child(1) .item .thum {
    border-color: #F3B543;
}

.sideBar_top .top .uk-width-1-3:nth-child(3) .item .thum {
    border-color: #EC8D59;
}

.sideBar_top .top .uk-width-1-3:nth-child(2) .item .name {
    color: #446780;
}

.sideBar_top .top .uk-width-1-3:nth-child(1) .item .name {
    color: #9D6321;
}

.sideBar_top .top .uk-width-1-3:nth-child(3) .item .name {
    color: #7A3D16;
}

.sideBar_top .top .uk-width-1-3 .item .name {
    font-size: 14px;
    display: block;
    max-width: 80px;
    text-align: center;
}

.sideBar_top .itemBox {
    padding-top: 18px;
    border-top: 1px solid #f2f2f2;
}

.sideBar_top .itemBox .item {
    margin-bottom: 25px;
}

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

.sideBar_top .itemBox .item .order {
    font-size: 15px;
    color: #bfbfbf;
    font-weight: bold;
    margin-right: 15px;
}

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

.sideBar_top .itemBox .item .txtBox {
    max-width: 130px;
}

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

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

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

.sideBar_top .itemBox .item .txtBox .tagBox span:first-child::before {
    display: none;
}

.sideBar_top .itemBox .item .down {
    display: block;
    width: 74px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    padding-left: 16px;
    position: relative;
    border-radius: 4px;
    border: 1px solid var(--pm-c);
    color: var(--pm-c);
    font-size: 14px;
}

.sideBar_top .itemBox .item .down::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 9px;
    left: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/top_down.png);
}

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

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

.sideBar .index_zxzx {
    margin-bottom: 40px;
}

.sideBar .index_zxzx .public_item {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f2f2f2;
}

.sideBar .index_zxzx .public_item .thum {
    width: 110px;
    height: 74px;
}

/* 手游专辑页面 */
.list_collection {}

.list_collection .content {
    padding: 0;
    margin-top: 16px;
}

.list_collection .content .itemBox {
    margin-left: -16px;
}

.list_collection .content .itemBox .uk-width-1-2 {
    padding-left: 16px;
}

.list_collection .content .itemBox .uk-width-1-2.uk-grid-margin {
    margin-top: 16px;
}

.list_collection .content .itemBox .uk-width-1-2 .item {
    height: 202px;
    border-radius: 4px;
    padding: 20px 25px;
}

.list_collection .content .itemBox .item .titleBox {
    margin-bottom: 30px;
}

.list_collection .content .itemBox .item .titleBox .txt {
    max-width: 300px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.list_collection .content .itemBox .item .titleBox .tag {
    display: block;
    width: 42px;
    height: 24px;
    background: var(--pm-c);
    border-radius: 2px;
    line-height: 24px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    margin-right: 8px;
    font-weight: normal;
}

.list_collection .content .itemBox .item .titleBox .txt span {
    display: block;
    max-width: 250px;
}

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

.list_collection .content .itemBox .item .box {
    margin-left: -40px;
}

.list_collection .content .itemBox .item .box .uk-width-1-5 {
    padding-left: 40px;
}

.list_collection .content .itemBox .item .box .thumBox .thum {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 18px;
    margin-bottom: 10px;
}

.list_collection .content .itemBox .item .box .thumBox .name {
    display: block;
    width: 80px;
    text-align: center;
    font-size: 14px;
    color: #333;
}

.list_collection .content .itemBox .item .box .txtBox {
    margin-top: 6px;
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 4px;
    border: 1px solid var(--pm-c);
    line-height: 64px;
    text-align: center;
    padding-right: 10px;
    position: relative;
    color: var(--pm-c);
    font-size: 14px;
}

.list_collection .content .itemBox .item .box .txtBox span {
    display: block;
    width: 28px;
    line-height: normal;
    margin: 14px auto;
}

.list_collection .content .itemBox .item .box .txtBox::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 27px;
    right: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/collection_more.png);
}

.list_collection .content .itemBox .item .box .txtBox:hover::before {
    background-image: url(../images/collection_more_curr.png);
}

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

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

.show_collection .topBox {}

.show_collection .topBox .left {
    width: 800px;
    margin-right: 36px;
}

.show_collection .topBox .left .top {
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f2f2f2;
}

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

.show_collection .topBox .left .top .txtBox {}

.show_collection .topBox .left .top .txtBox h1 {
    margin: 0;
    font-size: 30px;
    color: #333;
    font-weight: bold;
    margin-bottom: 36px;
}

.show_collection .topBox .left .top .txtBox .tagBox {
    font-size: 14px;
    color: #808080;
}

.show_collection .topBox .left .top .txtBox .tagBox div {
    width: 30%;
    display: inline-block;
}

.love {}

.love .title {
    padding-left: 20px;
    color: var(--pm-c);
    font-size: 14px;
    margin-right: 10px;
    position: relative;
}

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

.love .tagBox {}

.love .tagBox .tag {
    display: block;
    width: 202px;
    height: 32px;
    background: #F2F2F2;
    border-radius: 8px;
    line-height: 32px;
    text-align: center;
    padding-right: 14px;
    position: relative;
    margin-right: 10px;
    font-size: 14px;
    color: #333;
}

.love .tagBox .tag span {
    display: block;
    max-width: 190px;
    padding: 0 10px;
}

.love .tagBox .tag:hover {
    background-color: var(--pm-c);
    color: #fff;
}

.love .tagBox .tag:hover::before {
    background-image: url(../images/collection_label_curr.png);
}

.love .tagBox .tag::before {
    display: block;
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/collection_label.png);
    right: 14px;
    top: 10px;
}

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

.show_collection .contentBox {
    padding: 0;
    margin-top: 18px;
    margin-bottom: 18px;
}

.show_collection .contentBox .itemBox {
    margin-left: -18px;
}

.show_collection .itemBox .uk-width-1-3 {
    padding-left: 18px;
}

.show_collection .itemBox .uk-width-1-3.uk-grid-margin {
    margin-top: 18px;
}

.show_collection .itemBox .item {
    height: 184px;
    background: #fff;
    border-radius: 4px;
    padding: 20px 20px 16px;
}

.show_collection .itemBox .item .txtBox {
    max-width: 228px;
}

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

.show_collection .itemBox .item .txtBox .star {
    margin: 22px 0 12px;
}

.show_collection .itemBox .item .txtBox .tagBox {
    font-size: 14px;
    color: #666;
}

.show_collection .itemBox .item .txtBox .tagBox span::before {
    display: inline-block;
    content: "|";
    margin: 0 4px;
    color: #999;
}

.show_collection .itemBox .item .txtBox .tagBox span:first-child::before {
    display: none;
}

.show_collection .itemBox .item .txtBox .text {
    margin-top: 27px;
    font-size: 14px;
    display: block;
    color: #999;
}

.show_collection .itemBox .item .thumBox .thum {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    position: relative;
    margin-bottom: 14px;
}

.show_collection .itemBox .item .thumBox .down {
    display: block;
    width: 100px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid var(--pm-c);
    font-size: 14px;
    color: var(--pm-c);
    padding-left: 16px;
    position: relative;
}

.show_collection .itemBox .item .thumBox .down::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 10px;
    left: 27px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/top_down.png);
}

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

.show_collection .itemBox .item .thumBox .down:hover::before {
    background-image: url(../images/top_down_curr.png);
}

.show_collection .xgzj .list{
    margin-left: -30px;
}
.show_collection .xgzj .list .uk-width-1-3 {
    padding-left: 30px;
}

.show_collection .xgzj .list .uk-width-1-3.uk-grid-margin {
    margin-top: 16px;
}

.show_collection .xgzj .list li .title {
    padding-right: 20px;
}

.show_collection .xgzj .list li {
    padding-left: 0;
    margin-bottom: 0;
}

.show_collection .xgzj .list li::before {
    display: none;
}

.show_collection .xgzj .list li .tag {
    width: 36px;
    height: 20px;
    background: #F5F5F5;
    border-radius: 2px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    color: var(--pm-c);
    margin-right: 8px;
}

.show_collection .xgzj .list li .num {
    font-size: 13px;
    color: #999;
}

.other_xgzj {
    margin-bottom: 40px;
}

.other_news .show_collection .itemBox {
    margin-left: 0 !important;
}

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

.other_tjzj .itemBox .item {
    height: 100px;
    background: #F8F8F8;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 13px;
}

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

.other_tjzj .itemBox .item:hover {
    background: #F2FBF6;
}

.other_tjzj .itemBox .item .txtBox {
    max-width: 170px;
}

.other_tjzj .itemBox .item .txtBox .title {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin-bottom: 14px;
}

.other_tjzj .itemBox .item .txtBox .time {
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}

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

.other_tjzj .itemBox .item .txtBox .num::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/tjzj_num.png);
}

.other_tjzj .itemBox .item .txtBox .num {
    font-size: 12px;
    color: #999;
    padding-left: 20px;
    position: relative;
}

.other_tjzj .itemBox .item .thumBox {}

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

.other_tjzj .itemBox .item .thumBox .right {}

.other_tjzj .itemBox .item .thumBox .right .thum {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    margin-bottom: 6px;
}

.other_tjzj .itemBox .item .thumBox .right .thum:last-child {
    margin-bottom: 0;
}

/* 手游排行页面 */
.list_rank {
    margin-bottom: 30px;
}

.rank_banner {
    display: block;
    width: 100%;
    height: 90px;
    position: relative;
    margin-bottom: 20px;
}

.rank_nav {
    margin-bottom: 40px;
}

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

.rank_nav .itemBox .uk-width-1-5 {
    padding-left: 40px;
}

.rank_nav .itemBox .uk-width-1-5 .item {}

.rank_nav .itemBox .uk-width-1-5 .item a {
    display: block;
    height: 56px;
    background: #F2F2F2;
    border-radius: 6px;
    line-height: 56px;
    text-align: center;
    font-size: 18px;
    color: #333;
}

.rank_nav .itemBox .uk-width-1-5 .item.active a {
    background: var(--pm-c);
    color: #fff;
}

.list_rank_itemBox .item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f2f2f2;
}

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

.list_rank_itemBox .item .order {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/rank.png);
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    margin-right: 30px;
}

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

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

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

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

.list_rank_itemBox .item .txtBox {
    max-width: 820px;
    padding-right: 40px;
}

.list_rank_itemBox .item .txtBox .title {
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

.list_rank_itemBox .item .txtBox .star {
    margin: 22px 0;
    margin-right: 15px;
}

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

.list_rank_itemBox .item .txtBox .tagBox span::before {
    content: '|';
    display: inline-block;
    margin: 0 5px;
}

.list_rank_itemBox .item .txtBox .tagBox span:first-child::before {
    display: none;
}

.list_rank_itemBox .item .txtBox .text {
    font-size: 14px;
    color: #999;
}

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

.list_rank_itemBox .item .down::before {
    content: '';
    display: block;
    position: absolute;
    top: 13px;
    left: 21px;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/rank_down.png);
}

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

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

/* 手游排行榜列表页面 */
.list_rank_news {
    margin-bottom: 30px;
}

.list_rank_news_itemBox {}

.list_rank_news_itemBox .itemBox {}

.list_rank_news_itemBox .itemBox .uk-width-1-2 {}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item {
    height: 148px;
    background: #F8F8F8;
    border-radius: 4px;
    padding: 25px 30px;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .txtBox {
    max-width: 240px;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .txtBox .title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .txtBox .time {
    padding-left: 20px;
    position: relative;
    font-size: 12px;
    color: #999;
    margin: 12px 0 14px;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .txtBox .time::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/tjzj_time.png);
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .txtBox .more {
    display: block;
    width: 96px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid var(--pm-c);
    font-size: 14px;
    color: var(--pm-c);
    line-height: 32px;
    position: relative;
    text-align: center;
    padding-right: 10px;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .txtBox .more::before {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    right: 13px;
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/collection_more.png);
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .txtBox .more:hover {
    background-color: var(--pm-c);
    color: #fff;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .txtBox .more:hover::before {
    background-image: url(../images/collection_more_curr.png);
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .thumBox {
    width: 244px;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .thumBox .box {
    width: 80px;
    position: relative;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .thumBox .box::before {
    position: absolute;
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    width: 26px;
    height: 20px;
    left: 0;
    top: 0;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .thumBox .box .thum {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin: 0 auto;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .thumBox .box .name {
    display: block;
    max-width: 70px;
    text-align: center;
    font-size: 14px;
    color: #333;
    margin: 0 auto;
    margin-top: 8px;
}

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

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

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

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .thumBox .uk-width-1-3:nth-child(1) .box::before {
    background-image: url(../images/sideBar_top1.png);
    z-index: 2;
    left: 6px;
    top: -3px;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .thumBox .uk-width-1-3:nth-child(2) .box::before {
    background-image: url(../images/sideBar_top2.png);
    z-index: 2;
    left: 10px;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .thumBox .uk-width-1-3:nth-child(3) .box::before {
    background-image: url(../images/sideBar_top3.png);
    z-index: 2;
    left: 10px;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .thumBox .uk-width-1-3:nth-child(1) .box .thum {
    border: 2px solid #F3B543;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .thumBox .uk-width-1-3:nth-child(2) .box .thum {
    border: 2px solid #A9D2FA;
}

.list_rank_news_itemBox .itemBox .uk-width-1-2 .item .thumBox .uk-width-1-3:nth-child(3) .box .thum {
    border: 2px solid #EC8D59;
}

.list_rank_news_itemBox .itemBox .item .thumBox {
    margin-left: -20px;
}

.list_rank_news_itemBox .itemBox .item .thumBox .uk-width-1-3 {
    padding-left: 20px;
}

/* 手游排行详情页面 */
.list_rank_news {}

.list_rank_news_contentBox .content {
    width: 800px;
}

.list_rank_news_contentBox .content .titleBox {
    font-size: 23px;
    color: #333;
    font-weight: bold;
    width: 100%;
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/show_rank_top.png);
    margin-bottom: 30px;
}

.list_rank_news_contentBox .content .titleBox .time {
    width: 126px;
    height: 28px;
    border-radius: 2px;
    line-height: 28px;
    text-align: center;
    color: var(--pm-c);
    font-size: 15px;
    margin-left: 18px;
    font-weight: normal;
    border: 1px solid var(--pm-c);
}

.list_rank_news_contentBox .list_rank_itemBox .item .txtBox {
    max-width: 450px;
}

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

.sideBar .index_zxzx .left .topImg {
    width: 320px;
    height: 170px;
}

.sideBar .index_zxzx .left .topImg .tip {
    height: 34px;
    line-height: 34px;
    font-size: 14px;
}

.sideBar .index_zxzx .left .itemBox .item .title {
    font-size: 14px;
}

.sideBar .index_zxzx .left .itemBox .item .box .thum {
    width: 130px;
    height: 70px;
}

.sideBar .index_zxzx .left .itemBox .item .box .txtBox {
    max-width: 175px;
}

.sideBar .index_zxzx .left .itemBox .item .box .txtBox .text {
    font-size: 12px;
    color: #666;
}

.sideBar .index_zxzx .left .list li {
    padding-left: 16px;
}

.sideBar .index_zxzx .left .list li::before {
    display: block;
}

.sideBar .index_zxzx .left .list li .title {
    max-width: 260px;
}

.sideBar .index_zxzx .left .topImg .tip .rd::before {
    width: 14px;
    height: 14px;
    top: 10px;
}

.sideBar .other_tjzj {
    margin-left: 0;
    margin-bottom: 40px;
}

.sideBar .index_xydt .xydt {
    margin-right: 0;
}

.sideBar .index_xydt .xydt .itemBox .item {
    width: 100%;
    padding-left: 20px;
}

.sideBar .index_xydt .xydt .itemBox .item .box .content .thum {
    width: 150px;
    height: 90px;
}

.sideBar .index_xydt .xydt .itemBox {
    margin-left: -20px;
}

.sideBar .index_xydt .xydt .itemBox .item .box .content {
    padding-left: 20px;
}

.sideBar .index_xydt .xydt .itemBox .item .box {
    margin-left: -20px;
}

.sideBar .index_xydt .xydt .list li .title {
    max-width: 260px;
}

.sideBar .index_orther .cyzx {
    width: 100%;
}

.sideBar .index_orther .cyzx .topImg {
    width: 320px;
    height: 160px;
}

.sideBar .index_orther .cyzx .topImg .article {
    height: 34px;
    width: 100%;
    font-size: 14px;
}

.sideBar .index_orther .cyzx .topImg .article .text {
    font-size: 14px;
    max-width: 240px;
}

.sideBar_newTop {
    margin-bottom: 40px;
}

.sideBar_newTop .list li {
    padding-left: 0;
}

.sideBar_newTop .list li::before {
    display: none;
}

.sideBar_newTop .list li .tag {
    width: 60px;
    height: 20px;
    background: #F5F5F5;
    border-radius: 2px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    color: var(--pm-c);
    margin-right: 8px;
}

.sideBar_newTop .list li .title {
    padding-right: 20px;
}

.sideBar_newTop .list li .more {
    display: block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/newTop_more.png);
}

.sideBar_jxph {
    margin-bottom: 40px;
}

.sideBar_jxph .itemBox {
    margin-left: -35px;
}

.sideBar_jxph .itemBox .uk-width-1-3 {
    padding-left: 35px;
}

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

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

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

/* 礼包列表页面 */
.list_game_package {
    margin-bottom: 30px;
}

.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 .uk-width-1-4 .item {
    height: 154px;
    background: #F8F8F8;
    border-radius: 4px;
    padding: 15px 20px;
}

.list_game_package .top_ItemBox .uk-width-1-4 .item:hover {
    background: #F2FBF6;
}

.list_game_package .top_ItemBox .uk-width-1-4 .item .top {
    margin-bottom: 6px;
}

.list_game_package .top_ItemBox .uk-width-1-4 .item .top .thum {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 20px;
    margin-right: 18px;
}

.list_game_package .top_ItemBox .uk-width-1-4 .item .top .txtBox {
    max-width: 130px;
}

.list_game_package .top_ItemBox .uk-width-1-4 .item .top .txtBox .title {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 14px;
}

.list_game_package .top_ItemBox .uk-width-1-4 .item .top .txtBox .text {
    font-size: 14px;
    color: #999;
}

.progress {
    width: 100px;
    height: 6px;
    background: #D9D9D9;
    border-radius: 999px;
    margin-bottom: 0;
    margin-right: 8px;
}

.progress::-webkit-progress-value {
    border-radius: 999px;
    background-color: #FD6943;
}

.list_game_package .top_ItemBox .uk-width-1-4 .item .btm .txt {
    font-size: 12px;
    color: #FD6943;
}

.list_game_package .top_ItemBox .uk-width-1-4 .item .btm .get {
    display: block;
    width: 72px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid var(--pm-c);
    color: var(--pm-c);
    font-size: 14px;
    line-height: 28px;
    text-align: center;
}

.list_game_package .top_ItemBox .uk-width-1-4 .item .btm .get:hover {
    background: var(--pm-c);
    color: #fff;
}

.list_game_package_top {
    margin-bottom: 16px;
}
.lisy_game_package_itemBox {}

.lisy_game_package_itemBox .itemBox{
    overflow: hidden;
}

.lisy_game_package_itemBox .item {
    margin-left: -30px;
}
.lisy_game_package_itemBox .item .uk-width-1-2.uk-grid-margin {
    margin-top: 25px;
}
.lisy_game_package_itemBox .item .uk-width-1-2 {
    padding-left: 30px;
    border-bottom: 1px solid #F8F8F8;
    padding-bottom: 25px;
}

.lisy_game_package_itemBox .uk-width-1-2:nth-last-child(-n+2) {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

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


.lisy_game_package_itemBox .item .box .txtBox .title {
    width: 287px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.lisy_game_package_itemBox .item .box .txtBox .text {
    max-width: 190px;
    font-size: 14px;
    color: #666;
    margin: 12px 0 10px;
}

.lisy_game_package_itemBox .item .box .txtBox .time {
    padding-left: 18px;
    font-size: 14px;
    color: #999;
    position: relative;
}

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

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

.lisy_game_package_itemBox .item .box .txtBox .get:hover {
    background: var(--pm-c);
    color: #fff;
}

.sideBar .index_xydt .yxlb .itemBox .item {
    margin-left: 0;
}

.sideBar_new_package {
    margin-bottom: 40px;
}

.sideBar_new_package .topImg {
    margin-bottom: 18px;
    width: 320px;
    height: 100px;
    position: relative;
    overflow: hidden;
    display: block;
}

.sideBar_new_package .list li .title {
    max-width: 260px;
}

/* 礼包详情页面 */
.show_game_package_content {
    margin-bottom: 30px;
}

.show_game_package_content .content {}

.show_game_package_content .content .titleBox {
    margin-bottom: 36px;
}

.show_game_package_content .content .titleBox .thum {
    width: 120px;
    height: 120px;
    border-radius: 25px;
    position: relative;
    margin-right: 25px;
}

.show_game_package_content .content .titleBox .txtBox h1 {
    margin: 0;
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

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

.show_game_package_content .content .titleBox .txtBox .tagBox div {
    width: 45%;
    display: inline-block;
}

.show_game_package_content .content .titleBox .txtBox .tagBox .num {
    display: flex;
    margin-top: 14px;
    width: 100%;
}

.show_game_package_content .content .titleBox .txtBox .tagBox .num span {
    font-size: 12px;
    color: #FD6943;
}

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

.show_game_package_content .content .titleBox .btnBox a.get {
    background: #FF6666;
    margin-bottom: 20px;
}

.show_game_package_content .content .titleBox .btnBox a.down {
    background-color: var(--pm-c);
}

.show_game_package_content .content .contentBox {
    margin-bottom: 70px;
}

.show_game_package_content .content .contentBox .gift::before {
    background-image: url(../images/gift.png);
}

.show_game_package_content .content .contentBox .item {
    margin-bottom: 50px;
}

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

.show_game_package_content .content .contentBox .item h3,
.show_game_package_content .content .contentBox .item h2{
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 18px;
}

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

.show_game_package_content .index_zxzx .left {
    width: 100%;
    margin-right: 0;
}

.show_game_package_content .index_zxzx .left .itemBox {
    margin-right: 30px;
    width: 385px;
}

.show_game_package_content .index_zxzx .left .itemBox .item .box .txtBox {
    max-width: 240px;
}

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

.show_game_package_content .lisy_game_package_itemBox {
    margin-bottom: 70px;
}

.show_game_package_content .index_zxzx .left .itemBox .item .title {
    margin-bottom: 10px;
}

.show_game_package_content .index_zxzx .list li {
    margin-bottom: 20px;
}

.show_game_package_content .index_zxzx .list li:last-child {
    margin-bottom: 0;
}

/* 关于我们页面 */
.page {
    margin-bottom: 30px;
}

.page_nav {
    width: 200px;
    height: 423px;
    background: #F8F8F8;
    border-radius: 4px;
    border: 1px solid #EDEDED;
    margin-right: 40px;
}

.page_nav a.active {
    background: #fff;
}

.page_nav a {
    display: block;
    height: 60px;
    border-radius: 4px 4px 0px 0px;
    padding: 15px 0;
}

.page_nav a.active span {
    color: var(--pm-c);
    border-left: 3px solid var(--pm-c);
}

.page_nav a span {
    display: block;
    width: 100%;
    font-size: 18px;
    color: #4d4d4d;
    line-height: 30px;
    text-align: center;
}

.page_contentBox {
    padding-bottom: 60px;
}

.page_contentBox p {
    line-height: 38px;
    margin-bottom: 60px;
    font-size: 16px;
    color: #666;
}

.page_contentBox p:last-child {
    margin-bottom: 0;
}

.page_contentBox .content_title {
    border-bottom-color: #F5F5F5;
}

.page_contentBox .content_title .title {
    padding-left: 0;
    font-size: 24px;
    color: #333;
    position: relative;
    width: 96px;
    font-weight: normal;
}

.page_contentBox .content_title .title::before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    position: absolute;
    background-color: var(--pm-c);
    left: 0;
    top: 40px;
}

.page_contentBox .itemBox .item {
    margin-bottom: 50px;
}

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

.page_contentBox .itemBox .item h3,
.page_contentBox .itemBox .item h2{
    font-size: 16px;
    color: #4d4d4d;
    font-weight: bold;
    margin-bottom: 20px;
}

.page_contentBox .itemBox .item .box {
    margin-left: -20px;
}

.page_contentBox .itemBox .item .box .aBox {
    padding-left: 20px;
    width: 14.28%;
}

.page_contentBox .itemBox .item .box .aBox a {
    display: block;
    width: 110px;
    height: 36px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    line-height: 36px;
    text-align: center;
    font-size: 15px;
    color: #666;
}

.page_contentBox .itemBox .item .box .aBox a:hover {
    border-color: var(--pm-c);
    color: var(--pm-c);
}

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

.error .img {
    width: 220px;
    height: 220px;
    position: relative;
    overflow: hidden;
    margin: 60px auto 0;
}

.error .content {
    text-align: center;
    transform: translateY(-50px);
    width: 200px;
    margin: 0 auto;
}

.error .content .text {
    margin-bottom: 14px;
    font-size: 14px;
    color: #999;
    line-height: 28px;
}

.error .content .btn {
    color: var(--pm-c);
    font-size: 14px;
    line-height: 28px;
    text-decoration: underline;
}

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

.page_search .list_news .box .content .itemBox .public_item .txtBox {
    max-width: 100%;
}

.page_search .list_game {
    margin-bottom: 50px;
}

.page_search .list_game .itemBox .uk-width-1-4 .item {
    height: auto;
}

.page_search .list_game .itemBox .uk-width-1-4 {
    padding-left: 56px;
}

.page_search .list_game .itemBox .uk-width-1-4.uk-grid-margin {
    margin-top: 30px;
}

.page_search .list_game .itemBox {
    margin-left: -56px;
}

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

/* 开服表页面 */
/* 开服表 */
.kaifu {
    margin-bottom: 30px;
}

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

.kaifu .content {}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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