my-apply.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* pages/my-apply/my-apply.wxss */
  2. page {
  3. background: #f5f5f5;
  4. }
  5. .cell {
  6. width: 750rpx;
  7. height: 258rpx;
  8. padding: 30rpx;
  9. box-sizing: border-box;
  10. background: #fff;
  11. display: flex;
  12. flex-direction: column;
  13. justify-content: space-around;
  14. margin-top: 20rpx;
  15. }
  16. .info {
  17. display: flex;
  18. justify-content: space-between;
  19. }
  20. .name {
  21. color: #31364c;
  22. font-size: 34rpx;
  23. overflow: hidden;
  24. text-overflow: ellipsis;
  25. white-space: nowrap;
  26. }
  27. .money {
  28. color: #3243bd;
  29. font-size: 34rpx;
  30. flex-basis: 300rpx;
  31. text-align: right;
  32. }
  33. .month {
  34. font-size: 24rpx;
  35. }
  36. .midden {
  37. font-size: 26rpx;
  38. color: #888a8e;
  39. display: flex;
  40. align-items: center;
  41. justify-content: space-between;
  42. }
  43. .bottom view {
  44. display: flex;
  45. align-items: center;
  46. }
  47. .company {
  48. color: #31364c;
  49. font-size: 28rpx;
  50. overflow: hidden;
  51. text-overflow: ellipsis;
  52. white-space: nowrap;
  53. }
  54. .bottom {
  55. display: flex;
  56. align-items: center;
  57. justify-content: space-between;
  58. }
  59. .address {
  60. height: 48rpx;
  61. font-size: 24rpx;
  62. color: #535768;
  63. padding: 0 15rpx;
  64. box-sizing: border-box;
  65. background: #f5f5f5;
  66. border-radius: 10rpx;
  67. display: flex;
  68. align-items: center;
  69. justify-content: center;
  70. }
  71. .address image {
  72. height: 22rpx;
  73. width: 18rpx;
  74. margin-right: 10rpx;
  75. }
  76. .status {
  77. height: 48rpx;
  78. font-size: 24rpx;
  79. padding: 5rpx 15rpx;
  80. display: flex;
  81. align-items: center;
  82. justify-content: center;
  83. }
  84. .status image {
  85. height: 18rpx;
  86. width: 18rpx;
  87. margin-right: 10rpx;
  88. }
  89. .underway {
  90. font-size: #a67b0c;
  91. background: #fff6dd;
  92. }
  93. .already {
  94. font-size: #669bb4;
  95. background: #eef8fc;
  96. }
  97. .out {
  98. font-size: #888a8e;
  99. background: #f5f5f5;
  100. }