task.wxss 843 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /* pages/task/task.wxss */
  2. .sp-task-body {
  3. margin: 15% auto 0;
  4. text-align: center;
  5. }
  6. .sp-task-body > image {
  7. width: 176rpx;
  8. height: 176rpx;
  9. border-radius: 24rpx;
  10. }
  11. .sp-task-body > text {
  12. display: block;
  13. margin: 12rpx 90rpx 0;
  14. line-height: 48rpx;
  15. font-size: 32rpx;
  16. color: #999;
  17. }
  18. .sp-task-body > text.title {
  19. margin: 38rpx 0 0;
  20. line-height: 56rpx;
  21. font-size: 38rpx;
  22. color: #333;
  23. font-weight: bold;
  24. }
  25. .sp-task-body > button, .sp-task-body > navigate {
  26. display: inline-block;
  27. width: 200rpx;
  28. height: 80rpx;
  29. line-height: 78rpx;
  30. margin: 60rpx 0 0;
  31. padding: 0;
  32. vertical-align: top;
  33. font-size: 30rpx;
  34. color: #12c287;
  35. border: 1px solid #12c287;
  36. border-radius: 8rpx;
  37. background: #fff;
  38. }
  39. .sp-task-body > button.button-hover {
  40. border: 1px solid #12c287;
  41. background: #12c287;
  42. color: #fff;
  43. }