|
@@ -17,7 +17,11 @@
|
|
|
<b
|
|
|
class="xuhao"
|
|
|
v-if="items.number"
|
|
|
- :style="{ fontSize: baseSizePhone - 2 + 'px' }"
|
|
|
+ :style="{
|
|
|
+ fontSize: baseSizePhone - 2 + 'px',
|
|
|
+ width: 18 + (baseSizePhone - 14) * 2 + 'px',
|
|
|
+ height: 18 + (baseSizePhone - 14) * 2 + 'px'
|
|
|
+ }"
|
|
|
>{{ items.number }}</b
|
|
|
>
|
|
|
<template v-if="items.detail.wordsList.length == 0">
|
|
@@ -212,7 +216,16 @@
|
|
|
</h2>
|
|
|
<div v-for="(items, indexs) in curQue.option" :key="indexs">
|
|
|
<div class="item-content">
|
|
|
- <b class="xuhao" v-if="items.number">{{ items.number }}</b>
|
|
|
+ <b
|
|
|
+ class="xuhao"
|
|
|
+ v-if="items.number"
|
|
|
+ :style="{
|
|
|
+ 'font-size': baseSizePhone - 2 + 'px',
|
|
|
+ width: 18 + (baseSizePhone - 14) * 2 + 'px',
|
|
|
+ height: 18 + (baseSizePhone - 14) * 2 + 'px'
|
|
|
+ }"
|
|
|
+ >{{ items.number }}</b
|
|
|
+ >
|
|
|
<template v-if="items.detail.wordsList.length == 0">
|
|
|
<p
|
|
|
:class="['content-con', items.font]"
|
|
@@ -406,7 +419,11 @@
|
|
|
<b
|
|
|
class="xuhao"
|
|
|
v-if="items.number"
|
|
|
- :style="{ 'font-size': baseSizePhone - 2 + 'px' }"
|
|
|
+ :style="{
|
|
|
+ 'font-size': baseSizePhone - 2 + 'px',
|
|
|
+ width: 18 + (baseSizePhone - 14) * 2 + 'px',
|
|
|
+ height: 18 + (baseSizePhone - 14) * 2 + 'px'
|
|
|
+ }"
|
|
|
>{{ items.number }}</b
|
|
|
>
|
|
|
<template v-if="items.detail.wordsList.length == 0">
|
|
@@ -738,16 +755,17 @@ export default {
|
|
|
b.xuhao {
|
|
|
background: #de4444;
|
|
|
text-align: center;
|
|
|
- width: 16px;
|
|
|
- height: 16px;
|
|
|
+ min-width: 16px;
|
|
|
+ min-height: 16px;
|
|
|
+ max-width: 28px;
|
|
|
+ max-height: 28px;
|
|
|
color: #ffffff;
|
|
|
border-radius: 50%;
|
|
|
font-size: 12px;
|
|
|
font-family: "robot";
|
|
|
- line-height: 16px;
|
|
|
- margin-right: 8px;
|
|
|
+ line-height: 1.3;
|
|
|
flex-shrink: 0;
|
|
|
- margin-top: 6px;
|
|
|
+ padding: 2px;
|
|
|
}
|
|
|
.inputInner {
|
|
|
max-width: 520px;
|
|
@@ -776,7 +794,8 @@ export default {
|
|
|
.item-content {
|
|
|
display: flex;
|
|
|
justify-content: flex-start;
|
|
|
- // align-items: center;
|
|
|
+ align-items: center;
|
|
|
+ gap: 5px;
|
|
|
.content-con {
|
|
|
font-size: 20px;
|
|
|
line-height: 150%;
|