plan.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. }
  11. .section picker{
  12. width: 33%;
  13. position: relative;
  14. }
  15. .section .picker{
  16. padding-right: 32rpx;
  17. overflow: hidden;
  18. text-overflow: ellipsis;
  19. white-space: nowrap;
  20. text-align: center;
  21. font-size: 24rpx;
  22. }
  23. .section image{
  24. width: 32rpx;
  25. position: absolute;
  26. right: 0;
  27. top:2px;
  28. }
  29. .content{
  30. padding: 12px;
  31. }
  32. .list{
  33. background: #fff;
  34. box-shadow:0px 2px 12px 0px rgba(0,0,0,0.08);
  35. border-radius:4px;
  36. margin-bottom: 12px;
  37. }
  38. .title{
  39. color: #222;
  40. font-size: 32rpx;
  41. padding: 12px;
  42. font-weight: 600;
  43. border-bottom: 1px solid #F2F3F4;
  44. }
  45. .kc{
  46. color: #222;
  47. font-size: 28rpx;
  48. border-bottom: 1px solid #F2F3F4;
  49. padding: 12px;
  50. position: relative;
  51. }
  52. .kc>text{
  53. display: block;
  54. line-height: 23px;
  55. }
  56. .price{
  57. float: right;
  58. color: #E85546;
  59. font-size: 28rpx;
  60. }
  61. .apply{
  62. width:88px;
  63. height:32px;
  64. background:rgba(53,139,255,1);
  65. border-radius:16px;
  66. position: absolute;
  67. text-align: center;
  68. color: #fff;
  69. right: 12px;
  70. bottom: 12px;
  71. line-height: 32px;
  72. }