index.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. .order-card {
  2. margin-top: 10px;
  3. background-color: white;
  4. }
  5. .order-card-top {
  6. height: 30px;
  7. padding: 5px 10px;
  8. }
  9. .order-card-content {
  10. height: 100px;
  11. background-color: #f5f5f9;
  12. display: flex;
  13. padding: 5px 0;
  14. }
  15. .order-product-img {
  16. background-repeat: no-repeat;
  17. background-size: cover;
  18. width: 90px;
  19. margin-left: 5px;
  20. height: 100%;
  21. }
  22. .order-body {
  23. height: inherit;
  24. margin-top: 50px;
  25. }
  26. .order-card-bottom {
  27. display: flex;
  28. justify-content: flex-end;
  29. align-items: baseline;
  30. height: 35px;
  31. line-height: 35px;
  32. }
  33. .order-card-pay {
  34. display: inline-block;
  35. font-size: 18px;
  36. font-weight: 500;
  37. color: black;
  38. margin-right: 10px;
  39. }
  40. .order-card-count {
  41. display: inline-block;
  42. }
  43. .order-card-button-group {
  44. display: flex;
  45. justify-content: flex-end;
  46. align-items: center;
  47. border-top: 1px solid #F3F3F3;
  48. height: 45px;
  49. line-height: 45px;
  50. padding: 5px 10px 5px 0;
  51. }
  52. .order-card-button-group>a:hover {
  53. }
  54. .order-button {
  55. border-radius: 50px;
  56. background-color: white;
  57. height: 30px;
  58. width: 100px;
  59. border: 1px solid #F3F3F3 !important;
  60. }
  61. .pay-button {
  62. border: 1px solid #f44 !important;
  63. color: #f44;
  64. }
  65. .ship-button {
  66. }
  67. .cancel-button {
  68. border: 1px solid #f44 !important;
  69. color: #f44;
  70. width: 85px;
  71. }
  72. .unbox-button {
  73. width: 85px;
  74. }
  75. .judge-button {
  76. }
  77. .more-button {
  78. }
  79. .express-info {
  80. font-weight: bold;
  81. padding-left: 5px;
  82. color: #0a0a0a;
  83. }
  84. .am-tabs-tab-bar-wrap {
  85. position: fixed;
  86. width: 100%;
  87. z-index: 3;
  88. margin-top: 45px;
  89. }
  90. .am-tabs-pane-wrap-active {
  91. height: 100%!important;
  92. }