1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- @import "~@less/variables.less";
- .emergencyProdureWrap {
- .emergencyWrap {
- .contentZIndex1;
- moz-user-select: -moz-none;
- -moz-user-select: none;
- -o-user-select: none;
- -khtml-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- user-select: none;
- position: fixed;
- top: 55px;
- right: 20px;
- width: auto;
- height: 44px;
- line-height: 44px;
- border-radius: 22px;
- border: 2px solid #F93333;
- background-color: #fff;
- padding-left: 50px;
- padding-right: 30px;
- cursor: pointer;
- .emergencyName {
- overflow: hidden;
- display: block;
- }
- i {
- position: absolute;
- top: 0px;
- right: 10px;
- width: 22px;
- height: 40px;
- img {
- position: relative;
- top: 6px;
- }
- }
- }
- .emergency {
- width: 40px;
- height: 40px;
- line-height: 40px;
- position: absolute;
- left: 0;
- text-align: center;
- border-radius: 50%;
- color: #fff;
- background-color: #F93333;
- }
- }
|