﻿    /* 手机 */
    
    .mobile {
        /*display: none;*/
    }
    
    .mobile .main p,
    .mobile .main ul,
    .mobile .main h2,
    .mobile .main h3 {
        padding: 0;
        margin: 0;
    }
    
    .mobile .main {}
    
    .mobile .main .head-wrap {
        position: sticky;
        top: 0;
        z-index: 999;
    }
    
    .mobile .head {
        position: relative;
        padding: 16px;
        padding-top: 18px;
        z-index: 9;
        background: linear-gradient(180deg, #0129BD 0%, #03259C 100%);
    }
    
    .mobile .head::after {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: url('../img/index-bg1.png') no-repeat center right;
        background-size: 80%;
        z-index: -1;
    }
    
    .mobile .head::before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: url('../img/index-bg2.png') no-repeat center center;
        background-size: cover;
        z-index: -2;
    }
    
    .mobile .head .logo-title {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .mobile .head .logo-title .logo {
        width: 24px;
        height: 24px;
        overflow: hidden;
        vertical-align: center;
        line-height: 0;
        flex-shrink: 0;
    }
    
    .mobile .head .logo-title .title {
        height: 26px;
    }
    
    .mobile .head .logo-title img {
        width: inherit;
        height: inherit;
    }
    /* 搜索 */
    
    .mobile .head .search {
        margin-top: 15px;
        height: 32px;
        display: flex;
        align-items: center;
        border-radius: 6px;
        padding: 0 15px;
        background-color: #fff;
        border: 1px solid #FFFFFF;
    }
    
    .mobile .head .search .f-input {
        flex: 1;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .mobile .head .search .f-input input {
        width: 100%;
        height: 100%;
        font-size: 1.6rem;
        line-height: 1.8rem;
        font-weight: 400;
    }
    
    .mobile .head .search .f-input input::placeholder {
        font-size: 1.6rem;
        line-height: 1.8rem;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: rgba(0, 0, 0, 0.7);
    }
    
    .mobile .head .search .suffix-icon {
        width: 16px;
        height: 16px;
        overflow: hidden;
        line-height: 0;
        vertical-align: center;
        flex-shrink: 0;
    }
    
    .mobile .head .search .suffix-icon img {
        width: inherit;
        height: inherit;
    }
    /* 栏目 */
    
    .mobile .head .column-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 8px;
        gap: 16px;
    }
    
    .mobile .head .column-wrap .column-list-wrap {
        position: relative;
    }
    
    .mobile .head .column-wrap .column-list-wrap::after {
        position: absolute;
        content: '';
        top: 50%;
        right: -10px;
        bottom: 0;
        z-index: 9;
        width: 32px;
        height: 60%;
        transform: translateY(-50%);
        background: linear-gradient(90deg, rgba(1, 41, 189, 0) 0%, rgb(11 48 177) 60%);
    }
    
    .mobile .head .column-wrap .column-list {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-right: 24px;
    }
    
    .mobile .head .column-wrap .column-list .column-item {
        font-family: PingFang SC;
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
        text-align: justified;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: rgba(255, 255, 255, 0.8);
        padding: 7px 0;
        flex-shrink: 0;
    }
    
    .mobile .head .column-wrap .column-list .column-item.active {
        position: relative;
    }
    
    .mobile .head .column-wrap .column-list .column-item.active::after {
        position: absolute;
        content: '';
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
        border-radius: 99px;
        background-color: #FFFFFF;
    }
    
    .mobile .head .column-wrap .more-icon {
        width: 12px;
        height: 12px;
        overflow: hidden;
        line-height: 0;
        vertical-align: center;
        flex-shrink: 0;
    }
    /* 内容 */
    
    .mobile .content {
        padding: 16px;
    }
    
    .mobile .content .swiper {
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 6px;
        background-color: #fff;
        box-shadow: 0px 0px 20px 7px #00000008;
        --swiper-pagination-bottom: 14px;
        --swiper-pagination-color: #0065F3;
        --swiper-pagination-bullet-inactive-color: #C5DCFD;
        --swiper-pagination-bullet-inactive-opacity: 1;
        /* 两种都可以 */
    }
    
    .mobile .content .swiper .swiper-slide {
        width: 100%;
        height: 100%;
    }
    
    .mobile .content .swiper .swiper-slide .banner {
        width: 100%;
        height: 190px;
    }
    
    .mobile .content .swiper .swiper-slide img {
        object-fit: cover;
    }
    
    .mobile .content .swiper .swiper-slide .swiper-text {
        padding: 8px 17px 34px;
        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: rgba(0, 0, 0, 1);
    }
    
    .mobile .content .notice-card {
        position: relative;
        z-index: 9;
        padding: 8px 16px;
        border-radius: 6px;
        /* background-color: #fff; */
        box-shadow: 0px 0px 20px 7px #00000008;
        margin-top: 16px;
        box-shadow: 0px -3px 40px 0px #0000000D;
        background: conic-gradient(#E7EFFF, #F7F7F7, #F7F7F7, #E7EFFF);
        /*mask: linear-gradient(#fff0 100%) content-box, linear-gradient(#fff0 100%);
        -webkit-mask: linear-gradient(#fff0 100%) content-box, linear-gradient(#fff0 100%);
        -webkit-mask-composite: xor;
        mask-composite: exclude;*/
        overflow: hidden;
        /* 用于兼容非-webkit浏览器 */
    }
    
    .mobile .content .notice-card::after {
        position: absolute;
        content: '';
        z-index: -2;
        top: 1px;
        left: 1px;
        right: 1px;
        bottom: 1px;
        border-radius: 6px;
        background: linear-gradient(177.3deg, #F4FCFF 2.26%, #E0ECFF 126.1%);
    }
    
    .mobile .content .notice-card::before {
        position: absolute;
        content: '';
        z-index: -1;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: url(../img/image193.png) no-repeat center right;
        background-size: auto 110%;
        opacity: 0.7;
    }
    
    .mobile .content .notice-card .notice-title {
        width: 100%;
        height: 31px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .mobile .content .notice-card .notice-title h2 span:nth-child(1) {
        font-family: Alimama ShuHeiTi;
        font-size: 16px;
        font-weight: 700;
        line-height: 19.2px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #F17C00;
    }
    
    .mobile .content .notice-card .notice-title h2 span:nth-child(2) {
        font-family: Alimama ShuHeiTi;
        font-size: 16px;
        font-weight: 700;
        line-height: 19.2px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000000;
    }
    
    .mobile .content .notice-card .notice-title .more {
        font-family: PingFang SC;
        font-size: 12px;
        font-weight: 400;
        line-height: 16.8px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile .content .notice-card .notice-title .more .arrow {
        width: 5.5px;
        line-height: 0;
        overflow: hidden;
        vertical-align: center;
        margin-left: 3.5px;
    }
    
    .mobile .content .notice-card .notice-list {
        padding: 6px 0;
        display: flex;
        flex-direction: column;
        gap: 9px;
        /* padding-left: 16px; */
    }
    
    .mobile .content .notice-card .notice-list .notice-item {
        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: #000000;
        padding-left: 11px;
        position: relative;
    }
    
    .mobile .content .notice-card .notice-list .notice-item::after {
        position: absolute;
        content: '';
        top: 50%;
        left: 0;
        width: 5px;
        height: 5px;
        transform: translateY(-50%);
        background-color: var(--theme-color);
    }
    
    .mobile .content .dynamic-card {
        border-radius: 6px;
        margin-top: 16px;
        background-color: #fff;
        box-shadow: 0px 3px 40px 0px #0000000D;
    }
    
    .mobile .content .dynamic-card .dynamic-head {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: hidden;
        background-color: #F5FAFF;
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 48px;
        position: relative;
    }
    
    .mobile .content .dynamic-card .dynamic-head {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: hidden;
        background-color: #F5FAFF;
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 48px;
        position: relative;
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item p {
        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: rgba(0, 0, 0, 0.5);
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item:nth-child(1) {
        z-index: 9;
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item:nth-child(1) .item-inner {
        position: absolute;
        right: -20%;
        width: 120%;
        height: 100%;
        z-index: -1;
        background: #F5FAFF;
        border-radius: 0 16px 0 0px;
        transform: perspective(48px) scaleX(1.2) scaleY(1.33) rotateX(16deg) translate(-26px, 0);
        transform-origin: 50% 100%;
        /* box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.06); */
        box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item:nth-child(1) .item-inner::before {
        content: "";
        position: absolute;
        right: -16px;
        width: 16px;
        height: 16px;
        bottom: 0;
        background: radial-gradient(circle at 100% 0, transparent, transparent 16px, #F5FAFF 16px, #F5FAFF);
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item:nth-child(1).active .item-inner {
        background: #fff;
        box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item:nth-child(1).active .item-inner::before {
        background: radial-gradient(circle at 100% 0, transparent, transparent 16px, #fff 16px, #fff);
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item:nth-child(2) {
        z-index: 8;
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item:nth-child(2) .item-inner {
        position: absolute;
        right: -20%;
        width: 120%;
        height: 100%;
        z-index: -1;
        background: #F5FAFF;
        border-radius: 0 16px 0 0px;
        transform: perspective(48px) scaleX(1.2) scaleY(1.33) rotateX(16deg) translate(-26px, 0);
        transform-origin: 50% 100%;
        box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.06);
        box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item:nth-child(2) .item-inner::before {
        content: "";
        position: absolute;
        right: -16px;
        width: 16px;
        height: 16px;
        bottom: 0;
        background: radial-gradient(circle at 100% 0, transparent, transparent 16px, #F5FAFF 16px, #F5FAFF);
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item:nth-child(2).active .item-inner {
        background: #fff;
        box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item:nth-child(2).active .item-inner::before {
        background: radial-gradient(circle at 100% 0, transparent, transparent 16px, #fff 16px, #fff);
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item:nth-child(3) {
        z-index: 7;
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item:nth-child(3) .item-inner {
        position: absolute;
        right: 0;
        width: 130%;
        height: 100%;
        z-index: -1;
        background: #F5FAFF;
    }
    
    .mobile .content .dynamic-card .dynamic-head .title-item:nth-child(3).active .item-inner {
        background: #fff;
        box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    .mobile .content .dynamic-card .dynamic-content {
        padding: 8px 16px;
        display: none;
    }
    
    .mobile .content .dynamic-card .dynamic-content.active {
        display: block;
    }
    
    .mobile .content .dynamic-card .dynamic-content .dynamic-item {
        display: flex;
        gap: 16px;
        padding: 12px 0;
        border-bottom: 1px dashed #00000033
    }
    
    .mobile .content .dynamic-card .dynamic-content .dynamic-item:last-child {
        border-bottom: none;
    }
    
    .mobile .content .dynamic-card .dynamic-content .dynamic-item .dynamic-img {
        width: 120px;
        height: 90px;
        flex-shrink: 0;
        border-radius: 6px;
        overflow: hidden;
    }
    
    .mobile .content .dynamic-card .dynamic-content .dynamic-item .dynamic-text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .mobile .content .dynamic-card .dynamic-content .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-card .dynamic-content .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);
    }
    
    .mobile .content .dynamic-card .dynamic-content .more-btn-wrap {
        display: block;
        padding-top: 29px;
        padding-bottom: 12px;
    }
    
    .mobile .content .dynamic-card .dynamic-content .more-btn {
        width: 100%;
        height: 36px;
        border-radius: 9999px;
        border: 1px solid #EBEBEB;
        background-color: #FDFDFD;
        font-family: PingFang SC;
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000000;
    }
    
    .mobile .content .article-card {
        position: relative;
        z-index: 9;
        padding: 16px;
        margin-top: 16px;
        border-radius: 6px;
        background-color: #FFFFFF;
        box-shadow: 0px 3px 40px 0px #0000000D;
    }
    
    .mobile .content .article-card::after {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 62px;
        z-index: -1;
        background: url(../img/card-head-bg.png) no-repeat;
        background-position: top center;
        background-size: cover;
    }
    
    .mobile .content .article-card .article-tabs {
        display: flex;
        align-items: center;
        gap: 22px;
    }
    
    .mobile .content .article-card .article-tabs .tab-item {
        font-family: PingFang SC;
        font-size: 17px;
        font-weight: 400;
        line-height: 23.8px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: rgba(0, 0, 0, 0.7);
        position: relative;
    }
    
    .mobile .content .article-card .article-tabs .tab-item.active {
        font-family: PingFang SC;
        font-size: 17px;
        font-weight: 600;
        line-height: 24.2px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000000;
    }
    
    .mobile .content .article-card .article-tabs .tab-item.active::after {
        position: absolute;
        content: '';
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 4px;
        border-radius: 99px;
        transform: translateY(100%);
        background-color: var(--theme-color);
    }
    
    .mobile .content .article-card .article-sub-tabs-wrap {
        position: relative;
        padding-top: 16px;
        display: none;
    }
    
    .mobile .content .article-card .article-sub-tabs-wrap.active {
        display: block;
    }
    
    .mobile .content .article-card .article-sub-tabs-wrap::before {
        position: absolute;
        content: '';
        top: 0;
        left: -16px;
        bottom: 0;
        width: 20px;
        height: 100%;
        background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 42%);
    }
    
    .mobile .content .article-card .article-sub-tabs-wrap::after {
        position: absolute;
        content: '';
        top: 0;
        right: -16px;
        bottom: 0;
        width: 32px;
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 42%);
    }
    
    .mobile .content .article-card .article-sub-tabs {
        display: flex;
        align-items: center;
        gap: 6px;
        overflow-y: hidden;
        overflow-x: scroll;
        margin: 0 -16px;
        padding: 0 16px;
    }
    
    .mobile .content .article-card .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 .content .article-card .article-sub-tabs .sub-tab-item.active {
        color: #FFFFFF;
        color: #FFFFFF;
        background-color: #002199;
    }
    
    .mobile .content .article-card .article-lists {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding-top: 47px;
    }
    
    .mobile .content .article-card #articleList {
        display: none;
    }
    
    .mobile .content .article-card #articleList.active {
        display: block;
    }
    
    .mobile .content .article-card .article-lists .list-item {
        display: flex;
        gap: 18px;
    }
    
    .mobile .content .article-card .article-lists .list-item .item-time {
        width: 67px;
        height: 67px;
        border-radius: 6px;
        background-color: #F0F5FD;
        display: flex;
        flex-shrink: 0;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    
    .mobile .content .article-card .article-lists .list-item .item-time h2 {
        font-family: DIN Alternate;
        font-size: 22px;
        font-weight: 700;
        line-height: 25.61px;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000000;
    }
    
    .mobile .content .article-card .article-lists .list-item .item-time p {
        font-family: PingFang SC;
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000000;
    }
    
    .mobile .content .article-card .article-lists .list-item .item-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .mobile .content .article-card .article-lists .list-item .item-info h3 {
        font-family: PingFang SC;
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000000;
    }
    
    .mobile .content .article-card .article-lists .list-item .item-info p {
        font-family: PingFang SC;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: rgba(0, 0, 0, 0.4);
    }
    
    .mobile .content .article-card .article-lists2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding-top: 16px;
        display: none;
    }
    
    .mobile .content .article-card .article-lists2.active {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .mobile .content .article-card .article-lists2 .list-item {
        flex: 1;
    }
    
    .mobile .content .article-card .article-lists2 .list-item .item-img {
        width: 100%;
        min-height: 22.5rem;
        padding: 6px;
        overflow: hidden;
        border-radius: 6px;
        box-sizing: border-box;
        border: 1px solid #ECECEC;
        box-shadow: 0px 0px 20px 5px #0000000D;
    }
    
    .mobile .content .article-card .article-lists2 .list-item .item-img img {
        object-fit: cover;
    }
    
    .mobile .content .article-card .article-lists2 .list-item h2 {
        font-family: PingFang SC;
        font-size: 16px;
        font-weight: 600;
        line-height: 22.4px;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000000;
        padding-top: 6px;
    }
    
    .mobile .content .article-card .more-btn-wrap {
        display: block;
        padding-top: 29px;
        padding-bottom: 12px;
    }
    
    .mobile .content .article-card .more-btn {
        width: 100%;
        height: 36px;
        border-radius: 9999px;
        border: 1px solid #EBEBEB;
        background-color: #FDFDFD;
        font-family: PingFang SC;
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000000;
    }
    
    .mobile .content .article-card2 {
        position: relative;
        z-index: 9;
        padding: 16px;
        margin-top: 16px;
        border-radius: 6px;
        background-color: #FFFFFF;
        box-shadow: 0px 3px 40px 0px #0000000D;
    }
    
    .mobile .content .article-card2::after {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 62px;
        z-index: -1;
        background: url(../img/card-head-bg.png) no-repeat;
        background-position: top center;
        background-size: cover;
    }
    
    .mobile .content .article-card2 .article-tabs {
        display: flex;
        align-items: center;
        gap: 22px;
    }
    
    .mobile .content .article-card2 .article-tabs .tab-item {
        font-family: PingFang SC;
        font-size: 17px;
        font-weight: 400;
        line-height: 23.8px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: rgba(0, 0, 0, 0.7);
        position: relative;
    }
    
    .mobile .content .article-card2 .article-tabs .tab-item.active {
        font-family: PingFang SC;
        font-size: 17px;
        font-weight: 600;
        line-height: 24.2px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000000;
    }
    
    .mobile .content .article-card2 .article-tabs .tab-item.active::after {
        position: absolute;
        content: '';
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 4px;
        border-radius: 99px;
        transform: translateY(100%);
        background-color: var(--theme-color);
    }
    
    .mobile .content .article-card2 #firstList {
        display: none;
    }
    
    .mobile .content .article-card2 #firstList.active {
        display: block;
    }
    
    .mobile .content .article-card2 .article-sub-tabs-wrap {
        position: relative;
        padding-top: 36px;
    }
    
    .mobile .content .article-card2 .article-sub-tabs-wrap::before {
        position: absolute;
        content: '';
        top: 0;
        left: -16px;
        bottom: 0;
        width: 20px;
        height: 100%;
       /* background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 42%);*/
    }
    
    .mobile .content .article-card2 .article-sub-tabs-wrap::after {
        position: absolute;
        content: '';
        top: 0;
        right: -16px;
        bottom: 0;
        width: 32px;
        height: 100%;
        /*background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 42%);*/
    }
    
    .mobile .content .article-card2 .article-sub-tabs {
        display: flex;
        align-items: center;
        gap: 6px;
        overflow-y: hidden;
        overflow-x: scroll;
        margin: 0 -16px;
        padding: 0 16px;
    }
    
    .mobile .content .article-card2 .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;
        font-family: PingFang SC;
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
    }
    
    .mobile .content .article-card2 .article-sub-tabs .sub-tab-item.active {
        color: #FFFFFF;
        background-color: #002199;
    }
    
    .mobile .content .article-card2 .article-lists {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 16px;
        display: none;
    }
    
    .mobile .content .article-card2 .article-lists.active {
        display: flex;
    }
    
    .mobile .content .article-card2 .article-lists .list-item {
        padding-bottom: 12px;
        border-bottom: 1px dashed #E0E0E0;
        display: block;
    }
    
    .mobile .content .article-card2 .article-lists .list-item h3 {
        font-family: PingFang SC;
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000000;
    }
    
    .mobile .content .article-card2 .article-lists .list-item p {
        font-family: PingFang SC;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: rgba(0, 0, 0, 0.4);
        padding-top: 8px;
    }
    
    .mobile .content .article-card2 .more-btn-wrap {
        display: block;
        padding-top: 29px;
        padding-bottom: 12px;
    }
    
    .mobile .content .article-card2 .more-btn {
        width: 100%;
        height: 36px;
        border-radius: 9999px;
        border: 1px solid #EBEBEB;
        background-color: #FDFDFD;
        font-family: PingFang SC;
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000000;
    }
    
    .mobile .content .association-card {
        position: relative;
        z-index: 9;
        margin-top: 16px;
        border-radius: 6px;
        overflow: hidden;
        background-color: #FFFFFF;
        box-shadow: 0px 3px 40px 0px #0000000D;
    }
    
    .mobile .content .association-card::after {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 62px;
        z-index: -1;
        background: url(../img/card-head-bg.png) no-repeat;
        background-position: top center;
        background-size: cover;
    }
    
    .mobile .content .association-card .association-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 16px 0;
    }
    
    .mobile .content .association-card .association-head h3 {
        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;
        color: #000000;
    }
    
    .mobile .content .association-card .association-head .more {
        font-family: PingFang SC;
        font-size: 12px;
        font-weight: 400;
        line-height: 16.8px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile .content .association-card .association-head .more .arrow {
        width: 5.5px;
        line-height: 0;
        overflow: hidden;
        vertical-align: center;
        margin-left: 3.5px;
    }
    
    .mobile .content .association-card .association-lists-wrap {
        position: relative;
        padding-top: 26px;
    }
    
    .mobile .content .association-card .association-lists-wrap::after {
        position: absolute;
        content: '';
        top: 0;
        right: -2px;
        bottom: 0;
        z-index: 9;
        width: 52px;
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 90%);
    }
    
    .mobile .content .association-card .association-lists {
        padding: 16px;
        padding-bottom: 20px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        gap: 16px;
        overflow-y: hidden;
        overflow-x: auto;
    }
    
    .mobile .content .association-card .association-lists .list-item {
        max-width: 252px;
        display: block;
        padding: 12px 8px;
        border-radius: 8px;
        background-color: #FFFFFF;
        box-shadow: 0px 0px 10px 7px #00000008;
    }
    
    .mobile .content .association-card .association-lists .list-item .video {
        position: relative;
    }
    
    .mobile .content .association-card .association-lists .list-item .item-cover {
        width: 125px;
        height: 60px;
        overflow: hidden;
        border-radius: 6px;
    }
    
    .mobile .content .association-card .association-lists .list-item .item-cover img {
        object-fit: scale-down;
    }
    
    .mobile .content .association-card .association-lists .list-item .video .big-play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40px;
        height: 40px;
        transform: translate(-50%, -50%);
    }
    
    .mobile .content .association-card .association-lists .list-item .item-footer {
        width: 100%;
        height: 81px;
        box-sizing: border-box;
        padding-top: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .mobile .content .association-card .association-lists .list-item .item-footer h3 {
        font-family: PingFang SC;
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000000;
    }
    
    .mobile .content .association-card .association-lists .list-item .item-footer p {
        font-family: PingFang SC;
        font-size: 13px;
        font-weight: 400;
        line-height: 18.2px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: rgba(0, 0, 0, 0.4);
    }
    
    .mobile .content .association-card .association-lists .list-item .item-footer .video-foot {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .mobile .content .association-card .association-lists .list-item .item-footer .video-foot .small-play-icon {
        display: flex;
        width: 14px;
        height: 14px;
        overflow: hidden;
    }
