/* 首页 - 产品 */
.c-product .text {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.5rem;
}

.c-product .slogan {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.c-product .title {
    font-weight: bold;
    color: black;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
}

.c-product .desc {
    line-height: 2.5rem;
    margin-bottom: 2rem;
}

.c-product .more-btn {
    border: 2px solid black;
    border-radius: 999px;
    padding: 0.5rem 2rem;
    font-weight: bold;
    font-size: 1.20rem;
}

#home-product {
    margin-top: 2rem;
}

#home-product .swiper-slide {
    position: relative;
    height: 240px;
    color: #fff;
    font-size: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#home-product .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#home-product .text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff
}

#home-product .text .left {
    flex: 1;
    margin-right: 1rem;
}

#home-product .text .en {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: bold;
}

#home-product .text .cn {
    font-size: 1rem;
    margin-top: 10px;
}

#home-product .text .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 99px;
    height: 40px;
    width: 40px;
}

@media (min-width: 1024px) {
    .c-product {
        margin-top: 6rem;
    }

    .c-product .text {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .c-product .slogan {
        font-size: 5rem;
    }

    .c-product .title {
        margin-bottom: 1rem;
    }

    .c-product .desc {
        margin-bottom: 2rem;
    }

    .c-product .content {
        margin: 85px 60px 0 0;
    }

    #home-product {
        margin-top: 4rem;
    }

    #home-product .swiper-slide {
        height: 672px;
    }

    #home-product .text .en {
        font-size: 3rem;
    }

    #home-product .text .cn {
        font-size: 1.5rem;
    }
}