timePicker.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* components/timePicker/timePicker.wxss */
  2. .picker-item{
  3. line-height: 100rpx;
  4. display: flex;
  5. justify-content: center;
  6. align-items: center;
  7. }
  8. /* 自定义时间 */
  9. .picker-container {
  10. display: flex;
  11. flex-direction: column;
  12. /* justify-content: center; */
  13. align-items: center;
  14. width: 100%;
  15. overflow: hidden;
  16. position: fixed;
  17. bottom: -640rpx;
  18. left: 0;
  19. /* height: 0; */
  20. transition: height 0.5s;
  21. z-index: 2000;
  22. background: white;
  23. border-top: 1px solid #EFEFF4;
  24. }
  25. .sensorType-screen{
  26. width: 100vw;
  27. /* height:400rpx; */
  28. position: fixed;
  29. top: 0;
  30. right: 0;
  31. bottom: 0;
  32. left: 0;
  33. background: #000;
  34. opacity: 0;
  35. overflow: hidden;
  36. z-index: 1999;
  37. color: #fff;
  38. }
  39. .sensorTypePicker{
  40. width: 690rpx;
  41. height: 240rpx;
  42. /* padding: 45px 0; */
  43. }
  44. .picker-item{
  45. line-height: 100rpx;
  46. display: flex;
  47. justify-content: center;
  48. align-items: center;
  49. font-size: 32rpx;
  50. /* overflow: hidden; */
  51. }
  52. .box{
  53. padding: 0 20rpx;
  54. }
  55. /* 至 */
  56. .to{
  57. width:100%;
  58. display: flex;
  59. justify-content: center;align-items: center;
  60. color:rgb(138,138,138);
  61. /* font-size:30rpx; */
  62. }
  63. /* 确定 */
  64. .sure{
  65. width:100%;
  66. height:90rpx;
  67. border-top: 2rpx solid #EFEFF4;
  68. display: flex;justify-content: center;align-items: center;
  69. color: rgb(36,123,255);
  70. font-size:16px;
  71. }
  72. .btn-box{
  73. width: 100%;
  74. display: flex;
  75. justify-content: space-between;
  76. align-items: center;
  77. border-bottom: 2rpx solid #eee;
  78. }
  79. .pick_btn{
  80. padding: 14rpx 30rpx;
  81. color: #ccc;
  82. /* background-color: #159; */
  83. }
  84. .show_picker{
  85. /* height: 320px; */
  86. }
  87. .hide_picker{
  88. /* height: 0; */
  89. }