article.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. -webkit-box-sizing: border-box;
  5. -moz-box-sizing: border-box;
  6. box-sizing: border-box;
  7. }
  8. .article {
  9. padding: 0 0.15rem 0.38rem 0.15rem;
  10. }
  11. .article_title {
  12. padding-top: 0.2rem;
  13. font-size: 0.2rem;
  14. color: #333333;
  15. font-weight: 600;
  16. }
  17. .article_time {
  18. margin-top: 0.06rem;
  19. font-size: 0.14rem;
  20. padding-bottom: 0.18rem;
  21. color: #999999;
  22. }
  23. .article_body img {
  24. max-width: 100% !important;
  25. }
  26. .article_prompt {
  27. border: 2px solid #B1B5FB;
  28. -webkit-box-shadow: 0px 0.05rem 0.2rem #bbb;
  29. -moz-box-shadow: 0px 0.05rem 0.2rem #bbb;
  30. box-shadow: 0px 0.05rem 0.2rem #bbb;
  31. width: 3.4rem;
  32. padding: 0.2rem;
  33. font-size: 0.15rem;
  34. color: #333333;
  35. border-radius: 0.2rem;
  36. margin-bottom: 0.2rem;
  37. }
  38. .footer {
  39. position: fixed;
  40. bottom: 0;
  41. left: 0;
  42. width: 100%;
  43. height: 0.5rem;
  44. background: #FFFFFF;
  45. box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
  46. display: flex;
  47. align-items: center;
  48. justify-content: center;
  49. }
  50. .footer a {
  51. display: flex;
  52. align-items: center;
  53. justify-content: center;
  54. width: 3.46rem;
  55. height: 0.38rem;
  56. font-size: 0.16rem;
  57. color: #FFFFFF;
  58. background: #23B0CB;
  59. text-decoration: none;
  60. border-radius: 0.04rem;
  61. }