12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- .index{
- padding-top: 67px;
- background-color: #f5f5f5;
- min-height: 100vh;
- box-sizing: border-box;
- // 头像
- .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;
- background-color: #f5f5f5;
- &::after{
- border: none;
- }
- }
- }
- // 内容
- .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;
- }
- // 隐藏输入框
- .info-edit-input{
- .at-input__input{
- display: none;
- }
- .at-input__children::after{
- border-left-width: 0;
- }
- }
- }
|