plan.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. }
  69. .kc{
  70. color: #222;
  71. font-size: 28rpx;
  72. border-bottom: 1px solid #F2F3F4;
  73. padding: 12px;
  74. position: relative;
  75. border-radius: 6rpx;
  76. }
  77. .kc>text{
  78. display: block;
  79. line-height: 23px;
  80. }
  81. .price{
  82. float: right;
  83. color: #E85546;
  84. font-size: 28rpx;
  85. }
  86. .apply{
  87. width:88px;
  88. height:32px;
  89. background:rgba(53,139,255,1);
  90. border-radius:16px;
  91. position: absolute;
  92. text-align: center;
  93. color: #fff;
  94. right: 12px;
  95. bottom: 12px;
  96. line-height: 32px;
  97. }
  98. .model{
  99. position: fixed;
  100. width: 100%;
  101. height: 100vh;
  102. background: rgba(0,0,0,.5);
  103. left: 0;
  104. top: 0;
  105. z-index: 9;
  106. transition: all .3s linear;
  107. }
  108. .model_view{
  109. width: 90%;
  110. height: 305px;
  111. background: #fff;
  112. position: absolute;
  113. top: 0;
  114. bottom: 0;
  115. margin: auto;
  116. left: 0;
  117. right: 0;
  118. padding: 20px 20px;
  119. border-radius: 4px;
  120. }
  121. .model_view .model-title{
  122. height: 80rpx;
  123. font-size: 34rpx;
  124. font-weight: bold;
  125. }
  126. .item label{
  127. font-size: 30rpx;
  128. line-height: 30px;
  129. }
  130. .item{
  131. display: flex;
  132. justify-content: space-between;
  133. margin-bottom: 12px;
  134. }
  135. .btn{
  136. height:40px;
  137. background:rgba(53,139,255,1);
  138. border-radius:4px;
  139. text-align: center;
  140. line-height: 40px;
  141. color: #fff;
  142. margin-top: 20px;
  143. }
  144. .hide{
  145. top: -100%;
  146. }