index.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. .arrow {
  85. width: 17rpx;
  86. height: 29rpx;
  87. margin-left: 15rpx;
  88. }
  89. .endDate {
  90. width: 100%;
  91. height: 100%;
  92. text-align: right;
  93. }
  94. .pick-view {
  95. position: fixed;
  96. bottom: 0;
  97. left: 0;
  98. background: rgba(0, 0, 0, 0.5);
  99. width: 100%;
  100. height: 100%;
  101. z-index: 99999;
  102. }
  103. .indicator {
  104. line-height: 50rpx;
  105. color: #000;
  106. background: #fff;
  107. }
  108. .pick-view-header {
  109. height: 50px;
  110. width: 100%;
  111. padding: 0 30rpx;
  112. box-sizing: border-box;
  113. border-bottom: 2rpx solid #ebebeb;
  114. display: flex;
  115. align-items: center;
  116. justify-content: space-between;
  117. background: #fff;
  118. position: absolute;
  119. left: 0;
  120. bottom: 300px;
  121. }