index.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. .order-card {
  2. margin-top: 20px;
  3. background-color: white;
  4. }
  5. .order-card-content {
  6. height: 100px;
  7. background-color: #f5f5f9;
  8. display: flex;
  9. padding: 5px 0;
  10. }
  11. .order-product-img {
  12. background-repeat: no-repeat;
  13. background-size: cover;
  14. width: 90px;
  15. margin-left: 5px;
  16. height: 100%;
  17. }
  18. .order-card-bottom {
  19. display: flex;
  20. justify-content: flex-end;
  21. align-items: baseline;
  22. height: 35px;
  23. line-height: 35px;
  24. }
  25. .order-card-pay {
  26. display: inline-block;
  27. font-size: 18px;
  28. font-weight: 500;
  29. color: black;
  30. margin-right: 10px;
  31. }
  32. .order-card-count {
  33. display: inline-block;
  34. }
  35. .order-card-button-group {
  36. display: flex;
  37. justify-content: flex-end;
  38. align-items: center;
  39. border-top: 1px solid #F3F3F3;
  40. height: 45px;
  41. line-height: 45px;
  42. padding: 5px 10px 5px 0;
  43. }
  44. .order-card-button-group>a:hover {
  45. }
  46. .order-button {
  47. border-radius: 50px;
  48. background-color: white;
  49. height: 30px;
  50. width: 75px;
  51. border: 1px solid #F3F3F3 !important;
  52. }
  53. .pay-button {
  54. border: 1px solid #f44 !important;
  55. color: #f44;
  56. }
  57. .ship-button {
  58. }
  59. .cancel-button {
  60. border: 1px solid #f44 !important;
  61. color: #f44;
  62. width: 85px;
  63. }
  64. .unbox-button {
  65. width: 85px;
  66. }
  67. .judge-button {
  68. }
  69. .more-button {
  70. }