| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 | /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * *//** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 *//* 颜色变量 *//* 行为相关颜色 *//* 文字基本颜色 *//* 背景颜色 *//* 边框颜色 *//* 尺寸变量 *//* 文字尺寸 *//* 图片尺寸 *//* Border Radius *//* 水平间距 *//* 垂直间距 *//* 透明度 *//* 文章场景相关 */.item-title.data-v-5be4d0ee {  font-size: 30rpx;  font-weight: bold;  color: #333333;}.refund-item.data-v-5be4d0ee {  background-color: #fff;  border-bottom: 1rpx solid #f5f5f5;  padding: 30rpx;}.refund-item.data-v-5be4d0ee:last-child {  border: none;}.refund-item .describe-box.data-v-5be4d0ee {  width: 690rpx;  background: #f9fafb;  padding: 30rpx;  box-sizing: border-box;  border-radius: 20rpx;}.refund-item .describe-box .describe-content.data-v-5be4d0ee {  height: 200rpx;  font-size: 24rpx;  font-weight: 400;  color: #333;}.refund-item .input-box.data-v-5be4d0ee {  height: 84rpx;  background: #f9fafb;  border-radius: 20rpx;}.goods-box.data-v-5be4d0ee {  background: #fff;  padding: 20rpx;  margin-bottom: 20rpx;}.foot-wrap.data-v-5be4d0ee {  height: 100rpx;  width: 100%;}.foot_box.data-v-5be4d0ee {  height: 100rpx;  background-color: #fff;}.foot_box .sub-btn.data-v-5be4d0ee {  width: 336rpx;  line-height: 74rpx;  border-radius: 38rpx;  color: rgba(255, 255, 255, 0.9);  font-size: 28rpx;}.foot_box .contcat-btn.data-v-5be4d0ee {  width: 336rpx;  line-height: 74rpx;  background: #eeeeee;  border-radius: 38rpx;  font-size: 28rpx;  font-weight: 400;  color: #333333;}.modal-box.data-v-5be4d0ee {  width: 750rpx;  border-radius: 30rpx 30rpx 0 0;  background: #fff;}.modal-box .modal-head.data-v-5be4d0ee {  height: 100rpx;  font-size: 30rpx;}.modal-box .modal-content.data-v-5be4d0ee {  font-size: 28rpx;}.modal-box .modal-foot .close-btn.data-v-5be4d0ee {  width: 710rpx;  line-height: 80rpx;  border-radius: 40rpx;  color: rgba(255, 255, 255, 0.9);}.success-box.data-v-5be4d0ee {  width: 600rpx;  padding: 90rpx 0 64rpx 0;}.success-box .cicon-check-round.data-v-5be4d0ee {  font-size: 96rpx;  color: #04b750;}.success-box .success-title.data-v-5be4d0ee {  font-weight: 500;  color: #333333;  font-size: 32rpx;}.success-box .success-btn.data-v-5be4d0ee {  width: 492rpx;  height: 70rpx;  background: linear-gradient(90deg, var(--ui-BG-Main-gradient), var(--ui-BG-Main));  border-radius: 35rpx;}
 |