.anime-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.anime-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 40px;
}

.anime-item {
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;  /* 过渡动画 */
}

.anime-item:hover {
    transform: translateY(-3px);  /* 悬停效果 */
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.anime-image {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
    border: 2px solid #e7eaf1;
}

.anime-info {
    flex: 1;
}

.anime-title {
    font-weight: bold;
    font-size: 18px;
    margin-right: 20px;
    display: block;
    margin-bottom: 8px;
}

.anime-progress, .anime-status, .anime-rating {
    color: #666;
    margin-right: 15px;
}

.anime-list.watching li {
    border-left: 4px solid #9A85FF;
}

.anime-list.completed li {
    border-left: 4px solid #22863a;
}

/* 响应式调整 */
@media screen and (max-width: 600px) {
    .anime-image {
        width: 60px;
        height: 90px;
    }
    
    .anime-title {
        font-size: 16px;
    }
    
    .anime-progress, .anime-status, .anime-rating {
        font-size: 14px;
        display: block;
        margin-bottom: 5px;
    }
}
