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.
|
|
<template> <view class="tabCon"> <view class="tab1"> <view class="card"> <view class="name">C2自动挡一对一VIP班</view> <view class="flex-b"> <view class="price">¥2566</view> <view class="btn">导航</view> </view> </view> </view> </view> </template>
<script> export default { } </script>
<style lang="scss" scoped> .tabCon { width: 100%; .tab1 { width: 100%; .card { margin-top: 24rpx; padding: 28rpx 28rpx 28rpx 36rpx; .name { font-size: 32rpx; color: #333; margin-bottom: 36rpx; } .flex-b { .price { font-size: 44rpx; color: #ED733E; } .btn { width: 130rpx; height: 60rpx; background: #1989FA; border-radius: 8rpx; font-size: 28rpx; color: #fff; text-align: center; line-height: 60rpx; } } } } } </style>
|