process.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. page{padding-bottom: 180rpx;}
  2. .bg-box {
  3. background-color: #fff;
  4. padding-top: 10rpx;
  5. }
  6. /* 按方抓药流程 */
  7. .process-box {
  8. padding: 30rpx;
  9. }
  10. .process-box .title {
  11. font-weight: 500;
  12. color: #333333;
  13. margin-bottom: 30rpx;
  14. font-weight: bold;
  15. }
  16. .process-item {
  17. display: flex;
  18. display: -webkit-flex;
  19. }
  20. .process-item-circle {
  21. width: 36rpx;
  22. height: 36rpx;
  23. background: var(--mina);
  24. border-radius: 100%;
  25. color: #fff;
  26. margin-right: 10rpx;
  27. text-align: center;
  28. line-height: 36rpx;
  29. font-size: 26rpx;
  30. }
  31. .process-item-line {
  32. position: relative;
  33. padding-top: 48rpx;
  34. box-sizing: border-box;
  35. }
  36. .process-item-line::after {
  37. position: absolute;
  38. width: 4rpx;
  39. height: calc(100% - 36rpx);
  40. background: var(--mina);
  41. top: 0;
  42. left: 18rpx;
  43. content: '';
  44. }
  45. .process-item-text {
  46. color: #333;
  47. font-size: 26rpx;
  48. }
  49. /* 常见问题 */
  50. .questions-box {
  51. background-color: #fff;
  52. margin-top: 10rpx;
  53. padding: 30rpx;
  54. }
  55. .questions-box .title {
  56. font-weight: 500;
  57. color: #333333;
  58. font-weight: bold;
  59. margin-bottom: 30rpx;
  60. }
  61. .questions-box .question-item {
  62. margin-bottom: 30rpx;
  63. font-size: 24rpx;
  64. line-height: 38rpx;
  65. }
  66. .questions-box .question {
  67. color: #333333;
  68. font-weight: bold;
  69. }
  70. .questions-box .answer {
  71. color: #666;
  72. }
  73. /* 按钮 */
  74. .bottom-bar {
  75. position: fixed;
  76. bottom: 0;
  77. background: #fff;
  78. width: 100%;
  79. padding: 10rpx 0;
  80. height: 140rpx;
  81. z-index: 2;
  82. }
  83. .bottom-btn {
  84. margin: 30rpx 30rpx 20rpx;
  85. line-height: 83rpx;
  86. height: 83rpx;
  87. font-size: 36rpx;
  88. background-color: var(--mina);
  89. color: #fff;
  90. text-align: center;
  91. border-radius: 40rpx;
  92. }
  93. .bottom-btn image {
  94. width: 100%;
  95. height: 100%;
  96. }
  97. .bottom-text {
  98. margin: 0 auto 0rpx;
  99. font-size: 26rpx;
  100. color: #999;
  101. justify-content: center;
  102. }
  103. .bottom-text image {
  104. width: 30rpx;
  105. height: 30rpx;
  106. margin-right: 10rpx;
  107. }
  108. .bottom-text-share {
  109. font-size: 26rpx;
  110. color: #999;
  111. }
  112. .content {
  113. font-size: 34rpx;
  114. color: #333;
  115. line-height: 1.7;
  116. }