拓恒飞手平台小程序
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.

58 lines
1.2KB

  1. /* package_A/page/alltask/index.wxss */
  2. .task_container {
  3. box-sizing: border-box;
  4. width: 100%;
  5. height: 100vh;
  6. padding-top: 90rpx;
  7. background-color: rgba(240, 242, 245, 1);
  8. display: flex;
  9. flex-direction: column;
  10. justify-content: flex-start;
  11. align-items: center;
  12. color: #333333;
  13. position: relative;
  14. }
  15. .select_container {
  16. width: 100%;
  17. height: 90rpx;
  18. background-color: #fff;
  19. display: flex;
  20. justify-content: space-evenly;
  21. align-items: center;
  22. position: fixed;
  23. top: 0;
  24. left: 0;
  25. z-index: 99;
  26. }
  27. /* 列表样式 */
  28. .task_list {
  29. box-sizing: border-box;
  30. width: 100%;
  31. height: 100%;
  32. padding-bottom: 20rpx;
  33. display: flex;
  34. flex-direction: column;
  35. justify-content: flex-start;
  36. align-items: flex-start;
  37. }
  38. .task_item {
  39. box-sizing: border-box;
  40. width: 100%;
  41. height: 320rpx;
  42. margin-top: 25rpx;
  43. padding: 20rpx 20rpx;
  44. background-color: #fff;
  45. border-radius: 10rpx;
  46. box-shadow: 0 4rpx 12rpx 0 rgba(0, 0, 0, 0.25);
  47. display: flex;
  48. justify-content: flex-start;
  49. align-items: flex-start;
  50. }
  51. .task_main {
  52. box-sizing: border-box;
  53. flex: 1;
  54. height: 100%;
  55. padding: 20rpx 0 20rpx 10rpx;
  56. }