        /* 默认显示 PC 端内容 */
        .pc-only {
            display: block;
        }
        .mobile-only {
            display: none;
        }

        /* 关键帧动画 */
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        /* 滚动进入动画 */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in-up.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in-left.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

        /* =======================================================================
           全局组件样式
           ======================================================================= */

        /* 页面滚动进度条 */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #3C6EDD, #ffc107);
            z-index: 1002;
            transition: width 0.1s ease;
        }

        /* 图片懒加载效果 */
        .lazy-image {
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .lazy-image.loaded {
            opacity: 1;
        }

        /* =======================================================================
           交互效果组件
           ======================================================================= */

        /* 按钮微交互 */
        .btn-micro {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .btn-micro::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-micro:hover::before {
            width: 300px;
            height: 300px;
        }

        /* 卡片悬停效果 */
        .card-hover {
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .card-hover:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        /* 导航链接微交互 */
        .nav-link-micro {
            position: relative;
            overflow: hidden;
            transition: color 0.3s ease;
        }

        .nav-link-micro::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffc107;
            transition: width 0.3s ease;
        }

        .nav-link-micro:hover::after,
        .nav-link-micro.active::after {
            width: 100%;
        }

        .nav-link-micro:hover {
            color: #3C6EDD;
        }

        .nav-link-micro.active {
            color: #3C6EDD;
            font-weight: 500;
        }


        /* =======================================================================
           页面内容区域样式
           ======================================================================= */

        /* 关于我们部分 */
        .about-description {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 25px;
        }

        /* 团队人文部分 */
        .team-section {
            background-color: #192254;
            padding: 80px 0;
        }

        .team-section .container {
            background-color: white;
            padding: 40px;
        }

        .team-section .row {
            display: flex;
            justify-content: space-between;
        }

        .team-section .col-md-4 {
            flex: 0 0 31%;
            max-width: 31%;
        }

        .team-card {
            text-align: center;
            margin-bottom: 30px;
            overflow: hidden;
            border-radius: 5px;
        }

        .team-card img {
            width: 100%;
            height: 100%;
            border-radius: 5px;
            margin-bottom: 15px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        /*
        .team-card:hover img {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
         */

        .team-left {
            text-align: left;
        }

        .team-right {
            text-align: right;
        }

        /* 核心产品部分 */
        .product-card {
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            text-align: center;
        }

        .product-card img {
            height: 620px;
            border-radius: 5px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .product-card:hover img {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .product-left {
            text-align: left;
        }

        .product-right {
            text-align: right;
        }

        /* 晓葆寓意部分 */

        /* =======================================================================
           案例展示模块
           ======================================================================= */

        /* 案例展示容器 */
        .case-section {
            padding: 80px 0;
            background-color: #F6F6F6;
        }

        /* 案例组容器 */
        .case-group {
            margin-bottom: 60px;
        }

        .case-group:last-child {
            margin-bottom: 0;
        }

        /* 案例头部导航 */
        .case-header {
            margin-bottom: 40px;
        }

        .case-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .case-header-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .case-header-title {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin: 0;
            line-height: 1.2;
        }

        .case-play-icon {
            font-size: 12px;
            opacity: 0.8;
        }

        .case-header-right {
            flex-shrink: 0;
        }

        .case-more-link {
            font-size: 14px;
            color: #666;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border: 1px solid transparent;
            border-radius: 4px;
        }

        .case-more-link:hover {
            color: #3C6EDD;
            text-decoration: none;
            border-color: #3C6EDD;
            background-color: rgba(60, 110, 221, 0.05);
        }

        .case-more-link img {
            width: 12px;
            height: 12px;
        }


        /* 左侧案例卡片 */
        .case-left {
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .case-left:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        /* 左侧案例图片 */
        .case-image-left {
            width: 100%;
            height: 400px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .case-image-left img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .case-left:hover .case-image-left img {
            transform: scale(1.02);
        }

        /* 左侧案例内容 */
        .case-content-left {
            flex-grow: 1;
            display: flex;
            background-color: white;
            flex-direction: column;
        }

        .case-title-box {
            background: url('../../../img/img/case_box.png') no-repeat left center;
            background-size: contain;
            padding: 15px 30px;
            margin-bottom: 30px;
            margin-top: 30px;
            text-align: left;
            position: relative;
            width: 100%;
        }

        .case-title {
            font-size: 16px;
            font-weight: 600;
            color: #3C6EDD;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .case-description {
            flex-grow: 1;
            padding: 0 20px 30px 20px;
        }

        .case-subtitle {
            font-size: 16px;
            font-weight: 700;
            color: #4B4E4E;
            margin-bottom: 15px;
            text-align: left;
        }

        .case-text {
            font-size: 14px;
            line-height: 2;
            color: #4B4E4E;
            margin: 0;
            text-align: left;
        }

        /* 右侧案例卡片 */
        .case-right {
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            background: white;
        }

        .case-right:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        /* 右侧案例图片 */
        .case-image-top {
            background: white;
            text-align: center;
        }

        .case-image-top img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        /* 右侧蓝色文字区域 */
        .case-blue-section {
            background: #192254;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .case-title-box-blue {
            background: url('../../../img/img/case_box_white.png') no-repeat;
            background-size: contain;
            padding: 15px 20px;
            margin-bottom: 30px;
            margin-top: 30px;
            text-align: center;
            position: relative;
        }

        .case-title-blue {
            font-size: 16px;
            font-weight: 400;
            color: white;
            text-align: left;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .case-description-blue {
            flex-grow: 1;
            padding-left: 20px;
            padding-right: 20px;
            padding-bottom: 30px;
        }

        .case-subtitle-blue {
            font-size: 14px;
            font-weight: 600;
            color: white;
            margin-bottom: 16px;
            text-align: left;
        }

        .case-text-blue {
            font-size: 14px;
            font-weight: 300;
            line-height: 2;
            color: white;
            margin: 0;
            text-align: left;
        }



        /* =======================================================================
           荣誉资质模块
           ======================================================================= */

        /* 荣誉资质容器 */
        .honor-section {
            position: relative;
            padding: 0;
            overflow: hidden;
        }

        .honor-background {
            background: url('../../../img/img/honor_bg.jpg') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            min-height: 800px;
            position: relative;
            display: flex;
            align-items: center;
            padding: 80px 0;
        }

        .honor-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .honor-background .container {
            position: relative;
            z-index: 2;
        }

        /* 企业荣誉部分 */
        .honor-enterprise-section {
            margin-bottom: 80px;
            position: relative;
        }

        /* 企业荣誉整体毛玻璃背景 */
        .honor-enterprise-content {
            background: rgba(255, 255, 255, 0.3);
            /* backdrop-filter: blur(10px); */
            margin: 0 auto;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        /* 标题和按钮在一行显示 */
        .honor-title-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
            padding: 0 15px;
        }

      

        .honor-navigation {
            display: flex;
            gap: 15px;
        }

        .honor-enterprise-header {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 0;
        }

        .enterprise-title {
            font-size: 24px;
            font-style: italic;
            font-weight: 600;
            color: #333;
            margin: 0;
            text-align: center;
            width: 100%;
            padding-top: 30px;
        }

        .honor-nav-btn {
            width: 40px;
            height: 40px;
            border: 2px solid rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.5);
            color: #333;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .honor-nav-btn:hover {
            background: rgba(255, 255, 255, 0.5);
            border-color: rgba(0, 0, 0, 0.3);
            transform: scale(1.05);
        }

        .honor-nav-btn:active {
            transform: scale(0.95);
        }

        /* 企业荣誉证书展示 - 滚动容器 */
        .honor-certificates-wrapper {
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .honor-certificates-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
            width: 200%;
            /* 容纳两个容器 */
        }

        .honor-certificates-container {
            display: flex;
            gap: 60px;
            padding: 60px 15px 35px 15px;
            justify-content: center;
            width: 50%;
            /* 每个容器占轨道的50% */
            flex-shrink: 0;
            flex-wrap: nowrap;
            overflow: hidden;
        }

        .honor-certificate {
            flex: 0 0 auto;
            width: 200px;
            text-align: center;
            background: transparent;
            border-radius: 0;
            padding: 0;
            box-shadow: none;
            transition: all 0.3s ease;
        }

        .honor-certificate:hover {
            transform: translateY(-10px);
        }

        .honor-certificate img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 0;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        /* 圆形图片样式 */
        .honor-certificate img[src*="honor_6"],
        .honor-certificate img[src*="honor_7"],
        .honor-certificate img[src*="honor_8"] {
            border-radius: 50%;
            width: 120px;
            height: 120px;
            margin: 0 auto 15px;
            display: block;
        }

        /* 矩形图片样式 */
        .honor-certificate img[src*="honor_1"],
        .honor-certificate img[src*="honor_2"],
        .honor-certificate img[src*="honor_3"],
        .honor-certificate img[src*="honor_4"],
        .honor-certificate img[src*="honor_5"],
        .honor-certificate img[src*="honor_9"] {
            border-radius: 8px;
            width: 100%;
            height: 120px;
        }

        .honor-certificate:hover img {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .certificate-name {
            font-size: 12px;
            line-height: 1.4;
            color: #333;
            margin: 0;
            font-weight: 500;
            text-align: center;
        }

        /* 科研成果部分 */
        .honor-research-section {
            margin-top: 80px;
            background: rgba(255, 255, 255, 0.3);
            /* backdrop-filter: blur(10px); */
            margin: 0 auto;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .research-title {
            font-size: 32px;
            font-weight: 600;
            color: #333;
            text-align: center;
            margin-bottom: 80px;
            text-shadow: none;
        }

        .research-achievements {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin: 30px auto 30px auto;
            height: 580px;
        }

        .achievement-item {
            position: absolute;
            text-align: center;
            transition: transform 0.3s ease;
        }

        /* 左上角 - 专利 */
        .achievement-item.patents {
            top: 0;
            left: 0;
            width: 350px;
            height: 310px;
        }

        /* 右上角 - 行业权威荣誉 */
        .achievement-item.authority {
            top: 0;
            right: 0;
            width: 300px;
            height: 310px;
        }

        /* 下方中央 - 软件著作权 */
        .achievement-item.software {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 545px;
        }

        .achievement-item:hover {
            transform: translateY(-5px);
        }

        .achievement-item.software:hover {
            transform: translateX(-50%) translateY(-5px);
        }

        .achievement-number {
            font-size: 60px;
            font-style: italic;
            font-weight: bold;
            color: #3C6EDD;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            line-height: 1;
        }

        .achievement-label {
            font-size: 20px;
            color: #333;
            font-weight: 500;
        }

        .achievement-visual {
            position: relative;
            transition: all 0.3s ease;
        }


        .achievement-visual img {
            width: 100%;
            height: auto;
        }

        /* 专利组合图片 - 根据截图调整布局 */
        .patents .achievement-visual {

            position: absolute;
            margin-left: 72px;
            width: 360px;
            bottom: 5px;
        }

        .patents .achievement-visual img {
            height: 100%;
            object-fit: cover;
            max-width: 360px;
        }

        /* 调整专利的数字和标签位置 */
        .patents .achievement-number {
            position: absolute;
            bottom: 40px;
            left: 0;
            z-index: 2;
        }

        .patents .achievement-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: left;
            z-index: 2;
        }

        /* 荣誉单图 - 根据截图调整布局 */
        .authority .achievement-visual {
            height: 260px;
            display: flex;
            align-items: flex-start;
            position: relative;
            margin-left: 35px;
        }

        .authority .achievement-visual img {
            max-width: 195px;
            height: auto;
            object-fit: contain;
        }

        /* 调整权威荣誉的数字和标签位置 */
        .authority .achievement-number {
            position: absolute;
            bottom: 40px;
            left: -20px;
            z-index: 2;
        }

        .authority .achievement-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: left;
            z-index: 2;
        }

        /* 软件著作权组合图片 - 根据截图调整布局 */
        .software .achievement-visual {

            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            position: relative;
            padding-left: 135px;
            padding-bottom: 5px;
        }

        .software .achievement-visual img {
            height: 100%;
            object-fit: cover;
            max-width: 420px;
            width: 420px;
        }

        /* 调整软件著作权的数字和标签位置 */
        .software .achievement-number {
            position: absolute;
            bottom: 40px;
            left: 0;
            z-index: 2;
        }

        .software .achievement-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: left;
            z-index: 2;
        }



        /* =======================================================================
           导航栏样式
           ======================================================================= */

        /* PC端导航栏 */
        .nav-links a {
            color: #333;
            margin: 0 20px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            padding: 10px 0;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #3C6EDD;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #FFD700;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* Ensure no conflicts with mobile navigation */
        .nav-links.d-md-none a::after {
            display: none !important;
        }

        /* PC导航栏滚动悬浮置顶效果 */
        @media (min-width: 769px) {
            .top-nav {
                transition: all 0.3s ease;
                background-color: white;
                padding: 15px 0;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
                position: relative;
                z-index: 1001;
            }

            .top-nav.sticky {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                background-color: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
                padding: 10px 0;
            }

            .top-nav.sticky .logo img {
                height: 30px;
                transition: height 0.3s ease;
            }

            /* 为固定导航栏后的内容添加顶部间距 */
            body.nav-sticky .hero-section {
                margin-top: 60px;
            }

            /* 为晓葆星球页面的第一个内容区域添加顶部间距 */
            body.nav-sticky .team-section {
                margin-top: 60px;
            }
        }

        /* 为左边和右边的团队卡片添加特殊对齐样式 */
        .team-left {
            text-align: left;
        }

        .team-right {
            text-align: right;
        }

        /* 晓葆寓意部分 */
        .meaning-blocks {
            margin-top: 40px;
        }

        /* PC端无间距布局 - 让背景图片精密贴合 */
        @media (min-width: 769px) {
            .meaning-blocks {
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .meaning-blocks .col-md-4 {
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }

        .meaning-card {
            position: relative;
            height: 720px;
            overflow: hidden;
            margin-bottom: 30px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* PC端完全移除圆角和间距，实现无缝拼接 */
        @media (min-width: 769px) {
            .meaning-blocks .col-md-4 .meaning-card {
                border-radius: 0 !important;
                margin-bottom: 30px;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            /* 强制确保容器无间距 */
            .meaning-blocks .col-md-4 {
                width: 33.333333% !important;
                max-width: 33.333333% !important;
                flex: 0 0 33.333333% !important;
            }
        }



        .meaning-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            padding: 30px 50px 50px;
            color: white;
            transition: background 0.3s ease;
        }



        .meaning-content {
            position: relative;
            z-index: 2;
        }

        .meaning-title {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 5px;
            color: #FFFFFF;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .meaning-text {
            font-size: 14px;
            line-height: 2;
            color: white;
            font-weight: 300;
            margin: 0;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .meaning-summary {
            text-align: center;
        }

        .meaning-summary-text {
            font-size: 18px;
            line-height: 1.8;
            color: #666565;
            max-width: 800px;
            margin: 0 auto;
            padding: 15px 30px;

        }

        /* 核心产品部分 */
        .product-card {
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            text-align: center;
        }

        .product-card img {
            height: 620px;
            border-radius: 5px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .product-card:hover img {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        /* 发展历程部分 */
        .timeline-section {
            position: relative;
            padding: 0;
            background: #f8f9fa;
        }

        .timeline-background {
            position: relative;
            height: 320px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            background: url('../../../img/time_bg.jpg') no-repeat center center;
            background-size: cover;
        }

        .timeline-bg-image {
            display: none;
            /* 隐藏单独的背景图片 */
        }

        .timeline-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

            z-index: 2;
        }

        .timeline-header {
            position: relative;
            z-index: 3;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .timeline-title {
            font-size: 48px;
            font-weight: bold;
            color: white;
            text-align: center;
            margin-bottom: 60px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .timeline-nodes {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .timeline-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: rgba(255, 255, 255, 0.6);
            transform: translateY(-50%);
            z-index: 1;
        }

        .timeline-node {
            position: relative;
            z-index: 2;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0;
            padding: 0 5px;
            text-decoration: none;
        }

        .node-circle {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(192, 192, 192);
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            position: relative;
            top: 50%;
            margin-bottom: 30px;
        }

        .timeline-node.active .node-circle {
            background: white;
            box-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.1);
            transform: scale(1.1);
        }

        .timeline-node:hover .node-circle {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(255, 255, 255, 1);
        }

        .node-year {
            font-size: 16px;
            font-weight: bold;
            color: white;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            margin-bottom: 5px;
            /* 与圆点的距离 */
        }

        .timeline-node.active .node-year {
            font-size: 18px;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        .timeline-content {
            padding: 30px 0;
            background: #f8f9fa;
            overflow: hidden;
            /* 隐藏横向滚动条 */
        }

        .timeline-cards {
            position: relative;
            width: 100%;
            height: 400px;
            /* 固定高度 */
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .timeline-cards-container {
            display: flex;
            gap: 30px;
            transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
            align-items: center;
            padding: 0 50px;
        }

        .timeline-card {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            min-width: 800px;
            max-width: 800px;
            width: 800px;
            flex-shrink: 0;
            transform: scale(0.8);
            opacity: 0.6;
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .timeline-card.active {
            transform: scale(1);
            opacity: 1;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            min-width: 800px;
            max-width: 800px;
            width: 800px;
            height: 300px;
            z-index: 2;
        }

        .card-year {
            font-size: 36px;
            font-weight: bold;
            color: #333;
            text-align: left;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .timeline-card.active .card-year {
            font-size: 42px;
            margin-bottom: 25px;
        }

        .card-year::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #3C6EDD, #FFD700);
            border-radius: 2px;
        }

        .timeline-card.active .card-year::after {
            width: 80px;
            height: 4px;
        }

        .card-content {
            text-align: left;
            max-height: 200px;
            overflow-y: auto;
        }

        .timeline-card.active .card-content {
            max-height: 250px;
        }

        .card-content p {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 15px;
            position: relative;
            padding-left: 20px;
        }

        .timeline-card.active .card-content p {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 18px;
            padding-left: 25px;
        }

        .card-content p::before {
            content: '•';
            position: absolute;
            left: 0;
            top: 0;
            color: #3C6EDD;
            font-weight: bold;
            font-size: 16px;
        }

        .timeline-card.active .card-content p::before {
            font-size: 18px;
        }

        .card-content p:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 480px) {
            .timeline-background {
                height: 280px;
            }

            .timeline-title {
                font-size: 28px;
                margin-bottom: 60px;
            }

            .timeline-nodes {
                gap: 0;
                padding: 0 10px;
                justify-content: flex-start;
                min-width: 100%;
                width: 100%;
                overflow-x: auto;
                overflow-y: hidden;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .timeline-node {
                flex: 0 0 auto;
                min-width: 40px;
                padding: 0 1px;
                margin-right: 2px;
            }

            .timeline-node:last-child {
                margin-right: 0;
            }

            .node-circle {
                width: 12px;
                height: 12px;
                margin: 0 auto 18px auto;
            }

            .node-year {
                font-size: 11px;
                white-space: nowrap;
                text-align: center;
            }

            .timeline-node.active .node-year {
                font-size: 12px;
            }

            .timeline-cards {
                height: 280px;
            }

            .timeline-cards-container {
                gap: 15px;
                padding: 0 15px;
            }

            .timeline-card {
                min-width: calc(100vw - 40px);
                max-width: calc(100vw - 40px);
                width: calc(100vw - 40px);
                height: 220px;
                padding: 20px 15px;
                margin: 0 10px;
            }

            .timeline-card.active {
                min-width: calc(100vw - 40px);
                max-width: calc(100vw - 40px);
                width: calc(100vw - 40px);
                height: 240px;
            }

            .card-year {
                font-size: 24px;
                margin-bottom: 15px;
            }

            .timeline-card.active .card-year {
                font-size: 28px;
            }

            .card-content {
                max-height: 130px;
            }

            .timeline-card.active .card-content {
                max-height: 150px;
            }

            .card-content p {
                font-size: 12px;
                line-height: 1.4;
                margin-bottom: 10px;
                padding-left: 15px;
            }

            .timeline-card.active .card-content p {
                font-size: 13px;
                line-height: 1.5;
                margin-bottom: 12px;
                padding-left: 18px;
            }
        }

        /* 专门针对375px及更小屏幕的优化 */
        @media (max-width: 375px) {
            .timeline-background {
                height: 280px;
            }

            .timeline-title {
                font-size: 26px;
                margin-bottom: 55px;
            }

            .timeline-nodes {
                gap: 0;
                padding: 0 8px;
                justify-content: flex-start;
                min-width: 100%;
                width: 100%;
                overflow-x: auto;
                overflow-y: hidden;
                scrollbar-width: none;
                -ms-overflow-style: none;
                padding-bottom: 5px;
            }

            .timeline-nodes::-webkit-scrollbar {
                display: none;
            }

            .timeline-node {
                flex: 0 0 auto;
                min-width: 38px;
                max-width: 38px;
                padding: 0 1px;
                margin-right: 1px;
            }

            .timeline-node:last-child {
                margin-right: 0; /* 移除额外的右边距 */
            }

            .node-circle {
                width: 10px;
                height: 10px;
                margin: 0 auto 12px auto;
            }

            .node-year {
                font-size: 10px;
                white-space: nowrap;
                text-align: center;
                line-height: 1.2;
            }

            .timeline-node.active .node-year {
                font-size: 11px;
                font-weight: bold;
            }

            .timeline-node.active .node-circle {
                transform: scale(1.3);
                background: white;
                box-shadow: 0 0 12px rgba(255, 255, 255, 1);
            }

            .timeline-cards {
                height: 270px;
            }

            .timeline-cards-container {
                gap: 12px;
                padding: 0 12px;
            }

            .timeline-card {
                min-width: calc(100vw - 35px);
                max-width: calc(100vw - 35px);
                width: calc(100vw - 35px);
                height: 210px;
                padding: 18px 12px;
                margin: 0 8px;
                border-radius: 8px;
            }

            .timeline-card.active {
                min-width: calc(100vw - 35px);
                max-width: calc(100vw - 35px);
                width: calc(100vw - 35px);
                height: 230px;
            }

            .card-year {
                font-size: 22px;
                margin-bottom: 12px;
            }

            .timeline-card.active .card-year {
                font-size: 26px;
            }

            .card-content {
                max-height: 120px;
            }

            .timeline-card.active .card-content {
                max-height: 140px;
            }

            .card-content p {
                font-size: 11px;
                line-height: 1.4;
                margin-bottom: 8px;
                padding-left: 14px;
            }

            .timeline-card.active .card-content p {
                font-size: 12px;
                line-height: 1.5;
                margin-bottom: 10px;
                padding-left: 16px;
            }
        }

        /* 移动端栅格系统优化 - 参考index.html样式 */
        @media (max-width: 768px) {

            /* 荣誉资质模块移动端 */
            .honor-background {
                background-attachment: scroll;
                /* 移动端取消固定背景 */
                min-height: 600px;
                padding: 60px 0;
            }



            .honor-enterprise-section {
                margin-bottom: 60px;
            }

            /* 移动端隐藏切换按钮 */
            .honor-navigation {
                display: none;
            }

            .honor-title-row {
                justify-content: left;
                margin-bottom: 40px;
                text-align: left;
            }

            .honor-enterprise-header {
                margin-bottom: 20px;
            }

            .enterprise-title,
            .research-title {
                font-size: 20px;
            }

            .honor-enterprise-content {
                padding: 30px 15px;
                margin: 0 10px;
                border-radius: 15px;
            }

            /* 移动端禁用轮播，改为网格布局 */
            .honor-certificates-wrapper {
                overflow: visible;
            }

            .honor-certificates-track {
                display: block;
                width: 100%;
                transition: none;
                transform: none !important;
            }

            .honor-certificates-container {
                display: none;
                /* 隐藏原有容器 */
            }

            /* 新的移动端网格布局 */
            .honor-certificates-grid {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 15px 20px !important;
                padding: 0 15px !important;
                justify-items: center !important;
                align-items: start !important;
                width: 100% !important;
            }

            .honor-certificates-grid .honor-certificate {
                width: 100% !important;
                max-width: 150px !important;
                text-align: center !important;
                background: transparent !important;
                box-shadow: none !important;
                margin-bottom: 10px !important;
                display: flex !important;
                flex-direction: column !important;
                justify-content: space-between !important;
                height: 140px !important;
            }

            .honor-certificates-grid .honor-certificate img {
                height: 100px !important;
                width: 100% !important;
                object-fit: cover !important;
                border-radius: 0 !important;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
            }

            /* 移动端圆形图片样式 */
            .honor-certificates-grid .honor-certificate img[src*="honor_6"],
            .honor-certificates-grid .honor-certificate img[src*="honor_7"],
            .honor-certificates-grid .honor-certificate img[src*="honor_8"] {
                border-radius: 50% !important;
                width: 100px !important;
                height: 100px !important;
                margin: 0 auto !important;
                display: block !important;
            }

            /* 移动端矩形图片样式 */
            .honor-certificates-grid .honor-certificate img[src*="honor_1"],
            .honor-certificates-grid .honor-certificate img[src*="honor_2"],
            .honor-certificates-grid .honor-certificate img[src*="honor_3"],
            .honor-certificates-grid .honor-certificate img[src*="honor_4"],
            .honor-certificates-grid .honor-certificate img[src*="honor_5"],
            .honor-certificates-grid .honor-certificate img[src*="honor_9"] {
                border-radius: 8px !important;
                width: 100% !important;
                height: 100px !important;
            }

            .honor-certificates-grid .certificate-name {
                font-size: 11px !important;
                line-height: 1.3 !important;
                margin-top: auto !important;
                word-break: break-word !important;
                color: #333 !important;
            }

            /* 移除第5个证书的特殊居中样式，让其正常按2列显示 */

            .research-title {
                font-size: 28px;
                margin-bottom: 60px;
            }

            /* 移动端专用科研成果布局样式 - 毛玻璃效果 */
            .honor-research-section-mobile {
                background: rgba(255, 255, 255, 0.3);
                backdrop-filter: blur(10px);
                margin: 20px auto;
                max-width: 95%;
                border-radius: 24px;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
                position: relative;
                padding: 50px 0;
                overflow: hidden;
            }

            .honor-research-section-mobile::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
                z-index: 1;
                border-radius: 24px;
            }

            .honor-research-section-mobile .col-md-12 {
                position: relative;
                z-index: 2;
            }

            .mobile-research-achievements {
                width: 100%;
                max-width: 1000px;
                margin: 30px 0 0 0;
                height: auto;
                display: flex;
                flex-direction: column;
                gap: 30px;
                align-items: center;
                padding: 0 20px;
            }

            /* 移动端成果卡片行布局 */
            .mobile-achievement-row {
                display: flex;
                justify-content: space-between;
                gap: 15px;
                width: 100%;
                max-width: 100%;
            }

            .mobile-achievement-row-single {
                display: flex;
                justify-content: center;
                width: 100%;
                max-width: 100%;
            }

            .mobile-achievement-item {
                padding: 20px 15px;
                transition: all 0.3s ease;
                text-align: left;
                position: relative;
                z-index: 2;
                flex: 1;
                min-width: 0; /* 防止flex项目溢出 */
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

            /* 第一行中的两个卡片等宽分布 */
            .mobile-achievement-row .mobile-achievement-item {
                width: calc(50% - 7.5px);
                max-width: none;
            }

            /* 第二行中的单个卡片居中，保持原有最大宽度 */
            .mobile-achievement-row-single .mobile-achievement-item {
                width: 100%;
                max-width: 350px;
                flex: none;
                align-items: flex-start;
                margin: 0 auto;
            }

            .mobile-achievement-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            }

            .mobile-achievement-visual {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                height: auto;
                margin-bottom: 12px;
                width: 100%;
            }

            .mobile-achievement-text {
                display: flex;
                justify-content: flex-start;
                align-items: baseline;
                gap: 6px;
                flex-wrap: wrap;
                width: 100%;
            }

            .mobile-achievement-number {
                font-size: 28px;
                font-style: italic;
                font-weight: bold;
                color: #3C6EDD;
                line-height: 1.2;
            }

            .mobile-achievement-label {
                font-size: 16px;
                color: #333;
                font-weight: 500;
                line-height: 1.2;
            }

            .mobile-achievement-visual img {
                max-width: 100%;
                max-height: 120px;
                width: auto;
                height: auto;
                object-fit: contain;
            }

            /* 整体布局优化 */
            body {
                padding-top: 60px;
                /* 为固定导航留出空间 */
            }

            /* 晓葆寓意部分移动端优化 */
            .meaning-blocks {
                margin-top: 30px;
            }

            .meaning-blocks .col-md-4 {
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 30px;
                padding: 0 15px !important;
                /* 移动端保持两边间距 */
            }

            .meaning-card {
                height: 280px;
                margin-bottom: 0;
                border-radius: 12px;
                width: 100%;
            }

            .meaning-overlay {
                padding: 20px 25px 25px;
            }

            .meaning-title {
                font-size: 16px;
                margin-bottom: 12px;
            }

            .meaning-text {
                font-size: 13px;
                line-height: 1.5;
            }

            /* 移动端晓葆寓意专用样式 */
            .meaning-blocks-mobile {
                margin-top: 30px;
            }

            .meaning-card-mobile {
                position: relative;
                height: 360px;
                overflow: hidden;
                margin-bottom: 20px;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

            .meaning-overlay-mobile {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
                padding: 20px 25px 25px;
                color: white;
            }

            .meaning-content-mobile {
                position: relative;
                z-index: 2;
            }

            .meaning-title-mobile {
                font-size: 16px;
                font-weight: 600;
                margin-bottom: 12px;
                color: #FFFFFF;
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            }

            .meaning-text-mobile {
                font-size: 13px;
                line-height: 1.8;
                color: white;
                font-weight: 300;
                margin: 0;
            }

            .meaning-mobile-container {
                display: flex;
                flex-direction: column;
                gap: 0;
            }

            .meaning-mobile-image {
                width: 100%;
                height: auto;
                display: block;
                border: none;
                border-radius: 0;
                margin: 10px 0;
                padding: 0;
            }


            .meaning-summary .col-md-12 {
                padding: 0 15px;
                /* 保持两边间距 */
            }

            .meaning-summary-text {
                font-size: 14px;
                line-height: 1.8;
                text-align: left;
                padding: 0;
                margin: 0;
            }

            /* 团队人文部分移动端优化 - 完全参考index.html */
            .team-section {
                background-color: transparent;
                padding: 0;
                margin-top: 60px;
            }

            .team-section .container {
                padding: 20px 15px;
                /* 参考index.html的间距 */
                background-color: white;
                /* 保持白色背景 */
            }

            .team-section .row {
                display: block;
            }

            .team-section .col-md-3,
            .team-section .col-md-9,
            .team-section .col-md-4,
            .team-section .col-md-12 {
                display: block;
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 10px;
            }

            .team-card {
                margin-bottom: 40px;
                text-align: center;
            }

            .team-left,
            .team-right {
                text-align: center;
            }

            .team-card img {
                height: auto;
                max-width: 80%;
                margin-bottom: 20px;
            }


            .content-title {
                font-size: 18px;
                line-height: 1.8;
                margin-bottom: 15px;
                text-align: left;
            }

            .about-description {
                font-size: 13px;
                line-height: 2;
                margin-bottom: 20px;
                text-align: left;
            }

            /* 发展历程部分移动端进一步优化 */
            .timeline-content {
                padding: 30px 0;
            }

            .timeline-card {
                padding: 25px 15px;
                margin: 0 15px;
                border-radius: 8px;
            }

            .card-year {
                font-size: 28px;
                margin-bottom: 20px;
            }

            .card-content p {
                font-size: 14px;
                line-height: 1.5;
                padding-left: 18px;
                margin-bottom: 12px;
            }
        }


        @media (max-width: 480px) {

            /* 荣誉资质模块超小屏 */
            .honor-background {
                min-height: 500px;
                padding: 40px 0;
            }



            .enterprise-title,
            .research-title {
                font-size: 28px;
            }

            .honor-navigation {
                gap: 10px;
            }

            .honor-nav-btn {
                width: 35px;
                height: 35px;
            }

            .honor-enterprise-content {
                padding: 25px 10px;
                margin: 0 5px;
                border-radius: 12px;
            }

            /* 超小屏幕网格优化 */
            .honor-certificates-grid {
                gap: 10px 15px !important;
                padding: 0 10px !important;
            }

            .honor-certificates-grid .honor-certificate {
                max-width: 130px !important;
                height: 125px !important;
            }

            .honor-certificates-grid .honor-certificate img {
                height: 85px !important;
            }

            /* 超小屏幕圆形图片样式 */
            .honor-certificates-grid .honor-certificate img[src*="honor_6"],
            .honor-certificates-grid .honor-certificate img[src*="honor_7"],
            .honor-certificates-grid .honor-certificate img[src*="honor_8"] {
                width: 85px !important;
                height: 85px !important;
            }

            /* 超小屏幕矩形图片样式 */
            .honor-certificates-grid .honor-certificate img[src*="honor_1"],
            .honor-certificates-grid .honor-certificate img[src*="honor_2"],
            .honor-certificates-grid .honor-certificate img[src*="honor_3"],
            .honor-certificates-grid .honor-certificate img[src*="honor_4"],
            .honor-certificates-grid .honor-certificate img[src*="honor_5"],
            .honor-certificates-grid .honor-certificate img[src*="honor_9"] {
                height: 85px !important;
            }

            .honor-certificates-grid .certificate-name {
                font-size: 10px !important;
                line-height: 1.2 !important;
                margin-top: auto !important;
            }

            /* 超小屏幕也移除第5个证书的特殊样式 */

            /* 移动端科研成果超小屏幕优化 */
            .honor-research-section-mobile {
                padding: 40px 0;
                margin: 15px auto;
                max-width: 98%;
                border-radius: 20px;
            }

            .mobile-research-achievements {
                gap: 25px;
                padding: 0 15px;
            }

            .mobile-achievement-item {
                padding: 25px 20px;
                border-radius: 16px;
                max-width: 320px;
            }

            .mobile-achievement-number {
                font-size: 28px;
            }

            .mobile-achievement-label {
                font-size: 18px;
            }

       

            .mobile-achievement-visual img {
                max-width: 300px;
            }

            /* 超小屏幕设备优化 */
            .meaning-blocks .col-md-4 {
                padding: 0 15px !important;
                /* 超小屏幕保持间距 */
                margin-bottom: 25px;
            }

            .meaning-card {
                height: 250px;
                border-radius: 10px;
            }

            .meaning-overlay {
                padding: 15px 20px 20px;
            }

            .meaning-title {
                font-size: 15px;
                margin-bottom: 10px;
            }

            .meaning-text {
                font-size: 12px;
                line-height: 1.4;
            }

            /* 超小屏幕移动端晓葆寓意样式 */
            .meaning-blocks-mobile {
                margin-top: 25px;
            }

            .meaning-card-mobile {
                height: 360px;
                margin-bottom: 18px;
            }

            .meaning-overlay-mobile {
                padding: 15px 20px 20px;
            }

            .meaning-title-mobile {
                font-size: 15px;
                margin-bottom: 10px;
            }

            .meaning-text-mobile {
                font-size: 12px;
                line-height: 1.8;
            }

            .meaning-mobile-container {
                gap: 0;
            }

            .meaning-mobile-image {
                width: 100%;
                height: auto;
                border-radius: 0;
            }

            .meaning-summary .col-md-12 {
                padding: 0 12px;
                /* 保持间距 */
            }

            .meaning-summary-text {
                font-size: 14px;
            }

          

            .content-title {
                font-size: 18px;
                margin-bottom: 12px;
                text-align: left;
            }

            .about-description {
                font-size: 13px;
                line-height: 2;
            }

            .team-section .container {
                padding: 15px 12px;
                /* 保持间距 */
            }

            .team-card {
                margin-bottom: 8px;
            }

            .team-card img {
                margin-bottom: 0px;
                max-width: 100%;
                /* 稍微调整图片大小 */
            }

            /* 超小屏幕成果卡片优化 */
            .mobile-achievement-row {
                gap: 50px;
            }

            .mobile-achievement-row .mobile-achievement-item {
                width: calc(50% - 5px);
                padding: 15px 10px;
            }

            .mobile-achievement-row-single .mobile-achievement-item {
                padding: 15px 20px;
                max-width: 320px;
            }

            .mobile-achievement-visual img {
                max-height: 100px;
            }

            .mobile-achievement-number {
                font-size: 24px;
            }

            .mobile-achievement-label {
                font-size: 14px;
            }

            /* Footer移动端样式 - 已提取到main.css */
        }

        /* 移动端晓葆人文轮播样式 */
        .team-carousel-mobile {
            position: relative;
            margin: 0 5px;
            text-align: center;
        }
        @media (min-width: 768px) {
            .team-carousel-mobile {
                display: none;
            }
        }

        .team-carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
            margin: 0 auto;
            text-align: center;
            overflow: hidden;
            border-radius: 8px;
        }

        .owl-dots{
            display: none;
        }

        .team-carousel-item.active {
            opacity: 1;
            transform: scale(1);
            z-index: 3;
        }

        .team-carousel-item.next {
            opacity: 0.7;
            transform: scale(0.95) translateX(10px);
            z-index: 2;
        }

        .team-carousel-item.prev {
            opacity: 0.5;
            transform: scale(0.9) translateX(-10px);
            z-index: 1;
        }

        .team-carousel-mobile .team-card {
            width:100%;
            border-radius: 8px;
        }

        .team-carousel-mobile .team-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .team-carousel-indicators {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 8px;
        }

        .team-carousel-indicators .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .team-carousel-indicators .indicator.active {
            background-color: #ffc107;
            transform: scale(1.2);
        }