circle.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* pages/circle/circle.wxss */
  2. .top-view {
  3. position: sticky;
  4. top: 0px;
  5. z-index: 999;
  6. .title-view {
  7. margin: 10px;
  8. background-color: #f0f0f0;
  9. height: 70px;
  10. border-radius: 10px;
  11. display: flex;
  12. align-items: center;
  13. align-content: center;
  14. flex-direction: column;
  15. padding: 5px 10px;
  16. .title-view-up, .title-view-down {
  17. display: flex;
  18. flex-direction: row;
  19. justify-content: space-between;
  20. align-items: center;
  21. height: 50%;
  22. width: 100%;
  23. align-content: center;
  24. text {
  25. color: #666;
  26. font-size: 13px;
  27. }
  28. }
  29. .title-view-up {
  30. border-bottom: 1px solid #ddd;
  31. }
  32. }
  33. }
  34. .item-view {
  35. margin: 10px;
  36. height: 90px;
  37. border-radius: 10px;
  38. display: flex;
  39. align-items: center;
  40. align-content: center;
  41. flex-direction: column;
  42. padding: 5px 10px;
  43. border: 1px solid #ddd;
  44. .item-view-up, .item-view-down {
  45. display: flex;
  46. flex-direction: row;
  47. justify-content: space-between;
  48. align-items: center;
  49. height: 50%;
  50. width: 100%;
  51. align-content: center;
  52. text {
  53. color: #333;
  54. font-size: 13px;
  55. }
  56. .price {
  57. color: red;
  58. font-size: 15px;
  59. }
  60. }
  61. .item-view-up {
  62. border-bottom: 1px solid #ddd;
  63. }
  64. }
  65. .right {
  66. background-color: red;
  67. height: inherit;
  68. width: 65px;
  69. color: white;
  70. display: flex;
  71. align-items: center;
  72. justify-content: center;
  73. }