/* Section6 */
.section6 {
    display: block;
}

.Box6 {
    display: block;
    position: relative;
    width: 100%;
    z-index: 2;
    margin-top: 90px;
}

.Swiper6 {
    width: 100%;
}

.Slide6 {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(246, 246, 246, 0.50);
    display: flex;
    flex-direction: column;
    height: 450px;
    transition: all 0.3s ease;
}

.Slide6:hover {
    background: var(--color);
}

/* 调高默认图片高度 */
.Slide6 .img6 {
    width: 100%;
    height: 260px;
    flex-shrink: 0;
    transition: height 0.3s ease;
}

/* hover 收缩幅度变小，不会太矮 */
.Slide6:hover .img6 {
    height: 190px;
}

.Slide6 .img6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Slide6 .text6 {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    transition: all 0.3s ease;
}

.Slide6 .text6 h1 {
    color: #000;
    font-family: MiSans2;
    font-size: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    transition: color 0.3s ease;
}

.Slide6:hover .text6 h1 {
    color: #fff;
}

.Slide6 .text6 h2 {
    color: rgba(0, 0, 0, 0.80);
    font-size: 16px;
    line-height: 1.5;
    margin: 15px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color 0.3s ease;
}

.Slide6:hover .text6 h2 {
    -webkit-line-clamp: 3;
    color: #fff;
}

.Slide6 .text6 h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Slide6 .text6 p {
    display: flex;
    align-items: center;
    grid-gap: 5px;
    color: rgba(0, 0, 0, 0.50);
    font-size: 12px;
    transition: filter 0.3s ease;
}

.Slide6:hover .text6 p {
    filter: invert(1);
}

.Slide6 .text6 h3 .More {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: var(--color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.Slide6:hover .text6 h3 .More {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1440px) {
    .Slide6 {
        height: 430px;
    }
    .Slide6 .img6 {
        height: 240px;
    }
    .Slide6:hover .img6 {
        height: 180px;
    }
    .Slide6 .text6 {
        padding: 15px 20px;
    }
    .Slide6 .text6 h1 {
        font-size: 18px;
    }
    .Slide6 .text6 h2 {
        font-size: 14px;
        margin: 5px 0;
    }
    .Slide6 .text6 h3 .More {
        width: 40px;
        height: 40px;
    }
    .Slide6 .text6 h3 .More i {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .Box6 {
        margin-top: 30px;
    }
}

@media (max-width: 720px) {}

@media (max-width: 460px) {}

@media (max-width: 380px) {}