|
|
@@ -7,7 +7,12 @@
|
|
|
paddingRight: isLandscape ? '100px' : '',
|
|
|
}"
|
|
|
>
|
|
|
- <div class="voicefull-bottom" @mouseover="setTopShow(true)" @mouseleave="setTopShow(false)">
|
|
|
+ <div
|
|
|
+ class="voicefull-bottom"
|
|
|
+ :class="[isPhone ? 'voicefull-bottom-phone' : '']"
|
|
|
+ @mouseover="setTopShow(true)"
|
|
|
+ @mouseleave="setTopShow(false)"
|
|
|
+ >
|
|
|
<div :class="[isTopShow || isPhone ? 'voicefull-bottom-show' : 'voicefull-bottom-hidden']">
|
|
|
<div :class="['bottom-left', TaskModel == 'ANSWER' ? 'bottom-left-margin' : '']"></div>
|
|
|
<div :class="['page-count', bgIndex == 0 ? 'page-count-white' : 'page-count-green']">
|
|
|
@@ -790,7 +795,12 @@
|
|
|
></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="voicefull-top" @mouseover="setBottomShow(true)" @mouseleave="setBottomShow(false)">
|
|
|
+ <div
|
|
|
+ class="voicefull-top"
|
|
|
+ :class="[isPhone ? 'voicefull-top-phone' : '']"
|
|
|
+ @mouseover="setBottomShow(true)"
|
|
|
+ @mouseleave="setBottomShow(false)"
|
|
|
+ >
|
|
|
<div :class="[isBottomShow || isPhone ? 'voicefull-top-show' : 'voicefull-top-hidden']">
|
|
|
<div class="top-left">
|
|
|
<div :class="['select-bg', bgIndex == 1 ? 'select-bg-blue' : '']">
|
|
|
@@ -1806,7 +1816,8 @@ export default {
|
|
|
transform-origin: 0% 0%;
|
|
|
|
|
|
.vc-main {
|
|
|
- max-height: calc(100vw - 132px) !important;
|
|
|
+ height: calc(100vw - 132px) !important;
|
|
|
+ overflow: auto;
|
|
|
}
|
|
|
|
|
|
.op-btn {
|
|
|
@@ -1860,6 +1871,43 @@ export default {
|
|
|
visibility: visible;
|
|
|
}
|
|
|
|
|
|
+ &-phone {
|
|
|
+ height: 66px;
|
|
|
+
|
|
|
+ .voicefull-top-show {
|
|
|
+ height: 66px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .voicefull-top-hidden {
|
|
|
+ height: 66px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .op-btn {
|
|
|
+ width: 40px !important;
|
|
|
+ height: 40px !important;
|
|
|
+
|
|
|
+ > span {
|
|
|
+ width: 20px !important;
|
|
|
+ height: 20px !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep .audioLine3 {
|
|
|
+ width: 40px !important;
|
|
|
+ height: 40px !important;
|
|
|
+
|
|
|
+ .play {
|
|
|
+ width: 20px !important;
|
|
|
+ height: 20px !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .select-bg,
|
|
|
+ .set-fontSize {
|
|
|
+ height: 40px !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
.top-left {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
@@ -2439,6 +2487,18 @@ export default {
|
|
|
visibility: hidden;
|
|
|
}
|
|
|
|
|
|
+ &-phone {
|
|
|
+ height: 66px;
|
|
|
+
|
|
|
+ .voicefull-bottom-show {
|
|
|
+ height: 66px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .voicefull-bottom-hidden {
|
|
|
+ height: 66px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
.bottom-left {
|
|
|
display: flex;
|
|
|
align-items: center;
|