index.wxss 680 B

123456789101112131415161718192021222324252627282930
  1. .try{
  2. width: 100vw;height: 100vh;
  3. display: flex;align-items: center;justify-content: center;
  4. background: #000;
  5. position: relative;
  6. }
  7. .camera{
  8. border: 1px solid var(--yellow);
  9. width: 95vw;height: calc(95vw * 1.5);
  10. box-sizing: border-box;
  11. border-radius: 5px;
  12. }
  13. .image{
  14. position: absolute;
  15. bottom: 20rpx;left:calc(50vw - 50rpx);
  16. width: 100rpx;height: 100rpx;
  17. background-size: 100rpx 100rpx;
  18. box-sizing: border-box;
  19. border: 10rpx solid #fff;
  20. border-radius: 50%;
  21. display: flex;align-items: center;justify-content: center;
  22. }
  23. .image::after{
  24. width: 60%; height: 60%;
  25. background-color: #f03;
  26. border-radius: 50%;
  27. content: '';
  28. display: block;
  29. }