/* album（相册列表） CSS*/
#albums{ padding:0;}
#albums li{list-style:none; display:inline-block; margin:10px; background:white;padding:10px 10px 5px 10px; cursor:pointer;box-shadow:2px 2px 3px rgba(0,0,0,0.5); text-align:center;}
#albums li:hover{background:#EEE; color:magenta;}
#albums a:hover{ text-decoration:none;}
#albums .cover{width:200px;height:150px;object-fit:cover;margin-bottom:3px;}
.album_title{font-size:14px;}
#create_album{ display:none; }
#create_album_toggle{ cursor:pointer; font-size:18px;}
#create_album_toggle:hover{ color:magenta; }
@media screen and (max-width:600px){
  #albums li{list-style:none; display:inline-block; margin:5px; padding:5px 5px 2px 5px;}
  #albums .cover{width:120px;height:90px; margin-bottom:2px;}
  .album_title{font-size:10px;}
}
