index.css 1.9 KB

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