section {
    position: relative;
    z-index: 2;
}

.index-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.index-bg img {
    width: 100%;
}

.index-bg-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F5F7FD;
}

.think-tank .sec-area {
    padding: 0 calc(100rem / 14);
}

.think-tank .swiper-slide {
    display: flex;
    justify-content: space-between;
    gap: calc(200rem / 16);
    overflow: hidden;
}

.think-tank .txt {
    padding-top: calc(35rem / 16);
}

.think-tank .txt .title {
    font-size: calc(36rem / 16);
    font-weight: bold;
}

.think-tank .txt .intro {
    font-size: calc(20rem / 16);
    margin-top: calc(20rem / 16);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.think-tank .txt .time {
    color: #5F718D;
    font-weight: 300;
    margin-top: calc(20rem / 16);
}

/* .think-tank .learn-more .btn {
    width: max-content;
    border: 2px solid rgba(0, 98, 255, .2);
    border-radius: 300px;
    padding: 15px;
    padding-left: 30px;
    display: flex;
    align-items: center;
    gap: 57px;
    color: #0062FF;
    margin-top: calc(60rem / 16);
    transition: .3s;
} */

.think-tank .swiper-slide .btn-ctn {
    margin-top: calc(60rem / 16);
}

.think-tank .learn-more .btn:hover {
    background-color: #0062FF;
    color: #fff;
}

.think-tank .learn-more .icon {
    width: 30px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #0062FF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.think-tank .learn-more .icon img {
    width: 6px;
}

.think-tank .pic {
    width: calc(640rem / 16);
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 30px;
}

.think-tank .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.think-tank-list .switch-box {
    display: none;
}

.filter-type {
    width: max-content;
    padding: 5px;
    border-radius: 300px;
    background-color: #fff;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
    font-size: 16px;
    font-weight: 300;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.filter-type::-webkit-scrollbar {
    display: none;
}

.filter-type__thumd {
    width: 0;
    background-color: #F2F5FF;
    border-radius: 300px;
    position: absolute;
    top: 5px;
    left: 0;
    transform: translate3d(0, 0, 0);
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        width .35s cubic-bezier(.22, 1, .36, 1),
        height .35s cubic-bezier(.22, 1, .36, 1);
    will-change: transform, width;
}

.filter-type-wrap {
    position: relative;
    display: flex;
    z-index: 1;
}

.filter-type .item {
    flex: 0 0 auto;
    padding: calc(8rem / 16) calc(40rem / 16);
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: block;
}

.filter-type .item.active {
    font-weight: normal;
    color: #0062FF;
    /* background-color: #F2F5FF;
    border-radius: 300px; */
}

section.top .wrapper {
    border-bottom: 0;
    padding-bottom: 0;
}

.think-tank-list .card-wrap {
    margin-top: calc(60rem / 16);
    display: flex;
    flex-wrap: wrap;
    --column: 4;
    --gap: max(10px, calc(30rem / 16));
    gap: var(--gap);
}

.think-tank-list .wrapper .btn-ctn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.think-tank-list .card-wrap .item {
    width: calc((100% - (var(--column) - 1) * var(--gap)) / var(--column));
    aspect-ratio: 1;
    background-color: #fff;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
    border-radius: 30px;
    padding: calc(30rem / 16);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    display: none;
    cursor: pointer;
}

.think-tank-list.think-tank-other .card-wrap .item {
    display: flex;
}

.think-tank-list .card-wrap .item .mark {
    position: absolute;
    top: 0;
    right: 0;
}

.think-tank-list .card-wrap .item .mark img {
    width: 4rem;
}

.think-tank-list .card-wrap .item .icon img {
    width: calc(80rem / 16);
    display: block;
}

.think-tank-list .card-wrap .item .title {
    display: flex;
    align-items: flex-start;
    gap: calc(20rem / 16);
    color: #333;
    font-size: calc(24rem / 16);
    padding-right: 30px;
}

.think-tank-list .card-wrap .item .common {
    min-height: 68px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.think-tank-list .card-wrap .item .title span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: -4px;
}

.common-label {
    width: max-content;
    padding: 4px 10px;
    color: #0062FF;
    font-size: 14px;
    border-radius: 5px;
    background-color: #F2F5FF;
    border: 1px solid rgba(0, 98, 255, .1);
    cursor: pointer;
}

.think-tank-list .card-wrap .item .intro {
    color: #5F718D;
    margin-top: calc(25rem / 16);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.think-tank-list .card-wrap .item .bottom {
    color: #5F718D;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.think-tank-list .card-wrap .item .bottom .learn-more {
    gap: 8px;
    display: flex;
    align-items: center;
    position: relative;
}
.think-tank-list .card-wrap .item .bottom .learn-more span {
    transition: color .3s linear;
}
.think-tank-list .card-wrap .item .bottom .learn-more:hover span {
    color: #0062FF;
}
.think-tank-list .card-wrap .item .bottom .learn-more img {
    height: 12px;
    filter: url(#color-5f718d);
}

.think-tank-list .card-wrap .item .bottom .learn-more:hover img {
    filter: url(#color-0062ff);
}

.think-tank-list {
    margin-top: calc(70rem / 16);
    padding-bottom: calc(80rem / 16);
}

.think-tank-list #pagination {
    margin-top: 20px;
}

.think-tank-list .card-total {
    margin-top: 20px;
}

.think-tank-list .card-total .total {
    color: #0062FF;
    font-weight: bold;
}

.think-tank .swiper-container {
    padding-bottom: max(60rem / 16);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, .2);
    opacity: 1;
    margin: 0 10px !important;
}

.swiper-pagination-bullet-active {
    border-radius: 300px;
    width: 40px;
    background-color: #0062FF;
}

.pagination {
    text-align: center;
    margin-top: calc(60rem / 16);
}

.think-tank-detail .sec-area {
    padding-top: 6em;
    max-width: 1200px;
    margin: 0 auto;
}

.think-tank-detail .sec-top {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.think-tank-detail .sec-top .info {
    flex: 1 0 0;
    overflow: hidden;
}

.think-tank-detail .sec-top .icon {
    border: 2px solid #fff;
    border-radius: 15px;
}

.think-tank-detail .sec-top .title {
    font-size: calc(38rem / 16);
    font-weight: bold;
    line-height: 1;
    padding-top: 2px;
}

.think-tank-detail .sec-top .time {
    color: #5F718D;
    font-weight: 300;
    margin-top: calc(15rem / 16);
}

.think-tank-detail .article-meta {
    margin-top: 14px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.think-tank-detail .article-meta .article-meta__item {
    width: max-content;
    max-width: 100%;
    flex: 0 0 auto;
}

.think-tank-detail .article-meta .article-meta__label {
    color: rgba(51, 51, 51, .6);
}

.think-tank-detail .article-meta__item .common {
    display: inline-block;
}

.think-tank-detail .article-meta__item .common .common-label {
    transition: .3s linear;
}

.think-tank-detail .article-meta__item .common .common-label:hover {
    color: #fff;
    border-color: #0062FF;
    background: #0062FF;
}

.think-tank-detail .article-meta__item .common .common-label+.common-label {
    margin-left: 8px;
}

.article-share {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.article-share__tip {
    width: max-content;
    color: #fff;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #0062ff;
    position: absolute;
    left: 0;
    top: -10px;
    transform: translate(0, -100%);
    transition: opacity .5s linear;
    opacity: 0;
}

.article-share__tip.visible {
    opacity: 1;
}

.article-share__title {
    font-size: 15px;
    color: #666;
    white-space: nowrap;
    line-height: 40px;
    flex: 0 0 auto;
}

.article-share__content {
    flex: 1 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.article-share__item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
    position: relative;
}

.article-share__item img {
    max-width: 50%;
    max-height: 100%;
    display: block;
    transition: transform .25s ease;
}

.article-share__item img.active {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.article-share__item:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 98, 255, .18);
}

.article-share__item:hover img {
    opacity: 0;
}

.article-share__item:hover img.active {
    opacity: 1;
}

.article-share__item:hover img.active {
    transform: translate(-50%, -50%) scale(1.12);
}

.think-tank-detail .sec-content {
    margin-top: calc(40rem / 16);
}

.think-tank-detail .sec-content__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
}

.think-tank-detail .back-index__btn {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.think-tank-detail .back-index__btn .content {
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.think-tank-detail .back-index__btn .content .icon {
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    background-color: #0062FF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.think-tank-detail .back-index__btn .content .icon img {
    width: 50%;
}

.think-tank-detail .back-index__btn .content .inner-text {
    font-size: 12px;
    padding: 0 1rem;
}

.think-tank-detail .back-index__btn .content img {
    width: 9rem;
    display: block;
}

.think-tank-detail .article {
    background-color: rgba(255, 255, 255, .5);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
    padding: calc(60rem / 16);
    color: #5F718D;
    border-radius: 30px;
}

.think-tank-detail .article>* {
    font-style: revert;
    font-weight: revert;
    line-height: 2;
}

.think-tank-detail .article>*+* {
    margin-top: calc(40rem / 16);
}

.think-tank-detail .back-btn {
    display: flex;
    justify-content: end;
}

.think-tank-detail .handle-wrap {
    font-size: calc(18rem / 16);
    display: flex;
    color: #252525;
    margin-top: calc(60rem / 16);
}

.think-tank-detail .handle-wrap .item .pic {
    display: flex;
    align-items: center;
}

.think-tank-detail .handle-wrap .item .pic img {
    width: 20px;
}

.think-tank-detail .handle-wrap .item {
    width: 50%;
    gap: 10px;
    line-height: 2;
    display: flex;
    align-items: center;
    padding: calc(30rem / 16) 0;
}

.think-tank-detail .handle-wrap .item:last-child {
    flex-direction: row-reverse;
    text-align: right;
    border-left: 1px solid rgba(0, 0, 0, .15);
}

.think-tank-detail .handle-wrap .item .intro p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-word;
}

.think-tank-other .wrapper {
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.think-tank-other .sec-title {
    font-size: calc(38rem / 16);
    font-weight: bold;
    padding-top: calc(30rem / 16);
}

.yiiPager {
    display: flex;
    justify-content: center;
    margin: calc(40rem / 16) 0;
}

.yiiPager li.first,
.yiiPager li.last {
    display: none;
}

.yiiPager li {
    border-radius: 30px;
    margin: 0 5px;
    border: 2px solid rgba(95, 113, 141, .2);
}

.yiiPager li.page {
    width: calc(50rem / 16);
    aspect-ratio: 1;
}

.yiiPager li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #5F718D;
}

.yiiPager li.selected {
    border-color: #0062FF;
    opacity: 1;
}

.yiiPager li.previous,
.yiiPager li.next {
    border-color: rgba(0, 98, 255, .2);
}

.yiiPager li.previous a,
.yiiPager li.next a {
    color: #0062FF;
    background-repeat: no-repeat;
    background-size: 8px;
}

.yiiPager li.previous.hidden,
.yiiPager li.next.hidden {
    pointer-events: none;
    filter: brightness(0.4);
    opacity: .5;
}

.yiiPager li.previous a {
    background-position: 20px center;
    padding-left: calc(50rem / 16);
    padding-right: 20px;
    background-image: url(../images/icon_angle_left_blue.svg);
}

.yiiPager li.next a {
    background-position: 76px center;
    padding-right: calc(50rem / 16);
    padding-left: 20px;
    background-image: url(../images/icon_angle_right_blue.svg);
}

.yiiPager li.selected a {
    color: #0062FF;
}

.yiiPager li:hover {
    box-shadow: 0px 0px 10px 0px rgba(71, 52, 26, 0.1);
}

.sidebar {
    --icon-w: 5rem;
    --icon-h: 5rem;
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
    position: fixed;
    top: 50%;
    transform: translate(calc(100% - var(--icon-w)), -50%);
    right: 0px;
    z-index: 999;
}

.sidebar.active {
    transform: translate(100%, -50%);
}

.sidebar .item-content {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
}

.sidebar .item {
    width: max-content;
    background-color: #FBBC05;
    padding-right: 1rem;
    transition: transform .35s ease;
}

.sidebar .item .icon {
    width: var(--icon-w);
    height: var(--icon-h);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar .item+.item {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.sidebar .item:nth-of-type(1) {
    border-top-left-radius: 10px;
}

.sidebar .item:nth-last-of-type(1) {
    border-bottom-left-radius: 10px;
}

body:not(.wfEditorMode) object {
    display: none;
}

.top-nav .nav-item.active {
    color: #0062FF;
}

@media screen and (max-width: 1440px) {
    .think-tank-list .card-wrap .item .intro {
        margin-top: calc(10rem / 16);
    }
}

@media (max-width: 1380px) {

    .think-tank-list .card-wrap .item .intro,
    .think-tank-list .card-wrap .item .common {
        margin-top: 10px;
    }

    .think-tank-list .card-wrap .item .title {
        font-size: calc(20rem / 16);
    }

    .think-tank-detail .sec-area {
        max-width: 1080px;
    }
}

@media screen and (max-width: 1200px) {
    .think-tank-list .card-wrap {
        --column: 3;
    }

    .think-tank .swiper-slide {
        gap: calc(40rem / 16);
    }
}

@media (max-width: 1080px) {
    .think-tank-list .card-wrap {
        --column: 2;
    }

    .think-tank-detail .sec-area {
        padding: 2em 20px 0;
    }

    .think-tank .sec-area {
        padding: 0;
    }

    .think-tank .swiper-slide {
        gap: 0;
    }

    .think-tank .txt {
        flex: 1 0 0;
        padding-right: calc(32rem / 16);
    }

    .think-tank-list .card-wrap .item {
        aspect-ratio: 1 / .8;
    }
}

@media (max-width: 768px) {
    .think-tank-list {
        margin-top: calc(35rem / 16);
    }

    .think-tank .txt .title {
        font-size: 18px;
    }

    .think-tank .txt .intro {
        font-size: 14px;
        margin-top: calc(2rem);
    }

    section.top .wrapper {
        padding-top: calc(40vh / 10.8);
    }

    .think-tank .swiper-container {
        padding-bottom: 0;
    }

    .think-tank .txt .time {
        color: #fff;
    }

    .think-tank-list .switch-box {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
    }

    .think-tank-list .switch-box .switch-box__content {
        display: flex;
        gap: 4px;
    }

    .think-tank-list .switch-box .prev-btn,
    .think-tank-list .switch-box .next-btn {
        width: 3.5rem;
        height: 3.5rem;
        flex: 0 0 auto;
        background-color: #0062FF;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .think-tank-list .switch-box .prev-btn img,
    .think-tank-list .switch-box .next-btn img {
        width: 50%;
    }

    .think-tank-list .switch-box .prev-btn.disabled,
    .think-tank-list .switch-box .next-btn.disabled {
        background: rgba(0, 0, 0, .2);
    }

    .filter-type {
        width: 100%;
        border-radius: 12px;
    }

    .filter-type-wrap {
        width: 100%;
    }

    .think-tank-list .card-wrap {
        margin-top: calc(30rem / 16);
    }

    .filter-type .item {
        text-align: center;
        font-size: 13px;
        padding: calc(8rem / 16) calc(8rem / 16);
    }

    .think-tank-detail .sec-top .title {
        font-size: 20px;
    }

    .think-tank .swiper-slide {
        position: relative;
    }

    .think-tank .swiper-slide::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 12px;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, .2), rgba(0, 0, 0, .6));
        z-index: 2;
    }

    .think-tank .swiper-slide .btn-ctn {
        display: none;
    }

    .think-tank .txt {
        color: #fff;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: calc(30rem / 16);
        z-index: 3;
    }

    .think-tank .pic {
        width: 100%;
        border-radius: 12px;
        position: relative;
        z-index: 1;
    }

    .think-tank .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 0;
    }

    .think-tank .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .think-tank .swiper-pagination-bullet-active {
        width: 40px;
    }

    .think-tank-list .card-wrap .item {
        aspect-ratio: 1 / .7;
    }

    .think-tank-list .card-wrap .item .intro,
    .think-tank-list .card-wrap .item .common {
        margin-top: 16px;
    }

    .think-tank-list .card-wrap .item .intro {
        font-size: 14px;
    }

    .think-tank-list .card-wrap .item .title {
        font-size: 18px;
    }

    .think-tank-list .card-wrap .item .title span {
        margin-top: -2px;
    }

    .think-tank-list .card-wrap .item .common {
        min-height: 59px;
        gap: 6px;
    }

    .common-label {
        font-size: 12px;
        padding: 4px 5px;
    }

    .think-tank-detail .sec-top .title {
        line-height: 1.4;
        margin-top: -4px;
    }

    .think-tank-detail .article-meta .article-meta__item {
        display: flex;
    }

    .think-tank-detail .article-meta .article-meta__label {
        flex: 0 0 auto;
    }

    .think-tank-detail .article-meta__item .common {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .think-tank-detail .article-meta__item .common .common-label+.common-label {
        margin: 0;
    }

    .think-tank-detail .article-meta {
        display: block;
        margin-top: 8px;
    }

    .think-tank-detail .article-meta .article-meta__item+.article-meta__item {
        margin-top: 8px;
    }

    .think-tank-detail .back-index__btn {
        margin-left: auto;
    }

    .think-tank-detail .article {
        padding: calc(60rem / 16) 20px;
    }

    .sidebar {
        display: none;
    }

    .think-tank-detail .handle-wrap .item {
        font-size: 14px;
    }

    .think-tank-detail .back-index__btn .content .icon {
        width: 3rem;
        height: 3rem;
    }
}

@media (max-width: 580px) {
    .think-tank-list .card-wrap {
        --column: 1;
    }

    .think-tank-detail .sec-top {
        gap: 0 12px;
    }

    .think-tank-detail .sec-top .icon {
        width: 36px;
        height: 36px;
        padding: 2px;
        border-radius: 8px;
        flex: 0 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .think-tank-detail .sec-top .icon img {
        max-width: 100%;
        max-height: 100%;
    }

    .think-tank-detail .handle-wrap .item .pic img {
        width: 12px;
    }
}


.skeleton * {
    color: transparent !important;
}

.skeleton img {
    opacity: 0;
}

.skeleton .title,
.skeleton .intro,
.skeleton .time,
.skeleton .pic {
    position: relative;
    overflow: hidden;
    background: #eceff3;
    border-radius: 6px;
}

.skeleton title::after,
.skeleton .intro::after,
.skeleton .time::after,
.skeleton .pic::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .7),
            transparent);
    transform: translateX(-100%);
    animation: skeleton-loading 1.4s infinite;
}

@keyframes skeleton-loading {
    to {
        transform: translateX(100%);
    }
}