me.wxss 1008 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .user-section.data-v-259fb574 {
  2. padding: 30rpx;
  3. font-size: 32rpx;
  4. color: #333;
  5. }
  6. .login-popup.data-v-259fb574 {
  7. position: fixed;
  8. top: 0;
  9. left: 0;
  10. right: 0;
  11. bottom: 0;
  12. background: rgba(0, 0, 0, 0.5);
  13. display: flex;
  14. justify-content: center;
  15. align-items: flex-end;
  16. transition: all 0.3s ease;
  17. z-index: 999;
  18. }
  19. .popup-content.data-v-259fb574 {
  20. background: #fff;
  21. width: 100%;
  22. border-radius: 24rpx 24rpx 0 0;
  23. padding: 40rpx;
  24. box-sizing: border-box;
  25. -webkit-transform: translateY(100%);
  26. transform: translateY(100%);
  27. transition: -webkit-transform 0.3s ease;
  28. transition: transform 0.3s ease;
  29. transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  30. }
  31. .login-popup .popup-content.data-v-259fb574 {
  32. -webkit-transform: translateY(0);
  33. transform: translateY(0);
  34. }
  35. .login-btn.data-v-259fb574 {
  36. background: #07c160;
  37. color: #fff;
  38. border-radius: 48rpx;
  39. font-size: 32rpx;
  40. height: 96rpx;
  41. line-height: 96rpx;
  42. margin: 0;
  43. }
  44. .login-btn.data-v-259fb574::after {
  45. border: none;
  46. }