graveFrom.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. page {
  2. background: #F7F7F7;
  3. }
  4. .detail {
  5. position: absolute;
  6. padding: 30px 15px;
  7. width: 100vw;
  8. height: 100vh;
  9. box-sizing: border-box;
  10. overflow-y: auto;
  11. }
  12. .detail > view {
  13. background: #FFFFFF;
  14. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
  15. border-radius: 10px;
  16. margin-bottom: 20px;
  17. gap: 6px 10px;
  18. }
  19. .head {
  20. display: grid;
  21. padding: 40rpx 30rpx;
  22. grid: 30px 30px / 60px 1fr;
  23. }
  24. .head image {
  25. width: 60px;
  26. height: 60px;
  27. grid-area: 1 / 1 / 3 / 2;
  28. }
  29. .head .ase {
  30. font-size: 28rpx;
  31. color: #666666;
  32. line-height: 40rpx;
  33. word-wrap : break-word;
  34. }
  35. .head .weight {
  36. color: #333333;
  37. font-size: 36rpx;
  38. line-height: 80rpx;
  39. }
  40. .title {
  41. padding: 12px;
  42. border-bottom: 1px solid #ECECEC;
  43. font-size: 16px;
  44. font-weight: 500;
  45. color: #333333;
  46. line-height: 22px;
  47. }
  48. .from {
  49. margin-left: 16px;
  50. font-size: 14px;
  51. }
  52. .from > view {
  53. padding: 10px 0;
  54. }
  55. .from > view:not(:last-child) {
  56. border-bottom: 1px solid #ECECEC;
  57. }
  58. .label {
  59. color: #666666;
  60. line-height: 20px;
  61. font-weight: 400;
  62. }
  63. .value {
  64. color: #333333;
  65. line-height: 20px;
  66. font-weight: 400;
  67. }
  68. .base-content .from > view {
  69. display: flex;
  70. }
  71. .base-content .from > view > .label {
  72. flex: 0 0 84px;
  73. }
  74. .more-content .from > view > .label {
  75. display: block;
  76. margin-bottom: 6px;
  77. }
  78. .address {
  79. display: block;
  80. flex: 1;
  81. position: relative;
  82. }
  83. .address image {
  84. position: absolute;
  85. width: 20px;
  86. height: 20px;
  87. right: 15px;
  88. top: 50%;
  89. transform: translateY(-50%);
  90. }
  91. .remarks {
  92. height: 115px;
  93. display: block;
  94. position: relative;
  95. }
  96. .remarks textarea {
  97. width: 100%;
  98. height: 100%;
  99. }
  100. .remarks view {
  101. position: absolute;
  102. right: 16px;
  103. bottom: 10px;
  104. font-weight: 400;
  105. color: #C8C9CC;
  106. line-height: 20px;
  107. font-size: 10px;
  108. }
  109. .phone {
  110. position: relative;
  111. padding-left: 40px;
  112. }
  113. .phone::before {
  114. content: '';
  115. position: absolute;
  116. left: 35px;
  117. border: 4px solid transparent;
  118. width: 0;
  119. height: 0;
  120. border-top-width: 6px;
  121. border-top-color: #C8C9CC;
  122. top: 50%;
  123. margin-top: 0;
  124. transform: translate(-100%, -50%);
  125. z-index: 0;
  126. }
  127. .type {
  128. position: absolute;
  129. left: 0;
  130. padding-right: 20px;
  131. z-index: 1;
  132. }
  133. .bottom {
  134. margin: 30px 0 50px;
  135. font-size: 14px;
  136. font-weight: 400;
  137. color: #FFFFFF;
  138. line-height: 40px;
  139. background: #16DBD5;
  140. border-radius: 20px;
  141. height: 40px;
  142. text-align: center;
  143. }
  144. .require::after {
  145. content: '*';
  146. color: #FF4641;
  147. }