partner-order-item.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. @charset "UTF-8";
  2. /**
  3. * 主题色配置
  4. * 默认在 uni.scss 全局引入:@import '@/theme.scss';
  5. * <script> 下使用主题变量:import x from '@/theme.scss';
  6. */
  7. .page.data-v-7f7c44eb {
  8. background-color: #f8f8f8;
  9. font-family: PingFangSC;
  10. }
  11. .safeAreaPad.data-v-7f7c44eb {
  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-7f7c44eb: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. .order-item.data-v-7f7c44eb {
  51. background: #ffffff;
  52. border-radius: 8px;
  53. padding: 16px;
  54. margin-bottom: 12px;
  55. }
  56. .order-item .order-no.data-v-7f7c44eb {
  57. display: flex;
  58. justify-content: space-between;
  59. margin-bottom: 12px;
  60. font-size: 28rpx;
  61. color: #333333;
  62. line-height: 36rpx;
  63. font-family: PingFang SC;
  64. font-weight: bold;
  65. }
  66. .order-item .order-no .status.data-v-7f7c44eb {
  67. color: #ff0000;
  68. }
  69. .order-item .book-list.data-v-7f7c44eb {
  70. width: 100%;
  71. display: flex;
  72. gap: 16rpx;
  73. margin-bottom: 20rpx;
  74. overflow-x: auto;
  75. }
  76. .order-item .book-list .book-cover.data-v-7f7c44eb {
  77. min-width: 132rpx;
  78. width: 132rpx;
  79. height: 185rpx;
  80. border-radius: 10rpx;
  81. }
  82. .order-item .order-info.data-v-7f7c44eb {
  83. background: #f8f8f8;
  84. border-radius: 4px;
  85. width: 630rpx;
  86. border: 1px solid #ebebeb;
  87. }
  88. .order-item .order-info .info-row.data-v-7f7c44eb {
  89. display: flex;
  90. justify-content: space-between;
  91. font-size: 14px;
  92. height: 60rpx;
  93. line-height: 60rpx;
  94. border-bottom: 1px solid #ebebeb;
  95. color: #666;
  96. }
  97. .order-item .order-info .info-row.data-v-7f7c44eb:last-child {
  98. border-bottom: none;
  99. }
  100. .order-item .order-info .info-row.data-v-7f7c44eb:last-child {
  101. margin-bottom: 0;
  102. }
  103. .order-item .order-info .info-row text.data-v-7f7c44eb {
  104. flex: 1;
  105. padding-left: 20rpx;
  106. }
  107. .order-item .order-info .info-row text.data-v-7f7c44eb:last-child {
  108. border-left: 1px solid #ebebeb;
  109. background-color: #ffffff;
  110. }
  111. .order-item .order-info .info-row .amount.data-v-7f7c44eb {
  112. color: #333;
  113. }
  114. .order-item .order-info .info-row .commission.data-v-7f7c44eb {
  115. color: #ff0000;
  116. }
  117. .order-item .order-time.data-v-7f7c44eb {
  118. margin-top: 12px;
  119. font-size: 13px;
  120. color: #999;
  121. }