1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <template>
- <view class="all">
- <view class="list" v-for="item in 25" :key="item">
- <view class="le">
- <view class="qs">第2022010223期</view>
- <view class="dy">0.064489</view>
- </view>
- <view class="ri">
- <view class="sx" style="margin-left: 380rpx;">上</view>
- <view class="sx" style="margin-left: 30rpx;">奇</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- .all {
- width: 750rpx;
- min-height: 100vh;
- background-color: #000;
- }
- .list {
- display: flex;
- justify-content: start;
- width: 750rpx;
- height: 150rpx;
- }
- .qs {
- height: 19rpx;
- font-size: 20rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 13rpx;
- margin-top: 27rpx;
- margin-left: 30rpx;
- }
- .dy {
- height: 35rpx;
- font-size: 46rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FDB242;
- margin-top: 14rpx;
- margin-left: 30rpx;
- }
- .ri {
- display: flex;
- justify-content: start;
- }
- .sx {
- height: 28rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #DF5660;
- margin-top: 50rpx;
- }
- .xian {
- width: 696rpx;
- height: 2rpx;
- background: #F0F0F0;
- opacity: 0.35;
- margin-left: 30rpx;
- margin-top: 43rpx;
- }
- </style>
|