/* Word转PDF模块 */
.wordtopdf-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 35px;
    max-width: 800px;
}

.wordtopdf-upload-area {
    border: 2px dashed #409eff;
    background: #f0f7ff;
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.wordtopdf-upload-area:hover {
    background: #e1f0ff;
    border-color: #66b1ff;
}

.wordtopdf-icon-big {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

#wordtopdf-file-info {
    margin-top: 15px;
    padding: 10px;
    background: #fdf6ec;
    border-radius: 4px;
    display: none;
    color: #e6a23c;
    font-size: 14px;
}

#wordtopdf-btn-convert {
    background: #67c23a;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 25px;
    width: 100%;
}

#wordtopdf-btn-convert:disabled {
    background: #b3e19d;
    cursor: not-allowed;
}

.wordtopdf-error-box {
    color: #f56c6c;
    background: #fef0f0;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
    border-left: 4px solid #f56c6c;
}