123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .user-section.data-v-259fb574 {
- padding: 30rpx;
- font-size: 32rpx;
- color: #333;
- }
- .login-popup.data-v-259fb574 {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.5);
- display: flex;
- justify-content: center;
- align-items: flex-end;
- transition: all 0.3s ease;
- z-index: 999;
- }
- .popup-content.data-v-259fb574 {
- background: #fff;
- width: 100%;
- border-radius: 24rpx 24rpx 0 0;
- padding: 40rpx;
- box-sizing: border-box;
- -webkit-transform: translateY(100%);
- transform: translateY(100%);
- transition: -webkit-transform 0.3s ease;
- transition: transform 0.3s ease;
- transition: transform 0.3s ease, -webkit-transform 0.3s ease;
- }
- .login-popup .popup-content.data-v-259fb574 {
- -webkit-transform: translateY(0);
- transform: translateY(0);
- }
- .login-btn.data-v-259fb574 {
- background: #07c160;
- color: #fff;
- border-radius: 48rpx;
- font-size: 32rpx;
- height: 96rpx;
- line-height: 96rpx;
- margin: 0;
- }
- .login-btn.data-v-259fb574::after {
- border: none;
- }
|