1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- .index{
- padding-top: 67px;
- background-color: #f5f5f5;
- min-height: 100vh;
- // 头像
- .info-edit{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- margin-bottom: 36px;
- .info-edit-img{
- width: 210px;
- height: 210px;
- border-radius: 50%;
- margin-bottom: 14px;
- }
- .info-edit-title{
- line-height: 41px;
- font-size: 28px;
- color: #F09A31;
- }
- }
- // 内容
- .info-edit-content{
- margin: 0 16px;
- border-radius: 20px;
- overflow: hidden;
- padding: 0 20px;
- background-color: #fff;
- .at-input__title{
- font-size: 28px;
- color: #222222;
- }
- }
- // 提交按钮
- .info-edit-submit{
- position: fixed;
- bottom: 30px;
- left: 0;
- right: 0;
- margin: 0 16px;
- background-color: #f6c71a;
- border-radius: 70px;
- height: 88px;
- font-size: 28px;
- color: #000000;
- font-weight: 700;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
|