/* 只作用于时尚达人/银发秀场的倾斜卡片样式 */

.bottom-section-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.bottom-section .card-top {
    flex: 0 0 45%;
    position: relative;
}


/* 时尚达人卡片（左下） */

.bottom-section .card-top:first-child {
    z-index: 1;
    left: 4%;
}


/* 银发秀场卡片（右上） */

.bottom-section .card-top:last-child {
    z-index: 2;
}

.bottom-section .card-top+.card-top {
    margin-left: -6%;
}

.bottom-section .card-top img {
    width: 95%;
    height: 40vh;
    object-fit: cover;
    transform: skew(-8deg);
    transform-origin: center;
}

.bottom-section .card-top:last-child img {
    margin-top: 1rem;
}

.bottom-section .card-con {
    min-height: 150px;
    height: 100%;
    width: 70%;
    z-index: 3;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* 让文字卡片在最上层 */
}

.bottom-section .card-tcon {
    margin-left: 30%;
}

.bottom-section .card-con h3 {
    color: #fff;
    font-size: 1.7rem;
    height: 4rem;
    line-height: 4rem;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 1rem;
    background: #036eb8;
    font-weight: normal;
    /* 时尚达人蓝色 */
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
}

.bottom-section .card-top:last-child .card-con h3 {
    background: #ea5514;
    /* 银发秀场橙色 */
}

.bottom-section .card-p {
    padding: .8rem 2rem;
    display: flex;
    align-items: center !important;
    justify-content: flex-start;
    align-items: center;
    overflow-wrap: break-word;
    word-break: break-word;
    height: 6rem;
}

.bottom-section .card-p a {
    color: #000;
    font-size: 1.5rem !important;
}

.bottom-section .card-p a:hover {
    color: #C30D23;
    text-decoration: none;
    font-size: 1.5rem !important;
}

.bottom-section .card-con p {
    font-size: 1.2rem !important;
    line-height: 1.5em;
    font-weight: normal;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bottom-section .card-con p a {
    width: 100%;
}

.bottom-section .card-con h3 a {
    float: right;
    font-size: 1.2rem !important;
    font-weight: normal;
    color: #fff;
    padding-right: 1rem;
    text-decoration: none;
    line-height: 4rem;
    width: auto;
}

.bottom-section .card-con h3 a:hover {
    color: #ffefd6;
    font-size: 1.2rem !important;
    text-decoration: none;
    line-height: 4rem;
    width: auto;
}

.bottom-section .card-con a {
    /* float: right; */
    font-size: 1.2rem !important;
    font-weight: normal;
    color: #000;
    padding-right: 1rem;
    text-decoration: none;
}

.bottom-section .card-con a:hover {
    text-decoration: none;
    color: #C30D23;
    text-decoration: none;
    font-size: 1.2rem !important;
}

@media (hover: hover) and (pointer: fine) {
    .bottom-section .card-top.anim-show-img img {
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .bottom-section .card-top.anim-show-img img:hover,
    .bottom-section .card-top.anim-show-img img:focus-within {
        transform: skew(-8deg) translateY(-2px) scale(1.02);
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
    }
}