address.less 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .main {
  2. height: 88.8vh;
  3. .zero {
  4. width: 96vw;
  5. margin: 0 0 2vw 0;
  6. // background-color: #fff;
  7. }
  8. .zero:last-child {
  9. margin: 0;
  10. }
  11. .one {
  12. display: flex;
  13. flex-direction: row;
  14. border-radius: 5px;
  15. background-color: #f1f1f1;
  16. .one_1 {
  17. width: 80vw;
  18. input {
  19. width: 100%;
  20. font-size: 15px;
  21. margin: 5px;
  22. }
  23. }
  24. .one_2 {
  25. width: 16vw;
  26. button {
  27. width: 100%;
  28. font-size: 14px;
  29. padding: 2vw 0;
  30. }
  31. }
  32. }
  33. .two {
  34. flex-grow: 1;
  35. width: 100%;
  36. position: relative;
  37. .scroll-view {
  38. position: absolute;
  39. top: 0;
  40. left: 0;
  41. right: 0;
  42. bottom: 0;
  43. .list-scroll-view {
  44. display: flex;
  45. flex-direction: column;
  46. .list {
  47. background-color: #ffffff;
  48. border-bottom: 1px solid #cccccc;
  49. width: 96vw;
  50. padding: 2vw;
  51. .name {
  52. font-size: 18px;
  53. margin: 0 0 1vw 0;
  54. font-weight: bold;
  55. }
  56. .other {
  57. margin: 0 0 1vw 0;
  58. .other_1 {
  59. margin: 0 0 1vw 0;
  60. font-size: 15px;
  61. text {
  62. color: #000000;
  63. }
  64. text:nth-child(1) {
  65. color: #858585;
  66. }
  67. }
  68. }
  69. .btn {
  70. text-align: center;
  71. button {
  72. margin: 0 2vw;
  73. font-size: 14px;
  74. }
  75. }
  76. }
  77. .list:last-child {
  78. border-bottom: none;
  79. }
  80. }
  81. }
  82. }
  83. }