#main {
  background: #f9f9f9;
}

/* live-header */
.live-header {
  height: 168px;
  line-height: 168px;
  text-align: center;
  background-image: url(../images/live/header-bg.png);
  background-size: cover;
  font-size: 44px;
  color: #fff;
}

/* live */
.live-item {
  background: #fff;
  margin: 50px 2%;
  padding: 70px 50px;
  display: flex;
}
.live .live-left {
  flex: 1;
  overflow: hidden;
}
.live .live-left img {
  width: 100%;
  height: 470px;
  display: block;
  object-fit: cover;
  transition: transform .3s ease-in-out;
}
.live .live-left img:hover {
  transform: scale(1.05);
}
.live .live-right {
  width: 60%;
  min-width: 885px;
  margin-left: 60px;
}
.live .live-title {
  font-size: 23px;
  color: #000;
  font-weight: bold;
}
.live .live-address {
  font-size: 14px;
  color: #212121;
}
.live .live-tags {
  font-size: 14px;
  color: #363636;
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
}
.live .live-desc {
  border-top: dashed 1px #dedbdc;
  font-size: 14px;
  color: #868686;
  line-height: 22px;
  padding: 10px 0px;
}
.live .live-port {
  display: flex;
  justify-content: space-between;
}
.live .live-port dl {
  width: 428px;
}
.live .live-port dt {
  width: 100%;
  height: 242px;
  overflow: hidden;
}
.live .live-port dt img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform .3s ease-in-out;
}
.live .live-port dt:hover img {
  transform: scale(1.05);
}
.live .live-port dt video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.live .live-port dd {
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #f4f5f7;
  font-size: 14px;
  color: #363636;
}

.live-popup {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 10000;
  display: none;
  overflow-y: auto;
}
.live-popup .live-popup-inner {
  background: #fff;
  padding: 20px;
  width: 50vw;
  margin: 0 auto;
  margin-top: 20vh;
  position: relative;
}
.live-popup .live-popup-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-image: url(../images/live/close.png);
  background-size: cover;
}

@media screen and (max-width: 900px) {
  .live-header {
    font-size: 22px;
  }

  .live-item {
    padding: 10px;
    margin: 50px 10px;
  }
  .live .live-left {
    display: none;
  }
  .live .live-right {
    width: 100%;
    min-width: 0px;
    margin: 0px;
  }
  .live .live-tags {
    flex-wrap: wrap;
  }
  .live .live-tags span {
    width: 50%;
  }
  .live .live-port {
    flex-direction: column;
  }
  .live .live-port dl {
    width: 100%;
  }
}
