detail.less 705 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* mHome/pages/bond/detail/detail.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: 100px;
  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. }