|
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .safe-area-bottom.data-v-b6fe683a {
- padding-bottom: env(safe-area-inset-bottom);
- }
- text.data-v-b6fe683a {
- font-family: Source Han Sans CN;
- }
- .container.data-v-b6fe683a {
- width: 100vw;
- height: 100vh;
- overflow: scroll;
- /* position: fixed;
- left: 0;
- bottom: 400rpx; */
- z-index: 99;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #fff;
- flex-direction: column;
- }
- .container .image-box.data-v-b6fe683a {
- position: fixed;
- left: 25%;
- bottom: 400rpx;
- background-size: contain;
- background-repeat: no-repeat;
- z-index: 999;
- background-color: #fff;
- }
- .container .image-box .mask.data-v-b6fe683a {
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0;
- top: 0;
- background-color: rgba(0, 0, 0, 0.3);
- z-index: 99;
- }
- .container .image-box .cropping-box.data-v-b6fe683a {
- position: absolute;
- border: 6rpx solid #F3D4A3;
- box-sizing: border-box;
- background-repeat: no-repeat;
- z-index: 9999;
- /* .zoom-chandle-circular{
- right: 50%;
- transform: translateX(5px);
- } */
- }
- .operation-area.data-v-b6fe683a {
- position: absolute;
- left: 0;
- bottom: 20rpx;
- z-index: 99999;
- width: 100%;
- padding: 10rpx 0;
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: center;
- overflow: scroll;
- padding-bottom: env(safe-area-inset-bottom);
- }
- .operation-area .crop-area.data-v-b6fe683a {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .operation-area .ratio-area.data-v-b6fe683a {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 16rpx;
- }
- .operation-area .ratio-area .ratio-btn.data-v-b6fe683a {
- display: inline-block;
- padding: 8rpx 20rpx;
- border: 2rpx solid white;
- color: white;
- margin: 0 10rpx;
- font-size: 12px;
- }
- .operation-area .bottom.data-v-b6fe683a {
- height: 120rpx;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .operation-area .bottom button.data-v-b6fe683a {
- display: inline-block;
- margin: 0 20rpx;
- }
- .operation-area .action.data-v-b6fe683a {
- height: 120rpx;
- width: 100vw;
- position: relative;
- /* bottom: 60rpx;
- left: 0; */
- display: flex;
- justify-content: center;
- align-items: center;
- background: none;
- z-index: 99999;
- }
- .operation-area .action .btn.data-v-b6fe683a {
- height: 70rpx;
- line-height: 70rpx;
- width: 80vw;
- border: 4rpx solid #333;
- text-align: center;
- border-radius: 60rpx;
- font-family: OPPOSans;
- font-weight: bold;
- font-size: 32rpx;
- color: #333;
- }
- .operation-area .action .btn.full.data-v-b6fe683a {
- background-color: #333;
- color: #F3D4A3;
- margin-left: 30rpx;
- font-weight: bold;
- }
- .canvas.data-v-b6fe683a {
- position: absolute;
- bottom: 0;
- left: 0;
- z-index: 1;
- border: 1px solid;
- }
|