  /* 主容器，宽度1400px，居中 */
        .sl-company-intro-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        /* 视频区域 */
        .sl-intro-media-box {
            width: 100%;
            border-radius: 46px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
            background: #000;
            cursor: pointer;
        }
        .sl-intro-media-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }
        /* 视频样式 */
        .sl-intro-video {
            width: 100%;
            height: auto;
            display: block;
            outline: none;
        }
        /* 中间播放按钮 */
        .sl-video-play-btn {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.92);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 9;
        }
        .sl-video-play-btn:hover {
            transform: translate(-50%, -50%) scale(1.12);
            background: #fff;
        }
        /* 播放图标三角形 */
        .sl-play-icon {
            width: 0;
            height: 0;
            border-top: 16px solid transparent;
            border-bottom: 16px solid transparent;
            border-left: 26px solid #007bff;
            margin-left: 5px;
        }
        /* 播放时隐藏按钮 */
        .sl-video-playing .sl-video-play-btn {
            opacity: 0;
            visibility: hidden;
        }

        /* 文字内容区域 */
        .sl-intro-text-container {
            /* background-color: #f8f9fa; */
            padding: 30px 0;
            border-radius: 16px;
            /* box-shadow: 0 2px 15px rgba(0,0,0,0.05); */
            line-height: 1.8;
        }
        .sl-intro-paragraph {
            margin-bottom: 20px;
            font-size: 16px;
            color: #444;
            text-align: justify;
            opacity: 0;
            transform: translateY(20px);
            animation: slFadeInUp 0.8s ease forwards;
        }
        .sl-intro-paragraph:nth-child(2) { animation-delay: 0.2s; }
        .sl-intro-paragraph:nth-child(3) { animation-delay: 0.4s; }
        .sl-intro-paragraph:nth-child(4) { animation-delay: 0.6s; }
        @keyframes slFadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* 响应式适配 */
        @media (max-width: 1440px) {
            .sl-company-intro-wrapper {
                padding: 30px 20px;
            }
        }
        @media (max-width: 768px) {
            .sl-company-intro-wrapper {
                padding: 20px 15px;
            }
            .sl-intro-text-container {
                padding: 20px;
            }
            .sl-intro-paragraph {
                font-size: 15px;
            }
            .sl-video-play-btn {
                width: 60px;
                height: 60px;
            }
            .sl-play-icon {
                border-top: 12px solid transparent;
                border-bottom: 12px solid transparent;
                border-left: 18px solid #007bff;
            }
        }
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		   /* 数据统计部分 - 去掉上下横线 */
        .sunli-stats-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0;
            /* margin: 50px 0; */
            padding: 30px 0;
            /* 去掉上下边框 */
            /* border-top: 1px solid #eee; */
            /* border-bottom: 1px solid #eee; */
        }

        .sunli-stat-item {
            flex: 1;
            min-width: 160px;
            text-align: center;
            transition: transform 0.3s ease;
            position: relative;
            padding: 0 10px;
        }

        /* 右侧浅色竖线 */
        .sunli-stat-item:not(:last-child)::after {
            content: "";
            width: 1px;
            height: 50px;
            background-color: #ddd;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        .sunli-stat-item:hover {
            transform: translateY(-5px);
        }

        .sunli-stat-icon {
            color: #ff8a00;
            font-size: 24px;
            margin-bottom: 10px;
        }

        /* 数字 + 加号 + 单位 统一排版 */
        .sunli-stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #262626;
            margin-bottom: 5px;
            position: relative;
            display: inline-flex;
            align-items: baseline;
            gap: 2px;
        }

        /* +号 和数字同大小、同颜色 */
        .sunli-stat-plus {
            font-size: 36px;
            font-weight: 700;
            color: #262626;
        }

        /* 右侧小字单位 */
        .sunli-stat-unit {
            font-size: 15px;
            color: #888;
            font-weight: 400;
            margin-left: 2px;
        }

        .sunli-stat-label {
            font-size: 16px;
            color: #666666;
            text-transform: uppercase;
        }

        /* 了解详情按钮 */
        .sunli-detail-btn {
            display: inline-block;
            background-color: #ff8a00;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 20px 0;
        }

        .sunli-detail-btn:hover {
            background-color: #e07a00;
            box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
            transform: translateY(-2px);
        }

        /* 图片部分 */
        .sunli-image-wrapper {
            margin-top: 40px;
            /* border-radius: 20px; */
            overflow: hidden;
        }

   .sunli-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            transition: transform 0.8s ease; /* 缓慢放大动画 */
            cursor: pointer;
        }

        /* 鼠标悬停图片放大 */
        .sunli-image-wrapper:hover img {
            transform: scale(1.08);
        }
        /* 响应式适配 */
        @media (max-width: 1024px) {
            .sunli-stat-item {
                min-width: 140px;
            }
        }

        @media (max-width: 768px) {
            .sunli-stats-wrapper {
                justify-content: center;
                gap: 20px 0;
            }
            .sunli-stat-item {
                flex: 0 0 50%;
                margin-bottom: 20px;
            }
            .sunli-stat-item:nth-child(even)::after {
                display: none;
            }
            .sunli-stat-number,
            .sunli-stat-plus {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .sunli-stat-item {
                flex: 0 0 48%;
            }
            .sunli-stat-item::after {
                display: none !important;
            }
            .sunli-about-header h2 {
                font-size: 24px;
            }
        }

		
		
		
		
		
		
		
		
		
	  /* 主容器，宽度1400px，居中 */
        .sl-mission-vision-wrapper {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
        }
        /* 每个板块的容器 - 相对定位（核心：统一用绝对定位放文字块） */
        .sl-mv-item {
            width: 100%;
            /* border-radius: 16px; */
            overflow: hidden;
            /* box-shadow: 0 4px 15px rgba(0,0,0,0.08); */
            margin-bottom: 30px;
            transition: all 0.4s ease;
            height: 200px; /* 整体高度 */
            position: relative; /* 作为文字块的定位参考 */
        }
        /* 鼠标悬浮效果 */
        .sl-mv-item:hover {
            transform: translateY(-6px);
            /* box-shadow: 0 8px 25px rgba(0,0,0,0.12); */
        }
        /* 图片区域 - 严格60%宽度（核心！） */
        .sl-mv-img-box {
            width: 55%; /* 图片固定60%宽度 */
            height: 100%;
            overflow: hidden;
        }
        /* 奇数项（1、3）：图片在左侧 */
        .sl-mv-item:nth-child(odd) .sl-mv-img-box {
            position: absolute;
            left: 0;
            top: 0;
        }
        /* 偶数项（2、4）：图片在右侧 */
        .sl-mv-item:nth-child(even) .sl-mv-img-box {
            position: absolute;
            right: 0;
            top: 0;
        }
        .sl-mv-img {
            width: 100%; /* 图片在60%区域内100%填充 */
            height: 100%;
            object-fit: cover; /* 保持比例，不拉伸变形 */
            transition: transform 0.6s ease;
        }
        /* 悬浮时图片放大 */
        .sl-mv-item:hover .sl-mv-img {
            transform: scale(1.08);
        }
        /* 文字模块 - 统一样式，仅10%覆盖图片 + 渐显动画容器 */
        .sl-mv-text {
            width: 50%; /* 固定50%宽度 */
            height: 80%;
            padding: 20px 30px;
            background: #f1f4f6;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            /* 动画相关：隐藏溢出，作为动画容器 */
            overflow: hidden;
        }
        /* 奇数项（1、3）：文字块在右侧，左边缘覆盖图片10% */
        .sl-mv-item:nth-child(odd) .sl-mv-text {
            right: 2%; /* 右侧留少量间距 */
            left: auto;
            margin-left: -10px; /* 向左覆盖图片边缘 */
        }
        /* 偶数项（2、4）：文字块在左侧，右边缘覆盖图片10%（核心修复） */
        .sl-mv-item:nth-child(even) .sl-mv-text {
            left: 2%; /* 左侧留少量间距 */
            right: auto;
            margin-right: -10px; /* 向右覆盖图片边缘 */
        }

        /* ========== 核心新增：文字从下往上渐显动画 ========== */
        /* 动画定义：从下往上移动+透明度从0到1 */
        @keyframes fadeUp {
            0% {
                transform: translateY(30px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }
        /* 标题动画：延迟0s，时长0.6s */
        .sl-mv-title {
            font-size: 22px;
            font-weight: 500;
            color: #999;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            padding-bottom: 15px;
            /* 动画属性 */
            animation: fadeUp 0.6s ease forwards;
            opacity: 0;
            margin-bottom: 15px;
        }
        /* 中文内容动画：延迟0.2s，时长0.6s */
        .sl-mv-content:not(.en) {
            font-size: 20px;
            color: #444;
            line-height: 1.5;
            /* 动画属性 */
            animation: fadeUp 0.6s ease 0.2s forwards;
            opacity: 0;
        }
        /* 英文内容动画：延迟0.4s，时长0.6s */
        .sl-mv-content.en {
            font-size: 14px;
            color: #999;
            margin-top: 5px;
            line-height: 1.4;
            /* 动画属性 */
            animation: fadeUp 0.6s ease 0.4s forwards;
            opacity: 0;
        }

        /* 标题前的小横线（和参考图一致） */
        .sl-mv-title::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            transform: translateY(-50%);
            width: 35px;
            height: 2px;
            background: #ff9a34;
        }
        .sl-mv-title span {
            font-size: 22px;
            color: #888;
            font-weight: 400;
            text-transform: uppercase;
        }

        /* 响应式适配 */
        @media (max-width: 1024px) {
            .sl-mv-item {
                height: 180px;
            }
            .sl-mv-text {
                height: 85%;
                padding: 18px 25px;
            }
        }
        @media (max-width: 768px) {
            .sl-mission-vision-wrapper {
                padding: 0 15px;
                margin: 20px auto;
            }
            .sl-mv-item {
                height: auto;
                position: static; /* 取消相对定位 */
            }
            .sl-mv-img-box {
                width: 100%; /* 移动端图片占100% */
                height: 180px;
                position: static !important;
            }
            .sl-mv-text {
                width: 100%;
                height: auto;
                position: static;
                transform: none;
                margin: 0 auto 10px !important;
                padding: 15px 20px;
            }
        }	
		
		
		
		
	









  /* 主容器：宽度自适应，居中 */
        .sl-concept-wrapper {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
        }
        /* 核心容器：单张背景图 + 5个格子定位 */
        .sl-concept-container {
            width: 100%;
            height: 800px; /* 整体高度，匹配背景图 */
            /* border-radius: 16px; */
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            position: relative; /* 作为格子的定位参考 */
        }
        /* 单张整体背景图：覆盖整个容器 */
        .sl-concept-bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        /* 5个格子容器：绝对定位等分宽度，覆盖在背景图上 */
        .sl-concept-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
        }
        /* 单个格子：等分宽度，相对定位，溢出隐藏 + 右侧边框（最后一个除外） */
        .sl-concept-item {
            flex: 1; /* 5个格子等分宽度 */
            height: 100%;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            /* 右侧竖边框：白色半透明，更贴合设计感 */
            border-right: 1px solid rgba(255, 255, 255, 0.3);
        }
        /* 最后一个格子：去掉右侧边框 */
        .sl-concept-item:last-child {
            border-right: none;
        }
        /* 格子悬浮遮罩层（默认透明） */
        .sl-concept-mask {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* 半透明黑背景 */
            z-index: 1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        /* 格子默认文字（底部显示） */
        .sl-concept-default-text {
            position: absolute;
            bottom: 30px;
            left: 30px; /* 左对齐，匹配参考图 */
            color: #fff;
            font-size: 18px;
            font-weight: 500;
            z-index: 2;
            transition: all 0.4s ease;
        }
        /* 格子悬浮详细文字（垂直居中 + 左对齐） */
        .sl-concept-hover-text {
            position: absolute;
            left: 30px; /* 左对齐不变 */
            top: 50%; /* 垂直居中核心 */
            transform: translate(0, -50%) translateY(20px); /* 垂直居中+初始下移20px */
            color: #fff;
            z-index: 2;
            opacity: 0;
            transition: all 0.4s ease;
        }
        /* 详细文字-标题 */
        .sl-concept-hover-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        /* 详细文字-内容 */
        .sl-concept-hover-desc {
            font-size: 16px;
            line-height: 1.6;
        }

        /* ========== 核心交互：所有格子悬浮效果 ========== */
        .sl-concept-item:hover {
            /* 悬浮时格子轻微放大（视觉增强） */
            transform: scale(1.02);
        }
        /* 悬浮显示遮罩 */
        .sl-concept-item:hover .sl-concept-mask {
            opacity: 1;
        }
        /* 悬浮时底部默认文字隐藏+上移 */
        .sl-concept-item:hover .sl-concept-default-text {
            opacity: 0;
            transform: translateY(-20px);
        }
        /* 悬浮时详细文字显示+垂直居中复位 */
        .sl-concept-item:hover .sl-concept-hover-text {
            opacity: 1;
            transform: translate(0, -50%) translateY(0); /* 仅复位下移距离，保持垂直居中 */
        }

        /* 响应式适配 */
        @media (max-width: 1024px) {
            .sl-concept-container {
                height: 400px;
            }
            .sl-concept-default-text {
                font-size: 16px;
                bottom: 40%;
                left: 0;
                width: 100%;
                text-align: center;
            }
            .sl-concept-hover-text {
                left: 20px;
            }
            .sl-concept-hover-title {
                font-size: 20px;
            }
            .sl-concept-hover-desc {
                font-size: 14px;
            }
        }
        @media (max-width: 768px) {
            .sl-concept-container {
                height: auto;
            }
            .sl-concept-bg-img {
                height: auto;
                min-height: 800px;
            }
            .sl-concept-grid {
                flex-direction: column;
                height: 100%;
            }
            /* 移动端：边框改为底部，最后一个去掉底部边框 */
            .sl-concept-item {
                height: 20%; /* 移动端5个格子等分高度 */
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            }
            .sl-concept-item:last-child {
                border-bottom: none;
            }
            .sl-concept-item:hover {
                transform: none; /* 移动端取消放大 */
            }
            /* 移动端悬浮文字仍垂直居中 */
            .sl-concept-hover-text {
                top: 50%;
                transform: translate(0, -50%) translateY(20px);
            }
            .sl-concept-item:hover .sl-concept-hover-text {
                transform: translate(0, -50%) translateY(0);
                width: 100%;
                text-align: center;
                left: 0;
            }
        }









    /* 主容器 */
        .sl-history-wrapper {
            max-width: 1400px;
            margin: 60px auto;
            /* padding: 0 30px; */
        }

        /* ========== 标题样式：简化+精准匹配参考图 ========== */
        .sl-history-title-box {
            margin-bottom: 40px;
            display: flex;
            align-items: center; /* 线条和文字垂直居中 */
            gap: 10px; /* 线条和文字间距 */
        }
        /* 橙色双线条：一长一短（匹配参考图） */
        .sl-title-lines {
            width: 24px;
            position: relative;
        }
        .sl-title-lines::before,
        .sl-title-lines::after {
            content: '';
            position: absolute;
            background-color: #ff9933;
            height: 2px;
            left: 0;
        }
        /* 长线条 */
        .sl-title-lines::before {
            width: 24px;
            top: 0;
        }
        /* 短线条（偏左） */
        .sl-title-lines::after {
            width: 12px;
            top: 4px;
        }
        /* 标题文字容器 */
        .sl-title-text {
            flex: 1;
        }
        .sl-history-en-title {
            font-size: 14px;
            color: #666;
            text-transform: uppercase;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }
        .sl-history-cn-title {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            line-height: 1.2;
        }

        /* ========== 滚动容器 + 粗滚动条 ========== */
        .sl-history-scroll-container {
            width: 100%;
            height: 400px;
            overflow-y: auto;
            overflow-x: hidden;
            padding-right: 15px;
            /* 粗滚动条（10px） */
            &::-webkit-scrollbar { width: 10px; }
            &::-webkit-scrollbar-track { background: #f5f5f5; border-radius: 5px; }
            &::-webkit-scrollbar-thumb { 
                background: #ddd; 
                border-radius: 5px;
                &:hover { background: #ff9933; }
            }
        }

        /* ========== 时间轴列表 ========== */
        .sl-history-list { list-style: none; width: 100%; }
        .sl-history-item {
            display: flex;
            padding: 25px 0;
            border-bottom: 1px solid #eee;
            align-items: flex-start;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .sl-history-item:last-child { border-bottom: none; }
        /* 年份：悬浮变黄 */
        .sl-history-year {
            width: 100px;
            font-size: 36px;
            font-weight: 700;
            color: #333;
            transition: color 0.2s ease;
        }
        /* 内容区域 */
        .sl-history-content {
            flex: 1;
            padding-left: 20px;
        }
        .sl-history-content-title {
            font-size: 18px;
            font-weight: 600;
            color: #222;
            margin-bottom: 8px;
            transition: color 0.2s ease;
        }
        .sl-history-content-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }
        /* 悬浮交互：年份+标题变黄 */
        .sl-history-item:hover .sl-history-year,
        .sl-history-item:hover .sl-history-content-title {
            color: #ff9933;
        }

        /* ========== 响应式适配 ========== */
        @media (max-width: 768px) {
            .sl-history-wrapper { padding: 0 20px; margin: 40px auto; }
            .sl-history-cn-title { font-size: 24px; }
            .sl-history-scroll-container {
                height: 350px;
                &::-webkit-scrollbar { width: 8px; }
            }
            .sl-history-item { padding: 20px 0; }
            .sl-history-year { width: 80px; font-size: 28px; }
            .sl-history-content-title { font-size: 16px; }
            .sl-history-content-desc { font-size: 13px; }
        }
        @media (max-width: 480px) {
            .sl-history-scroll-container {
                height: 300px;
                &::-webkit-scrollbar { width: 6px; }
            }
            .sl-history-year { width: 70px; font-size: 24px; }
            .sl-history-content { padding-left: 15px; }
        }


 /* 标题容器：1400px居中 - 匹配参考样式 */
        .client-title-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 50px 0;
        }
        /* 核心修改：匹配参考的双斜杠+英文样式 */
        .client-subtitle {
            font-size: 16px; /* 参考图小字尺寸 */
            color: #000; /* 英文灰色调 */
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            letter-spacing: 1px; /* 英文字母间距更舒展 */
            text-transform: uppercase;
        }
        /* 替换为橙色双斜杠 */
        .client-subtitle::before {
            content: "//"; /* 双斜杠代替横线 */
            width: auto;
            height: auto;
            background-color: transparent;
            color: #ff8800; /* 橙色斜杠 */
            font-size: 16px;
            font-weight: 600;
            display: inline-block;
        }
        /* 中文标题样式优化 */
        .client-main-title {
            font-size: 32px; /* 参考图大字尺寸 */
            color: #333;
            font-weight: 700;
            line-height: 1.2;
            margin: 0;
        }
		
		
		
		
		
		
		  .honors-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 0 50px 0;
        }
        .section-title-wrap {
            margin-bottom: 40px;
        }
        .section-main-title {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-main-title::before {
            content: "//";
            color: #ff9a34;
            font-weight: bold;
        }
        .section-sub-title {
            font-size: 18px;
            color: #666;
        }
  /* ------------ TAB 导航 ------------ */
.tab-nav {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
}
.tab-item {
    font-size: 20px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}
.tab-item.active {
    color: #ff9a34;
    transform: scale(1.08);
}
.tab-item .tab-english {
    display: none;
    font-size: 16px;
    color: #ff9a34;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.tab-item.active .tab-english {
    display: block;
    opacity: 1;
}

.tab-panel {
    display: none;
}
.tab-panel.active {
    display: block;
}

.swiper-slide {
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.swiper-slide img {
    width: 100%;
    display: block;
}

/* ========== 箭头样式 ========== */
.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    line-height: 40px;
}
.swiper-button-prev:after {
    content: "❮" !important;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
.swiper-button-next:after {
    content: "❯" !important;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #ff9a34;
}
.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
    color: #fff;
}
.swiper-button-prev { left: 0; }
.swiper-button-next { right: 0; }

.page-banner img{width:100%;}












   @media (max-width: 768px) {


.client-main-title {
    font-size: 24px;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    padding: 10px;
}


.tab-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}




.tab-item {
    font-size: 16px;
   
}

.honors-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px 50px;
}




}