@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .container.data-v-55594fc2 { background: linear-gradient(135deg, #e8f5e9 0%, #b2dfdb 100%); padding: 20rpx; box-sizing: border-box; } .form-card.data-v-55594fc2 { background: #fff; border-radius: 36rpx; box-shadow: 0 8rpx 48rpx 0 rgba(76, 175, 80, 0.1); border: 3rpx solid #c8e6c9; overflow: hidden; } .form-content.data-v-55594fc2 { padding: 48rpx; } .form-section.data-v-55594fc2 { margin-bottom: 48rpx; } .form-section.data-v-55594fc2:last-child { margin-bottom: 0; } .section-title.data-v-55594fc2 { display: flex; align-items: center; margin-bottom: 32rpx; padding: 16rpx 24rpx; background: linear-gradient(120deg, #43e97b 0%, #38f9d7 100%); border-radius: 20rpx; color: #fff; font-weight: bold; font-size: 28rpx; letter-spacing: 2rpx; box-shadow: 0 4rpx 16rpx rgba(67, 233, 123, 0.3); } .title-icon.data-v-55594fc2 { margin-right: 16rpx; font-size: 32rpx; } .title-text.data-v-55594fc2 { flex: 1; } .form-group.data-v-55594fc2 { margin-bottom: 40rpx; } .form-group.data-v-55594fc2:last-child { margin-bottom: 0; } .form-label.data-v-55594fc2 { display: block; margin-bottom: 16rpx; font-weight: bold; color: #388e3c; letter-spacing: 2rpx; font-size: 28rpx; } .input.data-v-55594fc2 { width: 100%; padding: 24rpx; border: 3rpx solid #c8e6c9; border-radius: 20rpx; font-size: 28rpx; background: #f9fff9; color: #2e7d32; box-sizing: border-box; min-height: 80rpx; display: flex; align-items: center; } .input.data-v-55594fc2:focus { border-color: #43a047; background: #fff; } .input.data-v-55594fc2::-webkit-input-placeholder { color: #81c784; } .input.data-v-55594fc2::placeholder { color: #81c784; } .textarea.data-v-55594fc2 { width: 100%; padding: 24rpx; border: 3rpx solid #c8e6c9; border-radius: 20rpx; font-size: 28rpx; background: #f9fff9; color: #2e7d32; box-sizing: border-box; min-height: 120rpx; resize: none; } .textarea.data-v-55594fc2:focus { border-color: #43a047; background: #fff; } .textarea.data-v-55594fc2::-webkit-input-placeholder { color: #81c784; } .textarea.data-v-55594fc2::placeholder { color: #81c784; } .custom-select.data-v-55594fc2 { position: relative; background: #f9fff9; border: 3rpx solid #c8e6c9; border-radius: 20rpx; padding: 24rpx; display: flex; align-items: center; justify-content: space-between; cursor: pointer; z-index: 10; min-height: 80rpx; box-sizing: border-box; } .select-text.data-v-55594fc2 { font-size: 28rpx; color: #2e7d32; flex: 1; } .select-arrow.data-v-55594fc2 { position: absolute; right: 24rpx; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); color: #6a9c6a; font-size: 24rpx; pointer-events: none; } .picker-view.data-v-55594fc2 { width: 100%; padding: 24rpx; border: 3rpx solid #c8e6c9; border-radius: 20rpx; font-size: 28rpx; background: #f9fff9; color: #2e7d32; box-sizing: border-box; } .btn-group.data-v-55594fc2 { display: flex; gap: 24rpx; margin-top: 48rpx; } .btn.data-v-55594fc2 { flex: 1; border-radius: 20rpx; font-size: 28rpx; font-weight: bold; letter-spacing: 2rpx; } .btn-primary.data-v-55594fc2 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); color: #fff; box-shadow: 0 4rpx 16rpx rgba(67, 233, 123, 0.3); } .btn-primary.data-v-55594fc2:disabled { background: #e0e0e0; color: #999; box-shadow: none; } .btn-secondary.data-v-55594fc2 { background: #f5f5f5; color: #666; border: 3rpx solid #ddd; }