/* Word转PDF 专用样式 */

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
}

.page-header h1 {
    margin: 0 0 16px 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.page-description {
    margin: 0;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* PDF Page Editor specific styles */

/* Page description styles */
.page-description-en {
    font-size: 14px;
    color: #718096;
    margin-top: 5px;
    font-style: italic;
}

/* Subtitle English translations */
.subtitle-en {
    font-size: 14px;
    color: #718096;
    font-weight: normal;
    font-style: italic;
    margin-left: 8px;
}

/* Label English translations */
.label-en {
    font-size: 12px;
    color: #718096;
    font-style: italic;
    font-weight: normal;
}

/* Button English text */
.btn-text-en {
    font-size: 14px;
    opacity: 0.8;
    display: block;
    margin-top: 3px;
    font-style: italic;
}

/* Upload hint English text */
.upload-hint-en {
    color: #718096;
    font-size: 12px;
    margin-top: 3px;
    font-style: italic;
}

/* Notice English text */
.notice-en {
    display: block;
    font-size: 12px;
    color: #718096;
    margin-top: 3px;
    font-style: italic;
    font-weight: normal;
}

/* Tool button text in English */
.tool-text-en {
    display: block;
    font-size: 11px;
    color: #718096;
    margin-top: 2px;
    font-style: italic;
}

/* 文件预览样式 */
.file-preview {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.file-icon {
    font-size: 2rem;
    color: #007bff;
}

.file-details {
    flex: 1;
}

.file-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.file-size {
    color: #666;
    font-size: 0.9rem;
}

.remove-file-btn {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.remove-file-btn:hover {
    background: #c82333;
}

/* 转换选项样式 */
.conversion-options {
    margin: 30px 0;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.conversion-options h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 1.3rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

/* 功能说明样式 */
.feature-notice {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 24px;
    margin: 30px 0;
}

.feature-notice h4 {
    margin: 0 0 16px 0;
    color: #1976d2;
    font-size: 1.2rem;
}

.feature-notice ul {
    margin: 0;
    padding-left: 20px;
}

.feature-notice li {
    margin-bottom: 8px;
    color: #333;
    line-height: 1.5;
}

/* 状态提示样式 */
.status-section {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.status-message {
    margin-bottom: 16px;
    font-weight: 500;
    color: #333;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #007bff, #0056b3);
    width: 0%;
    transition: width 0.3s ease;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-header {
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .file-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
} 