12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .container {
- padding: 20rpx;
- text-align: center;
- }
- .avatar {
- width: 200rpx;
- height: 200rpx;
- margin: 20rpx auto;
- border-radius: 50%;
- overflow: hidden;
- }
- .avatar image {
- width: 100%;
- height: 100%;
- }
- .nickname-wrapper {
- display: flex;
- justify-content: center;
- align-items: center;
- margin: 20rpx 0;
- }
- .input-wrapper {
- display: flex;
- justify-content: center;
- align-items: center;
- margin: 10rpx 0;
- }
- .input-box {
- width: 60%; /* 调整输入框宽度 */
- padding: 10rpx;
- border: 1rpx solid #E7624F;
- border-radius: 10rpx;
- margin-right: 10rpx;
- }
- .save-button,
- .get-code-button {
- /* 调整按钮的宽度和内边距 */
- width: 20%;
- padding: 10rpx 15rpx;
- border: 1rpx solid #E7624F;
- border-radius: 10rpx;
- background-color: #E7624F;
- color: white;
- font-size: 24rpx; /* 调整字体大小 */
- }
- button {
- margin-top: 20rpx;
- }
|