selectDate.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .select-view {
  2. height: 60rpx;
  3. line-height: 60rpx;
  4. background: #cc6031;
  5. color: #FFF;
  6. text-align: center;
  7. font-size: 36rpx;
  8. position: fixed;
  9. width: 750rpx;
  10. z-index: 3;
  11. }
  12. .height-view {
  13. height: 60rpx;
  14. }
  15. .select-box {
  16. position: fixed;
  17. background: #FFF;
  18. top: -300rpx;
  19. width: 750rpx;
  20. height: 300rpx;
  21. font-size: 32rpx;
  22. z-index: 2;
  23. }
  24. .change-time{
  25. display: flex;
  26. margin-top: 40rpx;
  27. }
  28. .section{
  29. display: flex;
  30. padding-top: 40rpx;
  31. }
  32. .section view{
  33. line-height: 60rpx;
  34. }
  35. .picker{
  36. margin: 0 10rpx;
  37. border: 1px solid #ccc;
  38. padding: 0 20rpx;
  39. height: 60rpx;
  40. line-height: 60rpx;
  41. border-radius: 5rpx;
  42. }
  43. .select-title{
  44. height: 140rpx;
  45. line-height: 140rpx;
  46. margin-left: 25rpx;
  47. }
  48. .search-btn-view{
  49. display: flex;
  50. width: 400rpx;
  51. margin: 20rpx auto;
  52. }
  53. .search-btn-view view{
  54. margin: 0 auto;
  55. }
  56. .search-btn{
  57. height: 60rpx;
  58. line-height: 60rpx;
  59. width: 150rpx;
  60. border-radius: 10rpx;
  61. background: #cc6031;
  62. text-align: center;
  63. color: #FFF;
  64. }
  65. .reset-btn{
  66. height: 60rpx;
  67. line-height: 60rpx;
  68. width: 150rpx;
  69. border-radius: 10rpx;
  70. background: #f1f1f1;
  71. text-align: center;
  72. color: #666;
  73. }
  74. .select-box-bg{
  75. background: #333;
  76. opacity: 0;
  77. z-index: 1;
  78. height: 100%;
  79. width: 100%;
  80. top: 60rpx;
  81. position: fixed;
  82. }