index.scss 751 B

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