onlinePost.wxss 992 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* pages/onlinePost/onlinePost.wxss */
  2. page{
  3. background: #F4F7F9;
  4. }
  5. .content{
  6. margin: 12px 0;
  7. }
  8. .step{
  9. padding: 12px;
  10. }
  11. .step1{
  12. line-height: 25px;
  13. min-height: 80vh;
  14. background: #fff;
  15. padding: 12px;
  16. height: 80vh;
  17. overflow:scroll;
  18. }
  19. .step1 view{
  20. font-size: 30rpx;
  21. font-weight: 600;
  22. text-align: center;
  23. margin-bottom: 12rpx;
  24. }
  25. .step .btn{
  26. width:100%;
  27. height:48px;
  28. background:rgba(53,139,255,1);
  29. border-radius:4px;
  30. display: block;
  31. line-height: 48px;
  32. text-align: center;
  33. color: #fff;
  34. margin-top: 20px;
  35. font-size:34rpx;
  36. }
  37. .step2 .item{
  38. height: 80px;
  39. /* line-height: 80px; */
  40. padding: 0 20px;
  41. background:rgba(255,255,255,1);
  42. border-radius:7rpx;
  43. margin-bottom: 20px;
  44. position: relative;
  45. display: flex;
  46. flex-direction: column;
  47. justify-content: center;
  48. }
  49. .step2 .item .item-title{
  50. font-size:32rpx;
  51. font-weight:bold;
  52. }
  53. .step2 image{
  54. width: 100px;
  55. position: absolute;
  56. top: 0;
  57. bottom: 0;
  58. right: 20px;
  59. margin: auto;
  60. }