selectOrder.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. .item {
  25. box-sizing: border-box;
  26. width: 100%;
  27. height: 40px;
  28. line-height: 40px;
  29. background-color: #ffffff;
  30. position: relative;
  31. padding: 0 10upx 0 200upx;
  32. text-align: right;
  33. }
  34. .item .lable {
  35. position: absolute;
  36. left: 30upx;
  37. top: 0px;
  38. font-size: 16px;
  39. }
  40. uni-picker-view-column {
  41. font-size: 24rpx;
  42. }
  43. .filter_input {
  44. height: 92rpx;
  45. padding-top: 10rpx;
  46. }
  47. .date_item {
  48. float: left;
  49. width: 240upx;
  50. overflow: hidden;
  51. display: inline-block;
  52. text-align: center;
  53. border: 1px solid #ececec;
  54. height: 72rpx;
  55. line-height: 72rpx;
  56. // font-size: 28rpx;
  57. &:last-child {
  58. // float: right;
  59. }
  60. input {
  61. height: 72rpx;
  62. .uni-input-placeholder {
  63. color: #b5b8c2;
  64. }
  65. }
  66. }
  67. .filter_inputline {
  68. float: left;
  69. margin: 0 4rpx;
  70. line-height: 72rpx;
  71. &:after {
  72. content: '—';
  73. font-size: 28rpx;
  74. color: #848b9a;
  75. }
  76. }
  77. form{
  78. width: calc(100% - 100upx);
  79. padding: 50upx;
  80. .section{
  81. margin:50upx 0;
  82. }
  83. .btn-area{
  84. padding: 50upx;
  85. padding-top:0upx;
  86. button{
  87. background-color:#007AFF;
  88. }
  89. }
  90. }
  91. .select-text{
  92. color: #F0AD4E;
  93. }