html,
body {
  padding: 0;
  margin: 0;
  font-family: Microsoft YaHei;
  height: 100%;
  width: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
div {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
}
.content {
  flex: 1;
  width: 1200px;
  margin: 0px auto;
  padding-bottom: 90px;
}
.content .link {
  font-size: 18px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #999999;
  margin-top: 40px;
}
.content .search {
  display: flex;
  width: 6.6rem;
  padding-top: 35px;
  padding-bottom: 40px;
  margin: 0px auto;
}
.content .search input {
  flex: 1;
  height: 47px;
  background: #FFFFFF;
  border-top-left-radius: 23px;
  border-bottom-left-radius: 23px;
  padding-left: 15px;
  border: 1px solid #C4C4C4;
}
.content .search input:focus {
  outline: none;
}
.content .search img {
  cursor: pointer;
}
.content .list .listItem {
  margin-bottom: 40px;
}
.content .list .listItem .title {
  font-size: 24px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #333333;
  line-height: 24px;
}
.content .list .listItem a {
  text-decoration: none;
}
.content .list .listItem .detail {
  font-size: 18px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
  line-height: 36px;
  margin-top: 15px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 设置显示的行数 */
  -webkit-box-orient: vertical;
  /* 设置内容为垂直排列 */
  overflow: hidden;
  text-overflow: ellipsis;
}
.content .list .listItem .time {
  height: 14px;
  font-size: 18px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #A8A8A8;
  line-height: 24px;
}
