trade.less 989 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /* pages/trade/trade.wxss */
  2. .tab-view {
  3. position: sticky;
  4. top: 0px;
  5. z-index: 999;
  6. }
  7. .title-view {
  8. background-color: #f0f0f0;
  9. height: 35px;
  10. }
  11. .list-item {
  12. display: grid;
  13. }
  14. .title-view, .list-item-row {
  15. display: flex;
  16. justify-content: space-between;
  17. align-items: center;
  18. }
  19. .title-view text {
  20. font-size: 12px;
  21. color: #666;
  22. text-align: center;
  23. }
  24. .list-item-row {
  25. height: 45px;
  26. border-bottom: 1px solid #f0f0f0;
  27. text {
  28. font-size: 14px;
  29. color: #333;
  30. text-align: center;
  31. }
  32. }
  33. .list-item-btn {
  34. padding: 10px 0px;
  35. display: flex;
  36. justify-content: space-around;
  37. height: 30px;
  38. width: 430px;
  39. button {
  40. font-size: 12px;
  41. color: white;
  42. width: 80px;
  43. }
  44. .goods-info {
  45. background-color: rebeccapurple;
  46. }
  47. .listing-detail {
  48. background-color: goldenrod;
  49. }
  50. .delisting {
  51. background-color: seagreen;
  52. }
  53. .buy-ask {
  54. background-color: chocolate;
  55. }
  56. .favitore {
  57. background-color: blueviolet;
  58. }
  59. }