plan.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* pages/plan/plan.wxss */
  2. page{
  3. background: #F4F7F9;
  4. }
  5. .section{
  6. display: flex;
  7. justify-content: space-between;
  8. padding: 12px;
  9. background: #fff;
  10. position: fixed;
  11. left: 0;
  12. top: 0;
  13. z-index: 99;
  14. width: 100%;
  15. }
  16. .section picker{
  17. width: 33%;
  18. position: relative;
  19. }
  20. .section .picker{
  21. padding-right: 32rpx;
  22. overflow: hidden;
  23. text-overflow: ellipsis;
  24. white-space: nowrap;
  25. text-align: center;
  26. font-size: 24rpx;
  27. }
  28. .section image{
  29. width: 32rpx;
  30. position: absolute;
  31. right: 0;
  32. top:2px;
  33. }
  34. .content{
  35. padding: 12px;
  36. padding-top: 60px;
  37. }
  38. .list{
  39. background: #fff;
  40. box-shadow:0px 2px 12px 0px rgba(0,0,0,0.08);
  41. border-radius:4px;
  42. margin-bottom: 12px;
  43. }
  44. .title{
  45. color: #222;
  46. font-size: 32rpx;
  47. padding: 12px;
  48. font-weight: 600;
  49. border-bottom: 1px solid #F2F3F4;
  50. }
  51. .kc{
  52. color: #222;
  53. font-size: 28rpx;
  54. border-bottom: 1px solid #F2F3F4;
  55. padding: 12px;
  56. position: relative;
  57. }
  58. .kc>text{
  59. display: block;
  60. line-height: 23px;
  61. }
  62. .price{
  63. float: right;
  64. color: #E85546;
  65. font-size: 28rpx;
  66. }
  67. .apply{
  68. width:88px;
  69. height:32px;
  70. background:rgba(53,139,255,1);
  71. border-radius:16px;
  72. position: absolute;
  73. text-align: center;
  74. color: #fff;
  75. right: 12px;
  76. bottom: 12px;
  77. line-height: 32px;
  78. }