.technology {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 480px;
    /* 设置固定高度 */
}

.technology:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 图片区域 */
.technology-img {
    overflow: hidden;
}

.technology-img img {
    transition: transform 0.3s ease;
    width: 100%;
    display: block;
}

.technology:hover .technology-img img {
    transform: scale(1.1);
}

/* 信息区域 */
.technology-message {
    padding: 15px;
    flex: 1;
    /* 使信息区域填充剩余空间 */
    display: flex;
    flex-direction: column;
}

.technology-message h3 {
    font-size: 20px;
    font-family: 'OpenSans-Semibold';
    color: var(--main-text-color);
    margin-bottom: 10px;
    position: relative;
    display: flex;
    position: relative;
    align-items: center;
    height: 54px;
}

.technology-message h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    border-radius: 1.5px;
    background-color: var(--main-color);
}

.technology-message .description {
    font-size: 16px;
    color: var(--main-text-color-light);
    line-height: 1.6;
    /* 增加行间距 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* 限制为6行 */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 15px;
}

/* 了解更多按钮样式 */
.learn-more {
    color: var(--main-text-color);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
    /* 按钮始终位于底部 */
    align-self: flex-start;
    /* 按钮左对齐 */
}

.learn-more:hover {
    color: #29aae3;
    text-decoration: underline;
}

/* 内容块之间的间距 */
.solution-list {
    margin-bottom: 50px;
}

.technology-details-item-content-child-item-info-desc {
    line-height: 30px;
    font-size: 16px;
}

.technology-details-item-content-child-item-info-desc ul {
    list-style: disc;
    padding-left: 20px;
}

.section-title {
    font-size: 40px;
    font-family: 'OpenSans-Semibold';
    color: var(--main-text-color);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--main-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .technology {
        height: auto;
    }

    .technology-img {
        height: auto;
        margin-bottom: 0;
    }

    .technology-message h4 {
        font-size: 18px;
    }

    .technology-message .description {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .learn-more {
        font-size: 14px;
    }
    .section-title{
        font-size: 24px;
    }
}