body{padding:0; margin: 0;}

.calendar-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.day-row {
    display: flex;
    background: white;
    border-radius: 12px;
    margin-bottom: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    position: relative;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05), /* 基础阴影 */ 0 6px 0 -2px #f0f0f0, /* 第一层叠加纸张 */ 0 7px 0 -2px #dcdcdc, /* 第一层纸张的边框 */ 0 12px 0 -4px #f8f8f8, /* 第二层叠加纸张 */ 0 13px 0 -4px #dcdcdc; /* 第二层纸张的边框 */
}

.day-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1),
    0 8px 0 -2px #f0f0f0,
    0 9px 0 -2px #dcdcdc,
    0 14px 0 -4px #f8f8f8,
    0 15px 0 -4px #dcdcdc;
    border-left: 5px solid #aa0101;
}

.date-column {
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #eee;
    border-right: 1px solid #e4e4e4;
    padding: 15px;
}

.date-num {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.date-week {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

.info-column {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, #e1b9b9, #fafafa);
    border-left: 1px solid #eee;
}

/* 题材标签横排 */
.theme-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.tag {
    background: #e6f7ff;
    color: #1890ff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.summary {
    font-size: 14px;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 最多显示两行摘要 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content {
    font-size: 12px;
    font-weight: 500;
    display: block;
}

.month-p {
    background: linear-gradient(to right, #eee, #fff);;
    border: 1px solid #fff;
    border-radius: 3px;
    padding: 3px;
    font-size: 15px;
}