index.less 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .messageNoticebar{
  2. box-shadow: 1px 1px 14px -1px #767272;
  3. position: fixed;
  4. left: 0;
  5. right: 0;
  6. top: 0;
  7. z-index: 99999;
  8. opacity:0;
  9. background: #FCF6ED;
  10. .content{
  11. display: flex;
  12. flex-flow: row nowrap;
  13. align-items: center;
  14. position: relative;
  15. .noticebar{
  16. width: 60px;
  17. text-align: right;
  18. position: absolute;
  19. z-index: 1;
  20. right: 20px;
  21. }
  22. }
  23. .messageNoticebarContent{
  24. position: fixed;
  25. top: 0;
  26. left: 0;
  27. right: 0;
  28. bottom: 0;
  29. background: rgba(0,0,0,.7);
  30. display: flex;
  31. align-items: center;
  32. justify-content: center;
  33. .messageContent{
  34. margin: 0 35px;
  35. width: calc(100vw - 70px);
  36. background: #FFFFFF;
  37. border-radius: 25px;
  38. .title{
  39. text-align: center;
  40. font-size: 32px;
  41. padding: 25px 0;
  42. border-bottom: 1px #d4d1d1 solid;
  43. }
  44. .list{
  45. padding: 25px 20px;
  46. min-height: 120px;
  47. .item{
  48. padding-bottom: 20px;
  49. border-bottom: 1px #e0dede solid;
  50. margin-bottom: 30px;
  51. .itemHead{
  52. .content{
  53. font-size: 25px;
  54. font-weight: bolder;
  55. }
  56. }
  57. .itemBottom{
  58. display: flex;
  59. flex-flow: row nowrap;
  60. align-items: center;
  61. justify-content: space-between;
  62. font-size: 20px;
  63. padding-top: 25px;
  64. .noticeTypeName{
  65. }
  66. .createTimeFormattedDate{
  67. }
  68. }
  69. }
  70. }
  71. .operation{
  72. padding: 25px;
  73. font-size: 28px;
  74. border-top: 1px #d4d1d1 solid;
  75. display: flex;
  76. justify-content: center;
  77. text-align: center;
  78. }
  79. }
  80. }
  81. }