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.
|
- .kf-basic-info {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- gap: 20px 40px;
- align-items: flex-start;
- width: 80%;
- }
-
- .kf-basic-info-item {
- display: flex;
- align-items: flex-start;
- width: calc(50% - 20px);
- font-size: 16px;
- line-height: 1.6;
-
- &__label {
- position: relative;
- flex: none;
- color: @text-color-secondary;
- text-align: justify;
- text-align-last: justify;
-
- &::after {
- position: absolute;
- content: ':';
- }
- }
-
- &__list-value {
- display: flex;
- flex: 1;
- flex-direction: column;
- gap: 5px 0;
- }
-
- &__value {
- flex: 1;
- margin-left: 16px;
- white-space: pre-line;
- word-break: break-all;
- }
-
- &__text {
- color: @text-color;
- }
-
- &__link:hover {
- text-decoration: underline @underline-color;
- text-underline-offset: 3px;
- }
- }
|