pretty-times.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. .container{
  2. view,text,image{
  3. box-sizing: border-box;
  4. }
  5. scroll-view{
  6. width: 100%;
  7. white-space: nowrap;
  8. height: 75px;
  9. background-color: #fff;
  10. position: relative;
  11. padding-top: 10px;
  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:28upx 12upx 26upx;
  62. display: flex;
  63. flex-wrap: wrap;
  64. // margin-top:10px;
  65. background-color:#fff;
  66. .item{
  67. width: 33%;
  68. padding: 0 9upx;
  69. margin:10px 0;
  70. &-box{
  71. width: 100%;
  72. height: 154upx;
  73. padding:0 10upx;
  74. background: #fff;
  75. color: #333;
  76. border: 1px solid #EEEEEE;
  77. font-size: 28upx;
  78. border-radius: 10upx;
  79. display: flex;
  80. flex-direction: column;
  81. align-items: center;
  82. justify-content: center;
  83. &.disable{
  84. background: #F1F3F6 !important;
  85. color: #999 !important;
  86. // border: 1px solid #EEEEEE;
  87. }
  88. &.active{
  89. // background: #0094D7;
  90. font-weight: bold;
  91. }
  92. .all{
  93. font-size: 22upx;
  94. padding-top: 5px;
  95. }
  96. }
  97. }
  98. }
  99. }