selectDate.acss 1010 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. }
  17. .date-bottom{
  18. animation-duration: 0.2s;
  19. background-color: rgba(0,0,0,.7);
  20. height: 100%;
  21. }
  22. .selectDateType{
  23. width: 200rpx;
  24. margin: 0rpx auto;
  25. border: 1px solid #26a2ff;
  26. border-radius: 6rpx;
  27. text-align: center;
  28. }
  29. .selectDateType view{
  30. padding: 4rpx 0;
  31. }
  32. .selectDateType .dateActive{
  33. background-color: #26a2ff;
  34. color: #fff;
  35. }
  36. .date-btn view{
  37. text-align: center;
  38. padding: 20rpx 0;
  39. }
  40. .date-btn view:nth-child(1){
  41. background-color: #f1f1f1;
  42. }
  43. .date-btn view:nth-child(2){
  44. background-color: #26a2ff;
  45. color: #fff;
  46. }
  47. .data-main{
  48. margin: 32rpx 0;
  49. text-align: center;
  50. }
  51. .data-main .dateVal{
  52. color: #26a2ff;
  53. width: 200rpx;
  54. padding: 16rpx 0;
  55. border-bottom: 1px solid #26a2ff;
  56. display: inline-block;
  57. }