123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- .container {
- background-color: #f5f5f5;
- min-height: 100vh;
- padding: 20rpx;
- }
- .user-info {
- background-color: #fff;
- display: flex;
- align-items: center;
- padding: 30rpx;
- border-radius: 10rpx;
- margin-bottom: 20rpx;
- box-shadow: 0 4rpx 8rpx rgba(0, 0, 0, 0.06);
- }
- .avatar {
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- margin-right: 20rpx;
- }
- .user-details {
- display: flex;
- flex-direction: column;
- }
- .nickname {
- font-size: 32rpx;
- font-weight: bold;
- color: #333;
- }
- .user-tip {
- font-size: 24rpx;
- color: #999;
- margin-top: 10rpx;
- }
- .settings-section {
- background-color: #fff;
- border-radius: 10rpx;
- margin-bottom: 20rpx;
- padding: 20rpx;
- box-shadow: 0 4rpx 8rpx rgba(0, 0, 0, 0.06);
- }
- .section-title {
- font-size: 32rpx;
- font-weight: bold;
- color: #333;
- margin-bottom: 20rpx;
- padding-bottom: 15rpx;
- border-bottom: 1rpx solid #f0f0f0;
- }
- .settings-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20rpx 0;
- border-bottom: 1rpx solid #f0f0f0;
- }
- .settings-item:last-child {
- border-bottom: none;
- }
- .item-label {
- font-size: 28rpx;
- color: #333;
- }
- .item-extra {
- font-size: 24rpx;
- color: #999;
- }
- .logout-btn {
- width: 100%;
- background-color: #ff4d4f;
- color: #fff;
- margin-top: 40rpx;
- border-radius: 50rpx;
- padding: 20rpx;
- font-size: 32rpx;
- box-shadow: 0 4rpx 12rpx rgba(255, 77, 79, 0.2);
- transition: all 0.3s ease;
- }
- .logout-btn:hover {
- background-color: #ff7875;
- box-shadow: 0 6rpx 16rpx rgba(255, 77, 79, 0.3);
- }
|