* {
  box-sizing: border-box;
  color: #c8c8c8;
  margin: 0;
  padding: 0;
}

body {
  background-attachment: fixed;
  background-image: url("../../img/bg-default.jpg");
}

.background-cover {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  position: relative;
}

.view-container {
  display: flex;
  flex-wrap: wrap;
}

.view-item-row {
  margin: 20px auto;
  width: 1000px;
}

.view-item-col {
  display: inline-block;
  height: 150px;
  margin-left: 20px;
  width: 300px;
}

.box-animation {
  transition: box-shadow .5s, filter .5s;
}

.box-animation:hover {
  -webkit-filter: brightness(1.5);
  filter: brightness(1.5);
  box-shadow: 0 0 30px black;
  cursor: pointer;
}

.detial-container {
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: flex;
  height: 60px;
  width: 300px;
}

.preview {
  display: flex;
  height: 180px;
  width: 300px;
  position: relative;
}

.preview img {
  position: relative;
  width: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity, 0.5s;
}

.preview_placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../img/404_preview-320x180.jpg") no-repeat center;
}

.icon {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.icon img{
  position: relative;
  z-index: 1;
  opacity: 0;
  width: 100%;
  transition: all, 0.5s;
}

.icon_placeholder{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../img/404_preview-300x300.png") no-repeat center;
}

.info {
  display: flex;
  flex-direction: column;
  width: 230px;
  margin-left: 10px;
}

.chanel{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
