.soft-down{
    
    display: none;
}
@media screen and (max-width: 760px) {
    .soft-down{
        display: flex;
    }
}

/* 主布局容器修复 */
.main.tx-wide {
    overflow: hidden;
}
.main.tx-wide > .row {
    display: flex;
    flex-wrap: wrap;
}
.main.tx-wide > .row > .col-18,
.main.tx-wide > .row > .col-6 {
    box-sizing: border-box;
    overflow: hidden;
}

/* 右侧边栏修复 */
.side-box {
    overflow: hidden;
}
.side-box dl {
    background: #fff;
    margin-bottom: 20px;
    overflow: hidden;
}
.side-box dl dt {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-weight: bold;
}
.side-box dl dd {
    padding: 15px;
    overflow: hidden;
}

.ranking li>i:first-child{
    left: 10px;
}

/* 排行榜修复 */
.side-box .ranking {
    list-style: none;
    padding: 0;
    margin: 0;
}
.side-box .ranking li {
    overflow: hidden;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 40px;
    border-bottom: 1px dashed #eee;
}
.side-box .ranking li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 10px;
}
.side-box .ranking li a {
    display: block;
    overflow: hidden;
}
.side-box .ranking li p.txt-ov {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* 文章列表修复 */
.side-box .ul-26 {
    list-style: none;
    padding: 0;
    margin: 0;
}
.side-box .ul-26 li {
    overflow: hidden;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eee;
}
.side-box .ul-26 li:last-child {
    border-bottom: none;
}
.side-box .ul-26 li a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 60px);
}

/* 最新APP网格修复 */
.side-box .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
    box-sizing: border-box;
}
.side-box .row > li {
    box-sizing: border-box;
    padding: 0 5px;
    overflow: hidden;
}
.side-box .row > li .txt-ov {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* 底部推荐区域修复 - 加强 */
.bottom-recommend-app,
.bottom-recommend-article {
    overflow: hidden !important;
    clear: both;
}
.bottom-recommend-app .row,
.bottom-recommend-article .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -5px;
}
.bottom-recommend-app .row > li,
.bottom-recommend-article .row > li {
    box-sizing: border-box !important;
    padding: 0 5px;
    overflow: hidden !important;
}
.bottom-recommend-app .col-6 {
    width: 25% !important;
    flex: 0 0 25% !important;
}
.bottom-recommend-article .col-12 {
    width: 50% !important;
    flex: 0 0 50% !important;
}

/* tx-box 容器修复 */
.tx-box {
    overflow: hidden;
    box-sizing: border-box;
}

/* 信息区域修复 */
.info-next ul.row {
    display: flex;
    flex-wrap: wrap;
}
.info-next ul.row > li {
    box-sizing: border-box;
    overflow: hidden;
}
.info-next ul.row > li a {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 截图区域样式 - 固定宽高比防止布局混乱 */
.soft-screenshot .swiper-container {
    overflow: hidden;
    width: 100%;
}

.soft-screenshot .swiper-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.soft-screenshot .swiper-slide {
    width: calc(20% - 12px) !important;
    min-width: 150px;
    max-width: 220px;
    flex-shrink: 0;
}

.soft-screenshot .swiper-slide a {
    display: block;
}

.soft-screenshot .swiper-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 8px;
}

/* 移动端适配 */
@media screen and (max-width: 760px) {
    .main.tx-wide > .row > .col-18,
    .main.tx-wide > .row > .col-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
    .bottom-recommend-app .col-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
    }
    .bottom-recommend-article .col-12 {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
    .side-box .row > li.col-12 {
        width: 50% !important;
        flex: 0 0 50% !important;
    }
}