@charset "UTF-8";
/*
 * @Description: 交易信息
 * @Author: 程姣姣
 */
.condition {
  margin: 24px 0 5px 0;
}
.condition-line {
  display: flex;
}
.condition-line + .condition-line {
  margin-top: 6px;
}
.condition-label {
  height: 26px;
  color: #666;
  text-align: right;
  line-height: 26px;
}
.condition-con {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  flex: 1;
  margin-right: -6px;
}
.condition-con .time-label {
  margin-left: 6px;
}
.condition-item {
  box-sizing: border-box;
  margin: 0 6px 6px 0;
  padding: 0 12px;
  height: 26px;
  color: #666;
  line-height: 26px;
  border-radius: 13px;
  transition: background-color 0.3s;
  cursor: pointer;
  user-select: none;
}
.condition-item.current {
  color: #fff;
  font-weight: bold;
  background-color: #1f6de8;
}
.condition-date {
  display: flex;
  align-items: center;
  height: 26px;
}
.condition-date-item {
  position: relative;
  width: 120px;
  height: 26px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 4px;
  transition: border-color 0.3s;
}
.condition-date-item:focus-within {
  border-color: #1f6de8;
}
.condition-date-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 14px;
  height: 14px;
  background: url("/images/tradeinfo/condition_date_icon.png") no-repeat center;
  transform: translateY(-50%);
}
.condition-date-item + .condition-date-item {
  margin-left: 24px;
}
.condition-date-item + .condition-date-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 12px;
  height: 1px;
  background-color: #e6e6e6;
  transform: translateY(-50%);
}
.condition-date-item input {
  box-sizing: border-box;
  padding: 0 38px 0 12px;
  width: 100%;
  height: 100%;
  font-size: 13px;
  outline: none;
  background: transparent;
}
.condition-date-item input::placeholder {
  color: #bac4ce;
}

.table-wrap {
  font-size: 16px;
  margin-top: 10px;
}
.table-wrap .col1 {
  width: 60px;
}
.table-wrap .col2 {
  width: 472px;
}
.table-wrap .col6 {
  width: 700px !important;
}
.table-wrap .col3 {
  width: 160px;
}
.table-wrap .col4 {
  width: 100px;
}
.table-wrap .col5 {
  width: 120px;
}
.table-wrap .col1,
.table-wrap .col3,
.table-wrap .col4,
.table-wrap .col5 {
  text-align: center;
}
.table-wrap .table-hd > table {
  table-layout: fixed;
  width: 912px;
}
.table-wrap .table-hd > table > thead > tr {
  height: 40px;
}
.table-wrap .table-hd > table > thead > tr > th {
  padding: 0 10px;
  color: #fff;
  background-color: #1f6de8;
}
.table-wrap .table-bd {
  width: 912px;
  overflow: auto;
  overflow-x: hidden;
  margin-bottom: 18px;
}
.table-wrap .table-bd > table {
  width: 912px;
  table-layout: fixed;
}
.table-wrap .table-bd > table > tbody > tr {
  height: 50px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}
.table-wrap .table-bd > table > tbody > tr > td {
  padding: 12px 10px;
}
.table-wrap .table-bd > table > tbody > tr .col2 {
  display: flex;
  align-items: center;
}
.table-wrap .table-bd > table > tbody > tr .col2 .tag {
  height: 21px;
  line-height: 21px;
  color: #b77100;
  font-size: 12px;
  background: #fff4e2;
  margin-right: 4px;
}
.table-wrap .table-bd > table > tbody > tr .col2 .name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table-wrap .table-bd > table > tbody > tr .status1 {
  color: #008f5f;
}
.table-wrap .table-bd > table > tbody > tr .status2 {
  color: #d03434;
}