.card-carousel {
    position: relative;
    width: 100%;
    height: 449px; /* 41.5926vh × 10.8 */
    overflow: hidden;
    border-radius: 8px;
}
.card-carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 卡片基础样式 */
.carousel-card {
    position: absolute;
    width: 50%;
    height: 410px; /* 38vh × 10.8 */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    padding: 22px; /* 2vh × 10.8 */
}
/* 卡片内容 */
.carousel-card .card-image {
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.carousel-card .card-body {
    width: 50%;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.carousel-card h3 {
    width: 100%;
    height: 54px; /* 5vh × 10.8 */
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #333333;
    font-size: 24px; /* 1.25vw × 19.2 */
    text-align: left;
    display: inline-block;
}
.carousel-card h3 img {
    width: 33px; /* 1.7188vw × 19.2 */
    height: 23px; /* 2.1296vh × 10.8 */
    line-height: 23px; /* 2.1296vh × 10.8 */
    margin-right: 10px; /* 0.5vw × 19.2 */
    display: inline-block;
}
.carousel-card p {
    width: 100%;
    height: 162px; /* 15vh × 10.8 */
    margin: 22px 0; /* 2vh × 10.8 */
    color: #333333;
    font-family: Source Han Sans CN;
    font-size: 16px; /* 0.8333vw × 19.2 */
    font-weight: 400;
    line-height: 32px; /* 2.963vh × 10.8 */
    text-indent: 2rem;
    display: inline-block;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}
.carousel-card .card-link {
    width: 40%;
    background: #BD0F0F;
    border-radius: 20px; /* 1.0417vw × 19.2 */
    height: 43px; /* 4vh × 10.8 */
    line-height: 43px; /* 4vh × 10.8 */
    color: #FFFFFF;
    font-size: 18px; /* 0.9375vw × 19.2 */
    font-weight: 400;
    text-align: center;
    margin-left: 65%;
    display: inline-block;
}
.card-link, .span-flex {
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    justify-content: center !important;
}
.card-link .ckgd, .span-flex .ckgd {
    margin-left:10px; /* 0.5vw × 19.2 */
    width: 20px; /* 1.0417vw × 19.2 */
    height: 15px; /* 0.7813vw × 19.2 */
}
.card-link .ckgd-txt {
    line-height: 43px; /* 4vh × 10.8 */
    color: #FFFFFF;
    font-size: 18px; /* 0.9375vw × 19.2 */
}
.nav-btn {
    width: 24px; /* 1.25vw × 19.2 */
    height: 43px; /* 3.9815vh × 10.8 */
}
/* 三张卡片的位置状态 */
.carousel-card.prev {
    left: 5%;
    transform: scale(0.85);
    opacity: 0.2;
    z-index: 1;
}
.carousel-card.active {
    left: 50%;
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.carousel-card.next {
    right: 5%;
    transform: scale(0.85);
    opacity: 0.2;
    z-index: 1;
}
/* 隐藏其他卡片 */
.carousel-card.hidden {
    opacity: 0;
    transform: scale(0.7);
    z-index: 0;
    pointer-events: none;
}
/* 左右箭头 */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: all 0.3s;
    width: 48px; /* 2.5vw × 19.2 */
    height: 48px; /* 2.5vw × 19.2 */
    font-size: 35px; /* 1.8229vw × 19.2 */
    font-weight: bold;
}
.carousel-nav:hover {
    color: #BD0F0F;
    /* transform: translateY(-50%) scale(1.1); */
}
.carousel-nav .nav-btn {
    width: 24px; /* 1.25vw × 19.2 */
    height: 43px; /* 3.9815vh × 10.8 */
    opacity: 0.5;
}
.carousel-nav:hover .nav-btn {
    opacity: 1;
}
.carousel-nav.prev { left: 20px; }
.carousel-nav.next { right: 20px; }
/* 指示器 */
.carousel-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}
.carousel-dots span {
    width: 38px; /* 2vw × 19.2 */
    height: 5px; /* 0.5vh × 10.8 */
    border-radius: 20px;
    background: #c0c4cc;
    cursor: pointer;
    transition: all 0.3s;
}
.carousel-dots span.active {
    background: #BD0F0F;
    width: 38px; /* 2vw × 19.2 */
    border-radius: 20px;
}
/* 移动端适配 */
@media (max-width: 1200px) {
    .carousel-card .card-link {
        width: 50%;
        margin-left: 50%;
    }
}