
    /* 新增：文字编辑区域模块样式 */
    .text-editor-section {
        margin-top: 20px;
              
    }
    
    
    .text-editor-grid {
        display: grid;
        grid-template-columns: 1fr; /* 移动端单列 */
        gap: 20px;
    }
    
    @media (min-width: 768px) {
        .text-editor-grid {
            grid-template-columns: repeat(2, 1fr); /* 平板端两列 */
        }
    }
    
    @media (min-width: 1024px) {
        .text-editor-grid {
            grid-template-columns: repeat(4, 1fr); /* 桌面端四列 */
            gap: 30px;
        }
    }
    
    .text-editor-box {
        background: #ffffff;
        
        
        padding: 10px;
        min-height: 100px;
        transition: all 0.3s ease;
    }
    
    .text-editor-box:hover {
        border-color: #ba372a;
        box-shadow: 0 4px 12px rgba(186, 55, 42, 0.1);
    }
    
    .text-editor-box:focus-within {
        border-color: #ba372a;
        box-shadow: 0 0 0 3px rgba(186, 55, 42, 0.1);
    }
    
    .text-editor-content {
        width: 100%;
        height: 100%;
        min-height: 100px;
        border: none;
        outline: none;
        resize: vertical; /* 允许垂直调整大小 */
        font-family: inherit;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        background: transparent;
    }
    
    .text-editor-content:focus {
        outline: none;
    }
    
    .text-editor-content::placeholder {
        color: #999;
        font-style: italic;
    }
    
    .box-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .box-title {
        font-size: 18px;
        font-weight: 600;
        color: #ba372a;
        margin: 0;
    }
    
    .box-number {
        background: #ba372a;
        color: white;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: bold;
    }
