/* 首页 - 公司介绍 */
.c-about .text {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.5rem;
}

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

.c-about .title {
    font-weight: bold;
    color: black;
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

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

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

.c-about .img {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-top: 60px;
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: brightness(0.1);
}

.c-about .img .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.c-about .img .item:first-child {
    border-top: none;
}

.c-about .img .item .en {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.24rem;
}

.c-about .img .item .cn {
    font-size: 1.2rem;
}

.c-about .btn-into {
    height: 50px;
    width: 50px;
    background-color: #fff;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    margin-top: 1.5rem;
}

.c-about .img .item .btn-into {
    display: none;
}

.c-about .img .item:hover .cn,
.c-about .img .item:hover .btn-into {
    display: flex;
}

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

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

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

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

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

    .c-about .more-btn {
        padding: 1rem 4rem;
        font-size: 1.20rem;
    }

    .c-about .more-btn:hover {
        background-color: black;
        color: white;
    }

    .c-about .img {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .c-about .img .item {
        height: 500px;
        border-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    .c-about .img .item:first {
        border-left: none;
    }

    .c-about .img .item .en {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .c-about .img .item .cn {
        display: none;
    }
}