choose-date.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. html,
  2. body {
  3. background: #FAFAFA;
  4. font-family: PingFangSC-Regular;
  5. color: #333333;
  6. }
  7. .tips {
  8. background: #fdf8ec;
  9. display: flex;
  10. flex-direction: column;
  11. box-sizing: border-box;
  12. padding: 22rpx 32rpx;
  13. }
  14. .tips > view {
  15. display: flex;
  16. }
  17. .tips > view > text:first-child {
  18. background: #ff801a;
  19. display: block;
  20. width: 4px;
  21. height: 4px;
  22. border-radius: 50%;
  23. margin: 14rpx 16rpx 0 0;
  24. }
  25. .tips > view > text:last-child {
  26. font-size: 24rpx;
  27. display: block;
  28. width: 660rpx;
  29. color: #ff801a;
  30. line-height: 18px;
  31. text-align: justify;
  32. }
  33. .tabbar {
  34. background: #ffffff;
  35. }
  36. .tabbar > view {
  37. height: 100rpx;
  38. font-size: 32rpx;
  39. color: #666666;
  40. display: flex;
  41. justify-content: space-between;
  42. position: relative;
  43. }
  44. .tabbar > view >view{
  45. width: 360rpx;
  46. height: 100rpx;
  47. line-height: 100rpx;
  48. text-align: center;
  49. }
  50. .tabbar > view > .selected {
  51. color: #3296FB;
  52. }
  53. .tabbar > view > .blueline {
  54. position: absolute;
  55. left: 80rpx;
  56. bottom: 0;
  57. background: #3296FB;
  58. border-radius: 2rpx;
  59. width: 200rpx;
  60. height: 4rpx;
  61. }
  62. .tabbar .choosed{
  63. display: flex;
  64. flex-direction: column;
  65. justify-content: space-around;
  66. color: #3296FB;
  67. }
  68. .tabbar .choosed >text:first-child{
  69. font-size: 24rpx;
  70. line-height: 34rpx;
  71. }
  72. .tabbar .choosed >text:last-child{
  73. font-size: 36rpx;
  74. line-height: 44rpx;
  75. }
  76. .yearItem .year {
  77. height: 108rpx;
  78. line-height: 108rpx;
  79. text-align: center;
  80. }
  81. .yearItem .monthBox {
  82. width: 750rpx;
  83. height: 414rpx;
  84. background: #ffffff;
  85. box-sizing: border-box;
  86. padding: 64rpx 64rpx 64rpx 0;
  87. display: flex;
  88. flex-wrap: wrap;
  89. justify-content: space-between;
  90. align-content: space-between;
  91. font-size: 38rpx;
  92. }
  93. .yearItem .monthBox >view{
  94. width: 136rpx;
  95. height: 50rpx;
  96. text-align: right;
  97. position: relative;
  98. }
  99. .yearItem .monthBox >view>text{
  100. position: relative;
  101. z-index: 10
  102. }
  103. .yearItem .selectedMonth>text{
  104. color: #ffffff;
  105. }
  106. .yearItem .selectedMonth>.bluebg{
  107. width: 76rpx;
  108. height: 76rpx;
  109. background: #3296FB;
  110. border-radius: 50%;
  111. position: absolute;
  112. right: -6rpx;
  113. top: -16rpx;
  114. z-index: 1;
  115. }
  116. .yearItem .selectedMonth>.bluebg>text{
  117. position: absolute;
  118. left: 16rpx;
  119. bottom:-36rpx;
  120. font-size: 24rpx;
  121. color: #3296FB;
  122. background: #ffffff;
  123. }
  124. .yearItem .disable{
  125. color: #CCCCCC;
  126. }