123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- .page_container {
- background-color: #f5f5f5;
- height: 100vh;
- font-family: PingFang SC;
- }
- .top_bg {
- height: 120rpx;
- }
- .main_content {
- background-color: #fff;
- border-top-left-radius: 30rpx;
- border-top-right-radius: 30rpx;
- height: calc(100vh - 120rpx);
- position: relative;
- }
- .userinfo_container {
- display: flex;
- gap: 80rpx;
- align-items: center;
- gap: 20rpx;
- position: absolute;
- top: -30rpx;
- padding: 0rpx 60rpx;
- }
- .avatar {
- width: 128rpx;
- height: 128rpx;
- /* background-color: #e5e5e5; */
- border-radius: 50%;
- transform: scale(1.8);
- }
- .username {
- color: #333;
- font-size: 32rpx;
- margin-top: 20rpx;
- color: rgba(0, 0, 0, 0.9);
- max-width: 200rpx;
- }
- .settings_container {
- position: relative;
- top: 150rpx;
- padding: 0 40rpx;
- display: flex;
- flex-direction: column;
- gap: 10rpx;
- }
- .setting_item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 30rpx 0rpx;
- border-bottom: 1rpx solid rgba(0, 0, 0, 0.08);
- font-size: 28rpx;
- }
- .left {
- display: flex;
- align-items: center;
- gap: 20rpx;
- }
- .contact-button {
- padding-top: 10rpx;
- padding-bottom: 10rpx;
- box-sizing: border-box;
- padding-left: 0rpx;
- margin: 0;
- width: 400rpx;
- font-weight: 400;
- font-size: 28rpx;
- color: rgba(0, 0, 0, 0.9);
- line-height: 56rpx;
- text-align: left;
- }
- .button-hover {
- background-color: #fff;
- }
- .setting_icon {
- width: 40rpx;
- height: 40rpx;
- }
- .setting_text {
- color: rgba(0, 0, 0, 0.9);
- }
- .arrow_icon {
- width: 30rpx;
- height: 30rpx;
- }
|