notification.scss 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* #ifndef H5 */
  2. page {
  3. height: 100%;
  4. background-color: #f2f2f2;
  5. }
  6. /* #endif */
  7. .notification{
  8. .wrap {
  9. display: flex;
  10. flex-direction: column;
  11. height: calc(100vh - var(--window-top));
  12. width: 100%;
  13. }
  14. &-tabsswiper{
  15. }
  16. .notice-search{
  17. padding: 20rpx 30rpx;
  18. &-btn{
  19. ::v-deep .u-content{
  20. // padding: 0 !important;
  21. border-radius: 10rpx !important;
  22. }
  23. }
  24. }
  25. .swiper-box{
  26. flex: 1;
  27. .swiper-item{
  28. height: 100%;
  29. .page-box{
  30. padding: 0 30rpx 20rpx;
  31. .notice-container{
  32. padding: 20rpx;
  33. margin-bottom: 20rpx;
  34. background-color: #FFFFFF;
  35. border-radius: 10rpx;
  36. .title{
  37. margin-bottom: 12rpx;
  38. font-size: 32rpx;
  39. font-family: PingFangSC-Regular, PingFang SC;
  40. font-weight: 400;
  41. color: #000000;
  42. line-height: 45rpx;
  43. letter-spacing: 1px;
  44. }
  45. .content{
  46. margin-bottom: 12rpx;
  47. font-size: 24rpx;
  48. font-family: PingFangSC-Regular, PingFang SC;
  49. font-weight: 400;
  50. color: #545454;
  51. line-height: 35rpx;
  52. letter-spacing: 1px;
  53. }
  54. .footer{
  55. display: flex;
  56. flex-wrap: wrap;
  57. justify-content: space-between;
  58. .left{
  59. font-size: 22rpx;
  60. font-family: PingFangSC-Regular, PingFang SC;
  61. font-weight: 400;
  62. color: #9F9F9F;
  63. line-height: 30rpx;
  64. }
  65. .right{
  66. font-size: 22rpx;
  67. font-family: PingFangSC-Regular, PingFang SC;
  68. font-weight: 400;
  69. color: #1A1A1A;
  70. line-height: 30rpx;
  71. }
  72. .unread{
  73. color: #1A1A1A;
  74. }
  75. .haveread{
  76. color: #EF6622;
  77. }
  78. }
  79. }
  80. }
  81. }
  82. }
  83. }