康巴易测肤/伤疤uniapp小程序类
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.

1 月之前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .safe-area-bottom.data-v-b6fe683a {
  28. padding-bottom: env(safe-area-inset-bottom);
  29. }
  30. .container.data-v-b6fe683a {
  31. width: 100vw;
  32. height: 100vh;
  33. overflow: hidden;
  34. position: fixed;
  35. left: 0;
  36. top: 0;
  37. z-index: 99;
  38. display: flex;
  39. align-items: flex-start;
  40. justify-content: flex-start;
  41. background-color: #fff;
  42. }
  43. .container .image-box.data-v-b6fe683a {
  44. position: relative;
  45. background-size: contain;
  46. background-repeat: no-repeat;
  47. z-index: 999;
  48. }
  49. .container .image-box .mask.data-v-b6fe683a {
  50. width: 100%;
  51. height: 100%;
  52. position: absolute;
  53. left: 0;
  54. top: 0;
  55. background-color: rgba(0, 0, 0, 0.4);
  56. z-index: 99;
  57. /* border-radius: 50%; */
  58. }
  59. .container .image-box .cropping-box.data-v-b6fe683a {
  60. position: absolute;
  61. border: 2px solid springgreen;
  62. box-sizing: border-box;
  63. z-index: 9999;
  64. }
  65. .container .image-box .cropping-box .zoom-chandle-circular.data-v-b6fe683a {
  66. right: 50%;
  67. -webkit-transform: translateX(5px);
  68. transform: translateX(5px);
  69. }
  70. .operation-area.data-v-b6fe683a {
  71. position: fixed;
  72. bottom: 0;
  73. z-index: 1;
  74. width: 100%;
  75. padding: 10rpx 0;
  76. display: flex;
  77. flex-direction: column;
  78. align-items: center;
  79. justify-content: center;
  80. }
  81. .operation-area .ratio-area.data-v-b6fe683a {
  82. display: flex;
  83. align-items: center;
  84. justify-content: center;
  85. margin-bottom: 16rpx;
  86. }
  87. .operation-area .ratio-area .ratio-btn.data-v-b6fe683a {
  88. display: inline-block;
  89. padding: 8rpx 20rpx;
  90. border: 2rpx solid white;
  91. color: white;
  92. margin: 0 10rpx;
  93. font-size: 12px;
  94. }
  95. .operation-area .bottom.data-v-b6fe683a {
  96. height: 120rpx;
  97. width: 100%;
  98. display: flex;
  99. align-items: center;
  100. justify-content: center;
  101. }
  102. .operation-area .bottom button.data-v-b6fe683a {
  103. display: inline-block;
  104. margin: 0 20rpx;
  105. }
  106. .operation-area .action.data-v-b6fe683a {
  107. height: 120rpx;
  108. width: 100vw;
  109. position: fixed;
  110. bottom: 60rpx;
  111. left: 0;
  112. display: flex;
  113. justify-content: center;
  114. align-items: center;
  115. background: none;
  116. z-index: 9999;
  117. }
  118. .operation-area .action .btn.data-v-b6fe683a {
  119. height: 89rpx;
  120. line-height: 89rpx;
  121. width: 266rpx;
  122. border: 4rpx solid #7F66E8;
  123. text-align: center;
  124. border-radius: 60rpx;
  125. font-family: OPPOSans;
  126. font-weight: bold;
  127. font-size: 36rpx;
  128. color: #7F66E8;
  129. }
  130. .operation-area .action .btn.full.data-v-b6fe683a {
  131. background-color: #7F66E8;
  132. color: #FFFFFF;
  133. margin-left: 30rpx;
  134. font-weight: bold;
  135. }
  136. .canvas.data-v-b6fe683a {
  137. position: absolute;
  138. bottom: 0;
  139. left: 0;
  140. z-index: 1;
  141. border: 1px solid;
  142. }