康巴易测肤/伤疤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.

158 line
3.7KB

  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. text.data-v-b6fe683a {
  31. font-family: Source Han Sans CN;
  32. }
  33. .container.data-v-b6fe683a {
  34. width: 100vw;
  35. height: 100vh;
  36. overflow: scroll;
  37. /* position: fixed;
  38. left: 0;
  39. bottom: 400rpx; */
  40. z-index: 99;
  41. display: flex;
  42. align-items: center;
  43. justify-content: center;
  44. background-color: #fff;
  45. flex-direction: column;
  46. }
  47. .container .image-box.data-v-b6fe683a {
  48. position: fixed;
  49. left: 25%;
  50. bottom: 400rpx;
  51. background-size: contain;
  52. background-repeat: no-repeat;
  53. z-index: 999;
  54. background-color: #fff;
  55. }
  56. .container .image-box .mask.data-v-b6fe683a {
  57. width: 100%;
  58. height: 100%;
  59. position: absolute;
  60. left: 0;
  61. top: 0;
  62. background-color: rgba(0, 0, 0, 0.3);
  63. z-index: 99;
  64. }
  65. .container .image-box .cropping-box.data-v-b6fe683a {
  66. position: absolute;
  67. border: 6rpx solid #F3D4A3;
  68. box-sizing: border-box;
  69. background-repeat: no-repeat;
  70. z-index: 9999;
  71. /* .zoom-chandle-circular{
  72. right: 50%;
  73. transform: translateX(5px);
  74. } */
  75. }
  76. .operation-area.data-v-b6fe683a {
  77. position: absolute;
  78. left: 0;
  79. bottom: 20rpx;
  80. z-index: 99999;
  81. width: 100%;
  82. padding: 10rpx 0;
  83. display: flex;
  84. flex-direction: column;
  85. align-items: flex-start;
  86. justify-content: center;
  87. overflow: scroll;
  88. padding-bottom: env(safe-area-inset-bottom);
  89. }
  90. .operation-area .crop-area.data-v-b6fe683a {
  91. width: 100%;
  92. display: flex;
  93. justify-content: center;
  94. align-items: center;
  95. }
  96. .operation-area .ratio-area.data-v-b6fe683a {
  97. display: flex;
  98. align-items: center;
  99. justify-content: center;
  100. margin-bottom: 16rpx;
  101. }
  102. .operation-area .ratio-area .ratio-btn.data-v-b6fe683a {
  103. display: inline-block;
  104. padding: 8rpx 20rpx;
  105. border: 2rpx solid white;
  106. color: white;
  107. margin: 0 10rpx;
  108. font-size: 12px;
  109. }
  110. .operation-area .bottom.data-v-b6fe683a {
  111. height: 120rpx;
  112. width: 100%;
  113. display: flex;
  114. align-items: center;
  115. justify-content: center;
  116. }
  117. .operation-area .bottom button.data-v-b6fe683a {
  118. display: inline-block;
  119. margin: 0 20rpx;
  120. }
  121. .operation-area .action.data-v-b6fe683a {
  122. height: 120rpx;
  123. width: 100vw;
  124. position: relative;
  125. /* bottom: 60rpx;
  126. left: 0; */
  127. display: flex;
  128. justify-content: center;
  129. align-items: center;
  130. background: none;
  131. z-index: 99999;
  132. }
  133. .operation-area .action .btn.data-v-b6fe683a {
  134. height: 70rpx;
  135. line-height: 70rpx;
  136. width: 80vw;
  137. border: 4rpx solid #333;
  138. text-align: center;
  139. border-radius: 60rpx;
  140. font-family: OPPOSans;
  141. font-weight: bold;
  142. font-size: 32rpx;
  143. color: #333;
  144. }
  145. .operation-area .action .btn.full.data-v-b6fe683a {
  146. background-color: #333;
  147. color: #F3D4A3;
  148. margin-left: 30rpx;
  149. font-weight: bold;
  150. }
  151. .canvas.data-v-b6fe683a {
  152. position: absolute;
  153. bottom: 0;
  154. left: 0;
  155. z-index: 1;
  156. border: 1px solid;
  157. }