12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- .text-right{
- text-align: right;
- }
- input[type="text"]{
- line-height: inherit;
- width: 100%;
- height: inherit;
- margin-bottom: 0px;
- padding: 0px;
- padding-right: 0px;
- border: none;
- border-radius: 0;
- outline: 0;
- background-color: #fff;
- -webkit-appearance: none;
- user-select: none;
- -webkit-user-select: none;
- }
- input:focus{
- background-color: inherit;
- }
- input:active{
- background-color: inherit;
- }
- .img-sign{
- width: 54px;
- height: 45px;
- }
- .c-arrow-r{
- position: absolute;
- top: 50%;
- right: 10px;
- margin-top: -5px;
- content: "";
- display: block;
- width: 8px;
- height: 8px;
- border: solid #cdcdcd;
- border-width: 2px 2px 0 0;
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- transform: rotate(45deg);
- }
- .no-user-select{-webkit-user-select: none; -moz-user-select: none; -ms-user-select: none;}
- div.pinch-zoom,
- div.pinch-zoom img{
- width: 100%;
- -webkit-user-drag: none;
- }
- #clipPanel{
- width: 100%;
- height: 100%;
- }
- #clip{
- position: absolute;
- z-index: 100;
- outline: rgba(0, 0, 0, 0.5) solid 1000px;
- top: 50%;
- left: 0;
- -webkit-transform: translateY(-50%);
- -o-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- #memberContainer{
- position: fixed;
- top: 0px;
- width: 100%;
- z-index: 99;
- }
- .li-circle:before {
- content: " ";
- border: 3px solid #FF0606;
- /*设置红色*/
- border-radius: 3px;
- /*设置圆角*/
- position: absolute;
- z-index: 1000;
- right: 80px;
- margin-top: 8px;
- }
|