12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- .slideButton{
- position: fixed;
- width:158px;
- height:40px;
- padding: 0 0 0 15px;
- line-height: 40px;
- bottom: 150px;
- right: 20px;
- font-size:16px;
- background: #7AC1DE;
- color: #fff;
- border-radius:100px 0px 0px 100px;
- cursor: pointer;
- z-index: 31;
- }
- .arrowIcon{
- width: 22px;
- position: absolute;
- right: 15px;
- top: 8px;
- }
- .pushWrapper{
- width:400px;
- height:600px;
- border-radius:4px;
- border: 1px solid #E6E6E6;
- position: fixed;
- bottom: 84px;
- right: 30px;
- background: #fff;
- z-index: 31;
- }
- .pushDataTitle{
- height: 40px;
- line-height: 40px;
- background: #7AC1DE;
- color: #fff;
- font-size:16px;
- text-align: center;
- position: relative;
- cursor:move
- }
- .pushDataHide{
- display: inline-block;
- position: absolute;
- height: 40px;
- padding: 0 10px;
- font-size:16px;
- right: 10px;
- cursor: pointer;
- }
|