|
@@ -0,0 +1,132 @@
|
|
|
+<template>
|
|
|
+ <view class="bg">
|
|
|
+ <view class="video">
|
|
|
+ <view class="video-item">
|
|
|
+ <image
|
|
|
+ class="video-item-left"
|
|
|
+ mode="widthFix"
|
|
|
+ src="https://ct.zzxcx.net/ctjk/mp-wx/courseCatalog/video_poster.png"
|
|
|
+ ></image>
|
|
|
+ <view class="video-item-right">
|
|
|
+ <view>福州 | 华威夜间模拟灯光全套 (东南V5)</view>
|
|
|
+ <view class="video-item-right-icon">学习中</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="video-item">
|
|
|
+ <image
|
|
|
+ class="video-item-left"
|
|
|
+ mode="widthFix"
|
|
|
+ src="https://ct.zzxcx.net/ctjk/mp-wx/courseCatalog/video_poster.png"
|
|
|
+ ></image>
|
|
|
+ <view class="video-item-right">
|
|
|
+ <view>福州 | 华威夜间模拟灯光全套 (东南V5)</view>
|
|
|
+ <view class="video-item-right-icon">学习中</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="video-item">
|
|
|
+ <image
|
|
|
+ class="video-item-left"
|
|
|
+ mode="widthFix"
|
|
|
+ src="https://ct.zzxcx.net/ctjk/mp-wx/courseCatalog/video_poster.png"
|
|
|
+ ></image>
|
|
|
+ <view class="video-item-right">
|
|
|
+ <view>福州 | 华威夜间模拟灯光全套 (东南V5)</view>
|
|
|
+ <view class="video-item-right-icon">学习中</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="pay">
|
|
|
+ <view class="pay-text">
|
|
|
+ <text>立即支付 ¥35.00</text>
|
|
|
+ </view>
|
|
|
+ <image
|
|
|
+ style="width: 100%"
|
|
|
+ mode="widthFix"
|
|
|
+ src="https://ct.zzxcx.net/ctjk/mp-wx/courseCatalog/payBg.png"
|
|
|
+ ></image>
|
|
|
+ </view>
|
|
|
+ <view class="advantage">
|
|
|
+ <view class="advantage-title"> 实拍优势</view>
|
|
|
+ <view class="advantage-img">
|
|
|
+ <image mode="widthFix" src="https://ct.zzxcx.net/ctjk/mp-wx/courseCatalog/advantage.png"></image>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+export default {
|
|
|
+ data() {
|
|
|
+ return {};
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.bg {
|
|
|
+ width: 100%;
|
|
|
+ display: inline-block;
|
|
|
+ height: 100%;
|
|
|
+ .video {
|
|
|
+ white-space: normal;
|
|
|
+ padding: 0 30rpx;
|
|
|
+ padding-top: 40rpx;
|
|
|
+ display: inline-block;
|
|
|
+ width: 100%;
|
|
|
+ .video-item {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ margin-bottom: 40rpx;
|
|
|
+ }
|
|
|
+ .video-item-left {
|
|
|
+ width: 250rpx;
|
|
|
+ font-size: 30rpx;
|
|
|
+ flex-shrink: 0;
|
|
|
+ }
|
|
|
+ .video-item-right {
|
|
|
+ padding-left: 30rpx;
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ font-size: 30rpx;
|
|
|
+ }
|
|
|
+ .video-item-right-icon {
|
|
|
+ width: 94rpx;
|
|
|
+ height: 40rpx;
|
|
|
+ background: #d6e9fc;
|
|
|
+ border-radius: 8rpx 8rpx 8rpx 8rpx;
|
|
|
+ opacity: 1;
|
|
|
+ color: #498ef5;
|
|
|
+ font-size: 22rpx;
|
|
|
+ line-height: 40rpx;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .pay {
|
|
|
+ padding: 0 30rpx;
|
|
|
+ position: relative;
|
|
|
+ .pay-text {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ width: 100%;
|
|
|
+ text-align: center;
|
|
|
+ color: white;
|
|
|
+ transform: translateY(-85%);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .advantage {
|
|
|
+ padding: 0 30rpx;
|
|
|
+ .advantage-title {
|
|
|
+ font-size: 42rpx;
|
|
|
+ color: #0a1a33;
|
|
|
+ font-weight: 600;
|
|
|
+ }
|
|
|
+ .advantage-img {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ flex-shrink: 0;
|
|
|
+ padding-top: 30rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|