u-picker.wxss 2.3 KB

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