index.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. @import "../../static/unread.wxss";
  2. @import "../../components/My_card/index.scss";
  3. page {
  4. padding: 0 !important;
  5. overflow: hidden !important;
  6. }
  7. .item {
  8. padding: 20rpx 30rpx;
  9. .first-line {
  10. height: 40rpx;
  11. .line-1 {
  12. float: left;
  13. width: 530rpx;
  14. font-size: 28rpx;
  15. font-family: PingFang SC-Bold, PingFang SC;
  16. font-weight: bold;
  17. color: #333333;
  18. }
  19. .time {
  20. float: right;
  21. font-size: 24rpx;
  22. font-family: PingFang SC-Regular, PingFang SC;
  23. color: #999999;
  24. margin-top: 4rpx;
  25. }
  26. }
  27. .state {
  28. display: flex;
  29. justify-content: space-between;
  30. height: 78rpx;
  31. width: 100%;
  32. margin-top: 16rpx;
  33. .explian {
  34. display: flex;
  35. flex-direction: column;
  36. justify-content: space-between;
  37. font-size: 24rpx;
  38. font-family: PingFang SC-Regular, PingFang SC;
  39. color: #999999;
  40. }
  41. .but {
  42. display: flex;
  43. align-items: center;
  44. .base {
  45. width: 80rpx !important;
  46. height: 40rpx !important;
  47. border-radius: 20rpx;
  48. padding: 0 !important;
  49. font-size: 20rpx;
  50. font-family: PingFang SC-Regular, PingFang SC;
  51. color: #999999;
  52. background-color: #EEEEEE;
  53. }
  54. .unread {
  55. background-color: #FFE3E1 !important;
  56. border: none !important;
  57. color: #FF3B30 !important;
  58. font-size: 20rpx;
  59. }
  60. }
  61. }
  62. }
  63. .detePickerHeader {
  64. position: relative;
  65. display: flex;
  66. align-items: center;
  67. justify-content: space-between;
  68. width: 750rpx;
  69. height: 100rpx;
  70. padding: 0 30rpx;
  71. box-sizing: border-box;
  72. text {
  73. font-size: 28rpx;
  74. font-family: PingFang SC-Regular, PingFang SC;
  75. color: var(--assist);
  76. }
  77. .type {
  78. display: flex;
  79. width: 384rpx;
  80. height: 80rpx;
  81. border: 1rpx solid var(--assist);
  82. box-sizing: border-box;
  83. position: absolute;
  84. top: 50%;
  85. left: 50%;
  86. transform: translate(-50%, -50%);
  87. border-radius: 4rpx;
  88. overflow: hidden;
  89. .option {
  90. height: 100%;
  91. width: 50%;
  92. padding: 10rpx 0 0 20rpx;
  93. box-sizing: border-box;
  94. font-size: 20rpx;
  95. font-family: PingFang SC-Regular, PingFang SC;
  96. color: var(--assist);
  97. .time {
  98. margin-top: 4rpx;
  99. }
  100. }
  101. .active-op {
  102. background-color: var(--assist);
  103. color: #fff;
  104. }
  105. }
  106. }