index.scss 2.7 KB

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