userreport.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. font-family: Helvetica;
  5. }
  6. *{
  7. -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
  8. -moz-tap-highlight-color:rgba(0, 0, 0, 0);
  9. -ms-tap-highlight-color:rgba(0, 0, 0, 0);
  10. -o-tap-highlight-color:rgba(0, 0, 0, 0);
  11. tap-highlight-color:rgba(0, 0, 0, 0);
  12. }
  13. body {
  14. background-color: #110D24;
  15. font-size: 14px;
  16. }
  17. .woring_title{
  18. height: 50px;
  19. line-height: 50px;
  20. padding-left: 15px;
  21. color: #CA2F71;
  22. font-size: 0.8rem;
  23. }
  24. .report_list{
  25. background:#15102C;
  26. }
  27. .report_list li{
  28. width: 90%;
  29. height: 50px;
  30. line-height: 50px;
  31. border-bottom: 1px solid #1D1934;
  32. list-style: none;
  33. position: relative;
  34. margin: 0 auto;
  35. }
  36. .report_list_title{
  37. width: 93%;
  38. height: 50px;
  39. line-height: 50px;
  40. font-size: 1rem;
  41. color: #939394;
  42. position: absolute;
  43. left: 0;
  44. }
  45. .report_list_right{
  46. width: 7%;
  47. position: absolute;
  48. right:0;
  49. }
  50. /*.report_list_right input{
  51. width: 30px;
  52. height: 30px;
  53. line-height: 30px;
  54. -webkit-appearance:none;
  55. border-radius: 50%;
  56. border:1px solid #EB3780;
  57. }*/
  58. /**
  59. * 单选框自定义样式
  60. **/
  61. .report_list_right input[type=radio]{
  62. /*去除浏览器默认样式*/
  63. -webkit-appearance: none;
  64. -moz-appearance: none;
  65. appearance: none;
  66. /*自定义样式*/
  67. position: relative;
  68. top: 20px;
  69. display: inline-block;
  70. vertical-align: top;
  71. width: 16px;
  72. height: 16px;
  73. border: 1px solid #EB3780;
  74. outline: none;
  75. cursor: pointer;
  76. /*设置为圆形,看起来是个单选框*/
  77. -webkit-border-radius: 20px;
  78. -moz-border-radius: 20px;
  79. border-radius: 20px;
  80. }
  81. /**
  82. * 单选框 选中之后的样式
  83. **/
  84. .report_list_right input[type=radio]:after{
  85. content: '';
  86. position: absolute;
  87. width: 8px;
  88. height: 8px;
  89. display: block;
  90. left: 0;
  91. top: 0;
  92. right: 0;
  93. bottom: 0;
  94. margin: auto;
  95. background: #EB3780;
  96. -webkit-border-radius: 12px;
  97. -moz-border-radius: 12px;
  98. border-radius: 12px;
  99. -webkit-transform: scale(0);
  100. -moz-transform: scale(0);
  101. transform: scale(0);
  102. /*增加一些动画*/
  103. -webkit-transition : all ease-in-out 50ms;
  104. -moz-transition : all ease-in-out 50ms;
  105. transition : all ease-in-out 50ms;
  106. }
  107. .report_list_right input[type=radio]:checked:after{
  108. -webkit-transform: scale(1);
  109. -moz-transform: scale(1);
  110. transform: scale(1);
  111. }
  112. .report_list li.border_none{
  113. border: none;
  114. }
  115. .agreement{
  116. height: 50px;
  117. line-height: 50px;
  118. padding-left: 15px;
  119. color: #939394;
  120. font-size: 0.8rem;
  121. margin-top: 20px;
  122. }
  123. .agreement a{
  124. text-decoration: none;
  125. color:#939394;
  126. }
  127. .agreement .agree_area{
  128. float: left;
  129. width: 13px;
  130. height: 13px;
  131. line-height: 13px;
  132. margin-top: 17px;
  133. margin-right: 20px;
  134. border-radius: 50%;
  135. text-align: center;
  136. border:1px solid #E9377E;
  137. }
  138. .agreement .agree_area img{
  139. width: 8px;
  140. height: 8px;
  141. margin-top: 0px;
  142. display: none;
  143. margin-left: -1px;
  144. }
  145. .reportarea{
  146. height: 50px;
  147. line-height: 50px;
  148. text-align: center;
  149. margin-top: 10%;
  150. }
  151. .reportarea input{
  152. width: 100%;
  153. height: 100%;
  154. outline: none;
  155. border: none;
  156. -webkit-appearance:none;
  157. color: #CA2F71;
  158. font-size: 1.1rem;
  159. background: #15102C;
  160. }
  161. .report_con{
  162. display: none;
  163. }
  164. /*.fl{
  165. float: left;
  166. }
  167. .fr{
  168. float: right;
  169. }
  170. .clearboth{
  171. clear: both;
  172. }*/