index.less 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .container {
  2. display: flex;
  3. flex-direction: column;
  4. .listing-info {
  5. display: grid;
  6. margin: 10px;
  7. align-content: center;
  8. border: 1px solid #f0f0f0;
  9. border-radius: 10px;
  10. view:nth-child(1) {
  11. text {
  12. font-size: 18px;
  13. }
  14. }
  15. .listing-info-item {
  16. display: flex;
  17. flex-direction: row;
  18. align-content: center;
  19. align-items: center;
  20. justify-content: start;
  21. height: 45px;
  22. border-bottom: 1px solid #f0f0f0;
  23. width: 100%;
  24. margin: 0px 10px 0px 10px;
  25. text:nth-child(1) {
  26. width: 100px;
  27. }
  28. input {
  29. font-size: 14px;
  30. color: #333;
  31. }
  32. text:nth-child(3) {
  33. width: 60px;
  34. padding-left: 10px;
  35. font-size: 12px;
  36. color: #666;
  37. }
  38. text {
  39. font-size: 14px;
  40. color: #333333;
  41. text-align: left;
  42. }
  43. }
  44. }
  45. .button-view {
  46. display: flex;
  47. justify-content: space-between;
  48. margin: 10px 10px 10px 10px;
  49. justify-content: center;
  50. justify-items: center;
  51. van-button {
  52. height: 40px;
  53. width: 50%;
  54. }
  55. }
  56. }