index.less 662 B

123456789101112131415161718192021222324252627282930313233343536
  1. .top-view {
  2. position: sticky;
  3. top: 0px;
  4. z-index: 999;
  5. .title-view {
  6. margin: 10px;
  7. background-color: #f0f0f0;
  8. height: 100px;
  9. border-radius: 10px;
  10. display: flex;
  11. align-items: center;
  12. align-content: center;
  13. flex-direction: column;
  14. padding: 5px 10px;
  15. .title-view-up, .title-view-down {
  16. display: flex;
  17. flex-direction: row;
  18. justify-content: space-between;
  19. align-items: center;
  20. height: 50%;
  21. width: 100%;
  22. align-content: center;
  23. text {
  24. color: #666;
  25. font-size: 13px;
  26. }
  27. }
  28. .title-view-up {
  29. border-bottom: 1px solid #ddd;
  30. }
  31. }
  32. }