index.wxss 2.5 KB

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