|
@@ -19,6 +19,12 @@
|
|
box-shadow: none;
|
|
box-shadow: none;
|
|
page-break-after: always;
|
|
page-break-after: always;
|
|
}
|
|
}
|
|
|
|
+ // 印刷模式:隐藏客观题强调标记
|
|
|
|
+ .elem-fill-question {
|
|
|
|
+ &::before {
|
|
|
|
+ display: none;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
// page-box
|
|
// page-box
|
|
@@ -1030,6 +1036,40 @@
|
|
// elem-fill-question
|
|
// elem-fill-question
|
|
.elem-fill-question {
|
|
.elem-fill-question {
|
|
white-space: normal;
|
|
white-space: normal;
|
|
|
|
+
|
|
|
|
+ // 客观题强调标记
|
|
|
|
+ &::before {
|
|
|
|
+ content: "";
|
|
|
|
+ position: absolute;
|
|
|
|
+ right: 0;
|
|
|
|
+ top: 0;
|
|
|
|
+ z-index: 99;
|
|
|
|
+ color: #fff;
|
|
|
|
+ padding: 6px 10px;
|
|
|
|
+ line-height: 1;
|
|
|
|
+ font-size: 18px;
|
|
|
|
+ border-bottom-left-radius: 10px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ &-simple {
|
|
|
|
+ &::before {
|
|
|
|
+ content: "单选";
|
|
|
|
+ background-color: mix(#fff, $--color-success, 20%);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ &-multiply {
|
|
|
|
+ &::before {
|
|
|
|
+ content: "多选";
|
|
|
|
+ background-color: $--color-primary-light;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ &-boolean {
|
|
|
|
+ &::before {
|
|
|
|
+ content: "判断";
|
|
|
|
+ background-color: mix(#fff, $--color-warning, 20%);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
.elem-body {
|
|
.elem-body {
|
|
padding: 18px 0 18px 16px;
|
|
padding: 18px 0 18px 16px;
|
|
}
|
|
}
|