clip.wxss 693 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* pages/clip/clip.wxss */
  2. .clip {
  3. position: relative;
  4. width: 100%;
  5. height: 100%;
  6. }
  7. .head-img,
  8. movable-area {
  9. position: absolute;
  10. left: 50%;
  11. top: 20%;
  12. transform: translateX(-50%);
  13. }
  14. movable-view {
  15. height: 200rpx;
  16. width: 200rpx;
  17. border: 4rpx solid #fe9d00;
  18. border-radius: 50%;
  19. }
  20. .btn {
  21. position: absolute;
  22. left: 0;
  23. bottom: 10rpx;
  24. display: flex;
  25. justify-content: space-around;
  26. align-items: center;
  27. height: 88rpx;
  28. width: 100%;
  29. }
  30. .btn text {
  31. width: 40%;
  32. height: 100%;
  33. border-radius: 10rpx;
  34. display: flex;
  35. align-items: center;
  36. justify-content: center;
  37. background: skyblue;
  38. color: #fff;
  39. }