    /*系统分页分页函数css*/
    .page-numbers {
        background-color:#F6F6E8;
        color: #000000;
        font-size:14px;
        padding: 1px 6px;
        display: inline-block;
        text-decoration: none;
        border: 1px solid #e0e0e0;
        text-align:center;
        margin:0px auto 10px;
        line-height: 17px
    }
    .pages span{
         background-color:#DDDDDD;
    }
    /*系统文章分页css*/
    .post-pages{
        text-align:center;
        font-size:14px;
    }
    .post-pages a{
        background-color:#F6F6E8;
        color: #000000;
        font-size:14px;
        padding: 1px 6px;
        display: inline-block;
        text-decoration: none;
        border: 1px solid #e0e0e0;
        text-align:center;
        margin:0px auto 10px;
        line-height: 17px
    }
    
    /*走心评论标记CSS*/
    .heartborder {
        border: 1px solid #3b8cff;
        border-radius: 5px;
        padding: 10px;
    }
    .heartitle {
        background: #3b8cff;
        color: #fff;
        padding: 2px 6px;
        text-align: center;
        border-radius: 5px;
        float: right;
        margin-left: 5px;
    }
    .opacolor {
        color:transparent;
    }
    .heart {
        float:right;
        margin-top:-4px;
        cursor:pointer;
    }
    .beats {
    	background-color: red;
    	transform: rotate(-45deg);
    	top: 0;
    	left: 0;
    	right: 0;
    	bottom: 0;
    	margin: auto;
    	animation: beat 1.5s infinite;
    }
    .beats::after , .beats::before {
    	content: '';
    	display: block;
    	background-color: red;
    	border-radius: 50%;
    	animation: beat 1.5s infinite;
    }
    .beats::before {
    	transform: translate(0, -50%);
    }
    .beats::after {
    	transform: translate(50%, -100%);
    }
    
    @keyframes beat {
    	0% {
    		width: 10px;
    		height: 10px;
    	}
    	15% {
    		width: 12px;
    		height: 12px;
    	}
    	30% {
    		width: 10px;
    		height: 10px;
    	}
    	45% {
    		width: 12px;
    		height: 12px;
    	}
    	60% {
    		width: 10px;
    		height: 10px;
    	}
    	100% {
    		width: 10px;
    		height: 10px;
    	}
    }
    /*走心评论标记CSS*/
    
    /*以下是data页面右键样式---------------------------------*/    
    /* 添加新的样式 */
    .highlight {
        background-color: #ffeb3b;
    }
    
    .underline {
        text-decoration: underline;
    }
    
    .context-menu {
        display: none;
        position: absolute;
        background-color: white;
        border: 1px solid #ccc;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
        padding: 5px 0;
        z-index: 1000;
    }
    
    .context-menu-item {
        padding: 8px 15px;
        cursor: pointer;
    }
    
    .context-menu-item:hover {
        background-color: #f0f0f0;
    }
    
    .modal {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1001;
    }
    
    .modal-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 1000;
    }
    
    /* 修改弹出界面样式 */
    .marker-popup {
        z-index: 999999;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        display: none;
        position: absolute;
        border-radius: 8px;
        padding: 15px;
        width: 300px;
        box-sizing: border-box;
    }
    
    .color-options {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
        width: 100%;
        box-sizing: border-box;
        align-items: center;
    }
    
    .color-option, .custom-color-btn {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid transparent;
        box-sizing: border-box;
    }
    
    .color-option.selected, .custom-color-btn.selected {
        border-color: #333;
    }
    
    .custom-color {
        display: inline-flex;
        align-items: center;
    }
    
    .custom-color-btn {
        position: relative;
        overflow: hidden;
    }
    
    .custom-color-btn::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: repeating-linear-gradient(
            45deg,
            #ff0000 0%,
            #ff8000 12.5%,
            #ffff00 25%,
            #00ff00 37.5%,
            #00ffff 50%,
            #0000ff 62.5%,
            #8000ff 75%,
            #ff0000 87.5%,
            #ff8000 100%
        );
    }
    
    /* 当选中时隐藏渐变动画 */
    .custom-color-btn.selected::before {
        display: none;
    }
    
    .custom-color input[type="color"] {
        opacity: 0;
        position: absolute;
        top: -5px;
        left: -5px;
        width: 35px;
        height: 35px;
        cursor: pointer;
        padding: 0;
        border: none;
    }
    
    /* 添加颜色选择器下边框样式 */
    .custom-color input[type="color"]::-webkit-color-swatch-wrapper {
        padding: 0;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    
    .custom-color input[type="color"]::-webkit-color-swatch {
        border: none;
        border-radius: 4px;
    }
    
    /* Firefox 样式 */
    .custom-color input[type="color"]::-moz-color-swatch {
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    
    /* 修改颜色选择器弹出位置 */
    .custom-color {
        position: relative;
    }
    
    .custom-color input[type="color"] {
        transform-origin: top left;
        transform: scale(1.2);  /* 稍微放大颜色选择器 */
    }
    
    .underline-options {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .underline-option {
        padding: 3px 5px;
        border: 1px solid #ddd;
        border-radius: 4px;
        cursor: pointer;
    }
    
    .underline-option.selected {
        background-color: #e0e0e0;
    }
    
    .form-group {
        margin-bottom: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 5px;
    }
    
    .form-group select,
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box;
        resize: vertical;
        max-width: 100%;
    }
    
    .button-group {
        display: flex;
        gap: 10px;
        justify-content: flex-end;
    }
    
    .button-group button {
        padding: 8px 15px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
    
    .save-btn {
        background-color: #4CAF50;
        color: white;
    }
    
    .cancel-btn {
        background-color: #f0f0f0;
    }
    
    /*正文标记内容鼠标悬停效果代码------------------------*/
    
    /* 基础样式 */
    span[title]:not([title=""]) {
        position: relative;
        cursor: help;
        display: inline;
    }
    
    /* tooltip 样式 */
    span[title]:not([title=""])::before {
        content: attr(title);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding: 6px 12px;
        background-color: rgba(51, 51, 51, 0.95);
        color: #fff;
        font-size: 13px;
        line-height: 1.5;
        white-space: pre-wrap;
        border-radius: 4px;
        text-align: left;
        width: max-content;
        max-width: 250px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        bottom: calc(100% + 10px); /* 默认在上方 */
    }
    
    /* 箭头样式 */
    span[title]:not([title=""])::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: rgba(51, 51, 51, 0.95);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        bottom: calc(100% + 4px); /* 默认在上方 */
    }
    
    /* 当元素靠近顶部时的样式 */
    span[title]:not([title=""]).tooltip-bottom::before {
        bottom: auto;
        top: calc(100% + 10px);
    }
    
    span[title]:not([title=""]).tooltip-bottom::after {
        bottom: auto;
        top: calc(100% + 4px);
        border-top-color: transparent;
        border-bottom-color: rgba(51, 51, 51, 0.95);
    }
    
    /* 悬停效果 */
    span[title]:not([title=""]):hover::before,
    span[title]:not([title=""]):hover::after {
        opacity: 1;
        visibility: visible;
    }
    
    /*以下是标记修改样式-----------------------------------------------*/
    /* 页面整体样式 */
    .marker-edit-page {
        max-width: 800px;
        margin: 40px auto;
        padding: 0 20px;
    }
    
    /* 页面标题和预览区域 */
    .marker-edit-header {
        margin-bottom: 30px;
    }
    
    .marker-edit-header h1 {
        color: #333;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .marker-text-preview {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 30px;
    }
    
    .marker-text-preview label {
        display: block;
        font-weight: 600;
        margin-bottom: 10px;
        color: #666;
    }
    
    .marker-text-preview .text-content {
        font-size: 16px;
        line-height: 1.6;
        color: #333;
    }
    
    /* 编辑容器 */
    .marker-edit-container {
        background: #fff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    }
    
    /* 表单组样式 */
    .edit-form-group {
        margin-bottom: 25px;
    }
    
    .edit-form-group label {
        display: block;
        margin-bottom: 10px;
        font-weight: 500;
        color: #333;
        font-size: 16px;
    }
    
    /* 颜色选项样式 */
    .edit-color-options {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    
    .edit-color-option {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.2s ease;
    }
    
    .edit-color-option.selected {
        border: 2px solid #000;  /* 圆形黑色边框 */
    }
    
    /* 自定义颜色选择器 */
    .edit-custom-color {
        width: 40px;
        height: 40px;
    }
    
    .edit-custom-color-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 2px solid transparent;
    }
    
    .edit-custom-color-btn input[type="color"] {
        width: 100%;
        height: 100%;
        padding: 0;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        -webkit-appearance: none;
    }
    
    .edit-custom-color-btn input[type="color"]::-webkit-color-swatch-wrapper {
        padding: 0;
    }
    
    .edit-custom-color-btn input[type="color"]::-webkit-color-swatch {
        border: none;
        border-radius: 50%;
    }
    
    .edit-custom-color.selected .edit-custom-color-btn {
        border: 2px solid #000;  /* 与普通颜色选项相同的圆形黑色边框 */
    }
    
    /* 下划线选项样式 */
    .edit-underline-options {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .edit-underline-option {
        padding: 8px 16px;
        border: 1px solid #ddd;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s ease;
        font-size: 14px;
    }
    
    .edit-underline-option:hover {
        background-color: #f5f5f5;
    }
    
    .edit-underline-option.selected {
        background-color: #007bff;
        color: white;
        border-color: #007bff;
    }
    
    /* 分类选择器样式 */
    #editCategorySelect {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background-color: #fff;
        font-size: 14px;
    }
    
    /* 文本区域样式 */
    #editNoteInput {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        resize: vertical;
        min-height: 100px;
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* 按钮组样式 */
    .edit-button-group {
        display: flex;
        justify-content: flex-end;
        gap: 15px;
        margin-top: 30px;
    }
    
    .edit-save-btn, .edit-cancel-btn {
        padding: 10px 24px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    
    .edit-save-btn {
        background-color: #007bff;
        color: white;
        border: none;
    }
    
    .edit-save-btn:hover {
        background-color: #0056b3;
    }
    
    .edit-cancel-btn {
        background-color: #f8f9fa;
        color: #333;
        border: 1px solid #ddd;
    }
    
    .edit-cancel-btn:hover {
        background-color: #e9ecef;
    }
    
    /* 响应式调整 */
    @media (max-width: 768px) {
        .marker-edit-page {
            margin: 20px auto;
        }
        
        .marker-edit-container {
            padding: 20px;
        }
        
        .edit-color-option, .edit-custom-color {
            width: 30px;
            height: 30px;
        }
        
        .edit-custom-color-btn {
            width: 100%;
            height: 100%;
        }
        
        .edit-underline-option {
            padding: 6px 12px;
        }
        
        .edit-button-group {
            flex-direction: column-reverse;
        }
        
        .edit-save-btn, .edit-cancel-btn {
            width: 100%;
        }
    }
    
    /*以下是data页面鼠标滑过样式---------------------------------*/
    /* 鼠标悬停效果 */
    .marker-item:hover .hover-content {
        z-index: 999999;
        display: block !important;
    }