123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .list.data-v-4ed8fbfe {
- margin-top: 20rpx;
- background-color: #fff;
- border-radius: 16rpx;
- padding: 28rpx 26rpx 36rpx 24rpx;
- }
- .list .merchant.data-v-4ed8fbfe {
- display: flex;
- justify-content: flex-start;
- }
- .list .merchant .merchant-img.data-v-4ed8fbfe {
- width: 38rpx;
- height: 38rpx;
- margin-right: 16rpx;
- }
- .list .merchant .merchant-name.data-v-4ed8fbfe {
- font-size: 30rpx;
- color: #222;
- }
- .list .detail.data-v-4ed8fbfe {
- margin-top: 32rpx;
- display: flex;
- }
- .list .detail .detail-img.data-v-4ed8fbfe {
- width: 184rpx;
- height: 184rpx;
- margin-right: 24rpx;
- }
- .list .detail .detail-right.data-v-4ed8fbfe {
- flex-direction: column;
- justify-content: space-between;
- height: 184rpx;
- display: flex;
- flex: 1;
- }
- .list .detail .detail-right .toptitle.data-v-4ed8fbfe {
- font-family: PingFangSC, PingFang SC;
- font-size: 28rpx;
- color: #222222;
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 1;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- word-break: break-all;
- margin-bottom: 16rpx;
- }
- .list .detail .detail-right .weight.data-v-4ed8fbfe {
- font-family: PingFangSC, PingFang SC;
- font-size: 24rpx;
- color: rgba(34, 34, 34, 0.6);
- line-height: 34rpx;
- }
- .list .detail .detail-right .money.data-v-4ed8fbfe {
- font-family: HarmonyOS_Sans_Medium;
- font-size: 24rpx;
- color: #f83224;
- line-height: 38rpx;
- text-align: left;
- font-style: normal;
- font-weight: bold;
- }
- .list .detail .detail-right .stepping.data-v-4ed8fbfe {
- display: flex;
- width: 50rpx;
- height: 40rpx;
- justify-content: space-around;
- align-items: center;
- font-size: 30rpx;
- border-radius: 20rpx;
- }
|