/* 用户信息卡片区域 */
.user-info-section {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    padding: 0 15px;
}

.user-card {
    background-color: rgba(243, 246, 254, 1);
    border-radius: 8px;
    width: 900px;
    height: 170px;
    margin-left: 0;
    margin-right: auto;
}

.user-card-header {
    display: flex;
}

.company-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 4px;
    margin-left: 40px;
    margin-top: 30px;
    border-radius: 50%;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.company-info {
    flex: 1;
    margin-left: 40px;
    margin-top: 30px;
}

.company-name {
    font-size: 18px;
    font-weight: 700;
    color: rgba(51, 51, 51, 1);
    height: 26px;
    margin-bottom: 10px;
}

.info-row {
    font-size: 14px;
    font-weight: 400;
    height: 24px;
    color: rgba(51, 51, 51, 1);
}

.info-label {
    color: #666;
    margin-right: 5px;
}

.info-value {
    color: #333;
}

/* 信息列表区域 */
.market-list-section {
    max-width: 1280px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.list-container {
    background-color: #fff;
    width: 900px;
    margin-left: 0;
    margin-right: auto;
    margin-top: 36px;
}

.list-title {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    text-align: center;
}

.market-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
    margin-top: 20px;
    padding-bottom: 10px;
}

.item-left {
    display: flex;
    flex: 1;
    max-width: 500px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 16px;
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.user-details {
    flex: 1;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.user-company {
    font-size: 14px;
    color: #1677ff;
    margin-bottom: 12px;
    cursor: pointer;
}

.user-company:hover {
    text-decoration: underline;
}

.item-content {
    font-size: 14px;
    font-weight: 400;
    color: rgba(51, 51, 51, 1);
    line-height: 1.6;
}

.item-images {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 342px
}

.product-img {
    width: 102px;
    height: 66px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s;
}

.product-img:hover {
    transform: scale(1.05);
}

.item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 20px;
}

.item-type {
    font-size: 14px;
    color: #333;
    margin-bottom: 16px;
    font-weight: 500;
}

.item-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stat-label {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 12px;
    color: #999;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .user-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .company-logo {
        width: 120px;
        height: 60px;
        margin-right: 0;
        margin-bottom: 16px;
    }

    .market-item {
        flex-direction: column;
    }

    .item-right {
        align-items: flex-start;
        margin-left: 0;
        margin-top: 16px;
    }

    .item-stats {
        flex-direction: row;
        gap: 20px;
    }

    .stat-item {
        align-items: flex-start;
    }

    .item-images {
        flex-wrap: wrap;
    }

    .product-img {
        width: 80px;
        height: 60px;
    }
}
.content-link {
    color: rgba(51, 51, 51, 1);
    text-decoration: none;
    display: block;
    line-height: 1.5;
    max-height: 4.5em; /* 3 行的高度 = 1.5 * 3 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 限制显示 3 行 */
    -webkit-box-orient: vertical;
}
.content-link:hover {
    color: rgba(0, 74, 163, 1);
    cursor: pointer;
}