mindon.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. /* 重置内外边距 */
  2. body, div, blockquote,
  3. h1, h2, h3, h4, h5, h6, hr, p,
  4. dl, dt, dd, ul, ol, li,
  5. form, button, input, textarea,
  6. pre, fieldset, legend, th, td {
  7. margin: 0;
  8. padding: 0;
  9. }
  10. /* 设置默认文字样式 */
  11. body, input, select, textarea, button {
  12. font: normal 100% -apple-system, PingFangSC-Regular, tahoma, arial, sans-serif;
  13. }
  14. /* 清除移动端按钮点击出现黑色背景 */
  15. input, a {
  16. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  17. }
  18. /* 清除输入标签选中效果 */
  19. input, select, textarea, button {
  20. outline: none;
  21. }
  22. /* 清除序列标签默认样式 */
  23. ul, li, dl, dd, dt {
  24. list-style-type: none;
  25. }
  26. /* 清除a标签下划线样式 */
  27. a, a:link, a:visited, a:hover, a:active {
  28. text-decoration: none;
  29. }
  30. /* 清除图片的边框 */
  31. img {
  32. border: 0;
  33. width: 100%;
  34. display: block;
  35. }
  36. /* 清除浮动 */
  37. .clear {
  38. clear: both;
  39. }
  40. /*定义标题文字加粗正常,字间距为0*/
  41. h1, h2, h3, h4, h5, h6, p {
  42. font-weight: normal;
  43. letter-spacing: 0;
  44. }
  45. body {
  46. -webkit-overflow-scrolling: touch;
  47. }
  48. * {
  49. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  50. -webkit-tap-highlight-color: transparent;
  51. }
  52. html, body {
  53. width: 100%;
  54. height: 100%;
  55. }
  56. /*==============index===============*/
  57. .index_bg {
  58. width: 100%;
  59. height: 100%;
  60. background: #ec3e5b;
  61. }
  62. .header {
  63. position: relative;
  64. }
  65. .header .title {
  66. }
  67. .header h1 {
  68. position: absolute;
  69. top: 0.5rem;
  70. left: 0.5rem;
  71. width: 3rem;
  72. }
  73. .header .title img, .header h1 img {
  74. display: block;
  75. width: 100%;
  76. }
  77. .header p {
  78. position: absolute;
  79. left: 1rem;
  80. bottom: 1rem;
  81. font-size: 0.75rem;
  82. color: #FFF;
  83. }
  84. .content {
  85. padding: 1rem;
  86. background: #FFF;
  87. margin: 0 1rem 1rem 1rem;
  88. }
  89. .mycheck {
  90. position: relative;
  91. color: #5e5e5e;
  92. font-size: 0.875rem;
  93. }
  94. .mycheck input[type=checkbox] {
  95. visibility: hidden;
  96. appearance: none;
  97. -webkit-appearance: none;
  98. padding-left: 1.5rem;
  99. }
  100. .mycheck label {
  101. position: absolute;
  102. width: 1.2rem;
  103. height: 1.2rem;
  104. top: 0;
  105. left: 0;
  106. background: #ea2e4e;
  107. border-radius: 4px;
  108. }
  109. .mycheck label:after {
  110. opacity: 0;
  111. content: '';
  112. position: absolute;
  113. width: 0.6rem;
  114. height: 0.4rem;
  115. background: transparent;
  116. top: 0.25rem;
  117. left: 0.2rem;
  118. border: 2px solid #FFF;
  119. border-top: none;
  120. border-right: none;
  121. -webkit-transform: rotate(-45deg);
  122. -moz-transform: rotate(-45deg);
  123. -o-transform: rotate(-45deg);
  124. -ms-transform: rotate(-45deg);
  125. transform: rotate(-45deg);
  126. }
  127. .mycheck input[type=checkbox]:checked + label:after {
  128. opacity: 1;
  129. background: #ea2e4e;
  130. }
  131. .kt_form form div.btn {
  132. margin: 1rem;
  133. }
  134. .kt_form form div.btn input {
  135. width: 100%;
  136. height: 3rem;
  137. background-image: -webkit-linear-gradient(top, #e93378, #ea2f57);
  138. color: #fff;
  139. font-size: 1.2rem;
  140. border: none;
  141. border-radius: 10px;
  142. box-shadow: 6px 6px 20px #c61b3e inset;
  143. box-shadow: 2px 2px 10px #f28aab;
  144. appearance: none;
  145. -webkit-appearance: none;
  146. text-shadow: 2px 2px 8px #d24a3c;
  147. }
  148. .kt_form form div.btn input:active {
  149. opacity: 0.8;
  150. }
  151. .kt_form .info {
  152. color: #6d6d6d;
  153. font-size: 0.75rem;
  154. text-align: center;
  155. }
  156. .kt_form .info a {
  157. font-size: 1rem;
  158. color: #ea2e4e;
  159. }
  160. .dy_ts {
  161. margin-top: 2rem;
  162. }
  163. .notices {
  164. display: flex;
  165. justify-content: center;
  166. text-align: center;
  167. align-items: center;
  168. }
  169. .notices .line {
  170. display: inline-block;
  171. flex: 1;
  172. border-top: 1px solid #e6e6e6;
  173. }
  174. .notices .txt {
  175. font-size: 1rem;
  176. color: #4e4e4e;
  177. padding: 0 1rem;
  178. }
  179. .ts_list {
  180. margin-top: 0.5rem;
  181. color: #6d6d6d;
  182. }
  183. .ts_list li {
  184. overflow: hidden;
  185. margin-bottom: 0.5rem;
  186. font-size: 0.75rem;
  187. }
  188. .ts_list li p {
  189. line-height: 1.25rem;
  190. }
  191. .ts_list li p a {
  192. color: #eb284e;
  193. }