plan.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /* pages/plan/plan.wxss */
  2. page{
  3. background: #F4F7F9;
  4. }
  5. .section{
  6. background:rgba(53,139,255,1);
  7. position: fixed;
  8. left: 12px;
  9. top: 10px;
  10. z-index: 9;
  11. width: calc(100% - 24px);
  12. line-height: 38px;
  13. color: #fff;
  14. text-align: center;
  15. border-radius: 4px;
  16. box-shadow:0px 2px 12px 0px rgba(0,0,0,0.08);
  17. font-size: 34rpx;
  18. }
  19. .item{
  20. height: 80rpx;
  21. line-height: 80rpx;
  22. }
  23. .item label{
  24. font-size: 32rpx;
  25. }
  26. .item picker{
  27. width: 70%;
  28. position: relative;
  29. /* text-align: right; */
  30. border: 1px solid #d7d7d7;
  31. line-height: 30px;
  32. border-radius: 4px;
  33. color: #999;
  34. padding-left: 10px;
  35. }
  36. .item .picker{
  37. font-size: 26rpx;
  38. }
  39. .item text{
  40. color: #999;
  41. }
  42. .item image{
  43. width: 32rpx;
  44. position: absolute;
  45. right: 5px;
  46. top:7px;
  47. }
  48. .content{
  49. padding: 12px;
  50. padding-top: 60px;
  51. }
  52. .list{
  53. background: #fff;
  54. /* box-shadow:0px 2px 12px 0px rgba(0,0,0,0.08); */
  55. border-radius:4px;
  56. margin-bottom: 12px;
  57. }
  58. .list .name{
  59. font-size:32rpx;
  60. font-weight: bold;
  61. }
  62. .title{
  63. color: #222;
  64. font-size: 32rpx;
  65. padding: 12px;
  66. font-weight: 600;
  67. border-bottom: 1px solid #F2F3F4;
  68. border-left: 5px solid #358BFF;
  69. }
  70. .kc{
  71. color: #222;
  72. font-size: 28rpx;
  73. border-bottom: 1px solid #F2F3F4;
  74. padding: 12px;
  75. position: relative;
  76. border-radius: 6rpx;
  77. }
  78. .kc>text{
  79. display: block;
  80. line-height: 23px;
  81. }
  82. .price{
  83. float: right;
  84. color: #E85546;
  85. font-size: 28rpx;
  86. }
  87. .apply{
  88. width:88px;
  89. height:32px;
  90. background:rgba(53,139,255,1);
  91. border-radius:16px;
  92. position: absolute;
  93. text-align: center;
  94. color: #fff;
  95. right: 10px;
  96. bottom: 5px;
  97. line-height: 32px;
  98. }
  99. .model{
  100. position: fixed;
  101. width: 100%;
  102. height: 100vh;
  103. background: rgba(0,0,0,.5);
  104. left: 0;
  105. top: 0;
  106. z-index: 9;
  107. transition: all .3s linear;
  108. }
  109. .model_view{
  110. width: 90%;
  111. height: 305px;
  112. background: #fff;
  113. position: absolute;
  114. top: 0;
  115. bottom: 0;
  116. margin: auto;
  117. left: 0;
  118. right: 0;
  119. padding: 20px 20px;
  120. border-radius: 4px;
  121. }
  122. .model_view .model-title{
  123. height: 80rpx;
  124. font-size: 34rpx;
  125. font-weight: bold;
  126. }
  127. .item label{
  128. font-size: 30rpx;
  129. line-height: 30px;
  130. }
  131. .item{
  132. display: flex;
  133. justify-content: space-between;
  134. margin-bottom: 12px;
  135. }
  136. .btn{
  137. height:40px;
  138. background:rgba(53,139,255,1);
  139. border-radius:4px;
  140. text-align: center;
  141. line-height: 40px;
  142. color: #fff;
  143. margin-top: 20px;
  144. }
  145. .hide{
  146. top: -100%;
  147. }