html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike,
strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, textarea {
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'PingFang SC', 'Lantinghei SC', 'Helvetica Neue', 'Helvetica', 'Arial', 'Microsoft YaHei', 'STHeitiSC-Light', 'simsun', 'WenQuanYi Zen Hei', 'WenQuanYi Micro Hei', "sans-serif";
    color: #333;
    background-color: #f7f7f7;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

em, i {
    font-style: normal
}

h1, h2, h3, h4, h5, h6, th {
    font-size: 100%;
    font-weight: normal;
}

textarea {
    border: 0;
}

a {
    text-decoration: none;
    color: #FFFFFF;
    background: none
}

ul, ol {
    list-style: none;
}

button, img, input {
    border: none
}

input, textarea, select {
    color: #333;
    font-size: 14px;
}

:focus {
    outline: none;
}

/* 原子类 */
.w1280 {
    width: 1280px;
}

.m-img {
    display: block;
    width: 100%;
}

/*提示语*/
.body-msg {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 50px;
    line-height: 50px;
    padding: 0 25px;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    animation: slideLeft 300ms ease forwards;
    transform: translate(-40%, -50%);
    opacity: 0;
    z-index: 9;
}

/*加载*/
.body-loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9;

}

.body-loading span {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 50px;
    line-height: 50px;
    padding: 0 25px;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    animation: fadeIn 300ms ease forwards;
    transform: translate(-45%, -50%);
    opacity: 0;

}

.body-loading span::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: top;
    margin: 10px 5px 0 0;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAMAAAAM7l6QAAAAn1BMVEUAAAC8u7yxr7DLysrOzs7S0tK6uLmjoaLp6enFxMWvra+lo6SWlJXr6+vm5ubf39/R0dG7ubrBv8Dh4eGlo6Tc3NyenJ2rqaqbmZrp6emhn6Da2tqxsLDY2Niura2amJnHxsfLy8uzs7PCwMHf39+UkpOioKGvrq6YlpeYlpf+//+XlZd2c3WamJni4uLb29vDwcKysrKrqarT09P09fV/crQcAAAALXRSTlMAIRMu+1X++/19TjBWMSXjzcy5emZlPN7dwcC4j4x+fkPr4d/V1c6wk+3MpmKjQrqtAAABDUlEQVQoz73P2XKCQBAF0NvDElkUZV9EUaNmG7bk/78tYyjCjCSvngeqmluXbvBAWfZPsApIPBaLJcD2NIuDuhjjd/4yi5d1bQxxzHmMmbL2QIsvDef78iq6bfTqANkbPvgrA5yQpr1NUxKM5wiCe3bFcZzvMaKiaTwDv9yU81y6XjQbb5pSnrpQRZHUDpWIBCiY9KbQhTWT0vxJyDFYfwpKfLnFl3HSBCjIcRzIDOnH7BCqaq0fpinpE1v+lK/rB7md9P2VMLJ0vSRUG+Mn29hg277fYaRZFYBTa8HfIOyODIh3DhRWewIzTcKx22JGa1sDZJoa7K6LAdyXfQwxrn/UyaIxZtJelTjtcb4BNboSop/e5fkAAAAASUVORK5CYII=') no-repeat center center;
    background-size: 100%;
    animation: rotate 1s linear infinite;
}

/*css3动画*/
@keyframes slideLeft {
    from {
        transform: translate(-40%, -50%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

/* 命名public-开头代表是公共的 */
/* 公共头部 */
.public-head-wrap {
    height: 75px;
}

.public-head {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 12;
    height: 75px;
    background-color: #6723FF;
}

.public-head__con {
    position: relative;
    width: 1280px;
    height: 75px;
    line-height: 75px;
    margin: 0 auto;
}

.public-head__con .logo {
    display: inline-block;
}

.public-head__con .logo-link {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 12px;
    box-shadow: 0px 0px 5px #FFFFFF;
}

.public-head__nav {
    position: absolute;
    top: 0;
    left: 70px;
    height: 75px;
    width: 1100px;
}

.public-head__nav .item {
    float: left;
    padding: 0 30px;
    font-size: 18px;
}

.public-head__nav .item:hover,
.public-head__nav .active {
    font-weight: 700;
}

.public-head__nav .code {
    position: absolute;
    top: 78px;
    right: 0;
    z-index: 12;
    display: none;
}

.public-head__nav .code img {
    width: 180px;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    border: 30px solid #fff;
    box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.1);
}

/* 内容main */
.main {
    width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}

/* 公共-全站右侧样式 */
.public-main-right {
    float: right;
    width: 310px;
}

.public-mr__title {
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    font-size: 20px;
    font-weight: 700;
    padding-left: 20px;
}

/* 右侧-标签 */
.public-mr__box {
    background-color: #fff;
    border-radius: 18px;
    padding: 10px 0 5px;
    margin-bottom: 20px;
}

.public-mr__box .tag {
    overflow: hidden;
    margin-top: 10px;
    padding-left: 10px;
}

.public-mr__box .tag-item {
    width: 80px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #f5f5f5;
    border-radius: 18px;
    margin: 0 8px 23px;
    float: left;
    color: #000000;
}

.public-mr__box .tag-item:hover {
    background-color: #6723FF;
    color: #FFFFFF;
}

/* 右侧-相关游戏推荐 */
.public-mr__box .recommend {
    overflow: hidden;
    padding-left: 8px;
    margin-top: 10px;
}

.public-mr__box .recommend-item {
    width: 70px;
    text-align: center;
    height: 100px;
    overflow: hidden;
    float: left;
    margin: 0 14px 20px;
}

.public-mr__box .recommend-pic {
    position: relative;
    width: 70px;
    height: 70px;
    display: block;
    border-radius: 9px;
    overflow: hidden;
}

.public-mr__box .bg-default {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 70px;
    overflow: hidden;
    background: #eee url(../images/bg_default_small.png) center no-repeat;
}

.public-mr__box .recommend-img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
}

.public-mr__box .recommend-words {
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
}

.public-mr__box .recommend-item:hover .recommend-words {
    color: #6723FF;
}

/* 公共尾部 */

.public-foot-wrap {
    padding: 28px 0 40px;
    background-color: #24232C;
    margin-top: 50px;
}

.public-foot {
    width: 1280px;
    margin: 0 auto;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.public-foot .words {
    padding-left: 5px;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 10px;
}

.public-foot .words-qq {
    color: #bebdc0;
    font-weight: 400;
    margin-bottom: 10px;
}

.public-foot__link {
    overflow: hidden;
}

.public-foot__link a {
    color: #fff;
    display: inline-block;
    line-height: 30px;
    padding: 0 5px;
}

.public-foot__link a:hover {
    color: #ffae00;
}

.public-foot__about {
    text-align: center;
    margin-top: 40px;
}

.public-foot__about a {
    display: inline-block;
    margin: 0 16px;
    color: #fff;
}

.public-foot__about a:hover {
    color: #ffae00;
}

.public-foot__b {
    color: #7d7c82;
    text-align: center;
    line-height: 20px;
    margin-top: 15px;
}

.public-foot__b a {
    color: #7d7c82;
}

/* 返回顶部 */
.public-back-top {
    position: fixed;
    bottom: 200px;
    left: 50%;
    z-index: 13;
    margin-left: 660px;
    text-indent: -9999em;
    width: 70px;
    height: 70px;
    background: url(../images/icon_backtop.png) no-repeat;
    cursor: pointer;
    display: none;
}

.public-back-top:hover {
    background-position: 0 -70px;
}

/* 面包屑 */
.public-crumbs {
    line-height: 20px;
    margin: 20px auto;
    font-size: 14px;
    color: #5b5b5b;
}

.public-crumbs a {
    position: relative;
    display: inline-block;
    padding-right: 20px;
    color: #5b5b5b;
}

.public-crumbs a::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    margin-top: -5px;
    width: 5px;
    height: 10px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAJBAMAAAAIg/utAAAAHlBMVEUAAAAzMzM1NTU0NDQ0NDQ2NjY0NDQ0NDQ1NTU2NjaANAG3AAAACnRSTlMA4EEvOjTKrGAmGnZsNAAAACpJREFUCNdjSGFgYAh0YGBgFgIyDBUYGDgEGBgcAxiYhBkYFA0YGCoZGAA1ngLkx/jPyAAAAABJRU5ErkJggg==) no-repeat;
}

.public-crumbs span, .public-crumbs h1 {
    display: inline-block;
}

/* 公共滚动加载样式 */

.public-loading {
    text-align: center;
    color: #999;
    line-height: 36px;
    font-size: 14px;
}

.public-loading > span {
    position: relative;
    display: inline-block;
    padding-left: 30px;
}

.public-loading > span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAMAAABHPGVmAAAAn1BMVEUAAACZmZmZmZmampqYmJiZmZmZmZmZmZmampqfn5+YmJibm5uZmZmXl5eZmZmXl5eZmZmZmZmZmZmampqWlpaYmJiZmZmYmJiUlJSZmZmZmZmZmZmZmZmYmJiZmZmZmZmYmJiZmZmYmJibm5uXl5eWlpaYmJiampqampqZmZmYmJiZmZmampqZmZmbm5uZmZmampqZmZmWlpaZmZmYmJjcZykzAAAAM3RSTlMA1rnZvUzIfRwGo2GdizsPxMBrMhWPg3UK8+3ltbCsp4Z5VkVBI/v4mHFg38/LkVMs65zBC8iIAAADOklEQVRo3u3a55LaMBQF4GPADVccMKb3pWVLcv3+z5YN1kY2wqylRJPJhO83zAHp6kpjGbKWz89BBL169K7tQqckp5+W0GlKFwZ06tBFGzq1/nDI5iXYiCF1w2X6Bw/SDjkRBU1DAnoXZ5AzLMrIaxbi0YUNORZdjLImIdmILr5KL7rCoEnIgNTqISBm93nIjpgB5DhPOV10akLExZM/OZCUspB881nI5uOTKWS5YyqcPws5U2HsQtqaCvmwJoQXe2ENBRYV9tG9kGhPBQsqvhDTvRfSJeYLlCz494UQ4ZcsoKb/RAVLCBHG9KkPRSti1nWtfk3MCsomvDqFTatS5xOoM4lZojCtdsIlMSYasS3jZYdrMRVy1jGSSqaTUyEW5zN9fh7iyvwye2lWV8ZBebx6bPSC2vI9fuO1L/Sf8xpV369/axLHyfV+8B1VJqu5/IQyPyemF6Is2t9Zz3PeEkreZvShhbIZcV0HDJ+F3LtTFwlKooCoJuREJaNK0dt3du+ATRfnTagkQYVPZcYruDC1a/tSaKcmuG2Pylouqk4TKpuGkOYsKCduNISgP6CKIyTZIypbOLd7+5TKTMgwDSrrbZt9sgUJKZVNPNyz4v/5LLnBcYPo89ljppKbApNPv6COWIcy9WXz6jfRzMkgaq8h4Y2v4+bCEHKGRdnuoNXW7xy2eHj4C5J5p/VLp+tBmdfttK505iuXHwq5JRT5dJMBrEiwhZIN1bBhkOAAJTOqYfzBkHl9yIAEJpS8Uo0DojZd6UJRi26aOIC7/No2fmnHRygbWm3jSvur38fDw8P/bdeHbkMj3/sZdHotWnIP+oSdnO8oejh++Syhx3BEnActulSy11NgayoZh9BiRtzcgR49+mBtoMsxZyN1hD5uTD/5DnRy7djohnh4ALLAsI7Qq2/InvHVr8VP0MhkTWAGjSZ0kfvQxyYWsml6MzKIfuM+qwHXonftPuS8EBOigUTtgtmoe6TqmmZW+1aDYsgOVeZZeLSsHpLeHoC3nD8YEW9GUsjJWnyNiDdGnZuHnTiDLG8298QuUDcu68Us+afewNEbItyYamQTae//7JnStx20ihbjsfQ59gfZFhVioknsFQAAAABJRU5ErkJggg==) no-repeat center;
    background-size: 100% auto;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* page */
.page-wrap {
    margin: 8px 0;
}

.page-list {
    display: flex;
    justify-content: center;
    width: 72%;
    margin: auto;
    align-items: center;
}

.page-item {
    display: block;
    min-width: 32px;
    border: 1px solid #eee;
    text-align: center;
    margin-left: 8px;
    height: 32px;
    line-height: 32px;
    transition: .3s;
    color: #000000;
}

.page-item:hover {
    border-color: #6723FF;
}

.page-item.active {
    background-color: #6723FF;
    color: #FFFFFF;
}

.page-item.dot {
    border: none;
}

.page-item.next {
    font-size: .8rem;
    padding: 0 5px;
}


/*侧边栏*/
.common-sidebars {
    flex-shrink: 0;
    width: 312px;
    margin-left: 26px;
}

.common-sidebard-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.common-sidebar {
    padding: 22px 20px 32px 26px;
    margin-bottom: 20px;
    background: #FFFFFF;
    border-radius: 14px;
    font-family: SourceHanSansSC-Medium, SourceHanSansSC;
}

.common-sidebar:last-of-type {
    margin-bottom: 0;
}

.common-sidebar .common-sidebar__head {
    margin-bottom: 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.common-sidebar__head .common-sidebar__title {
    font-size: 20px;
    font-weight: 500;
    color: #333333;
}

.common-sidebar__head .common-sidebar__more {
    font-size: 12px;
    font-weight: 400;
    color: #333333;
    cursor: pointer;
    position: relative;
    padding-right: 7px;
}

.common-sidebar__head .common-sidebar__more::after {
    content: "";
    width: 5px;
    background: url(../images/icon_arrow.png) no-repeat center;
    background-size: 5px;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.common-sidebar .common-sidebar__list {
}

.common-sidebar__list .common-sidebar__item {
    margin-bottom: 26px;
}

.common-sidebar__list .common-sidebar__item:last-of-type {
    margin-bottom: 0;
}

.common-sidebar__item .common-sidebar__href {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.common-sidebar__href .common-sidebar__left {
    flex: 1;
    display: flex;
}

.common-sidebar__left .common-sidebar__img {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #D8D8D8;
    border-radius: 10px;
    display: block;
}

.common-sidebar__left .common-sidebar__title {
    width: 136px;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.common-sidebar__title .common-sidebar__name {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all .1s linear 0s;
}

.common-sidebar__title .common-sidebar__score {
    position: relative;
    font-size: 14px;
    font-family: DINAlternate-Bold, DINAlternate;
    font-weight: bold;
    color: #6723FF;
    text-indent: 13px;
}

.common-sidebar__title .common-sidebar__score::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFFmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDggNzkuMTY0MDM2LCAyMDE5LzA4LzEzLTAxOjA2OjU3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgMjEuMCAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDIzLTExLTIzVDE4OjE4OjEyKzA4OjAwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAyMy0xMS0yNFQxMDoyMjoyOCswODowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyMy0xMS0yNFQxMDoyMjoyOCswODowMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDphY2NkYzY5ZS1iNmNhLWI5NDgtYWU5Mi05MTlhNmQzNDRkYjAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6YWNjZGM2OWUtYjZjYS1iOTQ4LWFlOTItOTE5YTZkMzQ0ZGIwIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6YWNjZGM2OWUtYjZjYS1iOTQ4LWFlOTItOTE5YTZkMzQ0ZGIwIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDphY2NkYzY5ZS1iNmNhLWI5NDgtYWU5Mi05MTlhNmQzNDRkYjAiIHN0RXZ0OndoZW49IjIwMjMtMTEtMjNUMTg6MTg6MTIrMDg6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyMS4wIChXaW5kb3dzKSIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5c6BCrAAAA70lEQVQokZXSMUoDURSF4e89EEs7wUIQBizEToM2sRQUsRMsLZUguARr6yxAiwguQHegC7BTCIKKhVUWIHMtJtHJ2IwHTnM5/31w30lxjIxQ17zkDrNK+3gBaeyyQkwNK/exhlXJ5VRmrF9QtUlpDge18BaKOtQEF2QbsmtNZQNJF4s/++LEtuQCK5j5A00r8CScp+iJxmFaKQv3/8c8ZqU9DFsj4VOykzHCOp5bYG/oCB9ZQhih3wIc4FXUvyMstwCLSUnqzdlsAXaEXL04qRlFI3SDq8ZsSaqYLBj7DO94wC4OcYQubjGUnMq+ZL4BN001ln6VTqkAAAAASUVORK5CYII=) no-repeat;
    background-size: contain;
}

.common-sidebar__href .common-sidebar__btn {
    flex-shrink: 0;
    width: 58px;
    height: 28px;
    background: #6723FF;
    border-radius: 21px;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common-sidebar__href:hover .common-sidebar__name {
    color: #6723FF;
}

/*资讯列表*/
.common-information {
    font-family: SourceHanSansSC-Regular, SourceHanSansSC;
    display: flex;
    justify-content: space-between;
}

.common-information .common-information-content {
    width: 410px;
}

.common-information-content .common-information-title {
    margin-bottom: 29px;
    font-size: 24px;
    font-weight: 500;
    color: #333333;
    display: block;
}

.common-information-content .common-information-list {
}

.common-information-list .common-information-item {
    margin: 20px 0;
}

.common-information-item .common-information-href {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
}

.common-information-href p {
    color: #333333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all .1s linear 0s;
}

.common-information-href span {
    color: #999999;
    white-space: nowrap;
}

.common-information-item .common-information-href:hover p {
    color: #6723FF;
}

/*相关内容*/
.common-correlation {
    font-family: SourceHanSansSC-Regular, SourceHanSansSC;
}

.common-correlation__title {
    margin-bottom: 20px;
    line-height: 24px;
    font-size: 24px;
    font-weight: 500;
    color: #333333;
    display: block;
}

.common-correlation__list {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.common-correlation__item {
    height: 186px;
    margin-bottom: 20px;
    padding-left: 32px;
    padding-right: 34px;
    background: rgba(216, 216, 216, 0.17);
    border-radius: 15px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.common-correlation__item:last-of-type {
    margin-bottom: 0;
}

.common-correlation__href {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.common-correlation__btn {
    flex-shrink: 0;
    width: 101px;
    height: 43px;
    background: #6723FF;
    border-radius: 21px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common-correlation__content {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.common-correlation__img {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    margin-right: 20px;
    border-radius: 17px;
    background: #eee url(../images/bg_default.png) center no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.common-correlation__img img {
    width: 100%;
    transition: all .2s linear 0s;
}

.common-correlation__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    overflow: hidden;
    white-space: nowrap;
}

.common-correlation__head {
    display: flex;
    align-items: center;
}

.common-correlation__name {
    margin-right: 14px;
    font-size: 24px;
    font-weight: 500;
    color: #333333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.common-correlation__score {
    display: inline-block;
    position: relative;
    font-size: 18px;
    font-family: DINAlternate-Bold, DINAlternate;
    font-weight: bold;
    color: #FFAE00;
    text-indent: 17px;
}

.common-correlation__score::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAMAAAAolt3jAAAAS1BMVEUAAAD/rwD/rwD/rwD/rwD/wAD/rwD/rwD/rwD/rwD/rwD/sAD/rwD/sQD/sQD/sgD/rwD/rgD/rwD/sAD/rgD/sAD/rwD/uwD/rgBYkWKHAAAAGHRSTlMA4M+4ewfv2cLAk1g8Nigao6FgXlVNEA+DVe+fAAAAWklEQVQI103MRw7AIAxE0SH0nh7uf9KAJQv+xnoLD6hibcHMt+anUuslUF++xKA48wuotqRgVhrsKw9oOSU1oDfW1gUEZsBIMiVRMAXR9a8Y+4IjVnWP86gK/Bi2CksPtNvWAAAAAElFTkSuQmCC) no-repeat;
    background-size: contain;
}

.common-correlation__tag {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    position: relative;
}

.common-correlation__tag span {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
}

.common-correlation__tag span::after {
    content: "";
    transform: translateX(8px);
    display: inline-block;
    width: 3px;
    height: 3px;
    opacity: .5;
    border-radius: 50%;
    background-color: #999;
}

.common-correlation__tag span:last-of-type::after {
    display: none;
}

.common-correlation__foot {
    display: flex;
}

.common-correlation__describe {
    margin-left: 29px;
    font-size: 14px;
    font-weight: 400;
    color: #999999;
}

.common-correlation__describe:first-of-type {
    margin-left: 0;
}

.common-correlation__source {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.common-correlation__label {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
}

.common-correlation__highlight {
    color: #FFAE00;
}

.common-correlation__item:hover .common-correlation__name {
    color: #ffae00;
}

.common-correlation__item:hover .common-correlation__img img {
    transform: scale(1.1);
}

/*通用攻略列表*/
.common-strategy__list {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.common-strategy__item {
    height: 141px;
    padding: 0 19px;
    margin-bottom: 12px;
    background: #F9F9F9;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.common-strategy__href {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.common-strategy__img {
    flex-shrink: 0;
    width: 166px;
    height: 88px;
    margin-right: 17px;
    border-radius: 9px;
    background: #eee url(../images/bg_default.png) center no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.common-strategy__img img {
    width: 100%;
    transition: all .2s linear 0s;
}

.common-strategy__info {
    height: 88px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.common-strategy__title {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all .1s linear 0s;
}

.common-strategy__describe {
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.common-strategy__data {
    font-size: 12px;
    font-weight: 400;
    color: #333333;
}

.common-strategy__item:hover .common-strategy__title {
    color: #ffae00;
}

/*通用列表单行特殊处理*/
.common-uniline__tags {
    max-height: 48px;
    display: flex;
    overflow: hidden;
}

.common-uniline__tags object {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 43px;
}

.common-uniline__tag {
    width: 15%;
    font-size: 14px;
    font-weight: 500;
    color: #FFAE00;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.common-uniline-content {
    font-family: SourceHanSansSC-Regular, SourceHanSansSC;
}

.common-uniline-content .common-strategy__item {
    height: 192px;
    padding-top: 31px;
    padding-bottom: 31px;
    background: #fff;
}

.common-uniline-content .common-strategy__img {
    width: 311px;
    height: 192px;
    margin-right: 29px;
}

.common-uniline-content .common-strategy__info {
    height: 192px;
}

.common-uniline-content .common-strategy__title {
    font-size: 20px;
}

.common-uniline-content .common-strategy__describe {
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    transform: translateY(-2px);
}

.common-uniline-content .common-strategy__data {
    font-size: 12px;
    margin-left: 90px;
}

.common-uniline-content .common-strategy__item:hover .common-strategy__title {
    color: inherit
}

.common-uniline-content .inventory-item__foot {
    justify-content: flex-start;
}

/**/
.common-column {
    font-family: SourceHanSansSC-Regular, SourceHanSansSC;
}

.common-column__list {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.common-column__item {
    width: 50%;
    height: 116px;
    margin-bottom: 20px;
    display: flex;
}

.common-column__href {
    flex: 1;
    padding: 0 19px;
    margin-right: 18px;
    background: rgba(216, 216, 216, 0.17);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.common-column__item:nth-of-type(2n) .common-column__href {
    margin-right: 0;
    margin-left: 18px;
}

.common-column__info {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.common-column__img {
    flex-shrink: 0;
    width: 142px;
    height: 84px;
    margin-right: 12px;
    border-radius: 13px;
    background: #eee url(../images/bg_default.png) center no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.common-column__img img {
    width: 100%;
    transition: all .2s linear 0s;
}

.common-column__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    overflow: hidden;
}

.common-column__name {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.common-column__describe {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    display: flex;
}

.common-column__btn {
    flex-shrink: 0;
    width: 61px;
    height: 27px;
    background: #6723FF;
    border-radius: 21px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common-column__avtor {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    display: block;
}

.common-column__imgBlock {
    width: 84px;
}

.common-column__clamp {
    height: 48px;
    white-space: pre-wrap;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/**/
.common-recommend__list {
    display: flex;
    flex-wrap: wrap;
}

.common-recommend__item {
    width: 78px;
    margin-right: 32px;
    margin-bottom: 32px;
    display: flex;
}

.common-recommend__item:nth-of-type(8n) {
    margin-right: 0;
}

.common-recommend__href {
    width: 100%;
    overflow: hidden;
}

.common-recommend__img {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
    margin-right: 12px;
    background: #D8D8D8;
    border-radius: 9px;
    background: #eee url(../images/bg_default.png) center no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.common-recommend__img img {
    width: 100%;
    transition: all .2s linear 0s;
}

.common-recommend__title {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    text-align: center;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*通用图文卡片(游戏单列表)*/
.inventory-list {
    width: 1278px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 26px;
}

.inventory-list__item {
    flex-shrink: 0;
    width: calc((100% - 78px) / 4);
    height: 316px;
    background: #FFFFFF;
    box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    transition: all .1s linear 0s;
}

.inventory-item__href {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.inventory-item__img {
    width: 300px;
    height: 185px;
    background: #eee url(../images/bg_default.png) center no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.inventory-item__img img {
    width: 100%;
    transition: all .2s linear 0s;
}

.inventory-item__info {
    padding: 12px 13px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: SourceHanSansSC-Regular, SourceHanSansSC;
    flex: 1;
}

.inventory-item__title {
    font-size: 18px;
    font-weight: 500;
    color: #292929;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all .1s linear 0s;
}

.inventory-item__describe {
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.inventory-item__foot {
    margin-top: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 400;
    color: #656565;
}

.inventory-item__name {
    display: flex;
}

.inventory-item__avtor {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    display: block;
}

.inventory-list__item:hover {
    box-shadow: none;
}

.inventory-list__item:hover .inventory-item__title {
    color: #ffae00;
}

.inventory-list__item:hover .inventory-item__img img {
    transform: scale(1.02);
}
