index.less 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. @name-size: 28rpx;
  2. @text-size: 26rpx;
  3. @main-color: #46a9a4;
  4. @text-color: white;
  5. .item {
  6. margin: 20rpx;
  7. border-bottom: 1rpx solid whitesmoke;
  8. padding-bottom: 20rpx;
  9. .name {
  10. font-size: @name-size;
  11. padding-bottom: 10rpx;
  12. }
  13. .content{
  14. padding: 0 20rpx;
  15. .text {
  16. display: flex;
  17. align-items: flex-end;
  18. >textarea {
  19. width: 550rpx;
  20. padding: 10rpx;
  21. margin: 5rpx 0;
  22. font-size: @text-size;
  23. min-height: 100rpx;
  24. background: whitesmoke;
  25. }
  26. .btn {
  27. margin: 0 10rpx;
  28. padding: 5rpx 10rpx;
  29. font-size: @text-size;
  30. background: @main-color;
  31. }
  32. .title {
  33. margin-right: 20rpx;
  34. font-size: @text-size;
  35. }
  36. }
  37. .radioGroup {
  38. .radio {
  39. font-size: @text-size;
  40. padding: 5rpx;
  41. }
  42. }
  43. .tags {
  44. margin-bottom: 10rpx;
  45. van-tag {
  46. margin-right: 10rpx;
  47. }
  48. }
  49. .btn_Pointer {
  50. width: 50vw;
  51. button {
  52. font-size: 26rpx;
  53. width: 50vw;
  54. }
  55. }
  56. .specMap {
  57. .tip {
  58. font-size: @text-size;
  59. color: red;
  60. }
  61. .list {
  62. .tags {
  63. .title {
  64. font-weight: bold;
  65. font-size: @text-size;
  66. }
  67. }
  68. }
  69. .obj {
  70. .title {
  71. margin: 10rpx 0;
  72. font-weight: bold;
  73. font-size: @text-size;
  74. }
  75. .obj_item {
  76. margin: 10rpx;
  77. padding: 10rpx;
  78. background: whitesmoke;
  79. .key {
  80. font-weight: bold;
  81. font-size: @text-size;
  82. }
  83. .info {
  84. .info_item {
  85. display: flex;
  86. padding: 10rpx 0;
  87. border-bottom: 1rpx solid white;
  88. position: relative;
  89. >view {
  90. margin: 0 3rpx;
  91. >text {
  92. font-size: @text-size;
  93. }
  94. >input {
  95. border: 1rpx solid rgb(201, 201, 201);
  96. padding: 10rpx;
  97. font-size: @text-size;
  98. }
  99. }
  100. .del {
  101. width: 40rpx;
  102. height: 40rpx;
  103. background: rgb(207, 207, 207);
  104. display: flex;
  105. justify-content: center;
  106. position: absolute;
  107. right: 0;
  108. top: 0;
  109. }
  110. }
  111. .btn_specMap{
  112. width: 50%;
  113. >button{
  114. font-size: @text-size;
  115. }
  116. }
  117. }
  118. }
  119. }
  120. }
  121. }
  122. }
  123. .popup {
  124. width: 100%;
  125. height: 70vh;
  126. .title {
  127. font-size: @name-size;
  128. height: 90rpx;
  129. line-height: 90rpx;
  130. text-align: center;
  131. border-bottom: 1rpx solid whitesmoke;
  132. }
  133. .itemBox {
  134. overflow-y: auto;
  135. height: calc(70vh - 250rpx);
  136. .item {
  137. font-size: @text-size;
  138. border-bottom: 1rpx solid whitesmoke;
  139. }
  140. }
  141. }
  142. .footer {
  143. .btn {
  144. width: 100vw;
  145. border-radius: 0;
  146. }
  147. }