index.wxss 825 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* pages/user/setting/index.wxss */
  2. page{
  3. height: 100%;
  4. }
  5. .container{
  6. background: #f2f2f2;
  7. }
  8. .container >.flexCol{
  9. flex-basis: 70%;
  10. }
  11. .logout{
  12. width: 240rpx;
  13. height: 68rpx;
  14. border-radius:70rpx;
  15. background:#6282f4;
  16. margin: 20px auto;
  17. font-size:30rpx;
  18. color: white;
  19. display: flex;
  20. justify-content: center;
  21. }
  22. /* components/item/index.wxss */
  23. /* 导航 */
  24. .nav{
  25. padding: 30rpx;
  26. border-bottom: 1rpx solid #efefef;
  27. display: flex;
  28. align-items: center;
  29. background: white;
  30. }
  31. /* .nav-icon{
  32. line-height: 0;
  33. } */
  34. .nav-icon {
  35. width:34rpx;
  36. }
  37. .nav-content{
  38. margin-left: 20rpx;
  39. display: flex;
  40. justify-content: space-between;
  41. align-items: center;
  42. width: 100%;
  43. }
  44. .nav-content text{
  45. font-size: 30rpx;
  46. color: #333;
  47. }
  48. .nav-content image{
  49. width: 14rpx;
  50. height: 26rpx;
  51. /* margin-right: 30rpx; */
  52. }