2025-06-03 17:29:22 +08:00
|
|
|
|
/**
|
|
|
|
|
* 这里是uni-app内置的常用样式变量
|
|
|
|
|
*
|
|
|
|
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
|
|
|
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
|
|
|
|
*
|
|
|
|
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
|
|
|
|
*/
|
|
|
|
|
/* 颜色变量 */
|
|
|
|
|
/* 行为相关颜色 */
|
|
|
|
|
/* 文字基本颜色 */
|
|
|
|
|
/* 背景颜色 */
|
|
|
|
|
/* 边框颜色 */
|
|
|
|
|
/* 尺寸变量 */
|
|
|
|
|
/* 文字尺寸 */
|
|
|
|
|
/* 图片尺寸 */
|
|
|
|
|
/* Border Radius */
|
|
|
|
|
/* 水平间距 */
|
|
|
|
|
/* 垂直间距 */
|
|
|
|
|
/* 透明度 */
|
|
|
|
|
/* 文章场景相关 */
|
2025-05-28 17:36:42 +08:00
|
|
|
|
.captcha-container.data-v-2ca77e4c {
|
2025-06-03 17:29:22 +08:00
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
user-select: none;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
width: 600rpx;
|
|
|
|
|
height: 700rpx;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
border-radius: 30rpx;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
padding: 0 30rpx;
|
2025-05-28 17:36:42 +08:00
|
|
|
|
}
|
|
|
|
|
.captcha-image.data-v-2ca77e4c {
|
2025-06-03 17:29:22 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
2025-05-28 17:36:42 +08:00
|
|
|
|
}
|
|
|
|
|
.bg-image.data-v-2ca77e4c {
|
2025-06-03 17:29:22 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2025-05-28 17:36:42 +08:00
|
|
|
|
}
|
|
|
|
|
.overlay.data-v-2ca77e4c {
|
2025-06-03 17:29:22 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
z-index: 100;
|
|
|
|
|
pointer-events: none;
|
2025-05-28 17:36:42 +08:00
|
|
|
|
}
|
|
|
|
|
.hole.data-v-2ca77e4c,
|
2025-06-03 17:29:22 +08:00
|
|
|
|
.piece.data-v-2ca77e4c {
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 101;
|
|
|
|
|
box-shadow: 0 0 6rpx rgba(0, 0, 0, 0.4);
|
2025-05-28 17:36:42 +08:00
|
|
|
|
}
|
|
|
|
|
.hole.data-v-2ca77e4c {
|
2025-06-03 17:29:22 +08:00
|
|
|
|
background-color: rgba(0, 0, 0, 0.3);
|
2025-05-28 17:36:42 +08:00
|
|
|
|
}
|
|
|
|
|
.piece.data-v-2ca77e4c {
|
2025-06-03 17:29:22 +08:00
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
cursor: grab;
|
2025-05-28 17:36:42 +08:00
|
|
|
|
}
|
|
|
|
|
.slider-bar.data-v-2ca77e4c {
|
2025-06-03 17:29:22 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
margin-top: 0rpx;
|
|
|
|
|
background: #f5f6fc;
|
|
|
|
|
width: 540rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.slider-bar .slider-bar-font.data-v-2ca77e4c {
|
|
|
|
|
color: #a9a9ab;
|
|
|
|
|
font-size: 28rpx;
|
2025-05-28 17:36:42 +08:00
|
|
|
|
}
|
|
|
|
|
.slider-button.data-v-2ca77e4c {
|
2025-06-03 17:29:22 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0rpx;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100rpx;
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
background: #fff;
|
|
|
|
|
box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.2);
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
user-select: none;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
border: 3rpx solid #8bdaca;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
2025-05-28 17:36:42 +08:00
|
|
|
|
}
|
|
|
|
|
.font-title.data-v-2ca77e4c {
|
2025-06-03 17:29:22 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
font-size: 35rpx;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|