/* ========== 作品发布器样式 ========== */

/* ========== 图片网格展示样式 ========== */
.ardata-add-image-section {
    margin-bottom: 10px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
}

.ardata-add-image-section > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.ardata-add-image-section h3 {
    color: white;
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
}

.ardata-add-image-section h3 i {
    margin-right: 8px;
}

.ardata-add-image-section p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 12px;
}

#ardata_add_images_btn {
    background: white;
    color: #667eea;
    border: 2px solid white;
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    font-size: 14px;
}

#ardata_add_images_btn i {
    margin-right: 6px;
}

#ardata_add_images_btn:hover {
    background: #667eea !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.6) !important;
}

.ardata-waterfall-gallery {
    min-height: 180px;
    background: transparent;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 3px;
    align-items: stretch;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.ardata-waterfall-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: white;
    height: 180px;
}

.ardata-waterfall-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.ardata-waterfall-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
}

.ardata-waterfall-item:hover img {
    transform: scale(1.03);
    filter: brightness(1.03);
}

/* 删除按钮 */
.ardata-remove-waterfall-image {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(220, 53, 69, 0.95);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.9);
    z-index: 15;
    backdrop-filter: blur(4px);
}

.ardata-waterfall-item:hover .ardata-remove-waterfall-image {
    opacity: 1;
    transform: scale(1);
}

.ardata-remove-waterfall-image:hover {
    background: rgba(220, 53, 69, 1);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.5);
}

.ardata-remove-waterfall-image i {
    margin-right: 4px;
}

/* 遮罩层 */
.ardata-waterfall-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.ardata-waterfall-item:hover .ardata-waterfall-overlay {
    opacity: 1;
}

.ardata-waterfall-overlay i {
    color: white;
    font-size: 28px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* 空状态 */
.ardata-empty-placeholder {
    text-align: center;
    padding: 40px 15px;
    color: #999;
}

.ardata-empty-placeholder i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 12px;
    display: block;
}

.ardata-empty-placeholder p {
    font-size: 14px;
    margin: 0;
}

/* 响应式布局 */
@media (max-width: 1200px) {
    .ardata-waterfall-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 3px;
    }
    
    .ardata-waterfall-item {
        height: 170px;
    }
}

@media (max-width: 768px) {
    .ardata-waterfall-gallery {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 3px;
    }
    
    .ardata-waterfall-item {
        height: 150px;
        border-radius: 8px;
    }
    
    .ardata-remove-waterfall-image {
        padding: 5px 10px;
        font-size: 11px;
        top: 6px;
        right: 6px;
    }
    
    .ardata-waterfall-item:hover img {
        transform: scale(1.02);
    }
    
    .ardata-waterfall-overlay i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .ardata-waterfall-gallery {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 3px;
    }
    
    .ardata-waterfall-item {
        height: 130px;
        border-radius: 6px;
    }
    
    .ardata-remove-waterfall-image {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .ardata-waterfall-overlay i {
        font-size: 20px;
    }
}

/* ========== 媒体库弹窗样式优化 ========== */
.media-modal {
    z-index: 999999 !important;
}

.media-modal-backdrop {
    z-index: 999998 !important;
    background: rgba(102, 126, 234, 0.4) !important;
    backdrop-filter: blur(4px);
}

.media-frame {
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

.media-frame .media-frame-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    height: 60px !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.media-frame .media-frame-title h1 {
    color: white !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    line-height: 60px !important;
    padding-left: 20px;
}

.media-modal-close {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-radius: 8px !important;
    width: 40px !important;
    height: 40px !important;
    margin: 10px !important;
    transition: all 0.3s ease !important;
}

.media-modal-close:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1) rotate(90deg);
}

.media-modal-close span {
    margin-top: -4px !important;
}

.media-frame .media-router {
    background: #f8f9fa !important;
    border-bottom: 2px solid #e9ecef !important;
}

.media-router .media-menu-item {
    color: #6c757d !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
    padding: 12px 20px !important;
    margin: 0 !important;
}

.media-router .media-menu-item:hover {
    color: #667eea !important;
    background: rgba(102, 126, 234, 0.08) !important;
}

.media-router .media-menu-item.active {
    color: #667eea !important;
    border-bottom: 3px solid #667eea !important;
    background: white !important;
    font-weight: 600 !important;
}

.media-frame .media-toolbar {
    background: white !important;
    border-bottom: 1px solid #e9ecef !important;
    height: auto !important;
    padding: 12px 16px !important;
}

.media-frame .attachments-browser .attachments {
    border-right: 1px solid #e9ecef !important;
    background: #fafbfc !important;
}

.media-frame .attachments-browser .media-sidebar {
    background: white !important;
}

.media-frame .attachment {
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
    margin: 4px !important;
}

.media-frame .attachment:hover {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25) !important;
    transform: translateY(-3px) scale(1.02) !important;
}

.media-frame .attachment.selected {
    box-shadow: inset 0 0 0 5px #667eea, 0 4px 12px rgba(102, 126, 234, 0.4) !important;
    transform: scale(1.02) !important;
}

.media-frame .attachment.details .check {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4) !important;
    border: 3px solid white !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
}

.media-frame .attachment.details .check:after {
    font-size: 16px !important;
    line-height: 24px !important;
}

.uploader-inline {
    border: 3px dashed #667eea !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    margin: 20px !important;
}

.uploader-inline:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%) !important;
    border-color: #5568d3 !important;
    transform: scale(1.01);
}

.uploader-inline .drag-drop-inside {
    color: #667eea !important;
    padding: 40px 20px !important;
}

.uploader-inline .drag-drop-inside p {
    color: #6c757d !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

.uploader-inline .drag-drop-inside p.drag-drop-info {
    font-size: 13px !important;
    color: #adb5bd !important;
}

.browser.button,
.media-button-select {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35) !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.browser.button:hover,
.media-button-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5) !important;
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%) !important;
}

.browser.button:active,
.media-button-select:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3) !important;
}

.media-toolbar-primary .media-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35) !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    height: auto !important;
}

.media-toolbar-primary .media-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5) !important;
}

.media-toolbar-primary .media-button:disabled {
    background: #e9ecef !important;
    color: #adb5bd !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}

.media-toolbar-secondary .media-button {
    color: #667eea !important;
    border: 2px solid #667eea !important;
    background: white !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
}

.media-toolbar-secondary .media-button:hover {
    background: rgba(102, 126, 234, 0.1) !important;
    transform: translateY(-1px);
}

.media-progress-bar {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 10px !important;
    height: 6px !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.attachment .media-progress-bar {
    animation: progressPulse 1.5s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.media-toolbar .search {
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    transition: all 0.3s ease !important;
}

.media-toolbar .search:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    outline: none !important;
}

.media-sidebar .attachment-details {
    padding: 20px !important;
}

.media-sidebar .attachment-info {
    background: #f8f9fa !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin-bottom: 15px !important;
}

.media-sidebar .setting {
    border-bottom: 1px solid #e9ecef !important;
    padding: 15px 0 !important;
}

.media-sidebar .setting:last-child {
    border-bottom: none !important;
}

.media-frame select {
    border: 2px solid #e9ecef !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
    transition: all 0.3s ease !important;
}

.media-frame select:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    outline: none !important;
}

.attachment-info .thumbnail {
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.attachment-info .details {
    padding-top: 15px !important;
}

.attachment-info .filename {
    font-weight: 600 !important;
    color: #333 !important;
    word-break: break-all !important;
}

.media-frame .spinner {
    border: 3px solid rgba(102, 126, 234, 0.2) !important;
    border-top-color: #667eea !important;
    border-radius: 50%;
    animation: mediaSpinner 0.8s linear infinite;
}

@keyframes mediaSpinner {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .media-frame .media-frame-title h1 {
        font-size: 16px !important;
    }
    
    .media-modal-close {
        width: 36px !important;
        height: 36px !important;
    }
    
    .browser.button,
    .media-button-select {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
}

/* ========== 编辑器状态栏 ========== */
.mce-statusbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 0 0 8px 8px;
    padding: 8px 10px;
}

.mce-path-item {
    color: rgba(255, 255, 255, 0.9) !important;
}

.mce-path-item:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.2) !important;
}

/* ========== 错误状态样式 ========== */
.major-checkbox-grid.error {
    border: 2px solid #e74c3c;
    padding: 10px;
    border-radius: 8px;
}

.major-checkbox-grid.error label {
    border-color: #e74c3c !important;
}

.major-error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 10px;
    padding: 8px 12px;
    background: #fee;
    border-radius: 4px;
    border-left: 3px solid #e74c3c;
}

.creator-major-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #fef3c7;
    border: 2px solid #fbbf24;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
}

.creator-major-item input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.creator-major-item span {
    color: #1f2937;
}

.creator-major-item:hover {
    background: #fde68a;
    border-color: #f59e0b;
    transform: translateY(-1px);
}

.creator-major-item input[type="checkbox"]:checked + span,
.creator-major-item:has(input[type="checkbox"]:checked) {
    background: #fbbf24;
    border-color: #f59e0b;
}

.skills-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f8f9fa;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
}

.skills-checkbox-item input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.skills-checkbox-item span {
    color: #1f2937;
}

.skills-checkbox-item:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
    transform: translateY(-1px);
}

.skills-checkbox-item input[type="checkbox"]:checked + span,
.skills-checkbox-item:has(input[type="checkbox"]:checked) {
    background: #dbeafe;
    border-color: #3b82f6;
}

.skills-checkbox-item input[type="checkbox"]:checked {
    accent-color: #3b82f6;
}

.creator-major-item input[type="checkbox"]:checked {
    accent-color: #f59e0b;
}

/* ========== 表单错误状态样式 ========== */
.line-form-input.error {
    border-color: #e74c3c !important;
    background-color: #fee;
}

/* 复选框悬停效果 */
.creator-major-field .checkbox-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* === 职业方向选项增强样式 === */
.creator-major-item {
    color: #1f2937 !important;
}

.creator-major-item span {
    color: #1f2937 !important;
    font-weight: 500;
}

.creator-major-item:hover {
    transform: translateY(-1px);
}

.creator-major-item input[type="checkbox"] {
    accent-color: #f59e0b;
}

/* 技能选项增强样式 */
.skills-checkbox-item {
    color: #1f2937 !important;
}

.skills-checkbox-item span {
    color: #1f2937 !important;
    font-weight: 500;
}

.skills-checkbox-item:hover {
    transform: translateY(-1px);
}

.skills-checkbox-item input[type="checkbox"] {
    accent-color: #2563eb;
}

/* === 使用工具复选框样式 === */
.tools-checkbox-item {
    transition: all 0.15s ease;
    min-width: 0;
}

.tools-checkbox-item:hover {
    background: #dbeafe !important;
    border-color: #3b82f6 !important;
    transform: translateY(-0.5px);
    box-shadow: 0 2px 5px rgba(59, 130, 246, 0.2);
}

.tools-checkbox-item:hover span {
    color: #1e40af !important;
}

.tools-checkbox-item:has(input[type="checkbox"]:checked) {
    background: #10b981 !important;
    border-color: #059669 !important;
    box-shadow: 0 1px 4px rgba(16, 185, 129, 0.25);
}

.tools-checkbox-item:has(input[type="checkbox"]:checked) span {
    color: #ffffff !important;
    font-weight: 600;
}

.tools-checkbox-item input[type="checkbox"] {
    accent-color: #10b981;
}

/* === 作品类型复选框样式 === */
.work-type-checkbox-item {
    transition: all 0.15s ease;
    min-width: 0;
}

.work-type-checkbox-item:hover {
    background: #fde68a !important;
    border-color: #f59e0b !important;
    transform: translateY(-0.5px);
    box-shadow: 0 2px 5px rgba(245, 158, 11, 0.2);
}

.work-type-checkbox-item:hover span {
    color: #92400e !important;
}

.work-type-checkbox-item:has(input[type="checkbox"]:checked) {
    background: #f59e0b !important;
    border-color: #d97706 !important;
    box-shadow: 0 1px 4px rgba(245, 158, 11, 0.25);
}

.work-type-checkbox-item:has(input[type="checkbox"]:checked) span {
    color: #ffffff !important;
    font-weight: 600;
}

.work-type-checkbox-item input[type="checkbox"] {
    accent-color: #f59e0b;
}

/* ========== 表单辅助样式 ========== */
.form-help {
    color: #ddd;
    margin-top: 6px;
    display: block;
    font-size: 12px;
}

.form-help .fa-info-circle {
    color: #3b82f6;
}

.form-label {
    color: #fff;
    font-weight: 600;
}

.form-label .fa-wrench {
    color: #10b981;
}

.form-label .fa-cube {
    color: #f59e0b;
}

.optional {
    color: #aaa;
}

/* ========== 标签选择器样式 ========== */
.tools-work-types-row {
    margin: 20px 0;
    gap: 15px;
}

.tool-work-type-column {
    flex: 1;
    min-width: 300px;
}

.selected-tags-container {
    min-height: 40px;
    padding: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
}

.selected-tags-container .empty-placeholder {
    color: #888;
    font-size: 12px;
    font-style: italic;
}

/* ========== 下拉选择器样式优化 ========== */
/* 下拉框基础样式 */
.tools-work-selector {
    padding: 10px 12px;
    background-color: #ffffff;
    color: #1e293b;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

/* 下拉列表分类标题（optgroup）样式 */
.tools-work-selector optgroup {
    font-weight: 700;
    font-size: 13px;
    color: #1e293b;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    padding: 8px 10px;
    margin-top: 4px;
    border-top: 2px solid #3b82f6;
    font-style: normal;
    letter-spacing: 0.5px;
}

/* 下拉列表选项样式 */
.tools-work-selector option {
    padding: 8px 15px;
    font-size: 13px;
    color: #334155;
    background: #ffffff;
    font-weight: 400;
}

.tools-work-selector option:hover {
    background: #f1f5f9;
}

/* 针对使用工具选择器的分类标题 - 绿色主题 */
#tools_used_selector optgroup {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-top-color: #10b981;
    color: #065f46;
}

/* 针对作品类型选择器的分类标题 - 橙色主题 */
#work_types_selector optgroup {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-top-color: #f59e0b;
    color: #78350f;
}

.tools-work-selector:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

#tools_used_selector:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

#work_types_selector:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* ========== 作品详情行布局 ========== */
.work-detail-info-title {
    color: #fff;
}

.work-detail-row {
    flex-wrap: nowrap;
}

.work-detail-column {
    min-width: 180px;
    flex-shrink: 0;
}

/* ========== 特色图片预览 ========== */
.featured-edit-preview {
    text-align: center;
}

.featured-image-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}

.featured-image-wrapper img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 4px;
}

.featured-image-wrapper .but.jb-red {
    position: absolute;
    top: 5px;
    right: 5px;
}

/* ========== 提示信息样式 ========== */
.info-complete-prompt {
    margin-top: 8px;
    font-size: 13px;
}

/* ========== 编辑器主盒子 ========== */
.editor-main-box {
    min-height: 60vh;
}

/* ========== 教学管理样式 ========== */
.teaching-card-full-width {
    max-width: none;
}

.teaching-info-list {
    line-height: 2;
}

.teaching-tip-text {
    color: #666;
    font-size: 12px;
    margin-top: 30px;
}

