123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- .container{
- width: 100%;
- padding: 12px;
- position: fixed;
- bottom: 16px;
- left: 0;
- right: 0;
- z-index: 2;
- display: flex;
- justify-content: center;
- box-sizing: border-box;
- flex-direction: column;
- align-items: center;
- }
- .demoAvatar{
- position: absolute;
- z-index: 1;
- top: 0;
- left: 50%;
- margin-left: -113.5px;
- width: 227px;
- height: 402px;
- }
- .content{
- position: relative;
- padding-top: 260px;
- z-index: 2;
- display: flex;
- justify-content: center;
- box-sizing: border-box;
- flex-direction: column;
- align-items: center;
- }
- .welcomBar{
- padding: 12px 16px;
- border-radius: 8px;
- width: 312px;
- background-color:rgba(255, 255, 255, 0.4);
- backdrop-filter: blur(7px) brightness(0.94) contrast(146%) grayscale(3%) opacity(81%);
- margin-bottom: 8px;
- }
- .hello {
- margin-bottom: 4px;
- font-family: PingFangSC-Medium;
- font-weight: 500;
- font-size: 16px;
- color: #111A34;
- line-height: 24px;
- background: #2ACCF7;
- background: radial-gradient(circle farthest-corner at top left, #2ACCF7 0%, #327BF9 10%, #4649F9 100%);
- -webkit-background-clip: text;
- background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- .welcome {
- font-family: PingFangSC-Regular;
- font-weight: 400;
- font-size: 12px;
- color: rgba(#000, .6);
- line-height: 20px;
- }
- .box {
- border-radius: 12px;
- padding: 16px;
- background-color: white;
- }
- .boxInner {
- padding: 16px;
- min-height: 184px;
- margin-bottom: 16px;
- background-image: linear-gradient(120deg, #f2fcff 0%, #EBF5FF 49%, #E2EAFF 100%);
- border-radius: 8px;
- }
- .headline {
- margin-bottom: 10px;
- font-weight: 500;
- font-size: 16px;
- line-height: 24px;
- }
- .list {
- display: flex;
- flex-direction: column;
- gap: 12px;
- width: 100%;
- padding-bottom: 38px;
- font-family: PingFangSC-Regular;
- font-weight: 400;
- font-size: 14px;
- color: #414A64;
- line-height: 20px;
- }
|