@charset "UTF-8";
.studio-wrapper > .title {
  font-size: 28px;
  color: #832a2c;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.studio-wrapper .studio-list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
  padding: 30px 0;
}
.studio-wrapper .studio-list .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  width: calc(50% - 10px);
  margin: 5px;
  border: 1px solid #ddd;
}
.studio-wrapper .studio-list .item:hover .name {
  color: #ae7e5a;
}
.studio-wrapper .studio-list .item:hover .name::after {
  background-color: #ae7e5a;
  width: 100%;
}
.studio-wrapper .studio-list .item:hover .info .cover img {
  transform: scale(1.1);
}
.studio-wrapper .studio-list .item:hover .info .right .detail {
  background: #ae7e5a;
}
.studio-wrapper .studio-list .item .name {
  position: relative;
  font-weight: 700;
  font-size: 20px;
  color: #832a2c;
  margin-bottom: 15px;
  padding-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.studio-wrapper .studio-list .item .name::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  display: block;
  height: 2px;
  background: #832a2c;
  transition: all 0.5s ease;
}
.studio-wrapper .studio-list .item .info {
  display: flex;
  align-items: flex-start;
}
.studio-wrapper .studio-list .item .info .cover {
  flex-shrink: 0;
  width: 130px;
  height: 180px;
  overflow: hidden;
}
.studio-wrapper .studio-list .item .info .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.studio-wrapper .studio-list .item .info .right {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  margin-left: 25px;
  font-size: 16px;
  height: 100%;
}
.studio-wrapper .studio-list .item .info .right .desc {
  text-align: justify;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.studio-wrapper .studio-list .item .info .right .detail {
  margin-top: 20px;
  display: flex;
  align-items: center;
  background-color: #832a2c;
  color: #fff;
  padding: 0 30px;
  height: 40px;
  line-height: 1;
  transition: all 0.5s ease;
}
@media (max-width: 980px) {
  .studio-wrapper {
    margin-top: 4vw;
  }
  .studio-wrapper > .title {
    font-size: 7vw;
    padding-bottom: 3.5vw;
  }
  .studio-wrapper .studio-list {
    padding: 6vw 0;
    margin: -1vw;
  }
  .studio-wrapper .studio-list .item {
    padding: 4vw;
    width: calc(100% - 2vw);
    margin: 1vw;
  }
  .studio-wrapper .studio-list .item .name {
    font-size: 5vw;
    margin-bottom: 2vw;
    padding-bottom: 2vw;
  }
  .studio-wrapper .studio-list .item .info .cover {
    height: 35vw;
    width: 26vw;
  }
  .studio-wrapper .studio-list .item .info .right {
    margin-left: 4.5vw;
    font-size: 4vw;
  }
  .studio-wrapper .studio-list .item .info .right .detail {
    margin-top: 2vw;
    height: 9vw;
    padding: 0 6vw;
  }
}
