
.deve .wrap {
  background: #fff;
  padding: 36px 0;
}
.deveList li {
  position: relative;
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
.deveList li::before {
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  border-left: 1px solid #eee;
  content: "";
  display: block;
}
.deveList li:first-child::before {
  top: 30px;
}
.deveList li:last-child::before {
  bottom: auto;
  height: 30px;
}
.deveList .deveContent {
  border-bottom: 1px solid #eee;
  padding: 30px 0;
  flex: 1;
  overflow: hidden;
}
.deveYear {
  position: sticky;
  top: 20px;
  margin-top: 20px;
  background: #fff;
  font-size: 36px;
  width: 160px;
  text-align: center;
  line-height: 1;
  padding: 10px 0;
  font-family: "rubik";
  transition: all ease .3s;
  float: left;
}
.deveList li:hover .deveYear{
  color: #fdd000;
}
.deveList li:last-child .deveContent {
  border-bottom: none;
}
.deveLine {
  padding-left: 68px;
  padding-right: 34px;
}
.deveLine:hover .deveMonth{
  color: #fdd000;
}
.deveLine:nth-child(n + 2) {
  margin-top: 18px;
}
.deveLine .deveMonth {
  transition: all ease .3s;
  width: 68px;
  float: left;
  font-size: 24px;
  line-height: 36px;
  margin-left: -68px;
  text-align: center;
  font-family: "rubik";
}
.deveCon {
  line-height: 24px;
  padding: 6px 0;
  font-size: 18px;
}
.deveAlbum,
.deveAlbumLong,
.deveAlbumVideo {
  margin-top: 8px;
}
.deveAlbum img,
.deveAlbumLong img,
.deveAlbumVideo img {
  margin-top: 6px;
  margin-right: 6px;
  object-fit: cover;
  cursor: pointer;
  vertical-align: top;
}
.deveAlbumLong img {
  cursor: default;
}
.deveAlbum img:hover,
.deveAlbumVideo img:hover {
  outline: 6px solid #fdd000;
}

.devePopup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 999;
}
.devePopupCon {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: table;
  text-align: center;
}
.devePopupConImg {
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.devePopupConImg img {
  max-width: 800px;
  max-height: 600px;
  background: #fff;
}

.videoPopup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: none;
}
.videoPopupCon {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: table;
  text-align: center;
}
.videoPopupConVideo {
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.videoPopupConVideo div {
  background: #fff;
  width: 800px;
  display: inline-block;
  position: relative;
}
.videoPopupConVideo h3 {
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  background: #353535;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: 0 100px 0 20px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.videoPopupConVideo iframe {
  width: 800px;
  height: 600px;
  margin: 0;
  padding: 0;
}
.videoPopupConCloseBtn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  line-height: 50px;
  padding: 0 20px;
  cursor: pointer;
  color: #999;
  transition: all ease 0.3s;
}
.videoPopupConCloseBtn svg {
  transition: all ease 0.3s;
}
.videoPopupConCloseBtn:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
}
.videoPopupConCloseBtn:hover svg {
  transform: rotate(90deg);
}

@media screen and (max-width:800px){
  .deveList li{
    max-width: 100%;
  }
  .deveYear{
    width: 80px;
    line-height: 24px;
    font-size: 24px;
    word-break: break-all;
    text-align: center;
  }
  .deveList li::before{
    left: 40px;
  }
  .deveLine .deveMonth{
    width: auto;
    margin-left: 0;
    float: none;
    text-align: left;
  }
  .deveLine{
    padding-left: 0;
    padding-right: 12px;
  }
  .deveCon{
    font-size: 16px;
  }
  .deveAlbum img, .deveAlbumLong img, .deveAlbumVideo img{
    width: 30%!important;
    height: auto!important;
    vertical-align: top;
    float: left;
  }
  .deveAlbum, .deveAlbumLong, .deveAlbumVideo{
    overflow: hidden;
  }
  .devePopupConImg img{
    max-width: 100%;
    max-height: 100%;
  }
}