body[data-type="todolist"] #web_bg {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}
body[data-type="todolist"] #page {
    border: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    background: 0 0 !important;
    transition: background 0.3s;
}
body[data-type="todolist"] #page .page-title {
    display: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
/* Todolist */
#todolist-box {
    margin: 0 10px;
    animation: fadeIn 1s ease-in-out;
}
#todolist-main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 16px 0 10px;
}
#todolist-main li {
    list-style: none;
    font-size: 17px;
    list-style-type: none; /* 确保移除默认的方框 */
}
#todolist-main ul {
    margin: 0;
    padding: 0;
}
#todolist-left {
    width: 50%;
    padding: 0 8px 0 0;
}
#todolist-right {
    width: 50%;
    padding: 0 0 0 8px;
}
.todolist-item {
    position: relative;
    background: #fae4df;
    border-radius: 12px;
    padding: 10px 1rem 1.2rem;
    border: 2px dashed #f7a796;
    margin-bottom: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.todolist-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
[data-theme=dark] .todolist-item {
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    border: 2px dashed #51908b;
}
li.todolist-li i {
    margin-left: 10px;
}
h3.todolist-title {
    margin: 0 !important;
    border-bottom: var(--todo-border);
}
li.todolist-li {
    border-bottom: var(--todo-border);
    font-weight: normal;
    margin-left: -10px;
}
li.todolist-li-done {
    border-bottom: var(--todo-border);
    font-weight: normal;
    text-decoration: none;
}
li.todolist-li-done::before {
    content: '✔';
    color: white(255, 255, 255);
    margin-right: 10px;
}
.todolist-li span {
    margin-left: 5px;
}
.todolist-li-done span {
    margin-left: 5px;
    text-decoration: line-through;
}
@media screen and (max-width: 700px) {
    #todolist-left,
    #todolist-right {
        width: 100%;
        padding: 0;
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
