mine.less 774 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* pages/mine/mine.wxss */
  2. .minetop {
  3. height: 250rpx;
  4. justify-content: space-around;
  5. display: flex;
  6. align-items: center;
  7. margin: 15px;
  8. background-color: red;
  9. border-radius: 10px;
  10. box-shadow: 10px 10px 10px #ddd;
  11. van-image {
  12. margin-left: 15px;
  13. }
  14. .userinfo {
  15. display: grid;
  16. width: 100%;
  17. padding-left: 15px;
  18. view {
  19. display: flex;
  20. justify-content: space-between;
  21. text:nth-child(1) {
  22. width: 120px;
  23. }
  24. }
  25. text {
  26. color: white;
  27. text-align: left;
  28. width: 100%;
  29. padding: 5px 0px;
  30. font-size: 14px;
  31. }
  32. }
  33. }
  34. .cell-title {
  35. color: #333;
  36. font-size: 14px;
  37. }
  38. .loginOut {
  39. width: 95%;
  40. font-size: 28rpx;
  41. background-color: red;
  42. color: white;
  43. margin-top: 20px;
  44. }