1234567891011121314151617181920212223242526272829303132333435363738 |
- /* pages/editMyself/editMyself.wxss */
- .container{
- padding: 0;
- margin: 0;
- }
- page{
- background: #f1f1f1;
- }
- .edit-box{
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- padding:25rpx 25rpx 0;
- background: #FFF;
- }
- .title{
- width: 200rpx;
- border-bottom: 1px solid #f2f2f2;
- height: 100rpx;
- line-height: 100rpx;
- }
- .headImg,.input-name,.sex-select,.school-name{
- height: 100rpx;
- line-height: 100rpx;
- width: 500rpx;
- text-align: right;
- border-bottom: 1px solid #f2f2f2;
- color: #999;
- }
- .input-name input{
- height: 100rpx;
- }
- .headImg image{
- width: 80rpx;
- height: 80rpx;
- }
|