index.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. page{
  2. background: #fff;
  3. }
  4. .no_List{
  5. margin-top: 30%;
  6. text-align: center;
  7. display: flex;
  8. flex-direction:column;
  9. align-items: center;
  10. }
  11. .no_List .btn{
  12. margin-top: 40rpx;
  13. width: 40%;
  14. }
  15. .no_List .btn button{
  16. border-radius: 50rpx;
  17. }
  18. .content{
  19. padding: 20rpx;
  20. }
  21. .content .prize{
  22. display: flex;
  23. flex-direction: row;
  24. align-items: center;
  25. margin-bottom: 20rpx;
  26. background: #FFF;
  27. padding: 20rpx;
  28. }
  29. .content .prize .prize_img{
  30. width: 200rpx;
  31. height: 120rpx;
  32. background: #eee;
  33. border-radius: 10rpx;
  34. }
  35. .content .prize .prize_img image{
  36. width: 100%;
  37. height: 100%;
  38. box-shadow: 0rpx 0rpx 8rpx #999;
  39. border-radius: 10rpx;
  40. }
  41. .content .prize .prize_info{
  42. margin: 0 20rpx;
  43. font-size: 24rpx;
  44. line-height: 1.5;
  45. flex: 1;
  46. overflow: hidden;
  47. }
  48. .content .prize .prize_info view:nth-child(1){
  49. font-size: 28rpx;
  50. font-weight: 700;
  51. }
  52. .content .prize .prize_info view:nth-child(2),.content .prize .prize_info view:nth-child(3){
  53. color: #999;
  54. overflow: hidden;
  55. text-overflow: ellipsis;
  56. white-space: nowrap;
  57. }
  58. .content .prize .prize_status{
  59. display: flex;
  60. flex-direction: column;
  61. justify-content: space-around;
  62. height: 120rpx;
  63. width: 165rpx;
  64. }
  65. .content .prize .prize_status .status{
  66. text-align: center;
  67. font-size: 24rpx;
  68. }
  69. .content .prize .prize_status .color{
  70. color: #999;
  71. }
  72. .content .prize .prize_status .btn2{
  73. background: #ee3a43;
  74. color: #fff;
  75. text-align: center;
  76. font-size: 28rpx;
  77. padding: 6rpx 10rpx;
  78. border-radius: 10rpx;
  79. }
  80. .content .prize .prize_status .btn1{
  81. border: 2rpx solid #ee3a43;
  82. color: #ee3a43;
  83. text-align: center;
  84. font-size: 28rpx;
  85. padding: 6rpx 10rpx;
  86. border-radius: 10rpx;
  87. }