@charset "UTF-8";
/**
 * 平台动态
 * date: 2025-4-3 
 * author: hjhua;
 */
.sub {
  margin-top: 40px;
  display: flex;
}
.sub-menu {
  width: 220px;
  box-sizing: border-box;
  box-shadow: 0px 0px 15px 0px rgba(17, 64, 128, 0.12);
  background: #fff;
}
.sub-head {
  height: 60px;
  line-height: 60px;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  padding: 0 16px;
  background: linear-gradient(145deg, #d11b1a 13.53%, #ffa928 127.16%);
}
.sub-tree {
  padding: 10px 8px;
}
.sub-tree-items.current .sub-tree-node > a {
  color: #fff;
  background: #d11b1a;
}
.sub-tree-items.current .sub-tree-node > a:before {
  background-image: url("../images/menu_arrh.png") !important;
}
.sub-tree-items.current .sub-tree-subs {
  display: block;
}
.sub-tree-items + .sub-tree-items {
  margin-top: 6px;
}
.sub-tree-items.hasChild .sub-tree-node > a:before {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 10px;
  height: 7px;
  background: url("../images/menu_arr.png") no-repeat center center;
}
.sub-tree-node .sub-tree-tt {
  position: relative;
  height: 50px;
  line-height: 50px;
  padding-left: 18px;
  color: #222;
}
.sub-tree-subs {
  padding-top: 6px;
  display: none;
}
.sub-tree-item .sub-tree-tt {
  height: 40px;
  line-height: 40px;
  padding-left: 30px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  box-sizing: border-box;
  position: relative;
}
.sub-tree-item .sub-tree-tt::before {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9a9a9a;
}
.sub-tree-item .sub-tree-tt:hover, .sub-tree-item .sub-tree-tt.active {
  color: #d11b1a;
  background: rgba(255, 71, 70, 0.2);
}
.sub-tree-item .sub-tree-tt:hover::before, .sub-tree-item .sub-tree-tt.active::before {
  background: #d11b1a;
}
.sub-tree-tt {
  display: block;
  font-size: 18px;
}
.sub-content {
  width: calc(100% - 220px - 20px);
  margin-left: 20px;
}

.module {
  height: 100%;
}

.com-list {
  border-bottom: 1px dashed #e5e5e5;
}

.condition {
  padding: 0 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.condition .condition-l {
  display: flex;
  align-items: center;
}
.condition .condition-l p {
  margin-left: 15px;
  color: #666666;
}
.condition .date-range {
  width: 270px;
  height: 32px;
  padding-left: 10px;
  padding-right: 30px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  background: #fff url("../images/rl_ico.png") 246px 50% no-repeat;
  background-size: 14px 14px;
  outline: 0;
  box-sizing: border-box;
}

.module-search {
  width: 300px;
  border-radius: 4px;
  height: 32px;
}
.module-search .module-search-input {
  height: 30px;
}

.data-table {
  width: 100%;
  table-layout: fixed;
}
.data-table,
.data-table th,
.data-table td {
  border: 1px solid #e5e5e5;
  text-align: center;
  font-size: 14px;
  color: #333;
  padding: 0 10px;
}
.data-table th {
  background: #D11B1A;
  color: #fff;
  font-weight: bold;
  height: 40px;
}
.data-table td {
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}