index.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. .receiving {
  2. width: 100vw;
  3. min-height: 100vh;
  4. background-color: rgb(247, 247, 247);
  5. position: relative;
  6. .empty {
  7. position: absolute;
  8. top: 176rpx;
  9. left: 50%;
  10. transform: translateX(-50%);
  11. @include flex(center, column, 0);
  12. image {
  13. width: 320rpx;
  14. height: 320rpx;
  15. display: block;
  16. }
  17. text {
  18. color: rgba(0, 0, 0, 0.4);
  19. font-size: 28rpx;
  20. font-weight: 500;
  21. margin: 32rpx 0 48rpx;
  22. }
  23. .btn {
  24. width: 246rpx;
  25. height: 88rpx;
  26. text-align: center;
  27. line-height: 88rpx;
  28. background-color: #fe4b1e;
  29. border-radius: 16rpx;
  30. color: #ffffff;
  31. font-size: 28rpx;
  32. }
  33. }
  34. .receiving-box {
  35. width: 100%;
  36. // padding-top: 32rpx;
  37. padding: 32rpx;
  38. box-sizing: border-box;
  39. .receiving-title {
  40. width: 100%;
  41. margin-bottom: 16rpx;
  42. color: rgba(0, 0, 0, 0.9);
  43. font-size: 32rpx;
  44. font-weight: 600;
  45. }
  46. .receiving-card {
  47. width: 100%;
  48. padding-right: 8rpx;
  49. box-sizing: border-box;
  50. .card-box {
  51. width: 100%;
  52. height: 270rpx;
  53. padding: 0 32rpx;
  54. padding-top: 32rpx;
  55. box-sizing: border-box;
  56. background-color: #C22525;
  57. border-radius: 16rpx;
  58. .card-title{
  59. @include flex(space-between, null);
  60. text{
  61. color: #FFFFFF;
  62. font-size: 32rpx;
  63. font-size: 500;
  64. }
  65. }
  66. .card-eye{
  67. margin-top: 24rpx;
  68. @include flex(flex-start,null,18rpx);
  69. padding-bottom: 26rpx;
  70. border-bottom: 2rpx solid rgba(255, 255, 255, 0.2);
  71. text{
  72. color: #FFFFFF;
  73. font-size: 32rpx;
  74. font-size: 500;
  75. }
  76. }
  77. .card-prople{
  78. margin-top: 24rpx;
  79. font-size: 28rpx;
  80. text{
  81. &:nth-of-type(1){
  82. color: rgba(255, 255, 255, 0.4);
  83. }
  84. &:nth-of-type(2){
  85. color: #FFFFFF;
  86. margin-left: 100rpx;
  87. }
  88. }
  89. }
  90. }
  91. }
  92. }
  93. }