notification - 副本.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. margin-top: 18rpx;
  28. .swiper-item{
  29. height: 100%;
  30. .page-box{
  31. padding: 0 30rpx 20rpx;
  32. .notice-container{
  33. padding: 42rpx 32rpx;
  34. margin-bottom: 20rpx;
  35. background-color: #FFFFFF;
  36. // border-radius: 10rpx;
  37. .title {
  38. margin-bottom: 12rpx;
  39. font-size: 32rpx;
  40. font-family: PingFangSC-Regular, PingFang SC;
  41. font-weight: 400;
  42. color: #000000;
  43. line-height: 45rpx;
  44. letter-spacing: 1px;
  45. }
  46. .content {
  47. margin-bottom: 12rpx;
  48. font-size: 24rpx;
  49. font-family: PingFangSC-Regular, PingFang SC;
  50. font-weight: 400;
  51. color: #545454;
  52. line-height: 35rpx;
  53. letter-spacing: 1px;
  54. }
  55. .footer{
  56. display: flex;
  57. flex-wrap: wrap;
  58. justify-content: space-between;
  59. .left{
  60. font-size: 22rpx;
  61. font-family: PingFangSC-Regular, PingFang SC;
  62. font-weight: 400;
  63. color: #9F9F9F;
  64. line-height: 30rpx;
  65. }
  66. .right{
  67. font-size: 22rpx;
  68. font-family: PingFangSC-Regular, PingFang SC;
  69. font-weight: 400;
  70. color: #1A1A1A;
  71. line-height: 30rpx;
  72. }
  73. .unread{
  74. color: #1A1A1A;
  75. }
  76. .haveread{
  77. color: #EF6622;
  78. }
  79. }
  80. }
  81. }
  82. }
  83. }
  84. }