index.less 1017 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .app-list {
  2. background-color: #fff;
  3. padding: 0 .32rem;
  4. &__table {
  5. min-width: 100%;
  6. text-align: center;
  7. th {
  8. font-size: .24rem;
  9. font-weight: normal;
  10. color: #999;
  11. }
  12. }
  13. &__row {
  14. position: relative;
  15. &::after {
  16. content: '';
  17. position: absolute;
  18. bottom: 0;
  19. right: 0;
  20. left: 0;
  21. pointer-events: none;
  22. border-bottom: 1px solid #eee;
  23. transform: scaleY(.5);
  24. }
  25. }
  26. &__column {
  27. padding: .12rem .08rem;
  28. }
  29. &__header &__column {
  30. padding: 0 .08rem;
  31. }
  32. &__column:first-child &__cell {
  33. align-items: flex-start;
  34. padding-left: 0;
  35. }
  36. &__column:last-child &__cell {
  37. align-items: flex-end;
  38. padding-right: 0;
  39. }
  40. &__cell {
  41. display: flex;
  42. flex-direction: column;
  43. justify-content: center;
  44. min-height: .72rem;
  45. }
  46. }