history.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <view class="all">
  3. <view class="list" v-for="item in 25" :key="item">
  4. <view class="le">
  5. <view class="qs">第2022010223期</view>
  6. <view class="dy">0.064489</view>
  7. </view>
  8. <view class="ri">
  9. <view class="sx" style="margin-left: 380rpx;">上</view>
  10. <view class="sx" style="margin-left: 30rpx;">奇</view>
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. };
  20. }
  21. }
  22. </script>
  23. <style lang="scss">
  24. .all {
  25. width: 750rpx;
  26. min-height: 100vh;
  27. background-color: #000;
  28. }
  29. .list {
  30. display: flex;
  31. justify-content: start;
  32. width: 750rpx;
  33. height: 150rpx;
  34. }
  35. .qs {
  36. height: 19rpx;
  37. font-size: 20rpx;
  38. font-family: PingFang SC;
  39. font-weight: 500;
  40. color: #FFFFFF;
  41. line-height: 13rpx;
  42. margin-top: 27rpx;
  43. margin-left: 30rpx;
  44. }
  45. .dy {
  46. height: 35rpx;
  47. font-size: 46rpx;
  48. font-family: PingFang SC;
  49. font-weight: bold;
  50. color: #FDB242;
  51. margin-top: 14rpx;
  52. margin-left: 30rpx;
  53. }
  54. .ri {
  55. display: flex;
  56. justify-content: start;
  57. }
  58. .sx {
  59. height: 28rpx;
  60. font-size: 30rpx;
  61. font-family: PingFang SC;
  62. font-weight: bold;
  63. color: #DF5660;
  64. margin-top: 50rpx;
  65. }
  66. .xian {
  67. width: 696rpx;
  68. height: 2rpx;
  69. background: #F0F0F0;
  70. opacity: 0.35;
  71. margin-left: 30rpx;
  72. margin-top: 43rpx;
  73. }
  74. </style>