12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /* pages/user/setting/index.wxss */
- page{
- height: 100%;
- }
- .container{
- background: #f2f2f2;
- }
- .container >.flexCol{
- flex-basis: 70%;
- }
- .logout{
- width: 240rpx;
- height: 68rpx;
- border-radius:70rpx;
- background:#6282f4;
- margin: 20px auto;
- font-size:30rpx;
- color: white;
- display: flex;
- justify-content: center;
- }
- /* components/item/index.wxss */
- /* 导航 */
- .nav{
- padding: 30rpx;
- border-bottom: 1rpx solid #efefef;
- display: flex;
- align-items: center;
- background: white;
- }
- /* .nav-icon{
- line-height: 0;
- } */
- .nav-icon {
- width:34rpx;
- }
- .nav-content{
- margin-left: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- }
- .nav-content text{
- font-size: 30rpx;
- color: #333;
- }
- .nav-content image{
- width: 14rpx;
- height: 26rpx;
- /* margin-right: 30rpx; */
- }
|