index.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .container {
  2. .result-view {
  3. display: flex;
  4. justify-content: space-between;
  5. padding: 5px 10px;
  6. align-items: center;
  7. align-content: center;
  8. text {
  9. color: #666;
  10. font-size: 12px;
  11. }
  12. }
  13. &__list-top {
  14. display: flex;
  15. flex-direction: row;
  16. justify-content: space-between;
  17. background-color: #f0f0f0;
  18. height: 35px;
  19. align-items: center;
  20. &__row {
  21. display: flex;
  22. flex-direction: row;
  23. align-items: center;
  24. align-content: center;
  25. width: 100%;
  26. text {
  27. font-size: 13px;
  28. color: #666;
  29. text-align: center;
  30. width: 100%;
  31. }
  32. }
  33. }
  34. &__list-content {
  35. display: flex;
  36. flex-direction: column;
  37. align-items: center;
  38. align-content: center;
  39. width: 100%;
  40. &__row {
  41. display: flex;
  42. flex-direction: row;
  43. align-items: center;
  44. align-content: center;
  45. width: 100%;
  46. height: 45px;
  47. border-bottom: 1px solid #f0f0f0;
  48. justify-content: space-between;
  49. text {
  50. font-size: 14px;
  51. color: #333;
  52. text-align: center;
  53. width: 100%;
  54. }
  55. }
  56. }
  57. }