@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  /* Safari and Chrome */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
main {
  position: relative;
  min-height: 89vh;
  background-color: #cccccc;
  padding-top: 110px;
  padding-bottom: 80px;
}
.inner_page__container {
  margin: 0 auto;
  background-color: #ffffff;
  -webkit-animation: fadein 2s;
          animation: fadein 2s;
  width: 65%;
  padding: 36px;
  -webkit-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.5);
          box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.5);
  -webkit-box-sizing: border-box;
         box-sizing: border-box;
}
.inner_page__video {
  /* padding-top: 16px; */
}
.inner_page__video iframe {
  border: none;
  height: 34vw;
}
.inner_page__title {
  font-weight: 600;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  color: #222222;
  margin: 22px 0;
}
.inner_page__description {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 78px;
}
.inner_page__left {
  width: 70%;
  padding-right: 20px;
  max-width: 100%;
}
.inner_page__left iframe{
  width: 100%;
  height: 330px;
  min-height: auto;
}
.inner_page__left p {
  padding: 7px 0;
  font-size: 14px;
  color: #222222;
  line-height: 21px;
}
.inner_page__left img {
    max-width: 100%;
    height: auto;
}
.inner_page__right {
  border-left: 1px solid #dedede;
  width: 30%;
  padding-left: 20px;
}
.inner_page__right p {
  padding: 7px 0;
  font-size: 14px;
  color: #222222;
  line-height: 21px;
}
.like__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.like__block {
  color: #000000;
  font-size: 17px;
  padding: 5px 10px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}
.like__block i {
  font-size: 14px;
}
.like__block.disabled {
  color: #7b7c7e;
}
.like__block.disabled i {
  font-size: 17px;
}
.like__block:hover i {
  font-size: 17px;
}
.inner_page__sub_title {
  margin: 42px 0 28px 0;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  color: #222222;
  padding-bottom: 20px;
  border-bottom: 1px solid #dedede;
}
.similar__background {
  opacity: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.similar__link {
  height: 13vw;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.similar__link img {
   max-height: 100%;
  /*max-width: 100%; */
}
.similar__link:hover .similar__background {
  opacity: 1;
}
.similar__name {
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  color: #ffffff;
}
.similar__categories {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-style: normal;
  font-size: 14px;
  color: #ffffff;
}
.similar__like {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-style: normal;
  font-size: 14px;
  color: #ffffff;
}
.similar {
  position: relative;
  margin-bottom: 28px;
}
.slick-arrow {
  position: absolute;
  top: -70px;
  font-size: 0;
  border: none;
  background-color: #ffffff;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  padding: 5px;
}
.slick-arrow:hover {
  background-color: #ddd;
}
.slick-arrow.slick-prev {
  right: 20px;
}
.inner_page__photo .slick-arrow.slick-prev:after {
  content: '';
  border-left: 2.5px solid #777;
  border-top: 2.5px solid #777;
  border-radius: 2px;
  transform: rotate(-45deg);
  margin-right: -3.5px;
  width: 7px;
  height: 7px;
  display: flex;
  position: absolute;
  top: calc(50% - 3.5px);
  left: calc(50% - 3.5px);
}
.slick-arrow.slick-next {
  right: 0px;
}
.inner_page__photo .slick-arrow.slick-next:after {
  content: '';
  border-right: 2.5px solid #777;
  border-bottom: 2.5px solid #777;
  border-radius: 2px;
  transform: rotate(-45deg);
  margin-left: -3.5px;
  width: 7px;
  height: 7px;
  display: flex;
  position: absolute;
  top: calc(50% - 3.5px);
  left: calc(50% - 3.5px);
}

.inner_page__photo .slick-arrow {
    position: absolute;
    bottom: 14px;
    top: auto;
    font-size: 0;
    border: none;
    background-color: #000000;
    outline: none;
    cursor: pointer;
    z-index: 5;
    width: 34px;
    height: 34px;
    border-radius: 5px;
    color: #ffffff;
    font-family: 'FontAwesome';
}
.inner_page__photo .slick-arrow:hover {
    background-color: #ffffff;
    color: #000000;
}
.inner_page__photo .slick-arrow.slick-prev {
    right: 48px;
    bottom: 12px;
}
/* .inner_page__photo .slick-arrow.slick-prev:after {
    content: "\f053";
    font-size: 14px;
} */
.inner_page__photo .slick-arrow.slick-next {
    right: 12px;
    bottom: 12px;
    border-radius: 5px;
}
/* .inner_page__photo .slick-arrow.slick-next:after {
    content: "\f054";
    font-size: 14px;
} */
.inner_page__photo .slick-disabled {
    opacity: 0.3;
}
.inner_page__btn {
  position: fixed;
  width: 60px;
  height: 60px;
  top: -webkit-calc(50% - 30px);
  top: calc(50% - 30px);
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 5px #000000;
          box-shadow: 0px 0px 5px #000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 5;
}
.inner_page__btn_left {
  left: 0;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}
.inner_page__btn_right {
  right: 0;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
.inner_page__photo {
  margin-bottom: 20px;
}
.inner_page__photo_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*overflow: hidden;*/
  /*height: 55vw;*/
  /*margin-right: 10px;*/
  /*margin-left: 10px;*/
  /*max-height: 400px;*/
  outline: none;
}
.inner_page__photo_container img {
  /*height: 100%;*/
  width: 100%;
}
.slick-track {
    display: flex;
    align-items: center;
}
.inner_page__photo .slick-dots {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
    position: absolute;
    bottom: 19px;
    right: 89px;
}
.inner_page__photo .slick-dots button {
    background-color: #fff;
    opacity: 0.5;
    border: none;
    margin: 6px 5px 6px 4px;
    border-radius: 50%;
    font-size: 0;
    width: 6px;
    height: 6px;
    outline: none;
    padding: 0;
    cursor: pointer;
}
.inner_page__photo .slick-dots .slick-active button {
    opacity: 1;
}
@media (max-width: 1024px) {
  main {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .inner_page__container {
    width: 100%;
  }
  .inner_page__video iframe {
    height: 50vw;
  }
  iframe {
    width: 100%;
    height: auto;
    /* padding: 20px 0; */
    min-height: 55vw;
  }
}
@media (max-width: 769px) {
  .inner_page__btn {
    width: 40px;
    height: 40px;
    top: 70%;
  }
  .inner_page__left {
    width: 100%;
    padding-right: 0;
  }
  .inner_page__left iframe{
    width: 100%;
    height: auto;
    min-height: 55vw;
  }
  .inner_page__right {
    padding-top: 12px;
    margin-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    width: 100%;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
  }
  .inner_page__description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .inner_page__description {
    margin-bottom: 0;
  }
  .inner_page__sub_title {
    margin: 45px 0 28px 0;
  }
  .similar__name {
    font-size: 12px;
  }
  .inner_page__title {
    font-size: 18px;
    line-height: normal;
  }
  .similar__link {
    height: 60vw;
  }
}
@media (max-width: 480px) {
  main {
    padding-bottom: 0;
  }
}
