index.wxss 302 B

12345678910111213141516171819
  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: 90%;
  16. box-shadow: 0 0 5px #f1f1f1;
  17. margin: 30vw 0 0 0;
  18. }