.content-view {
  background-image: url(/software/front/front_page/r/cms/hg/default/images/bg_01.png);
  background-size: cover;
  margin-bottom: 40px;
  display: flex;
}

.content-view .content-list {
  overflow-x: hidden;
  display: flex;
  flex: 1;
}

.content-view .left-arrow,
.content-view .right-arrow {
  display: flex;
  align-items: center;
  opacity: 0.5;
  padding: 10px;
}

.content-view .left-arrow.active,
.content-view .right-arrow.active {
  cursor: pointer;
  opacity: 1;
}

.content-view .content-list .content-item {
  width: calc(50%);
  flex-shrink: 0;
  /* margin: 0px 5px; */
}

.pic-item {
  margin: 40px 20px;
  color: #fff
}

.pic-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 10px
}

.pic-item .pic-name {
  margin-right: 20px
}

.pic-item .pic-author {
  font-size: 14px
}


@media screen and (max-width: 736px) {
  .content-view .content-list .content-item {
    width: calc(100%);
    flex-shrink: 0;
    margin: 0px;
  }
  .pic-item {
    margin: 10px 0px;
  }

  .pic-item img {
    height: 50vw;
  }

  .content-view .left-arrow, .content-view .right-arrow {
    padding: 4px;
  }

  .content-view .left-arrow img, .content-view .right-arrow img {
    width: 28px;
    height: 28px;
  }
}