index.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .head {
  2. display: flex;
  3. align-items: center;
  4. justify-content: space-between;
  5. padding: 0 30rpx;
  6. box-sizing: border-box;
  7. position: static;
  8. top: 0;
  9. height: 90rpx;
  10. background: #FFFFFF;
  11. box-shadow: inset 0rpx -1rpx 0rpx 2rpx #DDDDDD;
  12. .label {
  13. font-size: 28rpx;
  14. font-weight: bold;
  15. color: #333333;
  16. }
  17. .filter {
  18. font-size: 28rpx;
  19. font-family: PingFang SC-Regular, PingFang SC;
  20. color: #666666;
  21. width: 120rpx;
  22. text-align: right;
  23. line-height: 60rpx;
  24. }
  25. }
  26. .item {
  27. background-color: #fff;
  28. padding: 20rpx 30rpx;
  29. box-sizing: border-box;
  30. border-bottom: 1px solid #ddd;
  31. .label {
  32. height: 42rpx;
  33. line-height: 42rpx;
  34. font-family: PingFang SC-Medium, PingFang SC;
  35. font-weight: 600;
  36. color: #333333;
  37. }
  38. .row {
  39. display: flex;
  40. justify-content: space-between;
  41. font-size: 24rpx;
  42. line-height: 34rpx;
  43. font-family: PingFang SC-Regular, PingFang SC;
  44. color: #666666;
  45. margin-top: 10rpx;
  46. view {
  47. width: 330rpx;
  48. }
  49. }
  50. }
  51. .tips{
  52. padding: 20rpx 30rpx;
  53. font-size: 28rpx;
  54. }
  55. .container {
  56. box-sizing: border-box;
  57. padding: 0 10rpx;
  58. width: 100%;
  59. background-color: #fff;
  60. }