/* Header */
.header {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.header .inner-logo img {
    max-height: 50px;
    max-width: 100%;
}

.header .inner-menu > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.header .inner-menu > ul > li {
    margin-left: 20px;
}

/* End header */

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}
/* End Footer */

/* box-head */
.box-head {
    margin-bottom: 30px;
}

.box-head .inner-title {
    margin-bottom: 0;
    font-size: 28px;
    font-weight: 600;
    color: black;
}

/* End box-head */

/* song-item */
.song-item {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.song-item .inner-image {
  width: 115px;
  aspect-ratio: 1/1;
  border-radius: 5px;
  overflow: hidden;
}

.song-item .inner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.song-item .inner-content {
  padding: 10px;
  flex: 1;
}

.song-item .inner-content .inner-title {
  white-space: pre-wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin-bottom: 5px;
}

.song-item .inner-content .inner-title a {
  font-size: 14px;
  font-weight: 700;
  color: #4d007d;
}

.song-item .inner-content .inner-title a:hover {
  color: #7c00c8;
  text-decoration: none;
}

.song-item .inner-content .inner-singer {
  font-size: 13px;
  font-weight: 500;
  color: #282828;
  margin-bottom: 2px;
}

.song-item .inner-content .inner-like {
  font-size: 13px;
  font-weight: 500;
  color: #004cd0;
  margin-bottom: 2px;
}

.song-item .inner-content .inner-time {
  font-size: 13px;
  font-weight: 500;
  color: #585858;
}

.song-item .inner-content .inner-heart {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
  cursor: pointer;
}

.song-item .inner-content .inner-heart.active {
  color: #b90000;
}

.song-item .inner-content .inner-heart.active i {
  font-weight: 900;
}
/* End song-item */

/* Singer-detail */
.singer-detail .inner-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #F57F20;
}

.singer-detail .inner-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
} 

.singer-detail .inner-actions .inner-action {
  margin-right: 20px;
  margin-bottom: 10px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #646464;
} 

.singer-detail .inner-actions .inner-action i{
  font-size: 16px;
  margin-right: 5px;
}

.singer-detail .inner-actions .inner-like {
  cursor: pointer;
}

.singer-detail .inner-actions .inner-like i {
  color: #0059ff;
}

.singer-detail .inner-actions .inner-like.active {
  color: #0059ff;
}

.singer-detail .inner-actions .inner-like.active i  {
  font-weight: 900;
}

.singer-detail .inner-actions .inner-heart {
  cursor: pointer;
}

.singer-detail .inner-actions .inner-heart i {
  color: #b90000;
}

.singer-detail .inner-actions .inner-heart.active {
  color: #b90000;
}

.singer-detail .inner-actions .inner-heart.active i {
  font-weight: 900;
}

.singer-detail .inner-play {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.singer-detail .inner-play .inner-audio {
  flex: 1
}

.singer-detail .inner-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #F57F20;
  margin-right: 20px;
  animation-name: spin;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.singer-detail .inner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.singer-detail .inner-desc {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 20px;
}

.singer-detail .inner-desc .inner-label {
  font-size: 16px;
  font-weight: 700;
  color: #F57F20;
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
}

.inner-detail .inner-desc .inner-text {
  font-size: 14px;
  padding: 10px 15px;
  white-space: pre;
}


/* End singer-detail */

/* box-search */
.box-search {
  position: relative;
}

.box-search .inner-suggest {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 300px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  z-index: 1;
  overflow-y: auto;
  display: none;
}

.box-search .inner-suggest.show {
  display: block;
}

.box-search .inner-suggest .inner-item {
  display: flex;
  align-items: center;
  padding: 5px;
  border-bottom: 1px solid #ddd;
}

.box-search .inner-suggest .inner-item:hover {
  background: #efefef;
  text-decoration: none;
}

.box-search .inner-suggest .inner-item:last-child {
  border-bottom: 0;
}

.box-search .inner-suggest .inner-item .inner-image{
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 5px;
  overflow: hidden;
}

.box-search .inner-suggest .inner-item .inner-info {
  flex: 1;
  margin-left: 10px;
}

.box-search .inner-suggest .inner-item .inner-info .inner-title {
 white-space: pre-wrap;
 overflow: hidden;
 text-overflow: ellipsis;
 -webkit-line-clamp: 1;
 -webkit-box-orient: vertical;
 display: -webkit-box;
 margin-bottom: 5px;
 font-size: 14px;
 font-weight: 700;
 color: #4d007d;
}

.box-search .inner-suggest .inner-item .inner-info .inner-singer {
  font-size: 13px;
  font-weight: 500;
  color: #282828;
  margin-bottom: 2px;
}

/* End box-search */

.card {
  width: 100%; 
  max-width: 400px;   
  margin: 0 auto;     
}

.card img {
  height: 330px;
  object-fit: cover;
}

img.logo {
  background-color: white; 
  padding: 5px;
  border-radius: 8px;
}







