.content {
  width: 1400px;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 229px;
  position: relative;
  overflow: hidden;
}
.content .box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: solid 1px #e1e1e1;
}
.content .box-top .title {
  font-size: 36px;
  font-weight: bold;
  line-height: 36px;
  color: #972d2d;
}
.content .top {
  width: 100%;
  margin-top: 30px;
}
.content .top .search-bar {
  max-width: 800px;
  margin: 0 auto;
}
.content .top .search-bar:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  float: none;
  clear: both;
}
.content .top .input {
  float: left;
  padding: 0 26px;
  font-size: 14px;
  width: calc(100% - 220px);
  border: 1px solid #edecec;
  background-color: #f4f5f7;
  height: 52px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.content .top .submit {
  border: 0;
  color: #fff;
  font-size: 16px;
  width: 158px;
  box-sizing: border-box;
  height: 54px;
  line-height: 56px;
  text-align-last: left;
  padding-left: 60px;
  cursor: pointer;
  background: #972d2d;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.content .list {
  width: 100%;
  margin-top: 30px;
}
.content .list .item {
  padding: 20px;
  position: relative;
  border-bottom: solid 1px #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
}
.content .list .item:first-child {
  border-top: solid 1px #eee;
}
.content .list .item .left .title {
  font-size: 24px;
  line-height: 30px;
  color: #333;
  transition: 0.5s;
}
.content .list .item .left .p {
  display: flex;
  margin-top: 10px;
}
.content .list .item .left .p .name {
  font-size: 16px;
  line-height: 20px;
  color: #999;
  transition: 0.5s;
}
.content .list .item .left .p .num {
  font-size: 16px;
  line-height: 20px;
  color: #999;
  margin-left: 20px;
  transition: 0.5s;
}
.content .list .item .right {
  font-size: 18px;
  line-height: 22px;
  color: #999;
  transition: 0.5s;
  flex-shrink: 0;
}
.content .list .item a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.content .list .item:hover {
  background-color: #972d2d;
}
.content .list .item:hover .left .title {
  color: #fff;
}
.content .list .item:hover .left .p .name {
  color: #fff;
}
.content .list .item:hover .left .p .num {
  color: #fff;
}
.content .list .item:hover .right {
  color: #fff;
}
@media screen and (max-width: 1560px) {
  .content {
    width: 90%;
  }
}
