@media (min-width: 992px) {
            .col-lg-2 {
                -ms-flex: 0 0 16.666667%;
                flex: 0 0 17.666667%;
                max-width: 17.666667%;
            }
        }

        /* 右侧内容区域 */
        .sidebar {
            background-color: #fff;
            margin-bottom: 10px;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .sidebar-title {
            font-size: 18px;
            margin-bottom: 10px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
            flex: 1;
            /* 确保标题占据剩余空间 */
        }

        .sidebar-section .d-flex.justify-content-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sidebar-section .d-flex.justify-content-between a {
            margin-left: 10px;
            /* 调整链接与标题的间距 */
        }

        .sidebar-list li {
            font-size: 14px;
            margin-bottom: 10px;
        }

        /* 专题模块样式 */
        .topics {
            display: flex;
            flex-direction: column;
        }

        .topic-item {
            position: relative;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .topic-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
        }

        .topic-image {
            width: 100%;
            height: auto;
        }

        .topic-content {
            padding: 10px;
            background-color: #fff;
        }

        .topic-title {
            font-size: 16px;
            margin: 0 0 5px;
        }

        .topic-tag {
            font-size: 12px;
            margin-right: 5px;
        }

        /* 广告图片样式 */
        .ad-image img {
            width: 100%;
            height: auto;
        }

        /* 轮播图样式 */
    .ex-carousel-body {
        margin-top: 22px;
        background-color: #f8f9fa;
    }

    .ex-carousel-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .ex-carousel {
        display: flex;
        width: 100%;
        height: 360px;
        transition: transform 0.5s ease-in-out;
        transform: translateX(0);
        background-color: #fff;
        overflow: hidden;
    }

    .ex-carousel-item {
    min-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    background: url('/uploads/20250820/72e2c30939b752f5a7e6aa8085266fc3.png') center/cover no-repeat;
    box-sizing: border-box;
    opacity: 1;
}

.company-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 90%;
    width: 100%;
}

.header-container {
    display: flex;
    align-items: center; /* 垂直居中对齐 */
    justify-content: flex-start; /* 水平左对齐 */
    width: 100%;
    flex-wrap: nowrap;
    min-height: 80px; /* 确保最小高度用于垂直对齐 */
}

.name-container {
    display: flex;
    align-items: center; /* 子元素垂直居中 */
    flex-grow: 1;
    min-width: 0; /* 允许收缩 */
}

.company-logo {
    width: 60px;
    height: 60px;
    margin: 0 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.company-logo img {
    width: 60px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-logo.loaded img {
    opacity: 1;
}

.text-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
    justify-content: center;
    align-items: flex-start;
}

.company-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.company-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 2px;
    border-radius: 4px;
    height: 170px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-word;
    max-height: 170px;
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    min-height: 24px;
    margin-top: 10px;
}

.tag {
    background-color: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* 响应式设计 */
@media (max-width: 768px) {
     .header-container {
        flex-direction: row;
        min-height: 60px;
    }
    
     .company-logo {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
    
    .company-name {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .company-description {
        font-size: 0.9rem;
        height: 170px;
        max-height: 170px;
    }
}

    /* 导航指示器样式 */
    .ex-carousel-indicators {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
    }

    .ex-carousel-indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .ex-carousel-indicator.active {
        background-color: #1876d0;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .ex-carousel {
            height: 360px;
        }
        
        .company-logo {
            width: 80px;
            height: 80px;
        }
        
        .company-name {
            font-size: 1.2rem;
        }
        
        .company-description {
            font-size: 0.9rem;
        }
    }

        /* 控制按钮样式 */
        .ex-carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: background-color 0.3s;
        }

        .ex-carousel-control:hover {
            background-color: rgba(0, 0, 0, 0.6);
        }

        .ex-carousel-control.left {
            left: 10px;
        }

        .ex-carousel-control.right {
            right: 10px;
        }

        .ex-carousel-control svg {
            width: 20px;
            height: 20px;
            fill: white;
        }


        .join-partner {
            background-color: #007bff;
            color: white;
            text-align: center;
            padding: 15px 0;
            cursor: pointer;
        }

        /* 产品推荐模块样式 */
        .product-recommendations {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .product-item {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .product-image {
            width: 100px;
            height: 100px;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            object-fit: cover;
        }

        .product-image:hover {
            transform: scale(1.1);
            z-index: 10;
        }

        .product-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            /* 垂直方向上均匀分布内容 */
        }

        .product-content p {
            font-size: 1rem;
            margin: 0 0 0.5rem;
            /* 确保文本自动换行 */
            word-wrap: break-word;
            word-break: break-all;
            overflow-wrap: break-word;
            /* 最多显示两行，超出部分用省略号表示 */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-content small {
            font-size: 0.8rem;
            color: #666;
            /* 确保文本自动换行 */
            word-wrap: break-word;
            word-break: break-all;
            overflow-wrap: break-word;
        }

        .product-content small i {
            margin-right: 0.5rem;
        }