index.module.less 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .container{
  2. width: 100%;
  3. padding: 16px;
  4. position: fixed;
  5. bottom: 0;
  6. left: 0;
  7. right: 0;
  8. z-index: 2;
  9. display: flex;
  10. justify-content: center;
  11. box-sizing: border-box;
  12. flex-direction: column;
  13. align-items: center;
  14. }
  15. .demoAvatar{
  16. position: absolute;
  17. z-index: 1;
  18. top: 0;
  19. left: 50%;
  20. margin-left: -113.5px;
  21. width: 227px;
  22. height: 402px;
  23. }
  24. .content{
  25. position: relative;
  26. padding-top: 260px;
  27. width: 100%;
  28. z-index: 2;
  29. display: flex;
  30. justify-content: center;
  31. box-sizing: border-box;
  32. flex-direction: column;
  33. align-items: center;
  34. }
  35. .welcomBar{
  36. padding: 12px 16px;
  37. border-radius: 8px;
  38. width: 312px;
  39. background-color:rgba(255, 255, 255, 0.4);
  40. backdrop-filter: blur(7px) brightness(0.86) contrast(146%) grayscale(3%) opacity(81%);
  41. margin-bottom: 8px;
  42. }
  43. .hello {
  44. margin-bottom: 4px;
  45. font-family: PingFangSC-Medium;
  46. font-weight: 500;
  47. font-size: 16px;
  48. color: #111A34;
  49. line-height: 24px;
  50. background: #2ACCF7;
  51. background: radial-gradient(circle farthest-corner at top left, #2ACCF7 0%, #327BF9 10%, #4649F9 100%);
  52. -webkit-background-clip: text;
  53. background-clip: text;
  54. -webkit-text-fill-color: transparent;
  55. }
  56. .welcome {
  57. font-family: PingFangSC-Regular;
  58. font-weight: 400;
  59. font-size: 12px;
  60. color: rgba(#000, .6);
  61. line-height: 20px;
  62. }
  63. .box {
  64. border-radius: 12px;
  65. padding: 16px;
  66. width: 100%;
  67. background-color: white;
  68. }
  69. .boxInner {
  70. padding: 16px;
  71. width: 100%;
  72. height: 184px;
  73. margin-bottom: 16px;
  74. background-image: linear-gradient(45deg, #f2fcff 0%, #EBF5FF 49%, #E2EAFF 100%);
  75. border-radius: 8px;
  76. }
  77. .headline {
  78. font-family: PingFangSC-Medium;
  79. margin-bottom: 16px;
  80. font-weight: 500;
  81. font-size: 16px;
  82. line-height: 26px;
  83. white-space: nowrap;
  84. }
  85. .list {
  86. display: flex;
  87. flex-direction: column;
  88. gap: 12px;
  89. width: 100%;
  90. padding-bottom: 38px;
  91. font-family: PingFangSC-Regular;
  92. font-weight: 400;
  93. font-size: 14px;
  94. color: #414A64;
  95. line-height: 20px;
  96. }