|
|
@ -11,6 +11,8 @@ |
|
|
<view class="anitem" @click="nextQuestion(item.outs[0], item)" v-for="(item, index) in answerList"> |
|
|
<view class="anitem" @click="nextQuestion(item.outs[0], item)" v-for="(item, index) in answerList"> |
|
|
<image class="animg" src="/static/videos/skin_bg_1a.png"></image> |
|
|
<image class="animg" src="/static/videos/skin_bg_1a.png"></image> |
|
|
<view class="antxt">{{item.channel}}</view> |
|
|
<view class="antxt">{{item.channel}}</view> |
|
|
|
|
|
<view class="judd jdok"><image class="judimg" src="/static/images/icon-ok.png"></image></view> |
|
|
|
|
|
<view class="judd jderr"><image class="judimg" src="/static/images/icon-err.png"></image></view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
@ -205,20 +207,48 @@ |
|
|
.popup-layer .anitem { |
|
|
.popup-layer .anitem { |
|
|
position: relative; |
|
|
position: relative; |
|
|
margin: 80rpx; |
|
|
margin: 80rpx; |
|
|
width: 300rpx; |
|
|
width: 600rpx; |
|
|
height: 100rpx; |
|
|
height: 100rpx; |
|
|
text-align: center; |
|
|
text-align: center; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.popup-layer .anitem .animg { |
|
|
.popup-layer .anitem .animg { |
|
|
width: 100%; |
|
|
width: 100%; |
|
|
height: 100%; |
|
|
height: 160rpx; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.popup-layer .anitem .antxt { |
|
|
.popup-layer .anitem .antxt { |
|
|
position: absolute; |
|
|
position: absolute; |
|
|
top: 30%; |
|
|
top: 60%; |
|
|
width: 100%; |
|
|
width: 100%; |
|
|
|
|
|
font-size: 1.2rem; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.judd { |
|
|
|
|
|
position: absolute; |
|
|
|
|
|
top: -20rpx; |
|
|
|
|
|
right: -50rpx; |
|
|
|
|
|
width: 100rpx; |
|
|
|
|
|
height: 100rpx; |
|
|
|
|
|
border-radius: 50%; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.jdok { |
|
|
|
|
|
background-color: rgba(3, 173, 55, .35); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.jderr { |
|
|
|
|
|
background-color: rgba(249, 21, 43, .35); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.judd .judimg { |
|
|
|
|
|
position: absolute; |
|
|
|
|
|
top: 50%; |
|
|
|
|
|
left: 50%; |
|
|
|
|
|
-webkit-transform: translate(-50%, -50%); |
|
|
|
|
|
transform: translate(-50%, -50%); |
|
|
|
|
|
width: 50%; |
|
|
|
|
|
height: 50%; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|