.widget .wpo-support-btn {
    display: block;
    padding: 18px 40px;
    background: linear-gradient(to right, #3884f4, #07b4d4);
    font-size: 18px;
    font-family: "Futura PT Demi";
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s;
}

.widget .wpo-support-btn a {
    color: #ffffff;
}

/* 主 section 容器 */
.aspiration-section {
    padding: 40px 16px;
}

.aspiration-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 标题区域 */
.aspiration-header {
    text-align: center;
    margin-bottom: 48px;
}

.aspiration-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: #dbeafe;
    color: #2563eb;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.aspiration-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.aspiration-title-line {
    width: 96px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* 大图 banner 区域 */
.aspiration-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.aspiration-banner-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transform: scale(1.017);
    /* 还原原图轻微放大效果 */
    display: block;
}

/* 渐变遮罩层 */
.aspiration-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
}

/* 底部文案区域 */
.aspiration-banner-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
}

.aspiration-banner-text p {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.7;
    max-width: 900px;
    font-weight: 400;
}

/* 响应式适配 - 平板/桌面端 */
@media (min-width: 768px) {
    .aspiration-section {
        padding: 40px 24px;
    }

    .aspiration-title {
        font-size: 40px;
    }

    .aspiration-banner-img {
        height: 500px;
    }

    .aspiration-banner-text {
        padding: 48px;
    }

    .aspiration-banner-text p {
        font-size: 24px;
    }
}

/* 响应式适配 - 小屏手机 */
@media (max-width: 480px) {
    .aspiration-section {
        padding: 40px 12px;
    }

    .aspiration-title {
        font-size: 28px;
    }

    .aspiration-banner-img {
        height: 350px;
    }

    .aspiration-banner-text {
        padding: 24px 20px;
    }

    .aspiration-banner-text p {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* 布局容器 */
.glyc-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* 平板/电脑：3列 */
@media (min-width: 768px) {
    .glyc-grid {
        margin-top: 20px;
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 卡片主体 */
.glyc-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glyc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

/* 图片容器 */
.glyc-card-img-wrap {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

/* 图片 */
.glyc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.glyc-card:hover .glyc-card-img {
    transform: scale(1.1);
}

/* 渐变遮罩 */
.glyc-card-gradient-green {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.6), transparent, transparent);
}

.glyc-card-gradient-blue {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.6), transparent, transparent);
}

.glyc-card-gradient-purple {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(91, 33, 182, 0.6), transparent, transparent);
}

/* 内容区 */
.glyc-card-content {
    padding: 1.5rem;
}

/* 标题区 */
.glyc-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

/* 图标盒子 */
.glyc-icon-green {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(to right, #22c55e, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3);
}

.glyc-icon-blue {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.glyc-icon-purple {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(to right, #a855f7, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.3);
}

/* 图标文字 */
.glyc-icon-text {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

/* 卡片标题 */
.glyc-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

/* 描述文字 */
.glyc-card-desc {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* ======================== 时间轴（修复连接线+贴线） ======================== */
.evolution-timeline-container {
    position: relative;
}

.evolution-timeline-header {
    text-align: center;
    margin-bottom: 50px;
}

.evolution-timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.evolution-timeline-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    margin: 0 auto;
    border-radius: 3px;
}

.evolution-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* 竖线 */
.evolution-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #22d3ee, #3b82f6, #a855f7);
    transform: translateX(-50%);
}

.evolution-timeline-dot-top {
    position: absolute;
    left: 50%;
    top: 0;
    width: 12px;
    height: 12px;
    background: #22d3ee;
    border-radius: 50%;
    transform: translateX(-50%);
}

.evolution-timeline-dot-bottom {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 12px;
    height: 12px;
    background: #a855f7;
    border-radius: 50%;
    transform: translateX(-50%);
}

/* 时间轴项 */
.evolution-timeline-item {
    position: relative;
    display: flex;
    align-items: center;
}

.evolution-timeline-circle {
    position: absolute;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid #3b82f6;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}



/* 核心修复：卡片贴紧中线 */
.evolution-card {
    width: 40%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f3;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.evolution-timeline-item-left .evolution-card {
    margin-left: 0;
    margin-right: auto;
}

.evolution-timeline-item-right .evolution-card {
    margin-left: auto;
    margin-right: 0;
}

.evolution-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.evolution-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: #fff;
    flex-wrap: wrap;
}

.evolution-card-number {
    font-size: 20px;
    font-weight: bold;
}

.evolution-card-title {
    font-size: 17px;
    font-weight: bold;
}

.evolution-card-spacer {
    flex: 1;
}

.evolution-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.evolution-card-tag {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.evolution-card-content {
    padding: 16px;
}

.evolution-card-text {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
}

.evolution-card-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.evolution-card:hover .evolution-card-expand {
    max-height: 200px;
}

.evolution-card-expand-content {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

/* 渐变 */
.evolution-card-header-1 {
    background: linear-gradient(to right, #06b6d4, #3b82f6)
}

.evolution-card-header-2 {
    background: linear-gradient(to right, #3b82f6, #22d3ee)
}

.evolution-card-header-3 {
    background: linear-gradient(to right, #22d3ee, #60a5fa)
}

.evolution-card-header-4 {
    background: linear-gradient(to right, #a855f7, #ec4899)
}

.evolution-card-header-5 {
    background: linear-gradient(to right, #ec4899, #a855f7)
}

.evolution-card-header-6 {
    background: linear-gradient(to right, #22d3ee, #f472b6)
}

/* 移动端 */
@media (max-width:768px) {
    .glyc-grid {
        grid-template-columns: 1fr
    }

    .evolution-timeline-line,
    .evolution-timeline-circle {
        display: none
    }

    .evolution-card {
        width: 100% !important;
        margin: 0 0 20px !important
    }
}

/* ======================== 价值观 ======================== */

/* 外层容器 */
.values-section {
    padding: 2rem 0;
    background-color: #f9fafb;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 标题区域 */
.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #dbeafe;
    color: #2563eb;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.values-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.values-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    margin: 0 auto 1.5rem;
}

/* 引言区域 */
.values-quote-wrap {
    margin-bottom: 4rem;
}

.values-quote-card {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem 3rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.values-quote-text {
    font-size: 1.125rem;
    color: #4b5563;
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.values-quote-author {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* 横幅区域 */
.values-banner-wrap {
    margin-bottom: 4rem;
}

.values-banner {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.values-banner-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transform: scale(1.02);
}

.values-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.8), rgba(8, 145, 178, 0.6));
}

.values-banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    text-align: center;
}

.values-banner-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.values-banner-desc {
    font-size: 1.125rem;
    color: #bfdbfe;
    max-width: 40rem;
}

/* 价值观卡片网格 */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.values-card-item {
    opacity: 1;
    transform: none;
}

.values-card {
    background-color: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.values-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-0.5rem);
}

.values-icon-wrap {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.values-card:hover .values-icon-wrap {
    transform: scale(1.1);
}

.values-icon-blue {
    background-color: #3b82f6;
}

.values-icon-orange {
    background-color: #f97316;
}

.values-icon-yellow {
    background-color: #eab308;
}

.values-icon-green {
    background-color: #22c55e;
}

.values-icon-svg {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: currentColor;
}

.values-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.values-card-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

/* 服务理念区域 */
.values-service-wrap {
    margin-bottom: 4rem;
}

.values-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
    text-align: center;
}

.values-service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.values-service-card {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.values-service-img-wrap {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.values-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.values-service-card:hover .values-service-img {
    transform: scale(1.1);
}

.values-service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent, transparent);
}

.values-service-number {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.values-number-blue {
    background-color: #3b82f6;
}

.values-number-cyan {
    background-color: #06b6d4;
}

.values-number-deepblue {
    background-color: #2563eb;
}

.values-service-content {
    padding: 1.5rem;
}

.values-service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.values-service-card:hover .values-service-title-blue {
    color: #2563eb;
}

.values-service-card:hover .values-service-title-cyan {
    color: #0891b2;
}

.values-service-card-desc {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.75;
}

/* 响应式适配 */
@media (min-width: 768px) {
    .values-title {
        font-size: 2.25rem;
    }

    .values-quote-card {
        padding: 2rem 3rem;
    }

    .values-quote-text {
        font-size: 1.25rem;
    }

    .values-quote-author {
        font-size: 1rem;
    }

    .values-banner-img {
        height: 400px;
    }

    .values-banner-title {
        font-size: 2.25rem;
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .values-service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============组织价值=============== */
.organization-section {
    position: relative;
    overflow: hidden;
}

/* 背景层 */
.organization-bg-wrap {
    position: absolute;
    inset: 0;
}

.organization-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.organization-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.5));
}

/* 内容容器 */
.organization-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* 标题区域 */
.organization-header {
    text-align: center;
    margin-bottom: 3rem;
}

.organization-header-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.organization-header-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.organization-header-divider {
    width: 4rem;
    height: 0.125rem;
    background: linear-gradient(to right, #60a5fa, #22d3ee);
    margin: 0 auto;
}

/* 卡片网格 */
.organization-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

/* 卡片项 */
.organization-card-item {
    opacity: 1;
    transform: none;
}

/* 卡片通用样式 */
.organization-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.organization-card:hover .organization-card-glow {
    opacity: 0.7;
}

.organization-card:hover .organization-icon-wrap {
    transform: scale(1.05);
}

/* 卡片外发光渐变 */
.organization-card-glow {
    position: absolute;
    inset: -0.25rem;
    border-radius: 1rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.organization-card-vision .organization-card-glow {
    background: linear-gradient(to right, #3b82f6, #22d3ee, #3b82f6);
}

.organization-card-mission .organization-card-glow {
    background: linear-gradient(to right, #f59e0b, #fb923c, #f59e0b);
}

/* 卡片内层容器 */
.organization-card-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    height: 180px;
}

/* 卡片顶部渐变线 */
.organization-card-top-line {
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
}

.organization-card-vision .organization-card-top-line {
    background: linear-gradient(to right, transparent, #60a5fa, transparent);
}

.organization-card-mission .organization-card-top-line {
    background: linear-gradient(to right, transparent, #fbbf24, transparent);
}

/* 卡片主体内容 */
.organization-card-body {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    height: 100%;
}

/* 图标容器 */
.organization-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.organization-card-vision .organization-icon-wrap {
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.4), rgba(34, 211, 238, 0.4));
}

.organization-card-mission .organization-icon-wrap {
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.4), rgba(251, 146, 60, 0.4));
}

.organization-icon-svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #ffffff;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* 卡片文字内容 */
.organization-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 1.5rem;
    min-height: 0;
    overflow: hidden;
}

.organization-card-tag-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.organization-card-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.organization-card-vision .organization-card-tag {
    color: #cffafe;
}

.organization-card-mission .organization-card-tag {
    color: #ffedd5;
}

.organization-card-subtitle {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.organization-card-title-main {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.organization-card-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 卡片底部圆点 */
.organization-card-dots {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.organization-card-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
}

.organization-card-vision .organization-card-dot:nth-child(odd) {
    background-color: #60a5fa;
}

.organization-card-vision .organization-card-dot:nth-child(even) {
    background-color: #22d3ee;
}

.organization-card-mission .organization-card-dot:nth-child(odd) {
    background-color: #fbbf24;
}

.organization-card-mission .organization-card-dot:nth-child(even) {
    background-color: #fb923c;
}

/* 底部标签区域 */
.organization-tags-wrap {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    opacity: 1;
    transform: none;
}

.organization-tag-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.organization-tag-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.organization-tag-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

/* 响应式适配 */
@media (min-width: 768px) {
    .organization-container {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .organization-header-title {
        font-size: 2rem;
    }

    .organization-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .organization-card-title-main {
        font-size: 1.5rem;
    }
}

/* =====================组织与人才=========================== */
/* 外层主容器 */
.talent-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom right, #f8fafc, rgba(219, 234, 254, 0.3), #f8fafc);
    position: relative;
    overflow: hidden;
}

/* 背景模糊渐变球 */
.talent-bg-blobs {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.talent-blob-left {
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(96, 165, 250, 0.2);
    border-radius: 50%;
    filter: blur(3rem);
}

.talent-blob-right {
    position: absolute;
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(34, 211, 238, 0.2);
    border-radius: 50%;
    filter: blur(3rem);
}

/* 内容容器 */
.talent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

/* 标题区域 */
.talent-header {
    text-align: center;
    margin-bottom: 4rem;
}

.talent-header-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #dbeafe;
    color: #2563eb;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.talent-header-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.talent-header-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    margin: 0 auto 1.5rem;
}

.talent-header-desc {
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

/* 主内容网格（左图+右金字塔） */
.talent-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

/* 左侧图片区域 */
.talent-image-wrap {
    position: relative;
}

.talent-image-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.talent-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.talent-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.6), transparent, transparent);
}

.talent-image-text {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    color: #ffffff;
}

.talent-image-title {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.talent-image-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 图片装饰块 */
.talent-decor-right {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
    border-radius: 1rem;
    z-index: -1;
}

.talent-decor-left {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom right, #22d3ee, #3b82f6);
    border-radius: 0.75rem;
    z-index: -1;
    opacity: 0.6;
}

/* 右侧倒金字塔卡片 */
.talent-pyramid-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.talent-pyramid-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    text-align: center;
}

.talent-pyramid-desc {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* 倒金字塔主体 */
.talent-pyramid-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* 金字塔层级通用 */
.talent-pyramid-layer {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* 顶层：事业伙伴 */
.talent-pyramid-top {
    background: linear-gradient(to right, #2563eb, #3b82f6);
    color: #ffffff;
    padding: 1.25rem 4rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.talent-pyramid-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* 三角箭头 */
.talent-pyramid-arrow {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 20px solid #3b82f6;
}

.talent-pyramid-arrow-bottom {
    border-left: 250px solid transparent;
    border-right: 250px solid transparent;
    border-top: 20px solid #93c5fd;
}

/* 中间层：我们的团队 */
.talent-pyramid-middle {
    background: linear-gradient(to right, #3b82f6, #60a5fa);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.talent-middle-header {
    text-align: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(96, 165, 250, 0.3);
}

.talent-middle-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.talent-middle-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
}

.talent-middle-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.talent-middle-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.talent-middle-icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #1d4ed8;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.talent-middle-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.talent-middle-card-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
}

.talent-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.talent-tag {
    background-color: #ffffff;
    padding: 0.375rem 1rem;
    border-radius: 999px;
    color: #1d4ed8;
    font-weight: 500;
    font-size: 0.875rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}

.talent-tag:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* 底层：集团效能委员会 */
.talent-pyramid-bottom {
    background: linear-gradient(to right, #bfdbfe, #dbeafe);
    color: #1e40af;
    padding: 1.25rem 5rem;
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 42rem;
    width: 100%;
}

/* 底部四个卡片网格 */
.talent-bottom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.talent-feature-card {
    position: relative;
    height: 18rem;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.talent-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.talent-feature-card:hover .talent-feature-img {
    transform: scale(1.1);
}

.talent-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4), transparent);
}

.talent-feature-content {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.talent-feature-icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.talent-icon-blue {
    background-color: #3b82f6;
}

.talent-icon-cyan {
    background-color: #06b6d4;
}

.talent-icon-deepblue {
    background-color: #2563eb;
}

.talent-icon-purple {
    background-color: #a855f7;
}

.talent-feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.talent-feature-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.talent-feature-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.talent-feature-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 1rem;
    transition: border-color 0.3s ease;
}

.talent-feature-card:hover .talent-border-blue {
    border-color: rgba(96, 165, 250, 0.5);
}

.talent-feature-card:hover .talent-border-cyan {
    border-color: rgba(34, 211, 238, 0.5);
}

.talent-feature-card:hover .talent-border-purple {
    border-color: rgba(168, 85, 247, 0.5);
}

/* 响应式适配 - 平板/大屏 */
@media (min-width: 768px) {
    .talent-section {
        padding: 1.5rem 0;
    }

    .talent-header-title {
        font-size: 2.25rem;
    }

    .talent-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .talent-middle-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .talent-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .talent-bottom-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 响应式适配 - 手机端 */
@media (max-width: 767px) {
    .talent-main-img {
        height: 300px;
    }

    .talent-pyramid-arrow {
        border-left-width: 50px;
        border-right-width: 50px;
    }

    .talent-pyramid-arrow-bottom {
        border-left-width: 120px;
        border-right-width: 120px;
    }

    .talent-pyramid-top {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .talent-pyramid-bottom {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .talent-decor-right,
    .talent-decor-left {
        display: none;
    }
}

/* ============创新力量================= */
/* 外层主容器 */
.Innovation-section {
    padding: 1.5rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* 背景渐变模糊球 */
.Innovation-bg-blobs {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.Innovation-blob-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: linear-gradient(to bottom left, rgba(219, 234, 254, 0.5), transparent);
    border-radius: 50%;
    transform: translateY(-50%) translateX(50%);
}

.Innovation-blob-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(to top right, rgba(207, 250, 254, 0.5), transparent);
    border-radius: 50%;
    transform: translateY(50%) translateX(-50%);
}

/* 内容容器 */
.Innovation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

/* 标题区域 */
.Innovation-header {
    text-align: center;
    margin-bottom: 4rem;
}

.Innovation-header-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #dbeafe;
    color: #2563eb;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.Innovation-header-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.Innovation-header-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    margin: 0 auto 1.5rem;
}

.Innovation-header-desc {
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

/* 卡片网格 */
.Innovation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* 卡片项 */
.Innovation-card-item {
    opacity: 1;
    transform: none;
}

/* 卡片主体 */
.Innovation-card {
    position: relative;
    height: 420px;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.Innovation-card:hover .Innovation-card-img {
    transform: scale(1.1);
}

.Innovation-card:hover .Innovation-card-border {
    border-color: rgba(96, 165, 250, 0.5);
}

.Innovation-card:hover .Innovation-card-border-cyan {
    border-color: rgba(34, 211, 238, 0.5);
}

/* 卡片图片 */
.Innovation-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* 卡片渐变遮罩 */
.Innovation-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0f172a, rgba(15, 23, 42, 0.6), transparent);
}

/* 卡片内容区 */
.Innovation-card-content {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* 卡片图标容器 */
.Innovation-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.Innovation-icon-svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #ffffff;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* 卡片文字 */
.Innovation-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.Innovation-card-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

/* 卡片列表项 */
.Innovation-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.Innovation-list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.Innovation-list-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: #60a5fa;
}

.Innovation-list-dot-cyan {
    background-color: #22d3ee;
}

/* 卡片hover边框 */
.Innovation-card-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 1rem;
    transition: border-color 0.3s ease;
}

/* 响应式适配 */
@media (min-width: 768px) {
    .Innovation-header-title {
        font-size: 2.25rem;
    }

    .Innovation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .Innovation-section {
        padding: 4rem 0;
    }

    .Innovation-card {
        height: 380px;
    }
}

/* ============公司的力量================= */
/* 外层主容器 */
.strength-section {
    padding: 6rem 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* 背景图片层 */
.strength-bg-wrap {
    position: absolute;
    inset: 0;
}

.strength-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.005);
}

.strength-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.7), rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.8));
}

/* 背景渐变光晕 */
.strength-glow-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.strength-glow-blue {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    transform: scale(1.16);
}

.strength-glow-cyan {
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
    transform: scale(1.1);
}

/* 内容容器 */
.strength-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

/* 标题区域 */
.strength-header {
    text-align: center;
    margin-bottom: 4rem;
}

.strength-header-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(12px);
    color: #93c5fd;
    border-radius: 999px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.strength-header-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.strength-header-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    margin: 0 auto 1.5rem;
}

/* 描述文本 */
.strength-desc-wrap {
    margin-bottom: 4rem;
}

.strength-desc {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.75;
}

/* 四个能力卡片网格 */
.strength-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.strength-grid-item {
    opacity: 1;
    transform: none;
}

.strength-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.strength-card:hover {
    background: rgba(255, 255, 255, 0.2);
}

.strength-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.strength-icon-svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #ffffff;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.strength-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.strength-card-desc {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* 底部引言卡片 */
.strength-quote-wrap {
    opacity: 1;
    transform: none;
}

.strength-quote-card {
    background: linear-gradient(to right, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.2));
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.strength-quote-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.strength-quote-svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #22d3ee;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.strength-quote-text {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.75;
    font-style: italic;
}

/* 响应式适配 */
@media (min-width: 768px) {
    .strength-section {
        padding: 6rem 0;
    }

    .strength-header-title {
        font-size: 2.25rem;
    }

    .strength-desc {
        font-size: 1.25rem;
    }

    .strength-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .strength-quote-card {
        padding: 3rem;
    }

    .strength-quote-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .strength-section {
        padding: 4rem 0;
    }

    .strength-quote-card {
        padding: 1.5rem;
    }

    .strength-quote-text {
        font-size: 1.125rem;
    }
}

/* =================== 荣誉认可========================== */
.honor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 标题区域 */
.honor-header {
    text-align: center;
    margin-bottom: 3rem;
}

.honor-header-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #dbeafe;
    color: #2563eb;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.honor-header-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.honor-header-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    margin: 0 auto 1.5rem;
}

.honor-header-desc {
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

/* 轮播容器 */
.honor-carousel-wrap {
    position: relative;
}

.honor-carousel-overlay-top,
.honor-carousel-overlay-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 4rem;
    z-index: 10;
    pointer-events: none;
}

.honor-carousel-overlay-top {
    top: 0;
    background: linear-gradient(to bottom, #f9fafb, transparent);
}

.honor-carousel-overlay-bottom {
    bottom: 0;
    background: linear-gradient(to top, #ffffff, transparent);
}

/* 轮播轨道 */
.honor-carousel-track {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.honor-track-left {
    animation: honor-scroll-left 30s linear infinite;
}

.honor-track-right {
    animation: honor-scroll-right 35s linear infinite;
}

/* 单个荣誉卡片 */
.honor-card {
    flex-shrink: 0;
    width: 275px;
    cursor: pointer;
}

.honor-card-inner {
    position: relative;
    width: 279px;
    height: 200px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.honor-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.honor-card:hover .honor-card-img {
    transform: scale(1.1);
}

.honor-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
}

.honor-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #facc15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.honor-badge-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #854d0e;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.honor-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
}

.honor-card-title {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 动画定义 */
@keyframes honor-scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

@keyframes honor-scroll-right {
    0% {
        transform: translateX(calc(-50% - 1rem));
    }

    100% {
        transform: translateX(0);
    }
}

/* 响应式适配 */
@media (max-width: 767px) {
    .honor-section {
        padding: 3rem 0;
    }

    .honor-header-title {
        font-size: 1.5rem;
    }

    .honor-card {
        width: 160px;
    }

    .honor-card-inner {
        width: 160px;
        height: 160px;
    }

    .honor-carousel-track {
        gap: 1rem;
    }
}

@media (min-width: 767px) {
    .honor-section {
        padding: 3rem 0;
    }
}

/* =================== 企业合作========================== */
/* 外层主容器 */
.business-section {
    padding: 5rem 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* 内容容器 */
.business-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 标题区域 */
.business-header {
    text-align: center;
    margin-bottom: 3rem;
}

.business-header-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #e0f7ff;
    color: #06b6d4;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.business-header-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.business-header-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    margin: 0 auto 1.5rem;
}

.business-header-desc {
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

/* 轮播容器 */
.business-carousel-wrap {
    position: relative;
}

.business-carousel-overlay-top,
.business-carousel-overlay-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 4rem;
    z-index: 10;
    pointer-events: none;
}

.business-carousel-overlay-top {
    top: 0;
    background: linear-gradient(to bottom, #ffffff, transparent);
}

.business-carousel-overlay-bottom {
    bottom: 0;
    background: linear-gradient(to top, #ffffff, transparent);
}

/* 轮播轨道 */
.business-carousel-track {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.business-track-left {
    animation: business-scroll-left 40s linear infinite;
}

.business-track-right {
    animation: business-scroll-right 45s linear infinite;
}

/* 单个合作伙伴卡片 */
.business-card {
    flex-shrink: 0;
    width: 180px;
    cursor: pointer;
}

.business-card-inner {
    position: relative;
    width: 180px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.business-card:hover .business-card-inner {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #bfdbfe;
}

.business-card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.business-card:hover .business-card-img {
    opacity: 1;
}

/* 动画定义 */
@keyframes business-scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes business-scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* 响应式适配 */
@media (max-width: 767px) {
    .business-section {
        padding: 3rem 0;
    }

    .business-header-title {
        font-size: 1.5rem;
    }

    .business-card {
        width: 140px;
    }

    .business-card-inner {
        width: 140px;
        height: 80px;
    }

    .business-carousel-track {
        gap: 1rem;
    }
}