You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
799 B
45 lines
799 B
<template>
|
|
<view class="vdo">
|
|
<view class="coverBox">
|
|
<view class="start">
|
|
<image src="@/static/images/index/btn_bofang.png" mode=""></image>
|
|
</view>
|
|
<view class="cover">
|
|
<image src="@/static/images/logo.png" mode=""></image>
|
|
</view>
|
|
</view>
|
|
<view class="text oneRowText">公益短片之“车速决定命运”</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.coverBox {
|
|
width: 100%;
|
|
height: 168rpx;
|
|
background: $themC;
|
|
border-radius: 12rpx;
|
|
position: relative;
|
|
.start {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%,-50%);
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
z-index: 2;
|
|
}
|
|
|
|
.cover {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.text {
|
|
font-size: 24rpx;
|
|
padding: 20rpx 0 6rpx 0;
|
|
}
|
|
</style>
|