index.scss 708 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. page{
  2. background-color: #f1f2f3;
  3. }
  4. .title{
  5. font-size: 26rpx;
  6. padding:10px
  7. }
  8. .flex-around{
  9. justify-content: space-around;
  10. }
  11. .panel{
  12. padding:10px;
  13. background-color: #fff;
  14. }
  15. .mt-10{
  16. margin-bottom: 10px;
  17. }
  18. .small {
  19. font-size: 26rpx;
  20. color: #333;
  21. line-height: 25px;
  22. }
  23. .mr-5{
  24. margin-right: 5px;
  25. }
  26. .mt-5{
  27. margin-bottom: 5px;
  28. }
  29. .demo-rate {
  30. background-color: #fff;
  31. height: 96rpx;
  32. display: flex;
  33. align-items: center;
  34. justify-content: space-between;
  35. padding: 0 32rpx;
  36. border-bottom: solid 1rpx #f0f0f0;
  37. border-top: solid 1rpx #f0f0f0;
  38. }
  39. .demo-rate__title {
  40. width: 200rpx;
  41. }
  42. .demo-rate__transparent {
  43. background-color: transparent;
  44. padding-left: 32rpx;
  45. border: 0;
  46. }