| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- .acct-pwd-page {
- min-height: 100vh;
- background-color: #f4f6fb;
- }
- .acct-pwd-nav {
- background-color: #ffffff;
- border-bottom: 1rpx solid #eef1f6;
- }
- .acct-pwd-nav-row {
- display: flex;
- flex-direction: row;
- align-items: center;
- height: 88rpx;
- padding: 0 24rpx;
- box-sizing: border-box;
- }
- .acct-pwd-back {
- width: 64rpx;
- height: 64rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .acct-pwd-back-icon {
- font-size: 40rpx;
- color: #1a1d26;
- line-height: 1;
- }
- .acct-pwd-nav-title {
- flex: 1;
- text-align: center;
- font-size: 32rpx;
- font-weight: 600;
- color: #1a1d26;
- }
- .acct-pwd-nav-placeholder {
- width: 64rpx;
- }
- .acct-pwd-body {
- padding: 28rpx 28rpx 40rpx;
- box-sizing: border-box;
- }
- .acct-pwd-hero {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-bottom: 32rpx;
- padding: 32rpx 24rpx 8rpx;
- }
- .acct-pwd-hero-icon-wrap {
- width: 120rpx;
- height: 120rpx;
- border-radius: 60rpx;
- background: linear-gradient(145deg, #eef4ff 0%, #e8f0fe 100%);
- display: flex;
- align-items: center;
- justify-content: center;
- box-shadow: 0 8rpx 28rpx rgba(74, 140, 255, 0.12);
- margin-bottom: 20rpx;
- }
- .acct-pwd-hero-icon {
- font-size: 56rpx;
- line-height: 1;
- }
- .acct-pwd-hero-title {
- font-size: 34rpx;
- font-weight: 700;
- color: #1a1d26;
- margin-bottom: 10rpx;
- }
- .acct-pwd-hero-desc {
- font-size: 26rpx;
- color: #8a8d9e;
- text-align: center;
- line-height: 1.5;
- padding: 0 16rpx;
- }
- .acct-pwd-card {
- background-color: #ffffff;
- border-radius: 24rpx;
- padding: 28rpx;
- box-shadow: 0 6rpx 24rpx rgba(74, 140, 255, 0.06);
- margin-bottom: 28rpx;
- }
- .acct-pwd-label {
- display: block;
- font-size: 26rpx;
- font-weight: 600;
- color: #4b5563;
- margin-bottom: 16rpx;
- }
- .acct-pwd-submit {
- width: 100%;
- height: 96rpx;
- line-height: 96rpx;
- border-radius: 48rpx;
- border: none;
- background: linear-gradient(135deg, #4a8cff 0%, #6b5cff 100%);
- box-shadow: 0 12rpx 32rpx rgba(74, 140, 255, 0.28);
- }
- .acct-pwd-submit::after {
- border: none;
- }
- .acct-pwd-submit--off {
- opacity: 0.45;
- box-shadow: none;
- }
- .acct-pwd-submit--busy {
- opacity: 0.88;
- }
- .acct-pwd-submit__text {
- font-size: 32rpx;
- font-weight: 600;
- color: #ffffff;
- }
|