common.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. :root {
  2. --color: #39b7ff;
  3. }
  4. html,body {
  5. height: 100%;
  6. font-size: 15px;
  7. }
  8. * {
  9. box-sizing: border-box;
  10. }
  11. .btn_blue {
  12. background: var(--color);
  13. border-color: var(--color);
  14. }
  15. p {
  16. margin: 0;
  17. }
  18. .titleBar {
  19. padding: 10px;
  20. background: #FFFFFF;
  21. overflow: hidden;
  22. white-space: nowrap;
  23. text-overflow: ellipsis;
  24. }
  25. .flexWrap {
  26. display: flex;
  27. justify-content: space-between;
  28. padding: 10px;
  29. }
  30. ul {
  31. list-style: none;
  32. margin: 0;
  33. padding: 0;
  34. }
  35. body>.mui-progressbar {
  36. top: 0
  37. }
  38. .font-red {
  39. color: red;
  40. }
  41. /*index*/
  42. .text-small {
  43. font-size: 13px;
  44. }
  45. .list-imgLeft a {
  46. line-height: 40px;
  47. font-size: 15px;
  48. }
  49. .index-icon {
  50. width: 40px;
  51. margin-right: 5px;
  52. height: 40px;
  53. vertical-align: middle;
  54. }
  55. .num-txt {
  56. font-size: 18px;
  57. font-family: "Helvetica Neue";
  58. color: #53beff;
  59. }
  60. /*login*/
  61. .mui-btn {
  62. padding: 10px;
  63. }
  64. /*radio*/
  65. input[type="checkbox"],
  66. input[type="radio"] {
  67. display: none;
  68. }
  69. .regular-checkbox1-1+label {
  70. padding-left: 23px;
  71. position: relative;
  72. margin-right: 10px;
  73. font-size: 13px;
  74. float: left;
  75. color: #666;
  76. line-height: 17px;
  77. }
  78. .regular-checkbox1-1+label::before {
  79. position: absolute;
  80. content: "";
  81. background-color: #fafafa;
  82. border: 1px solid #ccc;
  83. border-radius: 5px;
  84. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 -15px 10px -12px rgba(0, 0, 0, 0.05) inset;
  85. display: inline-block;
  86. width: 16px;
  87. height: 16px;
  88. left: 0;
  89. top: 0
  90. }
  91. .regular-checkbox1-1:checked+label::before {
  92. border: 1px solid var(--color);
  93. }
  94. .regular-checkbox1-1:checked+label::after {
  95. content: "";
  96. width: 8px;
  97. height: 4px;
  98. top: 4px;
  99. left: 4px;
  100. position: absolute;
  101. transform: rotate(-45deg);
  102. -webkit-transform: rotate(-45deg);
  103. border: 2px solid var(--color);
  104. background: transparent;
  105. border-top: none;
  106. border-right: none;
  107. }
  108. /* 下拉三角 */
  109. .arrow {
  110. display: block;
  111. height: 28px;
  112. position: absolute;
  113. right: 0;
  114. top: 4px;
  115. width: 30px;
  116. z-index: 99;
  117. }
  118. .arrow::after {
  119. border-color: #999 transparent transparent;
  120. border-style: solid;
  121. border-width: 5px 5px 0;
  122. content: "";
  123. height: 0;
  124. position: absolute;
  125. right: 10px;
  126. top: 40%;
  127. transform: translateY(-50%);
  128. width: 0;
  129. }
  130. /*my*/
  131. .head-img {
  132. width: 40px;
  133. height: 40px;
  134. }
  135. /*my-info*/
  136. .color-gray {
  137. color: #999;
  138. }
  139. .about-img {
  140. width: 60px;
  141. height: 60px;
  142. margin-right: 10px;
  143. }
  144. .mui-table-cell {
  145. vertical-align: middle;
  146. }
  147. .mui-table-cell:first-of-type {
  148. text-align: right;
  149. }
  150. /*shanghu-sub*/
  151. .tip-text p {
  152. font-size: 12px !important;
  153. }
  154. .data-num p {
  155. font-size: 18px;
  156. color: #666;
  157. font-family: "Helvetica Neue";
  158. }
  159. /*notice*/
  160. .icon-notice {
  161. background: var(--color);
  162. border-radius: 5px;
  163. color: #fff;
  164. width: 35px;
  165. line-height: 35px;
  166. text-align: center;
  167. font-size: 20px !important;
  168. margin-right: 5px;
  169. }
  170. .notice_time {
  171. color: #8F8F94;
  172. font-size: 11px;
  173. position: absolute;
  174. top: 8px;
  175. right: 30px;
  176. }
  177. /* 表单input placeholder属性样式 */
  178. ::-webkit-input-placeholder {
  179. color: #999;
  180. }
  181. :-moz-placeholder {
  182. color: #999;
  183. }
  184. ::-moz-placeholder {
  185. color: #999;
  186. }
  187. :-ms-input-placeholder {
  188. color: #999;
  189. }
  190. /*改变勾选小箭头的样式*/
  191. .remember input[type="checkbox"] {
  192. display: none;
  193. }
  194. .remember input[type="checkbox"]:checked+i {
  195. border: 1px solid #009aff;
  196. color: #009aff;
  197. }
  198. .remember i {
  199. font-size: .75rem;
  200. font-style: normal;
  201. display: inline-block;
  202. width: .8rem;
  203. height: .8rem;
  204. text-align: center;
  205. line-height: .75rem;
  206. color: transparent;
  207. vertical-align: middle;
  208. margin: -.125rem .375rem .0625rem 0px;
  209. border: #999 .0625rem solid;
  210. text-align: center;
  211. }
  212. .pic_txt {
  213. font-size: 13px;
  214. }
  215. /*取消MUI某些类自带的::after或者::before边框*/
  216. .mui-table-view:before,
  217. .mui-table-view:after,
  218. .mui-input-group:before,
  219. .mui-input-group:after,
  220. .mui-input-group .mui-input-row:after,
  221. .mui-input-group .mui-input-row:before {
  222. height: 0;
  223. }