main.scss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. html {
  2. .content {
  3. width: 70%;
  4. margin: 0 auto;
  5. text-align: center;
  6. }
  7. }
  8. * {
  9. box-sizing: border-box;
  10. }
  11. body,
  12. div,
  13. dl,
  14. dt,
  15. dd,
  16. ul,
  17. ol,
  18. li,
  19. h1,
  20. h2,
  21. h3,
  22. h4,
  23. h5,
  24. h6,
  25. pre,
  26. code,
  27. form,
  28. fieldset,
  29. legend,
  30. input,
  31. button,
  32. textarea,
  33. blockquote,
  34. th,
  35. td {
  36. margin: 0;
  37. padding: 0;
  38. }
  39. p {
  40. margin: 0;
  41. padding: 0;
  42. line-height: 32.4px;
  43. }
  44. body {
  45. background: #fff;
  46. color: #000;
  47. font-size: 16px;
  48. font-family: Verdana, Arial, Helvetica, sans-serif;
  49. }
  50. td,
  51. th,
  52. caption {
  53. font-size: 14px;
  54. }
  55. h1,
  56. h2,
  57. h3,
  58. h4,
  59. h5,
  60. h6 {
  61. font-weight: 700;
  62. }
  63. h1 {
  64. font-size: 64px;
  65. }
  66. h2 {
  67. font-size: 48px;
  68. }
  69. h3 {
  70. font-size: 32px;
  71. }
  72. h4 {
  73. font-size: 24px;
  74. }
  75. address,
  76. caption,
  77. cite,
  78. code,
  79. dfn,
  80. em,
  81. strong,
  82. th,
  83. var {
  84. font-style: normal;
  85. font-weight: normal;
  86. }
  87. a {
  88. color: #555;
  89. text-decoration: none;
  90. }
  91. a:hover {
  92. text-decoration: underline;
  93. }
  94. img {
  95. border: none;
  96. }
  97. ol,
  98. ul,
  99. li {
  100. list-style: none;
  101. }
  102. input,
  103. textarea {
  104. font:
  105. 24px Verdana,
  106. Helvetica,
  107. Arial,
  108. sans-serif;
  109. }
  110. select {
  111. font:
  112. 14px Verdana,
  113. Helvetica,
  114. Arial,
  115. sans-serif;
  116. padding: 8px 10px;
  117. border: 1px solid #f0f0f0;
  118. border-radius: 6px;
  119. outline: #ccc;
  120. cursor: pointer;
  121. }
  122. select option {
  123. padding: 8px 10px;
  124. outline: none;
  125. cursor: pointer;
  126. }
  127. button {
  128. font:
  129. 18px Verdana,
  130. Helvetica,
  131. Arial,
  132. sans-serif;
  133. padding: 10px 15px;
  134. outline: none;
  135. border: none;
  136. cursor: pointer;
  137. background-color: #1eaaff;
  138. color: #fff;
  139. border-radius: 10px;
  140. }
  141. table {
  142. border-collapse: collapse;
  143. }
  144. html {
  145. overflow-y: scroll;
  146. }
  147. #app {
  148. /* padding: 0 20px; */
  149. height: 100vh;
  150. }
  151. /* 清除浮动 */
  152. .clearfix:after,
  153. .clearfix:before {
  154. content: "";
  155. display: table;
  156. }
  157. .clearfix:after {
  158. clear: both;
  159. }
  160. .clearfix {
  161. zoom: 1;
  162. }
  163. .content {
  164. width: 70%;
  165. margin: 0 auto;
  166. text-align: center;
  167. }
  168. .model {
  169. position: fixed;
  170. width: 100vw;
  171. height: 100vh;
  172. top: 0;
  173. left: 0;
  174. background-color: rgba(0, 0, 0, 0.6);
  175. transition: opacity 0.15s linear;
  176. animation-name: modelOpacity;
  177. animation: 1s;
  178. .model-content {
  179. width: 600px;
  180. padding: 30px;
  181. background-color: #fff;
  182. position: absolute;
  183. top: 50%;
  184. left: 50%;
  185. transform: translate(-50%, -50%);
  186. .model-title {
  187. span {
  188. position: absolute;
  189. right: 20px;
  190. top: 20px;
  191. font-weight: 400;
  192. color: #666;
  193. font-size: 28px;
  194. }
  195. }
  196. .model-content-text {
  197. margin-top: 30px;
  198. p {
  199. margin: 25px 0;
  200. }
  201. input {
  202. border: none;
  203. border-bottom: 3px solid #000;
  204. width: 100%;
  205. outline: none;
  206. padding: 5px 0;
  207. }
  208. }
  209. .model-btn {
  210. margin-top: 30px;
  211. }
  212. }
  213. }
  214. @keyframes modelOpacity {
  215. from {
  216. opacity: 0;
  217. }
  218. to {
  219. opacity: 1;
  220. }
  221. }
  222. @media screen and (max-width: 800px) {
  223. html {
  224. .content {
  225. width: 100%;
  226. text-align: center;
  227. }
  228. header .app-header {
  229. width: 100%;
  230. }
  231. .product .product-top .product-top-line{
  232. width: 100%;
  233. }
  234. .course-list {
  235. & .course-list-content-div {
  236. & .course-list-content-div-item {
  237. width: 48% !important;
  238. }
  239. }
  240. }
  241. .platform-div{
  242. width: 48% !important;
  243. }
  244. .about-content{
  245. padding-left: 0 !important;
  246. flex-wrap: wrap;
  247. .about-content-left{
  248. margin-right: 0 !important;
  249. }
  250. img{
  251. width: 100%;
  252. }
  253. }
  254. #footer {
  255. .footer-top {
  256. padding: 0;
  257. flex-wrap: wrap;
  258. .footer-left {
  259. ul{
  260. justify-content: center;
  261. }
  262. }
  263. .footer_img1 {
  264. display: none;
  265. }
  266. .footer_img2 {
  267. display: none;
  268. }
  269. .footer_img3 {
  270. display: none;
  271. }
  272. }
  273. }
  274. }
  275. }