clipPhoto.wxss 656 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. border: 6rpx solid #fe9d00;
  16. box-sizing: border-box;
  17. }
  18. .btn {
  19. position: absolute;
  20. left: 0;
  21. bottom: 10rpx;
  22. display: flex;
  23. justify-content: space-around;
  24. align-items: center;
  25. height: 88rpx;
  26. width: 100%;
  27. }
  28. .btn text {
  29. width: 40%;
  30. height: 100%;
  31. border-radius: 10rpx;
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. background: skyblue;
  36. color: #fff;
  37. }