index.less 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* nova-werun/pages/home/step/index.wxss */
  2. .all{
  3. width: 100vw;
  4. background: linear-gradient(to bottom, #4F9AF7, #FFFFFF);
  5. .navbox{
  6. width: 100vw;
  7. display: flex;
  8. align-items: flex-end;
  9. .nav{
  10. width: 100%;
  11. display: flex;
  12. justify-content: center;
  13. position: relative;
  14. margin-bottom: 30rpx;
  15. height: 40rpx;
  16. .nav-addbox{
  17. position: absolute;
  18. left: 0rpx;
  19. top: 8rpx;
  20. font-size: 28rpx;
  21. height: 40rpx;
  22. color: white;
  23. display: flex;
  24. .nav-add{
  25. margin-left: 4rpx;
  26. }
  27. }
  28. .nav-title{
  29. height: 36rpx;
  30. font-family: MicrosoftYaHei;
  31. font-size: 36rpx;
  32. color: #333333;
  33. line-height: 40rpx;
  34. text-align: center;
  35. font-weight: 600;
  36. }
  37. }
  38. }
  39. .stepbox{
  40. width: 100%;
  41. height: auto;
  42. padding-left: 20rpx;
  43. margin-top: 20rpx;
  44. }
  45. .sumbitbox{
  46. width: 100%;
  47. height: 60rpx;
  48. display: flex;
  49. justify-content: center;
  50. align-items: center;
  51. margin-top: 85rpx;
  52. .sumbit{
  53. width: 200rpx;
  54. height: 60rpx;
  55. background-color: #4F9AF7;
  56. color: white;
  57. font-size: 30rpx;
  58. display: flex;
  59. justify-content: center;
  60. align-items: center;
  61. border-radius: 20rpx;
  62. }
  63. }
  64. }