.news {
  display: flex;
  width: 1200px;
  margin: 50px 0px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}
.news .albumn {
  display: flex;
  width: 1200px;
  margin: 80px 0px 20px 0px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.news .albumn div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.3%;
  flex-shrink: 0;
  flex-grow: 0;
}
.news .albumn div img {
  width: 320px;
  max-height: 300px;
}
.news .albumn div p {
  margin: 20px;
}
.detail {
  display: flex;
  flex-direction: column;
}
.detail .title {
  display: flex;
  justify-content: center;
  font-size: 20px;
  line-height: 40px;
  margin: 20px 0px 10px 0px;
  border-bottom: dashed 1px silver;
}
.detail .pubdate {
  display: flex;
  justify-content: center;
  color: gray;
}
.detail .content {
  margin: 20px 0px;
  text-indent: 50px;
}
.list {
  display: flex;
  flex-direction: column;
}
.list .item {
  margin: 10px 0px;
  display: flex;
}
.list .item img {
  width: 150px;
  flex-shrink: 0;
  flex-grow: 0;
}
.list .item .content {
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  flex-grow: 1;
  margin: 0px 30px;
}
.list .item .content .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
}
.list .item .content .summary {
  font-size: 16px;
  color: gray;
  line-height: 30px;
  height: 60px;
  overflow: hidden;
}
.list .item .content .pubdate {
  line-height: 30px;
  font-size: 16px;
  color: gray;
}
.list .item .btn {
  display: flex;
  margin-left: 20;
  justify-content: center;
  align-items: center;
  width: 120px;
  flex-shrink: 0;
  flex-grow: 0;
}
