sign.less 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. .main {
  2. height: 88.8vh;
  3. .zero {
  4. width: 96vw;
  5. margin: 0 0 2vw 0;
  6. }
  7. .zero:nth-child(2) {
  8. margin: 0;
  9. }
  10. .one {
  11. width: 92vw;
  12. padding: 2vw;
  13. background-color: #f1f1f1;
  14. input {
  15. font-size: 16px;
  16. }
  17. }
  18. .two {
  19. flex-grow: 1;
  20. position: relative;
  21. width: 96vw;
  22. .scroll-view {
  23. position: absolute;
  24. top: 0;
  25. left: 0;
  26. right: 0;
  27. bottom: 0;
  28. .list-scroll-view {
  29. display: flex;
  30. flex-wrap: wrap;
  31. align-content: flex-start;
  32. justify-content: space-between;
  33. .list {
  34. background-color: #ffffff;
  35. margin: 0 0 2vw 0;
  36. padding: 2vw;
  37. display: flex;
  38. flex-direction: column;
  39. width: 96vw;
  40. .name {
  41. font-size: 18px;
  42. font-weight: bold;
  43. margin: 0 0 1vw 0;
  44. }
  45. .other {
  46. margin: 0 0 1vw 0;
  47. .other_1 {
  48. color: #858585;
  49. font-size: 15px;
  50. margin: 0 0 1vw 0;
  51. text:nth-child(1) {
  52. color: #000000;
  53. }
  54. }
  55. }
  56. .btn {
  57. text-align: center;
  58. button {
  59. margin: 0 2vw;
  60. font-size: 14px;
  61. }
  62. }
  63. }
  64. .list:last-child {
  65. margin: 0;
  66. }
  67. }
  68. }
  69. }
  70. }
  71. .dialog_one {
  72. display: flex;
  73. flex-direction: column;
  74. .one_1 {
  75. border-bottom: 1px solid #ccc;
  76. padding: 2vw 0;
  77. text {
  78. font-size: 16px;
  79. color: #858585;
  80. }
  81. text:nth-child(1) {
  82. color: #000000;
  83. }
  84. }
  85. }
  86. .dialog_two {
  87. .content {
  88. background-color: #ffffff;
  89. border-bottom: 1px solid #cccccc;
  90. display: flex;
  91. flex-direction: row;
  92. justify-content: space-between;
  93. padding: 2vw;
  94. width: 76vw;
  95. .label {
  96. width: 20vw;
  97. text-align: left;
  98. font-size: 16px;
  99. }
  100. .value {
  101. width: 55vw;
  102. text-align: right;
  103. font-size: 16px;
  104. textarea {
  105. width: 55vw;
  106. }
  107. }
  108. }
  109. .btn {
  110. margin: 2vw 0 0 0;
  111. text-align: center;
  112. }
  113. }