* {
    box-sizing: border-box;
}

:root {
    --pm-c: #fb561c;
    --dm-c: #fdeaea;
    --bg-c: #f7f7f7;
    --br-c: #eeeeee;
    --text-c: #333333;
    --muted-c: #999999;
}

html {
    background: var(--bg-c);
    color: var(--text-c);
    font-family: "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

body {
    margin: 0;
    background: var(--bg-c);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--pm-c);
}

img {
    display: block;
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
}

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

.wrap {
    width: 1200px;
    max-width: calc(100% - 24px);
    margin: 0 auto;
}

.uk-container {
    width: 1200px;
    max-width: calc(100% - 24px);
    margin: 0 auto;
}

.uk-flex {
    display: flex;
}

.uk-flex-1 {
    flex: 1;
    min-width: 0;
}

.uk-flex-middle {
    align-items: center;
}

.uk-flex-top {
    align-items: flex-start;
}

.uk-cover-container {
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.uk-position-bottom-right {
    bottom: 0;
    position: absolute;
    right: 0;
}

.uk-position-bottom {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
}

.uk-position-center-left {
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.uk-position-center-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

.uk-margin {
    margin-top: 20px;
}

.uk-margin-top {
    margin-top: 20px;
}

.uk-margin-medium-top {
    margin-top: 30px;
}

.uk-margin-medium {
    margin-top: 30px;
}

.uk-margin-small-top {
    margin-top: 10px;
}

.uk-margin-small {
    margin-bottom: 10px;
    margin-top: 10px;
}

.uk-margin-small-bottom {
    margin-bottom: 10px;
}

.uk-margin-bottom {
    margin-bottom: 20px;
}

.uk-margin-left {
    margin-left: 20px;
}

.uk-margin-right {
    margin-right: 20px;
}

.uk-position-relative {
    position: relative;
}

.uk-padding-small {
    padding: 20px;
}

.uk-text-center {
    text-align: center;
}

.uk-text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.uk-text-muted {
    color: #999;
}

.uk-text-small {
    font-size: 12px;
}

.c-fff {
    color: #fff;
}

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

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

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

.uk-height-1-1 {
    height: 100%;
}

.c-pm {
    color: var(--pm-c);
}

.uk-display-block {
    display: block;
}

.uk-overflow-auto {
    overflow: auto;
}

.uk-table {
    border-collapse: collapse;
    margin: 0;
    width: 100%;
}

.uk-table th,
.uk-table td {
    padding: 11px 8px;
}

.uk-grid {
    display: grid;
}

.uk-grid-medium {
    gap: 20px;
}

.uk-grid-small {
    gap: 10px;
}

.uk-width-auto {
    min-width: 0;
}

.uk-width-1-2 {
    width: 50%;
}

.uk-width-1-3 {
    width: 33.333%;
}

.uk-width-1-4 {
    width: 25%;
}

.uk-width-1-5 {
    width: 20%;
}

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

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

.topline,
.topbar {
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    color: #999;
    font-size: 12px;
}

.topline .wrap,
.topbar .uk-container {
    align-items: center;
    display: flex;
    height: 35px;
    justify-content: space-between;
}

.topline-links,
.topbar ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.topline-links a,
.topbar ul li {
    margin-left: 22px;
}

.topbar a {
    color: #999;
}

.site-head,
.header {
    background: #fff;
}

.head-main,
.head {
    align-items: center;
    display: flex;
    height: 98px;
    position: relative;
}

.head {
    padding: 30px 0;
}

.brand {
    align-items: center;
    display: flex;
    gap: 12px;
    min-width: 310px;
}

.brand-image,
.head .logo a {
    display: inline-flex;
    height: 64px;
    min-width: 0;
}

.brand-image img,
.head .logo img {
    height: 64px;
    max-width: none;
    width: auto;
}

.brand-mark {
    align-items: center;
    background: var(--pm-c);
    border-radius: 6px;
    color: #fff;
    display: flex;
    font-size: 30px;
    font-weight: 800;
    height: 58px;
    justify-content: center;
    line-height: 1;
    width: 58px;
}

.brand-name {
    color: var(--pm-c);
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
}

.brand-sub {
    color: #777;
    display: block;
    font-size: 13px;
    margin-top: 3px;
}

.head-guide,
.head .icon-guidepost {
    align-items: center;
    background: url("/statics/v4/images/local/img-guidepost.png") no-repeat center / contain;
    border: 0;
    color: transparent;
    display: block;
    font-size: 0;
    height: 82px;
    margin-left: auto;
    padding: 0;
    width: 113px;
}

.head-guide::before {
    display: none;
}

.search-box {
    align-items: center;
    background: #fff;
    border-radius: 20px;
    display: flex;
    height: 34px;
    margin-left: auto;
    overflow: hidden;
    width: 238px;
}

.search-box::before {
    background: url("/statics/v4/images/local/navbar-search-btn.png") no-repeat center / contain;
    content: "";
    height: 17px;
    margin-left: 14px;
    width: 20px;
}

.search-box input {
    border: 0;
    color: #666;
    flex: 1;
    font-size: 13px;
    height: 100%;
    min-width: 0;
    outline: 0;
    padding: 0 10px;
}

.search-box button {
    background: transparent;
    border: 0;
    color: transparent;
    cursor: pointer;
    font-size: 13px;
    height: 34px;
    overflow: hidden;
    padding: 0;
    text-indent: -999px;
    width: 10px;
}

.head-tags,
.head-note {
    display: none;
}

.main-nav,
.navbar {
    background: var(--pm-c);
    background-image: url("/statics/v4/images/local/img-navbar-bg.png");
    height: 50px;
}

.main-nav .wrap,
.navbar .uk-container {
    align-items: center;
    display: flex;
    height: 50px;
}

.navbar ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    position: relative;
}

.main-nav a,
.navbar ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    padding: 0 30px;
    position: relative;
}

.main-nav a.active::after,
.main-nav a:hover::after,
.navbar ul li.active::after,
.navbar ul li:hover::after {
    background: url("/statics/v4/images/local/nav-active-bg.png") no-repeat center / contain;
    border: 0;
    bottom: auto;
    content: "";
    height: 21px;
    left: 0;
    margin-left: 0;
    position: absolute;
    top: 15px;
    width: 24px;
}

.navbar .search {
    align-items: center;
    background: #fff;
    border-radius: 20px;
    color: #aaa;
    display: flex;
    font-size: 13px;
    height: 34px;
    overflow: hidden;
    padding: 0 10px;
    width: 238px;
}

.navbar .search i {
    background: url("/statics/v4/images/local/navbar-search-btn.png") no-repeat center / contain;
    cursor: pointer;
    display: inline-block;
    flex: 0 0 20px;
    height: 17px;
    margin-right: 10px;
    width: 20px;
}

.navbar .search input {
    background: transparent;
    border: 0;
    color: #666;
    flex: 1;
    font-size: 13px;
    height: 100%;
    min-width: 0;
    outline: 0;
}

.page {
    padding: 0;
}

.module,
.section {
    background: #fff;
    margin-bottom: 20px;
    padding: 20px;
}

.home-page {
    margin-bottom: 0;
    padding: 20px;
}

.module-tight {
    padding: 12px 20px 18px;
}

.section-head,
.module-title {
    align-items: center;
    border-bottom: 1px solid var(--br-c);
    display: flex;
    height: 34px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.section-title,
.module-title .title {
    color: #333;
    font-size: 17px;
    font-weight: 700;
    line-height: 34px;
    padding-left: 28px;
    position: relative;
}

.section-title::before,
.module-title .title::before {
    background: url("/statics/v4/images/local/module-title-bg.png") no-repeat center / contain;
    border-radius: 0;
    content: "";
    height: 16px;
    left: 0;
    position: absolute;
    top: 8px;
    width: 20px;
}

.section-title::after,
.module-title .title::after {
    display: none;
}

.module-title .more {
    background: var(--pm-c);
    border-radius: 3px;
    color: #fff;
    display: block;
    font-size: 13px;
    height: 20px;
    line-height: 18px;
    padding: 0 6px;
}

.section-more {
    color: #999;
    font-size: 12px;
}

.hot-icons {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(10, 1fr);
    margin: 0 0 18px;
}

.hot-icon {
    min-width: 0;
    text-align: center;
}

.hot-icon img {
    border-radius: 15px;
    height: 88px;
    margin: 0 auto 10px;
    object-fit: cover;
    width: 88px;
}

.hot-icon span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tag-row {
    align-items: center;
    border-top: 0;
    display: flex;
    line-height: 30px;
    margin-top: 5px;
    padding-top: 0;
}

.hot-tag-list li {
    font-size: 13px;
    line-height: 30px;
    margin-bottom: 5px;
    margin-right: 5px;
    min-width: 0;
    text-align: center;
}

.tag-label {
    border-radius: 3px;
    color: #fff;
    display: block;
    font-size: 13px;
    text-align: center;
    width: 78px;
}

.tag-label.game {
    background: #ff7777;
}

.tag-label.soft {
    background: #909ae6;
}

.tag-links {
    color: #777;
    display: grid;
    flex: 1;
    gap: 0 5px;
    grid-template-columns: repeat(9, minmax(0, 1fr));
}

.tag-links a {
    background: #f8f8f8;
    display: block;
    overflow: hidden;
    padding: 0 8px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.hot-tag-list li a {
    background-color: #f8f8f8;
    display: block;
    overflow: hidden;
    padding: 0 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.home-layout {
    display: grid;
    gap: 20px;
    grid-template-columns: 810px 330px;
    margin-top: 20px;
}

.home-left {
    min-width: 0;
}

.home-banner {
    display: grid;
    grid-template-columns: 552px 1fr;
    min-height: 280px;
}

.home-banner>.slide,
.home-slide {
    display: block;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.swiper,
.swiper-wrapper,
.swiper-slide,
.swiper-slide a {
    height: 100%;
    width: 100%;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex: 0 0 100%;
    min-width: 0;
}

.home-slide img,
.swiper-slide img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.slidenav {
    background: rgba(0, 0, 0, .32) url("/statics/v4/images/local/icon-slidenav.png") no-repeat center / 12px 22px;
    display: block;
    height: 45px;
    opacity: 0;
    transition: opacity .2s ease;
    width: 30px;
}

.home-banner:hover .slidenav {
    opacity: 1;
}

.home-headline,
.home-banner .headlines {
    padding: 15px;
}

.home-headline h2,
.home-banner .headlines .title {
    font-weight: 700;
    font-size: 17px;
    line-height: 30px;
    margin: 0 0 8px;
    min-height: 76px;
}

.home-headline h2 a,
.home-banner .headlines .title a {
    color: #333;
    font-size: 17px;
}

.home-headline p,
.home-banner .headlines .line-4 {
    color: #888;
    font-size: 13px;
    line-height: 24px;
    margin: 0;
}

.home-headline .source {
    color: #999;
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    margin-top: 36px;
}

.home-subgrid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
}

.home-subgrid > .uk-width-1-2,
.home-subgrid .home-latest {
    width: auto;
}

.cat-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hot-cat .cat-grid {
    margin-top: 20px;
}

.hot-cat .cat-grid .uk-width-1-2 {
    width: auto;
}

.home-top {
    display: grid;
    gap: 20px;
    grid-template-columns: 850px 330px;
}

.banner-news {
    display: grid;
    gap: 18px;
    grid-template-columns: 552px 1fr;
}

.hero-slide {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.hero-slide img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.hero-caption {
    background: linear-gradient(transparent, rgba(0, 0, 0, .72));
    bottom: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    left: 0;
    padding: 45px 18px 16px;
    position: absolute;
    right: 0;
}

.headlines {
    padding: 6px 0;
}

.headline-main {
    border-bottom: 1px dashed #e8e8e8;
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.headline-main h2 {
    color: var(--pm-c);
    font-size: 20px;
    line-height: 1.45;
    margin: 0 0 8px;
}

.headline-main p {
    color: #888;
    line-height: 1.8;
    margin: 0;
}

.text-list li {
    color: #666;
    font-size: 14px;
    line-height: 31px;
    overflow: hidden;
    padding-left: 14px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-list li::before {
    background: #bbb;
    border-radius: 50%;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    top: 14px;
    width: 4px;
}

.cat-card,
.hot-cat-top .item > a {
    background: #ffeff6;
    background-position: bottom right;
    background-repeat: no-repeat;
    border: 1px solid #ffe1d3;
    display: block;
    min-height: 82px;
    padding: 14px;
    position: relative;
}

.cat-card:nth-child(2n),
.hot-cat-top .item:nth-child(2n)>a {
    border-color: #dce8ff;
}

.cat-card:nth-child(1),
.hot-cat-top .item:nth-child(1)>a {
    background-color: #ffeff6;
    background-image: url("/statics/v4/images/local/hot-cat-bg-01.png");
}

.cat-card:nth-child(1) strong,
.hot-cat-top .item:nth-child(1) b {
    color: #d96b91;
}

.cat-card:nth-child(2),
.hot-cat-top .item:nth-child(2)>a {
    background-color: #f3f1f8;
    background-image: url("/statics/v4/images/local/hot-cat-bg-02.png");
}

.cat-card:nth-child(2) strong,
.hot-cat-top .item:nth-child(2) b {
    color: #6f6086;
}

.cat-card:nth-child(3),
.hot-cat-top .item:nth-child(3)>a {
    background-color: #fff2e9;
    background-image: url("/statics/v4/images/local/hot-cat-bg-03.png");
}

.cat-card:nth-child(3) strong,
.hot-cat-top .item:nth-child(3) b {
    color: #a6725b;
}

.cat-card:nth-child(4),
.hot-cat-top .item:nth-child(4)>a {
    background-color: #eaf7fe;
    background-image: url("/statics/v4/images/local/hot-cat-bg-04.png");
}

.cat-card:nth-child(4) strong,
.cat-card:nth-child(5) strong,
.hot-cat-top .item:nth-child(4) b,
.hot-cat-top .item:nth-child(5) b {
    color: #49afc5;
}

.cat-card:nth-child(5),
.hot-cat-top .item:nth-child(5)>a {
    background-color: #eaf7fe;
    background-image: url("/statics/v4/images/local/hot-cat-bg-05.png");
}

.cat-card:nth-child(6),
.hot-cat-top .item:nth-child(6)>a {
    background-color: #fff3ed;
    background-image: url("/statics/v4/images/local/hot-cat-bg-06.png");
    background-position: center right;
}

.cat-card:nth-child(6) strong,
.hot-cat-top .item:nth-child(6) b {
    color: #cb633a;
}

.cat-card strong,
.hot-cat-top .item b {
    color: #333;
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    max-width: 86px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hot-cat-top .item span {
    color: #999;
    display: block;
    font-size: 14px;
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hot-cat-top .item:hover > a {
    box-shadow: 0 0 7px 0 rgba(60, 60, 60, .21);
}

.hot-cat-bottom .side-rank .item {
    border-bottom: none;
    gap: 13px;
    margin-bottom: 22px;
    margin-top: 0;
    padding-bottom: 0;
}

.hot-cat-bottom .side-rank .item:last-child {
    margin-bottom: 0;
}

.hot-cat-bottom .side-rank .item .icon {
    border: 0;
    border-radius: 0;
    flex: 0 0 66px;
    height: 66px;
    margin-right: 0;
    padding: 0;
    width: 66px;
}

.hot-cat-bottom .side-rank .item .icon a {
    background: none;
    border: 0;
    border-radius: 0;
    display: block;
    height: 66px;
    min-height: 0;
    padding: 0;
    width: 66px;
}

.hot-cat-bottom .side-rank .item .icon img {
    border-radius: 12px;
    height: 66px;
    object-fit: cover;
    width: 66px;
}

.hot-cat-bottom .side-rank .item .title {
    color: #333;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 17px;
}

.hot-cat-bottom .side-rank .item .title a {
    background: none;
    border: 0;
    display: inline;
    min-height: 0;
    padding: 0;
}

.hot-cat-bottom .side-rank .item .info .desc {
    font-size: 14px;
}

.hot-cat-bottom .side-rank .item .btn a {
    background-color: #f6f6f6;
    border: 0;
    border-radius: 4px;
    color: #666;
    display: block;
    font-size: 13px;
    line-height: 28px;
    min-height: 0;
    padding: 0 12px;
}

.small-title {
    margin-top: 20px;
}

.mini-rank {
    display: grid;
    gap: 16px;
}

.mini-app,
.gift-item {
    align-items: center;
    display: flex;
    gap: 13px;
}

.mini-app img {
    border-radius: 12px;
    height: 66px;
    object-fit: cover;
    width: 66px;
}

.mini-app span,
.gift-item span {
    flex: 1;
    min-width: 0;
}

.mini-app b,
.gift-item b {
    color: #333;
    display: block;
    font-size: 15px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-app em,
.gift-item em {
    color: #888;
    display: block;
    font-size: 13px;
    font-style: normal;
    margin-top: 13px;
}

.mini-app i {
    background: #f6f6f6;
    border-radius: 4px;
    color: #666;
    font-size: 13px;
    font-style: normal;
    padding: 6px 12px;
}

.home-latest .latest-top,
.home-latest .item {
    text-align: center;
}

.home-latest .latest-top h2,
.home-latest .item .title {
    font-weight: 700;
    line-height: 28px;
    margin: 0;
}

.home-latest .latest-top h2 {
    font-size: 18px;
}

.home-latest .latest-top h2 a,
.home-latest .item .title a {
    color: var(--pm-c);
    font-size: 18px;
}

.home-latest .latest-top p,
.home-latest .item p {
    color: #888;
    line-height: 25px;
    margin: 10px 0 18px;
}

.home-latest ul {
    border-top: 1px dashed var(--br-c);
    padding-bottom: 20px;
}

.home-latest ul + ul {
    margin-top: 0;
}

.home-latest li {
    line-height: 20px;
    margin-top: 17px;
    overflow: visible;
    white-space: normal;
}

.home-latest li.uk-flex {
    display: flex;
    gap: 0;
}

.home-latest li em {
    background: #fef1ed;
    border-radius: 2px;
    color: var(--pm-c);
    flex: 0 0 auto;
    font-size: 12px;
    font-style: normal;
    margin-right: 10px;
    padding: 2px 4px;
}

.home-latest li a {
    display: block;
    min-width: 0;
    padding-right: 8px;
}

.home-latest li span {
    flex: 0 0 38px;
    margin-left: 4px;
    text-align: right;
}

.home-news {
    min-width: 0;
    padding-top: 0;
    overflow: hidden;
    width: 330px;
}

.home-news-title {
    background: url("/statics/v4/images/local/home-news-title-bg.png") no-repeat center / 100% 100%;
    border-radius: 0;
    color: transparent;
    font-size: 0;
    font-weight: 700;
    height: 75px;
    letter-spacing: 1px;
    line-height: 75px;
    text-align: center;
}

.home-news .news-warp {
    border-left: 1px dashed var(--pm-c);
    height: 530px;
    margin-left: 5px;
    min-height: 0;
    overflow: hidden;
    padding-top: 16px;
}

.news-step {
    align-items: flex-start;
    display: flex;
    gap: 14px;
    margin-bottom: 13px;
    min-width: 0;
    position: relative;
}

.news-step::before {
    background: var(--pm-c) url("/statics/v4/images/local/home-news-after-bg.png") no-repeat center / contain;
    content: "";
    height: 9px;
    left: -5px;
    position: absolute;
    top: 7px;
    transform: rotate(45deg);
    width: 9px;
}

.news-step .num {
    color: #fbaf1c;
    display: block;
    flex: 0 0 24px;
    font-size: 18px;
    font-weight: 700;
    height: 24px;
    line-height: 24px;
    margin-left: 16px;
    text-align: center;
}

.news-step > span:last-child {
    flex: 1;
    min-width: 0;
}

.news-step b {
    color: #333;
    display: -webkit-box;
    font-size: 16px;
    line-height: 21px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.news-step .title a {
    color: #333;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-step .desc {
    color: #888;
    font-size: 14px;
    line-height: 22px;
    margin-top: 8px;
    max-height: 44px;
}

.news-step.active b {
    -webkit-line-clamp: 2;
}

.news-step em {
    color: #888;
    display: none;
    font-size: 13px;
    font-style: normal;
    line-height: 23px;
    margin-top: 7px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.news-step.active em {
    display: -webkit-box;
}

.home-news .news-warp .content,
.news-step .content {
    display: none;
}

.home-news .news-warp .active .content,
.news-step.active .content {
    display: flex;
    margin-top: 8px;
}

.home-news .news-warp .active .desc,
.news-step.active .desc {
    display: none;
}

.home-news .news-warp .thumb,
.news-step .thumb {
    flex: 0 0 128px;
    height: 76px;
    margin-right: 12px;
    overflow: hidden;
    width: 128px;
}

.home-news .news-warp .thumb img,
.news-step .thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.home-news .news-warp .thumb span,
.news-step .thumb span {
    align-items: center;
    background: #f6f6f6;
    color: #999;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.news-step .text {
    color: #888;
    font-size: 14px;
    line-height: 23px;
    max-height: 69px;
}

.recommend-table {
    border-collapse: collapse;
    font-size: 12px;
    margin-top: 15px;
    text-align: center;
    width: 100%;
}

.recommend-table th,
.recommend-table td {
    color: #666;
    padding: 11px 8px;
}

.recommend-table tr:nth-child(even),
.recommend-table th {
    background: #f6f6f6;
}

.recommend-table span {
    color: var(--pm-c);
    font-weight: 700;
}

.home-row {
    display: grid;
    gap: 15px;
    grid-template-columns: 815px 330px;
    margin-top: 20px;
}

.home-apps {
    align-items: flex-start;
    gap: 20px;
}

.home-apps > .module {
    margin-bottom: 0;
}

.home-apps .apps-warp {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-row {
    grid-template-columns: 330px 815px;
}

.home-app-grid {
    display: grid;
    gap: 30px 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-bottom: 8px;
}

.home-app-grid .uk-width-1-4,
.rank-columns .uk-width-1-3 {
    width: auto;
}

.home-app-grid .uk-width-1-4 {
    padding-bottom: 30px;
}

.app-tile {
    align-items: center;
    display: flex;
    gap: 15px;
    min-width: 0;
}

.app-tile img {
    border-radius: 14px;
    height: 70px;
    object-fit: cover;
    width: 70px;
}

.app-tile span {
    flex: 1;
    min-width: 0;
}

.app-tile b {
    color: #333;
    display: block;
    font-size: 15px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-tile em {
    color: #888;
    display: block;
    font-size: 13px;
    font-style: normal;
    margin: 6px 0;
}

.star {
    background: url("/statics/v4/images/local/icon-star-bg.png") repeat-x left top;
    display: block;
    height: 14px;
    overflow: hidden;
    position: relative;
    width: 75px;
}

.star::before {
    background: url("/statics/v4/images/local/icon-star.png") repeat-x left top;
    content: "";
    display: block;
    height: 14px;
    width: 75px;
}

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

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

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

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

.hot-gift .gift-item {
    border-bottom: 1px dashed var(--br-c);
    margin-bottom: 17px;
    padding: 0 0 16px;
}

.hot-gift .gift-item > img {
    border: 1px solid var(--br-c);
    border-radius: 50%;
    height: 65px;
    object-fit: cover;
    padding: 4px;
    width: 65px;
}

.hot-gift {
    width: 330px;
}

.hot-gift .module-title,
.hot-gl .module-title {
    margin-bottom: 18px;
}

.hot-gift .mini-rank,
.hot-gl ul {
    background: #fff;
}

.hot-gift .mini-rank {
    gap: 0;
}

.hot-gift .mini-app {
    border-bottom: 1px dashed var(--br-c);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.hot-gift .mini-app:last-child {
    margin-bottom: 0;
}

.hot-gift .mini-app .icon {
    border: 1px solid var(--br-c);
    border-radius: 50%;
    flex: 0 0 56px;
    height: 56px;
    margin-right: 12px;
    padding: 3px;
    width: 56px;
}

.hot-gift .mini-app .icon img,
.hot-gift .mini-app .icon .app-icon {
    border-radius: 50%;
    height: 48px;
    width: 48px;
}

.hot-gift .mini-app em {
    margin-top: 7px;
}

.hot-gift .mini-app .btn {
    border: 1px solid var(--pm-c);
    border-radius: 4px;
    color: var(--pm-c);
    flex: 0 0 auto;
    font-size: 14px;
    margin-left: 15px;
    padding: 3px 12px;
}

.hot-gift .mini-app .btn i {
    background: none;
    color: inherit;
    font-size: inherit;
    padding: 0;
}

.hot-gl {
    width: 330px;
}

.hot-gl .text-list li {
    background: #f8f8f8;
    display: flex;
    line-height: 50px;
    margin-top: 23px;
    padding-left: 0;
}

.hot-gl .text-list li::before {
    display: none;
}

.hot-gl .text-list a {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding-left: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gift-btn,
.album-btn {
    border: 1px solid var(--pm-c);
    border-radius: 4px;
    color: var(--pm-c);
    font-style: normal;
    padding: 4px 12px;
}

.gift-btn {
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 400;
    margin-left: 2px;
}

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

.gift-item .platform {
    align-items: center;
    display: flex;
    gap: 6px;
    height: 18px;
    margin-top: 6px;
}

.gift-item .platform i {
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    height: 15px;
    width: 15px;
}

.gift-item .platform .az {
    background-image: url("/statics/v4/images/local/icon-az.png");
}

.gift-item .platform .ios {
    background-image: url("/statics/v4/images/local/icon-ios.png");
}

.home-video .uk-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-video .item {
    background: #fff;
    position: relative;
}

.home-video .item::after {
    background: url("/statics/v4/images/local/home-video-mark.png") no-repeat center / contain;
    content: "";
    height: 35px;
    left: 10px;
    position: absolute;
    top: 0;
    width: 32px;
}

.home-video .item .thumb {
    height: 160px;
    overflow: hidden;
}

.home-video .item .thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.home-video .item .title {
    color: #333;
    font-weight: 700;
}

.home-video .item .more {
    color: var(--pm-c);
    flex: 0 0 auto;
    font-size: 13px;
    margin-left: 10px;
}

.home-album {
    margin-top: 20px;
}

.album-box {
    display: grid;
    gap: 20px;
    grid-template-columns: 382px minmax(0, 368px) 370px;
    height: 240px;
    min-height: 240px;
    overflow: hidden;
}

.album-thumb {
    display: block;
    height: 240px;
    overflow: hidden;
    width: 382px;
}

.album-thumb img {
    height: 240px;
    object-fit: cover;
    width: 382px;
}

.album-main {
    max-width: 368px;
    min-width: 0;
    overflow: hidden;
}

.album-box h2 {
    align-items: center;
    display: flex;
    font-size: 24px;
    gap: 14px;
    line-height: 1.35;
    margin: 0 0 16px;
    min-width: 0;
    overflow: hidden;
}

.album-box h2 > a:first-child {
    display: block;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.album-btn {
    border: 1px solid var(--pm-c);
    border-radius: 4px;
    color: var(--pm-c);
    flex: 0 0 auto;
    font-size: 14px;
    line-height: 26px;
    padding: 0 8px;
}

.album-btn:hover {
    background: var(--pm-c);
    color: #fff;
}

.album-box p {
    color: #888;
    font-size: 15px;
    line-height: 30px;
    margin: 0;
    min-height: 84px;
}

.album-icons {
    display: flex;
    gap: 0;
    justify-content: space-between;
    margin-top: 18px;
    padding: 0 24px;
}

.album-icons .uk-slider-items {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.album-icons a,
.album-icons .uk-slider-items a {
    flex: 0 0 80px;
    max-width: 80px;
    min-width: 0;
    text-align: center;
}

.album-icons img {
    border-radius: 15px;
    height: 80px;
    margin-bottom: 10px;
    object-fit: cover;
    width: 80px;
}

.album-icons span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.album-list {
    min-width: 0;
    padding-top: 3px;
    width: 370px;
}

.album-box .album-list {
    margin-left: 0;
}

.album-list-title {
    background: url("/statics/v4/images/local/album-ul-title.png") no-repeat left center / contain;
    height: 18px;
    margin-bottom: 5px;
}

.album-list li {
    line-height: 35px;
    overflow: hidden;
    padding-left: 20px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.album-list li::before {
    background: #e5e5e5;
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    top: 15px;
    width: 6px;
}

.home-update {
    align-items: flex-start;
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 770px) 370px;
}

.update-list {
    background: #fff;
    min-width: 0;
    padding: 20px;
}

.update-list .update-warp {
    margin-top: 20px;
}

.update-list .item {
    border-bottom: 1px dashed var(--br-c);
    margin-bottom: 22px;
    min-height: 70px;
    padding-bottom: 22px;
    position: relative;
}

.update-list .item:last-child {
    margin-bottom: 0;
}

.update-list .item .num {
    background-color: #e3e3e3;
    color: #fff;
    flex: 0 0 24px;
    height: 24px;
    line-height: 24px;
    margin-right: 10px;
    text-align: center;
    width: 24px;
}

.update-list .item:nth-child(1) .num {
    background-color: #fc6023;
}

.update-list .item:nth-child(2) .num {
    background-color: #fc6023;
    opacity: .8;
}

.update-list .item:nth-child(3) .num {
    background-color: #fc6023;
    opacity: .5;
}

.update-list .item .thumb {
    background: #f6f6f6;
    flex: 0 0 120px;
    height: 70px;
    margin-right: 20px;
    overflow: hidden;
    width: 120px;
}

.update-list .item .thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.update-list .item .thumb span {
    align-items: center;
    color: #999;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.update-list .item .title {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 35px;
    max-height: 70px;
}

.update-list .item .title a {
    color: #333;
}

.update-list .item .time {
    bottom: 24px;
    color: #999;
    font-size: 14px;
    position: absolute;
    right: 0;
}

.update-introduction {
    background: #fff;
    flex: none;
    margin-left: 0;
    padding: 20px;
    width: 370px;
}

.update-introduction .thumb {
    display: block;
    height: 200px;
    overflow: hidden;
    width: 100%;
}

.update-introduction .thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.update-introduction ul {
    max-width: 100%;
    overflow: hidden;
}

.update-introduction ul li {
    color: #333;
    font-size: 14px;
    letter-spacing: 0;
    margin-top: 18px;
}

.update-introduction ul li span {
    color: var(--pm-c);
    font-size: 14px;
    letter-spacing: 0;
    margin-right: 14px;
}

.hot-gl li {
    background: #f8f8f8;
    display: flex;
    line-height: 50px;
    margin-top: 23px;
    min-width: 0;
}

.hot-gl li b {
    background: #e0e0e0;
    color: #fff;
    flex: 0 0 52px;
    font-size: 28px;
    position: relative;
    text-align: center;
}

.hot-gl li b::after {
    border-bottom: 25px solid transparent;
    border-left: 10px solid #e0e0e0;
    border-top: 25px solid transparent;
    content: "";
    height: 0;
    left: 100%;
    position: absolute;
    top: 0;
    width: 0;
}

.hot-gl li a {
    flex: 1;
    overflow: hidden;
    padding-left: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hot-gl li:hover b {
    background: var(--pm-c);
}

.hot-gl li:hover b::after {
    border-left-color: var(--pm-c);
}

.home-images .image-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: 630px 1fr;
}

.home-images .image-grid a {
    display: block;
    height: 135px;
    overflow: hidden;
    position: relative;
}

.home-images .image-grid a.big {
    grid-row: span 2;
    height: 285px;
}

.home-images img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.home-images span {
    background: rgba(0, 0, 0, .5);
    bottom: 0;
    color: #fff;
    left: 0;
    font-size: 15px;
    overflow: hidden;
    padding: 10px;
    position: absolute;
    right: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-images .home-image-layout {
    align-items: stretch;
    display: grid;
    gap: 15px;
    grid-template-columns: 630px 1fr;
}

.home-images .b-thumb {
    height: 285px;
    width: 630px;
}

.home-images .home-image-layout > .uk-flex-1 {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
}

.home-images .home-image-layout > .uk-flex-1::before,
.home-images .home-image-layout > .uk-flex-1::after {
    display: none;
}

.home-images .home-image-layout .uk-width-1-2 {
    width: auto;
}

.home-images .thumb {
    height: 135px;
    margin-bottom: 0;
}

.home-images .cover {
    background-color: rgba(0, 0, 0, .5);
}

.home-images .cover span {
    background: none;
    display: inline-block;
    padding: 10px;
    position: static;
}

.home-rank {
    margin-top: 20px;
}

.home-link {
    margin-top: 28px;
}

.home-link ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.home-link li {
    font-size: 12px;
    margin: 0;
}

.home-link a {
    color: #666;
    display: inline-block;
    font-size: 12px;
    margin-right: 10px;
    padding-right: 20px;
    position: relative;
}

.home-link li:not(:last-child) a::after {
    content: "|";
    position: absolute;
    right: 0;
}

.cat-card span {
    color: #999;
    display: block;
    font-size: 12px;
}

.side-block {
    background: #fff;
    padding: 20px;
}

.side-list .item {
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
    padding: 12px 0;
}

.side-list img {
    border-radius: 12px;
    height: 58px;
    object-fit: cover;
    width: 58px;
}

.side-list strong {
    display: block;
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.side-list span {
    color: #999;
    display: block;
    font-size: 12px;
    margin-top: 7px;
}

.two-col {
    display: grid;
    gap: 20px;
    grid-template-columns: 850px 330px;
}

.grid-main {
    display: grid;
    gap: 20px;
    grid-template-columns: 850px 330px;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.app-card {
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
    min-height: 96px;
    padding: 16px 14px;
}

.app-card:nth-child(4n) {
    border-right: 0;
}

.app-card img,
.app-icon {
    border-radius: 13px;
    flex: 0 0 62px;
    height: 62px;
    object-fit: cover;
    width: 62px;
}

.app-icon {
    align-items: center;
    background: #ffc06d;
    color: #fff;
    display: flex;
    font-size: 24px;
    font-weight: 700;
    justify-content: center;
}

.app-info {
    min-width: 0;
}

.app-name {
    color: #333;
    display: block;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-meta {
    color: #999;
    font-size: 12px;
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-link {
    background: #f3f3f3;
    border-radius: 14px;
    color: #777;
    display: inline-block;
    font-size: 12px;
    line-height: 24px;
    margin-top: 9px;
    padding: 0 16px;
}

.download-link:hover {
    background: var(--pm-c);
    color: #fff;
}

.rank-columns {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.rank-panel {
    border: 1px solid var(--br-c);
    padding: 15px;
}

.rank-panel h3 {
    border-bottom: 1px solid var(--br-c);
    font-size: 17px;
    margin: 0 0 12px;
    padding-bottom: 12px;
}

.rank-list li {
    align-items: center;
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    gap: 10px;
    line-height: 42px;
}

.rank-num {
    background: #b8b8b8;
    border-radius: 3px;
    color: #fff;
    flex: 0 0 22px;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
}

.rank-list li:nth-child(1) .rank-num,
.rank-list li:nth-child(2) .rank-num,
.rank-list li:nth-child(3) .rank-num {
    background: var(--pm-c);
}

.rank-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-score {
    color: var(--pm-c);
    font-size: 12px;
}

.home-rank .rank-columns {
    gap: 20px;
}

.home-rank .rank-panel {
    background-position: center top;
    background-repeat: no-repeat;
    border: 0;
    min-width: 0;
    padding: 30px 0 0;
}

.home-rank .rank-01 {
    background-image: url("/statics/v4/images/local/rank-01-title.png");
}

.home-rank .rank-02 {
    background-image: url("/statics/v4/images/local/rank-02-title.png");
}

.home-rank .rank-03 {
    background-image: url("/statics/v4/images/local/rank-03-title.png");
}

.home-rank .rank-item {
    margin-top: 25px;
}

.home-rank .rank-card {
    align-items: center;
    display: none;
    min-height: 80px;
}

.home-rank .rank-item.active .rank-card {
    display: flex;
}

.home-rank .rank-item.active .rank-line {
    display: none;
}

.home-rank .rank-num {
    background: var(--pm-c);
    border-radius: 4px;
    color: #fff;
    flex: 0 0 20px;
    font-size: 12px;
    height: 21px;
    line-height: 21px;
    margin-right: 15px;
    text-align: center;
}

.home-rank .rank-02 .rank-num {
    background: #6ec0ff;
}

.home-rank .rank-03 .rank-num {
    background: #9396ff;
}

.home-rank .rank-card .rank-num {
    height: 80px;
    line-height: 80px;
}

.home-rank .rank-card img {
    border-radius: 12px;
    flex: 0 0 80px;
    height: 80px;
    margin-right: 15px;
    object-fit: cover;
    width: 80px;
}

.home-rank .item-card .icon {
    border-radius: 12px;
    flex: 0 0 80px;
    height: 80px;
    margin-right: 15px;
    width: 80px;
}

.home-rank .item-card .icon img,
.home-rank .item-card .icon .app-icon {
    border-radius: 12px;
    height: 80px;
    object-fit: cover;
    width: 80px;
}

.home-rank .item-card .title {
    margin-bottom: 23px;
}

.home-rank .item-card .title a {
    color: #333;
    font-size: 17px;
}

.home-rank .item-card .info {
    color: #888;
    font-size: 15px;
}

.home-rank .item-card .btn a {
    border: 1px solid var(--pm-c);
    border-radius: 4px;
    color: var(--pm-c);
    display: inline-block;
    font-size: 15px;
    padding: 6px 20px;
}

.home-rank .rank-02 .item-card .btn a {
    border-color: #6ec0ff;
    color: #6ec0ff;
}

.home-rank .rank-03 .item-card .btn a {
    border-color: #9396ff;
    color: #9396ff;
}

.home-rank .item-card .btn a:hover {
    background: var(--pm-c);
    color: #fff;
}

.home-rank .rank-02 .item-card .btn a:hover {
    background: #6ec0ff;
}

.home-rank .rank-03 .item-card .btn a:hover {
    background: #9396ff;
}

.home-rank .item-list span {
    color: #888;
    flex: 0 0 68px;
    font-size: 13px;
    margin-left: 20px;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-rank .rank-copy {
    flex: 1;
    min-width: 0;
}

.home-rank .rank-copy b {
    color: #333;
    display: block;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 23px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-rank .rank-copy em {
    color: #888;
    display: block;
    font-size: 15px;
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-rank .rank-down {
    border: 1px solid var(--pm-c);
    border-radius: 4px;
    color: var(--pm-c);
    flex: 0 0 auto;
    font-size: 15px;
    margin-left: 15px;
    padding: 6px 20px;
}

.home-rank .rank-02 .rank-down {
    border-color: #6ec0ff;
    color: #6ec0ff;
}

.home-rank .rank-03 .rank-down {
    border-color: #9396ff;
    color: #9396ff;
}

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

.home-rank .rank-02 .rank-down:hover {
    background: #6ec0ff;
}

.home-rank .rank-03 .rank-down:hover {
    background: #9396ff;
}

.home-rank .rank-line {
    align-items: center;
    display: flex;
    min-width: 0;
}

.home-rank .rank-line a {
    color: #333;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-rank .rank-line em,
.home-rank .rank-line i {
    color: #888;
    flex: 0 0 68px;
    font-size: 13px;
    font-style: normal;
    margin-left: 20px;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.crumb {
    color: #999;
    font-size: 13px;
    margin: 0 auto 12px;
}

.crumb a {
    color: #909399;
}

.crumbs {
    color: #999;
    font-size: 14px;
    line-height: 28px;
    margin: 0 0 15px;
}

.crumbs a {
    color: #666;
}

.crumbs a::after {
    color: #bbb;
    content: ">";
    margin: 0 8px;
}

.categories-menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0 0 20px;
    overflow: hidden;
}

.categories-menu a,
.tabbar a {
    border: 1px solid var(--br-c);
    border-radius: 4px;
    color: #666;
    display: block;
    line-height: 36px;
    padding: 0 18px;
}

.categories-menu a {
    align-items: center;
    background: #fff;
    border-color: #f0f0f0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 78px;
    justify-content: center;
    line-height: 1.2;
    margin: 0 -1px -1px 0;
    padding: 0;
}

.categories-menu a span {
    color: #999;
    display: block;
    font-size: 13px;
    margin-top: 9px;
}

.categories-menu a.active,
.tabbar a.active,
.categories-menu a:hover,
.tabbar a:hover {
    background: var(--pm-c);
    border-color: var(--pm-c);
    color: #fff;
}

.categories-menu a.active span,
.categories-menu a:hover span {
    color: rgba(255, 255, 255, .85);
}

.category-app-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
}

.category-app-grid .app-card:nth-child(4n) {
    border-right: 1px solid #f0f0f0;
}

.category-app-grid .app-card:nth-child(5n) {
    border-right: 0;
}

.category-app-grid .app-card:hover {
    box-shadow: 0 0 7px rgba(60, 60, 60, .16);
}

.category-app-grid .app-card {
    min-height: 118px;
}

.category-app-grid .app-info {
    min-width: 0;
}

.category-app-grid .app-meta {
    margin: 8px 0;
}

.category-app-grid .app-card:hover .download-link {
    background: var(--pm-c);
    color: #fff;
}

.download-list {
    display: grid;
    gap: 0;
}

.download-item {
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 18px;
    min-height: 132px;
    padding: 18px 0;
}

.download-item:hover {
    background: #fffaf7;
}

.download-icon {
    align-items: center;
    background: #ffb45c;
    border-radius: 16px;
    color: #fff;
    display: flex;
    flex: 0 0 82px;
    font-size: 24px;
    font-weight: 700;
    height: 82px;
    justify-content: center;
    overflow: hidden;
    width: 82px;
}

.download-icon img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.download-copy {
    flex: 1;
    min-width: 0;
}

.download-copy h2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
    margin: 0 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-meta {
    color: #999;
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 8px 16px;
    margin-bottom: 8px;
}

.download-copy p {
    color: #888;
    line-height: 23px;
    margin: 0 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-action {
    background: var(--pm-c);
    border-radius: 4px;
    color: #fff;
    flex: 0 0 86px;
    font-size: 15px;
    line-height: 34px;
    text-align: center;
}

.download-action:hover {
    color: #fff;
}

.download-detail-top {
    border-top: 3px solid var(--pm-c);
}

.download-score {
    align-items: center;
    display: flex;
    gap: 10px;
    margin: -3px 0 14px;
}

.download-score em {
    color: var(--pm-c);
    font-style: normal;
    font-weight: 700;
}

.detail-down.disabled {
    background: #c9c9c9;
}

.download-hot-module,
.download-category-module,
.download-list-module {
    padding: 0;
}

.categories .hot-rank {
    margin-top: 0;
}

.hot-rank .download-hot-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-hot-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.download-hot-grid > .uk-width-1-2 {
    width: auto;
}

.download-hot-panel {
    background: #fff url("/statics/v4/images/local/hot-rank-bg-01.png") no-repeat left top / auto 118px;
    border: 0;
    border-radius: 0;
    min-height: 118px;
    padding: 16px 18px 14px 50px;
}

.download-hot-panel.panel-2 {
    background-image: url("/statics/v4/images/local/hot-rank-bg-02.png");
}

.download-hot-icons {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.download-hot-app {
    min-width: 0;
    text-align: center;
    width: auto;
}

.download-hot-icons .uk-width-1-5 {
    width: auto;
}

.download-hot-app .icon,
.download-hot-app .icon a {
    display: block;
    height: 66px;
    margin: 0 auto 10px;
    overflow: hidden;
    width: 66px;
}

.download-hot-app img,
.download-hot-app span {
    border-radius: 14px;
    height: 66px;
    margin: 0;
    width: 66px;
}

.download-hot-app img {
    object-fit: cover;
}

.download-hot-app span {
    align-items: center;
    background: #ffb45c;
    color: #fff;
    display: flex;
    font-size: 22px;
    font-weight: 700;
    justify-content: center;
}

.download-hot-app b,
.download-hot-app .title,
.download-hot-app .title a {
    color: #333;
    display: block;
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-category-menu {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-top: 18px;
}

.download-category-menu a {
    background: #fff;
    border: 1px solid #eeeeee;
    display: block;
    min-height: 72px;
    padding: 14px 12px;
    text-align: center;
}

.download-category-menu a:hover {
    border-color: var(--pm-c);
    box-shadow: 0 0 8px rgba(251, 86, 28, .12);
}

.download-category-menu strong {
    color: #333;
    display: block;
    font-size: 15px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-category-menu span {
    color: #999;
    display: block;
    font-size: 13px;
    margin-top: 9px;
}

.download-category-menu span::first-letter {
    color: var(--pm-c);
}

.download-card-grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 18px;
    overflow: hidden;
}

.download-card {
    align-items: center;
    background: #fff;
    border: 1px solid #eeeeee;
    display: flex;
    gap: 14px;
    margin-left: -1px;
    margin-top: -1px;
    min-height: 104px;
    min-width: 0;
    padding: 17px 14px;
}

.download-card:hover {
    background: #f9f9fa;
    border-color: #eeeeee;
    box-shadow: none;
}

.download-card-icon {
    align-items: center;
    background: #ffb45c;
    border-radius: 13px;
    color: #fff;
    display: flex;
    flex: 0 0 62px;
    height: 62px;
    justify-content: center;
    overflow: hidden;
    width: 62px;
}

.download-card-icon img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.download-card-icon i {
    color: #fff;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
}

.download-card-copy {
    display: block;
    flex: 1;
    min-width: 0;
}

.download-card-copy b {
    color: #333;
    display: block;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-card-copy em {
    color: #999;
    display: block;
    font-size: 13px;
    font-style: normal;
    line-height: 20px;
    margin: 4px 0 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.categories-apps .apps-warp {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 18px;
    overflow: hidden;
}

.categories-apps .apps-warp .item {
    margin-left: -1px;
    margin-top: -1px;
}

.categories-apps .apps-warp .item:hover {
    background-color: #f9f9fa;
}

.categories-apps .apps-warp .item .icon {
    align-items: center;
    background: #ffb45c;
    border-radius: 16px;
    color: #fff;
    display: flex;
    flex: 0 0 70px;
    height: 70px;
    justify-content: center;
    margin-right: 0;
    overflow: hidden;
    width: 70px;
}

.categories-apps .apps-warp .item .icon img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.categories-apps .apps-warp .item .icon i {
    color: #fff;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
}

.categories-apps .apps-warp .item .title,
.categories-apps .apps-warp .item .title a {
    color: #333;
    display: block;
    font-size: 15px;
    line-height: 22px;
}

.categories-apps .apps-warp .item .type {
    color: #999;
    display: block;
    font-size: 14px;
    line-height: 20px;
    margin: 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pagination {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 24px 0 4px;
}

.pagination a,
.pagination span {
    border: 1px solid var(--br-c);
    color: #666;
    display: block;
    font-size: 14px;
    height: 34px;
    line-height: 34px;
    min-width: 34px;
    padding: 0 10px;
    text-align: center;
}

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

.rank-banner {
    background: url("/statics/v4/images/local/rank_bg.png") no-repeat center / 100% 100%;
    height: 207px;
    margin-top: 20px;
    position: relative;
}

.rank-banner h1 {
    background: rgba(255, 255, 255, .9);
    border-radius: 23px;
    bottom: 31px;
    color: #fb5d22;
    font-size: 24px;
    font-weight: 700;
    height: 45px;
    left: 50%;
    line-height: 45px;
    margin: 0;
    overflow: hidden;
    padding: 0 20px;
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
    white-space: nowrap;
    width: 271px;
}

.rank-banner time {
    background: rgba(0, 86, 125, .2);
    border-radius: 0 0 20px 0;
    color: #fff;
    font-size: 14px;
    height: 38px;
    left: 0;
    line-height: 38px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 209px;
}

.rank-page-module {
    margin-top: 20px;
}

.categories-rank {
    margin-top: 16px;
}

.rank-card-top {
    background: url("/statics/v4/images/local/rank_bg.png") no-repeat center / 100% 100%;
    height: 207px;
    margin-bottom: 20px;
    position: relative;
}

.rank-card-top:empty,
.rank-card-top:not(:has(.rank-tabs-grid)) {
    background-size: cover;
}

.rank-card-top time {
    background: rgba(0, 86, 125, .2);
    border-radius: 0 0 20px 0;
    color: #fff;
    font-size: 14px;
    height: 38px;
    left: 0;
    line-height: 38px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 209px;
}

.rank-tabs-grid {
    bottom: 30px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, 1fr);
    left: 50%;
    max-width: 720px;
    position: absolute;
    transform: translateX(-50%);
    width: 68%;
}

.rank-tabs-grid a {
    background: rgba(255, 255, 255, .92);
    border-radius: 23px;
    box-shadow: 0 3px 8px rgba(15, 15, 15, .08);
    color: #fb5d22;
    display: block;
    font-size: 16px;
    font-weight: 700;
    height: 45px;
    line-height: 45px;
    overflow: hidden;
    padding: 0 12px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-tabs-grid a:hover {
    background: var(--pm-c);
    color: #fff;
}

.rank-warp {
    display: grid;
    gap: 14px;
}

.rank-app-row {
    border: 1px solid #eeeeee;
    margin-top: 0;
    min-height: 116px;
    overflow: hidden;
    padding: 16px;
}

.rank-app-row:hover {
    border-color: #ffd8c8;
    box-shadow: 0 0 8px rgba(60, 60, 60, .12);
}

.rank-icon {
    border-radius: 14px;
    display: block;
    flex: 0 0 86px;
    height: 86px;
    overflow: hidden;
    width: 86px;
}

.rank-icon img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.rank-icon span {
    align-items: center;
    background: #f6f6f6;
    color: #999;
    display: flex;
    font-size: 14px;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.rank-app-row .rank-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.rank-app-row h3 {
    margin-bottom: 8px;
    max-width: 100%;
}

.rank-app-row h3 a {
    display: block;
    flex: 0 1 auto;
    min-width: 0;
}

.rank-app-row .rank-meta,
.rank-app-row p {
    max-width: 100%;
}

.rank-app-row .mark {
    background: url("/statics/v4/images/local/rank-mark-bg.png") no-repeat center / contain;
    color: #fff;
    flex: 0 0 auto;
    font-size: 13px;
    height: 17px;
    line-height: 17px;
    margin-left: 12px;
    overflow: hidden;
    text-indent: 5px;
    width: 53px;
}

.rank-warp .rank-row:nth-child(-n+3) .mark {
    background-image: url("/statics/v4/images/local/rank-mark.png");
    color: #fff;
}

.rank-download-btn {
    background: var(--pm-c);
    border-radius: 4px;
    color: #fff;
    flex: 0 0 78px;
    font-size: 15px;
    line-height: 34px;
    margin-left: 28px;
    text-align: center;
}

.rank-download-btn:hover {
    color: #fff;
}

.rank-hero-tabs {
    background: #fff5ef;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 18px;
    padding: 18px;
}

.rank-hero-tabs a {
    background: #fff;
    border: 1px solid #ffd9c8;
    color: #d24d16;
    font-size: 16px;
    line-height: 56px;
    text-align: center;
}

.rank-row {
    align-items: center;
    border: 1px solid var(--br-c);
    background: #fff;
    display: flex;
    gap: 18px;
    margin-top: 14px;
    padding: 15px;
}

.rank-row img {
    border-radius: 12px;
    flex: 0 0 80px;
    height: 80px;
    object-fit: cover;
    width: 80px;
}

.rank-row:hover {
    box-shadow: 0 0 7px rgba(60, 60, 60, .16);
}

.rank-row .news-thumb {
    flex: 0 0 120px;
    height: 80px;
}

.rank-badge {
    background: var(--pm-c);
    border-radius: 4px;
    color: #fff;
    flex: 0 0 34px;
    font-size: 18px;
    font-weight: 700;
    line-height: 34px;
    text-align: center;
}

.rank-info {
    flex: 1;
    min-width: 0;
}

.rank-row h3 {
    align-items: center;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 9px;
    min-width: 0;
}

.rank-row h3 a {
    color: #333;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-row h3 a:hover {
    color: var(--pm-c);
}

.rank-meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 8px;
}

.rank-row p {
    color: #999;
    display: block;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-row .mark {
    color: var(--pm-c);
    font-weight: 700;
    margin-left: 8px;
}

.rank-row .download-link {
    flex: 0 0 auto;
    height: 35px;
    line-height: 35px;
    width: 92px;
}

.rank-hot {
    color: #999;
    flex: 0 0 72px;
    font-size: 14px;
    text-align: right;
}

.news-list {
    display: grid;
    gap: 14px;
}

.news-media-list {
    gap: 0;
}

.news-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 14px;
}

.news-media-item {
    align-items: center;
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.news-thumb {
    border-radius: 4px;
    display: block;
    flex: 0 0 180px;
    height: 112px;
    overflow: hidden;
}

.news-thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.news-thumb span,
.related-placeholder {
    align-items: center;
    background: #f6f6f6;
    color: #999;
    display: flex;
    font-size: 15px;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.news-body {
    flex: 1;
    min-width: 0;
}

.news-item h2,
.news-item h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 8px;
}

.news-media-item h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-item h3 {
    font-size: 15px;
}

.news-item p {
    color: #999;
    display: -webkit-box;
    line-height: 1.75;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-meta {
    color: #aaa;
    display: flex;
    font-size: 12px;
    gap: 16px;
    margin-top: 10px;
}

.news-meta .name {
    flex: 1;
}

.info-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 10px;
}

.info-tabs a {
    background: #f8f8f8;
    color: #666;
    display: block;
    line-height: 36px;
    padding: 0 18px;
}

.info-tabs a.active,
.info-tabs a:hover {
    background: var(--pm-c);
    color: #fff;
}

.categories-news {
    align-items: flex-start;
}

.categories-news .news-warp {
    border-left: 0;
    height: auto;
    margin-left: 0;
    min-width: 0;
    overflow: visible;
    padding-top: 0;
}

.categories-news .categories-news-menu ul li {
    border: 1px solid var(--pm-c);
    display: inline-block;
    margin-bottom: 15px;
    margin-right: 15px;
    text-align: center;
    width: 120px;
}

.categories-news .categories-news-menu ul li a {
    color: var(--pm-c);
    display: block;
    line-height: 40px;
}

.categories-news .categories-news-menu ul li:hover a,
.categories-news .categories-news-menu .active a {
    background-color: var(--pm-c);
    color: #fff;
}

.categories-news .news-list {
    display: block;
}

.categories-news .news-list .item {
    border-bottom: 1px dashed var(--br-c);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.categories-news .news-list .item .thumb {
    align-items: center;
    background: #f8f8f8;
    color: #999;
    display: flex;
    flex: 0 0 180px;
    height: 125px;
    justify-content: center;
    overflow: hidden;
    width: 180px;
}

.categories-news .news-list .item .thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.categories-news .news-list .item .thumb span {
    color: #999;
    font-size: 15px;
}

.categories-news .news-list .item .title,
.categories-news .news-list .item .title a {
    color: #333;
    font-size: 17px;
    font-weight: 700;
    line-height: 26px;
}

.categories-news .news-list .item .title a:hover {
    color: var(--pm-c);
}

.categories-news .news-list .item .desc {
    color: #999;
    font-size: 15px;
    line-height: 28px;
}

.categories-news .news-list .item .info {
    color: #999;
    font-size: 14px;
}

.categories-news .news-list .item .info>.name {
    padding-left: 20px;
    position: relative;
}

.categories-news .news-list .item .info>.name::before {
    background: url("/statics/v4/images/local/icon-sitename.png") no-repeat center / contain;
    content: "";
    display: inline-block;
    height: 15px;
    left: 0;
    position: absolute;
    top: 3px;
    width: 15px;
}

.categories-news .news-list .item .info>i {
    font-style: normal;
    margin-left: 30px;
    padding-left: 20px;
    position: relative;
}

.categories-news .news-list .item .info>i::before {
    content: "";
    display: inline-block;
    height: 13px;
    left: 0;
    position: absolute;
    top: 4px;
    width: 13px;
}

.categories-news .news-list .item .info>.time::before {
    background: url("/statics/v4/images/local/icon-time.png") no-repeat center / contain;
}

.categories-news .news-list .item .info>.see::before {
    background: url("/statics/v4/images/local/icon-see.png") no-repeat center / contain;
}

.side-gl .gl-card {
    display: grid;
    gap: 10px;
}

.side-gl .gl-card .item:hover {
    background: #f7f7f7;
}

.side-gl .gl-card .item .title {
    font-size: 16px;
    font-weight: 700;
}

.side-gl .gl-card .item .title a {
    color: #333;
}

.side-gl .gl-card .item:hover .title a {
    color: var(--pm-c);
}

.side-gl .gl-card .item .title span {
    background-color: var(--pm-c);
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    margin-right: 5px;
    padding: 3px 6px;
}

.side-gl .gl-card .item .desc {
    color: #999;
    font-size: 15px;
    line-height: 24px;
    margin: 10px 0;
}

.side-gl .gl-card .item .time {
    color: #999;
    font-size: 15px;
    padding-left: 20px;
    position: relative;
}

.side-gl .gl-card .item .time::before {
    background: url("/statics/v4/images/local/icon-time.png") no-repeat center / contain;
    content: "";
    height: 13px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 13px;
}

.news-sidebar .section {
    margin-bottom: 20px;
}

.side-recom-card {
    padding: 0;
}

.side-recom-inner {
    background: url("/statics/v4/images/local/side-recom-bg.png") no-repeat center top / 100% 100%;
    border: 0;
    min-height: 270px;
    padding: 50px 25px 16px;
    position: relative;
}

.side-recom-top {
    align-items: center;
    display: flex;
    gap: 14px;
}

.side-recom-top img {
    border-radius: 12px;
    height: 76px;
    object-fit: cover;
    width: 76px;
}

.side-recom-name {
    color: #333;
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.side-recom-top li,
.side-recom-inner p {
    color: #888;
    font-size: 13px;
    line-height: 24px;
}

.side-recom-inner p {
    display: -webkit-box;
    margin: 12px 0 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.side-recom-btn {
    background: var(--pm-c);
    border-radius: 4px;
    bottom: 16px;
    color: #fff;
    display: block;
    font-size: 14px;
    line-height: 30px;
    padding: 0 16px;
    position: absolute;
    right: 16px;
}

.side-recom-btn:hover {
    color: #fff;
}

.side-more-links {
    display: grid;
    gap: 11px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
}

.side-more-links a {
    background: #e9f8f9;
    border-radius: 6px;
    color: #25bec8;
    display: block;
    font-size: 15px;
    line-height: 42px;
    overflow: hidden;
    padding: 0 10px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.side-more-links a:nth-child(2n) {
    background: #feeeee;
    color: #f85858;
}

.side-more-links a:nth-child(3n) {
    background: #fff6e5;
    color: #ffa200;
}

.side-more-links a.active,
.side-more-links a:hover {
    background: var(--pm-c);
    color: #fff;
}

.side-app-list {
    display: grid;
    gap: 16px;
}

.side-downloads .download-list {
    display: grid;
    gap: 0;
}

.side-downloads .item {
    border-bottom: 1px dashed var(--br-c);
    padding: 14px 0;
}

.side-downloads .item:first-child {
    padding-top: 0;
}

.side-downloads .item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.side-downloads .icon {
    border-radius: 10px;
    flex: 0 0 62px;
    height: 62px;
    margin-right: 14px;
    width: 62px;
}

.side-downloads .icon img,
.side-downloads .icon .app-icon {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.side-downloads .title {
    color: #333;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 6px;
}

.side-downloads .meta {
    color: #888;
    font-size: 13px;
    line-height: 22px;
}

.side-downloads .btn {
    border: 1px solid var(--pm-c);
    border-radius: 4px;
    color: var(--pm-c);
    flex: 0 0 auto;
    font-size: 14px;
    line-height: 30px;
    margin-left: 12px;
    padding: 0 18px;
}

.side-downloads .btn:hover {
    background: var(--pm-c);
    color: #fff;
}

.article-summary {
    background: #f8f8f8;
    color: #888;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 14px 18px;
}

.pagebar {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 30px 0 6px;
}

.pagebar a,
.pagebar span {
    border: 1px solid var(--br-c);
    color: #666;
    display: block;
    font-size: 13px;
    line-height: 32px;
    min-width: 34px;
    padding: 0 10px;
    text-align: center;
}

.pagebar .on,
.pagebar .current,
.pagebar a:hover {
    background: var(--pm-c);
    border-color: var(--pm-c);
    color: #fff;
}

.empty-news {
    color: #888;
    padding: 22px 0;
}

.empty-side {
    color: #999;
    line-height: 32px;
}

.home-section-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-info-row {
    margin-top: 0;
}

.home-info-main {
    padding-bottom: 12px;
    padding-top: 8px;
}

.home-info-main .home-section-grid {
    gap: 20px;
}

.home-info-main .section-head {
    height: 30px;
    margin-bottom: 10px;
}

.home-info-main .section-title {
    line-height: 30px;
}

.home-info-main .section-title::before {
    top: 7px;
}

.home-info-main .text-list li {
    line-height: 36px;
}

.home-info-row .hot-gl .module-title {
    margin-bottom: 12px;
}

.home-info-row .hot-gl .text-list li {
    line-height: 44px;
    margin-top: 14px;
}

.article-nav {
    border-top: 1px solid #f0f0f0;
    display: grid;
    gap: 10px;
    margin-top: 26px;
    padding-top: 18px;
}

.article-nav div {
    color: #999;
    font-size: 14px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-nav span {
    color: #666;
}

.article-nav a {
    color: #333;
}

.article-nav a:hover {
    color: var(--pm-c);
}

.article-related {
    margin-top: 28px;
}

.article-related .module-title {
    margin-bottom: 12px;
}

.article-related-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-related-grid a {
    border: 1px solid #f0f0f0;
    display: block;
    padding: 10px;
}

.article-related-grid img {
    display: block;
    height: 90px;
    object-fit: cover;
    width: 100%;
}

.article-related-grid strong {
    color: #333;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    margin-top: 9px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-related-grid span {
    color: #999;
    display: -webkit-box;
    font-size: 12px;
    line-height: 20px;
    margin-top: 5px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.detail-top {
    background: #fff;
    margin-bottom: 20px;
    padding: 24px;
}

.detail-hero {
    align-items: flex-start;
    display: flex;
    gap: 24px;
}

.detail-icon {
    align-items: center;
    background: #ffb45c;
    border-radius: 18px;
    color: #fff;
    display: flex;
    flex: 0 0 120px;
    font-size: 34px;
    font-weight: 700;
    height: 120px;
    justify-content: center;
    overflow: hidden;
    width: 120px;
}

.detail-icon img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.side-recom-top .detail-icon {
    border-radius: 12px;
    flex: 0 0 76px;
    font-size: 24px;
    height: 76px;
    width: 76px;
}

.detail-main {
    flex: 1;
    min-width: 0;
}

.detail-main h1 {
    color: #333;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.35;
    margin: 0 0 10px;
}

.detail-main p {
    color: #888;
    line-height: 24px;
    margin: 0 0 16px;
}

.detail-meta-list {
    display: grid;
    gap: 10px 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.detail-meta-list li {
    color: #666;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-meta-list span {
    color: #999;
}

.detail-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.detail-down {
    background: var(--pm-c);
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-size: 17px;
    line-height: 42px;
    padding: 0 42px;
}

.detail-down:hover {
    color: #fff;
}

.detail-tip {
    color: #999;
    font-size: 13px;
}

.detail-layout {
    align-items: flex-start;
}

.detail-content {
    color: #555;
    font-size: 15px;
    line-height: 2;
}

.detail-content p {
    margin: 0 0 14px;
}

.detail-content h3 {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin: 18px 0 8px;
    padding-left: 12px;
    position: relative;
}

.detail-content h3::before {
    background: var(--pm-c);
    content: "";
    height: 16px;
    left: 0;
    position: absolute;
    top: 7px;
    width: 3px;
}

.detail-source-note {
    background: #fff7f2;
    color: #999;
    font-size: 13px;
    line-height: 24px;
    padding: 10px 12px;
}

.detail-info-table {
    border: 1px solid #f0f0f0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 14px 0 0;
}

.detail-info-table div {
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    color: #666;
    line-height: 42px;
    overflow: hidden;
    padding: 0 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-info-table div:nth-child(2n) {
    border-right: 0;
}

.detail-info-table div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.screen-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screen-grid a {
    background: #f8f8f8;
    border: 1px solid #f0f0f0;
    display: block;
    height: 170px;
    overflow: hidden;
}

.screen-grid img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.related-app-grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
}

.related-app-grid .app-card:nth-child(4n) {
    border-right: 0;
}

.single-apps {
    margin-top: 20px;
}

.single-apps .single-header,
.single-apps .single-header-news {
    background: #fff url("/statics/v4/images/local/single_bg.png") no-repeat center / cover;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(171, 171, 171, .48);
    min-height: 214px;
    overflow: hidden;
    padding: 25px;
}

.single-apps .single-header-box {
    flex: 1;
    min-width: 0;
}

.single-box {
    margin-bottom: 23px;
}

.single-apps .single-header .icon {
    align-items: center;
    background: #ffb45c;
    border-radius: 20px;
    color: #fff;
    display: flex;
    flex: 0 0 130px;
    height: 130px;
    justify-content: center;
    margin-right: 20px;
    overflow: hidden;
    width: 130px;
}

.single-apps .single-header .icon img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.single-apps .single-header .icon span {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}

.single-apps .single-header .title,
.single-apps .single-header-news .title {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
}

.single-apps .single-header ul {
    margin: 0;
}

.single-apps .single-header ul li,
.single-apps .single-header-news ul li {
    color: #858585;
    display: inline-block;
    font-size: 14px;
    line-height: 36px;
    margin-right: 0;
    overflow: hidden;
    padding-right: 40px;
    text-overflow: ellipsis;
    vertical-align: top;
    white-space: nowrap;
    width: 32%;
}

.single-apps .single-header-news .tishi {
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 20px;
    margin-left: 5px;
    padding: 0 5px;
    vertical-align: middle;
}

.single-apps .single-header-news .tishi-az {
    background-color: #60bf26;
}

.single-apps .single-header .down-btn .btn {
    border: 1px solid var(--pm-c);
    border-radius: 4px;
    color: var(--pm-c);
    cursor: pointer;
    display: inline-block;
    margin-right: 20px;
    min-width: 126px;
    padding: 6px 18px;
    text-align: center;
}

.single-apps .single-header .down-btn .btn a,
.single-apps .single-header .down-btn .btn span {
    background: url("/statics/v4/images/local/single-btn-az.png") no-repeat left center;
    color: var(--pm-c);
    display: inline-block;
    font-size: 15px;
    line-height: 24px;
    padding-left: 25px;
}

.single-apps .single-header .down-btn .btn:hover {
    background: var(--pm-c);
}

.single-apps .single-header .down-btn .btn:hover a,
.single-apps .single-header .down-btn .btn:hover span {
    color: #fff;
}

.single-apps .single-header .down-btn .none {
    filter: grayscale(1);
    opacity: .45;
}

.rank-index {
    align-items: center;
    display: flex;
    flex: 0 0 280px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.rank-index .rank-icon {
    background: url("/statics/v4/images/local/rank.png") no-repeat center / contain;
    border: 0;
    border-radius: 0;
    flex: 0 0 123px;
    height: 123px;
    margin: 0 0 8px;
    overflow: visible;
    position: relative;
    text-align: center;
    width: 196px;
}

.rank-index .rank-icon span {
    background: transparent;
    color: #7596a5;
    display: block;
    font-size: 40px;
    font-weight: 700;
    height: auto;
    left: 50%;
    letter-spacing: 0;
    line-height: 1;
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translate(-18px, -50%);
    width: auto;
}

.rank-index .rank-exponent {
    color: #8caab8;
    display: flex;
    font-size: 14px;
    justify-content: center;
    letter-spacing: 0;
    align-items: center;
    line-height: 26px;
    min-width: 170px;
    text-align: center;
    white-space: nowrap;
}

.rank-start {
    display: inline-block;
    flex: 0 0 75px;
    margin-left: 6px;
    transform: none;
}

.single-apps>.uk-flex {
    align-items: flex-start;
}

.single-apps .app-warp {
    background: #fff;
    padding: 20px;
}

.single-content {
    color: #666;
    font-size: 15px;
    line-height: 32px;
}

.single-content p {
    margin: 0 0 16px;
}

.single-content h2,
.single-content h3 {
    color: #333;
    font-size: 18px;
    line-height: 32px;
    margin: 18px 0 8px;
}

.single-apps .single-slide {
    padding: 0 50px;
}

.single-apps .single-slide ul {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
}

.single-apps .single-slide li {
    min-width: 0;
}

.single-apps .single-slide img {
    background: #f8f8f8;
    border: 1px solid #f0f0f0;
    height: 360px;
    object-fit: cover;
    width: 100%;
}

.detail-app-info #app_info {
    background: #f8f8f8;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px 18px;
}

.detail-app-info #app_info li {
    color: #777;
    font-size: 14px;
    line-height: 34px;
    overflow: hidden;
    padding-right: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-news-recom .news-card-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-news-recom .item {
    background: #fff;
    min-width: 0;
}

.detail-news-recom .title {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 10px;
}

.detail-news-recom .title span {
    background: var(--pm-c);
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    margin-right: 8px;
    padding: 0 5px;
    vertical-align: 1px;
}

.detail-news-recom .desc {
    color: #888;
    font-size: 13px;
    line-height: 24px;
    min-height: 48px;
}

.detail-news-recom .time {
    color: #999;
    font-size: 13px;
}

.detail-news-recom .time::before {
    background: #e5e5e5;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 10px;
    margin-right: 6px;
    vertical-align: -1px;
    width: 10px;
}

.single-bottom-album .album-games {
    min-height: 160px;
}

.single-bottom-album .album-games>.uk-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.single-bottom-album .album-games .item {
    min-width: 0;
    text-align: center;
}

.single-bottom-album .album-games .item .icon {
    align-items: center;
    background: #ffb45c;
    border-radius: 16px;
    color: #fff;
    display: flex;
    height: 80px;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
    width: 80px;
}

.single-bottom-album .album-games .item .icon img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.single-bottom-album .album-games .item .icon span {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.single-bottom-album .album-games .item .title {
    font-size: 14px;
    margin: 15px 0;
}

.single-bottom-album .album-games .item .btn a {
    border: 1px solid var(--br-c);
    border-radius: 4px;
    color: #999;
    display: inline-block;
    font-size: 12px;
    padding: 3px 12px;
}

.single-bottom-album .album-games .item:hover .title a,
.single-bottom-album .album-games .item:hover .btn a {
    color: var(--pm-c);
}

.single-bottom-album .album-games .item:hover .btn a {
    border-color: var(--pm-c);
}

.sidebar {
    flex: 0 0 300px;
    width: 300px;
}

.sidebar .side-rank,
.sidebar .side-hotnews {
    background: #fff;
    padding: 20px;
}

.side-rank .item {
    border-bottom: 1px dashed var(--br-c);
    margin-bottom: 15px;
    min-width: 0;
    overflow: hidden;
    padding-bottom: 15px;
}

.side-rank .item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.side-rank .item .num {
    background-color: #e3e3e3;
    border-radius: 0 14px 14px 0;
    color: #fff;
    flex: 0 0 36px;
    height: 27px;
    line-height: 27px;
    margin-right: 12px;
    text-align: center;
    width: 36px;
}

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

.side-rank .item .icon {
    align-items: center;
    background: #ffb45c;
    border-radius: 14px;
    color: #fff;
    display: flex;
    flex: 0 0 62px;
    height: 62px;
    justify-content: center;
    margin-right: 12px;
    overflow: hidden;
    width: 62px;
}

.side-rank .item .icon img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.side-rank .item .icon span {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.side-rank .item .title {
    line-height: 20px;
    margin-bottom: 10px;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.side-rank .item .info {
    font-size: 15px;
    line-height: 20px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.side-rank .item > .uk-flex-1 {
    min-width: 0;
    overflow: hidden;
}

.side-hotnews li a {
    color: #333;
    font-size: 14px;
}

.side-hotnews li a::before {
    background: var(--pm-c);
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 4px;
    margin-right: 8px;
    vertical-align: middle;
    width: 4px;
}

.side-hotnews li span {
    color: #999;
    font-size: 13px;
}

.single {
    background: #fff;
}

.single-news {
    align-items: flex-start;
}

.single-news .news-warp {
    min-width: 0;
}

.single-news .single-header {
    background-color: #f8f8f8;
    padding: 50px;
    text-align: center;
}

.single-news .single-header h1 {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 30px;
}

.single-news .single-header .info {
    color: #909399;
    font-size: 14px;
}

.single-news .single-header .info .cat {
    background-color: var(--pm-c);
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    padding: 2px 8px;
}

.single-news .single-header .info span {
    color: #909399;
    display: inline-block;
    font-size: 14px;
    margin: 4px 15px;
}

.single .single-content {
    color: #555;
    font-size: 16px;
    line-height: 32px;
}

.single .single-content p {
    line-height: 32px;
    margin: 0 0 16px;
    text-indent: 2em;
}

.single .single-content iframe {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

.single .single-content img,
.single .single-content p img {
    display: block;
    height: auto !important;
    margin: 0 auto;
    max-width: 500px;
}

.single .single-content h2,
.single .single-content h3 {
    border-left: 5px solid var(--pm-c);
    color: #333;
    font-size: 17px;
    font-weight: 700;
    line-height: 18px;
    margin: 22px 0 12px;
    padding-left: 7px;
}

.xg-news {
    margin-top: 30px;
}

.article {
    background: #fff;
    padding: 26px 34px;
}

.article h1 {
    color: #333;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.45;
    margin: 0 0 14px;
    text-align: center;
}

.article-info {
    border-bottom: 1px solid var(--br-c);
    color: #999;
    font-size: 12px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    text-align: center;
}

.article-content {
    color: #555;
    font-size: 16px;
    line-height: 2;
}

.footer {
    background: #333;
    color: #c4c4c4;
    font-size: 14px;
    line-height: 2;
    margin-top: 30px;
    padding: 50px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 12px;
}

.footer .foot-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 12px;
}

.footer-links li,
.footer .foot-nav li {
    margin-right: 15px;
    padding-right: 20px;
    position: relative;
}

.footer-links li:not(:last-child)::after,
.footer .foot-nav li:not(:last-child)::after {
    color: #c4c4c4;
    content: "|";
    position: absolute;
    right: 0;
    top: 0;
}

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

.footer p {
    color: #c4c4c4;
    margin: 4px 0 0;
}

.ga-icp {
    background: url("/statics/v4/images/local/wz.png") no-repeat left center / 17px auto;
    padding-left: 25px;
}

.backtop {
    background: var(--pm-c);
    border: 0;
    border-radius: 2px;
    bottom: 24px;
    color: #fff;
    cursor: pointer;
    display: none;
    height: 42px;
    position: fixed;
    right: 24px;
    width: 42px;
}

.backtop.is-visible {
    display: block;
}

@media (max-width: 980px) {
    .topline .wrap,
    .head-main,
    .main-nav .wrap {
        height: auto;
    }

    .head-main {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 18px 0;
    }

    .head-guide {
        margin-left: 0;
    }

    .search-box {
        margin: 0 0 10px;
        width: 100%;
    }

    .main-nav .wrap {
        flex-wrap: wrap;
    }

    .main-nav a {
        flex: 1 0 33.33%;
        padding: 0 8px;
        text-align: center;
    }

    .hot-icons {
        grid-template-columns: repeat(5, 1fr);
    }

    .home-top,
    .home-layout,
    .home-row,
    .media-row,
    .two-col,
    .banner-news {
        grid-template-columns: 1fr;
    }

    .home-banner {
        grid-template-columns: 1fr;
    }

    .home-slide {
        height: 260px;
    }

    .home-headline .source {
        margin-top: 18px;
    }

    .tag-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-subgrid,
    .home-app-grid,
    .album-box,
    .home-images .image-grid {
        grid-template-columns: 1fr;
    }

    .album-box {
        height: auto;
        overflow: visible;
    }

    .album-thumb,
    .album-thumb img,
    .album-list {
        width: 100%;
    }

    .album-thumb {
        height: auto;
    }

    .album-thumb img {
        height: auto;
        width: 100%;
    }

    .home-images .image-grid a.big {
        height: 220px;
    }

    .app-grid,
    .category-app-grid,
    .categories-menu,
    .rank-columns,
    .download-hot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-category-menu,
    .download-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .app-card:nth-child(n) {
        border-right: 1px solid #f0f0f0;
    }

    .rank-hero-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .rank-tabs-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 78%;
    }

    .article-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .related-app-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .single-apps .single-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .rank-index {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .single-apps>.uk-flex {
        flex-direction: column;
    }

    .sidebar {
        flex-basis: auto;
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    .single-bottom-album .album-games>.uk-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    body {
        background: #f7f7f7;
    }

    .wrap {
        padding: 0 10px;
    }

    .topline {
        line-height: 34px;
    }

    .site-head {
        padding: 0;
    }

    .head-main {
        padding: 12px 10px;
    }

    .topline-links,
    .head-guide {
        display: none;
    }

    .brand {
        min-width: 0;
    }

    .brand-name {
        font-size: 26px;
    }

    .brand-image img {
        height: 52px;
        width: auto;
    }

    .main-nav {
        background-size: auto 100%;
    }

    .main-nav .wrap {
        padding: 0;
    }

    .main-nav a {
        flex-basis: 25%;
        font-size: 13px;
        height: 42px;
        line-height: 42px;
        padding: 0 4px;
    }

    .search-box {
        flex-basis: 100%;
        height: 36px;
        margin: 8px 10px 10px;
    }

    .search-box button {
        flex-basis: 50px;
        text-indent: -999px;
    }

    .page {
        padding-top: 12px;
    }

    .module,
    .section,
    .article {
        padding: 12px 10px;
    }

    .module-title {
        height: 30px;
        margin-bottom: 12px;
    }

    .module-title .title,
    .section-title {
        font-size: 17px;
    }

    .hot-icons {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 16px;
    }

    .hot-icon img {
        height: 72px;
        width: 72px;
    }

    .tag-row {
        align-items: stretch;
        flex-direction: column;
    }

    .tag-label {
        flex: 0 0 auto;
        margin: 0 0 6px;
    }

    .tag-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-slide,
    .hero-slide {
        height: 188px;
    }

    .home-headline h1,
    .article h1 {
        font-size: 22px;
    }

    .home-headline .source {
        gap: 10px;
    }

    .app-grid,
    .category-app-grid,
    .categories-menu,
    .rank-columns,
    .rank-hero-tabs {
        grid-template-columns: 1fr;
    }

    .download-hot-grid,
    .download-category-menu,
    .download-card-grid {
        grid-template-columns: 1fr;
    }

    .download-hot-icons {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .download-hot-panel {
        padding: 14px 10px;
    }

    .download-category-menu a {
        min-height: 58px;
        padding: 11px 10px;
    }

    .download-card {
        min-height: 86px;
    }

    .categories-menu a {
        height: 58px;
    }

    .category-app-grid .app-card,
    .app-card,
    .download-item {
        min-height: 90px;
        padding: 12px 10px;
    }

    .app-card img,
    .app-icon {
        flex-basis: 54px;
        height: 54px;
        width: 54px;
    }

    .app-name {
        font-size: 14px;
    }

    .app-meta {
        margin-top: 6px;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .rank-card-top {
        background-image: url("/statics/v4/images/local/rank_bg_m.png");
        height: 145px;
    }

    .rank-card-top time {
        border-radius: 0;
        height: 28px;
        line-height: 28px;
        padding: 0 10px;
        width: auto;
    }

    .rank-tabs-grid {
        bottom: -42px;
        gap: 8px;
        grid-template-columns: repeat(2, 1fr);
        width: calc(100% - 24px);
    }

    .rank-tabs-grid a {
        border-radius: 5px;
        font-size: 14px;
        height: 36px;
        line-height: 36px;
    }

    .rank-warp {
        margin-top: 54px;
    }

    .cat-grid {
        grid-template-columns: 1fr;
    }

    .home-app-grid {
        gap: 18px;
    }

    .home-section-grid {
        grid-template-columns: 1fr;
    }

    .mini-app i,
    .rank-down,
    .download-link {
        padding-left: 12px;
        padding-right: 12px;
    }

    .album-box h2 {
        align-items: flex-start;
        flex-direction: column;
    }

    .album-icons {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: flex-start;
        padding: 0;
    }

    .hero-slide {
        height: 210px;
    }

    .rank-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-media-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-thumb {
        flex-basis: auto;
        height: 160px;
        width: 100%;
    }

    .side-more-links {
        grid-template-columns: 1fr;
    }

    .article-related-grid {
        grid-template-columns: 1fr;
    }

    .article-related-grid img {
        height: 150px;
    }

    .detail-top {
        padding: 16px 12px;
    }

    .detail-hero {
        gap: 14px;
    }

    .detail-icon {
        border-radius: 14px;
        flex-basis: 82px;
        height: 82px;
        width: 82px;
    }

    .detail-main h1 {
        font-size: 21px;
        margin-bottom: 8px;
    }

    .detail-main p {
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        overflow: hidden;
    }

    .detail-meta-list,
    .detail-info-table,
    .related-app-grid,
    .screen-grid {
        grid-template-columns: 1fr;
    }

    .detail-meta-list {
        gap: 7px;
    }

    .detail-info-table div,
    .detail-info-table div:nth-child(2n) {
        border-right: 0;
    }

    .detail-info-table div:nth-last-child(2) {
        border-bottom: 1px solid #f0f0f0;
    }

    .detail-down {
        flex: 1;
        line-height: 40px;
        padding: 0 18px;
        text-align: center;
    }

    .single-apps .single-header,
    .single-apps .app-warp,
    .sidebar .side-rank,
    .sidebar .side-hotnews {
        padding: 12px 10px;
    }

    .single-box {
        align-items: flex-start;
    }

    .single-apps .single-header .icon {
        border-radius: 14px;
        flex-basis: 76px;
        height: 76px;
        margin-right: 12px;
        width: 76px;
    }

    .single-apps .single-header .title {
        font-size: 20px;
    }

    .single-apps .single-header ul li {
        line-height: 28px;
        padding-right: 10px;
        width: 100%;
    }

    .rank-index {
        flex-basis: auto;
    }

    .rank-index .rank-icon {
        flex-basis: 86px;
        height: 86px;
        width: 86px;
    }

    .rank-index .rank-icon span {
        font-size: 30px;
        margin-top: 0;
        transform: translate(-10px, -50%);
    }

    .single-apps .single-slide {
        padding: 0;
    }

    .single-apps .single-slide ul,
    .detail-app-info #app_info,
    .single-bottom-album .album-games>.uk-grid {
        grid-template-columns: 1fr;
    }

    .single-apps .single-slide img {
        height: auto;
    }

    .download-item {
        align-items: flex-start;
        gap: 12px;
    }

    .download-icon {
        border-radius: 12px;
        flex-basis: 60px;
        font-size: 18px;
        height: 60px;
        width: 60px;
    }

    .download-action {
        flex-basis: 58px;
        font-size: 13px;
        line-height: 30px;
        margin-top: 15px;
    }

    .download-copy p {
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        white-space: normal;
    }

    .screen-grid a {
        height: 190px;
    }

    .footer {
        font-size: 12px;
        line-height: 1.8;
        padding: 28px 10px;
    }

    .footer a {
        font-size: 12px;
    }

    .footer-links li {
        margin-right: 8px;
        padding-right: 10px;
    }
}
