imageeditor.css 817 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. page {
  2. box-sizing: border-box;
  3. padding: 20rpx 0rpx;
  4. overflow: hidden;
  5. }
  6. .cHcontainer {
  7. height: 600x;
  8. width: 100%;
  9. overflow: hidden;
  10. }
  11. .bg {
  12. height: 600rpx;
  13. width: 600rpx;
  14. }
  15. button {
  16. margin: 20rpx 40rpx 0rpx;
  17. }
  18. .hat {
  19. height: 200rpx;
  20. width: 200rpx;
  21. position: absolute;
  22. border: 2rpx dashed #ff0;
  23. top: 200rpx;
  24. }
  25. .cancel,
  26. .handle {
  27. position: absolute;
  28. z-index: 1;
  29. width: 40rpx;
  30. height: 50rpx;
  31. }
  32. .scrollView {
  33. width: 100%;
  34. position: absolute;
  35. bottom: 10rpx;
  36. white-space: nowrap;
  37. }
  38. .imgList {
  39. height: 140rpx;
  40. width: 140rpx;
  41. border: 2rpx solid #3677f0;
  42. margin: 10rpx;
  43. }
  44. .cbtn {
  45. background-color: #3677f0;
  46. color: #fff;
  47. box-sizing: border-box;
  48. }