.wrap {
  background-color: #f7f7f7;
  padding: 10px 0 100px;
}

.video-crumbs {
  padding: 20px 0;
}
.wrap-content {
  display: flex;
  align-items: flex-start;
}
.video-box {
  position: relative;
}
.video-play {
  width: 64px;
  height: 42px;
  border: 3px solid #fff;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
}
.video-play-icon {
  width: 20px;
  height: 20px;
}
.video {
  width: 100%;
  min-height: 200px;
  object-fit: fill;
}
.video-content {
  background-color: #fff;
  padding: 20px;
  flex: 1;
  overflow: hidden;
}
.video-title {
  font-size: 20px;
  color: #3b3e40;
  line-height: 18px;
  margin: 40px 0 28px 0;
  font-weight: bold;
}
.video-summary {
  display: flex;
  justify-content: flex-end;
  padding-top: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e5e5;
}
.video-summary-item {
  display: flex;
  align-items: center;
  color: #999;
  margin-right: 15px;
  height: 14px;
}
.video-summary-item:first-child {
  border-right: 1px solid #e5e5e5;
  padding-right: 15px;
}
.video-summary-icon {
  width: 16px;
  margin-right: 6px;
}
.recommend {
  width: 288px;
  margin-left: 20px;
  background-color: #fff;
}
.recommend-title {
  padding: 20px 10px;
  font-size: 20px;
  padding-bottom: 10px;
  color: #474747;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 768px) {
  .wrap {
    padding: 0;
  }
  .video-crumbs {
    display: none;
  }
  .wrap-content.u-container {
    width: 100%;
    padding: 10px;
    display: block;
  }
  .video-content {
    padding: 0;
  }
  .video-title {
    padding: 0 20px;
    font-size: 18px;
    margin: 20px 0;
  }
  .recommend {
    width: 100%;
    margin: 10px 0 0;
  }
  .recommend-list {
    display: flex;
    flex-wrap: wrap;
  }
  .recommend-list .product-card {
    width: calc(50% - 5px);
    margin-top: 10px;
  }
  .recommend-list .product-card:nth-child(2n) {
    margin-left: 10px;
  }
}