@charset "UTF-8";
/**
* 合作专栏
* date:2022-10-31
* author: hjh;
 */
.container {
  width: 1200px;
}

.pager {
  position: absolute;
  width: 100%;
  bottom: 26px;
}

.notice-wrap {
  position: relative;
  min-height: 925px;
  margin-bottom: 67px;
  background: #fff;
  box-shadow: 0px 0px 15px rgba(17, 64, 128, 0.12);
  border-radius: 3px;
  box-sizing: border-box;
  padding-bottom: 90px;
  padding-top: 24px;
}
.notice-type {
  display: flex;
}
.notice-type-item {
  height: 30px;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  padding: 0 10px;
  margin-left: 10px;
  color: #333;
  border: 1px solid transparent;
}
.notice-type-item.active {
  color: #ad000e;
  border: 1px solid #AD000E;
}
.notice-type-wrap {
  margin: 0 auto 29px;
  width: 1152px;
  height: 120px;
  background: #FFF5F6;
  box-sizing: border-box;
  padding-top: 20px;
}
.notice-row {
  display: flex;
  margin-bottom: 20px;
}
.notice-row > span {
  width: 90px;
  font-size: 14px;
  line-height: 30px;
  text-align: right;
  color: #333;
}
.notice-th {
  display: flex;
  width: 1151px;
  height: 60px;
  background: #a50005;
  font-size: 18px;
  line-height: 60px;
  color: #fff;
  margin: 0 auto;
}
.notice-th-item {
  padding: 0 20px;
}
.notice-th-item:nth-child(1) {
  flex: 1;
}
.notice-th-item:nth-child(2) {
  width: 256px;
  text-align: center;
}
.notice-list {
  width: 1151px;
  margin: 0 auto;
}
.notice-item {
  display: flex;
  width: 100%;
  height: 60px;
  font-size: 16px;
  line-height: 60px;
  color: #333;
}
.notice-item:hover {
  color: #a50005;
}
.notice-item:hover .notice-content {
  color: #a50005;
}
.notice-item:nth-child(even) {
  background: #f5f5f5;
}
.notice-item > span {
  padding: 0 20px;
  overflow: hidden;
}
.notice-item > span:nth-child(1) {
  flex: 1;
}
.notice-item > span:nth-child(2) {
  width: 256px;
  text-align: center;
}
.notice-content {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #333;
}