my-apply.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /* pages/my-apply/my-apply.wxss */
  2. page {
  3. background: #F0F1F2;
  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. flex: 1;
  22. color: #31364c;
  23. font-size: 34rpx;
  24. display: flex;
  25. align-items: center;
  26. }
  27. .name-content {
  28. max-width: 325rpx;
  29. overflow: hidden;
  30. text-overflow: ellipsis;
  31. white-space: nowrap;
  32. }
  33. .icon {
  34. height: 34rpx;
  35. width: 100rpx;
  36. font-size: 22rpx;
  37. text-align: center;
  38. line-height: 34rpx;
  39. color: #fff;
  40. background: #888A8E;
  41. border-radius: 10rpx;
  42. margin-left: 15rpx;
  43. }
  44. .money {
  45. color: #3243bd;
  46. font-size: 34rpx;
  47. max-width: 265rpx;
  48. text-align: right;
  49. }
  50. .month {
  51. font-size: 24rpx;
  52. }
  53. .midden {
  54. font-size: 26rpx;
  55. color: #888a8e;
  56. display: flex;
  57. align-items: center;
  58. justify-content: space-between;
  59. }
  60. .bottom view {
  61. display: flex;
  62. align-items: center;
  63. }
  64. .company {
  65. color: #31364c;
  66. font-size: 28rpx;
  67. overflow: hidden;
  68. text-overflow: ellipsis;
  69. white-space: nowrap;
  70. }
  71. .bottom {
  72. display: flex;
  73. align-items: center;
  74. justify-content: space-between;
  75. }
  76. .address {
  77. height: 48rpx;
  78. font-size: 24rpx;
  79. color: #535768;
  80. padding: 0 15rpx;
  81. box-sizing: border-box;
  82. background: #F0F1F2;
  83. border-radius: 10rpx;
  84. display: flex;
  85. align-items: center;
  86. justify-content: center;
  87. }
  88. .address image {
  89. height: 22rpx;
  90. width: 18rpx;
  91. margin-right: 10rpx;
  92. }
  93. .status {
  94. height: 48rpx;
  95. font-size: 24rpx;
  96. padding: 5rpx 15rpx;
  97. display: flex;
  98. align-items: center;
  99. justify-content: center;
  100. }
  101. .status image {
  102. height: 18rpx;
  103. width: 18rpx;
  104. margin-right: 10rpx;
  105. }
  106. .underway {
  107. font-size: #a67b0c;
  108. background: #fff6dd;
  109. }
  110. .already {
  111. font-size: #669bb4;
  112. background: #eef8fc;
  113. }
  114. .out {
  115. font-size: #888a8e;
  116. background: #F0F1F2;
  117. }
  118. .cancel-enrollment {
  119. width: 136rpx;
  120. height: 48rpx;
  121. font-size: 24rpx;
  122. color: rgba(50, 67, 189, 1);
  123. border-radius: 10rpx;
  124. border: 2rpx solid rgba(50, 67, 189, 1);
  125. display: flex;
  126. align-items: center;
  127. justify-content: center;
  128. }