@charset "UTF-8";
/*
 * @Description: 交易公告
 * @Author: hxh
 * @Date: 2025-04-24 10:21:37
 */
.viewer .left-viewer {
  width: 220px;
}
.viewer .right-viewer {
  width: 960px;
  min-height: 500px;
}

.list {
  width: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.list .list-item {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #f5f5f5;
}
.list .list-item .item-content {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.list .list-item .item-icon {
  position: relative;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.list .list-item .item-icon::before, .list .list-item .item-icon::after {
  content: "";
  position: absolute;
}
.list .list-item .item-icon::before {
  width: 10px;
  height: 10px;
  background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(247, 165, 50, 0.89) 100%);
  background: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(247, 165, 50, 0.89) 100%);
  background: -o-linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(247, 165, 50, 0.89) 100%);
  background: linear-gradient(315deg, rgba(255, 255, 255, 0) 0%, rgba(247, 165, 50, 0.89) 100%);
}
.list .list-item .item-icon::after {
  width: 10px;
  height: 10px;
  left: 5px;
  top: 5px;
  background: -webkit-linear-gradient(315deg, #2485e7 0%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(315deg, #2485e7 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(315deg, #2485e7 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(135deg, #2485e7 0%, rgba(255, 255, 255, 0) 100%);
}
.list .list-item .icon-dot-gradient {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
  background: -webkit-linear-gradient(315deg, #1f6de8 0%, #7cafff 100%);
  background: -moz-linear-gradient(315deg, #1f6de8 0%, #7cafff 100%);
  background: -o-linear-gradient(315deg, #1f6de8 0%, #7cafff 100%);
  background: linear-gradient(135deg, #1f6de8 0%, #7cafff 100%);
  box-shadow: 0px 2px 14px 0px rgba(4, 44, 101, 0.1);
}
.list .list-item .item-info {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.list .list-item .item-title {
  font-size: 14px;
  color: #333333;
  line-height: 1.48;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.list .list-item .item-title .red {
  color: #ff5959;
}
.list .list-item .item-title .blue {
  color: #2485e7;
}
.list .list-item .item-deadline {
  font-size: 14px;
  color: #333333;
  line-height: 1.48;
  width: 200px;
  margin-left: 30px;
}
.list .list-item .item-deadline span {
  color: #ff8d23;
}
.list .list-item .item-date {
  width: 104px;
  font-size: 14px;
  color: #999999;
  white-space: nowrap;
  margin-left: 20px;
  text-align: right;
}
.list .list-item:hover {
  border-bottom: 1px solid #2485e7;
}
.list .list-item:hover .item-title {
  color: #2485e7;
}