mailMessage.scss 6.0 KB

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