index.wxss 429 B

123456789101112131415161718192021222324252627
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. box-sizing: border-box;
  5. width: 100vw;
  6. height: 100vh;
  7. }
  8. .content .one {
  9. flex-grow: 1;
  10. text-align: center;
  11. }
  12. .content .one image {
  13. width: 50vw;
  14. height: 50vw;
  15. border-radius: 90px;
  16. box-shadow: 0 0 5px #f1f1f1;
  17. margin: 30vw 0 0 0;
  18. }
  19. .content .two {
  20. text-align: center;
  21. padding: 10px 0;
  22. }
  23. .content .two .two_1 {
  24. padding: 0 0 10px 0;
  25. font-size: 14px;
  26. }