index.scss 2.5 KB

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