182 lines
4.1 KiB
Plaintext
182 lines
4.1 KiB
Plaintext
|
|
@charset "UTF-8";
|
|||
|
|
/**
|
|||
|
|
* 这里是uni-app内置的常用样式变量
|
|||
|
|
*
|
|||
|
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
|||
|
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
|||
|
|
*
|
|||
|
|
*/
|
|||
|
|
/**
|
|||
|
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
|||
|
|
*
|
|||
|
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
|||
|
|
*/
|
|||
|
|
/* 颜色变量 */
|
|||
|
|
/* 行为相关颜色 */
|
|||
|
|
/* 文字基本颜色 */
|
|||
|
|
/* 背景颜色 */
|
|||
|
|
/* 边框颜色 */
|
|||
|
|
/* 尺寸变量 */
|
|||
|
|
/* 文字尺寸 */
|
|||
|
|
/* 图片尺寸 */
|
|||
|
|
/* Border Radius */
|
|||
|
|
/* 水平间距 */
|
|||
|
|
/* 垂直间距 */
|
|||
|
|
/* 透明度 */
|
|||
|
|
/* 文章场景相关 */
|
|||
|
|
.page.data-v-67ec01b3 {
|
|||
|
|
min-height: 100vh;
|
|||
|
|
background-color: #f3f5f6;
|
|||
|
|
box-sizing: border-box;
|
|||
|
|
}
|
|||
|
|
.tabback.data-v-67ec01b3 {
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
justify-content: space-between;
|
|||
|
|
width: 100%;
|
|||
|
|
height: 160rpx;
|
|||
|
|
padding: 0 20rpx;
|
|||
|
|
padding-top: 80rpx;
|
|||
|
|
box-sizing: border-box;
|
|||
|
|
position: fixed;
|
|||
|
|
top: 0;
|
|||
|
|
left: 0;
|
|||
|
|
z-index: 999;
|
|||
|
|
background-color: #fff;
|
|||
|
|
}
|
|||
|
|
.tabback .rtjt.data-v-67ec01b3 {
|
|||
|
|
font-size: 36rpx;
|
|||
|
|
color: #333;
|
|||
|
|
min-width: 48rpx;
|
|||
|
|
}
|
|||
|
|
.tabback .name.data-v-67ec01b3 {
|
|||
|
|
font-size: 32rpx;
|
|||
|
|
font-weight: 600;
|
|||
|
|
color: #333;
|
|||
|
|
}
|
|||
|
|
.tabback .tabback-placeholder.data-v-67ec01b3 {
|
|||
|
|
width: 48rpx;
|
|||
|
|
height: 1rpx;
|
|||
|
|
}
|
|||
|
|
.form-scroll.data-v-67ec01b3 {
|
|||
|
|
height: calc(100vh - 160rpx);
|
|||
|
|
margin-top: 160rpx;
|
|||
|
|
box-sizing: border-box;
|
|||
|
|
}
|
|||
|
|
.form.data-v-67ec01b3 {
|
|||
|
|
padding: 24rpx;
|
|||
|
|
/* 为底部固定按钮留出可滚动空间(按钮区约 96+40+40rpx + 安全区) */
|
|||
|
|
padding-bottom: calc(200rpx + env(safe-area-inset-bottom));
|
|||
|
|
}
|
|||
|
|
.field.data-v-67ec01b3 {
|
|||
|
|
margin-bottom: 28rpx;
|
|||
|
|
}
|
|||
|
|
.label.data-v-67ec01b3 {
|
|||
|
|
display: block;
|
|||
|
|
font-size: 26rpx;
|
|||
|
|
color: #5c6370;
|
|||
|
|
margin-bottom: 12rpx;
|
|||
|
|
}
|
|||
|
|
.logo-box.data-v-67ec01b3 {
|
|||
|
|
width: 200rpx;
|
|||
|
|
height: 200rpx;
|
|||
|
|
border-radius: 16rpx;
|
|||
|
|
background: #fff;
|
|||
|
|
border: 2rpx dashed #d0d4dc;
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
justify-content: center;
|
|||
|
|
overflow: hidden;
|
|||
|
|
}
|
|||
|
|
.logo-img.data-v-67ec01b3 {
|
|||
|
|
width: 100%;
|
|||
|
|
height: 100%;
|
|||
|
|
}
|
|||
|
|
.logo-placeholder.data-v-67ec01b3 {
|
|||
|
|
font-size: 24rpx;
|
|||
|
|
color: #8b9199;
|
|||
|
|
padding: 16rpx;
|
|||
|
|
text-align: center;
|
|||
|
|
}
|
|||
|
|
.input.data-v-67ec01b3 {
|
|||
|
|
background: #fff;
|
|||
|
|
border-radius: 12rpx;
|
|||
|
|
padding: 24rpx 28rpx;
|
|||
|
|
font-size: 28rpx;
|
|||
|
|
color: #1a1a1a;
|
|||
|
|
}
|
|||
|
|
.textarea.data-v-67ec01b3 {
|
|||
|
|
background: #fff;
|
|||
|
|
border-radius: 12rpx;
|
|||
|
|
padding: 24rpx 28rpx;
|
|||
|
|
font-size: 28rpx;
|
|||
|
|
color: #1a1a1a;
|
|||
|
|
min-height: 160rpx;
|
|||
|
|
width: 100%;
|
|||
|
|
box-sizing: border-box;
|
|||
|
|
}
|
|||
|
|
.picker-val.data-v-67ec01b3 {
|
|||
|
|
background: #fff;
|
|||
|
|
border-radius: 12rpx;
|
|||
|
|
padding: 24rpx 28rpx;
|
|||
|
|
font-size: 28rpx;
|
|||
|
|
color: #1a1a1a;
|
|||
|
|
}
|
|||
|
|
.submit-footer.data-v-67ec01b3 {
|
|||
|
|
position: fixed;
|
|||
|
|
left: 0;
|
|||
|
|
right: 0;
|
|||
|
|
bottom: 0;
|
|||
|
|
z-index: 998;
|
|||
|
|
padding: 20rpx 24rpx calc(20rpx + env(safe-area-inset-bottom));
|
|||
|
|
background-color: #fff;
|
|||
|
|
box-shadow: 0 -4rpx 24rpx rgba(0, 0, 0, 0.06);
|
|||
|
|
box-sizing: border-box;
|
|||
|
|
}
|
|||
|
|
.submit-btn.data-v-67ec01b3 {
|
|||
|
|
height: 96rpx;
|
|||
|
|
line-height: 96rpx;
|
|||
|
|
text-align: center;
|
|||
|
|
background: #0f0f0f;
|
|||
|
|
color: #fff;
|
|||
|
|
font-size: 32rpx;
|
|||
|
|
font-weight: 600;
|
|||
|
|
border-radius: 48rpx;
|
|||
|
|
}
|
|||
|
|
.submit-btn.disabled.data-v-67ec01b3 {
|
|||
|
|
opacity: 0.5;
|
|||
|
|
}
|
|||
|
|
.action-sheet.data-v-67ec01b3 {
|
|||
|
|
position: fixed;
|
|||
|
|
top: 0;
|
|||
|
|
left: 0;
|
|||
|
|
right: 0;
|
|||
|
|
bottom: 0;
|
|||
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|||
|
|
z-index: 9999;
|
|||
|
|
display: flex;
|
|||
|
|
align-items: flex-end;
|
|||
|
|
justify-content: center;
|
|||
|
|
}
|
|||
|
|
.action-sheet-content.data-v-67ec01b3 {
|
|||
|
|
width: 100%;
|
|||
|
|
background-color: #fff;
|
|||
|
|
border-radius: 20rpx 20rpx 0 0;
|
|||
|
|
padding-bottom: 40rpx;
|
|||
|
|
}
|
|||
|
|
.action-sheet-item.data-v-67ec01b3 {
|
|||
|
|
padding: 30rpx 40rpx;
|
|||
|
|
border-bottom: 1rpx solid #f0f0f0;
|
|||
|
|
text-align: center;
|
|||
|
|
}
|
|||
|
|
.action-sheet-cancel.data-v-67ec01b3 {
|
|||
|
|
padding: 30rpx 40rpx;
|
|||
|
|
text-align: center;
|
|||
|
|
margin-top: 20rpx;
|
|||
|
|
background-color: #f8f8f8;
|
|||
|
|
}
|
|||
|
|
.action-sheet-text.data-v-67ec01b3 {
|
|||
|
|
font-size: 32rpx;
|
|||
|
|
color: #333;
|
|||
|
|
}
|