my-detail-bak.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .text-right{
  2. text-align: right;
  3. }
  4. input[type="text"]{
  5. line-height: inherit;
  6. width: 100%;
  7. height: inherit;
  8. margin-bottom: 0px;
  9. padding: 0px;
  10. padding-right: 0px;
  11. border: none;
  12. border-radius: 0;
  13. outline: 0;
  14. background-color: #fff;
  15. -webkit-appearance: none;
  16. user-select: none;
  17. -webkit-user-select: none;
  18. }
  19. input:focus{
  20. background-color: inherit;
  21. }
  22. input:active{
  23. background-color: inherit;
  24. }
  25. .img-sign{
  26. width: 54px;
  27. height: 45px;
  28. }
  29. .c-arrow-r{
  30. position: absolute;
  31. top: 50%;
  32. right: 10px;
  33. margin-top: -5px;
  34. content: "";
  35. display: block;
  36. width: 8px;
  37. height: 8px;
  38. border: solid #cdcdcd;
  39. border-width: 2px 2px 0 0;
  40. -webkit-transform: rotate(45deg);
  41. -moz-transform: rotate(45deg);
  42. -ms-transform: rotate(45deg);
  43. transform: rotate(45deg);
  44. }
  45. .no-user-select{-webkit-user-select: none; -moz-user-select: none; -ms-user-select: none;}
  46. div.pinch-zoom,
  47. div.pinch-zoom img{
  48. width: 100%;
  49. -webkit-user-drag: none;
  50. }
  51. #clipPanel{
  52. width: 100%;
  53. height: 100%;
  54. }
  55. #clip{
  56. position: absolute;
  57. z-index: 100;
  58. outline: rgba(0, 0, 0, 0.5) solid 1000px;
  59. top: 50%;
  60. left: 0;
  61. -webkit-transform: translateY(-50%);
  62. -o-transform: translateY(-50%);
  63. transform: translateY(-50%);
  64. }
  65. #memberContainer{
  66. position: fixed;
  67. top: 0px;
  68. width: 100%;
  69. z-index: 99;
  70. }
  71. .li-circle:before {
  72. content: " ";
  73. border: 3px solid #FF0606;
  74. /*设置红色*/
  75. border-radius: 3px;
  76. /*设置圆角*/
  77. position: absolute;
  78. z-index: 1000;
  79. right: 80px;
  80. margin-top: 8px;
  81. }