/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}

.solution-page {

    .solution-container {
        max-width: 1280px;
        margin: 0 auto;
    }
}

/* 标题区域 */
.section-title {
    padding-top: 160px;
    color: #111111;
    font-family: "Noto Sans SC", "Gothic", sans-serif;
}

.section-title h1 {
    line-height: 80px;
    font-size: 64px;
    font-weight: 700;
}

.section-title p {
    margin-top: 20px;
    line-height: 36px;
    color: #111111;
    font-size: 24px;
}


/* 卡片列表容器 */
.solution-list {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    padding-top: 16px;
    border-top: 2px solid #111111;

    .count {
        height: 48px;
        line-height: 48px;
        font-size: 18px;
        font-weight: 700;
        vertical-align: top;
        margin-bottom: 40px;
    }
}

/* 解决方案卡片 */
.solution-card {
    display: flex;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    padding: 24px;
    width: 100%;
    min-height: 277px;
}

/*.solution-card:hover {*/
/*    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
/*}*/

.card-image {
    position: relative;
    width: 408px;
    height: 229px;
    border: 1px solid #EEEEEE;
    overflow: hidden;
    transition: 0.2s border ease-in;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-image:hover img {
    transform: scale(1.05);
}

.view-detail {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0b50f2;
    color: #fff;
    border: none;
    padding: 6px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 2px;
    font-family: "Microsoft Yahei", sans-serif;
}

.view-detail:hover {
    background-color: #1142b6;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    padding: 12px 0 12px 32px;
    width: calc(100% - 408px);
}

.card-content h3 {
    line-height: 40px;
    font-size: 28px;
    font-weight: 700;
}

.card-content p {
    margin-top: 8px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: #767676;
}

.series-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: -8px;
}

.tag {
    margin: 0;
    padding: 6px 16px;
    color: #767676;
    height: auto;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    border-radius: 99px;
    border: 1px solid #D4D4D4;
    background-color: #EEEEEE;
}


@media (max-width: 1280px) {

    .solution-page {

        .solution-container {
            max-width: none;
            margin-bottom: 40px;
            padding-left: 20px;
            padding-right: 20px;
        }
    }

    .section-title {
        padding-top: 90px;
    }

    .section-title h1 {
        line-height: 42px;
        font-size: 32px;
    }

    .section-title p {
        font-size: 12px;
        line-height: 18px;
        font-weight: 400;
        margin-top: 12px;
        color: #767676;
    }


    /* 卡片列表容器 */
    .solution-list {
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #111111;

        .count {
            height: 36px;
            line-height: 36px;
            font-size: 16px;
        }
    }

    /* 解决方案卡片 */
    .solution-card {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 20px 0;
        background: #ffffff !important;
    }

    /*.solution-card:hover {*/
    /*    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
    /*}*/
    .card-image {
        position: relative;
        width: 100%;
        height: auto;
        min-height: auto;
        border: 1px solid #EEEEEE;
        overflow: hidden;
        transition: 0.2s border ease-in;
    }

    .card-image:hover img {
        transform: scale(1);
    }

    .view-detail {
        font-size: 12px;
    }


    .card-content {
        padding: 0;
        width: 100%;
        margin-top: 16px;
    }

    .card-content h3 {
        font-size: 20px;
        line-height: 30px;
        color: #111111;
    }

    .card-content p {
        font-size: 14px;
        line-height: 20px;
        margin-top: 4px;
    }

    .series-tags {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 16px;
        margin-bottom: -8px;
    }

    .tag {
        font-size: 14px;
        line-height: 20px;
    }

}