|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div :class="{wrapper:isMobile}">
|
|
|
+ <div :class="{ wrapper: isMobile }">
|
|
|
<div class="prize" v-if="!isMobile">
|
|
|
<LuckyWheel
|
|
|
class="lw"
|
|
@@ -93,12 +93,6 @@
|
|
|
<div class="lingjiang" v-show="lingjiang">
|
|
|
<div class="ljcon">
|
|
|
<img
|
|
|
- @click="lingjiang = false"
|
|
|
- class="qclose"
|
|
|
- :src="require('@/assets/images/question/close.png')"
|
|
|
- alt=""
|
|
|
- />
|
|
|
- <img
|
|
|
class="lbg"
|
|
|
:src="require('@/assets/images/question/lingjiang_bg.png')"
|
|
|
alt=""
|
|
@@ -116,6 +110,12 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <img
|
|
|
+ @click="lingjiang = false"
|
|
|
+ class="qclose"
|
|
|
+ :src="require('@/assets/images/question/close.png')"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -362,7 +362,6 @@ export default {
|
|
|
}
|
|
|
.lw {
|
|
|
width: 88% !important;
|
|
|
- // overflow-x:auto!important;
|
|
|
> canvas {
|
|
|
width: 200% !important;
|
|
|
}
|
|
@@ -418,10 +417,21 @@ export default {
|
|
|
font-weight: 400;
|
|
|
line-height: 18px;
|
|
|
color: #311b04;
|
|
|
+ > p {
|
|
|
+ padding-bottom: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .lingjiang {
|
|
|
+ .qclose {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 15%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ width: 44px;
|
|
|
+ height: 44px;
|
|
|
+ display: block;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-@media screen and (max-width: 320px) {
|
|
|
-
|
|
|
- }
|
|
|
</style>
|