pretty-times.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. .container{
  2. view,text,image{
  3. box-sizing: border-box;
  4. }
  5. scroll-view{
  6. width: 100%;
  7. white-space: nowrap;
  8. height: 63px;
  9. background-color: #fff;
  10. position: relative;
  11. padding-top: 10rpx;
  12. // margin-top:10px;
  13. &::after{
  14. background: #e5e5e5;
  15. content: '';
  16. display:block;
  17. width: 100%;
  18. height: 1px;
  19. position: absolute;
  20. bottom: 0;
  21. left: 0;
  22. transform:scaleY(0.5);
  23. }
  24. .flex-box{
  25. display: inline-block;
  26. height: 60px;
  27. width: 25%;
  28. margin: 0 7rpx 0 7rpx;
  29. box-sizing: border-box;
  30. &.active{
  31. .date-box{
  32. border: none;
  33. .days{
  34. font-weight: bold;
  35. color: #818181;
  36. }
  37. .date{
  38. font-weight: bold;
  39. color: #818181;
  40. }
  41. }
  42. }
  43. .date-box{
  44. border: none;
  45. display: flex;
  46. height: 50px;
  47. flex-direction: column;
  48. align-items: center;
  49. justify-content: space-around;
  50. font-size: 30upx;
  51. color: rgba(129, 129, 129, 1);
  52. .date{
  53. font-weight: bold;
  54. color: #818181;
  55. font-size: 30upx;
  56. }
  57. }
  58. }
  59. }
  60. .time-box{
  61. padding-top: 28upx;
  62. padding-left: 14upx;
  63. padding-right: 10upx;
  64. padding-bottom: 200upx;
  65. display: flex;
  66. flex-wrap: wrap;
  67. // margin-top:10px;
  68. background-color:#fff;
  69. .item{
  70. width: 33%;
  71. padding: 9upx;
  72. &-box{
  73. width: 100%;
  74. height: 154upx;
  75. padding:0 10upx;
  76. background: #fff;
  77. color: #333;
  78. border: 1px solid #EEEEEE;
  79. font-size: 28upx;
  80. border-radius: 10upx;
  81. display: flex;
  82. flex-direction: column;
  83. align-items: center;
  84. justify-content: center;
  85. &.disable{
  86. background: #F1F3F6 !important;
  87. color: #999 !important;
  88. // border: 1px solid #EEEEEE;
  89. }
  90. &.active{
  91. // background: #0094D7;
  92. font-weight: bold;
  93. }
  94. .all{
  95. font-size: 22upx;
  96. padding-top: 5px;
  97. }
  98. }
  99. }
  100. }
  101. }