@charset "UTF-8";
/* 主区域布局 */
.main.container {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  padding: 24px 0 60px;
}

/* 左侧导航 */
.left-nav {
  width: 200px;
}
.left-nav li {
  display: block;
  height: 56px;
  line-height: 56px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
  font-size: 18px;
  padding-left: 16px;
  position: relative;
  cursor: pointer;
}
.left-nav li:before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 21px;
  height: 20px;
  background: url(../images/notice/left-nav-btn-arrow.png) no-repeat center;
}
.left-nav li.active {
  color: #fff;
  background: url(../images/notice/left-nav-btn.png) no-repeat center;
}
.left-nav li.active:before {
  background: url(../images/notice/left-nav-btn-arrow-active.png) no-repeat center;
}

/* 内容区 */
.content {
  width: 1056px;
  border-radius: 10px;
  background: #fff;
  padding: 15px 20px;
}
.content .title {
  height: 30px;
  display: flex;
  justify-content: space-between;
}
.content .title .txt {
  padding-left: 33px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  line-height: 30px;
}
.content .title .txt:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 20px;
  background: url(../images/notice/title-icon.png) no-repeat center;
}
.content .search-content {
  width: 232px;
  height: 36px;
  border-radius: 48px;
  background: #F5F5F5;
  display: flex;
}
.content .search-content input {
  width: 196px;
  height: 100%;
  line-height: 28px;
  padding-left: 16px;
  outline: none;
  border: none;
  background: transparent;
}
.content .search-content span {
  width: 24px;
  height: 100%;
  cursor: pointer;
  background: url(../images/notice/readglass.png) no-repeat center;
}

.list1 {
  background: #fff;
  padding: 20px;
  border: 1px solid #e7e7e7;
}

/* 列表头部标题+搜索 */
.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 16px;
}
.title .txt {
  font-size: 18px;
  color: #333;
  margin: 0;
}
.search-content {
  width: 220px;
  height: 30px;
  border: 1px solid #aeaeae;
  display: flex;
  border-radius: 2px;
}
.search-content .search-txt {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 8px;
  line-height: 28px;
  background: none;
}
.search-content .search-btn {
  width: 30px;
  height: 100%;
  cursor: pointer;
  background: url(../images/readglass.png) no-repeat center;
}

/* 公告列表 */
.list {
  margin-top: 25px;
  padding: 16px;
  background: #fff;
}
.list li {
  height: 50px;
  line-height: 50px;
  font-size: 14px;
}
.list li + li {
  margin-top: 10px;
}
.list li a {
  display: block;
  height: 100%;
  display: flex;
  font-size: 16px;
  justify-content: space-between;
}
.list li .timer {
  color: #999;
}
.list li .txt {
  width: 850px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 31px;
  position: relative;
}
.list li .txt:before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 15px;
  height: 16px;
  background: url(../images/notice/list-dot.png) no-repeat center;
  fill: linear-gradient(180deg, #EDEDED 0%, #A5A5A5 100%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
.list li:hover a {
  color: #e50012;
}
.list li:hover a .timer {
  color: #e50012;
}
.list li:hover a .txt:before {
  background: url(../images/notice/list-dot-active.png) no-repeat center;
  fill: linear-gradient(180deg, #C7E34C 0%, #028446 100%);
  filter: drop-shadow(0px 4px 4px rgba(13, 154, 87, 0.2));
}

/* 分页 */
.pager {
  margin-top: 20px;
  text-align: center;
}

/* ===== type=jj 卡片布局 - 匹配首页交易公告样式 ===== */
.trade {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.trade li {
  width: calc((100% - 48px) / 4);
  height: 330px;
  background: #fff;
  padding: 0 16px 16px;
  box-sizing: border-box;
  margin-left: 16px;
  border: 1px solid #eee;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
  overflow: hidden;
}
.trade li:nth-child(4n+1) {
  margin-left: 0;
}
.trade li:hover {
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
}
.trade li h2 {
  text-align: center;
  margin: 0;
}
.trade li h2 span {
  display: inline-block;
  height: 26px;
  line-height: 26px;
  padding: 0 13.5px;
  border-radius: 0px 0px 10px 10px;
  background: #F0F0F0;
  font-size: 13px;
  font-weight: normal;
}
.trade li[data-status="1"] h2 span {
  color: #e68a00;
  background: #fff3e0;
}
.trade li[data-status="2"] h2 span {
  color: #07f;
  background: #e5f0ff;
}
.trade li[data-status="3"] h2 span {
  color: #00946F;
  background: #E9F4F2;
}
.trade li[data-status="4"] h2 span {
  color: #999;
  background: #f0f0f0;
}
.trade li h3 {
  margin-top: 13px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
  font-size: 14px;
  color: #333;
  font-weight: normal;
}
.trade li .timer {
  color: #5c5c5c;
  margin-top: 10px;
  line-height: 26px;
  height: 26px;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trade li .timer span {
  display: inline-block;
  height: 26px;
  padding: 0 4px;
  border: 1px solid #999;
  box-sizing: border-box;
  text-align: center;
  line-height: 24px;
  color: #999;
  margin: 0 1px;
  font-size: 13px;
}
.trade li .inf {
  margin-top: 12px;
  border-top: 1px solid #e7e7e7;
  padding-top: 12px;
  flex: 1;
}
.trade li .inf p {
  color: #999;
  margin-top: 10px;
  line-height: 20px;
  font-size: 13px;
}
.trade li .inf p:nth-child(1) {
  margin-top: 0;
}
.trade li .inf p span {
  color: #5c5c5c;
}
.trade li .action {
  display: block;
  color: #fff;
  text-align: center;
  height: 36px;
  line-height: 36px;
  margin-top: 16px;
  cursor: pointer;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  background: #07f;
}
.trade li .action:hover {
  opacity: 0.9;
}

/* 状态筛选按钮 */
.status-filter {
  padding: 12px 0;
  display: flex;
  gap: 0;
}
.status-filter .status-radio {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  padding: 0 16px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  background: #fff;
  border: 1px solid #d9d9d9;
  margin-left: -1px;
  transition: all 0.2s;
}
.status-filter .status-radio:first-child {
  border-radius: 4px 0 0 4px;
  margin-left: 0;
}
.status-filter .status-radio:last-child {
  border-radius: 0 4px 4px 0;
}
.status-filter .status-radio input {
  display: none;
}
.status-filter .status-radio.active {
  color: #fff;
  background: #07f;
  border-color: #07f;
  position: relative;
}

/* 采购单位筛选 - 智信专区成交公告 */
.cgr-filter {
  padding: 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}
.cgr-filter .cgr-radio {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  padding: 0 16px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  background: #fff;
  border: 1px solid #d9d9d9;
  margin-left: -1px;
  transition: all 0.2s;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cgr-filter .cgr-radio:first-child {
  border-radius: 4px 0 0 4px;
  margin-left: 0;
}
.cgr-filter .cgr-radio:last-child {
  border-radius: 0 4px 4px 0;
}
.cgr-filter .cgr-radio + .cgr-radio:last-child {
  border-radius: 0 4px 4px 0;
}
.cgr-filter .cgr-radio input {
  display: none;
}
.cgr-filter .cgr-radio.active {
  color: #fff;
  background: #07f;
  border-color: #07f;
  position: relative;
}
.cgr-filter .cgr-radio:hover {
  color: #07f;
}
.cgr-filter .cgr-radio.active:hover {
  color: #fff;
}

/* ===== 公告详情页样式 ===== */
.detail {
  display: block;
}
.article {
  padding: 40px 60px;
  box-sizing: border-box;
}
.article-title {
  min-height: 30px;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  line-height: 30px;
  margin-top: -20px;
  margin-bottom: 24px;
}
.article-msg {
  height: 36px;
  font-size: 14px;
  color: #999;
  text-align: center;
  line-height: 36px;
  background-color: #fafafa;
  margin-bottom: 24px;
}
.article-msg span:nth-child(2n + 1) {
  margin-left: 29px;
}
.article-msg span:first-child {
  margin-left: 0;
}
.article-con {
  min-height: 250px;
  font-size: 16px;
  color: #4e5463;
  line-height: 33px;
  padding: 0 16px;
  box-sizing: border-box;
}
.article-con p {
  text-indent: 4rem;
  margin-bottom: 24px;
}
.article-con .img {
  text-align: center;
}
