.content {
  padding: 15px 0px;
  position: relative;
  min-height: 790px;
    width: 1440px;
  margin: auto;
}
.content .item {
  height: 300px;
  border-bottom: 1px solid #dedede;
  display: flex;
  align-items: center;
}
.content .item .image {
  height: 220px;
  width: 335px;
  margin-right: 30px;
  /* box-sizing: content-box; */
}
.content .item .image img {
  width: 100%;
  height: 100%;
}
.content .item .news {
  display: flex;
  width: 1025px;
  align-items: center;
  transition: all 2s;
}
.content .item .news .left {
  height: 80px;
  background-color: #f15921;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* 此处控制显示隐藏 */
  /* width: 80px; */
  transition: all 1s;
  width: 0px;
  margin-right: 0px;
  opacity: 0;
}
.content .item .news .left .top {
  font-size: 30px;
  font-weight: bolder;
}
.content .item .news .left .bot {
  font-size: 12px;
}
.content .item .news .right {
  height: 220px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content .item .news .right .time {
  color: #f15921;
  font-weight: bold;
  line-height: 30px;
  /* 隐藏 */
  transition: all 1s;
  height: 30px;
  overflow: hidden;
  opacity: 1;
}
.content .item .news .right h1 {
  line-height: 45px;
  font-weight: bold;
  font-size: 20px;
}
.content .item .news .right p {
  line-height: 35px;
}
.content .item:hover .news {
  background-color: #f2f2f2;
}
.content .item:hover .news .left {
  width: 80px;
  margin-right: 35px;
  opacity: 1;
}
.content .item:hover .news .right .time {
  height: 0px;
  opacity: 0;
}
