myOrder.acss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .my__order-tabs.data-v-25d6346a {
  28. background-color: #fff;
  29. position: -webkit-sticky;
  30. position: sticky;
  31. top: 0;
  32. z-index: 99;
  33. }
  34. .my__order-content.data-v-25d6346a {
  35. padding: 0 12px;
  36. }
  37. .my__order-content .order_item.data-v-25d6346a {
  38. background: #fff;
  39. padding: 12px 8px;
  40. margin-top: 14px;
  41. }
  42. .my__order-content .order_item.data-v-25d6346a:last-child {
  43. margin-bottom: 40px;
  44. }
  45. .my__order-content .order_item .item-top.data-v-25d6346a {
  46. display: flex;
  47. align-items: center;
  48. justify-content: space-between;
  49. margin-bottom: 7.5px;
  50. }
  51. .my__order-content .order_item .item-top .time.data-v-25d6346a {
  52. color: #495B7D;
  53. font-size: 13px;
  54. font-weight: 500;
  55. }
  56. .my__order-content .order_item .item-top .status.data-v-25d6346a {
  57. padding: 0 6px;
  58. border-radius: 4px;
  59. background: #F0F8FF;
  60. height: 20px;
  61. line-height: 20px;
  62. font-size: 13px;
  63. }
  64. .my__order-content .order_item .item-cnetent.data-v-25d6346a {
  65. display: flex;
  66. }
  67. .my__order-content .order_item .item-cnetent .order__ok-img.data-v-25d6346a {
  68. width: 90px;
  69. height: 90px;
  70. border-radius: 8px;
  71. }
  72. .my__order-content .order_item .item-cnetent .order_info.data-v-25d6346a {
  73. margin-left: 12px;
  74. width: calc(100% - 102px);
  75. display: flex;
  76. flex-direction: column;
  77. justify-content: space-between;
  78. position: relative;
  79. }
  80. .my__order-content .order_item .item-cnetent .order_info .ellipsis.data-v-25d6346a, .my__order-content .order_item .item-cnetent .order_info .info-1.data-v-25d6346a, .my__order-content .order_item .item-cnetent .order_info .info-2.data-v-25d6346a {
  81. white-space: nowrap;
  82. text-overflow: ellipsis;
  83. overflow: hidden;
  84. margin-top: 4px;
  85. }
  86. .my__order-content .order_item .item-cnetent .order_info .info-1.data-v-25d6346a {
  87. color: #333;
  88. font-size: 17px;
  89. font-weight: 700;
  90. }
  91. .my__order-content .order_item .item-cnetent .order_info .info-2.data-v-25d6346a {
  92. color: #606266;
  93. font-size: 13px;
  94. font-weight: 400;
  95. }
  96. .my__order-content .order_item .item-cnetent .order_info .num.data-v-25d6346a {
  97. color: #606266;
  98. font-size: 14px;
  99. font-weight: 500;
  100. display: flex;
  101. align-items: center;
  102. }
  103. .my__order-content .order_item .item-cnetent .order_info .img-jiaoluo.data-v-25d6346a {
  104. width: 75px;
  105. height: 75px;
  106. position: absolute;
  107. right: -8px;
  108. bottom: -12px;
  109. }
  110. .my__order-content .order_item .item-cnetent .order_info .img-jiaoluo image.data-v-25d6346a {
  111. width: 100%;
  112. height: 100%;
  113. object-fit: cover;
  114. }
  115. .footer.data-v-25d6346a {
  116. height: 40px;
  117. }