index.wxss 655 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .my {
  2. position: relative;
  3. box-sizing: border-box;
  4. width: 100%;
  5. min-height: 100vh;
  6. background: #f2f2f2;
  7. }
  8. .my .userinfo {
  9. text-align: center;
  10. padding: 50px 0;
  11. }
  12. .my .userinfo .title {
  13. font-size: 22px;
  14. font-weight: bold;
  15. height: 40px;
  16. line-height: 40px;
  17. }
  18. .my .my-main {
  19. width: calc(100% - 32px);
  20. box-sizing: border-box;
  21. border-radius: 10px;
  22. margin: 0 16px;
  23. overflow: hidden;
  24. }
  25. .my .my-main-btn {
  26. width: calc(100% - 32px);
  27. box-sizing: border-box;
  28. border-radius: 10px;
  29. margin: 30px 16px 0 16px;
  30. overflow: hidden;
  31. background: #fff;
  32. height: 50px;
  33. line-height: 50px;
  34. text-align: center;
  35. color: #ff976a;
  36. }