You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
1.7 KiB

1 year ago
  1. /* pagesA/selectFace/selectFace.wxss */
  2. page{
  3. background: #000;
  4. }
  5. .d-position-fixed{
  6. position: fixed;
  7. width: 100%;
  8. box-shadow: 10px 10px 10px #4e4e4e;
  9. bottom: 0;
  10. left: 0;
  11. }
  12. .operate{
  13. box-sizing: border-box;
  14. z-index: 99;
  15. }
  16. .operate button{
  17. width: 100%;
  18. }
  19. .center-box{
  20. left: 50%;
  21. top: 50%;
  22. transform: translateX(-50%) translateY(-50%);
  23. z-index: 98
  24. }
  25. .box-frame{
  26. background:
  27. linear-gradient(to top, #26aad1, #26aad1) left top no-repeat,
  28. linear-gradient(to right, #26aad1, #26aad1) left top no-repeat,
  29. linear-gradient(to left, #26aad1, #26aad1) right top no-repeat,
  30. linear-gradient(to bottom, #26aad1, #26aad1) right top no-repeat,
  31. linear-gradient(to left, #26aad1, #26aad1) left bottom no-repeat,
  32. linear-gradient(to bottom, #26aad1, #26aad1) left bottom no-repeat,
  33. linear-gradient(to top, #26aad1, #26aad1) right bottom no-repeat,
  34. linear-gradient(to left, #26aad1, #26aad1) right bottom no-repeat;
  35. background-size: 2px 10px, 10px 2px, 2px 10px, 10px 2px;
  36. /* height: 200px;
  37. width: 150px; */
  38. position: absolute;
  39. left: 50%;
  40. top: 50%;
  41. transform: translate(-50%, -50%);
  42. }
  43. .mask-bg{
  44. position: absolute;
  45. height: 100%;
  46. width: 100%;
  47. top: 0;
  48. left: 0;
  49. background: rgba(0, 0, 0, .3);
  50. z-index: 70;
  51. }
  52. .clip-path{
  53. clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  54. background: transparent;
  55. }
  56. .show{
  57. position: absolute;
  58. overflow: hidden;
  59. top: 50%;
  60. transform: translateY(-50%);
  61. }
  62. .img{
  63. overflow: scroll;
  64. }
  65. .cut{
  66. width: 100vw;
  67. height: 100vw;
  68. top:50%;
  69. transform: translateY(-50%);
  70. position: absolute;
  71. border: 1px dashed rgba(255, 255, 255, 0.856);
  72. }
  73. .bottom{
  74. position: absolute;
  75. width: 100vw;
  76. bottom: 0;
  77. }
  78. button{
  79. margin-top: 10rpx;
  80. }