
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== 导航栏 ========== */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #eef2f8;
            flex-wrap: wrap;
            gap: 0.8rem;
            position: relative;
            z-index: 1000;
        }
       .navbar .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e3a5f;
            letter-spacing: -0.3px;
            text-decoration: none;
        }
        .logo span {
            color: #5685a8;
        }
        .nav-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-links {
            display: flex;
            gap: 0.3rem;
            list-style: none;
        }
        .nav-item {
            position: relative;
        }
        .nav-item > a {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 0.6rem 1rem;
            text-decoration: none;
            color: #5a6e7c;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.2s;
            border-radius: 0.5rem;
        }
        .nav-item > a:hover, .nav-item > a.active {
            color: #2c6280;
            background: rgba(44, 98, 128, 0.08);
        }
        .nav-item > a .arrow {
            font-size: 0.7rem;
            transition: transform 0.2s;
        }
        .nav-item:hover > a .arrow {
            transform: rotate(180deg);
        }
        .nav-item .arrow {
            font-size: 10px;
        }

        /* 下拉菜单 */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background: #fff;
            border-radius: 1rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.12);
            padding: 0.8rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }
        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.7rem 1.2rem;
            text-decoration: none;
            color: #5a6e7c;
            font-size: 0.85rem;
            transition: all 0.2s;
        }
        .dropdown a:hover {
            background: #f0f4f8;
            color: #2c6280;
        }
        .dropdown a .icon {
            font-size: 1rem;
        }
        .dropdown-divider {
            height: 1px;
            background: #eef2f8;
            margin: 0.5rem 0;
        }
        .dropdown-title {
            padding: 0.5rem 1.2rem;
            font-size: 0.75rem;
            color: #9aaebf;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .nav-btn {
            background: linear-gradient(135deg, #ff6b35, #ff8f5a);
            padding: 0.6rem 1.4rem;
            border-radius: 2rem;
            text-decoration: none;
            color: white;
            font-weight: 500;
            font-size: 0.85rem;
            transition: all 0.2s;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
        }
        .nav-btn:hover {
            background: linear-gradient(135deg, #e55a28, #ff6b35);
            box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
            transform: translateY(-2px);
        }
        .nav-login {
            color: #5a6e7c;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            padding: 0.6rem 1rem;
            border-radius: 0.5rem;
            transition: all 0.2s;
        }
        .nav-login:hover {
            color: #2c6280;
            background: rgba(44, 98, 128, 0.08);
        }

        /* 移动端菜单按钮 */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            padding: 0.5rem;
            cursor: pointer;
        }
        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: #5a6e7c;
            margin: 5px 0;
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* ========== 英雄区 - 大搜索栏 ========== */
        .hero-search {
            text-align: center;
            padding: 3rem 1rem 4rem;
            background: linear-gradient(135deg, #94a2b4 0%, #2c6280 100%);
            border-radius: 2rem;
            margin: 2rem 0 1.5rem;
        }
        .hero-search h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.8rem;
            letter-spacing: -0.02em;
        }
        .hero-search p {
            font-size: 1rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 2rem;
        }
        .search-container {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 0.5rem;
            background: white;
            border-radius: 3rem;
            padding: 0.3rem;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }
        .search-container input {
            flex: 1;
            border: none;
            padding: 0 1.2rem;
            font-size: 1rem;
            outline: none;
            background: transparent;
            color: #1e2a3a;
        }
        .search-container input::placeholder {
            color: #9aaebf;
        }
        .search-container button {
            background: #ff6b35;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 3rem;
            color: white;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.9rem;
        }
        .search-container button:hover {
            background: #e55a28;
        }
        .hot-keywords {
            margin-top: 1.2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem;
        }
        .hot-keywords span {
            padding-top: 2px;
            font-size: 1.0rem;
            color: rgba(255,255,255,0.8);
        }
        .hot-keywords a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.8rem;
            background: rgba(255,255,255,0.15);
            padding: 0.3rem 0.8rem;
            border-radius: 2rem;
            transition: background 0.2s;
        }
        .hot-keywords a:hover {
            background: rgba(255,255,255,0.25);
        }

        /* ========== 最近入驻 ========== */
        .settled-section {
            background: #fff;
            border-radius: 1rem;
            padding: 1rem 1.5rem;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .settled-label {
            background: linear-gradient(135deg, #ff6b35, #ff8f5a);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 1rem;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .settled-scroll {
            flex: 1;
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            padding: 0.5rem 0;
        }
        .settled-item {
            white-space: nowrap;
            color: #5a6e7c;
            font-size: 0.85rem;
        }
        .settled-item a {
            color: #2c6280;
            text-decoration: none;
        }
        .settled-item a:hover {
            text-decoration: underline;
        }

        /* ========== 品牌服务入口 ========== */
        .service-module {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .service-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.5rem 1rem;
            background: #fff;
            border-radius: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6b35, #ff8f5a);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .service-item:hover::before {
            transform: scaleX(1);
        }
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .service-item:nth-child(1) .service-icon { background: linear-gradient(135deg, #ff6b35, #ff8f5a); }
        .service-item:nth-child(2) .service-icon { background: linear-gradient(135deg, #5685a8, #7aa8c8); }
        .service-item:nth-child(3) .service-icon { background: linear-gradient(135deg, #4a9f7e, #6abf9e); }
        .service-item:nth-child(4) .service-icon { background: linear-gradient(135deg, #9b6eb8, #b894d4); }
        .service-name {
            font-size: 1rem;
            font-weight: 600;
            color: #1e3a5f;
            margin-bottom: 0.3rem;
        }
        .service-desc {
            font-size: 0.8rem;
            color: #7c8b9c;
        }
        .service-link {
            margin-top: 0.8rem;
            font-size: 0.75rem;
            color: #5685a8;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .service-link::after {
            content: '→';
            transition: transform 0.2s;
        }
        .service-item:hover .service-link::after {
            transform: translateX(3px);
        }

        /* ========== 热门行业品牌榜 ========== */
        .rank-section {
            margin: 2.5rem 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        .section-header h2 {
            font-size: 1.8rem;
            color: #1e3a5f;
            margin-bottom: 0.5rem;
        }
        .section-header p {
            color: #7c8b9c;
            font-size: 0.9rem;
        }

        
        /* 排行榜卡片 */
        .rank-cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
        }
        .rank-card {
            background: #fff;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.05);
        }
        .rank-card-header {
            padding: 1rem 1.2rem;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            border-bottom: 1px solid #eef2f8;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .rank-card-header h3 {
            font-size: 1.1rem;
            color: #1e3a5f;
        }
        .rank-card-header a {
            font-size: 0.75rem;
            color: #5685a8;
            text-decoration: none;
        }
        .rank-list {
            padding: 0.5rem 0;
        }
        .rank-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem 1.2rem;
            border-bottom: 1px solid #f0f4f8;
            transition: background 0.2s;
        }
        .rank-item:hover {
            background: #fafdff;
        }
        .rank-item:last-child {
            border-bottom: none;
        }
        .rank-position {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        .rank-position.top1 { background: linear-gradient(135deg, #d48c5c, #e8a66a); color: white; }
        .rank-position.top2 { background: linear-gradient(135deg, #b89a7a, #c8b08a); color: white; }
        .rank-position.top3 { background: linear-gradient(135deg, #c2a575, #d2b585); color: white; }
        .rank-position.other { background: #f0f4f8; color: #7c97af; }
        .rank-brand-logo {
            width: 50px;
            height: 32px;
            object-fit: contain;
            border-radius: 4px;
            background: #f8fafc;
            display: none;
        }
        .rank-brand-info {
            flex: 1;
            min-width: 0;
        }
        .rank-brand-name {
            font-size: 0.9rem;
            font-weight: 600;
            color: #2c4f6e;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .rank-brand-name a {
            color: #2c4f6e;
            text-decoration: none;
        }
        .rank-brand-name a:hover {
            text-decoration: underline;
        }
        .rank-brand-name-en {
            font-size: 0.7rem;
            color: #8aa2b8;
        }
        .rank-score {
            font-size: 0.85rem;
            font-weight: 700;
            color: #ff6b35;
            flex-shrink: 0;
        }

        /* ========== 影响力热门品牌 ========== */
        .featured-section {
            margin: 2.5rem 0;
        }
        .featured-tabs {
            display: flex;
            border-bottom: 2px solid #eef2f8;
            margin-bottom: 1.5rem;
        }
        .featured-tab {
            padding: 1rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            color: #7c8b9c;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: all 0.2s;
        }
        .featured-tab:hover, .featured-tab.active {
            color: #2c6280;
            border-bottom-color: #2c6280;
        }
        .featured-tab.more {
            margin-left: auto;
            font-size: 0.85rem;
            font-weight: 500;
            color: #5685a8;
        }
        .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
        }
        .featured-card {
            background: #fff;
            border-radius: 1rem;
            padding: 1.2rem;
            text-align: center;
            border: 1px solid #eef2f8;
            transition: all 0.2s;
            cursor: pointer;
        }
        .featured-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
        .featured-logo {
            width: 60px;
            height: 40px;
            object-fit: contain;
            margin: 0 auto 0.8rem;
             display: none;
        }
        .featured-name {
            font-size: 0.8rem;
            font-weight: 600;
            color: #2c4f6e;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            
            
        }
        .featured-name a {
            color: #2c4f6e;
            text-decoration: none;
        }
        .featured-name a:hover {
            text-decoration: underline;
        }

        /* ========== 行业品牌资讯 ========== */
        .news-section {
            margin: 2.5rem 0;
        }
        .news-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1.5rem;
        }
        @media (max-width: 900px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
        }
        .news-featured {
            background: #fff;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.05);
        }
        .news-featured-header {
            padding: 1rem 1.2rem;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            border-bottom: 1px solid #eef2f8;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .news-featured-header h3 {
            font-size: 1.1rem;
            color: #1e3a5f;
        }
        .news-carousel {
            position: relative;
            height: 280px;
        }
        .news-carousel-slides {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }
        .news-carousel-slide {
            flex-shrink: 0;
            width: 100%;
            position: relative;
        }
        .news-carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            padding: 1rem;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .news-carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.3);
            backdrop-filter: blur(4px);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            color: #333;
            transition: all 0.2s;
            z-index: 10;
        }
        .news-carousel-btn:hover {
            background: rgba(255,255,255,0.6);
        }
        .btn-prev { left: 12px; }
        .btn-next { right: 12px; }
        .news-carousel-dots {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }
        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.2s;
        }
        .carousel-dot.active {
            background: white;
            width: 24px;
            border-radius: 4px;
        }
        .news-list {
            padding: 0.8rem 0;
        }
        .news-item {
            padding: 0.8rem 1.2rem;
            border-bottom: 1px solid #f0f4f8;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-item a {
            color: #2c4f6e;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            line-height: 1.5;
            transition: color 0.2s;
            flex: 1;
        }
        .news-item a:hover {
            color: #2c6280;
        }
        .news-time {
            font-size: 0.75rem;
            color: #8aa2b8;
            flex-shrink: 0;
        }

        .news-sidebar {
            background: #fff;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.05);
        }
        .news-sidebar-header {
            padding: 1rem 1.2rem;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            border-bottom: 1px solid #eef2f8;
        }
        .news-sidebar-header h3 {
            font-size: 1.1rem;
            color: #1e3a5f;
        }
        .news-sidebar-list {
            padding: 0.5rem 0;
        }
        .news-sidebar-item {
            padding: 0.8rem 1.2rem;
            border-bottom: 1px solid #f0f4f8;
        }
        .news-sidebar-item:last-child {
            border-bottom: none;
        }
        .news-sidebar-item a {
            display: block;
            color: #2c4f6e;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            line-height: 1.4;
            transition: color 0.2s;
        }
        .news-sidebar-item a:hover {
            color: #2c6280;
        }
        .news-sidebar-item .time {
            font-size: 0.7rem;
            color: #8aa2b8;
            margin-top: 0.3rem;
        }

      

       

       
        /* ========== 底部 ========== */
        .footer {
            margin-top: 3rem;
            padding: 2rem 0 3rem;
            border-top: 1px solid #eef2f8;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .footer-col p {
            color: #8aa2b8;
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }
        .footer-links {
            display: flex;
            gap: 2rem;
        }
        .footer-links a {
            text-decoration: none;
            color: #5a6e7c;
            font-size: 0.8rem;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 900px) {
            .rank-cards-container {
                grid-template-columns: 1fr;
            }
            .featured-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .hero-search h1 {
                font-size: 1.8rem;
            }
            .search-container {
                flex-direction: column;
                background: transparent;
                box-shadow: none;
                gap: 0.8rem;
            }
            .search-container input {
                background: white;
                padding: 0.8rem 1.2rem;
                border-radius: 3rem;
                border: 1px solid #e2e9f0;
            }
            .search-container button {
                width: 100%;
            }
        }
        @media (max-width: 550px ) {
             .navbar {
    display: none !important;
  }
            
            .brand-category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .featured-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .nav-links {
                gap: 1rem;
            
            }
        }
       



  .featured-section {
            position: relative;
            padding: 40px 0;
        }

        .featured-carousel-container {
            position: relative;
        
            /* max-width: 1200px; */
            margin: 0 auto;
            padding: 0 0px;
        }

        .featured-carousel {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
        }

        .featured-page {
        
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            padding: 20px 0;
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            pointer-events: none;
            transition: opacity 0.6s ease;
        }

        .featured-page.active {
            opacity: 1;
            pointer-events: auto;
            position: relative;
        }

        .featured-card {
            text-decoration: none !important;
            background: #fff;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .featured-card {
            
            background: #fff;
            border-radius: 8px;
            padding: 24px 20px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .featured-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .featured-logo {
            width: 100px;
            height: 100px;
            object-fit: contain;
            margin-bottom: 12px;
        }

        .featured-name {
            font-size: 20px;
            color: #2c4f6e;
            font-weight: 500;
            text-align: center;
            line-height: 6.4;
        }

        /* Carousel Navigation */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid #e5e7eb;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            color: #666;
        }

        .carousel-arrow:hover {
            background: #f3f4f6;
            border-color: #d1d5db;
            color: #333;
        }

        .carousel-arrow-left {
            left: 0;
        }

        .carousel-arrow-right {
            right: 0;
        }

        /* Carousel Dots */
        .featured-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 24px;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot:hover {
            background: #9ca3af;
        }

        .carousel-dot.active {
            background: #3b82f6;
            width: 24px;
            border-radius: 5px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .featured-page {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
                padding: 16px 0;
            }

            .featured-logo {
                width: 80px;
                height: 80px;
            }

            .featured-name {
                font-size: 13px;
            }

            .featured-card {
                padding: 16px;
            }
        }

          .industry-section {
            border-radius: 1rem;
            padding-top: 40px;
            padding-bottom: 40px;
            background: #fff;
        }

        .industry-grid {
            /* max-width: 1200px; */
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 16px;
        }

        .industry-cell {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 17px;
            text-align: center;
            padding: 16px 12px;
            transition: all 0.3s ease;
        }

        .industry-cell:hover {
            border-color: #3b82f6;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
        }

        .industry-cell a {
            color: #475569;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .industry-cell:hover a {
            color: #3b82f6;
        }

        @media (max-width: 992px) {
            .industry-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .industry-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }

            .industry-cell {
                padding: 12px 10px;
            }

            .industry-cell a {
                font-size: 13px;
            }
        }

       


        .settled-scroll {
            overflow: hidden;
            position: relative;
            flex: 1;
            margin-left: 15px;
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        }

        .settled-scroll-wrapper {
            display: flex;
            width: max-content;
            animation: settledScroll 30s linear infinite;
        }

        .settled-scroll-content {
            display: flex;
            flex-shrink: 0;
        }

        .settled-scroll:hover .settled-scroll-wrapper {
            animation-play-state: paused;
        }

        @keyframes settledScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .settled-item {
            display: inline-flex;
            white-space: nowrap;
            padding: 0 20px;
            border-right: 1px solid #ddd;
        }

        .settled-item:last-child {
            border-right: none;
        }
    
         .news-carousel-slide {
          position: relative;
      }
      .news-carousel-caption {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          padding: 10px 12px;
          background: linear-gradient(transparent, rgba(0,0,0,0.75));
          font-size: 14px;
          color: #fff;
          line-height: 1.6;
      }


      .x{outline: 1px solid red;}

     
