body {
    margin: 0 auto;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', Arial, sans-serif;
}
a {
    color: inherit;
    text-decoration: none;
}
.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
.header {
    position: relative;
    padding: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
.header .icon {
    position: absolute;
    top: 15px;
    width: 24px;
    height: 24px;
    fill: #fff;
    cursor: pointer;
}
.header .icon.left {
    left: 15px;
}
.header .icon.right {
    right: 60px;
}
.header .icon.right + .icon.right {
    right: 15px;
}
.empty-list {
    text-align: center;
    padding: 50px 20px;
    color: #888;
}
.empty-list button {
    background-color: #fd0252;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}
.list {
    padding: 10px;
}
.list-item {
    display: flex;
    background-color: #1c1c1e;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 10px;
    align-items: center;
}
.list-item img {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    margin-right: 10px;
}
.list-item .info {
    flex: 1;
}
.list-item .info .title {
    font-size: 16px;
    margin-bottom: 5px;
}
.list-item .info .status {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}
.list-item .info .category {
    font-size: 14px;
    color: #888;
}
.tab-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    background-color: #1c1c1e;
    display: flex;
    justify-content: space-around;
    padding: 5px 0;
    z-index: 5;
}
.tab-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #8e8e93;
    text-decoration: none;
    font-size: 12px;
    flex: 1;
}
.tab-bar a.active {
    color: #fd0252;
}
.tab-bar svg {
    fill: currentColor;
    width: 24px;
    height: 24px;
}