index.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /* 输入框部分 */
  2. page {
  3. background: #f5f5f5;
  4. padding-top: 20rpx;
  5. }
  6. .list {
  7. min-height: 86rpx;
  8. font-size: 30rpx;
  9. background: #fff;
  10. font-family: SourceHanSansCN-Regular;
  11. font-weight: 400;
  12. padding: 15rpx 30rpx;
  13. display: flex;
  14. flex-direction: row;
  15. justify-content: space-between;
  16. align-items: center;
  17. border-bottom: 2rpx solid #f5f5f5;
  18. }
  19. .list text {
  20. color: #666666;
  21. }
  22. .list-content {
  23. flex: 1;
  24. height: 100%;
  25. display: flex;
  26. align-items: center;
  27. justify-content: flex-end;
  28. }
  29. .list-content input {
  30. height: 100%;
  31. text-align: right;
  32. padding-left: 23rpx;
  33. font-size: 28rpx;
  34. display: flex;
  35. align-items: center;
  36. }
  37. .list-content .picker {
  38. width: 100%;
  39. height: 100%;
  40. display: flex;
  41. align-items: center;
  42. justify-content: flex-end;
  43. }
  44. .delete {
  45. height: 100rpx;
  46. font-size: 34rpx;
  47. color: #0177FF;
  48. background: #fff;
  49. display: flex;
  50. align-items: center;
  51. justify-content: center;
  52. margin: 20rpx 0;
  53. }
  54. icon {
  55. margin-right: 15rpx;
  56. }
  57. /* btn */
  58. .fixed-footer {
  59. width: 100%;
  60. }
  61. .btn-group {
  62. width: 100%;
  63. padding: 20rpx;
  64. box-sizing: border-box;
  65. }
  66. .selfBtn {
  67. display: flex;
  68. height: 88rpx;
  69. line-height: 88rpx;
  70. align-items: center;
  71. /* box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1); */
  72. background: #0177FF;
  73. border-radius: 10rpx;
  74. justify-content: center;
  75. align-items: center;
  76. font-size: 34rpx;
  77. font-family: SourceHanSansCN-Normal;
  78. font-weight: 400;
  79. color: rgba(255, 254, 254, 1);
  80. }
  81. .disabled {
  82. background: #D8D8D8;
  83. }
  84. button::after {
  85. border: none;
  86. }
  87. .arrow {
  88. width: 17rpx;
  89. height: 29rpx;
  90. margin-left: 15rpx;
  91. }
  92. .endDate {
  93. width: 100%;
  94. height: 100%;
  95. text-align: right;
  96. }
  97. .pick-view {
  98. position: fixed;
  99. bottom: 0;
  100. left: 0;
  101. background: rgba(0, 0, 0, 0.5);
  102. width: 100%;
  103. height: 100%;
  104. z-index: 99999;
  105. }
  106. .indicator {
  107. line-height: 50rpx;
  108. color: #000;
  109. background: #fff;
  110. }
  111. .pick-view-header {
  112. height: 50px;
  113. width: 100%;
  114. padding: 0 30rpx;
  115. box-sizing: border-box;
  116. border-bottom: 2rpx solid #ebebeb;
  117. display: flex;
  118. align-items: center;
  119. justify-content: space-between;
  120. background: #fff;
  121. position: absolute;
  122. left: 0;
  123. bottom: 300px;
  124. }