app.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. @import './pages/iconfont/iconfont.css'; /**app.wxss**/
  2. html, body, div, span, applet, object, iframe,
  3. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  4. a, abbr, acronym, address, big, cite, code,
  5. del, dfn, em, img, ins, kbd, q, s, samp,
  6. small, strike, strong, sub, sup, tt, var,
  7. b, u, i, center,
  8. dl, dt, dd, ol, ul, li,
  9. fieldset, form, label, legend,
  10. table, caption, tbody, tfoot, thead, tr, th, td,
  11. article, aside, canvas, details, embed,
  12. figure, figcaption, footer, header, hgroup,
  13. menu, nav, output, ruby, section, summary,
  14. time, mark, audio, video {
  15. margin: 0;
  16. padding: 0;
  17. border: 0;
  18. font-size: 100%;
  19. font: inherit;
  20. vertical-align: baseline;
  21. }
  22. /* HTML5 display-role reset for older browsers */
  23. article, aside, details, figcaption, figure,
  24. footer, header, hgroup, menu, nav, section {
  25. display: block;
  26. }
  27. body {
  28. line-height: 1;
  29. }
  30. ol, ul {
  31. list-style: none;
  32. }
  33. blockquote, q {
  34. quotes: none;
  35. }
  36. blockquote:before, blockquote:after,
  37. q:before, q:after {
  38. content: '';
  39. content: none;
  40. }
  41. table {
  42. border-collapse: collapse;
  43. border-spacing: 0;
  44. }
  45. html {
  46. font-size: 62.5%;
  47. color: #222;
  48. }
  49. ::selection {
  50. background-color: #b3d4fc;
  51. text-shadow: none;
  52. }
  53. ul {
  54. margin: 0;
  55. padding: 0;
  56. }
  57. li {
  58. list-style: none;
  59. }
  60. .clearfix:before,
  61. .clearfix:after {
  62. content: " ";
  63. display: table;
  64. }
  65. .clearfix:after {
  66. clear: both;
  67. }
  68. /* ===============
  69. 自定义页面样式
  70. =============== */
  71. body {
  72. font:1.2rem "simhei",Arial,Helvetica,sans-serif;
  73. line-height: 1.5;
  74. background-color: #f7f7f7;
  75. }
  76. a {
  77. color: #666;
  78. text-decoration: none;
  79. }
  80. a:hover, a:active {
  81. color: #0ae;
  82. text-decoration: underline;
  83. }
  84. /*公共类*/
  85. .fl {
  86. float: left
  87. }
  88. .fr {
  89. float: right
  90. }
  91. .al {
  92. text-align: left
  93. }
  94. .ac {
  95. text-align: center
  96. }
  97. .ar {
  98. text-align: right
  99. }
  100. .hide {
  101. display: none
  102. }
  103. .container {
  104. height: 100%;
  105. display: flex;
  106. flex-direction: column;
  107. align-items: center;
  108. justify-content: space-between;
  109. padding: 0rpx 20rpx;
  110. box-sizing: border-box;
  111. }
  112. .fengexian {
  113. width: 100%;
  114. height: 20rpx;
  115. background: #f6f6f6;
  116. border-radius: 6rpx;
  117. }
  118. image {
  119. display: block;
  120. overflow: auto;
  121. }
  122. .titleLeft {
  123. font-size: 40rpx;
  124. font-weight: 600;
  125. color: #07c160;
  126. text-align: left;
  127. line-height: 90rpx;
  128. width: 100%;
  129. }