.carousel-wrapper {
    width: 980px;
    margin: 0 auto;
}
.carousel-wrapper.health {
    width: 1280px;
}
.carousel-wrapper.single {
    width: 1300px;
    user-select: none;
    cursor: pointer;
}
.carousel-wrapper.banner {
    width: 980px;
    user-select: none;
    cursor: pointer;
}
.carousel-container {
    position: relative;
    overflow: hidden;
    /*border-radius: 15px;*/
    /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);*/
    height: 290px;
    margin-bottom: 30px;
}

.carousel-wrapper.health .carousel-container {
    height: 371px;
}

.carousel-wrapper.single .carousel-container {
    height: 815px;
}
.carousel-wrapper.banner .carousel-container {
    height: 490px;
    margin-bottom: 0;
}

.carousel-container::before {
    content: '';
    position: absolute;
    z-index: 9;
    left: 0;
    width: 35px;
    background-color: rgb(255, 255, 255);
    height: 100%;
}

.carousel-container::after {
    content: '';
    position: absolute;
    z-index: 9;
    right: 0;
    width: 35px;
    background-color: rgb(255, 255, 255);
    height: 100%;
}

.carousel-wrapper.banner .carousel-container::before,.carousel-wrapper.banner .carousel-container::after {
    background-color: #f6f6f6;
}

.carousel-track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    padding: 0 20px;
}

.carousel-item {
    width: 470px;
    flex-shrink: 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box
}

.carousel-wrapper.health .carousel-item {
    width: 620px;
}
.carousel-wrapper.single .carousel-item {
    width: 1260px;
}
.carousel-wrapper.banner .carousel-item {
    width: 940px;
    height: unset;
}

.carousel-content {
    background-color: #c6c6c6;
    border-radius: 12px;
    padding: 0;
    height: 96%;
    width: 100%;
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box
}

.carousel-content:hover {
    /*transform: translateY(-5px);*/
    /*box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);*/
}

.carousel-wrapper.single .carousel-content {
    background: unset;
}

.carousel-wrapper.single .carousel-content .about_list {
    padding-left: 14px;
    height: 750px;
}

/*.carousel-content h3 {*/
/*    color: #2980b9;*/
/*    margin-bottom: 15px;*/
/*    font-size: 1.8rem;*/
/*}*/

/*.carousel-content p {*/
/*    color: #34495e;*/
/*    text-align: center;*/
/*    line-height: 1.6;*/
/*    max-width: 90%;*/
/*}*/

.carousel-content img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.carousel-content:hover img {
    transform: scale(1.1);
}

.carousel-wrapper.single .carousel-content img {
    position: unset;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none; /* 如果需要完全禁用图片交互 */
}

.carousel-wrapper.banner .carousel-content img {
    min-height: 440px;
}

.carousel-wrapper.single .carousel-content:hover img {
    transform: scale(1);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /*background: rgb(255, 255, 255);*/
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);*/
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    /*background: white;*/
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 10px;
    background-image: url(../images/j_right.png);
}

.carousel-control.next {
    right: 10px;
    background-image: url(../images/j_left.png);
}

.carousel-control i {
    font-size: 24px;
    color: #2980b9;
}

.carousel-indicators {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    padding-right: 40px;
}

.indicator {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e4f4e5;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #4ab959;
    transform: scale(1.2);
}

.indicator:hover {
    background: #4ab959;
}