selectOrder.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. .body {
  2. background-color: #FFFFFF;
  3. font-size: 16px;
  4. display: flex;
  5. flex-direction: row;
  6. justify-content: flex-start;
  7. }
  8. .select-input{
  9. display: flex;
  10. flex-direction: row;
  11. justify-content: flex-start;
  12. font-size: 16px;
  13. margin: 20upx 0 50upx 30upx;
  14. input {
  15. padding-left: 20upx;
  16. padding-top: 10upx;
  17. background-color: #FFFFFF;
  18. width: 400upx;
  19. height: 50upx;
  20. box-shadow: 0upx 0upx 20upx #D3D3D3;
  21. border-radius: 5upx;
  22. }
  23. }
  24. .select-input2{
  25. display: flex;
  26. flex-direction: row;
  27. justify-content: flex-start;
  28. font-size: 26upx;
  29. margin: 20upx 0 50upx 30upx;
  30. input {
  31. padding-left: 20upx;
  32. padding-top: 10upx;
  33. background-color: #FFFFFF;
  34. width: 400upx;
  35. height: 50upx;
  36. box-shadow: 0upx 0upx 20upx #D3D3D3;
  37. border-radius: 5upx;
  38. }
  39. }
  40. .item {
  41. box-sizing: border-box;
  42. width: 100%;
  43. height: 40px;
  44. line-height: 40px;
  45. background-color: #ffffff;
  46. position: relative;
  47. padding: 0 10upx 0 200upx;
  48. text-align: right;
  49. }
  50. .item .lable {
  51. position: absolute;
  52. left: 30upx;
  53. top: 0px;
  54. font-size: 16px;
  55. }
  56. uni-picker-view-column {
  57. font-size: 24rpx;
  58. }
  59. .filter_input {
  60. height: 92rpx;
  61. padding-top: 10rpx;
  62. }
  63. .date_item {
  64. float: left;
  65. width: 240upx;
  66. overflow: hidden;
  67. display: inline-block;
  68. text-align: center;
  69. border: 1px solid #ececec;
  70. height: 72rpx;
  71. line-height: 72rpx;
  72. // font-size: 28rpx;
  73. &:last-child {
  74. // float: right;
  75. }
  76. input {
  77. height: 72rpx;
  78. .uni-input-placeholder {
  79. color: #b5b8c2;
  80. }
  81. }
  82. }
  83. .filter_inputline {
  84. float: left;
  85. margin: 0 4rpx;
  86. line-height: 72rpx;
  87. &:after {
  88. content: '—';
  89. font-size: 28rpx;
  90. color: #848b9a;
  91. }
  92. }
  93. form{
  94. width: calc(100% - 100upx);
  95. padding: 50upx;
  96. .section{
  97. margin:50upx 0;
  98. }
  99. .btn-area{
  100. padding: 50upx;
  101. padding-top:0upx;
  102. button{
  103. background-color:#007AFF;
  104. }
  105. }
  106. }
  107. .select-text{
  108. color: #F0AD4E;
  109. }
  110. .button1 {
  111. margin: auto;
  112. width: 75upx;
  113. height: 50upx;
  114. }
  115. .p {
  116. /* #ifdef H5 */
  117. top: -13%;
  118. /* #endif */
  119. width: 50upx;
  120. height: 30upx;
  121. font-size: 25upx;
  122. padding-right: 9upx;
  123. padding-top: 6upx;
  124. /* #ifndef H5 */
  125. /* padding-top: 10upx; */
  126. /* #endif */
  127. position: absolute;
  128. /* 水平居中 */
  129. left: 50%;
  130. -webkit-transform: translateX(-50%);
  131. transform: translateX(-50%);
  132. }