mailMessage.scss 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. page {
  2. padding-bottom: calc(var(--window-bottom) + 120rpx);
  3. box-sizing: border-box;
  4. min-height: 100vh;
  5. }
  6. .topbg {
  7. }
  8. .topBody {
  9. width: 750rpx;
  10. }
  11. .mainBody {
  12. width: 750rpx;
  13. padding: 1rpx 20rpx;
  14. z-index: 9;
  15. display: flex;
  16. flex-direction: column;
  17. border-bottom: solid 2rpx #eeeeee;
  18. background: #fff;
  19. padding-top: calc(var(--status-bar-height) + 40rpx);
  20. padding-bottom: 10rpx;
  21. position: fixed;
  22. top: 0;
  23. left: 0;
  24. .tabs {
  25. display: flex;
  26. height: 100%;
  27. justify-content: space-between;
  28. align-items: center;
  29. width: 246rpx;
  30. .tab {
  31. position: relative;
  32. // width: 96rpx;
  33. height: 48rpx;
  34. font-size: 32rpx;
  35. font-family: "PingFang SC-Bold";
  36. color: #999;
  37. font-weight: 400;
  38. transition: all 3s;
  39. ::after {
  40. content: "";
  41. position: absolute;
  42. right: -15rpx;
  43. top: 0;
  44. width: 96rpx;
  45. height: 48rpx;
  46. background-image: url("../../static/me/wd_img_qiehuan.png");
  47. background-size: auto 100%;
  48. background-repeat: no-repeat;
  49. opacity: 0;
  50. }
  51. &.active {
  52. color: #1f1f1f;
  53. ::after {
  54. opacity: 0.7;
  55. }
  56. }
  57. }
  58. }
  59. }
  60. .reserveASeat {
  61. width: 100%;
  62. height: calc(var(--status-bar-height) + 100rpx);
  63. }
  64. .list_info {
  65. width: 750rpx;
  66. display: flex;
  67. flex-direction: column;
  68. align-items: center;
  69. background-color: #fff;
  70. padding: 0 32rpx;
  71. box-sizing: border-box;
  72. .item {
  73. margin-top: 20rpx;
  74. color: #333;
  75. font-size: 28rpx;
  76. display: flex;
  77. flex-direction: row;
  78. align-items: center;
  79. width: 690rpx;
  80. height: 200rpx;
  81. border-bottom: 2rpx solid #eeeeee;
  82. .avator {
  83. width: 108rpx;
  84. height: 108rpx;
  85. margin-right: 20rpx;
  86. }
  87. .content {
  88. flex: 1;
  89. width: auto;
  90. padding: 0;
  91. margin-top: 0;
  92. display: flex;
  93. flex-direction: row;
  94. justify-content: space-between;
  95. align-items: center;
  96. .tit {
  97. flex: 1;
  98. display: flex;
  99. flex-direction: column;
  100. justify-content: center;
  101. align-items: flex-start;
  102. margin-right: 20rpx;
  103. .name {
  104. font-size: 32rpx;
  105. }
  106. .time {
  107. font-size: 20rpx;
  108. color: #999;
  109. margin-top: 8rpx;
  110. max-width: 400rpx;
  111. }
  112. .desc {
  113. color: #999;
  114. font-size: 28rpx;
  115. margin-top: 12rpx;
  116. display: -webkit-box;
  117. -webkit-line-clamp: 2;
  118. overflow: hidden;
  119. text-overflow: ellipsis;
  120. -webkit-box-orient: vertical;
  121. }
  122. }
  123. .right-image {
  124. .right-image-icon {
  125. width: 36rpx;
  126. height: 36rpx;
  127. }
  128. .works-image {
  129. width: 92rpx;
  130. height: auto;
  131. }
  132. }
  133. .thumbnail {
  134. width: 120rpx;
  135. height: 120rpx;
  136. border-radius: 12rpx;
  137. overflow: hidden;
  138. background: #fff;
  139. flex-shrink: 0;
  140. image {
  141. width: 100%;
  142. height: 100%;
  143. object-fit: cover;
  144. }
  145. }
  146. }
  147. }
  148. }
  149. .list_article {
  150. width: 750rpx;
  151. display: flex;
  152. flex-direction: column;
  153. align-items: center;
  154. padding: 0 28rpx;
  155. .item {
  156. margin-top: 20rpx;
  157. display: flex;
  158. flex-direction: column;
  159. align-items: center;
  160. width: 690rpx;
  161. background: #f0f0f0;
  162. border-radius: 28rpx;
  163. padding-bottom: 30rpx;
  164. .thumbnail {
  165. width: 690rpx;
  166. height: 460rpx;
  167. border-radius: 28rpx 28rpx 0 0;
  168. overflow: hidden;
  169. image {
  170. width: 100%;
  171. height: 100%;
  172. object-fit: cover;
  173. }
  174. }
  175. .title {
  176. width: 650rpx;
  177. margin-top: 30rpx;
  178. font-size: 32rpx;
  179. color: #333;
  180. line-height: 1.4;
  181. }
  182. .content {
  183. width: 650rpx;
  184. margin-top: 20rpx;
  185. font-size: 26rpx;
  186. color: #666;
  187. line-height: 1.6;
  188. }
  189. .divider {
  190. width: 650rpx;
  191. height: 2rpx;
  192. background: #eeeeee;
  193. margin-top: 30rpx;
  194. }
  195. .time {
  196. width: 650rpx;
  197. margin-top: 20rpx;
  198. font-size: 26rpx;
  199. color: #999;
  200. }
  201. }
  202. .items {
  203. width: 100%;
  204. .items-content {
  205. background: #ffffff;
  206. border-radius: 12rpx;
  207. }
  208. .dateAndTime {
  209. text-align: center;
  210. padding: 28rpx 0 16rpx 0;
  211. font-weight: 400;
  212. font-size: 24rpx;
  213. color: #999999;
  214. font-family: "PingFang SC-Medium";
  215. }
  216. .items-content {
  217. > image {
  218. width: 100%;
  219. height: auto;
  220. }
  221. .title {
  222. padding: 16rpx 28rpx;
  223. }
  224. .content {
  225. padding: 0 28rpx;
  226. font-family: "PingFang SC-Medium";
  227. font-weight: 400;
  228. font-size: 24rpx;
  229. color: #999999;
  230. display: -webkit-box;
  231. -webkit-line-clamp: 6;
  232. overflow: hidden;
  233. text-overflow: ellipsis;
  234. -webkit-box-orient: vertical;
  235. }
  236. .viewDetails {
  237. padding: 16rpx 28rpx;
  238. margin-top: 16rpx;
  239. font-family: "PingFang SC-Medium";
  240. font-weight: 400;
  241. font-size: 24rpx;
  242. color: #999999;
  243. display: flex;
  244. align-items: center;
  245. justify-content: space-between;
  246. border-top: 2rpx solid #f2f6f2;
  247. image {
  248. width: 28rpx;
  249. height: 28rpx;
  250. }
  251. }
  252. }
  253. }
  254. }
  255. .blankHeight {
  256. height: 300rpx;
  257. }
  258. .loading-more {
  259. width: 100%;
  260. height: 80rpx;
  261. text-align: center;
  262. color: #999;
  263. font-size: 24rpx;
  264. line-height: 80rpx;
  265. margin-bottom: 20rpx;
  266. }
  267. .noData {
  268. display: flex;
  269. flex-direction: column;
  270. align-items: center;
  271. .tips-title{
  272. padding: 50rpx 0;
  273. }
  274. > view {
  275. display: flex;
  276. flex-direction: column;
  277. align-items: center;
  278. image {
  279. width: 380rpx;
  280. height: 308rpx;
  281. }
  282. }
  283. .tips-title {
  284. font-family: "PingFang SC-Bold";
  285. font-weight: 400;
  286. font-size: 28rpx;
  287. color: #1f1f1f;
  288. line-height: 1;
  289. }
  290. .tips-content {
  291. font-weight: 400;
  292. font-size: 24rpx;
  293. font-family: "PingFang SC-Medium";
  294. }
  295. }