.chara {
  padding-top: 120px;
}

@media only screen and (max-width: 960px) {
  .chara {
    padding-top: 80px;
  }
}

.chara .title {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 80px;
}

@media only screen and (max-width: 960px) {
  .chara .title {
    font-size: 30px;
  }
}

.chara .title::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -12px;
  width: 40%;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(30%, white), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), white 30% 70%, rgba(0, 0, 0, 0));
}

.chara_tab {
  width: 900px;
  margin: 60px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.chara_tab_item {
  position: relative;
  width: 70px;
  cursor: pointer;
  margin-left: 5px;
}

@media only screen and (max-width: 960px) {
  .chara_tab {width: 90%;}
  .chara_tab_item {
    width: 15%;
    margin: 0 0.5% 1% 0.5%;
  }
}
@media only screen and (min-width: 961px) {
  .chara_tab_item:first-child {
    margin-left: 0;
  }
}

.chara_tab_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  -webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media only screen and (min-width: 961px) {
  .chara_tab_item:hover::before {
    opacity: 0;
  }
}

.current.chara_tab_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
}

.chara_list {
  position: relative;
  max-width: 1000px;
  width: 80%;
  margin: 50px auto 0;
}

@media only screen and (max-width: 960px) {
  .chara_list {
    margin: 20px auto 0;
  }
}

.current.chara_item {
  opacity: 1;
  position: relative;
  -webkit-transform: translate(0, 0px);
          transform: translate(0, 0px);
  margin-top: 0;
  -webkit-transition: opacity 0.8s ease 0.3s, -webkit-transform 0.8s cubic-bezier(0.43, 0.72, 0.57, 1.01) 0.3s;
  transition: opacity 0.8s ease 0.3s, -webkit-transform 0.8s cubic-bezier(0.43, 0.72, 0.57, 1.01) 0.3s;
  transition: opacity 0.8s ease 0.3s, transform 0.8s cubic-bezier(0.43, 0.72, 0.57, 1.01) 0.3s;
  transition: opacity 0.8s ease 0.3s, transform 0.8s cubic-bezier(0.43, 0.72, 0.57, 1.01) 0.3s, -webkit-transform 0.8s cubic-bezier(0.43, 0.72, 0.57, 1.01) 0.3s;
  pointer-events: auto;
}

.chara_item {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 5px);
          transform: translate(0, 5px);
  width: 100%;
  width: 100%;
  padding-top: 30px;
  -webkit-transition: opacity 0.3s ease 0s, -webkit-transform 0.3s cubic-bezier(0.43, 0.72, 0.57, 1.01) 0s;
  transition: opacity 0.3s ease 0s, -webkit-transform 0.3s cubic-bezier(0.43, 0.72, 0.57, 1.01) 0s;
  transition: opacity 0.3s ease 0s, transform 0.3s cubic-bezier(0.43, 0.72, 0.57, 1.01) 0s;
  transition: opacity 0.3s ease 0s, transform 0.3s cubic-bezier(0.43, 0.72, 0.57, 1.01) 0s, -webkit-transform 0.3s cubic-bezier(0.43, 0.72, 0.57, 1.01) 0s;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 960px) {
  .chara_item {
    display: block;
  }
}

.chara_item::before {
  content: "";
  width: 200%;
  height: 250px;
  background: #fff;
  position: absolute;
  top: 215px;
  left: -50%;
  z-index: -1;
  opacity: 0.2;
}

@media only screen and (max-width: 960px) {
  .chara_item::before {
    bottom: -40px;
    top: auto;
    height: 60%;
  }
}

.chara_item .chara_img {
  width: 45%;
}

@media only screen and (max-width: 960px) {
  .chara_item .chara_img {
    width: 100%;
    margin: 0 auto;
  }
}

.chara_item .chara_info {
  width: 55%;
  margin-top: 100px;
}

@media only screen and (max-width: 960px) {
  .chara_item .chara_info {
    width: 100%;
    margin: 20px auto 0;
  }
}

.chara_item .name {
  font-size: 32px;
  letter-spacing: 0.05em;
}

.chara_item .name span {
  font-size: 22px;
}

@media only screen and (max-width: 960px) {
  .chara_item .name {
    font-size: 28px;
  }
  .chara_item .name span {
    font-size: 18px;
  }
}

.chara_item .cv {
  font-size: 20px;
  margin-top: 20px;
}

@media only screen and (max-width: 960px) {
  .chara_item .cv {
    font-size: 16px;
    margin-top: 10px;
  }
}

.chara_item .text {
  margin-top: 40px;
  line-height: 1.6em;
}

@media only screen and (max-width: 960px) {
  .chara_item .text {
    font-size: 13px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: #ccc solid 1px;
  }
}
/*# sourceMappingURL=luoxiaohei-movie-2nd_chara.css.map */