1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- *{
- margin: 0;
- padding: 0;
- user-select: none;
- -webkit-user-select: none;
- list-style: none;
- }
- #box1{
- width: 100%;
- margin: 0 auto;
- }
- .range{
- position: relative;
- height: 50px;
- margin: 0 auto;
- width: 85%;
- }
- .chunk-one,.chunk-two{
- margin-left: -16px;
- position: absolute;
- left: 0;
- top: 9px;
- width:32px;
- height:46px;
- border-radius: 50%;
- background-color: #fff;
- z-index: 10;
- cursor: pointer;
- transition: all .05s linear;
- /*border: 2px solid #409eff;*/
- box-sizing: border-box;
- background:url(/image/v2/findroom2.png) no-repeat 0 0/ 32px 32px;
- }
- .range .chunk-two{
- left: 100%;
- }
- .chunk-one strong,.chunk-two strong{
- display: inline-block;
- margin-top: 29px;
- text-align: center;
- font-weight: normal;
- width:100%;
- }
- .strip-one,.strip-two{
- position: absolute;
- left:0;
- top: 23px;
- height: 5px;
- width: 100%;
- background-color: #F7F7F7;
- }
- .strip-two{
- width: 100%;
- background-color: #E94542;
- }
|