        /* 右侧内容区 */
        .content {
            margin-left: 280px;
            padding: 25px;
            width: calc(100% - 240px);
            height: 100vh;
        }
        
        /* 文章内容页特定样式 */
        .article-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e0d5c0;
        }
        
        .article-title {
            font-size: 32px;
            color: #8B5A2B;
            margin-bottom: 15px;
            font-weight: normal;
            line-height: 1.3;
            text-align: center;
        }
        
        /* 外链发布面板 - 全屏版 */
        .full-width-panel {
            width: 100%;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            border: 1px solid #e0d5c0;
        }
        
        .panel-header {
            background-color: #8B5A2B;
            color: white;
            padding: 12px 15px;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 8px 8px 0 0;
        }
        
        .panel-header i {
            transition: transform 0.3s;
        }
        
        .panel-header.collapsed i {
            transform: rotate(0deg);
        }
        
        .panel-content {
            padding: 20px;
            display: none; /* 默认隐藏 */
            /*max-height: 400px;  限制表单高度 */
            overflow-y: auto; /* 允许内容滚动 */
        }
        
        .panel-content.expanded {
            display: block;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 14px;
            color: #a69b8a;
        }
        
        .article-meta span {
            margin: 0 15px;
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 5px;
            font-size: 14px;
        }
        /* 新增工具介绍板块样式 */
        .tool-intro {
            width: 100%;
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .tool-intro h3 {
            font-size: 18px;
            color: #8B5A2B;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0d5c0;
        }
        
        .tool-intro p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #5a4a3a;
        }
        
        .features-list {
            margin: 15px 0;
            padding-left: 20px;
        }
        
        .features-list li {
            margin-bottom: 8px;
            position: relative;
        }
        
        .features-list li:before {
            content: "•";
            color: #8B5A2B;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        .note-box {
            background-color: #F5E8C4;
            padding: 12px 15px;
            border-radius: 4px;
            margin-top: 15px;
            border-left: 4px solid #8B5A2B;
        }
        
        .url-form {
            display: flex;
            margin-bottom: 15px;
        }
        
        .url-form input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            outline: none;
            font-size: 14px;
        }
        
        .url-form button {
            padding: 10px 20px;
            background-color: #8B5A2B;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 14px;
        }
        
        .url-form button:hover {
            background-color: #7a4d24;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
            color: #666;
        }
        
        .form-group input, 
        .form-group textarea {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            outline: none;
            font-size: 14px;
        }
        
        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 10px;
            background-color: #8B5A2B;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            margin-top: 5px;
        }
        
        .submit-btn:hover {
            background-color: #7a4d24;
        }
        
        /* 分隔线 */
        .divider {
            height: 1px;
            background-color: #e0d5c0;
            margin: 20px 0;
        }
        
        /* 最新分享链接区域 */
        .shared-links {
            width: 100%;
            background-color: white; /* 白色背景 */
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .shared-links h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #8B5A2B;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0d5c0;
        }
        
        .links-grid {
            display: grid;
            grid-template-columns: 40px 40px 120px 1fr 150px 80px;
            align-items: center;
            gap: 8px;
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
            font-size: 14px;
        }
        
        .links-header {
            font-weight: bold;
            background-color: #f5f5f0;
            border-radius: 4px;
            padding: 10px 5px;
        }
        
        .links-item {
            padding: 6px 5px;
        }
        
        .ico-img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }
        
        .avatar-img {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .link-title a {
            color: #5a4a3a;
            transition: color 0.3s;
        }
        
        .link-title a:hover {
            color: #8B5A2B;
            text-decoration: underline;
        }
        
        .points {
            color: #8B5A2B;
            font-weight: bold;
            text-align: right;
        }
        
        .time {
            color: #888;
            font-size: 13px;
        }
        
        .username {
            font-weight: 500;
            font-size: 13px;
        }        

/* 简介板块样式*/
.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;
    white-space: pre-line;
}

        .link-download {
            margin-bottom: 30px;
        }
        
        .download-title {
            font-size: 18px;
            color: #8B5A2B;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .download-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .download-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #8B5A2B;
            color: white;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .download-btn:hover {
            background-color: #A67C52;
            transform: translateY(-2px);
        }