timePicker.wxss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /* components/timePicker/timePicker.wxss */
  2. .picker-item{
  3. line-height: 50px;
  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: -320px;
  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: 120px;
  42. /* padding: 45px 0; */
  43. }
  44. .picker-item{
  45. line-height: 50px;
  46. display: flex;
  47. justify-content: center;
  48. align-items: center;
  49. font-size: 16px;
  50. /* overflow: hidden; */
  51. }
  52. .box{
  53. padding: 0 10px;
  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:45px;
  67. border-top: 1px 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: 1px solid #eee;
  78. }
  79. .pick_btn{
  80. padding: 7px 15px;
  81. color: #ccc;
  82. }