body{
		color:unset;
}
.technology-details-item-content-child-item-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.technology-details-item-content {
    gap: 20px;
    align-items: center;
}

.technology-details-item-content-child-item-info.odd,
.technology-details-item-content.odd {
    flex-direction: row-reverse;
}

.technology-details-item-content-child-item-info.even,
.technology-details-item-content.even {
    flex-direction: row;
}

.technology-details-item-content-child-item-info.top,
.technology-details-item-content.top {
    flex-direction: column-reverse;
}

.technology-details-item-content-child-item-info.bottom,
.technology-details-item-content.bottom {
    flex-direction: column;
}

.technology-details-item-content-child-item-img,
.technology-details-item-content-child-item-info-text {
    flex: 1;
    overflow: hidden;
}

.technology-details-item-content-child-item-img img {
    max-width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.technology-details-item-content-child-item-img img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.technology-details-item-content-desc {
    font-size: 16px;
}
.technology-details-item-title{
    text-align: center;
}

@media (max-width: 768px) {
    .technology-details-item-content-child-item-info.odd,
    .technology-details-item-content-child-item-info.even,
    .technology-details-item-content.odd,
    .technology-details-item-content.even {
        flex-direction: column;
    }

    .technology-details-item-content-desc,
    .technology-details-item-content-child-item-info-desc p,
    .technology-details-item-content-child-item-info-desc span {
        font-size: 14px !important;
    }

    .technology-details-item-content-child-item-info,
    .technology-details-item-content {
        gap: 20px;
    }
}

/* 相关分类卡片区块 */
.related-catalog-section {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.related-catalog-section .section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: inherit;
}

/* 行等高：Bootstrap 3 row 默认非 flex，需显式开启 */
.related-catalog-section .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* 列需 flex 以撑满行高 */
.related-catalog-section .row > [class*="col-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.related-catalog-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.related-catalog-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
    /* transform: translateY(-4px); */
    text-decoration: none;
    color: inherit;
}

.related-catalog-card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.related-catalog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-catalog-card:hover .related-catalog-card__img img {
    transform: scale(1.05);
}

/* body 填充剩余空间，使各卡片描述起始位置一致 */
.related-catalog-card__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 16px 20px 20px;
}

/* 标题固定 2 行高，防止单行/双行卡片错位 */
.related-catalog-card__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    min-height: calc(18px * 1.4 * 2);
    margin: 0 0 8px;
    color: #222;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.related-catalog-card__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

@media (max-width: 992px) {
    .related-catalog-section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .related-catalog-section .section-title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .related-catalog-card__title {
        font-size: 16px;
    }
}
