msgReceipt.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. page {
  2. background: #F3F3F3;
  3. color: #333;
  4. }
  5. view,text{
  6. box-sizing: border-box;
  7. color:#333;
  8. font-size: 34rpx;
  9. }
  10. .receipt-top{
  11. width: 750rpx;
  12. height: 190rpx;
  13. background: #FFFFFF;
  14. padding:32rpx 34rpx 28rpx;
  15. }
  16. .receipt-top .head{
  17. font-weight: bold;
  18. color: #09AFFF;
  19. line-height: 70rpx;
  20. height: 70rpx;
  21. font-size: 46rpx;
  22. margin-bottom:6rpx;
  23. }
  24. .receipt-top .slogan{
  25. height: 54rpx;
  26. font-size: 36rpx;
  27. font-weight: 400;
  28. color: #979694;
  29. }
  30. .modal-list{
  31. position: relative;
  32. width:702rpx;
  33. height:508rpx;
  34. background:transparent;
  35. margin:0 24rpx;
  36. }
  37. .modal-block{
  38. width: 678rpx;
  39. /* height: 478rpx; */
  40. background: #FFFFFF;
  41. /* box-shadow: 0px 2rpx 4rpx 0px rgba(0,0,0,0.5); */
  42. border-radius: 18rpx;
  43. }
  44. .modal-block-bottom{
  45. position:absolute;
  46. top:32rpx;
  47. left:24rpx;
  48. z-index:999;
  49. }
  50. .modal-block-top{
  51. position:absolute;
  52. top:0;
  53. left:0;
  54. z-index:1000;
  55. }
  56. .modal-block .content{
  57. padding:38rpx 24rpx 40rpx 12rpx;
  58. }
  59. .modal-block .title{
  60. display: flex;
  61. height: 50rpx;
  62. align-items: center;
  63. justify-content: space-between;
  64. margin-bottom:28rpx;
  65. }
  66. .modal-block .left{
  67. display: flex;
  68. height: 50rpx;
  69. align-items: center;
  70. overflow: hidden;
  71. white-space: nowrap;
  72. }
  73. .modal-block .title image{
  74. width:55rpx;
  75. height:50rpx;
  76. margin-right:6rpx;
  77. }
  78. .title .left view{
  79. height: 50rpx;
  80. font-size: 38rpx;
  81. font-weight: 500;
  82. color: #333333;
  83. }
  84. .content .line{
  85. /* height:55rpx; */
  86. line-height: 55rpx;
  87. margin-bottom:7rpx;
  88. padding-left:24rpx;
  89. }
  90. .tiket-num text{
  91. color: #2A8DE2;
  92. text-decoration: underline;
  93. }
  94. .content .line-two{
  95. height:110rpx;
  96. line-height: 55rpx;
  97. overflow: hidden;
  98. -webkit-line-clamp: 2;
  99. display:-webkit-box;
  100. -webkit-box-orient:vertical;
  101. padding-left:24rpx;
  102. }
  103. .operate{
  104. height:84rpx;
  105. border-top: 2rpx solid #EFEFEF;
  106. display: flex;
  107. padding:0 10rpx 0 24rpx;
  108. align-items: center;
  109. justify-content: space-between;
  110. }
  111. .operate view{
  112. color: #4E4E4E;
  113. font-size: 38rpx;
  114. }
  115. .operate image{
  116. width:70rpx;
  117. height:70rpx;
  118. }
  119. .message-item.modal-block{
  120. width:702rpx;
  121. margin:26rpx 24rpx;
  122. }
  123. .receipt-content{
  124. width: 702rpx;
  125. background: #FFFFFF;
  126. border-radius: 18rpx;
  127. padding:30rpx 24rpx;
  128. margin:0 24rpx;
  129. }
  130. .receipt-content .title{
  131. height:48rpx;
  132. }
  133. .receipt-content .title text{
  134. color: #BF2B2B;
  135. }
  136. .receipt-content .textarea{
  137. height: 174rpx;
  138. border-radius: 12rpx;
  139. border: 2rpx solid #DADADA;
  140. margin:18rpx 0 22rpx;
  141. width:654rpx;
  142. padding:16rpx 22rpx;
  143. box-sizing: border-box;
  144. }
  145. .van-icon-cross.van-icon{
  146. color:#fff;
  147. }
  148. .submit-btn{
  149. width:702rpx;
  150. margin:0 24rpx;
  151. height: 100rpx;
  152. background: #3D7FFF linear-gradient(270deg, rgba(0,202,255,0.5) 0%, rgba(9,175,255,0.5) 100%);
  153. border-radius: 100rpx;
  154. text-align: center;
  155. font-size: 40rpx;
  156. line-height: 100rpx;
  157. color:#fff;
  158. margin-top:80rpx;
  159. }