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="flex-col page"> <view class="flex-col group_4"> <view class="flex-col section_2"> <view class="justify-between"> <text class="text_2">全面评级</text> <text class="text_3">7day/60rmb</text> </view> <view class="justify-between group_6"> <text class="text_4">卡品评级</text> <text class="text_5">7day/45rmb</text> </view> <view class="justify-between group_7"> <text class="text_6">签名评级</text> <text class="text_7">7day/45rmb</text> </view> <view class="justify-between group_8"> <text class="text_8">套壳服务</text> <text class="text_9">7day/30rmb</text> </view> </view> <view class="section_3"> </view> </view> </view></template>
<script> export default { data() { return {}; }, };</script>
<style scoped lang="css"> .page { background-color: #f6f6f6; width: 100%; overflow-y: auto; height: 100%; } .group_4 { padding: 2rpx 0 16rpx; flex: 1 1 auto; overflow-y: auto; } .section_2 { padding: 40rpx 30rpx 40rpx 32rpx; background-color: rgb(255, 255, 255); } .section_3 { margin-top: 1016rpx; align-self: center; background-color: rgb(0, 0, 0); border-radius: 4rpx; width: 196rpx; height: 8rpx; } .group_6 { margin-top: 50rpx; } .group_7 { margin-top: 50rpx; } .group_8 { margin-top: 50rpx; } .text_2 { color: rgb(51, 51, 51); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .text_3 { color: rgb(119, 119, 119); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .text_4 { color: rgb(51, 51, 51); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .text_5 { color: rgb(119, 119, 119); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .text_6 { color: rgb(51, 51, 51); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .text_7 { color: rgb(119, 119, 119); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .text_8 { color: rgb(51, 51, 51); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .text_9 { color: rgb(119, 119, 119); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; }</style>
|