        /* 右侧内容区 */
        .content {
            margin-left: 280px;
            padding: 25px;
            width: calc(100% - 240px);
            height: 100vh;
        }
        
        /* 抄经页面特定样式 */
        .copy-scripture-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .scripture-title {
            font-size: 32px;
            color: #8B5A2B;
            margin-bottom: 20px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 1px solid #e0d5c0;
        }
        .scripture-title {
    font-size: 32px;
    color: #8B5A2B;
    margin-bottom: 5px;  /* 减少下边距，让副标题更靠近 */
    text-align: center;
    padding-bottom: 0;   /* 移除主标题的下边距 */
    border-bottom: none; /* 移除主标题的下边框 */
}

.scripture-subtitle {
    font-size: 20px;
    color: #8B5A2B;
    margin-top: 0;       /* 移除上边距 */
    margin-bottom: 20px; /* 保持与下方内容的间距 */
    text-align: center;
    font-weight: normal;
    opacity: 0.9;
    letter-spacing: 1px; /* 稍微增加字间距提升美观度 */
    padding-bottom: 15px;
    border-bottom: 1px solid #e0d5c0; /* 将边框移到副标题下方 */
}
        .scripture-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            color: #8B5A2B;
            font-size: 14px;
        }
        
        /* 经文段落样式 */
        .scripture-paragraph {
            margin-bottom: 30px;
        }
        
        .original-text {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 10px;
            text-align: justify;
        }
        
        /* 抄写区域样式 */
        .copy-line {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }
        
        .copy-char {
            position: relative;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        
        .copy-char input {
            width: 40px;
            height: 40px;
            text-align: center;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 4px;
            outline: none;
            background-color: #fff;
        }
        
        .copy-char input.correct {
            border-color: #8B5A2B;
            background-color: rgba(139, 90, 43, 0.1);
        }
        
        .copy-char input.incorrect {
            border-color: #ff6b6b;
            background-color: rgba(255, 107, 107, 0.1);
        }
        
        .copy-char input.disabled {
            background-color: #f5f5f5;
            cursor: not-allowed;
        }
        
        .copy-char .char-hint {
            position: absolute;
            top: -15px;
            left: 0;
            width: 100%;
            text-align: center;
            font-size: 12px;
            color: #8B5A2B;
        }
        
        .copy-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e0d5c0;
        }
        
        .timer {
            font-size: 16px;
            color: #8B5A2B;
        }
        
        .control-btn {
            padding: 10px 20px;
            background-color: #8B5A2B;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
            margin-left: 10px;
        }
        
        .control-btn:hover {
            background-color: #6d4622;
        }
        
        .control-btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }
        
        .pause-btn {
            background-color: #5a4a3a;
        }
        
        /* 弹窗样式 */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: #fff;
            padding: 25px;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 20px;
            color: #888;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .modal-close:hover {
            background-color: #f0f0f0;
            color: #333;
        }
        
        .modal-title {
            font-size: 24px;
            color: #8B5A2B;
            margin-bottom: 20px;
            text-align: center;
            padding-right: 20px;
        }
        
        .modal-info {
            margin-bottom: 20px;
        }
        
        .modal-info p {
            margin-bottom: 10px;
        }
        
        .modal-actions {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .modal-btn {
            padding: 8px 16px;
            margin: 0 10px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .modal-btn:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }
        
        .share-btn {
            background-color: #8B5A2B;
            color: white;
        }
        
        .close-btn {
            background-color: #ddd;
            color: #333;
        }
        
        /* 用户信息表单 */
        .user-form {
            margin-top: 20px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #8B5A2B;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }
        
        /* 表单输入框焦点样式 */
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #8B5A2B;
            box-shadow: 0 0 0 2px rgba(139, 90, 43, 0.2);
            outline: none;
        }
        
        /* 加载状态 */
        button[disabled] {
            opacity: 0.7;
            cursor: not-allowed;
        }

        /* 新增样式：快捷法语选择 */
        .prayer-quick-select {
            margin-top: 5px;
        }
        
        .prayer-quick-select label {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
            color: #8B5A2B;
        }
        
        .quick-select-options {
            display: flex;
            flex-wrap: wrap;
            gap: 2.5px;
            margin-bottom: 10px;
        }
        
        .quick-select-btn {
            padding: 4px 8px;
            background-color: #f0e6d2;
            border: 1px solid #d4c9b1;
            border-radius: 4px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .quick-select-btn:hover {
            background-color: #e0d5c0;
        }
        
 /* 最新抄经人列表样式 */
.recent-copiers {
    max-width: 820px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: "Noto Sans SC", sans-serif;
}

.recent-copiers h2 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 50px;
    font-weight: 500;
    position: relative;
}

.recent-copiers h2:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #e0c9b1, #c8a87d, #e0c9b1);
    border-radius: 3px;
}

.copiers-list {
    display: grid;
    gap: 25px;
}

.copier-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.copier-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.copier-header {
    display: flex;
    padding: 12px;
    align-items: center;
    position: relative;
}

.copier-header:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(to right, transparent, #f0e6d6, transparent);
}

.copier-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 18px;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.copier-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.copier-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    flex: 1;
}

.copier-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.copier-scripture {
    font-size: 15px;
    color: #8d6e63;
    font-weight: 500;
    background: rgba(141, 110, 99, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

.copier-time {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
}

.copier-time:before {
    content: "⌛";
    margin-right: 5px;
    font-size: 12px;
}

.copier-date {
    font-size: 13px;
    color: #999;
    margin-left: auto;
    background: rgba(0, 0, 0, 0.02);
    padding: 4px 10px;
    border-radius: 4px;
}

.copier-description {
    padding: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    position: relative;
}

.copier-description i {
    color: #c8a87d !important;
    font-size: 16px;
    margin-right: 10px;
    vertical-align: middle;
}

/* 简介板块样式*/
.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;
}


