You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
1.8KB

  1. /* pages/task/task.wxss */
  2. .task_container {
  3. box-sizing: border-box;
  4. width: 100vw;
  5. height: 100vh;
  6. display: flex;
  7. flex-direction: column;
  8. justify-content: flex-start;
  9. align-items: flex-start;
  10. }
  11. .upload_box {
  12. box-sizing: border-box;
  13. width: 100%;
  14. height: 420rpx;
  15. flex-shrink: 0;
  16. padding: 30rpx;
  17. display: flex;
  18. flex-direction: column;
  19. align-items: flex-start;
  20. align-items: center;
  21. background: linear-gradient(90deg, rgba(115, 164, 255, 1) 0%, rgba(67, 160, 255, 1) 100%);
  22. }
  23. .upload_container {
  24. width: 100%;
  25. margin-top: 20rpx;
  26. display: flex;
  27. justify-content: space-between;
  28. align-items: center;
  29. }
  30. .company_message {
  31. width: 100%;
  32. margin-bottom: 20rpx;
  33. display: flex;
  34. justify-content: center;
  35. align-items: center;
  36. font-size: 36rpx;
  37. font-weight: bolder;
  38. color: #ffffff;
  39. }
  40. .to_upload {
  41. width: 320rpx;
  42. height: 230rpx;
  43. border-radius: 12rpx;
  44. background-color: #ffffff;
  45. font-size: 28rpx;
  46. display: flex;
  47. flex-direction: column;
  48. justify-content: center;
  49. align-items: center;
  50. }
  51. .task_box {
  52. box-sizing: border-box;
  53. width: 100%;
  54. padding: 40rpx;
  55. display: flex;
  56. flex-direction: column;
  57. justify-content: flex-start;
  58. align-items: flex-start;
  59. }
  60. .all_task {
  61. width: 100%;
  62. margin-bottom: 20rpx;
  63. display: flex;
  64. justify-content: space-between;
  65. align-items: center;
  66. }
  67. .task_item {
  68. box-sizing: border-box;
  69. width: 100%;
  70. padding: 20rpx 0;
  71. background-color: #ffffff;
  72. border-bottom: 1rpx solid rgba(166, 166, 166, 0.35);
  73. }
  74. .card_head {
  75. width: 100%;
  76. display: flex;
  77. justify-content: space-between;
  78. align-items: center;
  79. }
  80. .empty_page {
  81. width: 100%;
  82. height: 400rpx;
  83. display: flex;
  84. flex-direction: column;
  85. justify-content: flex-start;
  86. align-items: center;
  87. }