    /* 手机 */
    
    .mobile {
        /*display: none;*/
        min-height: 100vh;
        background-color: #F8F8F8;
    }
    
    .mobile .main ul,
    .mobile .main h3 {
        margin: 0;
    }
    
    .mobile .main {}
    
    .mobile .main .nav-title {
        width: 100%;
        height: 46px;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #F8F8F8;
    }
    
    .mobile .main .nav-title h3 {
        margin: 0;
        font-family: PingFang SC;
        font-size: 17px;
        font-weight: 600;
        line-height: 23.8px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
    }
    
    .mobile .main .head-wrap {
        position: sticky;
        top: 0;
        z-index: 999;
        background-color: #F8F8F8;
    }
    
    .mobile .main .head .article-sub-tabs-wrap {
        position: relative;
        overflow: hidden;
    }
    
    .mobile .main .head .article-sub-tabs-wrap::before {
        position: absolute;
        content: '';
        top: 0;
        left: -16px;
        bottom: 0;
        width: 32px;
        height: 100%;
        background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 42%);
    }
    
    .mobile .main .head .article-sub-tabs-wrap::after {
        position: absolute;
        content: '';
        top: 0;
        right: -16px;
        bottom: 0;
        width: 42px;
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 42%);
    }
    
    .mobile .main .head .article-sub-tabs {
        display: flex;
        align-items: center;
        gap: 6px;
        overflow-y: hidden;
        overflow-x: scroll;
        padding: 16px;
        font-family: PingFang SC;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: rgba(0, 0, 0, 0.7);
    }
    
    .mobile .main .head .article-sub-tabs .sub-tab-item {
        flex-shrink: 0;
        padding: 6px 16px;
        border-radius: 99px;
        background-color: #F0F0F0;
        box-shadow: 0px 0px 50px 0px #0000000A;
    }
    
    .mobile .main .head .article-sub-tabs .sub-tab-item.active {
        color: #FFFFFF;
        background-color: #002199;
    }
    
    .mobile .content {
        box-sizing: border-box;
        /* height: calc(100vh - 65px);
        overflow-y: auto;
        overflow-x: hidden; */
    }
    
    .mobile .content .dynamic-lists {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
        display: none;
    }
    
    .mobile .content .dynamic-lists.active {
        display: flex;
    }
    
    .mobile .content .dynamic-lists .dynamic-item {
        padding: 12px;
        /* min-height: 114px; */
        border-radius: 8px;
        box-sizing: border-box;
        background-color: #FFFFFF;
        /* box-shadow: 0px 0px 50px 0px #0000000A; */
    }
    
    .mobile .content .dynamic-lists .dynamic-item a {
        display: flex;
        gap: 16px;
    }
    
    .mobile .content .dynamic-lists .dynamic-item:last-child {
        border-bottom: none;
    }
    
    .mobile .content .dynamic-lists .dynamic-item .dynamic-img {
        width: 120px;
        height: 90px;
        flex-shrink: 0;
        border-radius: 6px;
        overflow: hidden;
    }
    
    .mobile .content .dynamic-lists .dynamic-item .dynamic-text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .mobile .content .dynamic-lists .dynamic-item .dynamic-text .dynamic-title {
        font-family: PingFang SC;
        font-size: 16px;
        font-weight: 400;
        line-height: 22.4px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000000;
    }
    
    .mobile .content .dynamic-lists .dynamic-item .dynamic-text .dynamic-time {
        font-family: PingFang SC;
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: rgba(0, 0, 0, 0.5);
        padding-top: 6px;
    }
    
    .mobile .content .load-more {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 34px 0;
        font-family: PingFang SC;
        font-size: 13px;
        font-weight: 400;
        line-height: 18.2px;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: rgba(0, 0, 0, 0.4);
    }