        /* 右侧内容区 */
        .content {
            margin-left: 280px;
            padding: 25px;
            width: calc(100% - 240px);
            height: 100vh;
            overflow-y: auto;
        }
        
        /* 经文列表样式 */
        .scripture-list {
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 24px;
            color: #8B5A2B;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0d5c0;
        }
        
        .scripture-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .scripture-card {
            background-color: #fff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .scripture-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .scripture-name {
            font-size: 18px;
            font-weight: bold;
            color: #8B5A2B;
            margin-bottom: 10px;
        }
        
        .scripture-meta {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #888;
            margin-bottom: 15px;
        }
        
        .scripture-desc {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 15px;
        }
        
        .copy-btn {
            display: inline-block;
            padding: 8px 15px;
            background-color: #8B5A2B;
            color: white;
            border-radius: 4px;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        
        .copy-btn:hover {
            background-color: #6d4622;
        }
        
        /* 最新抄经记录样式 - 修改版 */
        .recent-records {
            margin-top: 40px;
        }
        
        .records-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .record-item {
            background-color: #fff;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #f0e6d2;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #8B5A2B;
            font-weight: bold;
            overflow: hidden;
            float: left;
        }
        
        .user-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .record-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .scripture-name-small {
            font-size: 16px;
            color: #8B5A2B;
            font-weight: bold;
        }
        
        .record-meta {
            font-size: 12px;
            color: #888;
            text-align: right;
        }
        
        .record-meta span {
            margin-left: 10px;
        }
        
        .record-time {
            color: #8B5A2B;
        }
        
        .record-desc {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
            clear: both;
            padding-top: 10px;
        }