body {
    padding: 0;
    margin: 0;
    background: #ffd6b8;
}

.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;
    border-right: 1px solid #e4e4e4;
    padding: 15px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background: #fbe7d9
}

.date-num {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.date-week {
    font-size: 14px;
    color: #666;
    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;
    padding: 10px;
    background: #f3f3f3
}

.theme-title {
    margin: 5px auto;
    font-size: 13px;
    background: linear-gradient(to right, #be6435, #ffe3d8);
    padding: 5px;
    color: #fff;
}

.gap-line {
    border-bottom: 1px dashed #333;
    margin-top: 5px
}

/* 题材标签横排 */
.theme-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.bad-tag {
    color: #fff;
    background: #85aa01;
    border: 1px solid #85aa01;
}

.tag {
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin: 5px;
    line-height: 2.5;
    cursor: default;
}

.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.benefit-tag {
    color: #fff;
    background: #aa0101;
    border: 1px solid #aa0101;
}

.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;
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
}

.select-item {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 8px;
}

.btn {
    padding: 8px 16px;
    cursor: pointer;
    background: #aa0101;
    color: white;
    border: 2px solid #aa0101;
    border-radius: 4px;
    text-decoration: none;
}

.load-more {
    height: 20px;
    text-align: center;
    color: #333;
}

.search-panel {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #333;
}

.search-panel a {
    text-decoration:none;
    color: #333;
}


.footer {
    width: 100%;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #000;
}

.footer a{
    color:#333;
    text-decoration:none;
}