index.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. @import "./reset.css";
  2. body {
  3. font-family: PingFangSC-Semibold;
  4. font-weight: bold;
  5. /* IOS禁止微信调整字体大小 */
  6. -webkit-text-size-adjust: 100% !important;
  7. text-size-adjust: 100% !important;
  8. -moz-text-size-adjust: 100% !important;
  9. }
  10. .banner {
  11. width: 100%;
  12. height: 23.8125rem;
  13. }
  14. .banner>img {
  15. width: 100%;
  16. }
  17. .container {
  18. padding: 0 0.9375rem 1.5625rem;
  19. box-sizing: border-box;
  20. background: #3600A5;
  21. }
  22. .item {
  23. display: flex;
  24. flex-direction: column;
  25. align-items: center;
  26. margin-bottom: 2.1875rem;
  27. position: relative;
  28. top: -3.3125rem;
  29. }
  30. .item:nth-child(4) {
  31. margin: 0;
  32. }
  33. .item-content {
  34. width: 100%;
  35. display: flex;
  36. flex-direction: column;
  37. align-items: center;
  38. background-color: #663BF6;
  39. border: 1px solid #4979FF;
  40. border-radius: 0.625rem;
  41. box-sizing: border-box;
  42. padding: 1.25rem 1.4063rem 1.6875rem;
  43. }
  44. .item-content span {
  45. font-size: 1.1875rem;
  46. line-height: 1.6563rem;
  47. color: #ffffff;
  48. }
  49. .title {
  50. width: 15.3125rem;
  51. height: 2.6875rem;
  52. color: #ffffff;
  53. font-size: 1.25rem;
  54. line-height: 1.75rem;
  55. display: flex;
  56. justify-content: center;
  57. align-items: center;
  58. background: url("../img/title.png") no-repeat center/100%;
  59. margin-bottom: 0.625rem;
  60. }
  61. .img-wrap {
  62. margin-top: 0.9375rem;
  63. width: 18.75rem;
  64. box-sizing: border-box;
  65. border-radius: 0.3125rem;
  66. padding: 0.9375rem 1.25rem;
  67. background: #DCD1FF;
  68. }
  69. .img-wrap>img {
  70. width: 100%;
  71. }
  72. .bar {
  73. width: 100%;
  74. box-sizing: border-box;
  75. padding: 8px 15px;
  76. background: #ffffff;
  77. display: flex;
  78. justify-content: space-between;
  79. align-items: center;
  80. position: fixed;
  81. bottom: 0;
  82. }
  83. .bar>img {
  84. width: 90px;
  85. height: 33px;
  86. }
  87. .bar>a {
  88. width: 6.875rem;
  89. height: 2.25rem;
  90. background-image: linear-gradient(90deg, #9C6CFA, #4979FF);
  91. border-radius: 1.25rem;
  92. color: #ffffff;
  93. display: flex;
  94. justify-content: center;
  95. align-items: center;
  96. text-decoration: none;
  97. font-size: 14px;
  98. }
  99. .iphoneX {
  100. display: none;
  101. width: 100%;
  102. height: 34px;
  103. }