.photo-detail {
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  padding: 34px;
}

.photo-content {
  width: 100%;
  background-color: #606060;
  box-sizing: border-box;
  padding: 46px 60px 50px 60px;
}

.photo-info .info-name {
  font-size: 30px;
  color: #fff;
  padding-bottom: 16px;
}

.photo-info .info-date,
.photo-info .info-clicked {
  font-size: 12px;
  color: #ddd;
}

.photo-info .info-date {
  float: left;
  padding-right: 20px;
}

.photo-wrap {
  padding-top: 34px;
}

.photo-wrap .photo-big {
  width: 1050px;
  height: 600px;
  margin-bottom: 26px;
}

.photo-wrap .photo-big img {
  width: 100%;
  height: 100%;
}

.photo-wrap .photo-list {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 118px;
}

.photo-list .list-wrap {
  position: absolute;
  height: 118px;
  left: 62px;
  transition: all 0.5s ease-in;
}

.photo-list .list-wrap .list-item {
  float: left;
  width: 170px;
  height: 118px;
  margin-right: 18px;
  cursor: pointer;
}

.photo-list .list-wrap .list-item img {
  width: 100%;
  height: 100%;
}

.photo-list .list-wrap .current-item {
  box-sizing: border-box;
  border: 3px #ad0804 solid;
}

.photo-list .prev,
.photo-list .next {
  z-index: 99;
  position: absolute;
  width: 46px;
  height: 118px;
  background-color: #333;
  font-size: 32px;
  color: #fff;
  line-height: 118px;
  text-align: center;
  cursor: pointer;
}

.photo-list .prev {
  left: 0;
}

.photo-list .next {
  right: 0;
}
