/* 展商介绍列表样式 */
.exhibitor-list {
    margin-top: 40px;
    background: #fff;
}

.exhibitor-item {
    display: flex;
    align-items: flex-start;
    padding: 52px 30px;
}

/* 单数行背景色为白色 */
.exhibitor-item:nth-child(odd) {
    background-color: #fff;
}

/* 双数行背景色为#dff3fc */
.exhibitor-item:nth-child(even) {
    background-color: #dff3fc;
}

/* 左侧图片区域 */
.exhibitor-item-left {
    flex-shrink: 0;
    width: 245px;
    margin-right: 30px;
}

.exhibitor-item-left img {
    width: 245px;
    /* height: 80px; */
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: #fff;
}

.exhibitor-booth-number {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    color: #000000;
}

/* 右侧内容区域 */
.exhibitor-item-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.exhibitor-item-title {
    font-weight: bold;
    font-size: 18px;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 10px;
}

.exhibitor-item-content {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}
.exhibitor-booth-number{
    display: block;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .exhibitor-item {
        flex-direction: column;
        padding: 15px;
    }
    
    .exhibitor-item-left {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .exhibitor-item-left img {
        width: 100%;
        max-width: 245px;
        height: auto;
        aspect-ratio: 245/80;
    }
    
    .exhibitor-item-title {
        font-size: 16px;
    }
    
    .exhibitor-item-content {
        font-size: 14px;
    }
}

