orderdetail-goods-card.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. @charset "UTF-8";
  2. /**
  3. * 主题色配置
  4. * 默认在 uni.scss 全局引入:@import '@/theme.scss';
  5. * <script> 下使用主题变量:import x from '@/theme.scss';
  6. */
  7. .page.data-v-6efb12cb {
  8. background-color: #f8f8f8;
  9. font-family: PingFangSC;
  10. }
  11. .safeAreaPad.data-v-6efb12cb {
  12. padding-bottom: constant(safe-area-inset-bottom);
  13. padding-bottom: env(safe-area-inset-bottom);
  14. box-sizing: content-box;
  15. }
  16. .data-v-6efb12cb:export {
  17. appThemeColor: #38C148;
  18. appThemeBgColor: #ffffff;
  19. appThemeBgGrayColor: #fafafa;
  20. appThemeBgGrayDeppColor: #f8f8f8;
  21. appThemeSearchBgColor: #F4F5F8;
  22. appThemeBorderColor: #efefef;
  23. appThemeTextColor: #333333;
  24. appThemeTextGrayColor: #8f92a1;
  25. appThemeTextGrayLightColor: #cccccc;
  26. appThemeTextGrayDeepColor: #696969;
  27. appThemeTextWhiteColor: #ffffff;
  28. appThemeTextBlackColor: #171717;
  29. appThemeTextBlackDeepColor: #16162e;
  30. appThemeTextMoneyColor: #f00;
  31. appThemeTextGrayWhiteColor: #c3c6cb;
  32. appThemeSkuGrayColor: #f5f5f8;
  33. appThemeCardGrayColor: #8f92a1;
  34. appThemeShopGrayColor: #888e98;
  35. appThemePointsSignBgColor: #f0f0f0;
  36. appThemePointsSignLabelColor: #dfdfdf;
  37. appThemePointsSignValueColor: #696969;
  38. appThemePointsSignYellowColor: #f9a906;
  39. appThemePointsSignBlueColor: #22ac38;
  40. appThemeNavbarTabColor: #696969;
  41. appThemeNavbarTabColorActive: #333333;
  42. appThemeShadow: 0px 2px 8px 0px rgba(27, 25, 86, 0.06);
  43. appZIndexDeep: 0;
  44. appZIndexNormal: 19;
  45. appZIndexAbsolute: 99;
  46. appZIndexFixed: 199;
  47. appZIndexPage: 999;
  48. appThemeBuyBtnBgColor: #ed3f14;
  49. }
  50. .orderGoodsDetail.data-v-6efb12cb {
  51. display: flex;
  52. align-items: center;
  53. padding: 28rpx 0;
  54. border-bottom: 1rpx solid #efefef;
  55. position: relative;
  56. }
  57. .orderGoodsDetail .img.data-v-6efb12cb {
  58. margin-right: 30rpx;
  59. }
  60. .orderGoodsDetail .info.data-v-6efb12cb {
  61. width: 420rpx;
  62. position: relative;
  63. }
  64. .orderGoodsDetail .info .title.data-v-6efb12cb {
  65. width: 100%;
  66. font-size: 28rpx;
  67. color: #171717;
  68. padding-bottom: 16rpx;
  69. overflow: hidden;
  70. white-space: nowrap;
  71. text-overflow: ellipsis;
  72. }
  73. .orderGoodsDetail .info .sku.data-v-6efb12cb {
  74. font-size: 24rpx;
  75. color: #8f92a1;
  76. }
  77. .orderGoodsDetail .info .price.data-v-6efb12cb {
  78. padding-top: 8rpx;
  79. }
  80. .orderGoodsDetail .info .price text.data-v-6efb12cb:nth-child(1) {
  81. font-size: 20rpx;
  82. font-family: PingFangSC-Medium, PingFang SC;
  83. font-weight: 500;
  84. color: #171717;
  85. }
  86. .orderGoodsDetail .info .price text.data-v-6efb12cb:nth-child(2) {
  87. font-size: 28rpx;
  88. font-family: PingFangSC-Regular, PingFang SC;
  89. font-weight: 400;
  90. color: #171717;
  91. }
  92. .orderGoodsDetail .info .tag.data-v-6efb12cb {
  93. margin-top: 8rpx;
  94. background: rgba(255, 0, 0, 0.1);
  95. border-radius: 4rpx;
  96. color: #f00;
  97. padding: 4rpx;
  98. font-size: 20rpx;
  99. display: inline-block;
  100. }
  101. .orderGoodsDetail .num.data-v-6efb12cb {
  102. position: absolute;
  103. top: 60rpx;
  104. right: 30rpx;
  105. color: #8f92a1;
  106. }