index.scss 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. position: relative;
  59. .card-title{
  60. @include flex(space-between, null);
  61. text{
  62. color: #FFFFFF;
  63. font-size: 32rpx;
  64. font-size: 500;
  65. }
  66. }
  67. .card-eye{
  68. margin-top: 24rpx;
  69. @include flex(flex-start,null,18rpx);
  70. padding-bottom: 26rpx;
  71. border-bottom: 2rpx solid rgba(255, 255, 255, 0.2);
  72. text{
  73. color: #FFFFFF;
  74. font-size: 32rpx;
  75. font-size: 500;
  76. }
  77. }
  78. .card-prople{
  79. margin-top: 24rpx;
  80. font-size: 28rpx;
  81. position: absolute;
  82. left: 32rpx;
  83. bottom: 30rpx;
  84. text{
  85. &:nth-of-type(1){
  86. color: rgba(255, 255, 255, 0.4);
  87. }
  88. &:nth-of-type(2){
  89. color: #FFFFFF;
  90. margin-left: 100rpx;
  91. }
  92. }
  93. }
  94. }
  95. }
  96. }
  97. }