快乐的昕的电脑
2025-12-04 9977c8fc3a2c7df4041ab14eaeb62976f1a607ea
components/WorkOrderPrint.vue
@@ -562,9 +562,20 @@
</script>
<style scoped>
    .section-title {
/*    .section-title {
        font-size: 20px;
        font-weight: bold;
        margin: 18px 0 8px 0;
        color: #fff;
        background: #007aff;
        padding: 8px 18px;
        border-radius: 8px 8px 0 0;
        display: inline-block;
    }*/
    .section-title {
        font-size: 20px;
        font-weight: normal; /* 已取消加粗 */
        margin: 18px 0 8px 0;
        color: #fff;
        background: #007aff;
@@ -673,9 +684,25 @@
    }
    /* 2. 区块标题 */
    .section-title, .history-title {
/*    .section-title, .history-title {
        font-size: 26px;
    }*/
    .section-title,
    .history-title {
        font-size: 22px; /* 与内容区一致 */
        font-weight: normal;
        margin: 18px 0 8px 0;
        color: #fff;
        background: #007aff;
        padding: 8px 18px;
        border-radius: 8px 8px 0 0;
        display: inline-block;
    }
    .history-title {
        background: #555;
    }
    /* 3. 表格字体 */
    .report-table, .report-table th, .report-table td {
@@ -854,6 +881,16 @@
    }
    /* 确认提交按钮*/
    /*.details-btn {
        padding: 12px 34px;
        background: #00a2e9;
        color: #fff;
        font-size: 32px;
        border: none;
        cursor: pointer;
        border-radius: 12px;
    }*/
    .details-btn {
        padding: 12px 34px;
        background: #00a2e9;
@@ -862,8 +899,22 @@
        border: none;
        cursor: pointer;
        border-radius: 12px;
        height: 66px; /* 固定高度,和确认提交一样 */
        min-width: 180px; /* 可选,保证宽度一致 */
        display: flex; /* 让内容垂直居中 */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        line-height: 1.1; /* 紧凑行高 */
        box-sizing: border-box;
    }
        .details-btn span {
            font-size: 24px;
            margin-top: 0px; /* 去掉多余间距 */
            line-height: 1.1;
        }
        .details-btn:hover {
            background: #008ac2;
        }