@charset "UTF-8";
.shadow-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}

/* 主内容布局 */
.trade-main {
  padding: 40px 0;
}
.trade-main .main-content-cols {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 右侧列表区 */
.right-content {
  width: 1036px;
  min-height: 446px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}

.list {
  margin-top: 26px;
}

.list-item {
  height: 88px;
  display: block;
  border-bottom: 1px dashed #dbdbdb;
  margin-bottom: 18px;
  padding: 0 10px;
}
.list-item .item-name {
  display: block;
  line-height: 36px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  color: #333;
}
.list-item .item-name:hover {
  color: #1f5dfe;
}
.list-item .item-date {
  line-height: 36px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  color: #666666;
  padding-left: 40px;
  background: url("../images/help_center/icon_date.png") left center no-repeat;
}