index.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. page {
  2. height: 100vh;
  3. overflow: hidden;
  4. }
  5. .list-box {
  6. width: 690rpx;
  7. background: #FFFFFF;
  8. border-radius: 16rpx;
  9. margin: 20rpx auto 0;
  10. padding: 30rpx 20rpx;
  11. .title {
  12. line-height: 38rpx;
  13. font-family: Microsoft YaHei, Microsoft YaHei;
  14. font-weight: bold;
  15. font-size: 28rpx;
  16. color: #333333;
  17. }
  18. .row {
  19. line-height: 32rpx;
  20. font-family: Microsoft YaHei, Microsoft YaHei;
  21. font-size: 24rpx;
  22. color: #999999;
  23. margin-top: 10rpx;
  24. }
  25. }
  26. .iconfont {
  27. font-size: 28rpx;
  28. font-family: PingFang SC-Regular, PingFang SC;
  29. color: #666666;
  30. padding: 0 10rpx;
  31. }
  32. /* 未读 */
  33. .unread {
  34. width: 750rpx;
  35. height: 34rpx;
  36. text-align: center;
  37. font-size: 24rpx;
  38. font-family: PingFang SC-Regular, PingFang SC;
  39. color: #999999;
  40. margin: 12rpx 0 -5rpx 0;
  41. }
  42. .footer {
  43. display: flex;
  44. justify-content: center;
  45. position: fixed;
  46. bottom: 0;
  47. width: 100vw;
  48. min-height: 130rpx;
  49. background-color: #fff;
  50. box-shadow: 0px -2px 6px 1px rgba(0, 0, 0, 0.16);
  51. .but {
  52. width: 690rpx;
  53. height: 90rpx;
  54. background: #FA8C16;
  55. border-radius: 16rpx;
  56. font-size: 28rpx;
  57. font-weight: 600;
  58. color: #FFFFFF;
  59. margin-top: 10rpx;
  60. }
  61. }