style.scss 935 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. @mixin padding() {
  2. padding: 18rpx 0;
  3. }
  4. .section {
  5. margin-bottom: 20rpx;
  6. border: 1rpx solid $border-color-dark;
  7. border-radius: 18rpx;
  8. overflow: hidden;
  9. .section-title {
  10. width: 100%;
  11. height: 88rpx;
  12. padding: 0 32rpx;
  13. background-color: white;
  14. border-bottom: 1rpx solid $border-color;
  15. @include left;
  16. .icon {
  17. width: 45rpx;
  18. height: 45rpx;
  19. margin-right: 15rpx;
  20. }
  21. .title {
  22. flex: 1;
  23. font-size: $wk-font-medium;
  24. color: $dark;
  25. font-weight: 500;
  26. }
  27. .add-btn {
  28. font-size: $wk-font-sm;
  29. color: $theme-color;
  30. @include center;
  31. .icon-add {
  32. vertical-align: middle;
  33. font-size: $wk-font-sm;
  34. margin-right: 12rpx;
  35. }
  36. }
  37. .title-icon {
  38. width: 32rpx;
  39. height: 32rpx;
  40. }
  41. }
  42. .section-body {
  43. background-color: white;
  44. }
  45. }
  46. .no-data {
  47. width: 100%;
  48. text-align: center;
  49. font-size: $wk-font-sm;
  50. color: $light;
  51. padding: 40rpx 0;
  52. background-color: white;
  53. }