mailMessage.scss 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  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. position: absolute;
  74. left: 50%;
  75. top: 50%;
  76. transform: translate(-50%, -50%);
  77. .item {
  78. margin-top: 20rpx;
  79. color: #333;
  80. font-size: 28rpx;
  81. display: flex;
  82. flex-direction: row;
  83. align-items: center;
  84. width: 690rpx;
  85. height: 200rpx;
  86. border-bottom: 2rpx solid #eeeeee;
  87. .avator {
  88. width: 108rpx;
  89. height: 108rpx;
  90. margin-right: 20rpx;
  91. }
  92. .content {
  93. flex: 1;
  94. width: auto;
  95. padding: 0;
  96. margin-top: 0;
  97. display: flex;
  98. flex-direction: row;
  99. justify-content: space-between;
  100. align-items: center;
  101. .tit {
  102. flex: 1;
  103. display: flex;
  104. flex-direction: column;
  105. justify-content: center;
  106. align-items: flex-start;
  107. margin-right: 20rpx;
  108. .name {
  109. font-size: 32rpx;
  110. }
  111. .time {
  112. font-size: 20rpx;
  113. color: #999;
  114. margin-top: 8rpx;
  115. max-width: 400rpx;
  116. }
  117. .desc {
  118. color: #999;
  119. font-size: 28rpx;
  120. margin-top: 12rpx;
  121. display: -webkit-box;
  122. -webkit-line-clamp: 2;
  123. overflow: hidden;
  124. text-overflow: ellipsis;
  125. -webkit-box-orient: vertical;
  126. }
  127. }
  128. .right-image {
  129. .right-image-icon {
  130. width: 36rpx;
  131. height: 36rpx;
  132. }
  133. .works-image {
  134. width: 92rpx;
  135. height: auto;
  136. }
  137. }
  138. .thumbnail {
  139. width: 120rpx;
  140. height: 120rpx;
  141. border-radius: 12rpx;
  142. overflow: hidden;
  143. background: #fff;
  144. flex-shrink: 0;
  145. image {
  146. width: 100%;
  147. height: 100%;
  148. object-fit: cover;
  149. }
  150. }
  151. }
  152. }
  153. }
  154. .list_article {
  155. width: 750rpx;
  156. display: flex;
  157. flex-direction: column;
  158. align-items: center;
  159. padding: 0 28rpx;
  160. background: #f2f6f2;
  161. position: absolute;
  162. top: 50%;
  163. left: 50%;
  164. transform: translate(-50%, -50%);
  165. .item {
  166. margin-top: 20rpx;
  167. display: flex;
  168. flex-direction: column;
  169. align-items: center;
  170. width: 690rpx;
  171. background: #f2f6f2;
  172. border-radius: 28rpx;
  173. padding-bottom: 30rpx;
  174. .thumbnail {
  175. width: 690rpx;
  176. height: 460rpx;
  177. border-radius: 28rpx 28rpx 0 0;
  178. overflow: hidden;
  179. image {
  180. width: 100%;
  181. height: 100%;
  182. object-fit: cover;
  183. }
  184. }
  185. .title {
  186. width: 650rpx;
  187. margin-top: 30rpx;
  188. font-size: 32rpx;
  189. color: #333;
  190. line-height: 1.4;
  191. }
  192. .content {
  193. width: 650rpx;
  194. margin-top: 20rpx;
  195. font-size: 26rpx;
  196. color: #666;
  197. line-height: 1.6;
  198. }
  199. .divider {
  200. width: 650rpx;
  201. height: 2rpx;
  202. background: #eeeeee;
  203. margin-top: 30rpx;
  204. }
  205. .time {
  206. width: 650rpx;
  207. margin-top: 20rpx;
  208. font-size: 26rpx;
  209. color: #999;
  210. }
  211. }
  212. .items {
  213. width: 100%;
  214. .items-content {
  215. background: #ffffff;
  216. border-radius: 12rpx;
  217. }
  218. .dateAndTime {
  219. text-align: center;
  220. padding: 28rpx 0 16rpx 0;
  221. font-weight: 400;
  222. font-size: 24rpx;
  223. color: #999999;
  224. font-family: "PingFang SC-Medium";
  225. }
  226. .items-content {
  227. > image {
  228. width: 100%;
  229. height: auto;
  230. }
  231. .title {
  232. padding: 16rpx 28rpx;
  233. }
  234. .content {
  235. padding: 0 28rpx;
  236. font-family: "PingFang SC-Medium";
  237. font-weight: 400;
  238. font-size: 24rpx;
  239. color: #999999;
  240. display: -webkit-box;
  241. -webkit-line-clamp: 6;
  242. overflow: hidden;
  243. text-overflow: ellipsis;
  244. -webkit-box-orient: vertical;
  245. }
  246. .viewDetails {
  247. padding: 16rpx 28rpx;
  248. margin-top: 16rpx;
  249. font-family: "PingFang SC-Medium";
  250. font-weight: 400;
  251. font-size: 24rpx;
  252. color: #999999;
  253. display: flex;
  254. align-items: center;
  255. justify-content: space-between;
  256. border-top: 2rpx solid #f2f6f2;
  257. image {
  258. width: 28rpx;
  259. height: 28rpx;
  260. }
  261. }
  262. }
  263. }
  264. }
  265. .blankHeight {
  266. height: 300rpx;
  267. }
  268. .loading-more {
  269. width: 100%;
  270. height: 80rpx;
  271. text-align: center;
  272. color: #999;
  273. font-size: 24rpx;
  274. line-height: 80rpx;
  275. margin-bottom: 20rpx;
  276. }
  277. .noData {
  278. display: flex;
  279. flex-direction: column;
  280. align-items: center;
  281. .tips-title{
  282. padding: 50rpx 0;
  283. padding-bottom: 30rpx;
  284. }
  285. > view {
  286. display: flex;
  287. flex-direction: column;
  288. align-items: center;
  289. }
  290. image {
  291. width: 380rpx;
  292. height: 308rpx;
  293. }
  294. .tips-title {
  295. font-family: "PingFang SC-Bold";
  296. font-weight: 400;
  297. font-size: 28rpx;
  298. color: #1f1f1f;
  299. line-height: 1;
  300. }
  301. .tips-content {
  302. font-weight: 400;
  303. font-size: 24rpx;
  304. font-family: "PingFang SC-Medium";
  305. color: #999999;
  306. }
  307. }