@charset "UTF-8";
/**
* 20250509新点电子交易平台
* date:2025-5-12
* author: sxw;
 */
.page-container {
  display: flex;
}

.dynamic-content {
  flex: 1;
  min-width: 0;
  min-height: 400px;
}

.dynamic-content-bd {
  padding-top: 20px;
  background: #fff;
min-height: 335px;}

.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  padding: 0 16px;
}
.search-bar .search-input {
  flex: 1;
  height: 29px;
  border: none;
  background: transparent;
  font-size: 12px;
  outline: none;
}
.search-bar .search-input:focus {
  background: transparent;
}
.search-bar .search-btn {
  width: 26px;
  height: 100%;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-bar .search-btn svg {
  width: 20px;
  height: 20px;
  fill: #0173BC;
}

.dynamic-content-hd {
  height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #D7F0FF 0%, #E7F2F9 100%);
}
.dynamic-content-hd .total-count {
  color: #0173BC;
}

.dynamic-list li {
  padding: 12px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  line-height: 18px;
  color: #333;
  display: flex;
  flex-direction: column;
}
.dynamic-list li + li {
  margin-top: 12px;
}
.dynamic-list li:hover {
  background: #F4FBFF;
}
.dynamic-list li:hover .dynamic-item-title {
  color: #0173BC;
}

.dynamic-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dynamic-item-title {
  color: #333;
  font-size: 16px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dynamic-item-date {
  color: #666;
  margin-left: 20px;
  white-space: nowrap;
}

.dynamic-item-desc {
  color: #999;
  line-height: 18px;
  margin-top: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}