selectDate.acss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .all-date{
  2. overflow: hidden;
  3. height: 100vh;
  4. position: fixed;
  5. left: 0;
  6. right:0;
  7. top:80rpx;
  8. z-index: 5;
  9. /* background-color: rgba(0,0,0,.7); */
  10. }
  11. .date-header{
  12. background-color: #fff;
  13. z-index: 3;
  14. box-shadow:inset 0px 0px 5px #ccc;
  15. padding-top: 28rpx;
  16. position: fixed;
  17. left: 0;
  18. right: 0;
  19. z-index: 8;
  20. }
  21. .date-bottom{
  22. animation-duration: 0.2s;
  23. background-color: rgba(0,0,0,.7);
  24. height: 100%;
  25. }
  26. .selectDateType{
  27. width: 200rpx;
  28. margin: 0rpx auto;
  29. border: 1px solid #26a2ff;
  30. border-radius: 6rpx;
  31. text-align: center;
  32. }
  33. .selectDateType view{
  34. padding: 4rpx 0;
  35. }
  36. .selectDateType .dateActive{
  37. background-color: #26a2ff;
  38. color: #fff;
  39. }
  40. .date-btn view{
  41. text-align: center;
  42. padding: 20rpx 0;
  43. }
  44. .date-btn view:nth-child(1){
  45. background-color: #f1f1f1;
  46. }
  47. .date-btn view:nth-child(2){
  48. background-color: #26a2ff;
  49. color: #fff;
  50. }
  51. .data-main{
  52. margin: 32rpx 0;
  53. text-align: center;
  54. }
  55. .data-main .dateVal{
  56. color: #26a2ff;
  57. width: 200rpx;
  58. padding: 16rpx 0;
  59. border-bottom: 1px solid #26a2ff;
  60. display: inline-block;
  61. }