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

71 lines
1.3KB

  1. /* pages/task/task.wxss */
  2. .task_container {
  3. width: 100vw;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: flex-start;
  7. align-items: flex-start;
  8. background-color: rgba(240, 242, 245, 1);
  9. }
  10. .banner {
  11. width: 100%;
  12. height: 420rpx;
  13. margin-top: 20rpx;
  14. }
  15. .banner-swiper {
  16. height: 420rpx;
  17. }
  18. .banner-image {
  19. width: 100%;
  20. height: 420rpx;
  21. }
  22. .task_box {
  23. box-sizing: border-box;
  24. width: 100%;
  25. padding: 0 40rpx 80rpx 40rpx;
  26. display: flex;
  27. flex-direction: column;
  28. justify-content: flex-start;
  29. align-items: flex-start;
  30. }
  31. .all_task {
  32. width: 100%;
  33. margin: 20rpx 0;
  34. display: flex;
  35. justify-content: space-between;
  36. align-items: center;
  37. }
  38. .task_card {
  39. box-sizing: border-box;
  40. width: 100%;
  41. height: 334rpx;
  42. padding: 30rpx;
  43. margin-bottom: 20rpx;
  44. background-color: #ffffff;
  45. border-radius: 10rpx;
  46. box-shadow: 0 4rpx 12rpx 0 rgba(0, 0, 0, 0.25);
  47. color: #666666;
  48. display: flex;
  49. flex-direction: column;
  50. justify-content: flex-start;
  51. align-items: flex-start;
  52. }
  53. .card_head {
  54. width: 100%;
  55. margin-bottom: 20rpx;
  56. display: flex;
  57. justify-content: space-between;
  58. align-items: center;
  59. }
  60. .task_icon {
  61. width: 34rpx;
  62. height: 40rpx;
  63. margin-right: 15rpx;
  64. }
  65. .more {
  66. font-size: 26rpx;
  67. color: #999999;
  68. }
  69. .task_main {
  70. flex: 1;
  71. }