@charset "UTF-8";
/**
 * 洛阳国晟投资控股集团有限公司电子化采购平台建设项目
 * 列表页样式
 * date: 2025-4-15
 * author: hxh;
 */
.main-content {
  padding: 30px 0;
  min-height: 600px;
  background-color: #f8f8f8;
}

.left-menu {
  float: left;
  width: 220px;
  margin-right: 30px;
}
.left-menu .menu-item {
  height: 60px;
  background-color: #ebebeb;
  margin-bottom: 10px;
}
.left-menu .menu-item.current {
  background: -webkit-linear-gradient(bottom, #c9161e, #ed3b43);
  background: -moz-linear-gradient(bottom, #c9161e, #ed3b43);
  background: -o-linear-gradient(bottom, #c9161e, #ed3b43);
  background: linear-gradient(to top, #c9161e, #ed3b43);
}
.left-menu .menu-item.current .menu-text {
  color: #fff;
  font-weight: 500;
}
.left-menu .menu-item.current .arrow-icon {
  background-image: url("../images/icon-arrow-white.svg");
}
.left-menu .menu-item:hover:not(.active) {
  background-color: #ddd;
}
.left-menu .menu-item .menu-link {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 24px 0 20px;
  height: 100%;
  width: 100%;
}
.left-menu .menu-item .menu-text {
  font-family: "Microsoft YaHei", "Source Han Sans CN", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.25;
}
.left-menu .menu-item .arrow-icon {
  width: 20px;
  height: 20px;
  background: url("../images/icon-arrow-gray.svg") no-repeat center;
  -o-background-size: contain;
     background-size: contain;
}

.right-content {
  float: left;
  width: -webkit-calc(100% - 250px);
  width: -moz-calc(100% - 250px);
  width: calc(100% - 250px);
  min-height: 600px;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 0 20px 20px;
}
.right-content table {
  table-layout: fixed;
  width: 100%;
}
.right-content table th {
  height: 60px;
  border-bottom: 2px solid #ebebeb;
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  text-align: center;
}
.right-content table td {
  padding: 0 10px;
  height: 60px;
  line-height: 60px;
}
.right-content table td > div, .right-content table td > a {
  display: block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  color: #333333;
}
.right-content table td > a > span {
  font-size: 12px;
}
.right-content table td.date > div {
  color: #999999;
}
.right-content table tr:hover td > div, .right-content table tr:hover td > a {
  color: #c9161e;
}
.right-content table .align-enter {
  text-align: center;
}