.c-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}
.c-carousel .selected {
    opacity: 1;
    animation: myOpacity 0.01s;
}
.c-carousel .unSelect {
    opacity: 1;
}

@keyframes myOpacity {
    0% {
    opacity: 1;
    }
    25% {
    opacity: 1;
    }
    50% {
    opacity: 1;
    }
    75% {
    opacity: 1;
    }
    100% {
    opacity: 1;
    }
}

.c-carousel .dotList {
    display: flex;
    position: absolute;
    z-index: 1000;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 14px;
}
.c-carousel .dot {
    width: 6px;
    height: 6px;
    margin: 0 1px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    cursor: pointer;
}

.c-carousel .dot-actived {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgb(116, 116, 116);
}

.c-carousel .title {
    height: 30px;
    background: rgba(213, 213, 230, 0.4);
    text-align: center;
    position: absolute;
    transform: translateY(-100%);
    color: #fff;
    display: flex;
    width: 100%;
    justify-content: center;
}