index.less 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .container {
  2. display: flex;
  3. flex-direction: column;
  4. .delisting-info, .inquiry-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. .delisting-info-item, .inquiry-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. .remark {
  45. height: 100px;
  46. textarea {
  47. font-size: 13px;
  48. color: #444;
  49. height: 60px;
  50. border: 1px solid #eee;
  51. padding: 10px 10px 10px 10px;
  52. border-radius: 10px;
  53. width: 65%;
  54. }
  55. }
  56. }
  57. .button-view {
  58. display: flex;
  59. justify-content: space-between;
  60. margin: 10px 10px 10px 10px;
  61. van-button {
  62. width: 48%;
  63. height: 40px;
  64. }
  65. }
  66. }