plan.wxss 900 B

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