address.wxss 1.6 KB

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