u-picker.css 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  5. */
  6. .u-datetime-picker.data-v-70102400 {
  7. position: relative;
  8. z-index: 999;
  9. }
  10. .u-picker-view.data-v-70102400 {
  11. height: 100%;
  12. box-sizing: border-box;
  13. }
  14. .u-picker-header.data-v-70102400 {
  15. width: 100%;
  16. height: 90rpx;
  17. padding: 0 40rpx;
  18. display: -webkit-box;
  19. display: -webkit-flex;
  20. display: flex;
  21. -webkit-box-orient: horizontal;
  22. -webkit-box-direction: normal;
  23. -webkit-flex-direction: row;
  24. flex-direction: row;
  25. -webkit-box-pack: justify;
  26. -webkit-justify-content: space-between;
  27. justify-content: space-between;
  28. -webkit-box-align: center;
  29. -webkit-align-items: center;
  30. align-items: center;
  31. box-sizing: border-box;
  32. font-size: 30rpx;
  33. background: #fff;
  34. position: relative;
  35. }
  36. .u-picker-header.data-v-70102400::after {
  37. content: '';
  38. position: absolute;
  39. border-bottom: 1px solid #eaeef1;
  40. -webkit-transform: scaleY(0.5);
  41. transform: scaleY(0.5);
  42. bottom: 0;
  43. right: 0;
  44. left: 0;
  45. }
  46. .u-picker__title.data-v-70102400 {
  47. color: #606266;
  48. }
  49. .u-picker-body.data-v-70102400 {
  50. width: 100%;
  51. height: 500rpx;
  52. overflow: hidden;
  53. background-color: #fff;
  54. }
  55. .u-column-item.data-v-70102400 {
  56. display: -webkit-box;
  57. display: -webkit-flex;
  58. display: flex;
  59. -webkit-box-orient: horizontal;
  60. -webkit-box-direction: normal;
  61. -webkit-flex-direction: row;
  62. flex-direction: row;
  63. -webkit-box-align: center;
  64. -webkit-align-items: center;
  65. align-items: center;
  66. -webkit-box-pack: center;
  67. -webkit-justify-content: center;
  68. justify-content: center;
  69. font-size: 32rpx;
  70. color: #303133;
  71. padding: 0 8rpx;
  72. }
  73. .u-text.data-v-70102400 {
  74. font-size: 24rpx;
  75. padding-left: 8rpx;
  76. }
  77. .u-btn-picker.data-v-70102400 {
  78. padding: 16rpx;
  79. box-sizing: border-box;
  80. text-align: center;
  81. text-decoration: none;
  82. }
  83. .u-opacity.data-v-70102400 {
  84. opacity: 0.5;
  85. }
  86. .u-btn-picker--primary.data-v-70102400 {
  87. color: #2979ff;
  88. }
  89. .u-btn-picker--tips.data-v-70102400 {
  90. color: #909399;
  91. }