
.about-us-text {
    max-width: 50%;
}

.think-tank-section .container {
    display: flex;
    align-items: center;
    height: 100%;
}
.about-us-title {
    font-weight: bold;
    font-size: 4rem;
    color: #FFFFFF;
    line-height: 6rem;
    margin: 0 0 1.5rem 0;
    text-align: center;
    margin: 0 auto;
    margin-top: 10rem;
}

.think-tank-content {
    display: flex;
    gap: 2rem;
    width: 100%;
    flex-direction: column;
}

.think-tank-logo {
    flex-shrink: 0;
}

.logo-image {
    height: auto;
    max-width: 20rem; /* 200px */
    display: block;
}

.think-tank-description {
    font-size: 1.6rem; /* 16px */
    color: #666666;
    line-height: 2.4rem; /* 24px */
    flex: 1;
    max-width: 60rem; /* 600px */
}

.box_3 {
    box-shadow: 0px 1px 2rem 0px rgba(0, 0, 0, 0.06);
    background-color: rgba(255, 255, 255, 1);
    border-radius: 1rem;
    margin: 0 24rem;
}


/* 平板端适配 */
@media (max-width: 1023px) {
    .search-container{
        padding: 1rem;
    }

    .box_3 {
        margin: 0;
        padding: 1rem;
        text-align: center;
    }
    .think-tank-section {
        height: 30rem; /* 360px */
    }

    .think-tank-content {
        gap: 1.5rem;
    }

    .logo-image {
        max-width: 18rem; /* 180px */
    }

    .think-tank-description {
        font-size: 1.5rem; /* 15px */
        line-height: 2.2rem; /* 22px */
        max-width: 50rem; /* 500px */
    }
}

/* 手机端适配 */
@media (max-width: 767px) {
    .search-container{
        padding: 1rem;
    }

    .box_3 {
        margin: 0;
        padding: 1rem;
        text-align: center;
    }
    .think-tank-section {
        height: 20rem; /* 240px */
    }

    .think-tank-content {
        gap: 1rem;
    }

    .logo-image {
        max-width: 16rem; /* 160px */
    }

    .think-tank-description {
        font-size: 1.4rem; /* 14px */
        line-height: 2rem; /* 20px */
        max-width: 100%;
    }
}

/* 导航栏样式 */
.navigation-section {
    background: #FAFAFA;
}

.navigation-section .container {
    display: block;
    align-items: normal;
}

.navigation-nav {
    display: flex;
    justify-content: space-between;
    padding: 0 12rem;
}

.nav-item {
    width: 100%;
    text-align: center;
    font-size: 1.6rem; /* 16px */
    cursor: pointer;
    line-height: 6rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item-text {
    color: #333333;
    text-decoration: none;
    display: inline-block;
}

.nav-item-text:hover {
    color: #E21927;
    text-decoration: none;
}

.nav-item--active {
    color: #E21927;
    border-bottom: 0.2rem solid #E21927;
}

/* 平板端导航栏适配 */
@media (max-width: 1023px) {
    .navigation-nav {
        padding: 0 6rem;
    }

    .nav-item {
        font-size: 1.4rem;
        line-height: 5rem;
    }
}

/* 移动端导航栏适配 */
@media (max-width: 767px) {
    .navigation-nav {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 2rem;
    }

    .nav-item {
        font-size: 1.2rem;
        padding: 0.8rem 0.5rem;
        line-height: 4rem;
    }
}

/* 理论探索部分样式 */
.theory-exploration-section {
    background: url('../images/thinkTank/exploration_bg.png') no-repeat center center;
    background-size: 100% 100%;
    padding: 5rem 0;
    display: flex;
    align-items: center;
}

.theory-exploration-section .container {
    display: block;
    align-items: normal;
}

.theory-exploration-header {
    text-align: center;
    margin-bottom: 4rem;
}

.theory-exploration-title {
    font-size: 4rem; /* 40px */
    color: #333333;
    margin: 0 0 1.5rem 0;
}

.theory-exploration-subtitle {
    font-size: 1.6rem; /* 16px */
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.theory-exploration-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.theory-description {
    text-align: center;
}

.theory-description p {
    font-size: 1.4rem; /* 14px */
    color: #666666;
    line-height: 2.1rem; /* 21px */
    margin: 0;
}

.theory-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.carousel-container {
    /* background: #FFD700; 
    padding: 2rem; */
    border-radius: 1rem;
    /* box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1); */
    width: 100%;
    height: 42rem; /* 420px - 整体高度 */
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-container {
    margin: 0 auto;
    padding: 2rem 2rem;
    background: #FAFAFA;
}

/* Swiper轮播图样式 */
.swiper {
    width: 100%;
    max-width: 150rem; /* 1500px - 进一步增加最大宽度 */
    height: 38rem; /* 380px - 固定高度 */
    border-radius: 0.8rem;
    overflow: visible; /* 允许倾斜图片显示 */
    opacity: 0; /* 初始隐藏，等待Swiper初始化 */
    transition: opacity 0.2s ease; /* 减少过渡时间 */
}

.swiper.swiper-initialized {
    opacity: 1; /* Swiper初始化后显示 */
}

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

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
    transition: all 0.6s ease;
    cursor: pointer;
    width: 20rem; /* 200px - 固定宽度 */
    height: 20rem; /* 200px - 固定高度 */
    flex-shrink: 0; /* 防止收缩 */
}

/* 中间图片突出显示 - 1.5倍放大 */
.swiper-slide-active {
    transform: scale(1.5) translateY(-2rem) !important;
    z-index: 10 !important;
    transition: all 0.8s ease !important;
}

/* 暂时移除倾斜效果，确保所有图片显示 */
.swiper-slide:not(.swiper-slide-active) {
    opacity: 0.8 !important;
}

.swiper-slide-prev,
.swiper-slide-next {
    opacity: 0.7 !important;
}

.swiper-slide-prev-prev,
.swiper-slide-next-next {
    opacity: 0.6 !important;
}

/* 调整视觉上的第二张和第三张图片之间的距离 */
.swiper-slide-prev {
    margin-right: 25px !important;
}

.swiper-slide-next {
    margin-left: 25px !important;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
    border-radius: 0.8rem;
    background: #ffffff; /* 确保有背景色 */
}

/* 确保所有幻灯片都可见 - 移除可能冲突的样式 */

/* Swiper导航按钮样式 */
.swiper-button-next,
.swiper-button-prev {
    color: #E21927;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #E21927;
    color: #ffffff;
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.8rem;
    font-weight: bold;
}

/* Swiper分页器样式 */
.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    background: #cccccc;
    opacity: 1;
    width: 1rem;
    height: 1rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #E21927;
    transform: scale(1.2);
}


.carousel-caption {
    font-size: 1.8rem; /* 18px */
    color: #333333;
    text-align: center;
    font-weight: 500;
}

/* 平板端理论探索适配 */
@media (max-width: 1023px) {
    .theory-exploration-section {
        padding: 4rem 0;
    }

    .theory-exploration-header {
        margin-bottom: 3rem;
    }

    .theory-exploration-title {
        font-size: 3.2rem;
    }

    .theory-exploration-subtitle {
        font-size: 1.4rem;
    }

    .theory-exploration-content {
        gap: 2.5rem;
    }


    .theory-description p {
        font-size: 1.3rem;
        line-height: 1.9rem;
    }

    .carousel-container {
        height: 35rem; /* 平板端高度调整 */
        padding: 1.5rem;
    }

    .swiper {
        height: 32rem; /* 平板端Swiper高度 */
        max-width: 100rem; /* 平板端最大宽度 */
    }

    .swiper-slide {
        height: 18rem; /* 平板端图片高度 */
    }

    /* 平板端倾斜效果调整 */
    .swiper-slide-active {
        transform: scale(1.3) translateY(-1.5rem) !important;
    }

    .swiper-slide:not(.swiper-slide-active) {
        transform: perspective(80rem) rotateY(20deg) !important;
        opacity: 0.85 !important;
    }

    .swiper-slide-prev,
    .swiper-slide-next {
        transform: perspective(80rem) rotateY(12deg) !important;
        opacity: 0.8 !important;
    }

    .swiper-slide-prev-prev,
    .swiper-slide-next-next {
        transform: perspective(80rem) rotateY(30deg) !important;
        opacity: 0.7 !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 3.5rem;
        height: 3.5rem;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.6rem;
    }

    /* 平板端调整视觉上的第二张和第三张图片之间的距离 */
    .swiper-slide-prev {
        margin-right: 20px !important;
    }

    .swiper-slide-next {
        margin-left: 20px !important;
    }

    .swiper-pagination-bullet {
        width: 0.8rem;
        height: 0.8rem;
        margin: 0 0.4rem;
    }

    .carousel-caption {
        font-size: 1.6rem;
    }
}

/* 移动端理论探索适配 */
@media (max-width: 767px) {
    .theory-exploration-section {
        padding: 3rem 0;
    }

    .theory-exploration-header {
        margin-bottom: 2rem;
    }

    .theory-exploration-title {
        font-size: 2.8rem;
    }

    .theory-exploration-subtitle {
        font-size: 1.3rem;
    }

    .theory-exploration-content {
        gap: 2rem;
    }

    .theory-description {
        max-width: 100%;
    }

    .theory-description p {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }

    .carousel-container {
        height: 28rem; /* 移动端高度调整 */
        padding: 1rem;
    }

    .swiper {
        height: 26rem; /* 移动端Swiper高度 */
        max-width: 80rem; /* 移动端最大宽度 */
    }

    .swiper-slide {
        height: 15rem; /* 移动端图片高度 */
    }

    /* 移动端简化倾斜效果 */
    .swiper-slide-active {
        transform: scale(1.2) translateY(-1rem) !important;
    }

    .swiper-slide:not(.swiper-slide-active) {
        transform: perspective(60rem) rotateY(15deg) !important;
        opacity: 0.9 !important;
    }

    .swiper-slide-prev,
    .swiper-slide-next {
        transform: perspective(60rem) rotateY(8deg) !important;
        opacity: 0.85 !important;
    }

    .swiper-slide-prev-prev,
    .swiper-slide-next-next {
        transform: perspective(60rem) rotateY(25deg) !important;
        opacity: 0.8 !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 3rem;
        height: 3rem;
        display: none; /* 移动端隐藏导航按钮 */
    }

    .swiper-pagination {
        margin-top: 1.5rem;
    }

    .swiper-pagination-bullet {
        width: 0.6rem;
        height: 0.6rem;
        margin: 0 0.3rem;
    }

    /* 移动端调整视觉上的第二张和第三张图片之间的距离 */
    .swiper-slide-prev {
        margin-right: 15px !important;
    }

    .swiper-slide-next {
        margin-left: 15px !important;
    }

    .carousel-caption {
        font-size: 1.4rem;
    }
}

/* 智库研究部分样式 */
.think-tank-research-section {
    background: #ffffff;
    padding: 5rem 0;
    display: flex;
    align-items: center;
}

.think-tank-research-section .container {
    display: block;
    align-items: normal;
}

.think-tank-research-header {
    text-align: center;
    margin-bottom: 4rem;
}

.think-tank-research-title {
    font-size: 4rem; /* 40px */
    color: #333333;
    margin: 0 0 1.5rem 0;
}

.think-tank-research-subtitle {
    font-size: 1.6rem; /* 16px */
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.research-content {
    display: flex;
    flex-direction: column;
    gap: 8rem; /* 80px */
    max-width: 120rem; /* 1200px */
    margin: 0 auto;
}

.research-item {
    width: 100%;
}

.research-content-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.research-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.research-item-title {
    font-size: 3rem; /* 30px */
    color: #333333;
    font-weight: 600;
    margin: 0;
}

.research-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.research-tab {
    font-size: 1.2rem; /* 12px */
    color: #1662ED;
    padding: 0.6rem 1.4rem; /* 6px 14px */
    background: #E7EFFD;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}


.research-tab:hover {
    background: #1662ED;
    color: #ffffff;
}

.research-description {
    flex: 1;
}

.research-description p {
    font-size: 1.4rem; /* 14px */
    color: #666666;
    line-height: 2.1rem; /* 21px */
    margin: 0;
}

.research-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    height: 24rem; /* 240px */
    overflow: hidden;
}

.research-visual img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 研究轮播图样式 */
.research-swiper {
    width: 100%;
    height: 100%;
}

.research-swiper-container {
    width: 100%;
    height: 100%;
    border-radius: 0.8rem;
    overflow: hidden;
}

/* 确保轮播图容器没有额外间距 */
.research-swiper-container .swiper-wrapper {
    margin: 0 !important;
    padding: 0 !important;
}

.research-swiper-bottom .swiper-wrapper {
    margin: 0 !important;
    padding: 0 !important;
}

.research-swiper-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
    transition: all 0.6s ease;
    cursor: pointer;
    margin: 0 !important; /* 确保没有额外间距 */
}

.research-swiper-container .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
    border-radius: 0.8rem;
}

/* 研究轮播图所有图片正常显示，不放大 */
.research-swiper-container .swiper-slide-active {
    transform: none !important;
}

.research-swiper-container .swiper-slide-active img {
    transform: none !important;
}

/* 研究轮播图导航按钮 */
.research-swiper-next,
.research-swiper-prev {
    color: #E21927;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

.research-swiper-next:hover,
.research-swiper-prev:hover {
    background: #E21927;
    color: #ffffff;
    transform: scale(1.1);
}

.research-swiper-next:after,
.research-swiper-prev:after {
    font-size: 1.4rem;
    font-weight: bold;
}

/* 研究轮播图分页器 */
.research-swiper-pagination {
    position: relative;
    margin-top: 1rem;
}

.research-swiper-pagination .swiper-pagination-bullet {
    background: #cccccc;
    opacity: 1;
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.3rem;
}

.research-swiper-pagination .swiper-pagination-bullet-active {
    background: #E21927;
    transform: scale(1.2);
}

/* 第二个研究轮播图特定样式 - 椭圆旋转效果 */
.research-swiper-bottom .swiper-slide {
    background: #ffffff;
    margin: 0 !important; /* 确保没有额外间距 */
    position: relative;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 限制第二个研究轮播图宽度 - 确保只显示3张图片 */
.research-swiper-bottom {
    max-width: 60rem !important; /* 限制最大宽度，确保只显示3张图片 */
    overflow: hidden !important; /* 隐藏超出部分 */
}

/* 椭圆旋转容器 */
.research-swiper-bottom .swiper-wrapper {
    perspective: 100rem;
    transform-style: preserve-3d;
}

/* 中间图片突出显示 */
.research-swiper-bottom .swiper-slide-active {
    transform: scale(1.3) translateY(-3rem) !important;
    z-index: 10 !important;
    /* box-shadow: 0 2rem 5rem rgba(226, 25, 39, 0.4) !important; */
    /* border: 0.3rem solid #E21927 !important; */
}

/* 左右两侧图片椭圆排列 - 减少旋转角度 */
.research-swiper-bottom .swiper-slide-prev {
    transform: translateX(-3rem) translateY(2rem) scale(0.8) rotateY(15deg) !important;
    opacity: 0.7 !important;
    z-index: 5 !important;
}

.research-swiper-bottom .swiper-slide-next {
    transform: translateX(3rem) translateY(2rem) scale(0.8) rotateY(-15deg) !important;
    opacity: 0.7 !important;
    z-index: 5 !important;
}

/* 最外侧图片更深的椭圆效果 - 减少旋转角度 */
.research-swiper-bottom .swiper-slide-prev-prev {
    transform: translateX(-5rem) translateY(4rem) scale(0.6) rotateY(20deg) !important;
    opacity: 0.5 !important;
    z-index: 3 !important;
}

.research-swiper-bottom .swiper-slide-next-next {
    transform: translateX(5rem) translateY(4rem) scale(0.6) rotateY(-20deg) !important;
    opacity: 0.5 !important;
    z-index: 3 !important;
}

/* 第二个研究轮播图所有图片正常显示，不放大 - 移除冲突规则 */
/* .research-swiper-bottom .swiper-slide-active {
  transform: none !important;
} */

.research-swiper-bottom .swiper-slide-active img {
    transform: none !important;
}

/* 研究轮播图所有图片保持相同透明度 */
.research-swiper-container .swiper-slide,
.research-swiper-container .swiper-slide-prev,
.research-swiper-container .swiper-slide-next,
.research-swiper-container .swiper-slide-prev-prev,
.research-swiper-container .swiper-slide-next-next {
    opacity: 1 !important;
}

.research-swiper-bottom .swiper-slide,
.research-swiper-bottom .swiper-slide-prev,
.research-swiper-bottom .swiper-slide-next,
.research-swiper-bottom .swiper-slide-prev-prev,
.research-swiper-bottom .swiper-slide-next-next {
    opacity: 1 !important;
}

/* 确保两个研究轮播图的间距完全一致 */
.research-swiper-container .swiper-slide,
.research-swiper-container .swiper-slide-prev,
.research-swiper-container .swiper-slide-next,
.research-swiper-container .swiper-slide-prev-prev,
.research-swiper-container .swiper-slide-next-next,
.research-swiper-bottom .swiper-slide,
.research-swiper-bottom .swiper-slide-prev,
.research-swiper-bottom .swiper-slide-next,
.research-swiper-bottom .swiper-slide-prev-prev,
.research-swiper-bottom .swiper-slide-next-next {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
}

.research-swiper-next-bottom,
.research-swiper-prev-bottom {
    color: #E21927;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

.research-swiper-next-bottom:hover,
.research-swiper-prev-bottom:hover {
    background: #E21927;
    color: #ffffff;
    transform: scale(1.1);
}

.research-swiper-next-bottom:after,
.research-swiper-prev-bottom:after {
    font-size: 1.4rem;
    font-weight: bold;
}

.research-swiper-pagination-bottom .swiper-pagination-bullet {
    background: #cccccc;
    opacity: 1;
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.3rem;
}

.research-swiper-pagination-bottom .swiper-pagination-bullet-active {
    background: #E21927;
    transform: scale(1.2);
}

/* 平板端智库研究适配 */
@media (max-width: 1023px) {
    .think-tank-research-section {
        padding: 4rem 0;
    }

    .think-tank-research-header {
        margin-bottom: 3rem;
    }

    .think-tank-research-title {
        font-size: 3.2rem;
    }

    .think-tank-research-subtitle {
        font-size: 1.4rem;
    }

    .research-content {
        gap: 6rem; /* 60px */
    }

    .research-content-wrapper {
        gap: 2rem;
    }

    .research-text-content {
        gap: 1.5rem;
    }

    .research-visual {
        height: 20rem;
        padding: 1.2rem;
    }

    .research-item-title {
        font-size: 2.6rem;
    }

    .research-tab {
        font-size: 1.1rem;
        padding: 0.5rem 1.2rem;
    }

    .research-description p {
        font-size: 1.3rem;
        line-height: 1.9rem;
    }

    .research-visual {
        padding: 1.5rem;
    }

    /* 平板端研究轮播图样式 */
    .research-swiper-next,
    .research-swiper-prev {
        width: 2.5rem;
        height: 2.5rem;
    }

    .research-swiper-next:after,
    .research-swiper-prev:after {
        font-size: 1.2rem;
    }

    .research-swiper-pagination .swiper-pagination-bullet {
        width: 0.6rem;
        height: 0.6rem;
        margin: 0 0.2rem;
    }

    /* 平板端第二个研究轮播图样式 */
    .research-swiper-next-bottom,
    .research-swiper-prev-bottom {
        width: 2.5rem;
        height: 2.5rem;
    }

    .research-swiper-next-bottom:after,
    .research-swiper-prev-bottom:after {
        font-size: 1.2rem;
    }

    .research-swiper-pagination-bottom .swiper-pagination-bullet {
        width: 0.6rem;
        height: 0.6rem;
        margin: 0 0.2rem;
    }

    /* 第二个研究轮播图椭圆效果 - 平板 */
    .research-swiper-bottom .swiper-slide-active {
        transform: scale(1.2) translateY(-2rem) !important;
    }

    .research-swiper-bottom .swiper-slide-prev {
        transform: translateX(-2.5rem) translateY(1.5rem) scale(0.8) rotateY(12deg) !important;
    }

    .research-swiper-bottom .swiper-slide-next {
        transform: translateX(2.5rem) translateY(1.5rem) scale(0.8) rotateY(-12deg) !important;
    }

    .research-swiper-bottom .swiper-slide-prev-prev {
        transform: translateX(-4rem) translateY(3rem) scale(0.6) rotateY(18deg) !important;
    }

    .research-swiper-bottom .swiper-slide-next-next {
        transform: translateX(4rem) translateY(3rem) scale(0.6) rotateY(-18deg) !important;
    }

    /* 平板端限制第二个研究轮播图宽度 */
    .research-swiper-bottom {
        max-width: 50rem !important; /* 平板端更小的宽度限制 */
    }
}

/* 移动端智库研究适配 */
@media (max-width: 767px) {
    .think-tank-research-section {
        padding: 3rem 0;
    }

    .think-tank-research-header {
        margin-bottom: 2rem;
    }

    .think-tank-research-title {
        font-size: 2.8rem;
    }

    .think-tank-research-subtitle {
        font-size: 1.3rem;
    }

    .research-content {
        gap: 4rem; /* 40px */
    }

    .research-content-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .research-text-content {
        gap: 1rem;
    }

    .research-visual {
        width: 100%;
        height: 18rem;
        padding: 1rem;
    }

    .research-item-title {
        font-size: 2.2rem;
    }

    .research-tabs {
        gap: 0.8rem;
    }

    .research-tab {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }

    .research-description p {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }

    .research-visual {
        padding: 1rem;
    }

    /* 移动端研究轮播图样式 */
    .research-swiper-next,
    .research-swiper-prev {
        width: 2rem;
        height: 2rem;
        display: none; /* 移动端隐藏导航按钮 */
    }

    .research-swiper-pagination {
        margin-top: 0.8rem;
    }

    .research-swiper-pagination .swiper-pagination-bullet {
        width: 0.5rem;
        height: 0.5rem;
        margin: 0 0.15rem;
    }

    /* 移动端第二个研究轮播图样式 */
    .research-swiper-next-bottom,
    .research-swiper-prev-bottom {
        width: 2rem;
        height: 2rem;
        display: none; /* 移动端隐藏导航按钮 */
    }

    .research-swiper-pagination-bottom {
        margin-top: 0.8rem;
    }

    .research-swiper-pagination-bottom .swiper-pagination-bullet {
        width: 0.5rem;
        height: 0.5rem;
        margin: 0 0.15rem;
    }

    /* 第二个研究轮播图椭圆效果 - 移动端 */
    .research-swiper-bottom .swiper-slide-active {
        transform: scale(1.1) translateY(-1.5rem) !important;
    }

    .research-swiper-bottom .swiper-slide-prev {
        transform: translateX(-2rem) translateY(1rem) scale(0.8) rotateY(10deg) !important;
    }

    .research-swiper-bottom .swiper-slide-next {
        transform: translateX(2rem) translateY(1rem) scale(0.8) rotateY(-10deg) !important;
    }

    .research-swiper-bottom .swiper-slide-prev-prev {
        transform: translateX(-3rem) translateY(2rem) scale(0.6) rotateY(15deg) !important;
    }

    .research-swiper-bottom .swiper-slide-next-next {
        transform: translateX(3rem) translateY(2rem) scale(0.6) rotateY(-15deg) !important;
    }

    /* 移动端限制第二个研究轮播图宽度 */
    .research-swiper-bottom {
        max-width: 40rem !important; /* 移动端更小的宽度限制 */
    }
}

/* 活动咨询部分样式 */
.activity-consultation-section {
    background: #FAFAFA;
    padding: 5rem 0;
    display: flex;
    align-items: center;
}

.activity-consultation-section .container {
    display: block;
    align-items: normal;
}

.activity-consultation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.activity-consultation-title {
    font-size: 4rem; /* 40px */
    color: #333333;
    margin: 0 0 1.5rem 0;
}

.activity-consultation-subtitle {
    font-size: 1.6rem; /* 16px */
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.activity-tabs-nav {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.activity-tab {
    color: #333333;
    font-size: 1.6rem; /* 16px */
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 5rem;
    text-align: center;
}

.activity-tab:hover {
    color: #E21927;
    border-color: #E21927;
}

.activity-tab.active {
    border-bottom: 0.2rem solid #E21927;
    color: #E21927;
}

.activity-tab-content {
    max-width: 120rem; /* 1200px */
    margin: 0 auto;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane-wrapper {
    display: grid;
    grid-template-columns: 3fr 4fr;
    gap: 4rem; /* 40px */
}

.tab-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem; /* 20px */
    background: url('../images/thinkTank/left_bg.png') no-repeat center center;
    background-size: 100% 100%;
    padding:2.6rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
}

.tab-content-title {
    font-size: 2.2rem; /* 22px */
    color: #333333;
}

.tab-content-description {
    font-size: 1.2rem; /* 12px */
    color: #999999;
    line-height: 1.8rem; /* 18px */
    margin-bottom: 1rem; /* 20px */
}

.tab-content-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.list-item-title {
    font-size: 1.4rem; /* 14px */
    color: #333333;
    line-height: 2.1rem; /* 21px */
    font-weight: bold;
}

.list-item-text {
    font-size: 1.4rem; /* 14px */
    color: #666666;
    line-height: 2.1rem; /* 21px */
}

.tab-images {
    display: flex;
    align-items: center;
    gap: 2rem; /* 20px */
    flex-shrink: 0;
    height: 100%;
}

.tab-images img {
    width: 100%;
    height: 100%;
    height: 21rem;
    object-fit: cover;
    border-radius: 1rem; /* 10px */
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
}

/* 平板端活动咨询适配 */
@media (max-width: 1023px) {
    .activity-consultation-section {
        padding: 4rem 0;
    }

    .activity-tabs-nav {
        margin-bottom: 2rem;
    }

    .activity-tab {
        font-size: 1.4rem;
        line-height: 4rem;
    }

    .tab-pane-wrapper {
        gap: 3rem;
    }

    .tab-text-content {
        gap: 0.5rem;
        padding:2rem 1.5rem;
    }

    .tab-content-title {
        font-size: 2rem;
    }

    .tab-content-description {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }

    .list-item-title,
    .list-item-text {
        font-size: 1.3rem;
        line-height: 1.9rem;
    }

    .tab-images {
        gap: 1.5rem;
    }

    .tab-images img {
        height: 20rem;
    }
}

/* 移动端活动咨询适配 */
@media (max-width: 767px) {
    .activity-consultation-section {
        height: auto;
        padding: 3rem 0;
    }

    .activity-tabs-nav {
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

    .activity-tab {
        font-size: 1.2rem;
        line-height: 3rem;
        flex-grow: 1;
    }

    .tab-pane-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .tab-text-content {
        gap: 1rem;
        padding:2rem 1.5rem;
        width: 100%;
    }

    .tab-content-title {
        font-size: 1.8rem;
    }

    .tab-content-description {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .list-item-title,
    .list-item-text {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }

    .tab-images {
        width: 100%;
        gap: 1rem;
    }

    .tab-images img {
        height: 14rem;
    }
}

/* 培训服务部分样式 */
.training-services-section {
    background: #ffffff;
    padding: 5rem 0;
    display: flex;
    align-items: center;
}

.training-services-section .container {
    display: block;
    align-items: normal;
}

.training-services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.training-services-title {
    font-size: 4rem; /* 40px */
    color: #333333;
    margin: 0 0 1.5rem 0;
}

.training-services-subtitle {
    font-size: 1.6rem; /* 16px */
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.training-content-wrapper {
    display: grid;
    grid-template-columns: 3fr 4fr;
    gap: 4rem; /* 40px */
    max-width: 120rem; /* 1200px */
    margin: 0 auto;
}

.training-text-content {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* 10px */
    background: url('../images/thinkTank/left_bg.png') no-repeat center center;
    background-size: 100% 100%;
    padding:2.6rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
    text-align: left;
}

.training-content-title {
    font-size: 2.2rem; /* 22px */
    color: #333333;
}

.training-content-description {
    font-size: 1.2rem; /* 12px */
    color: #999999;
    line-height: 1.8rem; /* 18px */
}

.training-buttons {
    display: flex;
    gap: 1rem; /* 10px */
    margin-top: 1rem; /* 10px */
}

.training-btn {
    font-size: 1.5rem; /* 16px */
    width: 12rem; /* 121px */
    height:3.6rem; /* 41px */
    border-radius: 0.4rem; /* 4px */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.training-btn.primary {
    background: #E21927;
    color: #FFFFFF;
}

.training-btn.primary:hover {
    background: #c82333;
}

.training-btn.secondary {
    background: #ffffff;
    color: #E01927;
    border: 0.1rem solid #E01927; /* 1px */
}

.training-btn.secondary:hover {
    background: #E01927;
    color: #ffffff;
}

.training-images {
    display: flex;
    align-items: center;
    gap: 2rem; /* 20px */
    flex-shrink: 0;
    height: 100%;
}

.training-images img {
    width: 100%;
    height: 21rem;
    object-fit: cover;
    border-radius: 1rem; /* 10px */
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
}

/* 平板端培训服务适配 */
@media (max-width: 1023px) {
    .training-services-section {
        padding: 4rem 0;
    }

    .training-services-header {
        margin-bottom: 3rem;
    }

    .training-services-title {
        font-size: 3.2rem;
    }

    .training-services-subtitle {
        font-size: 1.4rem;
    }

    .training-content-wrapper {
        gap: 3rem;
    }

    .training-text-content {
        gap: 0.5rem;
        padding:2rem 1.5rem;
    }

    .training-content-title {
        font-size: 2rem;
    }

    .training-content-description {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }

    .training-btn {
        font-size: 1.4rem;
        width: 10rem;
        height: 3.6rem;
    }

    .training-images {
        gap: 1.5rem;
    }

    .training-images img {
        height: 20rem;
    }
}

/* 移动端培训服务适配 */
@media (max-width: 767px) {
    .training-services-section {
        height: auto;
        padding: 3rem 0;
    }

    .training-services-header {
        margin-bottom: 2rem;
    }

    .training-services-title {
        font-size: 2.8rem;
    }

    .training-services-subtitle {
        font-size: 1.3rem;
    }

    .training-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .training-text-content {
        gap: 1rem;
        padding:2rem 1.5rem;
        width: 100%;
    }

    .training-content-title {
        font-size: 1.8rem;
    }

    .training-content-description {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .training-buttons {
        gap: 1rem;
    }

    .training-btn {
        font-size: 1.2rem;
        width: 100%;
        height: 3.6rem;
    }

    .training-images {
        width: 100%;
        gap: 1rem;
    }

    .training-images img {
        height: 14rem;
    }
}

.result-item {
    padding: 2rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.3s;
}

.result-item:hover {
    background-color: #f9f9f9;
}

.result-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.8rem;
}

.result-content {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.result-meta {
    font-size: 0.12rem;
    color: #999;
}

.text-wrapper_1 {
    width: 14.3rem;
    height: 1.5rem;
    overflow-wrap: break-word;
    font-size: 0;
    font-family: SourceHanSansCN-Regular;
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
    line-height: 1.4rem;
    margin: 2.6rem 0 2.6rem 24rem;
}

.text_7 {
    width: 14.3rem;
    height: 1.5rem;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 1.4rem;
    font-family: SourceHanSansCN-Regular;
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
    line-height: 1.4rem;
    text-decoration: none;
}

.text_8 {
    width: 14.3rem;
    height: 1.5rem;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 1.4rem;
    font-family: SourceHanSansCN-Medium;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 1.4rem;
}

.text_9 {
    color: rgba(51, 51, 51, 1);
    font-size: 3rem;
    font-family: SourceHanSansCN-Medium;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    padding-top: 3.7rem;
    padding-bottom: 1rem;
}

.text-wrapper_2 {
    text-align: center;
    padding-bottom: 3.8rem;
}

.text_10 {
    width: 15.1rem;
    height: 1.5rem;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 1.4rem;
    font-family: SourceHanSansCN-Regular;
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
    line-height: 1.4rem;
}

.text_11 {
    width: 10.2rem;
    height: 1.4rem;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 1.4rem;
    font-family: SourceHanSansCN-Regular;
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
    line-height: 1.4rem;
    margin-top: 0.1rem;
}

.image_2 {
    margin: 0 auto;
}

.text-group_1 {
    color: rgba(102, 102, 102, 1);
    font-size: 1.8rem;
    font-family: SourceHanSansCN-Regular;
    font-weight: normal;
    line-height: 3.4rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    padding-top: 2rem;
}

.paragraph_1 {
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 1.8rem;
    font-family: SourceHanSansCN-Medium;
    line-height: 3.4rem;
    display: block;
    padding: 4rem 4.5rem;
    text-align: justify;
}

.paragraph_1 img {
    margin-top: 10px;
    max-width: 800px;
}

.image_3 {
    width: 192rem;
    height: 32.5rem;
    margin-top: -0.1rem;
}

.no-results {
    text-align: center;
    padding: 5rem 0;
    color: #999;
}

.content-img-box {
    text-align: center;
}
