@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /* uni.scss */ /* 页面左右间距 */ /* 文字尺寸 */ /* 文字尺寸 */ /*文字颜色*/ /* 边框颜色 */ /* 图片加载中颜色 */ /* 行为相关颜色 */ /* 颜色变量 */ /* 项目主色 */ /* 文字基本颜色 */ .red { color: #f60808; } .green { color: #15ab54; } .yellow { color: #f0ad4e; } .blue { color: #1f96f6; } .blank { color: #000; } .white { color: #fff; } .promain { color: #025b58; } .prosecond { color: #ed742f; } .textmain { color: #333; } .textgrey { color: #999; } .fuColor { color: #c6cadb; } .fontssm { font-size: 22rpx; } .fontsm { font-size: 24rpx; } .fontmid { font-size: 28rpx; } .fontbase { font-size: 30rpx; } /* 背景颜色 */ /* 边框颜色 */ /* input 样式 */ .input-placeholder { color: #999999; } .navigator-hover { background: transparent !important; opacity: 1; } .uni-page-head-transparent .uni-page-head-btn { background: transparent !important; } uni-toast { z-index: 99999; } button { background: transparent; } button::after { border: 0; } page { background-color: #fff; padding: 20rpx 50rpx; } .shopshead { height: 216rpx; background: #ffffff; box-shadow: 2rpx 2rpx 30rpx 0rpx rgba(236, 236, 236, 0.5); } .shopshead image { width: 216rpx; height: 216rpx; margin-right: 30rpx; } .shopshead .shopsInfo { padding: 25rpx 0; flex: 1; height: 100%; align-items: flex-start; justify-content: space-between; } .shopshead .shopsInfo .elli { line-height: 40rpx; } .shopshead .shopsInfo .subtit { margin: 8rpx 0 53rpx; } .shopshead .shopsInfo .tips { padding: 2rpx 10rpx; text-align: center; border-radius: 19rpx; border: 1px solid #333333; font-size: 20rpx; } .list { padding: 80rpx 0; } .list .li { align-items: flex-start; } .list .li .time { width: 141rpx; padding: 0rpx 40rpx 45rpx 0; border-right: 1rpx solid #333; font-size: 24rpx; position: relative; } .list .li .time::before { content: ''; position: absolute; top: 0; right: -7rpx; width: 14rpx; height: 14rpx; border-radius: 50%; background: #333333; } .list .li .add { flex: 1; margin-left: 55rpx; font-size: 26rpx; } .list .li:nth-last-of-type(1) .time { border-right: 0 solid #333; }