| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- .new_message_bg {
- margin-top: 30px;
- margin-bottom: 30px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .new_message {
- background-color: #000;
- height: 72px;
- border-radius: 36px;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .message_avatar {
- width: 56px;
- height: 56px;
- border-radius: 28rpx;
- }
- .share_guide_bg {
- position: fixed;
- left: 0;
- top: 0;
- width: 100vw;
- height: 100vh;
- background-color: #00000066;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- z-index: 100;
- }
- .share_guide_card{
- width: 640px;
- height: 478px;
- background-color: #fff;
- border-radius: 24px;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .share_guide_avatar{
- width: 200px;
- height: 200px;
- border-radius: 100px;
- box-sizing: border-box;
- border: solid 8px #fff;
- background-color: #fff;
- margin-top: -80px;
- }
|