:root {
  --author-card-width: calc((100% - var(--image-rc-gap) * 4) / 5);
}

.author {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}
.author .title {
  font-size: 46px;
  padding: 20px 40px 40px;
}
.author .author-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.author .author-list .arrow {
  width: var(--page-margin);
  height: var(--page-margin);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.3));
}
.author .author-list .author-box {
  display: flex;
  -moz-column-gap: var(--image-rc-gap);
       column-gap: var(--image-rc-gap);
  row-gap: var(--image-rc-gap);
  flex: 1;
  width: calc(100vw - var(--page-margin) * 2);
  scroll-behavior: smooth;
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
}
.author .author-list .author-box .author-item {
  flex: 0 0 auto;
  width: var(--author-card-width);
  height: var(--author-card-width);
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
}
.author .author-list .author-box .author-item .author-img-box {
  background: url("/static/images/author/bg.png") top no-repeat;
  background-size: 100% 60%;
  width: 100%;
  height: 45%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.author .author-list .author-box .author-item .author-img-box .author-img {
  height: 72px;
  width: 72px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.author .author-list .author-box .author-item .author-img-box .author-img:hover {
  transform: scale(1.05);
}
.author .author-list .author-box .author-item .author-img-box .author-name {
  font-weight: bold;
}
.author .author-list .author-box .author-item .works {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.author .author-list .author-box .author-item .works .info {
  display: flex;
  justify-content: center;
  padding: 5px 40px 0;
}
.author .author-list .author-box .author-item .works .info .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.author .author-list .author-box .author-item .works .info .item .name {
  font-size: 14px;
  color: #bfbfbf;
}
.author .author-list .author-box .author-item .works .info .item .value {
  font-size: 24px;
  font-weight: bold;
}
.author .author-list .author-box .author-item .works .works-img-box {
  display: flex;
  -moz-column-gap: 6px;
       column-gap: 6px;
  width: 100%;
  padding: 0 6px 6px;
}
.author .author-list .author-box .author-item .works .works-img-box .works-img {
  width: calc((100% - 12px) / 3);
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}
.author .author-list .author-box .author-item .works .works-img-box .works-img:hover {
  transform: scale(1.05);
}

@media (max-width: 1299.99px) {
  .author .author-list {
    position: relative;
  }
  .author .author-list .arrow {
    position: absolute;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .author .author-list .arrow.left {
    left: 0;
  }
  .author .author-list .arrow.right {
    right: 0;
  }
  .author .author-list .author-box {
    margin: 0 10px;
  }
  .author .author-list .author-box .author-item .works .info {
    padding: 5px 20px 0;
  }
}/*# sourceMappingURL=index.css.map */