12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .index {
- background-color: #f5f5f5;
- padding: 0 16px;
- box-sizing: border-box;
- min-height: 100vh;
- .info {
- height: 170px;
- display: flex;
- align-items: center;
- padding: 0 18px;
- box-sizing: border-box;
- justify-content: space-between;
- .avatar {
- width: 116px;
- height: 116px;
- border-radius: 50%;
- margin-right: 18px;
- background-color: red;
- }
- .info-right {
- display: flex;
- align-items: center;
- justify-content: space-between;
- flex: 1;
- .user-info {
- color: #000000;
- .name {
- font-size: 34px;
- line-height: 49px;
- }
- .account {
- font-size: 28px;
- line-height: 41px;
- }
- }
- .edit-icon {
- width: 28px;
- height: 28px;
- }
- }
- }
- // 功能
- .function {
- border-radius: 20px;
- overflow: hidden;
- background-color: #ffffff;
- .at-list__item .item-extra__icon-arrow {
- font-size: 44px;
- }
- .at-list__item--thumb .item-thumb {
- width: 40px;
- height: 40px;
- }
- .item-content__info-title {
- font-size: 28px;
- color: #000000;
- }
- .at-list__item{
- padding: 31px 17px;
- }
- }
- }
|