@charset "UTF-8";
/**
* 承德市交易中心交易平台系统优化升级(临时)
* date:2024-12-25
* author: xuhai;
 */
.tab {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 12px 20px 11px;
  border-bottom: 1px solid #e6e6e6;
  box-sizing: border-box;
}
.tab-item {
  height: 32px;
  font-size: 15px;
  color: #333;
  line-height: 32px;
  background: #ebebeb;
  padding: 0 15px;
  box-sizing: border-box;
  border-radius: 16px;
  cursor: pointer;
}
.tab-item + .tab-item {
  margin-left: 10px;
}
.tab-item:hover, .tab-item.current {
  color: #fff;
  background: #e85757;
}
.tab-item a{  
  color: #333;  
}
.tab-item:hover a, .tab-item.current a{
  color: #fff;  
}

.detail {
  padding: 5px 20px 0;
  box-sizing: border-box;
}
.detail-item {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.detail-item-title {
  height: 22px;
  font-size: 15px;
  line-height: 22px;
}
.detail-item-title a {
  color: #333;
}
.detail-item-title a:hover {
  color: #d43535;
}
.detail-item-title a:hover span {
  color: #d43535;
}
.detail-item-con {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 21px;
  font-size: 14px;
  color: #999;
  line-height: 21px;
  padding-left: 8px;
  box-sizing: border-box;
  margin-top: 5px;
}
.detail-item-date {
  flex-shrink: 0;
  margin-left: 16px;
}
.detail-item[data-type="1"] .detail-item-title a:not(:hover) span {
  color: #8800ff;
}
.detail-item[data-type="2"] .detail-item-title a:not(:hover) span {
  color: #ff0000;
}

@media screen and (max-width: 628px) {
  .tab {
    justify-content: space-between;
    padding-bottom: 1px;
  }
  .tab-item {
    width: calc(50% - 5px);
    text-align: center;
    padding: 0;
    margin-bottom: 10px;
  }
  .tab-item + .tab-item {
    margin-left: 0;
  }
}