.info-box{
    padding: 15px;
    border-radius: 15px;
    background-color: white;
}

.info-box img{
    width: 100%;
    height: 100%;
}

.info-box .name{
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: .5rem;
}

.info-box .info{
    font-size: .8rem;
    color: #b2b2b2;
}
.info-box .info img{
    width: .8rem;
}
.info-box .summary{
    color: #888;
    text-indent: 2rem;
}

.rank-name{
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 1rem;
    color: white;
}
.icon {
    width: 2rem;
}

.ranking{
    display: block;
    padding: .5rem;
    list-style-type: none;
}
.ranking li{
    width: 100%;
    padding: 5px;
    background-color: white;
    border-radius: 10px;
    margin-top: 10px;
}
.ranking li:hover{
    box-shadow: 5px 5px 10px rgba(0,0,0,0.4);
}
.ranking li a{
    display: flex;
    justify-content: start;
    gap: 10px;
    text-decoration: none;
}
.ranking li span{
    color: #464646;
    line-height: 3rem;
}
.ranking li img{
    width: 3rem;
    height: 3rem;
    border-radius: 10px;
    object-fit: cover;
}



/* 样式 */
.comic-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #ff5252;
  border: 2px solid #000;
  border-radius: 10px;
  box-shadow: 5px 5px 0px #000;
  transition: all 0.3s ease;
  cursor: pointer;
}

.comic-button:hover {
  background-color: #fff;
  color: #ff5252;
  border: 2px solid #ff5252;
  box-shadow: 5px 5px 0px #ff5252;
}

.comic-button:active {
  background-color: #fcf414;
  box-shadow: none;
  transform: translateY(4px);
}

/* tag */
.tag__name {
  display: inline-block;
  color: #fff;
  font-size: 1.1em;
  background-color: #9c87c0;
  padding: 6px 23px 9px;
  border-radius: 70em;
  margin: 8px 6px 8px 0;
  margin-left: 0px;
  position: relative;
  text-transform: lowercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.tag__name::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 40%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #554860;
}

.tag__name::before {
  left: 7px;
}

.tag__name::after {
  right: 7px;
}

.tag__name:hover {
  transform: scale(1.1);
  background-color: #9c87c0;
}