slide_index.css 918 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. user-select: none;
  5. -webkit-user-select: none;
  6. list-style: none;
  7. }
  8. #box1{
  9. width: 100%;
  10. margin: 0 auto;
  11. }
  12. .range{
  13. position: relative;
  14. height: 50px;
  15. margin: 0 auto;
  16. width: 85%;
  17. }
  18. .chunk-one,.chunk-two{
  19. margin-left: -16px;
  20. position: absolute;
  21. left: 0;
  22. top: 9px;
  23. width:32px;
  24. height:46px;
  25. border-radius: 50%;
  26. background-color: #fff;
  27. z-index: 10;
  28. cursor: pointer;
  29. transition: all .05s linear;
  30. /*border: 2px solid #409eff;*/
  31. box-sizing: border-box;
  32. background:url(/image/v2/findroom2.png) no-repeat 0 0/ 32px 32px;
  33. }
  34. .range .chunk-two{
  35. left: 100%;
  36. }
  37. .chunk-one strong,.chunk-two strong{
  38. display: inline-block;
  39. margin-top: 29px;
  40. text-align: center;
  41. font-weight: normal;
  42. width:100%;
  43. }
  44. .strip-one,.strip-two{
  45. position: absolute;
  46. left:0;
  47. top: 23px;
  48. height: 5px;
  49. width: 100%;
  50. background-color: #F7F7F7;
  51. }
  52. .strip-two{
  53. width: 100%;
  54. background-color: #E94542;
  55. }