index.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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: 530rpx;
  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: 16rpx;
  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: center;
  43. .base {
  44. width: 80rpx;
  45. height: 40rpx;
  46. border-radius: 20rpx;
  47. padding: 0 !important;
  48. font-size: 20rpx;
  49. font-family: PingFang SC-Regular, PingFang SC;
  50. color: #999999;
  51. }
  52. }
  53. }
  54. }
  55. .detePickerHeader {
  56. position: relative;
  57. display: flex;
  58. align-items: center;
  59. justify-content: space-between;
  60. width: 750rpx;
  61. height: 100rpx;
  62. padding: 0 30rpx;
  63. box-sizing: border-box;
  64. text {
  65. font-size: 28rpx;
  66. font-family: PingFang SC-Regular, PingFang SC;
  67. color: var(--assist);
  68. }
  69. .type {
  70. display: flex;
  71. width: 384rpx;
  72. height: 80rpx;
  73. border: 1rpx solid var(--assist);
  74. box-sizing: border-box;
  75. position: absolute;
  76. top: 50%;
  77. left: 50%;
  78. transform: translate(-50%, -50%);
  79. border-radius: 4rpx;
  80. overflow: hidden;
  81. .option {
  82. height: 100%;
  83. width: 50%;
  84. padding: 10rpx 0 0 20rpx;
  85. box-sizing: border-box;
  86. font-size: 20rpx;
  87. font-family: PingFang SC-Regular, PingFang SC;
  88. color: var(--assist);
  89. .time {
  90. margin-top: 4rpx;
  91. }
  92. }
  93. .active-op {
  94. background-color: var(--assist);
  95. color: #fff;
  96. }
  97. }
  98. }