.main-container {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin: 20px auto;
    padding: 0 15px;
}

/* 左侧内容区域样式 */
.left-content {
    flex: 1;
    margin-right: 20px;
}

/* 右侧广告区域样式 */
.right-sidebar {
    width: 300px;
}

.ad-sidebar {
    width: 335px;
    height: 300px;
    background-color:rgba(236, 239, 255, 1);
    border: 1px solid #e0e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

/* 分类标签栏 */
.filter-tabs {
    display: flex;
    list-style: none;
    padding: 10px 20px;
    background-color: rgba(248, 248, 248, 1);
    border-bottom: 1px solid #e5e5e5;
    margin: 25px auto;
    max-width: 900px;
}
.filter-tabs li {
    margin-right: 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    padding-bottom: 2px;
}
.filter-tabs li.active {
    color: #1677ff;
    border-bottom: 2px solid #1677ff;
}

/* 信息列表区域 */
.info-container {
    display: flex;
    background-color: #fff;
    margin: 25px 10px;
    max-width: 900px;
}
.info-list {
    flex: 1;
    padding: 10px 0;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    font-weight: 400;
}
.info-table th {
    padding: 8px 10px;
    text-align: left;
    color: #666;
    font-weight: normal;
    border-bottom: 1px solid #e5e5e5;
}
.info-table td {
    padding: 12px 10px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}
.info-publisher {
    display: flex;
    align-items: center;
}
.publisher-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 8px;
}
.publisher-name {
    color: #333;
    margin-bottom: 2px;
}
.publisher-company {
    font-size: 11px;
    color: #999;
}
.info-img-group {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
.info-img {
    width: 50px;
    height: 40px;
    object-fit: cover;
    border: 1px solid #eee;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    list-style: none;
}
.pagination li {
    margin: 0 4px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.pagination li.active {
    background-color: #1677ff;
    color: #fff;
    border-color: #1677ff;
}
.pagination li.prev, .pagination li.next {
    border: none;
}

/* 暂无数据样式 */
.no-data {
  padding: 40px 0;
  text-align: center;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.no-data-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.no-data-icon {
  font-size: 48px;
  margin-bottom: 16px;
  color: #ccc;
}

.no-data-text {
  font-size: 16px;
  color: #999;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
}

.content-text {
  margin-bottom: 8px;
}

.content-images {
  display: flex;
  gap: 5px;
}

.thumbnail {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #eee;
  cursor: pointer;
}
/* 用户信息卡片区域 */
.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;
}