plan.wxss 2.0 KB

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