mailMessage.scss 6.6 KB

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