@charset "UTF-8";
/**
 * h湖北省成套招标股份有限公司楚天云采平台功能优化升级项目
 * date: 2025-9-2
 * author: wuzhou;
 */
.list-content {
  margin-top: 30px;
  display: flex;
  min-height: 550px;
}

.list-left {
  width: 250px;
  flex-shrink: 0;
}

.list-menu {
  min-height: 100px;
  border: 2px solid #f4f4f4;
  border-bottom: 0;
}

.list-right {
  flex: 1;
  padding: 3px 18px 22px;
  min-height: 300px;
  margin-left: 20px;
  border: 2px solid #f4f4f4;
  overflow: hidden;
}

.menu-name {
  height: 56px;
  line-height: 56px;
  color: #fff;
  font-size: 22px;
  text-align: center;
  background-color: #b72a23;
}

.menu-items {
  border-top: 2px solid #f4f4f4;
}
.menu-items .menu-item {
  position: relative;
  box-sizing: border-box;
  border-bottom: 2px solid #f4f4f4;
}
.menu-items .menu-item > a {
  display: block;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: #333;
}
.menu-items .menu-item.current {
  border-color: #b72a23;
}
.menu-items .menu-item.current > a {
  color: #b72a23;
}
.menu-items .menu-item.current:before {
  position: absolute;
  content: "";
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 10px;
  pointer-events: none;
  background: url("../images/left_menu_ico.png") center no-repeat;
}

.module-title {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 15px;
  height: 54px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}
.module-title > .module-title-name {
  line-height: 20px;
  font-size: 20px;
  color: #B72A23;
}
.module-title:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 19px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #B72A23;
}

.trade-search {
  margin-left: auto;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  border-radius: 17px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  width: 248px;
  height: 34px;
  overflow: hidden;
}
.trade-search > input {
  box-sizing: border-box;
  padding-left: 14px;
  padding-right: 10px;
  width: calc(100% - 30px);
  height: 32px;
  border: 0;
  outline: none;
  color: #bac4ce;
}
.trade-search > input::placeholder {
  color: #bac4ce;
}
.trade-search .search-btn {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  background: url("../images/list_search_ico.png") center no-repeat;
}

/* 列表 */
.notice-items {
  padding-top: 12px;
}
.notice-items .notice-item {
  display: flex;
  line-height: 42px;
  height: 42px;
}
.notice-items .notice-item > a {
  position: relative;
  flex: 1;
  padding-left: 17px;
  margin-right: 50px;
  font-size: 16px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.notice-items .notice-item > a:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid #B72A23;
}
.notice-items .notice-item > span {
  color: #999;
  font-size: 16px;
  flex-shrink: 0;
}
.notice-items .notice-item:hover {
  border-bottom-color: #B72A23;
}
.notice-items .notice-item:hover > a {
  color: #B72A23;
}
.notice-items .notice-item:hover > span {
  color: #B72A23;
}