You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.less 970 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .kf-basic-info {
  2. display: flex;
  3. flex-direction: row;
  4. flex-wrap: wrap;
  5. gap: 20px 40px;
  6. align-items: flex-start;
  7. width: 80%;
  8. &__item {
  9. display: flex;
  10. align-items: flex-start;
  11. width: calc(50% - 20px);
  12. &__label {
  13. position: relative;
  14. flex: none;
  15. color: @text-color-secondary;
  16. font-size: @font-size-content;
  17. line-height: 1.6;
  18. text-align: justify;
  19. text-align-last: justify;
  20. &::after {
  21. position: absolute;
  22. content: ':';
  23. }
  24. }
  25. &__value-container {
  26. display: flex;
  27. flex: 1;
  28. flex-direction: column;
  29. gap: 5px 0;
  30. }
  31. &__value {
  32. flex: 1;
  33. margin-left: 16px;
  34. font-size: @font-size-content;
  35. line-height: 1.6;
  36. word-break: break-all;
  37. &__text {
  38. color: @text-color;
  39. }
  40. &__link:hover {
  41. text-decoration: underline @underline-color;
  42. text-underline-offset: 3px;
  43. }
  44. }
  45. }
  46. }