/**
|
* 这里是uni-app内置的常用样式变量
|
*
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
*
|
*/
|
/**
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
*
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
*/
|
/* 颜色变量 */
|
/* 行为相关颜色 */
|
/* 文字基本颜色 */
|
/* 背景颜色 */
|
/* 边框颜色 */
|
/* 尺寸变量 */
|
/* 文字尺寸 */
|
/* 图片尺寸 */
|
/* Border Radius */
|
/* 水平间距 */
|
/* 垂直间距 */
|
/* 透明度 */
|
/* 文章场景相关 */
|
.primary-btn.data-v-14b6ba50 {
|
background: linear-gradient(135deg, #0f95b0, #89C4C1);
|
color: #fff;
|
border-radius: 36rpx;
|
text-align: center;
|
font-size: 30rpx;
|
height: 88rpx;
|
line-height: 88rpx;
|
}
|
.primary-btn.data-v-14b6ba50:active {
|
transform: scale(0.98);
|
}
|
.card.data-v-14b6ba50 {
|
background: #fff;
|
border-radius: 24rpx;
|
padding: 30rpx;
|
margin-bottom: 30rpx;
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.05);
|
}
|
.tag.data-v-14b6ba50 {
|
display: inline-block;
|
font-size: 22rpx;
|
color: #0f95b0;
|
background: rgba(15, 149, 176, 0.1);
|
padding: 4rpx 12rpx;
|
border-radius: 4rpx;
|
margin-right: 10rpx;
|
}
|
.section-title.data-v-14b6ba50 {
|
font-size: 34rpx;
|
font-weight: bold;
|
color: #333333;
|
position: relative;
|
padding-left: 20rpx;
|
margin-bottom: 30rpx;
|
}
|
.section-title.data-v-14b6ba50::before {
|
content: "";
|
position: absolute;
|
left: 0;
|
top: 50%;
|
transform: translateY(-50%);
|
width: 6rpx;
|
height: 30rpx;
|
background: #0f95b0;
|
border-radius: 3rpx;
|
}
|
.price.data-v-14b6ba50 {
|
font-size: 32rpx;
|
color: #F56C6C;
|
font-weight: bold;
|
}
|
.price.free.data-v-14b6ba50 {
|
color: #67C23A;
|
}
|
.price.original.data-v-14b6ba50 {
|
font-size: 24rpx;
|
color: #999999;
|
text-decoration: line-through;
|
margin-left: 10rpx;
|
}
|
.data-v-14b6ba50::-webkit-scrollbar {
|
display: none;
|
width: 0;
|
height: 0;
|
color: transparent;
|
}
|
page.data-v-14b6ba50 {
|
width: 100%;
|
height: 100%;
|
overflow-x: hidden;
|
}
|
.case-report-container.data-v-14b6ba50 {
|
min-height: 100vh;
|
background: linear-gradient(135deg, #f8fdff 0%, #e8f7f6 100%);
|
}
|
.form-scroll.data-v-14b6ba50 {
|
height: 100vh;
|
}
|
.form-content.data-v-14b6ba50 {
|
padding: 30rpx;
|
}
|
.form-section.data-v-14b6ba50 {
|
background: #fff;
|
border-radius: 20rpx;
|
padding: 30rpx;
|
margin-bottom: 30rpx;
|
box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.06);
|
}
|
.section-header.data-v-14b6ba50 {
|
display: flex;
|
margin-bottom: 30rpx;
|
padding-bottom: 20rpx;
|
border-bottom: 2rpx solid #f0f0f0;
|
}
|
.section-icon.data-v-14b6ba50 {
|
font-size: 32rpx;
|
margin-right: 16rpx;
|
}
|
.section-title.data-v-14b6ba50 {
|
font-size: 32rpx;
|
font-weight: 600;
|
color: #1d1d1f;
|
}
|
.form-grid.data-v-14b6ba50 {
|
display: flex;
|
flex-direction: column;
|
gap: 24rpx;
|
}
|
.form-item.data-v-14b6ba50 {
|
display: flex;
|
flex-direction: column;
|
}
|
.form-item.full-width.data-v-14b6ba50 {
|
grid-column: 1/-1;
|
}
|
.item-label.data-v-14b6ba50 {
|
font-size: 28rpx;
|
color: #1d1d1f;
|
font-weight: 500;
|
margin-bottom: 12rpx;
|
}
|
.item-label.required.data-v-14b6ba50::after {
|
content: "*";
|
color: #ff4757;
|
margin-left: 4rpx;
|
}
|
.data-v-14b6ba50 .u-input {
|
border: 2rpx solid #e5e5e7 !important;
|
border-radius: 12rpx !important;
|
padding: 20rpx 24rpx !important;
|
background: #fff !important;
|
}
|
.data-v-14b6ba50 .u-textarea {
|
border: 2rpx solid #e5e5e7 !important;
|
border-radius: 12rpx !important;
|
padding: 20rpx 24rpx !important;
|
background: #fff !important;
|
}
|
.radio-group.data-v-14b6ba50 {
|
display: flex;
|
gap: 40rpx;
|
}
|
.radio-group.horizontal.data-v-14b6ba50 {
|
flex-wrap: wrap;
|
gap: 20rpx;
|
}
|
.radio-item.data-v-14b6ba50 {
|
display: flex;
|
align-items: center;
|
gap: 16rpx;
|
}
|
.radio-dot.data-v-14b6ba50 {
|
width: 32rpx;
|
height: 32rpx;
|
border: 2rpx solid #e5e5e7;
|
border-radius: 50%;
|
position: relative;
|
}
|
.radio-dot.active.data-v-14b6ba50 {
|
border-color: #0f95b0;
|
}
|
.radio-dot.active.data-v-14b6ba50::after {
|
content: "";
|
position: absolute;
|
top: 50%;
|
left: 50%;
|
transform: translate(-50%, -50%);
|
width: 16rpx;
|
height: 16rpx;
|
background: #0f95b0;
|
border-radius: 50%;
|
}
|
.radio-label.data-v-14b6ba50 {
|
font-size: 28rpx;
|
color: #1d1d1f;
|
}
|
.action-buttons.data-v-14b6ba50 {
|
display: flex;
|
gap: 20rpx;
|
margin-top: 40rpx;
|
}
|
.btn.data-v-14b6ba50 {
|
flex: 1;
|
height: 80rpx;
|
border-radius: 16rpx;
|
font-size: 32rpx;
|
font-weight: 500;
|
}
|
.btn.secondary.data-v-14b6ba50 {
|
background: #f5f5f7 !important;
|
color: #1d1d1f !important;
|
}
|
.btn.primary.data-v-14b6ba50 {
|
background: linear-gradient(135deg, #0f95b0, #89c4c1) !important;
|
color: #fff !important;
|
}
|
.btn.primary.data-v-14b6ba50:disabled {
|
background: #c0c0c0 !important;
|
opacity: 0.6;
|
}
|
.case-report-container.data-v-14b6ba50 {
|
min-height: 100vh;
|
background: linear-gradient(135deg, #f8fdff 0%, #e8f7f6 100%);
|
}
|
.form-scroll.data-v-14b6ba50 {
|
height: 100vh;
|
}
|
.form-content.data-v-14b6ba50 {
|
padding: 30rpx;
|
}
|
.form-section.data-v-14b6ba50 {
|
background: #fff;
|
border-radius: 20rpx;
|
padding: 30rpx;
|
margin-bottom: 30rpx;
|
box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.06);
|
}
|
.section-header.data-v-14b6ba50 {
|
display: flex;
|
align-items: center;
|
margin-bottom: 30rpx;
|
padding-bottom: 20rpx;
|
border-bottom: 2rpx solid #f0f0f0;
|
}
|
.section-icon.data-v-14b6ba50 {
|
font-size: 32rpx;
|
margin-right: 16rpx;
|
}
|
.section-title.data-v-14b6ba50 {
|
font-size: 32rpx;
|
font-weight: 600;
|
color: #1d1d1f;
|
}
|
.form-grid.data-v-14b6ba50 {
|
display: flex;
|
flex-direction: column;
|
gap: 24rpx;
|
}
|
.form-item.data-v-14b6ba50 {
|
display: flex;
|
flex-direction: column;
|
}
|
.item-label.data-v-14b6ba50 {
|
font-size: 28rpx;
|
color: #1d1d1f;
|
font-weight: 500;
|
margin-bottom: 12rpx;
|
}
|
.item-label.required.data-v-14b6ba50::after {
|
content: "*";
|
color: #ff4757;
|
margin-left: 4rpx;
|
}
|
|
/* 改造后的选择器样式 */
|
.picker.data-v-14b6ba50 {
|
height: 88rpx;
|
background: #f5f5f7;
|
border-radius: 12rpx;
|
padding: 0 24rpx;
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
border: 2rpx solid #e5e5e7;
|
}
|
.picker text.data-v-14b6ba50 {
|
font-size: 28rpx;
|
color: #1d1d1f;
|
}
|
.picker text.icon-arrow.data-v-14b6ba50 {
|
font-size: 32rpx;
|
color: #86868b;
|
transform: rotate(90deg);
|
}
|
.page-header.data-v-14b6ba50 {
|
padding: 30rpx 0;
|
text-align: center;
|
margin-bottom: 20rpx;
|
}
|
.page-title.data-v-14b6ba50 {
|
font-size: 36rpx;
|
font-weight: 600;
|
color: #1d1d1f;
|
}
|
|
/* 在原有样式基础上添加 */
|
.form-section.data-v-14b6ba50 {
|
position: relative;
|
}
|
.edit-badge.data-v-14b6ba50 {
|
position: absolute;
|
top: 30rpx;
|
right: 30rpx;
|
background: #ff6b35;
|
color: white;
|
padding: 8rpx 16rpx;
|
border-radius: 20rpx;
|
font-size: 24rpx;
|
}
|
|
/* 加载状态样式 */
|
.loading-overlay.data-v-14b6ba50 {
|
position: fixed;
|
top: 0;
|
left: 0;
|
right: 0;
|
bottom: 0;
|
background: rgba(0, 0, 0, 0.5);
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
z-index: 9999;
|
}
|
|
/* 响应式调整 */
|
@media (max-width: 768px) {
|
.form-content.data-v-14b6ba50 {
|
padding: 20rpx;
|
}
|
.form-section.data-v-14b6ba50 {
|
padding: 20rpx;
|
}
|
}
|
/* 改造后的单选按钮样式 */
|
.radio-options.data-v-14b6ba50 {
|
display: flex;
|
gap: 40rpx;
|
}
|
.option-item.data-v-14b6ba50 {
|
display: flex;
|
align-items: center;
|
gap: 16rpx;
|
}
|
.option-item .radio-dot.data-v-14b6ba50 {
|
width: 32rpx;
|
height: 32rpx;
|
border: 2rpx solid #e5e5e7;
|
border-radius: 50%;
|
position: relative;
|
}
|
.option-item .option-label.data-v-14b6ba50 {
|
font-size: 28rpx;
|
color: #1d1d1f;
|
}
|
.option-item.active .radio-dot.data-v-14b6ba50 {
|
border-color: #0f95b0;
|
}
|
.option-item.active .radio-dot.data-v-14b6ba50::after {
|
content: "";
|
position: absolute;
|
top: 50%;
|
left: 50%;
|
transform: translate(-50%, -50%);
|
width: 16rpx;
|
height: 16rpx;
|
background: #0f95b0;
|
border-radius: 50%;
|
}
|
.option-item.active .option-label.data-v-14b6ba50 {
|
color: #0f95b0;
|
}
|
.error-text.data-v-14b6ba50 {
|
font-size: 24rpx;
|
color: #ff4757;
|
margin-top: 8rpx;
|
}
|
|
/* 原有样式调整 */
|
.data-v-14b6ba50 .u-input {
|
border: 2rpx solid #e5e5e7 !important;
|
border-radius: 12rpx !important;
|
padding: 20rpx 24rpx !important;
|
background: #fff !important;
|
}
|
.idcard-hint.data-v-14b6ba50 {
|
margin-top: 8rpx;
|
padding: 12rpx 16rpx;
|
background: #f0f9ff;
|
border-radius: 8rpx;
|
border-left: 4rpx solid #0f95b0;
|
}
|
.hint-text.data-v-14b6ba50 {
|
display: block;
|
font-size: 24rpx;
|
color: #0f95b0;
|
margin-bottom: 4rpx;
|
}
|
.hint-text.data-v-14b6ba50:last-child {
|
margin-bottom: 0;
|
}
|
.error-text.data-v-14b6ba50 {
|
font-size: 24rpx;
|
color: #ff4757;
|
margin-top: 8rpx;
|
}
|
.btn.data-v-14b6ba50 {
|
flex: 1;
|
height: 80rpx;
|
border-radius: 16rpx;
|
font-size: 32rpx;
|
font-weight: 500;
|
}
|
.btn.secondary.data-v-14b6ba50 {
|
background: #f5f5f7 !important;
|
color: #1d1d1f !important;
|
}
|
.btn.primary.data-v-14b6ba50 {
|
background: linear-gradient(135deg, #0f95b0, #89c4c1) !important;
|
color: #fff !important;
|
}
|
.btn.primary.data-v-14b6ba50:disabled {
|
background: #c0c0c0 !important;
|
opacity: 0.6;
|
}
|
.checkbox-group.data-v-14b6ba50 {
|
display: flex;
|
flex-wrap: nowrap;
|
/* 禁止换行 */
|
gap: 20rpx;
|
overflow-x: auto;
|
/* 水平滚动 */
|
padding-bottom: 10rpx;
|
/* 给滚动条留出空间 */
|
-webkit-overflow-scrolling: touch;
|
/* iOS平滑滚动 */
|
}
|
.checkbox-group.single-line.data-v-14b6ba50 {
|
display: flex;
|
flex-wrap: nowrap;
|
overflow-x: auto;
|
width: 100%;
|
/* 隐藏滚动条,但保持滚动功能 */
|
}
|
.checkbox-group.single-line.data-v-14b6ba50::-webkit-scrollbar {
|
display: none;
|
}
|
.checkbox-item.data-v-14b6ba50 {
|
display: flex;
|
align-items: center;
|
gap: 8rpx;
|
flex-shrink: 0;
|
/* 防止选项被压缩 */
|
padding: 8rpx 16rpx;
|
border-radius: 20rpx;
|
background: #f5f5f7;
|
transition: all 0.3s ease;
|
}
|
.checkbox-item.active.data-v-14b6ba50 {
|
background: rgba(15, 149, 176, 0.1);
|
}
|
.checkbox-box.data-v-14b6ba50 {
|
width: 28rpx;
|
height: 28rpx;
|
border: 2rpx solid #e5e5e7;
|
border-radius: 6rpx;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
background: #fff;
|
transition: all 0.3s ease;
|
flex-shrink: 0;
|
}
|
.checkbox-box.active.data-v-14b6ba50 {
|
border-color: #0f95b0;
|
background: #0f95b0;
|
}
|
.checkbox-check.data-v-14b6ba50 {
|
font-size: 20rpx;
|
color: white;
|
font-weight: bold;
|
}
|
.checkbox-label.data-v-14b6ba50 {
|
font-size: 24rpx;
|
color: #1d1d1f;
|
white-space: nowrap;
|
}
|
|
/* 优化单选按钮组的样式,保持一致性 */
|
.radio-group.horizontal.data-v-14b6ba50 {
|
display: flex;
|
flex-wrap: nowrap;
|
overflow-x: auto;
|
gap: 20rpx;
|
padding-bottom: 10rpx;
|
-webkit-overflow-scrolling: touch;
|
}
|
.radio-group.horizontal.data-v-14b6ba50::-webkit-scrollbar {
|
display: none;
|
}
|
.radio-group.horizontal .radio-item.data-v-14b6ba50 {
|
flex-shrink: 0;
|
display: flex;
|
align-items: center;
|
gap: 8rpx;
|
padding: 8rpx 16rpx;
|
border-radius: 20rpx;
|
}
|
.radio-group.horizontal .radio-item .radio-dot.active.data-v-14b6ba50 {
|
border-color: #0f95b0;
|
}
|
.radio-group.horizontal .radio-item .radio-dot.active.data-v-14b6ba50::after {
|
background: #0f95b0;
|
}
|
|
/* 如果需要固定高度,可以这样设置 */
|
.checkbox-group.single-line.data-v-14b6ba50 {
|
min-height: 60rpx;
|
align-items: center;
|
}
|
|
/* 在移动端优化触摸区域 */
|
.checkbox-item.data-v-14b6ba50 {
|
min-height: 60rpx;
|
padding: 8rpx 20rpx;
|
cursor: pointer;
|
}
|
|
/* 添加选中状态的视觉反馈 */
|
.checkbox-item.active.data-v-14b6ba50 {
|
border: 1rpx solid #0f95b0;
|
background: rgba(15, 149, 176, 0.08);
|
}
|
|
/* 响应式调整 */
|
@media (max-width: 768px) {
|
.checkbox-group.single-line.data-v-14b6ba50 {
|
gap: 12rpx;
|
}
|
.checkbox-item.data-v-14b6ba50 {
|
padding: 6rpx 14rpx;
|
}
|
.checkbox-label.data-v-14b6ba50 {
|
font-size: 22rpx;
|
}
|
}
|