.condition {
  height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.condition .item {
  display: flex;
  align-items: center;
}
.condition .item .condition-date {
  display: flex;
  align-items: center;
  height: 26px;
}
.condition .item .condition-date .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 .item .condition-date .condition-date-item:focus-within {
  border-color: #1f6de8;
}
.condition .item .condition-date .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 .item .condition-date .condition-date-item + .condition-date-item {
  margin-left: 24px;
}
.condition .item .condition-date .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 .item .condition-date .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 .item .condition-date .condition-date-item input::placeholder {
  color: #bac4ce;
}
.condition .item .input {
  width: 150px;
  height: 26px;
  font-size: 13px;
  padding: 0 12px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 4px;
}
.condition .item .input::placeholder {
  color: #bac4ce;
}
.condition #btnSearch {
  width: 62px;
  height: 26px;
  line-height: 26px;
  padding-left: 20px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  background: #1f6de8 url("/images/search.png") no-repeat 8px center;
  border-radius: 4px;
  cursor: pointer;
}

.table-wrap .col1 {
  width: 60px;
  text-align: center;
}
.table-wrap .col2 {
  width: 176px;
}
.table-wrap .col3,
.table-wrap .col5 {
  width: 200px;
}
.table-wrap .col4 {
  width: 280px;
}
.table-wrap .col1,
.table-wrap .col3,
.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 > td p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}