@charset "UTF-8";
.trade-main {
  padding: 40px 0;
}

.tab-hd {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px 8px 0 0;
  height: 58px;
  overflow: hidden;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.tab-hd .tab-item {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  height: 48px;
  line-height: 48px;
  font-weight: bold;
  font-size: 20px;
  color: #666666;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  background: #e7f2ff; /* 浅蓝背景匹配设计稿圆角选项卡？ */
}
.tab-hd .tab-item::before, .tab-hd .tab-item::after {
  opacity: 0;
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  width: 12px;
  height: 100%;
  background-image: -webkit-linear-gradient(top, transparent 0 10px, #e7f2ff 10px 100%);
  background-image: -moz-linear-gradient(top, transparent 0 10px, #e7f2ff 10px 100%);
  background-image: -o-linear-gradient(top, transparent 0 10px, #e7f2ff 10px 100%);
  background-image: linear-gradient(to bottom, transparent 0 10px, #e7f2ff 10px 100%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.tab-hd .tab-item::before {
  left: -12px;
  border-radius: 0 0 12px 0;
}
.tab-hd .tab-item::after {
  right: -12px;
  border-radius: 0 0 0 12px;
}
.tab-hd .tab-item:last-child::after, .tab-hd .tab-item:first-child::before {
  display: none;
}
.tab-hd .tab-item:first-child {
  border-top-left-radius: 8px;
}
.tab-hd .tab-item:last-child {
  border-top-right-radius: 8px;
}
.tab-hd .tab-item.active {
  height: 58px;
  line-height: 58px;
  color: #267dff;
  font-size: 24px;
  background: #fff;
  box-shadow: 12px 12px 0 0 #fff, -12px 12px 0 0 #fff;
  border-radius: 12px 12px 0 0;
  z-index: 2;
}
.tab-hd .tab-item.active::after, .tab-hd .tab-item.active::before {
  opacity: 1;
}

.tab-content {
  background: #fff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px 20px;
  border-radius: 0 0 8px 8px;
}

/* 采购公告列表样式 */
.notice-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.notice-item {
  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-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 0 16px 18px;
  border-bottom: 1px solid #f0f0f0;
  background: url("../images/today_trade/icon_list.png") left center no-repeat;
}

.notice-item .item-left {
  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;
  min-width: 0;
}

.item-tag {
  display: inline-block;
  margin-right: 8px;
  padding: 0 6px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 2px 2px 2px 2px;
}
.item-tag.status-tag {
  background: #f5f5f5;
  color: #999;
}
.item-tag.type-tag {
  background: #f0f7ff;
  color: #267dff;
}

.status-tag.tag-active {
  background: #fff0f0;
  color: #ff6b6b;
}

.item-title {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: inline-block;
  font-size: 15px;
  color: #333;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-item:hover .item-date,
.notice-item:hover .item-title {
  color: #267dff;
}

.item-date {
  font-size: 14px;
  color: #999;
  white-space: nowrap;
  margin-left: 20px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 160px;
  text-align: right;
}

/* 今日交易表格样式 */
.table-section {
  width: 100%;
}

.today-table {
  width: 100%;
  border-collapse: collapse;
}

.today-table thead th {
  padding: 13px 20px;
  line-height: 24px;
  background: #267dff;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
}

.today-table tbody td {
  padding: 17px 20px;
  line-height: 24px;
  font-size: 15px;
  color: #444;
}

.today-table tbody td a {
  color: #333;
}

.today-table tbody td a:hover {
  color: #267dff;
}

.today-table tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}

.today-table tbody tr:hover {
  background-color: #f1f7ff;
}

.today-table .cell-inner {
  display: block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.today-table .center {
  text-align: center;
}

.today-table .project-name a {
  display: block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

/* 分页器容器 */
#pagination-a,
#pagination-b {
  margin-top: 20px;
}

.toolbar {
  margin-bottom: 20px;
  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-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 51px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.toolbar .type-items {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 51px;
}
.toolbar .type-items .type-item {
  margin-right: 60px;
  height: 51px;
  line-height: 51px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.toolbar .type-items .type-item.active {
  color: #267dff;
  border-bottom-color: #267dff;
}
.toolbar .search-input-wrap {
  position: relative;
  width: 240px;
  height: 30px;
  border: 1px solid #dce3e9;
  border-radius: 19px;
  overflow: hidden;
}
.toolbar .search-input-wrap input {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 19px; /* 改为胶囊形 */
  padding: 0 54px 0 11px;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
}
.toolbar .search-input-wrap input::-webkit-input-placeholder {
  color: #aaaaaa;
}
.toolbar .search-input-wrap input:-moz-placeholder {
  color: #aaaaaa;
}
.toolbar .search-input-wrap input::-moz-placeholder {
  color: #aaaaaa;
}
.toolbar .search-input-wrap input:-ms-input-placeholder {
  color: #aaaaaa;
}
.toolbar .search-input-wrap input::placeholder {
  color: #aaaaaa;
}
.toolbar .search-input-wrap .btn-search-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 100%;
  cursor: pointer;
  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-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-linear-gradient(top, #57a9ff, #1f5dfe);
  background: -moz-linear-gradient(top, #57a9ff, #1f5dfe);
  background: -o-linear-gradient(top, #57a9ff, #1f5dfe);
  background: linear-gradient(to bottom, #57a9ff, #1f5dfe);
  overflow: hidden;
}
.toolbar .search-input-wrap .btn-search-icon::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("../images/today_trade/icon_search.png") center no-repeat;
}