:root {
    --background-color: #2c3e50;
    --border-color: #7591AD;
    --text-color: #34495e;
    --color1: #EC3E27;
    --color2: #fd79a8;
    --color3: #0984e3;
    --color4: #00b894;
    --color5: #fdcb6e;
    --color6: #e056fd;
    --color7: #F97F51;
    --color8: #BDC581;
}



/* 

.channel {
    position: absolute;
    width: 80%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -250px);
    font-size: 30px;
    font-weight: bold;
    color: #fff;
} */

.container {
    position: relative;
    /* width: 100vw;
    height: 100vh; */
    display: flex;
    justify-content: center;
    /* align-items: center; */
    /* background-color: #ff00ff; */
    transform-style: preserve-3d;
    perspective: 1000px;
    /* perspective-origin: left; */
    transform: rotateX(-2deg);
}

.images {
    position: relative;
    /* 与图片宽度高度一致 */
    width: 394px;
    height: 571px;;
    /* background-color: #BDC581; */
    transform-style: preserve-3d;
    transform: scale(0.8);
    /* 利用cubic-bezier函数 实现结尾的时候超过终点然后再次回归的效果 */
    /* 贝塞尔曲线
    有兴趣的自己查    https://cubic-bezier.com/
    */
    transition: 1s cubic-bezier(.03,1.1,.78,1.41);
}


/* 临时 */


/* .container:hover .images {
    transform: scale(0.5) rotateX(360deg);
} */

.images .image {
    position: absolute;
    width: inherit;
    height: inherit;
    /* background-color: #e056fd; */
    /* 原理：四张图片div分别旋转0、90、180、270，面向四个方向
    然后沿z轴位移197px，图片高度的一半394px * 0。5
    组成一个正方体的四个面 */
    transform: rotateY(calc(var(--i) * 120deg)) translateZ(161px);
    /* backface-visibility: ; */
}





/* 临时 */


/* img {
    display: none;
} */


/* 选择按钮 */

.select_list {
    position: fixed;
    width: 200px;
    height: 30px;
    /* background-color: khaki; */
    bottom: 160px;
    left: 600px;
    /* display: flex; */
    /* justify-content: space-between; */
    /* align-items: center; */
}

.select {
    width: 30px;
    height: 30px;
    background-color: var(--border-color);
    border-radius: 50%;
    line-height: 30px;
    font-size: 18px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}

.select:hover {
    color: #fff;
    background-color: var(--color3);
}


/* 选中 */

.select.check {
    color: #fff;
    background-color: var(--color3);
}

.leftClick{
    position: absolute;
    top: 50%;
    margin-top: -120px;
    z-index: 9;
    cursor: pointer;
}
.rightClick{
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -120px;
    z-index: 9;
    cursor: pointer;
}