        /* 右侧内容区 */
        .content {
            margin-left: 280px;
            padding: 25px;
            width: calc(100% - 240px);
            height: 100vh;
        }
        
        /* 抄经人详情头部 */
        .user-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e0d5c0;
        }
        
        .user-avatar-large {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #f0e6d2;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: #8B5A2B;
            font-weight: bold;
            font-size: 32px;
            overflow: hidden;
        }
        
        .user-avatar-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .user-info {
            flex-grow: 1;
        }
        
        .user-name {
            font-size: 28px;
            color: #8B5A2B;
            margin-bottom: 5px;
        }
        
        .user-title {
            font-size: 16px;
            color: #888;
            margin-bottom: 10px;
        }
        
        /* 抄经统计 */
        .copy-stats {
            display: flex;
            margin-bottom: 30px;
            gap: 20px;
        }
        
        .stat-card {
            flex: 1;
            background-color: #fff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .stat-value {
            font-size: 32px;
            color: #8B5A2B;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 14px;
            color: #888;
        }
        
        .section-title {
            font-size: 24px;
            color: #8B5A2B;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0d5c0;
        }
        
        /* 佛经列表 */
        .scripture-list {
            margin-bottom: 40px;
            margin-top: 40px;
        }
        
        .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;
        }
        
        
        /* 简介板块样式*/
.scripture-intro {
    background-color: #fff;
    border-radius: 4px;
    margin-top:40px;
    padding: 15px;
    margin-bottom: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.scripture-intro h2 {
    color: #333;
    font-size: 18px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: normal;
}

.scripture-intro h2 i {
    color: #8B5A2B;
    margin-right: 8px;
}

.intro-content {
    color: #555;
    line-height: 2.8;
     margin-top: -45px;  /* 上移内容区域 */
    white-space: pre-line;
}