.carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    list-style: none;
    /* 移除默认的项目符号 */
    padding: 0;
    /* 移除默认的内边距 */
    margin: 0;
    /* 移除默认的外边距 */
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-slide img {
    /* width: 100%;
    display: block; */
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* background: rgba(0, 0, 0, 0.5); */
    border: none;
    /* color: white; */
    cursor: pointer;
    border-radius: 50%;
    outline: none;
    /* padding: .1rem .16rem; */
    background-color: #FFFFFF;
    color: #FFFFFF;
    width: .4rem;
    height: .4rem;
}

.carousel-button:hover {
    /* background: rgba(0, 0, 0, 0.7); */
}

.carousel-button-prev {
    left: 0px;
}

.carousel-button-next {
    right: 0px;
}

/* c1自定义 */
.c1_left_button,
.c1_right_button {
    /* opacity: 0.56; */
    background-color: rgba(255, 255, 255, 0.56);
    color: #FFFFFF;
}

.c1_left_button {
    z-index: 2;
    border-radius: 0 .1rem .1rem 0;
}

.c1_right_button {
    z-index: 2;
    border-radius: .1rem 0 0 .1rem;
}

.c1_left_button:hover,
.c1_right_button:hover {
    background: #0056b3;
    color: #FFFFFF;
}


.cal_1 {
    display: flex;
    flex-direction: row;
    gap: .3rem;
}

.cal_1 img {
    flex: 1;
    width: 50%;
}



/* c1自定义 */
.c2_carousel {
	position: relative;
	width: 16.6rem;
	overflow: hidden;
	padding: .6rem;
}

.cal_2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .4rem;
}

@media (max-width: 768px) {
    .c2_carousel {
        width: auto;
    }
    .cal_2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.c2_left_button,
.c2_right_button {
    /* opacity: 0.56; */
    background-color: rgba(255, 255, 255, 1);
    color: #5A5A5A;
}

.c2_left_button {
    z-index: 2;
    border-radius: .1rem;
}

.c2_right_button {
    z-index: 2;
    border-radius: .1rem;
}

.c2_left_button:hover,
.c2_right_button:hover {
    background: #0056b3;
    color: #FFFFFF;
}


/* c1自定义 */
.c3_carousel {
	position: relative;
	width: 16.6rem;
	overflow: hidden;
	padding: .6rem;
}

.cal_3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .4rem;
}

@media (max-width: 768px) {
    .c3_carousel {
        width: auto;
    }
    .cal_3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.c3_left_button,
.c3_right_button {
    /* opacity: 0.56; */
    background-color: #E9E9E9;
    color: #FFFFFF
}

.c3_left_button {
    z-index: 2;
    border-radius: .1rem;
}

.c3_right_button {
    z-index: 2;
    border-radius: .1rem;
}

.c3_left_button:hover,
.c3_right_button:hover {
    background: #0056b3;
    color: #FFFFFF;
}

.c3_carousel .cal_3 {
    height: 5rem;
}

.c3_carousel .cal_2 {
    margin-top: .4rem;
    height: 3rem;
}