.w {
  width: 1200px;
  margin: 0 auto;
}
.main {
  margin: 40px 0 40px 0;
}
.main .w {
  border: 2px solid #eee;
  padding: 40px 90px 80px 90px;
}
.main .w .main-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 20px;
}
.main .w .main-top .title {
  font-size: 28px;
  color: #ca0000;
  font-weight: 700;
}
.main .w .main-top .breadcrumbs {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #999;
}
.main .w .main-top .breadcrumbs img {
  width: 18px;
  margin-right: 10px;
}
.main .w .main-top .breadcrumbs .active {
  color: #ca0000;
}
.main .w .main-list {
  font-size: 16px;
}
.main .w .main-list .list-item {
  line-height: 40px;
  border-bottom: 1px dashed #eee;
  padding: 20px 0;
}
.main .w .main-list .list-item:last-child {
  border: 0;
}
.main .w .main-list .list-item li {
  position: relative;
  padding-left: 20px;
}
.main .w .main-list .list-item li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: #ca0000;
}
.main .w .main-list .list-item li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
}
.main .w .main-list .list-item li a .text {
  width: 80%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.main .w .main-list .list-item li a .date {
  width: 20%;
  color: #c2c2c2;
  text-align: right;
}
.main .w .main-list .list-item li a:hover {
  color: #ca0000;
}
.main .w .main-list .list-item li a:hover .date {
  color: #ca0000;
}
.main .w .paging {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.main .w .paging a {
  display: flex;
  justify-content: center;
  margin: 0 5px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #fff;
  border: 1px solid #ebebeb;
  color: #bdbdbd;
  font-size: 14px;
}
.main .w .paging a:hover {
  background-color: #ca0000;
  color: #fff;
}
.main .w .paging .active {
  display: flex;
  justify-content: center;
  margin: 0 5px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #ca0000;
  color: #fff;
  font-size: 14px;
  border: 1px solid #ca0000;
}
.main .w .paging .jump-ipt {
  display: flex;
  justify-content: center;
  margin: 0 5px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: #fff;
  border: 1px solid #ebebeb;
  outline: none;
  color: #ca0000;
  font-size: 14px;
}
